]> git.saurik.com Git - wxWidgets.git/blob - src/msw/bmpbuttn.cpp
suppress harmless gcc warning about not handling all enum values in a switch
[wxWidgets.git] / src / msw / bmpbuttn.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/bmpbuttn.cpp
3 // Purpose: wxBitmapButton
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
14
15 #ifdef __BORLANDC__
16 #pragma hdrstop
17 #endif
18
19 #if wxUSE_BMPBUTTON
20
21 #include "wx/bmpbuttn.h"
22
23 #ifndef WX_PRECOMP
24 #include "wx/log.h"
25 #include "wx/dcmemory.h"
26 #include "wx/image.h"
27 #endif
28
29 #include "wx/msw/private.h"
30 #include "wx/msw/dc.h" // for wxDCTemp
31
32 #include "wx/msw/uxtheme.h"
33
34 #if wxUSE_UXTHEME
35 // no need to include tmschema.h
36 #ifndef BP_PUSHBUTTON
37 #define BP_PUSHBUTTON 1
38
39 #define PBS_NORMAL 1
40 #define PBS_HOT 2
41 #define PBS_PRESSED 3
42 #define PBS_DISABLED 4
43 #define PBS_DEFAULTED 5
44
45 #define TMT_CONTENTMARGINS 3602
46 #endif
47 #endif // wxUSE_UXTHEME
48
49 #ifndef ODS_NOFOCUSRECT
50 #define ODS_NOFOCUSRECT 0x0200
51 #endif
52
53 // ----------------------------------------------------------------------------
54 // macros
55 // ----------------------------------------------------------------------------
56
57 #if wxUSE_EXTENDED_RTTI
58
59 WX_DEFINE_FLAGS( wxBitmapButtonStyle )
60
61 wxBEGIN_FLAGS( wxBitmapButtonStyle )
62 // new style border flags, we put them first to
63 // use them for streaming out
64 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
65 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
66 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
67 wxFLAGS_MEMBER(wxBORDER_RAISED)
68 wxFLAGS_MEMBER(wxBORDER_STATIC)
69 wxFLAGS_MEMBER(wxBORDER_NONE)
70
71 // old style border flags
72 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
73 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
74 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
75 wxFLAGS_MEMBER(wxRAISED_BORDER)
76 wxFLAGS_MEMBER(wxSTATIC_BORDER)
77 wxFLAGS_MEMBER(wxBORDER)
78
79 // standard window styles
80 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
81 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
82 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
83 wxFLAGS_MEMBER(wxWANTS_CHARS)
84 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
85 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
86 wxFLAGS_MEMBER(wxVSCROLL)
87 wxFLAGS_MEMBER(wxHSCROLL)
88
89 wxFLAGS_MEMBER(wxBU_AUTODRAW)
90 wxFLAGS_MEMBER(wxBU_LEFT)
91 wxFLAGS_MEMBER(wxBU_RIGHT)
92 wxFLAGS_MEMBER(wxBU_TOP)
93 wxFLAGS_MEMBER(wxBU_BOTTOM)
94 wxEND_FLAGS( wxBitmapButtonStyle )
95
96 IMPLEMENT_DYNAMIC_CLASS_XTI(wxBitmapButton, wxButton,"wx/bmpbuttn.h")
97
98 wxBEGIN_PROPERTIES_TABLE(wxBitmapButton)
99 wxPROPERTY_FLAGS( WindowStyle , wxBitmapButtonStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
100 wxEND_PROPERTIES_TABLE()
101
102 wxBEGIN_HANDLERS_TABLE(wxBitmapButton)
103 wxEND_HANDLERS_TABLE()
104
105 wxCONSTRUCTOR_5( wxBitmapButton , wxWindow* , Parent , wxWindowID , Id , wxBitmap , Bitmap , wxPoint , Position , wxSize , Size )
106
107 #else
108 IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton, wxButton)
109 #endif
110
111 BEGIN_EVENT_TABLE(wxBitmapButton, wxBitmapButtonBase)
112 EVT_SYS_COLOUR_CHANGED(wxBitmapButton::OnSysColourChanged)
113 END_EVENT_TABLE()
114
115 /*
116 TODO PROPERTIES :
117
118 long "style" , wxBU_AUTODRAW
119 bool "default" , 0
120 bitmap "selected" ,
121 bitmap "focus" ,
122 bitmap "disabled" ,
123 */
124
125 bool wxBitmapButton::Create(wxWindow *parent,
126 wxWindowID id,
127 const wxBitmap& bitmap,
128 const wxPoint& pos,
129 const wxSize& size, long style,
130 const wxValidator& wxVALIDATOR_PARAM(validator),
131 const wxString& name)
132 {
133 if ( !wxBitmapButtonBase::Create(parent, id, "",
134 pos, size,
135 style | wxBU_NOTEXT,
136 validator, name) )
137 return false;
138
139 SetBitmapLabel(bitmap);
140
141 return true;
142 }
143
144 void wxBitmapButton::DoSetBitmap(const wxBitmap& bitmap, State which)
145 {
146 if ( bitmap.IsOk() )
147 {
148 switch ( which )
149 {
150 #if wxUSE_IMAGE
151 case State_Normal:
152 if ( !HasFlag(wxBU_AUTODRAW) && !m_disabledSetByUser )
153 {
154 wxImage img(bitmap.ConvertToImage().ConvertToGreyscale());
155 wxBitmapButtonBase::DoSetBitmap(img, State_Disabled);
156 }
157 break;
158 #endif // wxUSE_IMAGE
159
160 case State_Focused:
161 // if the focus bitmap is specified but current one isn't, use
162 // the focus bitmap for hovering as well if this is consistent
163 // with the current Windows version look and feel
164 //
165 // rationale: this is compatible with the old wxGTK behaviour
166 // and also makes it much easier to do "the right thing" for
167 // all platforms (some of them, such as Windows XP, have "hot"
168 // buttons while others don't)
169 if ( !m_hoverSetByUser )
170 wxBitmapButtonBase::DoSetBitmap(bitmap, State_Current);
171 break;
172
173 case State_Current:
174 // don't overwrite it with the focused bitmap
175 m_hoverSetByUser = true;
176 break;
177
178 case State_Disabled:
179 // don't overwrite it with the version automatically created
180 // from the normal one
181 m_disabledSetByUser = true;
182 break;
183
184 default:
185 // nothing special to do but include the default clause to
186 // suppress gcc warnings
187 ;
188 }
189 }
190
191 wxBitmapButtonBase::DoSetBitmap(bitmap, which);
192 }
193
194 #endif // wxUSE_BMPBUTTON