]>
Commit | Line | Data |
---|---|---|
0e320a79 | 1 | ///////////////////////////////////////////////////////////////////////////// |
f1e01716 | 2 | // Name: src/os2/button.cpp |
0e320a79 | 3 | // Purpose: wxButton |
d88de032 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
d88de032 | 6 | // Created: 10/13/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
d88de032 | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
d88de032 DW |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
f1e01716 WS |
15 | #include "wx/button.h" |
16 | ||
d88de032 | 17 | #ifndef WX_PRECOMP |
1a75e76f | 18 | #include "wx/app.h" |
d88de032 DW |
19 | #include "wx/brush.h" |
20 | #include "wx/panel.h" | |
21 | #include "wx/bmpbuttn.h" | |
22 | #include "wx/settings.h" | |
23 | #include "wx/dcscreen.h" | |
a4a16252 | 24 | #include "wx/scrolwin.h" |
39ad4a54 | 25 | #include "wx/toplevel.h" |
0e320a79 DW |
26 | #endif |
27 | ||
5f7bcb48 | 28 | #include "wx/stockitem.h" |
d88de032 | 29 | #include "wx/os2/private.h" |
0e320a79 | 30 | |
987da0d4 DW |
31 | #define BUTTON_HEIGHT_FROM_CHAR_HEIGHT(cy) (11*EDIT_HEIGHT_FROM_CHAR_HEIGHT(cy)/10) |
32 | ||
33 | // | |
34 | // Should be at the very least less than winDEFAULT_BUTTON_MARGIN | |
35 | // | |
36 | #define FOCUS_MARGIN 3 | |
37 | ||
38 | #ifndef BST_CHECKED | |
39 | #define BST_CHECKED 0x0001 | |
40 | #endif | |
41 | ||
0e320a79 | 42 | IMPLEMENT_DYNAMIC_CLASS(wxButton, wxControl) |
0e320a79 DW |
43 | |
44 | // Button | |
45 | ||
6670f564 WS |
46 | bool wxButton::Create( wxWindow* pParent, |
47 | wxWindowID vId, | |
48 | const wxString& rsLbl, | |
49 | const wxPoint& rPos, | |
50 | const wxSize& rSize, | |
51 | long lStyle, | |
52 | const wxValidator& rValidator, | |
53 | const wxString& rsName) | |
0e320a79 | 54 | { |
5f7bcb48 VS |
55 | wxString rsLabel(rsLbl); |
56 | if (rsLabel.empty() && wxIsStockID(vId)) | |
57 | rsLabel = wxGetStockLabel(vId); | |
d37bb826 SN |
58 | |
59 | wxString sLabel = ::wxPMTextToLabel(rsLabel); | |
60 | ||
987da0d4 | 61 | SetName(rsName); |
5d4b632b | 62 | #if wxUSE_VALIDATORS |
987da0d4 | 63 | SetValidator(rValidator); |
5d4b632b | 64 | #endif |
987da0d4 DW |
65 | m_windowStyle = lStyle; |
66 | pParent->AddChild((wxButton *)this); | |
67 | if (vId == -1) | |
0e320a79 DW |
68 | m_windowId = NewControlId(); |
69 | else | |
987da0d4 DW |
70 | m_windowId = vId; |
71 | lStyle = WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON; | |
72 | ||
73 | // | |
74 | // OS/2 PM does not have Right/Left/Top/Bottom styles. | |
75 | // We will have to define an additional style when we implement notebooks | |
76 | // for a notebook page button | |
77 | // | |
78 | if (m_windowStyle & wxCLIP_SIBLINGS ) | |
79 | lStyle |= WS_CLIPSIBLINGS; | |
5d44b24e | 80 | |
987da0d4 DW |
81 | m_hWnd = (WXHWND)::WinCreateWindow( GetHwndOf(pParent) // Parent handle |
82 | ,WC_BUTTON // A Button class window | |
65f3f920 | 83 | ,sLabel.c_str() // Button text |
987da0d4 DW |
84 | ,lStyle // Button style |
85 | ,0, 0, 0, 0 // Location and size | |
86 | ,GetHwndOf(pParent) // Owner handle | |
87 | ,HWND_TOP // Top of Z-Order | |
88 | ,vId // Identifier | |
89 | ,NULL // No control data | |
90 | ,NULL // No Presentation parameters | |
91 | ); | |
92 | if (m_hWnd == 0) | |
93 | { | |
f1e01716 | 94 | return false; |
987da0d4 | 95 | } |
0e320a79 | 96 | |
987da0d4 DW |
97 | // |
98 | // Subclass again for purposes of dialog editing mode | |
99 | // | |
100 | SubclassWin(m_hWnd); | |
2c1e8f2e DW |
101 | wxFont* pButtonFont = new wxFont( 8 |
102 | ,wxSWISS | |
103 | ,wxNORMAL | |
104 | ,wxNORMAL | |
105 | ); | |
106 | SetFont(*pButtonFont); | |
107 | SetXComp(0); | |
108 | SetYComp(0); | |
987da0d4 DW |
109 | SetSize( rPos.x |
110 | ,rPos.y | |
111 | ,rSize.x | |
112 | ,rSize.y | |
113 | ); | |
b3260bce | 114 | delete pButtonFont; |
6670f564 | 115 | return true; |
987da0d4 | 116 | } // end of wxButton::Create |
0e320a79 | 117 | |
d88de032 | 118 | wxButton::~wxButton() |
0e320a79 | 119 | { |
6c20e8f8 | 120 | wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow); |
987da0d4 | 121 | |
6c20e8f8 | 122 | if (tlw) |
d88de032 | 123 | { |
6c20e8f8 | 124 | if (tlw->GetDefaultItem() == this) |
d88de032 | 125 | { |
987da0d4 DW |
126 | // |
127 | // Don't leave the panel with invalid default item | |
128 | // | |
6c20e8f8 | 129 | tlw->SetDefaultItem(NULL); |
d88de032 DW |
130 | } |
131 | } | |
987da0d4 | 132 | } // end of wxButton::~wxButton |
d88de032 DW |
133 | |
134 | // ---------------------------------------------------------------------------- | |
135 | // size management including autosizing | |
136 | // ---------------------------------------------------------------------------- | |
137 | ||
e78c4d50 | 138 | wxSize wxButton::DoGetBestSize() const |
d88de032 | 139 | { |
987da0d4 DW |
140 | wxString rsLabel = wxGetWindowText(GetHWND()); |
141 | int nWidthButton; | |
142 | int nWidthChar; | |
143 | int nHeightChar; | |
0d598bae | 144 | wxFont vFont = (wxFont)GetFont(); |
987da0d4 DW |
145 | |
146 | GetTextExtent( rsLabel | |
147 | ,&nWidthButton | |
148 | ,NULL | |
149 | ); | |
150 | ||
151 | wxGetCharSize( GetHWND() | |
152 | ,&nWidthChar | |
153 | ,&nHeightChar | |
0d598bae | 154 | ,&vFont |
987da0d4 DW |
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 | // | |
9923c37d | 170 | nHeightButton += (int)(nHeightChar/1.5); |
987da0d4 | 171 | |
97d74dd2 DW |
172 | if (!HasFlag(wxBU_EXACTFIT)) |
173 | { | |
174 | wxSize vSize = GetDefaultSize(); | |
987da0d4 | 175 | |
97d74dd2 DW |
176 | if (nWidthButton > vSize.x) |
177 | vSize.x = nWidthButton; | |
178 | if (nHeightButton > vSize.y) | |
179 | vSize.y = nHeightButton; | |
180 | return vSize; | |
181 | } | |
182 | return wxSize( nWidthButton | |
183 | ,nHeightButton | |
184 | ); | |
987da0d4 | 185 | } // end of wxButton::DoGetBestSize |
d88de032 DW |
186 | |
187 | /* static */ | |
188 | wxSize wxButton::GetDefaultSize() | |
189 | { | |
987da0d4 | 190 | static wxSize vSizeBtn; |
d88de032 | 191 | |
987da0d4 | 192 | if (vSizeBtn.x == 0) |
d88de032 | 193 | { |
987da0d4 | 194 | wxScreenDC vDc; |
d88de032 | 195 | |
a756f210 | 196 | vDc.SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)); |
987da0d4 DW |
197 | |
198 | // | |
199 | // The size of a standard button in the dialog units is 50x14, | |
d88de032 DW |
200 | // translate this to pixels |
201 | // NB1: the multipliers come from the Windows convention | |
202 | // NB2: the extra +1/+2 were needed to get the size be the same as the | |
203 | // size of the buttons in the standard dialog - I don't know how | |
204 | // this happens, but on my system this size is 75x23 in pixels and | |
205 | // 23*8 isn't even divisible by 14... Would be nice to understand | |
206 | // why these constants are needed though! | |
987da0d4 DW |
207 | vSizeBtn.x = (50 * (vDc.GetCharWidth() + 1))/4; |
208 | vSizeBtn.y = ((14 * vDc.GetCharHeight()) + 2)/8; | |
d88de032 | 209 | } |
987da0d4 DW |
210 | return vSizeBtn; |
211 | } // end of wxButton::GetDefaultSize | |
d88de032 | 212 | |
987da0d4 DW |
213 | void wxButton::Command ( |
214 | wxCommandEvent& rEvent | |
215 | ) | |
d88de032 | 216 | { |
987da0d4 DW |
217 | ProcessCommand (rEvent); |
218 | } // end of wxButton::Command | |
d88de032 DW |
219 | |
220 | // ---------------------------------------------------------------------------- | |
221 | // helpers | |
222 | // ---------------------------------------------------------------------------- | |
223 | ||
224 | bool wxButton::SendClickEvent() | |
225 | { | |
987da0d4 DW |
226 | wxCommandEvent vEvent( wxEVT_COMMAND_BUTTON_CLICKED |
227 | ,GetId() | |
228 | ); | |
d88de032 | 229 | |
987da0d4 DW |
230 | vEvent.SetEventObject(this); |
231 | return ProcessCommand(vEvent); | |
232 | } // end of wxButton::SendClickEvent | |
0e320a79 DW |
233 | |
234 | void wxButton::SetDefault() | |
235 | { | |
6c20e8f8 | 236 | wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow); |
987da0d4 | 237 | |
6c20e8f8 | 238 | wxCHECK_RET( tlw, _T("button without top level window?") ); |
430974f8 DW |
239 | |
240 | // | |
77ffb593 | 241 | // Set this one as the default button both for wxWidgets and Windows |
430974f8 | 242 | // |
6c20e8f8 | 243 | wxWindow* pWinOldDefault = tlw->SetDefaultItem(this); |
cfcebdb1 | 244 | |
6670f564 WS |
245 | SetDefaultStyle( wxDynamicCast(pWinOldDefault, wxButton), false); |
246 | SetDefaultStyle( this, true ); | |
430974f8 DW |
247 | } // end of wxButton::SetDefault |
248 | ||
249 | void wxButton::SetTmpDefault() | |
250 | { | |
6c20e8f8 | 251 | wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow); |
430974f8 | 252 | |
6c20e8f8 | 253 | wxCHECK_RET( tlw, _T("button without top level window?") ); |
430974f8 | 254 | |
6c20e8f8 | 255 | wxWindow* pWinOldDefault = tlw->GetDefaultItem(); |
cfcebdb1 | 256 | |
6c20e8f8 | 257 | tlw->SetTmpDefaultItem(this); |
6670f564 WS |
258 | SetDefaultStyle( wxDynamicCast(pWinOldDefault, wxButton), false); |
259 | SetDefaultStyle( this, true ); | |
430974f8 DW |
260 | } // end of wxButton::SetTmpDefault |
261 | ||
262 | void wxButton::UnsetTmpDefault() | |
263 | { | |
6c20e8f8 | 264 | wxTopLevelWindow *tlw = wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow); |
430974f8 | 265 | |
6c20e8f8 | 266 | wxCHECK_RET( tlw, _T("button without top level window?") ); |
987da0d4 | 267 | |
6c20e8f8 | 268 | tlw->SetTmpDefaultItem(NULL); |
430974f8 | 269 | |
6c20e8f8 | 270 | wxWindow* pWinOldDefault = tlw->GetDefaultItem(); |
430974f8 | 271 | |
6670f564 WS |
272 | SetDefaultStyle( this, false ); |
273 | SetDefaultStyle( wxDynamicCast(pWinOldDefault, wxButton), true ); | |
430974f8 DW |
274 | } // end of wxButton::UnsetTmpDefault |
275 | ||
cfcebdb1 DW |
276 | void wxButton::SetDefaultStyle( |
277 | wxButton* pBtn | |
278 | , bool bOn | |
279 | ) | |
430974f8 | 280 | { |
430974f8 | 281 | long lStyle; |
cfcebdb1 DW |
282 | // |
283 | // We may be called with NULL pointer -- simpler to do the check here than | |
284 | // in the caller which does wxDynamicCast() | |
285 | // | |
286 | if (!pBtn) | |
287 | return; | |
430974f8 | 288 | |
cfcebdb1 DW |
289 | // |
290 | // First, let DefDlgProc() know about the new default button | |
291 | // | |
292 | if (bOn) | |
293 | { | |
294 | if (!wxTheApp->IsActive()) | |
295 | return; | |
296 | ||
297 | // | |
298 | // In OS/2 the dialog/panel doesn't really know it has a default | |
299 | // button, the default button simply has that style. We'll just | |
300 | // simulate by setting focus to it | |
301 | // | |
302 | pBtn->SetFocus(); | |
303 | } | |
304 | lStyle = ::WinQueryWindowULong(GetHwndOf(pBtn), QWL_STYLE); | |
305 | if (!(lStyle & BS_DEFAULT) == bOn) | |
987da0d4 | 306 | { |
987da0d4 DW |
307 | if ((lStyle & BS_USERBUTTON) != BS_USERBUTTON) |
308 | { | |
cfcebdb1 | 309 | if (bOn) |
d00110f6 | 310 | lStyle |= BS_DEFAULT; |
cfcebdb1 DW |
311 | else |
312 | lStyle &= ~BS_DEFAULT; | |
313 | ::WinSetWindowULong(GetHwndOf(pBtn), QWL_STYLE, lStyle); | |
987da0d4 DW |
314 | } |
315 | else | |
316 | { | |
cfcebdb1 DW |
317 | // |
318 | // Redraw the button - it will notice itself that it's not the | |
987da0d4 | 319 | // default one any longer |
cfcebdb1 DW |
320 | // |
321 | pBtn->Refresh(); | |
430974f8 | 322 | } |
987da0d4 | 323 | } |
430974f8 | 324 | } // end of wxButton::UpdateDefaultStyle |
0e320a79 | 325 | |
d88de032 DW |
326 | // ---------------------------------------------------------------------------- |
327 | // event/message handlers | |
328 | // ---------------------------------------------------------------------------- | |
0e320a79 | 329 | |
6670f564 | 330 | bool wxButton::OS2Command(WXUINT uParam, WXWORD WXUNUSED(wId)) |
0e320a79 | 331 | { |
6670f564 | 332 | bool bProcessed = false; |
987da0d4 DW |
333 | |
334 | switch (uParam) | |
d88de032 | 335 | { |
987da0d4 DW |
336 | case BN_CLICKED: // normal buttons send this |
337 | case BN_DBLCLICKED: // owner-drawn ones also send this | |
338 | bProcessed = SendClickEvent(); | |
d88de032 DW |
339 | break; |
340 | } | |
6670f564 | 341 | |
987da0d4 DW |
342 | return bProcessed; |
343 | } // end of wxButton::OS2Command | |
344 | ||
6670f564 WS |
345 | WXHBRUSH wxButton::OnCtlColor( WXHDC WXUNUSED(pDC), |
346 | WXHWND WXUNUSED(pWnd), | |
347 | WXUINT WXUNUSED(nCtlColor), | |
348 | WXUINT WXUNUSED(uMessage), | |
349 | WXWPARAM WXUNUSED(wParam), | |
350 | WXLPARAM WXUNUSED(lParam) ) | |
987da0d4 | 351 | { |
6670f564 WS |
352 | wxBrush* pBackgroundBrush = wxTheBrushList->FindOrCreateBrush( GetBackgroundColour() |
353 | ,wxSOLID | |
354 | ); | |
987da0d4 DW |
355 | |
356 | return (WXHBRUSH)pBackgroundBrush->GetResourceHandle(); | |
357 | } // end of wxButton::OnCtlColor | |
358 | ||
359 | void wxButton::MakeOwnerDrawn() | |
0e320a79 | 360 | { |
987da0d4 | 361 | long lStyle = 0L; |
d88de032 | 362 | |
987da0d4 DW |
363 | lStyle = ::WinQueryWindowULong(GetHwnd(), QWL_STYLE); |
364 | if ((lStyle & BS_USERBUTTON) != BS_USERBUTTON) | |
365 | { | |
366 | // | |
367 | // Make it so | |
368 | // | |
369 | lStyle |= BS_USERBUTTON; | |
370 | ::WinSetWindowULong(GetHwnd(), QWL_STYLE, lStyle); | |
371 | } | |
bc5a847c DW |
372 | } // end of wxButton::MakeOwnerDrawn |
373 | ||
374 | WXDWORD wxButton::OS2GetStyle( | |
375 | long lStyle | |
376 | , WXDWORD* pdwExstyle | |
377 | ) const | |
378 | { | |
379 | // | |
380 | // Buttons never have an external border, they draw their own one | |
381 | // | |
382 | WXDWORD dwStyle = wxControl::OS2GetStyle( (lStyle & ~wxBORDER_MASK) | wxBORDER_NONE | |
383 | ,pdwExstyle | |
384 | ); | |
385 | ||
386 | // | |
387 | // We must use WS_CLIPSIBLINGS with the buttons or they would draw over | |
388 | // each other in any resizeable dialog which has more than one button in | |
389 | // the bottom | |
390 | // | |
391 | dwStyle |= WS_CLIPSIBLINGS; | |
392 | return dwStyle; | |
393 | } // end of wxButton::OS2GetStyle | |
987da0d4 | 394 | |
6670f564 WS |
395 | MRESULT wxButton::WindowProc( WXUINT uMsg, |
396 | WXWPARAM wParam, | |
397 | WXLPARAM lParam ) | |
987da0d4 DW |
398 | { |
399 | // | |
430974f8 DW |
400 | // When we receive focus, we want to temporary become the default button in |
401 | // our parent panel so that pressing "Enter" would activate us -- and when | |
402 | // losing it we should restore the previous default button as well | |
987da0d4 DW |
403 | // |
404 | if (uMsg == WM_SETFOCUS) | |
405 | { | |
430974f8 DW |
406 | if (SHORT1FROMMP(lParam) == TRUE) |
407 | SetTmpDefault(); | |
408 | else | |
409 | UnsetTmpDefault(); | |
987da0d4 DW |
410 | |
411 | // | |
412 | // Let the default processign take place too | |
413 | // | |
414 | } | |
415 | ||
416 | else if (uMsg == WM_BUTTON1DBLCLK) | |
417 | { | |
418 | // | |
419 | // Emulate a click event to force an owner-drawn button to change its | |
420 | // appearance - without this, it won't do it | |
421 | // | |
422 | (void)wxControl::OS2WindowProc( WM_BUTTON1DOWN | |
423 | ,wParam | |
424 | ,lParam | |
425 | ); | |
426 | ||
427 | // | |
428 | // And conitnue with processing the message normally as well | |
429 | // | |
430 | } | |
0e320a79 | 431 | |
987da0d4 DW |
432 | // |
433 | // Let the base class do all real processing | |
434 | // | |
435 | return (wxControl::OS2WindowProc( uMsg | |
436 | ,wParam | |
437 | ,lParam | |
438 | )); | |
bc5a847c | 439 | } // end of wxWindowProc |