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

WowButtons with the GdiDrawStream function

Rate me:
Please Sign up or sign in to vote.
3.19/5 (27 votes)
19 Mar 2007CPOL1 min read 102.8K   2.2K   56   18
A very simple owner-draw button using the GdiDrawStream function.

Sample Image

Introduction

ThemeButton is a CButton derived class. It is a very simple graphical button, and has special bitmaps representing five button states: normal, hot, pressed, disabled, and default. Buttons are drawn as Windows draws it's theme-changeable buttons. Each theme bitmap has a background color and it's transparent.

For Drawing buttons I use the function GdiDrawStream; it's a private function. I'll explain how this function works and what kind of parameters it has. The main thing to use in that function is the GdiDrawStreamStruct structure. I think that function has parameters like: GetObject, handles to the Device Object, size of structure GdiDrawStreamStruct and pointer to the structure.

Using the code

The ThemeButton class has one public function, InitControl. This function has default parameters for Macintosh, Vista, XP and Luna Longhorn styles.

The parameters of the function are as follows:

  1. Bitmap resource identifier.
  2. Bitmap list orientation: vertical or horizontal.
  3. Width in pixels of each image from the bitmap list.
  4. Height in pixels of each image from the bitmap list.
  5. The transparent color of the bitmap.
  6. Font name for the button text.
  7. Button draw style: Mac, Vista, XP or Luna Longhorn style.
BOOL CWowButtonsDlg::OnInitDialog()
{
     CDialog::OnInitDialog();
     // Set the icon for this dialog.
     // The framework does this automatically
     //  when the application's main window is not a dialog
     SetIcon(m_hIcon, TRUE);  // Set big icon
     SetIcon(m_hIcon, FALSE); // Set small icon

     m_vista_but1.InitControl(IDB_VISTA_PUSHBUTTON_BMP,TRUE,21,23,RGB(0,0,0),
         _T("Tahoma"),ThemeButton::VISTA_STYLE);
     m_vista_but2.InitControl(IDB_VISTA_PUSHBUTTON_BMP,TRUE,21,23,RGB(0,0,0),
         _T("Tahoma"),ThemeButton::VISTA_STYLE);
     m_vista_but3.InitControl(IDB_VISTA_PUSHBUTTON_BMP,TRUE,21,23,RGB(0,0,0),
         _T("Tahoma"),ThemeButton::VISTA_STYLE);
     m_vista_but4.InitControl(IDB_VISTA_PUSHBUTTON_BMP,TRUE,21,23,RGB(0,0,0),
         _T("Tahoma"),ThemeButton::VISTA_STYLE);
     m_mac_but1  .InitControl(IDB_MAC_PUSHBUTTON_BMP,  
         TRUE,34,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::MAC_STYLE);
     m_mac_but2  .InitControl(IDB_MAC_PUSHBUTTON_BMP,  
         TRUE,34,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::MAC_STYLE);
     m_mac_but3  .InitControl(IDB_MAC_PUSHBUTTON_BMP,  
         TRUE,34,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::MAC_STYLE);
     m_mac_but4  .InitControl(IDB_MAC_PUSHBUTTON_BMP,  
         
         TRUE,34,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::MAC_STYLE);
     m_xp_but1   .InitControl(IDB_XP_PUSHBUTTON_BMP,    
         TRUE,20,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::XP_STYLE);
     m_xp_but2   .InitControl(IDB_XP_PUSHBUTTON_BMP,   
         TRUE,20,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::XP_STYLE);
     m_xp_but3   .InitControl(IDB_XP_PUSHBUTTON_BMP,   
         TRUE,20,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::XP_STYLE);
     m_xp_but4   .InitControl(IDB_XP_PUSHBUTTON_BMP,    
         TRUE,20,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::XP_STYLE);
     m_luna_but1 .InitControl(IDB_LONGHORN_PUSHBUTTON, 
         TRUE,28,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::LUNA_LONGHORN);
     m_luna_but2 .InitControl(IDB_LONGHORN_PUSHBUTTON, 
         TRUE,28,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::LUNA_LONGHORN);
     m_luna_but3 .InitControl(IDB_LONGHORN_PUSHBUTTON, 
         TRUE,28,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::LUNA_LONGHORN);
     m_luna_but4 .InitControl(IDB_LONGHORN_PUSHBUTTON, 
         TRUE,28,23,RGB(0,0,0),_T("Tahoma"),ThemeButton::LUNA_LONGHORN);

     return TRUE;  // return TRUE  unless you set the focus to a control
}

