Child positioning fixes and font adjustments
[wxWidgets.git] / src / os2 / button.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: button.cpp
3 // Purpose: wxButton
4 // Author: David Webster
5 // Modified by:
6 // Created: 10/13/99
7 // RCS-ID: $Id$
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
14
15 #ifndef WX_PRECOMP
16 #include "wx/button.h"
17 #include "wx/brush.h"
18 #include "wx/panel.h"
19 #include "wx/bmpbuttn.h"
20 #include "wx/settings.h"
21 #include "wx/dcscreen.h"
22 #include "wx/scrolwin.h"
23 #endif
24
25 #include "wx/os2/private.h"
26
27 #define BUTTON_HEIGHT_FROM_CHAR_HEIGHT(cy) (11*EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy)/10)
28
29 //
30 // Should be at the very least less than winDEFAULT_BUTTON_MARGIN
31 //
32 #define FOCUS_MARGIN 3
33
34 #ifndef BST_CHECKED
35 #define BST_CHECKED 0x0001
36 #endif
37
38 IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl)
39
40 // Button
41
42 bool wxButton::Create(
43 wxWindow* pParent
44 , wxWindowID vId
45 , const wxString& rsLabel
46 , const wxPoint& rPos
47 , const wxSize& rSize
48 , long lStyle
49 #if wxUSE_VALIDATORS
50 , const wxValidator& rValidator
51 #endif
52 , const wxString& rsName
53 )
54 {
55 SetName(rsName);
56 #if wxUSE_VALIDATORS
57 SetValidator(rValidator);
58 #endif
59 m_windowStyle = lStyle;
60 pParent->AddChild((wxButton *)this);
61 if (vId == -1)
62 m_windowId = NewControlId();
63 else
64 m_windowId = vId;
65 lStyle = WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON;
66
67 //
68 // OS/2 PM does not have Right/Left/Top/Bottom styles.
69 // We will have to define an additional style when we implement notebooks
70 // for a notebook page button
71 //
72 if (m_windowStyle & wxCLIP_SIBLINGS )
73 lStyle |= WS_CLIPSIBLINGS;
74 //
75 // If the parent is a scrolled window the controls must
76 // have this style or they will overlap the scrollbars
77 //
78 if (pParent)
79 if (pParent->IsKindOf(CLASSINFO(wxScrolledWindow)) ||
80 pParent->IsKindOf(CLASSINFO(wxGenericScrolledWindow)))
81 lStyle |= WS_CLIPSIBLINGS;
82
83 m_hWnd = (WXHWND)::WinCreateWindow( GetHwndOf(pParent) // Parent handle
84 ,WC_BUTTON // A Button class window
85 ,(PSZ)rsLabel.c_str() // Button text
86 ,lStyle // Button style
87 ,0, 0, 0, 0 // Location and size
88 ,GetHwndOf(pParent) // Owner handle
89 ,HWND_TOP // Top of Z-Order
90 ,vId // Identifier
91 ,NULL // No control data
92 ,NULL // No Presentation parameters
93 );
94 if (m_hWnd == 0)
95 {
96 return FALSE;
97 }
98
99 //
100 // Subclass again for purposes of dialog editing mode
101 //
102 SubclassWin(m_hWnd);
103 wxFont* pButtonFont = new wxFont( 8
104 ,wxSWISS
105 ,wxNORMAL
106 ,wxNORMAL
107 );
108 SetFont(*pButtonFont);
109 SetXComp(0);
110 SetYComp(0);
111 SetSize( rPos.x
112 ,rPos.y
113 ,rSize.x
114 ,rSize.y
115 );
116 return TRUE;
117 } // end of wxButton::Create
118
119 wxButton::~wxButton()
120 {
121 wxPanel* pPanel = wxDynamicCast(GetParent(), wxPanel);
122
123 if (pPanel)
124 {
125 if (pPanel->GetDefaultItem() == this)
126 {
127 //
128 // Don't leave the panel with invalid default item
129 //
130 pPanel->SetDefaultItem(NULL);
131 }
132 }
133 } // end of wxButton::~wxButton
134
135 // ----------------------------------------------------------------------------
136 // size management including autosizing
137 // ----------------------------------------------------------------------------
138
139 wxSize wxButton::DoGetBestSize() const
140 {
141 wxString rsLabel = wxGetWindowText(GetHWND());
142 int nWidthButton;
143 int nWidthChar;
144 int nHeightChar;
145
146 GetTextExtent( rsLabel
147 ,&nWidthButton
148 ,NULL
149 );
150
151 wxGetCharSize( GetHWND()
152 ,&nWidthChar
153 ,&nHeightChar
154 ,(wxFont*)&GetFont()
155 );
156
157 //
158 // Add a margin - the button is wider than just its label
159 //
160 nWidthButton += 3 * nWidthChar;
161
162 //
163 // The button height is proportional to the height of the font used
164 //
165 int nHeightButton = BUTTON_HEIGHT_FROM_CHAR_HEIGHT(nHeightChar);
166
167 //
168 // Need a little extra to make it look right
169 //
170 nHeightButton += nHeightChar/1.5;
171
172 wxSize vSize = GetDefaultSize();
173
174 if (nWidthButton > vSize.x)
175 vSize.x = nWidthButton;
176 if (nHeightButton > vSize.y)
177 vSize.y = nHeightButton;
178 return vSize;
179 } // end of wxButton::DoGetBestSize
180
181 /* static */
182 wxSize wxButton::GetDefaultSize()
183 {
184 static wxSize vSizeBtn;
185
186 if (vSizeBtn.x == 0)
187 {
188 wxScreenDC vDc;
189
190 vDc.SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
191
192 //
193 // The size of a standard button in the dialog units is 50x14,
194 // translate this to pixels
195 // NB1: the multipliers come from the Windows convention
196 // NB2: the extra +1/+2 were needed to get the size be the same as the
197 // size of the buttons in the standard dialog - I don't know how
198 // this happens, but on my system this size is 75x23 in pixels and
199 // 23*8 isn't even divisible by 14... Would be nice to understand
200 // why these constants are needed though!
201 vSizeBtn.x = (50 * (vDc.GetCharWidth() + 1))/4;
202 vSizeBtn.y = ((14 * vDc.GetCharHeight()) + 2)/8;
203 }
204 return vSizeBtn;
205 } // end of wxButton::GetDefaultSize
206
207 void wxButton::Command (
208 wxCommandEvent& rEvent
209 )
210 {
211 ProcessCommand (rEvent);
212 } // end of wxButton::Command
213
214 // ----------------------------------------------------------------------------
215 // helpers
216 // ----------------------------------------------------------------------------
217
218 bool wxButton::SendClickEvent()
219 {
220 wxCommandEvent vEvent( wxEVT_COMMAND_BUTTON_CLICKED
221 ,GetId()
222 );
223
224 vEvent.SetEventObject(this);
225 return ProcessCommand(vEvent);
226 } // end of wxButton::SendClickEvent
227
228 void wxButton::SetDefault()
229 {
230 wxWindow* pParent = GetParent();
231 wxButton* pBtnOldDefault = NULL;
232 wxPanel* pPanel = wxDynamicCast(pParent, wxPanel);
233 long lStyle = 0L;
234
235 if (pParent)
236 {
237 wxWindow* pWinOldDefault = pParent->SetDefaultItem(this);
238
239 pBtnOldDefault = wxDynamicCast(pWinOldDefault, wxButton);
240 }
241 if (pBtnOldDefault && pBtnOldDefault != this)
242 {
243 //
244 // Remove the BS_DEFPUSHBUTTON style from the other button
245 //
246 lStyle = ::WinQueryWindowULong(GetHwndOf(pBtnOldDefault), QWL_STYLE);
247
248 //
249 // Don't do it with the owner drawn buttons because it will reset
250 // BS_OWNERDRAW style bit too (BS_OWNERDRAW & BS_DEFPUSHBUTTON != 0)!
251 //
252 if ((lStyle & BS_USERBUTTON) != BS_USERBUTTON)
253 {
254 lStyle &= ~BS_DEFAULT;
255 ::WinSetWindowULong(GetHwndOf(pBtnOldDefault), QWL_STYLE, lStyle);
256 }
257 else
258 {
259 //
260 // Redraw the button - it will notice itself that it's not the
261 // default one any longer
262 //
263 pBtnOldDefault->Refresh();
264 }
265 }
266
267 //
268 // Set this button as the default
269 //
270 lStyle = ::WinQueryWindowULong(GetHwnd(), QWL_STYLE);
271 if ((lStyle & BS_USERBUTTON) != BS_USERBUTTON)
272 {
273 lStyle != BS_DEFAULT;
274 ::WinSetWindowULong(GetHwnd(), QWL_STYLE, lStyle);
275 }
276 } // end of wxButton::SetDefault
277
278 // ----------------------------------------------------------------------------
279 // event/message handlers
280 // ----------------------------------------------------------------------------
281
282 bool wxButton::OS2Command(
283 WXUINT uParam
284 , WXWORD wId
285 )
286 {
287 bool bProcessed = FALSE;
288
289 switch (uParam)
290 {
291 case BN_CLICKED: // normal buttons send this
292 case BN_DBLCLICKED: // owner-drawn ones also send this
293 bProcessed = SendClickEvent();
294 break;
295 }
296 return bProcessed;
297 } // end of wxButton::OS2Command
298
299 WXHBRUSH wxButton::OnCtlColor(
300 WXHDC pDC
301 , WXHWND pWnd
302 , WXUINT nCtlColor
303 , WXUINT uMessage
304 , WXWPARAM wParam
305 , WXLPARAM lParam
306 )
307 {
308 wxBrush* pBackgroundBrush = wxTheBrushList->FindOrCreateBrush( GetBackgroundColour()
309 ,wxSOLID
310 );
311
312 return (WXHBRUSH)pBackgroundBrush->GetResourceHandle();
313 } // end of wxButton::OnCtlColor
314
315 void wxButton::MakeOwnerDrawn()
316 {
317 long lStyle = 0L;
318
319 lStyle = ::WinQueryWindowULong(GetHwnd(), QWL_STYLE);
320 if ((lStyle & BS_USERBUTTON) != BS_USERBUTTON)
321 {
322 //
323 // Make it so
324 //
325 lStyle |= BS_USERBUTTON;
326 ::WinSetWindowULong(GetHwnd(), QWL_STYLE, lStyle);
327 }
328 } // end of wxCButton::MakeOwnerDrawn
329
330 MRESULT wxButton::WindowProc(
331 WXUINT uMsg
332 , WXWPARAM wParam
333 , WXLPARAM lParam
334 )
335 {
336 //
337 // When we receive focus, we want to become the default button in our
338 // parent panel
339 //
340 if (uMsg == WM_SETFOCUS)
341 {
342 SetDefault();
343
344 //
345 // Let the default processign take place too
346 //
347 }
348
349 else if (uMsg == WM_BUTTON1DBLCLK)
350 {
351 //
352 // Emulate a click event to force an owner-drawn button to change its
353 // appearance - without this, it won't do it
354 //
355 (void)wxControl::OS2WindowProc( WM_BUTTON1DOWN
356 ,wParam
357 ,lParam
358 );
359
360 //
361 // And conitnue with processing the message normally as well
362 //
363 }
364
365 //
366 // Let the base class do all real processing
367 //
368 return (wxControl::OS2WindowProc( uMsg
369 ,wParam
370 ,lParam
371 ));
372 } // end of wxW indowProc
373