1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/bmpbuttn.cpp
3 // Purpose: wxBitmapButton
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "bmpbuttn.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
26 #include "wx/bmpbuttn.h"
28 #include "wx/dcmemory.h"
31 #include "wx/msw/private.h"
33 IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton
, wxButton
)
35 #define BUTTON_HEIGHT_FACTOR (EDIT_CONTROL_FACTOR * 1.1)
37 bool wxBitmapButton::Create(wxWindow
*parent
, wxWindowID id
, const wxBitmap
& bitmap
,
39 const wxSize
& size
, long style
,
40 const wxValidator
& validator
,
47 SetValidator(validator
);
48 #endif // wxUSE_VALIDATORS
50 parent
->AddChild(this);
52 m_backgroundColour
= parent
->GetBackgroundColour();
53 m_foregroundColour
= parent
->GetForegroundColour();
54 m_windowStyle
= style
;
56 if ( style
& wxBU_AUTODRAW
)
58 m_marginX
= wxDEFAULT_BUTTON_MARGIN
;
59 m_marginY
= wxDEFAULT_BUTTON_MARGIN
;
68 m_windowId
= NewControlId();
72 if ( width
== -1 && bitmap
.Ok())
73 width
= bitmap
.GetWidth() + 2*m_marginX
;
75 if ( height
== -1 && bitmap
.Ok())
76 height
= bitmap
.GetHeight() + 2*m_marginY
;
78 long msStyle
= WS_VISIBLE
| WS_TABSTOP
| WS_CHILD
| BS_OWNERDRAW
;
80 if ( m_windowStyle
& wxCLIP_SIBLINGS
)
81 msStyle
|= WS_CLIPSIBLINGS
;
84 if(m_windowStyle
& wxBU_LEFT
)
86 if(m_windowStyle
& wxBU_RIGHT
)
88 if(m_windowStyle
& wxBU_TOP
)
90 if(m_windowStyle
& wxBU_BOTTOM
)
94 m_hWnd
= (WXHWND
)CreateWindowEx
107 // Subclass again for purposes of dialog editing mode
110 SetFont(parent
->GetFont());
112 SetSize(x
, y
, width
, height
);
117 // VZ: should be at the very least less than wxDEFAULT_BUTTON_MARGIN
118 #define FOCUS_MARGIN 3
120 bool wxBitmapButton::MSWOnDraw(WXDRAWITEMSTRUCT
*item
)
122 #if defined(__WIN95__)
123 long style
= GetWindowLong((HWND
) GetHWND(), GWL_STYLE
);
124 if (style
& BS_BITMAP
)
126 // Let default procedure draw the bitmap, which is defined
127 // in the Windows resource.
132 LPDRAWITEMSTRUCT lpDIS
= (LPDRAWITEMSTRUCT
) item
;
133 HDC hDC
= lpDIS
->hDC
;
134 UINT state
= lpDIS
->itemState
;
135 bool isSelected
= (state
& ODS_SELECTED
) != 0;
136 bool autoDraw
= (GetWindowStyleFlag() & wxBU_AUTODRAW
) != 0;
139 // choose the bitmap to use depending on the button state
142 if ( isSelected
&& m_bmpSelected
.Ok() )
143 bitmap
= &m_bmpSelected
;
144 else if ((state
& ODS_FOCUS
) && m_bmpFocus
.Ok())
145 bitmap
= &m_bmpFocus
;
146 else if ((state
& ODS_DISABLED
) && m_bmpDisabled
.Ok())
147 bitmap
= &m_bmpDisabled
;
149 bitmap
= &m_bmpNormal
;
154 // centre the bitmap in the control area
155 int x
= lpDIS
->rcItem
.left
;
156 int y
= lpDIS
->rcItem
.top
;
157 int width
= lpDIS
->rcItem
.right
- x
;
158 int height
= lpDIS
->rcItem
.bottom
- y
;
159 int wBmp
= bitmap
->GetWidth();
160 int hBmp
= bitmap
->GetHeight();
164 if(m_windowStyle
& wxBU_LEFT
)
165 x1
= x
+ (FOCUS_MARGIN
+1);
166 else if(m_windowStyle
& wxBU_RIGHT
)
167 x1
= x
+ (width
- wBmp
) - (FOCUS_MARGIN
+1);
169 x1
= x
+ (width
- wBmp
) / 2;
171 if(m_windowStyle
& wxBU_TOP
)
172 y1
= y
+ (FOCUS_MARGIN
+1);
173 else if(m_windowStyle
& wxBU_BOTTOM
)
174 y1
= y
+ (height
- hBmp
) - (FOCUS_MARGIN
+1);
176 y1
= y
+ (height
- hBmp
) / 2;
178 if ( isSelected
&& autoDraw
)
184 // draw the face, if auto-drawing
187 DrawFace((WXHDC
) hDC
,
188 lpDIS
->rcItem
.left
, lpDIS
->rcItem
.top
,
189 lpDIS
->rcItem
.right
, lpDIS
->rcItem
.bottom
,
195 dst
.SetHDC((WXHDC
) hDC
, FALSE
);
196 dst
.DrawBitmap(*bitmap
, x1
, y1
, TRUE
);
198 // draw focus / disabled state, if auto-drawing
199 if ( (state
& ODS_DISABLED
) && autoDraw
)
201 DrawButtonDisable((WXHDC
) hDC
,
202 lpDIS
->rcItem
.left
, lpDIS
->rcItem
.top
,
203 lpDIS
->rcItem
.right
, lpDIS
->rcItem
.bottom
,
206 else if ( (state
& ODS_FOCUS
) && autoDraw
)
208 DrawButtonFocus((WXHDC
) hDC
,
212 lpDIS
->rcItem
.bottom
,
219 // GRG Feb/2000, support for bmp buttons with Win95/98 standard LNF
221 #if defined(__WIN95__)
223 void wxBitmapButton::DrawFace( WXHDC dc
, int left
, int top
, int right
, int bottom
, bool sel
)
232 // create needed pens and brush
233 penHiLight
= CreatePen(PS_SOLID
, 0, GetSysColor(COLOR_3DHILIGHT
));
234 penLight
= CreatePen(PS_SOLID
, 0, GetSysColor(COLOR_3DLIGHT
));
235 penShadow
= CreatePen(PS_SOLID
, 0, GetSysColor(COLOR_3DSHADOW
));
236 penDkShadow
= CreatePen(PS_SOLID
, 0, GetSysColor(COLOR_3DDKSHADOW
));
237 brushFace
= CreateSolidBrush(GetSysColor(COLOR_BTNFACE
));
239 // draw the rectangle
244 rect
.bottom
= bottom
;
245 FillRect((HDC
) dc
, &rect
, brushFace
);
248 oldp
= (HPEN
) SelectObject( (HDC
) dc
, sel
? penDkShadow
: penHiLight
);
249 MoveToEx((HDC
) dc
, left
, top
, NULL
); LineTo((HDC
) dc
, right
-1, top
);
250 MoveToEx((HDC
) dc
, left
, top
+1, NULL
); LineTo((HDC
) dc
, left
, bottom
-1);
252 SelectObject( (HDC
) dc
, sel
? penShadow
: penLight
);
253 MoveToEx((HDC
) dc
, left
+1, top
+1, NULL
); LineTo((HDC
) dc
, right
-2, top
+1);
254 MoveToEx((HDC
) dc
, left
+1, top
+2, NULL
); LineTo((HDC
) dc
, left
+1, bottom
-2);
256 SelectObject( (HDC
) dc
, sel
? penLight
: penShadow
);
257 MoveToEx((HDC
) dc
, left
+1, bottom
-2, NULL
); LineTo((HDC
) dc
, right
-1, bottom
-2);
258 MoveToEx((HDC
) dc
, right
-2, bottom
-3, NULL
); LineTo((HDC
) dc
, right
-2, top
);
260 SelectObject( (HDC
) dc
, sel
? penHiLight
: penDkShadow
);
261 MoveToEx((HDC
) dc
, left
, bottom
-1, NULL
); LineTo((HDC
) dc
, right
+2, bottom
-1);
262 MoveToEx((HDC
) dc
, right
-1, bottom
-2, NULL
); LineTo((HDC
) dc
, right
-1, top
-1);
264 // delete allocated resources
265 SelectObject((HDC
) dc
,oldp
);
266 DeleteObject(penHiLight
);
267 DeleteObject(penLight
);
268 DeleteObject(penShadow
);
269 DeleteObject(penDkShadow
);
270 DeleteObject(brushFace
);
275 void wxBitmapButton::DrawFace( WXHDC dc
, int left
, int top
, int right
, int bottom
, bool sel
)
283 // create needed pens and brush
284 penBorder
= CreatePen(PS_SOLID
, 0, GetSysColor(COLOR_WINDOWFRAME
));
285 penShadow
= CreatePen(PS_SOLID
, 0, GetSysColor(COLOR_BTNSHADOW
));
286 penLight
= CreatePen(PS_SOLID
, 0, GetSysColor(COLOR_BTNHIGHLIGHT
));
287 brushFace
= CreateSolidBrush(COLOR_BTNFACE
);
289 // draw the rectangle
294 rect
.bottom
= bottom
;
295 FillRect((HDC
) dc
, &rect
, brushFace
);
298 oldp
= (HPEN
) SelectObject( (HDC
) dc
, penBorder
);
299 MoveToEx((HDC
) dc
,left
+1,top
,NULL
);LineTo((HDC
) dc
,right
-1,top
);
300 MoveToEx((HDC
) dc
,left
,top
+1,NULL
);LineTo((HDC
) dc
,left
,bottom
-1);
301 MoveToEx((HDC
) dc
,left
+1,bottom
-1,NULL
);LineTo((HDC
) dc
,right
-1,bottom
-1);
302 MoveToEx((HDC
) dc
,right
-1,top
+1,NULL
);LineTo((HDC
) dc
,right
-1,bottom
-1);
304 SelectObject( (HDC
) dc
, penShadow
);
307 MoveToEx((HDC
) dc
,left
+1 ,bottom
-2 ,NULL
);
308 LineTo((HDC
) dc
, left
+1 ,top
+1);
309 LineTo((HDC
) dc
, right
-2 ,top
+1);
313 MoveToEx((HDC
) dc
,left
+1 ,bottom
-2 ,NULL
);
314 LineTo((HDC
) dc
, right
-2 ,bottom
-2);
315 LineTo((HDC
) dc
, right
-2 ,top
);
317 MoveToEx((HDC
) dc
,left
+2 ,bottom
-3 ,NULL
);
318 LineTo((HDC
) dc
, right
-3 ,bottom
-3);
319 LineTo((HDC
) dc
, right
-3 ,top
+1);
321 SelectObject( (HDC
) dc
, penLight
);
323 MoveToEx((HDC
) dc
,left
+1 ,bottom
-2 ,NULL
);
324 LineTo((HDC
) dc
, left
+1 ,top
+1);
325 LineTo((HDC
) dc
, right
-2 ,top
+1);
328 // delete allocated resources
329 SelectObject((HDC
) dc
,oldp
);
330 DeleteObject(penBorder
);
331 DeleteObject(penLight
);
332 DeleteObject(penShadow
);
333 DeleteObject(brushFace
);
336 #endif // defined(__WIN95__)
339 void wxBitmapButton::DrawButtonFocus( WXHDC dc
, int left
, int top
, int right
, int bottom
, bool sel
)
345 rect
.bottom
= bottom
;
346 InflateRect( &rect
, - FOCUS_MARGIN
, - FOCUS_MARGIN
);
348 // GRG: the focus rectangle should not move when the button is pushed!
351 OffsetRect( &rect, 1, 1 );
354 DrawFocusRect( (HDC
) dc
, &rect
);
357 extern HBRUSH wxDisableButtonBrush
;
358 void wxBitmapButton::DrawButtonDisable( WXHDC dc
, int left
, int top
, int right
, int bottom
, bool with_marg
)
360 HBRUSH old
= (HBRUSH
) SelectObject( (HDC
) dc
, wxDisableButtonBrush
);
362 // VZ: what's this?? there is no such ROP AFAIK
364 DWORD dwRop
= 0xFA0089L
;
366 DWORD dwRop
= 0xFA0089UL
;
373 right
-= 2 * m_marginX
;
374 bottom
-= 2 * m_marginY
;
377 ::PatBlt( (HDC
) dc
, left
, top
, right
, bottom
, dwRop
);
379 ::SelectObject( (HDC
) dc
, old
);
382 void wxBitmapButton::SetDefault()
384 wxButton::SetDefault();
387 #endif // wxUSE_BMPBUTTON