Click here to Skip to main content
15,881,812 members
Articles / Desktop Programming / MFC

Round Buttons

Rate me:
Please Sign up or sign in to vote.
4.87/5 (38 votes)
11 Jun 2003CPOL2 min read 411.5K   16.1K   117   31
A class that turns rectangular buttons into round buttons.

Sample Image

Introduction

I wanted a button that looked exactly like normal buttons, but instead I wanted them circular. This class can be used like any other owner drawn control - simply include the header file, and declare your button controls as CRoundButton instead of CButton

First of all I make sure the buttons are circles (and not ellipses) and store the centre and radius of the button. Next I simply make the button owner drawn and draw it like every other owner drwn button, but instead of being able to use nice routines like Draw3dRect, I had to roll my own circle drawing routine which would draw each pixel with the correct colour dependant on the point on the circle I was drawing.

I will not include the full source in this page - it is available for download here. The owner draw part is simple and follows along the lines of any other owner drawn button. The circle drawing routine is a standard algorithm, with the only modification in calculating the pixel colour. Given two colours crBright and crDark, and an angle relative to the x-axis, the colour for a pixel can be calculated using the following.

COLORREF GetColour(double dAngle, COLORREF crBright, COLORREF crDark)
{
#define Rad2Deg            180.0/3.1415 
#define LIGHT_SOURCE_ANGLE  -2.356    // -2.356 radians = -135 degrees, 
                                      // i.e. From the top left of the screen

    ASSERT(dAngle > -3.1416 && dAngle < 3.1416);
    double dAngleDifference = LIGHT_SOURCE_ANGLE - dAngle;

    if (dAngleDifference < -3.1415) 
        dAngleDifference = 6.293 + dAngleDifference;
    else if (dAngleDifference > 3.1415) 
        dAngleDifference = 6.293 - dAngleDifference;

    double Weight = 0.5*(cos(dAngleDifference)+1.0);

    BYTE Red   = (BYTE) (Weight*GetRValue(crBright) + 
                        (1.0-Weight)*GetRValue(crDark));
    BYTE Green = (BYTE) (Weight*GetGValue(crBright) + 
                        (1.0-Weight)*GetGValue(crDark));
    BYTE Blue  = (BYTE) (Weight*GetBValue(crBright) + 
                        (1.0-Weight)*GetBValue(crDark));

    return RGB(Red, Green, Blue);
}

This is a simple linear interpolation between the two colours based on the cosine of the angle between the light source and the point. Angles are measured from the +ve x-axis (i.e. (1,0) = 0 degrees, (0,1) = 90 degrees ), but remember: positive y points down!

Update

Tom Kalmijn kindly added routines that post-process the button image to smooth out the jagged edges. His method uses a nearest-neighbours algorithm to interpolate missing pixels. It's not particularly fast but it does increase smoothing.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder CodeProject
Canada Canada
Chris Maunder is the co-founder of CodeProject and ContentLab.com, and has been a prominent figure in the software development community for nearly 30 years. Hailing from Australia, Chris has a background in Mathematics, Astrophysics, Environmental Engineering and Defence Research. His programming endeavours span everything from FORTRAN on Super Computers, C++/MFC on Windows, through to to high-load .NET web applications and Python AI applications on everything from macOS to a Raspberry Pi. Chris is a full-stack developer who is as comfortable with SQL as he is with CSS.

In the late 1990s, he and his business partner David Cunningham recognized the need for a platform that would facilitate knowledge-sharing among developers, leading to the establishment of CodeProject.com in 1999. Chris's expertise in programming and his passion for fostering a collaborative environment have played a pivotal role in the success of CodeProject.com. Over the years, the website has grown into a vibrant community where programmers worldwide can connect, exchange ideas, and find solutions to coding challenges. Chris is a prolific contributor to the developer community through his articles and tutorials, and his latest passion project, CodeProject.AI.

In addition to his work with CodeProject.com, Chris co-founded ContentLab and DeveloperMedia, two projects focussed on helping companies make their Software Projects a success. Chris's roles included Product Development, Content Creation, Client Satisfaction and Systems Automation.

Comments and Discussions

 
QuestionBitmap Adding Pin
Ajin Vijay25-Jul-17 3:25
Ajin Vijay25-Jul-17 3:25 
QuestionHow to add color on the Round Button Pin
vipreshshah10-Jun-15 20:19
vipreshshah10-Jun-15 20:19 
GeneralExcellent article! Pin
DrABELL16-Sep-09 12:39
DrABELL16-Sep-09 12:39 
GeneralA nice article Pin
Derek Bartram22-Mar-08 10:53
Derek Bartram22-Mar-08 10:53 
Questionhow to implement this class to see the buttons Pin
toutounesan_bg14-Aug-07 11:12
toutounesan_bg14-Aug-07 11:12 
QuestionHow to add button dynamic in VB6.0? Pin
myphuong2442-Sep-05 19:32
myphuong2442-Sep-05 19:32 
GeneralSome explanations,please... Pin
Dudi Avramov12-Dec-04 4:49
Dudi Avramov12-Dec-04 4:49 
GeneralRe: Some explanations,please... Pin
Dudi Avramov13-Dec-04 0:14
Dudi Avramov13-Dec-04 0:14 
QuestionCan anyone show me some good ebook about design control Pin
hoangbao6-Nov-04 2:58
hoangbao6-Nov-04 2:58 
QuestionHow to insert this in view class Pin
mymauve2119-Mar-04 1:10
mymauve2119-Mar-04 1:10 
AnswerRe: How to insert this in view class Pin
maruku8-Nov-04 18:58
maruku8-Nov-04 18:58 
AnswerRe: How to insert this in view class Pin
toucherzxb25-Nov-07 20:09
toucherzxb25-Nov-07 20:09 
QuestionUnderline the shortcut character? Pin
AAntix7-Nov-03 10:15
AAntix7-Nov-03 10:15 
Questionhow to create command button through code Pin
Anonymous30-Sep-03 4:30
Anonymous30-Sep-03 4:30 
QuestionHow To Create a Round Shape Control ? Pin
Vikrant Vikrant29-Jun-03 21:58
Vikrant Vikrant29-Jun-03 21:58 
GeneralNot the most important thing in the world Pin
tkalmijn9-Jun-03 21:48
tkalmijn9-Jun-03 21:48 
GeneralRe: Not the most important thing in the world Pin
Chris Maunder10-Jun-03 4:57
cofounderChris Maunder10-Jun-03 4:57 
GeneralWhere can we declare Pin
Aymen++5-Oct-02 11:53
Aymen++5-Oct-02 11:53 
GeneralRound Button Java Pin
26-Jun-02 5:38
suss26-Jun-02 5:38 
GeneralRe: Round Button Java Pin
Sebuliba Peter1-Jan-03 19:48
sussSebuliba Peter1-Jan-03 19:48 
Question#How to implement a round button in C#? Pin
24-Jun-02 6:42
suss24-Jun-02 6:42 
GeneralKewl... Pin
alex.barylski2-Apr-02 14:35
alex.barylski2-Apr-02 14:35 
GeneralRGN qustion Pin
kuzi6-Mar-02 5:53
kuzi6-Mar-02 5:53 
GeneralThe size of the circle Pin
Huda2-Sep-01 4:34
Huda2-Sep-01 4:34 
GeneralCool but... Pin
Earl Rex Arao-arao10-May-01 23:11
Earl Rex Arao-arao10-May-01 23:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.