Update (3.7.2006)

  • Now, the function LoadImage is called with the LR_CREATEDIBSECTION flag.

Update (7.3.2007)

  • I change name of class to ThameButton. create new header file GdiDrawStream.h for drawing function, flags & structure declarations. I Add XP and Luna Longhorn Styles of Button.

License

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


Written By
Software Developer
Georgia Georgia
I am from Georgia and my country is occupied by Russia!
Full support to Ukraine in fighting in unprovoked war started by Putler!

Comments and Discussions

 
GeneralGreat work!!! only one small thing Pin
yfital25-Mar-09 22:52
yfital25-Mar-09 22:52 
Generalexcellent work. Pin
GDA.Hans4-Feb-09 14:49
GDA.Hans4-Feb-09 14:49 
GeneralDEFAULT state doesn't work Pin
Joe Smith IX2-Oct-07 21:16
Joe Smith IX2-Oct-07 21:16 
GeneralCrashes on Windows 2000 Pin
Joe Smith IX30-Jul-07 6:31
Joe Smith IX30-Jul-07 6:31 
GeneralRe: Crashes on Windows 2000 Pin
Zakaria Butskhrikdize4-Aug-07 19:12
Zakaria Butskhrikdize4-Aug-07 19:12 
GeneralRe: Crashes on Windows 2000 Pin
Zakaria Butskhrikdize4-Aug-07 19:15
Zakaria Butskhrikdize4-Aug-07 19:15 
GeneralRe: Crashes on Windows 2000 [modified] Pin
Joe Smith IX2-Oct-07 21:12
Joe Smith IX2-Oct-07 21:12 
QuestionHow to apply the theme button to radio button Pin
axe_ara25-Apr-07 20:14
axe_ara25-Apr-07 20:14 
AnswerRe: How to apply the theme button to radio button Pin
Zakaria Butskhrikdize10-May-07 23:05
Zakaria Butskhrikdize10-May-07 23:05 
GeneralMaKaVeLi Pin
tabuka_n25-Mar-07 13:00
tabuka_n25-Mar-07 13:00 
Generalvano Pin
vanichkas5-Jul-06 22:45
vanichkas5-Jul-06 22:45 
good job thank's very much Smile | :) Smile | :)
it's very sample way to write very good controls Smile | :)
GeneralPulse Animation Pin
Scott Moss5-Jul-06 1:04
Scott Moss5-Jul-06 1:04 
GeneralZaqro Pin
Zakaria Butskhrikdize2-Jul-06 22:41
Zakaria Butskhrikdize2-Jul-06 22:41 
GeneralGood work Pin
Pharago30-Jun-06 16:08
Pharago30-Jun-06 16:08 
QuestionWhat is GdiDrawStream ? Pin
Davide Calabro29-Jun-06 1:45
Davide Calabro29-Jun-06 1:45 
GeneralZqr Pin
Zakaria Butskhrikdize25-Jun-06 22:58
Zakaria Butskhrikdize25-Jun-06 22:58 
GeneralNo Buttons are drawed Pin
Devil for ever25-Jun-06 5:23
Devil for ever25-Jun-06 5:23 
GeneralRe: No Buttons are drawed Pin
Sudhir Mangla26-Jun-06 18:15
professionalSudhir Mangla26-Jun-06 18:15 

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.