]>
git.saurik.com Git - wxWidgets.git/blob - src/os2/bmpbuttn.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxBitmapButton
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
18 #include "wx/bmpbuttn.h"
21 #include "wx/os2/private.h"
24 IMPLEMENT_DYNAMIC_CLASS(wxBitmapButton
, wxButton
)
26 #define BUTTON_HEIGHT_FACTOR (EDIT_CONTROL_FACTOR * 1.1)
28 wxBitmapButtonBase::wxBitmapButtonBase()
38 bool wxBitmapButton::Create(
41 , const wxBitmap
& rBitmap
45 , const wxValidator
& rValidator
46 , const wxString
& rsName
49 m_bmpNormal
= rBitmap
;
52 SetValidator(rValidator
);
55 pParent
->AddChild(this);
57 m_backgroundColour
= pParent
->GetBackgroundColour() ;
58 m_foregroundColour
= pParent
->GetForegroundColour() ;
59 m_windowStyle
= lStyle
;
61 if (lStyle
& wxBU_AUTODRAW
)
63 m_marginX
= wxDEFAULT_BUTTON_MARGIN
;
64 m_marginY
= wxDEFAULT_BUTTON_MARGIN
;
70 int nHeight
= rSize
.y
;
73 m_windowId
= NewControlId();
77 if (nWidth
== -1 && rBitmap
.Ok())
78 nWidth
= rBitmap
.GetWidth() + 4 * m_marginX
;
80 if (nHeight
== -1 && rBitmap
.Ok())
81 nHeight
= rBitmap
.GetHeight() + 4 * m_marginY
;
83 ULONG ulOS2Style
= WS_VISIBLE
| WS_TABSTOP
| BS_USERBUTTON
;
85 if (m_windowStyle
& wxCLIP_SIBLINGS
)
86 ulOS2Style
|= WS_CLIPSIBLINGS
;
88 m_hWnd
= (WXHWND
)::WinCreateWindow( GetHwndOf(pParent
)
101 //Subclass again for purposes of dialog editing mode
104 SetFont(*wxSMALL_FONT
);
111 } // end of wxBitmapButton::Create
113 bool wxBitmapButton::OS2OnDraw(
114 WXDRAWITEMSTRUCT
* pItem
117 PUSERBUTTON pUser
= (PUSERBUTTON
)pItem
;
118 bool bAutoDraw
= (GetWindowStyleFlag() & wxBU_AUTODRAW
) != 0;
125 bool bIsSelected
= pUser
->fsState
& BDS_HILITED
;
126 wxClientDC
vDc(this);
128 if (bIsSelected
&& m_bmpSelected
.Ok())
129 pBitmap
= &m_bmpSelected
;
130 else if ((pUser
->fsState
& BDS_DEFAULT
) && m_bmpFocus
.Ok())
131 pBitmap
= &m_bmpFocus
;
132 else if ((pUser
->fsState
& BDS_DISABLED
) && m_bmpDisabled
.Ok())
133 pBitmap
= &m_bmpDisabled
;
135 pBitmap
= &m_bmpNormal
;
142 // Centre the bitmap in the control area
148 int nWidth
= vDc
.m_vRclPaint
.xRight
- vDc
.m_vRclPaint
.xLeft
;
149 int nHeight
= vDc
.m_vRclPaint
.xRight
- vDc
.m_vRclPaint
.xLeft
;
150 int nBmpWidth
= pBitmap
->GetWidth();
151 int nBmpHeight
= pBitmap
->GetHeight();
153 nX1
= nX
+ (nWidth
- nBmpWidth
) / 2;
154 nY1
= nX
+ (nHeight
- nBmpHeight
) / 2;
156 if (bIsSelected
&& bAutoDraw
)
163 // Draw the button face
174 vDc
.DrawBitmap( *pBitmap
181 // Draw focus / disabled state, if auto-drawing
183 if ((pUser
->fsState
== BDS_DISABLED
) && bAutoDraw
)
185 DrawButtonDisable( vDc
189 else if ((pUser
->fsState
== BDS_DEFAULT
) && bAutoDraw
)
191 DrawButtonFocus(vDc
);
194 } // end of wxBitmapButton::OS2OnDraw
196 void wxBitmapButton::DrawFace (
202 // Set up drawing colors
204 wxPen
vHiLitePen(wxColour(255, 255, 255), 2, wxSOLID
); // White
205 wxPen
vDarkShadowPen(wxColour(85, 85, 85), 2, wxSOLID
);
206 wxColour
vFaceColor(wxColour(204, 204, 204)); // Light Grey
209 // Draw the main button face
211 ::WinFillRect(rDC
.GetHPS(), &rDC
.m_vRclPaint
, vFaceColor
.GetPixel());
216 rDC
.SetPen(bSel
? vDarkShadowPen
: vHiLitePen
);
217 rDC
.DrawLine( rDC
.m_vRclPaint
.xLeft
+ 1
218 ,rDC
.m_vRclPaint
.yTop
- 1
219 ,rDC
.m_vRclPaint
.xRight
- 1
220 ,rDC
.m_vRclPaint
.yTop
- 1
222 rDC
.DrawLine( rDC
.m_vRclPaint
.xLeft
+ 1
223 ,rDC
.m_vRclPaint
.yTop
- 1
224 ,rDC
.m_vRclPaint
.xLeft
+ 1
225 ,rDC
.m_vRclPaint
.yBottom
+ 1
228 rDC
.SetPen(bSel
? vHiLitePen
: vDarkShadowPen
);
229 rDC
.DrawLine( rDC
.m_vRclPaint
.xLeft
+ 1
230 ,rDC
.m_vRclPaint
.yBottom
+ 1
231 ,rDC
.m_vRclPaint
.xRight
- 1
232 ,rDC
.m_vRclPaint
.yBottom
+ 1
234 rDC
.DrawLine( rDC
.m_vRclPaint
.xRight
- 1
235 ,rDC
.m_vRclPaint
.yTop
- 1
236 ,rDC
.m_vRclPaint
.xRight
- 1
237 ,rDC
.m_vRclPaint
.yBottom
+ 1
240 } // end of wxBitmapButton::DrawFace
242 void wxBitmapButton::DrawButtonFocus (
246 wxPen
vBlackPen(wxColour(0, 0, 0), 2, wxSOLID
);
249 // Draw a thick black line around the outside of the button
251 rDC
.SetPen(vBlackPen
);
252 rDC
.DrawLine( rDC
.m_vRclPaint
.xLeft
253 ,rDC
.m_vRclPaint
.yTop
254 ,rDC
.m_vRclPaint
.xRight
255 ,rDC
.m_vRclPaint
.yTop
257 rDC
.DrawLine( rDC
.m_vRclPaint
.xRight
258 ,rDC
.m_vRclPaint
.yTop
259 ,rDC
.m_vRclPaint
.xRight
260 ,rDC
.m_vRclPaint
.yBottom
262 rDC
.DrawLine( rDC
.m_vRclPaint
.xRight
263 ,rDC
.m_vRclPaint
.yBottom
264 ,rDC
.m_vRclPaint
.xLeft
265 ,rDC
.m_vRclPaint
.yBottom
267 rDC
.DrawLine( rDC
.m_vRclPaint
.xLeft
268 ,rDC
.m_vRclPaint
.yBottom
269 ,rDC
.m_vRclPaint
.xLeft
270 ,rDC
.m_vRclPaint
.yTop
272 } // end of wxBitmapButton::DrawButtonFocus
274 void wxBitmapButton::DrawButtonDisable(
279 wxPen
vGreyPen(wxColour(128, 128, 128), 2, wxSOLID
);
282 // Draw a thick black line around the outside of the button
284 rDC
.SetPen(vGreyPen
);
285 rDC
.DrawLine( rDC
.m_vRclPaint
.xLeft
286 ,rDC
.m_vRclPaint
.yTop
287 ,rDC
.m_vRclPaint
.xRight
288 ,rDC
.m_vRclPaint
.yTop
290 rDC
.DrawLine( rDC
.m_vRclPaint
.xRight
291 ,rDC
.m_vRclPaint
.yTop
292 ,rDC
.m_vRclPaint
.xRight
293 ,rDC
.m_vRclPaint
.yBottom
295 rDC
.DrawLine( rDC
.m_vRclPaint
.xRight
296 ,rDC
.m_vRclPaint
.yBottom
297 ,rDC
.m_vRclPaint
.xLeft
298 ,rDC
.m_vRclPaint
.yBottom
300 rDC
.DrawLine( rDC
.m_vRclPaint
.xLeft
301 ,rDC
.m_vRclPaint
.yBottom
302 ,rDC
.m_vRclPaint
.xLeft
303 ,rDC
.m_vRclPaint
.yTop
305 wxDisableBitmap(rBmp
, vGreyPen
.GetColour().GetPixel());
306 } // end of wxBitmapButton::DrawButtonDisable
308 void wxBitmapButton::SetDefault()
310 wxButton::SetDefault();
313 #endif // ndef for wxUSE_BMPBUTTON