]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | // Name: windows.cpp |
2 | // Purpose: wxWindow | |
cdf1e714 | 3 | // Author: David Webster |
0e320a79 | 4 | // Modified by: |
cdf1e714 | 5 | // Created: 10/12/99 |
0e320a79 | 6 | // RCS-ID: $Id$ |
cdf1e714 DW |
7 | // Copyright: (c) David Webster |
8 | // Licence: wxWindows licence | |
0e320a79 DW |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
a885d89a | 11 | // |
cdf1e714 | 12 | // For compilers that support precompilation, includes "wx.h". |
a885d89a | 13 | // |
cdf1e714 | 14 | #include "wx/wxprec.h" |
0e320a79 | 15 | |
849949b1 DW |
16 | #ifndef WX_PRECOMP |
17 | #define INCL_DOS | |
18 | #define INCL_PM | |
19 | #include <os2.h> | |
20 | #include "wx/window.h" | |
21 | #include "wx/accel.h" | |
22 | #include "wx/setup.h" | |
23 | #include "wx/menu.h" | |
24 | #include "wx/dc.h" | |
25 | #include "wx/dcclient.h" | |
26 | #include "wx/utils.h" | |
27 | #include "wx/app.h" | |
28 | #include "wx/panel.h" | |
29 | #include "wx/layout.h" | |
1a75e76f SN |
30 | #include "wx/checkbox.h" |
31 | #include "wx/combobox.h" | |
849949b1 DW |
32 | #include "wx/dialog.h" |
33 | #include "wx/frame.h" | |
34 | #include "wx/listbox.h" | |
35 | #include "wx/button.h" | |
36 | #include "wx/msgdlg.h" | |
19193a2c | 37 | #include "wx/scrolwin.h" |
a4a16252 | 38 | #include "wx/radiobox.h" |
1a75e76f | 39 | #include "wx/radiobut.h" |
a4a16252 | 40 | #include "wx/slider.h" |
272ebf16 | 41 | #include "wx/statbox.h" |
a4a16252 SN |
42 | #include "wx/statusbr.h" |
43 | #include "wx/toolbar.h" | |
44 | #include "wx/settings.h" | |
849949b1 DW |
45 | #include <stdio.h> |
46 | #endif | |
47 | ||
48 | #if wxUSE_OWNER_DRAWN | |
49 | #include "wx/ownerdrw.h" | |
50 | #endif | |
51 | ||
52 | #if wxUSE_DRAG_AND_DROP | |
53 | #include "wx/dnd.h" | |
54 | #endif | |
0e320a79 DW |
55 | |
56 | #include "wx/menuitem.h" | |
57 | #include "wx/log.h" | |
58 | ||
cdf1e714 DW |
59 | #include "wx/os2/private.h" |
60 | ||
849949b1 DW |
61 | #if wxUSE_TOOLTIPS |
62 | #include "wx/tooltip.h" | |
0e320a79 DW |
63 | #endif |
64 | ||
1de4baa3 DW |
65 | #if wxUSE_NOTEBOOK |
66 | #include "wx/notebook.h" | |
67 | #endif | |
68 | ||
849949b1 DW |
69 | #if wxUSE_CARET |
70 | #include "wx/caret.h" | |
71 | #endif // wxUSE_CARET | |
72 | ||
73 | #include "wx/intl.h" | |
74 | #include "wx/log.h" | |
75 | ||
76 | ||
77 | #include "wx/textctrl.h" | |
78 | ||
0e320a79 DW |
79 | #include <string.h> |
80 | ||
a885d89a DW |
81 | // |
82 | // Place compiler, OS specific includes here | |
83 | // | |
849949b1 | 84 | |
a885d89a DW |
85 | // |
86 | // Standard macros -- these are for OS/2 PM, but most GUI's have something similar | |
87 | // | |
849949b1 | 88 | #ifndef GET_X_LPARAM |
a885d89a | 89 | // |
849949b1 | 90 | // SHORT1FROMMP -- LOWORD |
a885d89a | 91 | // |
849949b1 | 92 | #define GET_X_LPARAM(mp) ((unsigned short)(unsigned long)(mp)) |
a885d89a | 93 | // |
849949b1 | 94 | // SHORT2FROMMP -- HIWORD |
a885d89a | 95 | // |
849949b1 DW |
96 | #define GET_Y_LPARAM(mp) ((unsigned short)(unsigned long)(mp >> 16)) |
97 | #endif // GET_X_LPARAM | |
98 | ||
29a99be3 DW |
99 | #ifndef CW_USEDEFAULT |
100 | # define CW_USEDEFAULT ((int)0x80000000) | |
101 | #endif | |
102 | ||
a086de98 DW |
103 | #ifndef VK_OEM_1 |
104 | #define VK_OEM_1 0xBA | |
105 | #define VK_OEM_PLUS 0xBB | |
106 | #define VK_OEM_COMMA 0xBC | |
107 | #define VK_OEM_MINUS 0xBD | |
108 | #define VK_OEM_PERIOD 0xBE | |
109 | #define VK_OEM_2 0xBF | |
110 | #define VK_OEM_3 0xC0 | |
111 | #define VK_OEM_4 0xDB | |
112 | #define VK_OEM_5 0xDC | |
113 | #define VK_OEM_6 0xDD | |
114 | #define VK_OEM_7 0xDE | |
115 | #endif | |
116 | ||
849949b1 DW |
117 | // --------------------------------------------------------------------------- |
118 | // global variables | |
119 | // --------------------------------------------------------------------------- | |
120 | ||
a885d89a | 121 | // |
19193a2c | 122 | // The last PM message we got (MT-UNSAFE) |
a885d89a | 123 | // |
61243a51 | 124 | QMSG s_currentMsg; |
849949b1 | 125 | |
19193a2c | 126 | #if wxUSE_MENUS_NATIVE |
a885d89a | 127 | wxMenu* wxCurrentPopupMenu = NULL; |
19193a2c KB |
128 | #endif // wxUSE_MENUS_NATIVE |
129 | ||
a885d89a | 130 | wxList* wxWinHandleList = NULL; |
849949b1 DW |
131 | |
132 | // --------------------------------------------------------------------------- | |
133 | // private functions | |
134 | // --------------------------------------------------------------------------- | |
a885d89a DW |
135 | |
136 | // | |
849949b1 | 137 | // the window proc for all our windows; most gui's have something similar |
a885d89a | 138 | // |
f23208ca DW |
139 | MRESULT EXPENTRY wxWndProc( HWND hWnd |
140 | ,ULONG message | |
141 | ,MPARAM mp1 | |
142 | ,MPARAM mp2 | |
143 | ); | |
11e59d47 DW |
144 | |
145 | #ifdef __WXDEBUG__ | |
146 | const char *wxGetMessageName(int message); | |
147 | #endif //__WXDEBUG__ | |
148 | ||
430974f8 DW |
149 | wxWindowOS2* FindWindowForMouseEvent( wxWindow* pWin |
150 | ,short* pnX | |
151 | ,short* pnY | |
152 | ); | |
153 | void wxRemoveHandleAssociation(wxWindowOS2* pWin); | |
154 | void wxAssociateWinWithHandle( HWND hWnd | |
155 | ,wxWindowOS2* pWin | |
156 | ); | |
a885d89a | 157 | wxWindow* wxFindWinFromHandle(WXHWND hWnd); |
849949b1 | 158 | |
a885d89a DW |
159 | // |
160 | // get the current state of SHIFT/CTRL keys | |
161 | // | |
162 | static inline bool IsShiftDown() { return (::WinGetKeyState(HWND_DESKTOP, VK_SHIFT) & 0x8000) != 0; } | |
163 | static inline bool IsCtrlDown() { return (::WinGetKeyState(HWND_DESKTOP, VK_CTRL) & 0x8000) != 0; } | |
06519806 DW |
164 | |
165 | static wxWindow* gpWinBeingCreated = NULL; | |
166 | ||
849949b1 DW |
167 | // --------------------------------------------------------------------------- |
168 | // event tables | |
169 | // --------------------------------------------------------------------------- | |
0e320a79 | 170 | |
19193a2c KB |
171 | // in wxUniv-OS/2 this class is abstract because it doesn't have DoPopupMenu() |
172 | // method | |
173 | #ifdef __WXUNIVERSAL__ | |
174 | IMPLEMENT_ABSTRACT_CLASS(wxWindowOS2, wxWindowBase) | |
175 | #else // __WXPM__ | |
849949b1 | 176 | IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase) |
19193a2c | 177 | #endif // __WXUNIVERSAL__/__WXPM__ |
0e320a79 | 178 | |
19193a2c | 179 | BEGIN_EVENT_TABLE(wxWindowOS2, wxWindowBase) |
0367c1c0 DW |
180 | EVT_ERASE_BACKGROUND(wxWindowOS2::OnEraseBackground) |
181 | EVT_SYS_COLOUR_CHANGED(wxWindowOS2::OnSysColourChanged) | |
182 | EVT_INIT_DIALOG(wxWindowOS2::OnInitDialog) | |
183 | EVT_IDLE(wxWindowOS2::OnIdle) | |
184 | EVT_SET_FOCUS(wxWindowOS2::OnSetFocus) | |
849949b1 | 185 | END_EVENT_TABLE() |
0e320a79 | 186 | |
849949b1 DW |
187 | // =========================================================================== |
188 | // implementation | |
189 | // =========================================================================== | |
0e320a79 | 190 | |
19193a2c KB |
191 | // --------------------------------------------------------------------------- |
192 | // wxWindow utility functions | |
193 | // --------------------------------------------------------------------------- | |
194 | ||
a885d89a | 195 | // |
776d87d5 | 196 | // Find an item given the PM Window id |
a885d89a | 197 | // |
0367c1c0 | 198 | wxWindow* wxWindowOS2::FindItem( |
a885d89a | 199 | long lId |
776d87d5 | 200 | ) const |
cdf1e714 | 201 | { |
19193a2c KB |
202 | #if wxUSE_CONTROLS |
203 | wxControl* pItem = wxDynamicCast(this, wxControl); | |
a885d89a DW |
204 | |
205 | if (pItem) | |
206 | { | |
207 | // | |
208 | // I it we or one of our "internal" children? | |
209 | // | |
19193a2c KB |
210 | if (pItem->GetId() == lId |
211 | #ifndef __WXUNIVERSAL__ | |
212 | || (pItem->GetSubcontrols().Index(lId) != wxNOT_FOUND) | |
213 | #endif | |
214 | ) | |
a885d89a DW |
215 | { |
216 | return pItem; | |
217 | } | |
218 | } | |
19193a2c | 219 | #endif // wxUSE_CONTROLS |
a885d89a | 220 | |
776d87d5 DW |
221 | wxWindowList::Node* pCurrent = GetChildren().GetFirst(); |
222 | ||
223 | while (pCurrent) | |
cdf1e714 | 224 | { |
776d87d5 | 225 | wxWindow* pChildWin = pCurrent->GetData(); |
a885d89a | 226 | wxWindow* pWnd = pChildWin->FindItem(lId); |
cdf1e714 | 227 | |
776d87d5 DW |
228 | if (pWnd) |
229 | return pWnd; | |
cdf1e714 | 230 | |
776d87d5 | 231 | pCurrent = pCurrent->GetNext(); |
cdf1e714 | 232 | } |
776d87d5 | 233 | return(NULL); |
0367c1c0 | 234 | } // end of wxWindowOS2::FindItem |
cdf1e714 | 235 | |
a885d89a | 236 | // |
776d87d5 | 237 | // Find an item given the PM Window handle |
a885d89a | 238 | // |
0367c1c0 | 239 | wxWindow* wxWindowOS2::FindItemByHWND( |
776d87d5 DW |
240 | WXHWND hWnd |
241 | , bool bControlOnly | |
242 | ) const | |
cdf1e714 | 243 | { |
776d87d5 DW |
244 | wxWindowList::Node* pCurrent = GetChildren().GetFirst(); |
245 | ||
246 | while (pCurrent) | |
cdf1e714 | 247 | { |
776d87d5 | 248 | wxWindow* pParent = pCurrent->GetData(); |
cdf1e714 | 249 | |
a885d89a | 250 | // |
cdf1e714 | 251 | // Do a recursive search. |
a885d89a | 252 | // |
776d87d5 DW |
253 | wxWindow* pWnd = pParent->FindItemByHWND(hWnd); |
254 | ||
255 | if (pWnd) | |
256 | return(pWnd); | |
cdf1e714 | 257 | |
19193a2c KB |
258 | if (!bControlOnly |
259 | #if wxUSE_CONTROLS | |
260 | || pParent->IsKindOf(CLASSINFO(wxControl)) | |
261 | #endif // wxUSE_CONTROLS | |
262 | ) | |
cdf1e714 | 263 | { |
776d87d5 DW |
264 | wxWindow* pItem = pCurrent->GetData(); |
265 | ||
266 | if (pItem->GetHWND() == hWnd) | |
267 | return(pItem); | |
cdf1e714 DW |
268 | else |
269 | { | |
776d87d5 DW |
270 | if (pItem->ContainsHWND(hWnd)) |
271 | return(pItem); | |
cdf1e714 DW |
272 | } |
273 | } | |
776d87d5 | 274 | pCurrent = pCurrent->GetNext(); |
cdf1e714 | 275 | } |
776d87d5 | 276 | return(NULL); |
0367c1c0 | 277 | } // end of wxWindowOS2::FindItemByHWND |
cdf1e714 | 278 | |
a885d89a | 279 | // |
cdf1e714 | 280 | // Default command handler |
a885d89a | 281 | // |
0367c1c0 | 282 | bool wxWindowOS2::OS2Command( |
776d87d5 DW |
283 | WXUINT WXUNUSED(uParam) |
284 | , WXWORD WXUNUSED(uId) | |
285 | ) | |
cdf1e714 | 286 | { |
776d87d5 | 287 | return(FALSE); |
cdf1e714 DW |
288 | } |
289 | ||
290 | // ---------------------------------------------------------------------------- | |
291 | // constructors and such | |
292 | // ---------------------------------------------------------------------------- | |
293 | ||
0367c1c0 | 294 | void wxWindowOS2::Init() |
0e320a79 | 295 | { |
a885d89a DW |
296 | // |
297 | // Generic | |
298 | // | |
849949b1 | 299 | InitBase(); |
0e320a79 | 300 | |
a885d89a | 301 | // |
849949b1 | 302 | // PM specific |
a885d89a | 303 | // |
776d87d5 | 304 | m_bWinCaptured = FALSE; |
cdf1e714 | 305 | |
3437f881 | 306 | m_isBeingDeleted = FALSE; |
47df2b8c | 307 | m_fnOldWndProc = NULL; |
3437f881 DW |
308 | m_bUseCtl3D = FALSE; |
309 | m_bMouseInWindow = FALSE; | |
310 | m_bLastKeydownProcessed = FALSE; | |
cfcebdb1 | 311 | m_pChildrenDisabled = NULL; |
0e320a79 | 312 | |
a885d89a | 313 | // |
849949b1 | 314 | // wxWnd |
a885d89a | 315 | // |
c8b5f745 DW |
316 | m_hMenu = 0L; |
317 | m_hWnd = 0L; | |
318 | m_hWndScrollBarHorz = 0L; | |
319 | m_hWndScrollBarVert = 0L; | |
0e320a79 | 320 | |
4a46a5df DW |
321 | memset(&m_vWinSwp, '\0', sizeof (SWP)); |
322 | ||
a885d89a DW |
323 | // |
324 | // Pass WM_GETDLGCODE to DefWindowProc() | |
4a46a5df | 325 | // |
849949b1 | 326 | m_lDlgCode = 0; |
0e320a79 | 327 | |
776d87d5 DW |
328 | m_nXThumbSize = 0; |
329 | m_nYThumbSize = 0; | |
330 | m_bBackgroundTransparent = FALSE; | |
0e320a79 | 331 | |
a885d89a DW |
332 | // |
333 | // As all windows are created with WS_VISIBLE style... | |
334 | // | |
849949b1 | 335 | m_isShown = TRUE; |
0e320a79 | 336 | |
cdf1e714 | 337 | #if wxUSE_MOUSEEVENT_HACK |
776d87d5 DW |
338 | m_lLastMouseX = |
339 | m_lLastMouseY = -1; | |
340 | m_nLastMouseEvent = -1; | |
cdf1e714 | 341 | #endif // wxUSE_MOUSEEVENT_HACK |
0367c1c0 | 342 | } // wxWindowOS2::Init |
0e320a79 | 343 | |
a885d89a | 344 | // |
849949b1 | 345 | // Destructor |
a885d89a | 346 | // |
0367c1c0 | 347 | wxWindowOS2::~wxWindowOS2() |
0e320a79 | 348 | { |
849949b1 | 349 | m_isBeingDeleted = TRUE; |
0e320a79 | 350 | |
1ec46a5b DW |
351 | for (wxWindow* pWin = GetParent(); pWin; pWin = pWin->GetParent()) |
352 | { | |
47df2b8c | 353 | wxTopLevelWindow* pFrame = wxDynamicCast(pWin, wxTopLevelWindow); |
1ec46a5b DW |
354 | |
355 | if (pFrame) | |
356 | { | |
357 | if (pFrame->GetLastFocus() == this) | |
47df2b8c | 358 | pFrame->SetLastFocus(NULL); |
1ec46a5b DW |
359 | } |
360 | } | |
19193a2c KB |
361 | |
362 | DestroyChildren(); | |
363 | ||
849949b1 DW |
364 | if (m_parent) |
365 | m_parent->RemoveChild(this); | |
e604d44b | 366 | |
849949b1 DW |
367 | if (m_hWnd) |
368 | { | |
a885d89a | 369 | if(!::WinDestroyWindow(GetHWND())) |
223d09f6 | 370 | wxLogLastError(wxT("DestroyWindow")); |
a885d89a | 371 | // |
849949b1 | 372 | // remove hWnd <-> wxWindow association |
a885d89a | 373 | // |
849949b1 DW |
374 | wxRemoveHandleAssociation(this); |
375 | } | |
cfcebdb1 | 376 | delete m_pChildrenDisabled; |
0367c1c0 | 377 | } // end of wxWindowOS2::~wxWindowOS2 |
0e320a79 | 378 | |
19193a2c | 379 | // real construction (Init() must have been called before!) |
0367c1c0 | 380 | bool wxWindowOS2::Create( |
776d87d5 DW |
381 | wxWindow* pParent |
382 | , wxWindowID vId | |
383 | , const wxPoint& rPos | |
384 | , const wxSize& rSize | |
385 | , long lStyle | |
386 | , const wxString& rName | |
387 | ) | |
388 | { | |
f23208ca | 389 | HWND hParent = NULLHANDLE; |
19193a2c KB |
390 | ULONG ulCreateFlags = 0; |
391 | WXDWORD dwExStyle = 0; | |
f23208ca | 392 | |
776d87d5 DW |
393 | wxCHECK_MSG(pParent, FALSE, wxT("can't create wxWindow without parent")); |
394 | ||
b9b1d6c8 DW |
395 | #if wxUSE_STATBOX |
396 | // | |
397 | // wxGTK doesn't allow to create controls with static box as the parent so | |
398 | // this will result in a crash when the program is ported to wxGTK - warn | |
399 | // about it | |
400 | // | |
401 | // the correct solution is to create the controls as siblings of the | |
402 | // static box | |
403 | // | |
404 | wxASSERT_MSG( !wxDynamicCast(pParent, wxStaticBox), | |
405 | _T("wxStaticBox can't be used as a window parent!") ); | |
406 | #endif // wxUSE_STATBOX | |
407 | ||
776d87d5 DW |
408 | if ( !CreateBase( pParent |
409 | ,vId | |
410 | ,rPos | |
411 | ,rSize | |
412 | ,lStyle | |
413 | ,wxDefaultValidator | |
414 | ,rName | |
415 | )) | |
416 | return(FALSE); | |
417 | ||
f23208ca DW |
418 | if (pParent) |
419 | { | |
b7d8f285 DW |
420 | int nTempy; |
421 | ||
f23208ca DW |
422 | pParent->AddChild(this); |
423 | hParent = GetWinHwnd(pParent); | |
cb71578c | 424 | |
cb71578c DW |
425 | if ( pParent->IsKindOf(CLASSINFO(wxGenericScrolledWindow)) || |
426 | pParent->IsKindOf(CLASSINFO(wxScrolledWindow)) | |
427 | ) | |
428 | ulCreateFlags |= WS_CLIPSIBLINGS; | |
f23208ca | 429 | } |
776d87d5 | 430 | |
a885d89a | 431 | // |
f23208ca DW |
432 | // Most wxSTYLES are really PM Class specific styles and will be |
433 | // set in those class create procs. PM's basic windows styles are | |
434 | // very limited. | |
a885d89a | 435 | // |
cfcebdb1 | 436 | ulCreateFlags |= OS2GetCreateWindowFlags(&dwExStyle); |
51c1d535 DW |
437 | |
438 | ||
19193a2c KB |
439 | #ifdef __WXUNIVERSAL__ |
440 | // no 3d effects, we draw them ourselves | |
441 | WXDWORD exStyle = 0; | |
b9b1d6c8 | 442 | #endif // !wxUniversal |
19193a2c KB |
443 | if (lStyle & wxPOPUP_WINDOW) |
444 | { | |
19193a2c KB |
445 | ulCreateFlags &= ~WS_VISIBLE; |
446 | m_isShown = FALSE; | |
447 | } | |
cfcebdb1 DW |
448 | else |
449 | { | |
450 | ulCreateFlags |= WS_VISIBLE; | |
451 | } | |
19193a2c | 452 | |
a885d89a | 453 | // |
5d44b24e DW |
454 | // Generic OS/2 Windows have no Control Data but other classes |
455 | // that call OS2Create may have some. | |
a885d89a | 456 | // |
a23692f0 DW |
457 | return(OS2Create( (PSZ)wxCanvasClassName |
458 | ,rName.c_str() | |
459 | ,ulCreateFlags | |
460 | ,rPos | |
461 | ,rSize | |
462 | ,NULL // Control Data | |
463 | ,dwExStyle | |
464 | ,TRUE // Child | |
465 | )); | |
0367c1c0 | 466 | } // end of wxWindowOS2::Create |
0e320a79 | 467 | |
cdf1e714 DW |
468 | // --------------------------------------------------------------------------- |
469 | // basic operations | |
470 | // --------------------------------------------------------------------------- | |
0e320a79 | 471 | |
0367c1c0 | 472 | void wxWindowOS2::SetFocus() |
0e320a79 | 473 | { |
bbdc9a87 | 474 | HWND hWnd = GetHwnd(); |
19193a2c | 475 | wxCHECK_RET( hWnd, _T("can't set focus to invalid window") ); |
bbdc9a87 DW |
476 | |
477 | if (hWnd) | |
478 | ::WinSetFocus(HWND_DESKTOP, hWnd); | |
0367c1c0 | 479 | } // end of wxWindowOS2::SetFocus |
0e320a79 | 480 | |
1cee3f60 DW |
481 | void wxWindowOS2::SetFocusFromKbd() |
482 | { | |
483 | // | |
484 | // Nothing else to do under OS/2 | |
485 | // | |
486 | wxWindowBase::SetFocusFromKbd(); | |
487 | } // end of wxWindowOS2::SetFocus | |
488 | ||
11e59d47 | 489 | wxWindow* wxWindowBase::FindFocus() |
0e320a79 | 490 | { |
bbdc9a87 DW |
491 | HWND hWnd = ::WinQueryFocus(HWND_DESKTOP); |
492 | ||
493 | if (hWnd) | |
494 | { | |
495 | return wxFindWinFromHandle((WXHWND)hWnd); | |
496 | } | |
497 | return NULL; | |
a885d89a | 498 | } // wxWindowBase::FindFocus |
0e320a79 | 499 | |
0367c1c0 | 500 | bool wxWindowOS2::Enable( |
bbdc9a87 DW |
501 | bool bEnable |
502 | ) | |
0e320a79 | 503 | { |
bbdc9a87 DW |
504 | if (!wxWindowBase::Enable(bEnable)) |
505 | return(FALSE); | |
506 | ||
507 | HWND hWnd = GetHwnd(); | |
508 | ||
509 | if ( hWnd ) | |
510 | ::WinEnableWindow(hWnd, (BOOL)bEnable); | |
511 | ||
774468bd DW |
512 | // |
513 | // The logic below doesn't apply to the top level windows -- otherwise | |
514 | // showing a modal dialog would result in total greying out (and ungreying | |
515 | // out later) of everything which would be really ugly | |
516 | // | |
517 | if (IsTopLevel()) | |
518 | return TRUE; | |
519 | ||
bbdc9a87 DW |
520 | wxWindowList::Node* pNode = GetChildren().GetFirst(); |
521 | ||
522 | while (pNode) | |
523 | { | |
524 | wxWindow* pChild = pNode->GetData(); | |
525 | ||
cfcebdb1 DW |
526 | if (bEnable) |
527 | { | |
528 | // | |
529 | // Enable the child back unless it had been disabled before us | |
530 | // | |
531 | if (!m_pChildrenDisabled || !m_pChildrenDisabled->Find(pChild)) | |
532 | pChild->Enable(); | |
533 | } | |
534 | else // we're being disabled | |
535 | { | |
536 | if (pChild->IsEnabled()) | |
537 | { | |
538 | // | |
539 | // Disable it as children shouldn't stay enabled while the | |
540 | // parent is not | |
541 | // | |
542 | pChild->Disable(); | |
543 | } | |
544 | else // child already disabled, remember it | |
545 | { | |
546 | // | |
547 | // Have we created the list of disabled children already? | |
548 | // | |
549 | if (!m_pChildrenDisabled) | |
550 | m_pChildrenDisabled = new wxWindowList; | |
551 | m_pChildrenDisabled->Append(pChild); | |
552 | } | |
553 | } | |
bbdc9a87 DW |
554 | pNode = pNode->GetNext(); |
555 | } | |
cfcebdb1 DW |
556 | if (bEnable && m_pChildrenDisabled) |
557 | { | |
558 | // | |
559 | // We don't need this list any more, don't keep unused memory | |
560 | // | |
561 | delete m_pChildrenDisabled; | |
562 | m_pChildrenDisabled = NULL; | |
563 | } | |
19193a2c | 564 | return TRUE; |
0367c1c0 | 565 | } // end of wxWindowOS2::Enable |
0e320a79 | 566 | |
0367c1c0 | 567 | bool wxWindowOS2::Show( |
bbdc9a87 DW |
568 | bool bShow |
569 | ) | |
0e320a79 | 570 | { |
bbdc9a87 DW |
571 | if (!wxWindowBase::Show(bShow)) |
572 | return(FALSE); | |
573 | ||
574 | HWND hWnd = GetHwnd(); | |
575 | ||
576 | ::WinShowWindow(hWnd, bShow); | |
577 | ||
578 | if (bShow) | |
579 | { | |
a885d89a | 580 | ::WinSetWindowPos(hWnd, HWND_TOP, 0, 0, 0, 0, SWP_ACTIVATE | SWP_ZORDER); |
bbdc9a87 | 581 | } |
19193a2c | 582 | return TRUE; |
0367c1c0 | 583 | } // end of wxWindowOS2::Show |
0e320a79 | 584 | |
0367c1c0 | 585 | void wxWindowOS2::Raise() |
0e320a79 | 586 | { |
a885d89a | 587 | ::WinSetWindowPos(GetHwnd(), HWND_TOP, 0, 0, 0, 0, SWP_ZORDER | SWP_ACTIVATE); |
0367c1c0 | 588 | } // end of wxWindowOS2::Raise |
0e320a79 | 589 | |
0367c1c0 | 590 | void wxWindowOS2::Lower() |
0e320a79 | 591 | { |
a885d89a | 592 | ::WinSetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0, SWP_ZORDER | SWP_DEACTIVATE); |
0367c1c0 | 593 | } // end of wxWindowOS2::Lower |
0e320a79 | 594 | |
0367c1c0 | 595 | void wxWindowOS2::SetTitle( |
bbdc9a87 DW |
596 | const wxString& rTitle |
597 | ) | |
0e320a79 | 598 | { |
f38374d0 | 599 | ::WinSetWindowText(GetHwnd(), rTitle.c_str()); |
0367c1c0 | 600 | } // end of wxWindowOS2::SetTitle |
0e320a79 | 601 | |
0367c1c0 | 602 | wxString wxWindowOS2::GetTitle() const |
0e320a79 | 603 | { |
cdf1e714 | 604 | return wxGetWindowText(GetHWND()); |
0367c1c0 | 605 | } // end of wxWindowOS2::GetTitle |
0e320a79 | 606 | |
4116c221 | 607 | void wxWindowOS2::DoCaptureMouse() |
0e320a79 | 608 | { |
f38374d0 DW |
609 | HWND hWnd = GetHwnd(); |
610 | ||
611 | if (hWnd && !m_bWinCaptured) | |
612 | { | |
613 | ::WinSetCapture(HWND_DESKTOP, hWnd); | |
614 | m_bWinCaptured = TRUE; | |
615 | } | |
0367c1c0 | 616 | } // end of wxWindowOS2::GetTitle |
0e320a79 | 617 | |
4116c221 | 618 | void wxWindowOS2::DoReleaseMouse() |
0e320a79 | 619 | { |
a885d89a | 620 | if (m_bWinCaptured) |
f38374d0 DW |
621 | { |
622 | ::WinSetCapture(HWND_DESKTOP, NULLHANDLE); | |
623 | m_bWinCaptured = FALSE; | |
624 | } | |
0367c1c0 | 625 | } // end of wxWindowOS2::ReleaseMouse |
0e320a79 | 626 | |
0367c1c0 DW |
627 | /* static */ wxWindow* wxWindowBase::GetCapture() |
628 | { | |
629 | HWND hwnd = ::WinQueryCapture(HWND_DESKTOP); | |
630 | return hwnd ? wxFindWinFromHandle((WXHWND)hwnd) : (wxWindow *)NULL; | |
631 | } // end of wxWindowBase::GetCapture | |
632 | ||
633 | bool wxWindowOS2::SetFont( | |
f38374d0 DW |
634 | const wxFont& rFont |
635 | ) | |
0e320a79 | 636 | { |
f38374d0 DW |
637 | if (!wxWindowBase::SetFont(rFont)) |
638 | { | |
639 | // nothing to do | |
640 | return(FALSE); | |
641 | } | |
642 | ||
643 | HWND hWnd = GetHwnd(); | |
644 | ||
e3bfcacf DW |
645 | wxOS2SetFont( hWnd |
646 | ,rFont | |
647 | ); | |
cdf1e714 | 648 | return(TRUE); |
e3bfcacf | 649 | } // end of wxWindowOS2::SetFont |
0e320a79 | 650 | |
0367c1c0 | 651 | bool wxWindowOS2::SetCursor( |
f38374d0 DW |
652 | const wxCursor& rCursor |
653 | ) // check if base implementation is OK | |
0e320a79 | 654 | { |
f38374d0 DW |
655 | if ( !wxWindowBase::SetCursor(rCursor)) |
656 | { | |
657 | // no change | |
658 | return FALSE; | |
659 | } | |
660 | ||
19193a2c KB |
661 | if ( m_cursor.Ok() ) { |
662 | HWND hWnd = GetHwnd(); | |
663 | POINTL vPoint; | |
664 | RECTL vRect; | |
f38374d0 | 665 | |
19193a2c KB |
666 | ::WinQueryPointerPos(HWND_DESKTOP, &vPoint); |
667 | ::WinQueryWindowRect(hWnd, &vRect); | |
f38374d0 | 668 | |
19193a2c KB |
669 | if (::WinPtInRect(vHabmain, &vRect, &vPoint) && !wxIsBusy()) |
670 | { | |
671 | ::WinSetPointer(HWND_DESKTOP, (HPOINTER)m_cursor.GetHCURSOR()); | |
672 | } | |
f38374d0 DW |
673 | } |
674 | return TRUE; | |
0367c1c0 | 675 | } // end of wxWindowOS2::SetCursor |
0e320a79 | 676 | |
0367c1c0 | 677 | void wxWindowOS2::WarpPointer( |
a885d89a DW |
678 | int nXPos |
679 | , int nYPos | |
680 | ) | |
0e320a79 | 681 | { |
a885d89a DW |
682 | int nX = nXPos; |
683 | int nY = nYPos; | |
684 | RECTL vRect; | |
685 | ||
686 | ::WinQueryWindowRect(GetHwnd(), &vRect); | |
687 | nX += vRect.xLeft; | |
688 | nY += vRect.yBottom; | |
689 | ||
690 | ::WinSetPointerPos(HWND_DESKTOP, (LONG)nX, (LONG)(nY)); | |
0367c1c0 | 691 | } // end of wxWindowOS2::WarpPointer |
0e320a79 | 692 | |
cdf1e714 | 693 | #if WXWIN_COMPATIBILITY |
0367c1c0 | 694 | void wxWindowOS2::OS2DeviceToLogical (float *x, float *y) const |
0e320a79 | 695 | { |
0e320a79 | 696 | } |
cdf1e714 | 697 | #endif // WXWIN_COMPATIBILITY |
0e320a79 | 698 | |
cdf1e714 DW |
699 | // --------------------------------------------------------------------------- |
700 | // scrolling stuff | |
701 | // --------------------------------------------------------------------------- | |
0e320a79 | 702 | |
cdf1e714 | 703 | #if WXWIN_COMPATIBILITY |
0367c1c0 | 704 | void wxWindowOS2::SetScrollRange( |
a885d89a DW |
705 | int nOrient |
706 | , int nRange | |
707 | , bool bRefresh | |
708 | ) | |
0e320a79 | 709 | { |
b7d8f285 DW |
710 | int nRange1 = nRange; |
711 | int nPageSize = GetScrollPage(nOrient); | |
712 | ||
713 | if (nPpageSize > 1 && nRange > 0) | |
714 | { | |
715 | nRange1 += (nPageSize - 1); | |
716 | } | |
717 | ||
718 | if (nOrient == wxHORIZONTAL) | |
719 | { | |
720 | ::WinSendMsg(m_hWndScrollBarHorz, SBM_SETSCROLLBAR, (MPARAM)0, MPFROM2SHORT(0, (SHORT)nRange1)); | |
721 | ::WinSendMsg(m_hWndScrollBarHorz, SBM_SETTHUMBSIZE, MPFROM2SHORT((SHORT)nThumbVisible, (SHORT)nRange1), (MPARAM)0); | |
722 | } | |
723 | else | |
724 | { | |
725 | ::WinSendMsg(m_hWndScrollBarVert, SBM_SETSCROLLBAR, (MPARAM)0, MPFROM2SHORT(0, (SHORT)nRange1)); | |
726 | ::WinSendMsg(m_hWndScrollBarVert, SBM_SETTHUMBSIZE, MPFROM2SHORT((SHORT)nThumbVisible, (SHORT)nRange1), (MPARAM)0); | |
727 | } | |
0367c1c0 | 728 | } // end of wxWindowOS2::SetScrollRange |
0e320a79 | 729 | |
0367c1c0 | 730 | void wxWindowOS2::SetScrollPage( |
a885d89a DW |
731 | int nOrient |
732 | , int nPage | |
733 | , bool bRefresh | |
734 | ) | |
0e320a79 | 735 | { |
b7d8f285 DW |
736 | if (nOrient == wxHORIZONTAL ) |
737 | m_nXThumbSize = nPage; | |
a885d89a | 738 | else |
b7d8f285 | 739 | m_nYThumbSize = nPage; |
0367c1c0 | 740 | } // end of wxWindowOS2::SetScrollPage |
0e320a79 | 741 | |
0367c1c0 | 742 | int wxWindowOS2::OldGetScrollRange( |
a885d89a DW |
743 | int nOrient |
744 | ) const | |
0e320a79 | 745 | { |
a885d89a DW |
746 | MRESULT mRc; |
747 | HWND hWnd = GetHwnd(); | |
0e320a79 | 748 | |
a885d89a DW |
749 | if (hWnd) |
750 | { | |
751 | mRc = WinSendMsg(hWnd, SBM_QUERYRANGE, (MPARAM)0L, (MPARAM)0L); | |
752 | return(SHORT2FROMMR(mRc)); | |
753 | } | |
754 | return 0; | |
0367c1c0 | 755 | } // end of wxWindowOS2::OldGetScrollRange |
a885d89a | 756 | |
0367c1c0 | 757 | int wxWindowOS2::GetScrollPage( |
a885d89a DW |
758 | int nOrient |
759 | ) const | |
0e320a79 | 760 | { |
a885d89a | 761 | if (nOrient == wxHORIZONTAL) |
05fc6c0a | 762 | return m_nXThumbSize; |
a885d89a | 763 | else |
05fc6c0a | 764 | return m_nYThumbSize; |
0367c1c0 | 765 | } // end of wxWindowOS2::GetScrollPage |
11e59d47 | 766 | #endif // WXWIN_COMPATIBILITY |
0e320a79 | 767 | |
0367c1c0 | 768 | int wxWindowOS2::GetScrollPos( |
05fc6c0a DW |
769 | int nOrient |
770 | ) const | |
0e320a79 | 771 | { |
b7d8f285 DW |
772 | if (nOrient == wxHORIZONTAL) |
773 | return((int)::WinSendMsg(m_hWndScrollBarHorz, SBM_QUERYPOS, (MPARAM)NULL, (MPARAM)NULL)); | |
774 | else | |
775 | return((int)::WinSendMsg(m_hWndScrollBarVert, SBM_QUERYPOS, (MPARAM)NULL, (MPARAM)NULL)); | |
0367c1c0 | 776 | } // end of wxWindowOS2::GetScrollPos |
0e320a79 | 777 | |
0367c1c0 | 778 | int wxWindowOS2::GetScrollRange( |
05fc6c0a DW |
779 | int nOrient |
780 | ) const | |
0e320a79 | 781 | { |
05fc6c0a | 782 | MRESULT mr; |
0e320a79 | 783 | |
b7d8f285 DW |
784 | if (nOrient == wxHORIZONTAL) |
785 | mr = ::WinSendMsg(m_hWndScrollBarHorz, SBM_QUERYRANGE, (MPARAM)NULL, (MPARAM)NULL); | |
786 | else | |
787 | mr = ::WinSendMsg(m_hWndScrollBarVert, SBM_QUERYRANGE, (MPARAM)NULL, (MPARAM)NULL); | |
05fc6c0a | 788 | return((int)SHORT2FROMMR(mr)); |
0367c1c0 | 789 | } // end of wxWindowOS2::GetScrollRange |
05fc6c0a | 790 | |
0367c1c0 | 791 | int wxWindowOS2::GetScrollThumb( |
05fc6c0a DW |
792 | int nOrient |
793 | ) const | |
0e320a79 | 794 | { |
b7d8f285 DW |
795 | if (nOrient == wxHORIZONTAL ) |
796 | return m_nXThumbSize; | |
797 | else | |
798 | return m_nYThumbSize; | |
0367c1c0 | 799 | } // end of wxWindowOS2::GetScrollThumb |
0e320a79 | 800 | |
0367c1c0 | 801 | void wxWindowOS2::SetScrollPos( |
05fc6c0a DW |
802 | int nOrient |
803 | , int nPos | |
19193a2c | 804 | , bool WXUNUSED(bRefresh) |
05fc6c0a | 805 | ) |
0e320a79 | 806 | { |
b7d8f285 DW |
807 | if (nOrient == wxHORIZONTAL ) |
808 | ::WinSendMsg(m_hWndScrollBarHorz, SBM_SETPOS, (MPARAM)nPos, (MPARAM)NULL); | |
809 | else | |
810 | ::WinSendMsg(m_hWndScrollBarVert, SBM_SETPOS, (MPARAM)nPos, (MPARAM)NULL); | |
19193a2c | 811 | } // end of wxWindowOS2::SetScrollPos |
0e320a79 | 812 | |
0367c1c0 | 813 | void wxWindowOS2::SetScrollbar( |
05fc6c0a DW |
814 | int nOrient |
815 | , int nPos | |
816 | , int nThumbVisible | |
817 | , int nRange | |
19193a2c | 818 | , bool WXUNUSED(bRefresh) |
05fc6c0a | 819 | ) |
0e320a79 | 820 | { |
45e0dc94 | 821 | HWND hWnd = GetHwnd(); |
1c84ee88 DW |
822 | int nOldRange = nRange - nThumbVisible; |
823 | int nRange1 = nOldRange; | |
824 | int nPageSize = nThumbVisible; | |
45e0dc94 | 825 | |
1c84ee88 | 826 | SBCDATA vInfo; |
45e0dc94 | 827 | ULONG ulStyle = WS_VISIBLE | WS_SYNCPAINT; |
b3260bce | 828 | SWP vSwp; |
859e65de | 829 | SWP vSwpOwner; |
45e0dc94 DW |
830 | RECTL vRect; |
831 | HWND hWndParent; | |
832 | HWND hWndClient; | |
833 | wxWindow* pParent = GetParent(); | |
834 | ||
835 | if (pParent && pParent->IsKindOf(CLASSINFO(wxFrame))) | |
836 | { | |
837 | wxFrame* pFrame; | |
838 | ||
839 | pFrame = wxDynamicCast(pParent, wxFrame); | |
840 | hWndParent = pFrame->GetFrame(); | |
841 | hWndClient = GetHwndOf(pParent); | |
842 | } | |
843 | else | |
844 | { | |
845 | if (pParent) | |
846 | hWndParent = GetHwndOf(pParent); | |
847 | else | |
848 | hWndParent = GetHwnd(); | |
849 | hWndClient = hWndParent; | |
850 | } | |
851 | ::WinQueryWindowPos(hWndClient, &vSwp); | |
859e65de | 852 | ::WinQueryWindowPos(hWnd, &vSwpOwner); |
1c84ee88 | 853 | |
1c84ee88 | 854 | if (nPageSize > 1 && nRange > 0) |
05fc6c0a | 855 | { |
1c84ee88 DW |
856 | nRange1 += (nPageSize - 1); |
857 | } | |
858 | ||
859 | vInfo.cb = sizeof(SBCDATA); | |
860 | vInfo.posFirst = 0; | |
861 | vInfo.posLast = (SHORT)nRange1; | |
862 | vInfo.posThumb = nPos; | |
863 | ||
864 | if (nOrient == wxHORIZONTAL ) | |
865 | { | |
866 | ulStyle |= SBS_HORZ; | |
c8b5f745 | 867 | if (m_hWndScrollBarHorz == 0L) |
1c84ee88 | 868 | { |
859e65de DW |
869 | // |
870 | // Since the scrollbars are usually created before the owner is | |
871 | // sized either via an OnSize event directly or via sizers or | |
872 | // layout constraints, we will initially just use the coords of | |
873 | // the parent window (this is usually a frame client window). But | |
874 | // the bars themselves, are children of the parent frame (i.e | |
875 | // siblings of the frame client. The owner, however is the actual | |
876 | // window being scrolled (or at least the one responsible for | |
877 | // handling the scroll events). The owner will be resized later, | |
878 | // as it is usually a child of a top level window, and when that | |
879 | // is done its scrollbars will be resized and repositioned as well. | |
880 | // | |
45e0dc94 | 881 | m_hWndScrollBarHorz = ::WinCreateWindow( hWndParent |
c8b5f745 DW |
882 | ,WC_SCROLLBAR |
883 | ,(PSZ)NULL | |
884 | ,ulStyle | |
45e0dc94 DW |
885 | ,vSwp.x |
886 | ,vSwp.y | |
887 | ,vSwp.cx - 20 | |
c8b5f745 DW |
888 | ,20 |
889 | ,hWnd | |
890 | ,HWND_TOP | |
626af800 | 891 | ,60000 |
c8b5f745 DW |
892 | ,&vInfo |
893 | ,NULL | |
894 | ); | |
1c84ee88 DW |
895 | } |
896 | else | |
897 | { | |
859e65de DW |
898 | // |
899 | // The owner (the scrolled window) is a child of the Frame's | |
900 | // client window, usually. The scrollbars are children of the | |
901 | // frame, itself, and thus are positioned relative to the frame's | |
902 | // origin, not the frame's client window origin. | |
903 | // The starting x position is the same as the starting x position | |
904 | // of the owner, but in terms of the parent frame. | |
905 | // The starting y position is 20 pels below the origin of the | |
906 | // owner in terms of the parent frame. | |
907 | // The horz bar is the same width as the owner and 20 pels high. | |
908 | // | |
524d72c4 DW |
909 | if (nRange1 >= nThumbVisible) |
910 | { | |
911 | ::WinSetWindowPos( m_hWndScrollBarHorz | |
912 | ,HWND_TOP | |
913 | ,vSwp.x + vSwpOwner.x | |
914 | ,(vSwp.y + vSwpOwner.y) - 20 | |
915 | ,vSwpOwner.cx | |
916 | ,20 | |
917 | ,SWP_MOVE | SWP_SIZE | SWP_SHOW | SWP_ACTIVATE | SWP_ZORDER | |
918 | ); | |
919 | ::WinSendMsg( m_hWndScrollBarHorz | |
920 | ,SBM_SETSCROLLBAR | |
921 | ,(MPARAM)nPos | |
922 | ,MPFROM2SHORT(0, (SHORT)nRange1) | |
923 | ); | |
924 | ::WinSendMsg( m_hWndScrollBarHorz | |
925 | ,SBM_SETTHUMBSIZE | |
926 | ,MPFROM2SHORT( (SHORT)nThumbVisible | |
927 | ,(SHORT)nRange1 | |
928 | ) | |
929 | ,(MPARAM)0 | |
930 | ); | |
931 | } | |
932 | else | |
933 | ::WinShowWindow(m_hWndScrollBarHorz, FALSE); | |
1c84ee88 | 934 | } |
05fc6c0a DW |
935 | } |
936 | else | |
937 | { | |
1c84ee88 | 938 | ulStyle |= SBS_VERT; |
c8b5f745 | 939 | if (m_hWndScrollBarVert == 0L) |
1c84ee88 | 940 | { |
859e65de DW |
941 | // |
942 | // Since the scrollbars are usually created before the owner is | |
943 | // sized either via an OnSize event directly or via sizers or | |
944 | // layout constraints, we will initially just use the coords of | |
945 | // the parent window (this is usually a frame client window). But | |
946 | // the bars themselves, are children of the parent frame (i.e | |
947 | // siblings of the frame client. The owner, however is the actual | |
948 | // window being scrolled (or at least the one responsible for | |
949 | // handling the scroll events). The owner will be resized later, | |
950 | // as it is usually a child of a top level window, and when that | |
951 | // is done its scrollbars will be resized and repositioned as well. | |
952 | // | |
45e0dc94 | 953 | m_hWndScrollBarVert = ::WinCreateWindow( hWndParent |
c8b5f745 DW |
954 | ,WC_SCROLLBAR |
955 | ,(PSZ)NULL | |
956 | ,ulStyle | |
45e0dc94 DW |
957 | ,vSwp.x + vSwp.cx - 20 |
958 | ,vSwp.y + 20 | |
c8b5f745 | 959 | ,20 |
45e0dc94 | 960 | ,vSwp.cy - 20 |
c8b5f745 DW |
961 | ,hWnd |
962 | ,HWND_TOP | |
626af800 | 963 | ,60001 |
c8b5f745 DW |
964 | ,&vInfo |
965 | ,NULL | |
966 | ); | |
1c84ee88 DW |
967 | } |
968 | else | |
969 | { | |
859e65de DW |
970 | // |
971 | // The owner (the scrolled window) is a child of the Frame's | |
972 | // client window, usually. The scrollbars are children of the | |
973 | // frame, itself and thus are positioned relative to the frame's | |
974 | // origin, not the frame's client window's origin. | |
975 | // Thus, the x position will be frame client's x (usually a few | |
976 | // pels inside the parent frame, plus the width of the owner. | |
977 | // Since we may be using sizers or layout constraints for multiple | |
978 | // child scrolled windows, the y position will be the frame client's | |
979 | // y pos plus the scrolled windows y position, yielding the y | |
980 | // position of the scrollbar relative to the parent frame (the vert | |
981 | // scrollbar is on the right and starts at the bottom of the | |
982 | // owner window). | |
983 | // It is 20 pels wide and the same height as the owner. | |
984 | // | |
524d72c4 DW |
985 | if (nRange1 >= nThumbVisible) |
986 | { | |
987 | ::WinSetWindowPos( m_hWndScrollBarVert | |
988 | ,HWND_TOP | |
989 | ,vSwp.x + vSwpOwner.x + vSwpOwner.cx | |
990 | ,vSwp.y + vSwpOwner.y | |
991 | ,20 | |
992 | ,vSwpOwner.cy | |
993 | ,SWP_ACTIVATE | SWP_MOVE | SWP_SIZE | SWP_SHOW | |
994 | ); | |
995 | ::WinSendMsg( m_hWndScrollBarVert | |
996 | ,SBM_SETSCROLLBAR | |
997 | ,(MPARAM)nPos | |
998 | ,MPFROM2SHORT(0, (SHORT)nRange1) | |
999 | ); | |
1000 | ::WinSendMsg( m_hWndScrollBarVert | |
1001 | ,SBM_SETTHUMBSIZE | |
1002 | ,MPFROM2SHORT( (SHORT)nThumbVisible | |
1003 | ,(SHORT)nRange1 | |
1004 | ) | |
1005 | ,(MPARAM)0 | |
1006 | ); | |
1007 | } | |
1008 | else | |
1009 | ::WinShowWindow(m_hWndScrollBarVert, FALSE); | |
1c84ee88 | 1010 | } |
05fc6c0a DW |
1011 | m_nYThumbSize = nThumbVisible; |
1012 | } | |
0367c1c0 | 1013 | } // end of wxWindowOS2::SetScrollbar |
0e320a79 | 1014 | |
0367c1c0 | 1015 | void wxWindowOS2::ScrollWindow( |
05fc6c0a DW |
1016 | int nDx |
1017 | , int nDy | |
1018 | , const wxRect* pRect | |
1019 | ) | |
0e320a79 | 1020 | { |
b7d8f285 | 1021 | RECTL vRect; |
626af800 DW |
1022 | RECTL vRectHorz; |
1023 | RECTL vRectVert; | |
1024 | RECTL vRectChild; | |
05fc6c0a DW |
1025 | |
1026 | if (pRect) | |
1027 | { | |
b3260bce DW |
1028 | vRect.xLeft = pRect->x; |
1029 | vRect.yTop = pRect->y + pRect->height; | |
1030 | vRect.xRight = pRect->x + pRect->width; | |
1031 | vRect.yBottom = pRect->y; | |
05fc6c0a | 1032 | } |
e661fcd7 DW |
1033 | else |
1034 | { | |
626af800 | 1035 | ::WinQueryWindowRect(GetHwnd(), &vRect); |
e661fcd7 | 1036 | } |
45e0dc94 | 1037 | nDy *= -1; // flip the sign of Dy as OS/2 is opposite Windows. |
626af800 DW |
1038 | ::WinScrollWindow( GetHwnd() |
1039 | ,(LONG)nDx | |
1040 | ,(LONG)nDy | |
1041 | ,&vRect | |
45e0dc94 | 1042 | ,&vRect |
626af800 DW |
1043 | ,NULLHANDLE |
1044 | ,NULL | |
45e0dc94 | 1045 | ,SW_SCROLLCHILDREN | SW_INVALIDATERGN |
626af800 | 1046 | ); |
4a46a5df | 1047 | Refresh(); |
0367c1c0 | 1048 | } // end of wxWindowOS2::ScrollWindow |
0e320a79 | 1049 | |
cdf1e714 DW |
1050 | // --------------------------------------------------------------------------- |
1051 | // subclassing | |
1052 | // --------------------------------------------------------------------------- | |
0e320a79 | 1053 | |
0367c1c0 | 1054 | void wxWindowOS2::SubclassWin( |
c86c44a0 DW |
1055 | WXHWND hWnd |
1056 | ) | |
0e320a79 | 1057 | { |
05fc6c0a DW |
1058 | HWND hwnd = (HWND)hWnd; |
1059 | ||
61243a51 | 1060 | wxCHECK_RET(::WinIsWindow(vHabmain, hwnd), wxT("invalid HWND in SubclassWin") ); |
e58dab20 DW |
1061 | wxAssociateWinWithHandle( hWnd |
1062 | ,(wxWindow*)this | |
1063 | ); | |
1064 | if (!wxCheckWindowWndProc( hWnd | |
1065 | ,(WXFARPROC)wxWndProc | |
1066 | )) | |
1067 | { | |
1068 | m_fnOldWndProc = (WXFARPROC) ::WinSubclassWindow(hwnd, (PFNWP)wxWndProc); | |
1069 | } | |
1070 | else | |
1071 | { | |
1072 | m_fnOldWndProc = (WXFARPROC)NULL; | |
1073 | } | |
0367c1c0 | 1074 | } // end of wxWindowOS2::SubclassWin |
0e320a79 | 1075 | |
0367c1c0 | 1076 | void wxWindowOS2::UnsubclassWin() |
0e320a79 | 1077 | { |
c86c44a0 | 1078 | // |
cdf1e714 | 1079 | // Restore old Window proc |
c86c44a0 | 1080 | // |
e604d44b | 1081 | HWND hwnd = GetHWND(); |
c86c44a0 | 1082 | |
e604d44b | 1083 | if (m_hWnd) |
cdf1e714 | 1084 | { |
61243a51 | 1085 | wxCHECK_RET( ::WinIsWindow(vHabmain, hwnd), wxT("invalid HWND in UnsubclassWin") ); |
0e320a79 | 1086 | |
e604d44b | 1087 | PFNWP fnProc = (PFNWP)::WinQueryWindowPtr(hwnd, QWP_PFNWP); |
51c1d535 | 1088 | |
c86c44a0 | 1089 | if ( (m_fnOldWndProc != 0) && (fnProc != (PFNWP) m_fnOldWndProc)) |
cdf1e714 | 1090 | { |
c86c44a0 DW |
1091 | WinSubclassWindow(hwnd, (PFNWP)m_fnOldWndProc); |
1092 | m_fnOldWndProc = 0; | |
cdf1e714 DW |
1093 | } |
1094 | } | |
0367c1c0 | 1095 | } // end of wxWindowOS2::UnsubclassWin |
0e320a79 | 1096 | |
5d44b24e DW |
1097 | bool wxCheckWindowWndProc( |
1098 | WXHWND hWnd | |
1099 | , WXFARPROC fnWndProc | |
1100 | ) | |
1101 | { | |
1102 | static char zBuffer[512]; | |
1103 | CLASSINFO vCls; | |
1104 | ||
1105 | ::WinQueryClassName((HWND)hWnd, (LONG)512, (PCH)zBuffer); | |
1106 | ::WinQueryClassInfo(wxGetInstance(), (PSZ)zBuffer, &vCls); | |
1107 | return(fnWndProc == (WXFARPROC)vCls.pfnWindowProc); | |
1108 | } // end of WinGuiBase_CheckWindowWndProc | |
1109 | ||
b9b1d6c8 DW |
1110 | void wxWindowOS2::SetWindowStyleFlag( |
1111 | long lFlags | |
1112 | ) | |
1113 | { | |
1114 | long lFlagsOld = GetWindowStyleFlag(); | |
1115 | ||
1116 | if (lFlags == lFlagsOld) | |
1117 | return; | |
1118 | ||
1119 | // | |
1120 | // Update the internal variable | |
1121 | // | |
1122 | wxWindowBase::SetWindowStyleFlag(lFlags); | |
1123 | ||
1124 | // | |
1125 | // Now update the Windows style as well if needed - and if the window had | |
1126 | // been already created | |
1127 | // | |
1128 | if (!GetHwnd()) | |
1129 | return; | |
1130 | ||
1131 | WXDWORD dwExstyle; | |
1132 | WXDWORD dwExstyleOld; | |
1133 | long lStyle = OS2GetStyle( lFlags | |
1134 | ,&dwExstyle | |
1135 | ); | |
1136 | long lStyleOld = OS2GetStyle( lFlagsOld | |
1137 | ,&dwExstyleOld | |
1138 | ); | |
1139 | ||
1140 | if (lStyle != lStyleOld) | |
1141 | { | |
1142 | // | |
1143 | // Some flags (e.g. WS_VISIBLE or WS_DISABLED) should not be changed by | |
1144 | // this function so instead of simply setting the style to the new | |
1145 | // value we clear the bits which were set in styleOld but are set in | |
1146 | // the new one and set the ones which were not set before | |
1147 | // | |
1148 | long lStyleReal = ::WinQueryWindowULong(GetHwnd(), QWL_STYLE); | |
1149 | ||
1150 | lStyleReal &= ~lStyleOld; | |
1151 | lStyleReal |= lStyle; | |
1152 | ||
1153 | ::WinSetWindowULong(GetHwnd(), QWL_STYLE, lStyleReal); | |
1154 | } | |
1155 | } // end of wxWindowOS2::SetWindowStyleFlag | |
1156 | ||
1157 | WXDWORD wxWindowOS2::OS2GetStyle( | |
1158 | long lFlags | |
1159 | , WXDWORD* pdwExstyle | |
1160 | ) const | |
1161 | { | |
1162 | WXDWORD dwStyle = 0L; | |
1163 | ||
1164 | if (lFlags & wxCLIP_CHILDREN ) | |
1165 | dwStyle |= WS_CLIPCHILDREN; | |
1166 | ||
1167 | if (lFlags & wxCLIP_SIBLINGS ) | |
1168 | dwStyle |= WS_CLIPSIBLINGS; | |
1169 | ||
1170 | return dwStyle; | |
1171 | } // end of wxWindowMSW::MSWGetStyle | |
1172 | ||
05fc6c0a | 1173 | // |
cdf1e714 | 1174 | // Make a Windows extended style from the given wxWindows window style |
05fc6c0a | 1175 | // |
0367c1c0 | 1176 | WXDWORD wxWindowOS2::MakeExtendedStyle( |
05fc6c0a DW |
1177 | long lStyle |
1178 | , bool bEliminateBorders | |
1179 | ) | |
0e320a79 | 1180 | { |
05fc6c0a | 1181 | // |
008089f6 DW |
1182 | // Simply fill out with wxWindow extended styles. We'll conjure |
1183 | // something up in OS2Create and all window redrawing pieces later | |
05fc6c0a | 1184 | // |
008089f6 DW |
1185 | WXDWORD dwStyle = 0; |
1186 | ||
1187 | if (lStyle & wxTRANSPARENT_WINDOW ) | |
1188 | dwStyle |= wxTRANSPARENT_WINDOW; | |
1189 | ||
1190 | if (!bEliminateBorders) | |
1191 | { | |
1192 | if (lStyle & wxSUNKEN_BORDER) | |
1193 | dwStyle |= wxSUNKEN_BORDER; | |
1194 | if (lStyle & wxDOUBLE_BORDER) | |
1195 | dwStyle |= wxDOUBLE_BORDER; | |
1196 | if (lStyle & wxRAISED_BORDER ) | |
1197 | dwStyle |= wxRAISED_BORDER; | |
1198 | if (lStyle & wxSTATIC_BORDER) | |
1199 | dwStyle |= wxSTATIC_BORDER; | |
1200 | } | |
1201 | return dwStyle; | |
0367c1c0 | 1202 | } // end of wxWindowOS2::MakeExtendedStyle |
cdf1e714 | 1203 | |
c86c44a0 | 1204 | // |
008089f6 | 1205 | // Determines whether simulated 3D effects or CTL3D should be used, |
cdf1e714 | 1206 | // applying a default border style if required, and returning an extended |
008089f6 | 1207 | // style to pass to OS2Create. |
c86c44a0 | 1208 | // |
0367c1c0 | 1209 | WXDWORD wxWindowOS2::Determine3DEffects( |
c86c44a0 | 1210 | WXDWORD dwDefaultBorderStyle |
542875a8 | 1211 | , bool* pbWant3D |
c86c44a0 DW |
1212 | ) const |
1213 | { | |
542875a8 DW |
1214 | WXDWORD dwStyle = 0L; |
1215 | ||
c86c44a0 | 1216 | // |
008089f6 DW |
1217 | // Native PM does not have any specialize 3D effects like WIN32 does, |
1218 | // so we have to try and invent them. | |
1219 | // | |
1220 | ||
1221 | // | |
1222 | // If matches certain criteria, then assume no 3D effects | |
1223 | // unless specifically requested (dealt with in MakeExtendedStyle) | |
1224 | // | |
1225 | if (!GetParent() || | |
1226 | !IsKindOf(CLASSINFO(wxControl)) || | |
1227 | (m_windowStyle & wxNO_BORDER) | |
1228 | ) | |
1229 | { | |
1230 | *pbWant3D = FALSE; | |
1231 | return MakeExtendedStyle(m_windowStyle, FALSE); | |
1232 | } | |
1233 | ||
1234 | // | |
1235 | // 1) App can specify global 3D effects | |
c86c44a0 | 1236 | // |
008089f6 DW |
1237 | *pbWant3D = wxTheApp->GetAuto3D(); |
1238 | ||
1239 | // | |
1240 | // 2) If the parent is being drawn with user colours, or simple border | |
1241 | // specified, switch effects off. | |
1242 | // | |
1243 | if (GetParent() && | |
1244 | (GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS) || | |
1245 | (m_windowStyle & wxSIMPLE_BORDER) | |
1246 | ) | |
1247 | *pbWant3D = FALSE; | |
1248 | ||
1249 | // | |
1250 | // 3) Control can override this global setting by defining | |
1251 | // a border style, e.g. wxSUNKEN_BORDER | |
1252 | // | |
1253 | if ((m_windowStyle & wxDOUBLE_BORDER) || | |
1254 | (m_windowStyle & wxRAISED_BORDER) || | |
1255 | (m_windowStyle & wxSTATIC_BORDER) || | |
1256 | (m_windowStyle & wxSUNKEN_BORDER) | |
1257 | ) | |
1258 | *pbWant3D = TRUE; | |
1259 | ||
1260 | dwStyle = MakeExtendedStyle( m_windowStyle | |
1261 | ,FALSE | |
1262 | ); | |
1263 | ||
1264 | // | |
1265 | // If we want 3D, but haven't specified a border here, | |
1266 | // apply the default border style specified. | |
1267 | // | |
1268 | if (dwDefaultBorderStyle && (*pbWant3D) && | |
1269 | !((m_windowStyle & wxDOUBLE_BORDER) || | |
1270 | (m_windowStyle & wxRAISED_BORDER) || | |
1271 | (m_windowStyle & wxSTATIC_BORDER) || | |
1272 | (m_windowStyle & wxSIMPLE_BORDER) | |
1273 | ) | |
1274 | ) | |
1275 | dwStyle |= dwDefaultBorderStyle; | |
c86c44a0 | 1276 | return dwStyle; |
0367c1c0 | 1277 | } // end of wxWindowOS2::Determine3DEffects |
cdf1e714 DW |
1278 | |
1279 | #if WXWIN_COMPATIBILITY | |
0367c1c0 | 1280 | void wxWindowOS2::OnCommand( |
c86c44a0 DW |
1281 | wxWindow& rWin |
1282 | , wxCommandEvent& rEvent | |
1283 | ) | |
cdf1e714 | 1284 | { |
c86c44a0 DW |
1285 | if (GetEventHandler()->ProcessEvent(rEvent)) |
1286 | return; | |
1287 | if (m_parent) | |
1288 | m_parent->GetEventHandler()->OnCommand( rWin | |
1289 | ,rEvent | |
1290 | ); | |
0367c1c0 | 1291 | } // end of wxWindowOS2::OnCommand |
cdf1e714 | 1292 | |
0367c1c0 | 1293 | wxObject* wxWindowOS2::GetChild( |
c86c44a0 DW |
1294 | int nNumber |
1295 | ) const | |
cdf1e714 | 1296 | { |
c86c44a0 DW |
1297 | // |
1298 | // Return a pointer to the Nth object in the Panel | |
1299 | // | |
1300 | wxNode* pNode = GetChildren().First(); | |
1301 | int n = nNumber; | |
cdf1e714 | 1302 | |
c86c44a0 DW |
1303 | while (pNode && n--) |
1304 | pNode = pNode->Next(); | |
1305 | if (pNode) | |
1306 | { | |
1307 | wxObject* pObj = (wxObject*)pNode->Data(); | |
1308 | return(pObj); | |
1309 | } | |
1310 | else | |
1311 | return NULL; | |
0367c1c0 | 1312 | } // end of wxWindowOS2::GetChild |
cdf1e714 DW |
1313 | |
1314 | #endif // WXWIN_COMPATIBILITY | |
1315 | ||
c86c44a0 | 1316 | // |
cdf1e714 | 1317 | // Setup background and foreground colours correctly |
c86c44a0 | 1318 | // |
0367c1c0 | 1319 | void wxWindowOS2::SetupColours() |
cdf1e714 DW |
1320 | { |
1321 | if ( GetParent() ) | |
1322 | SetBackgroundColour(GetParent()->GetBackgroundColour()); | |
0367c1c0 | 1323 | } // end of wxWindowOS2::SetupColours |
cdf1e714 | 1324 | |
0367c1c0 | 1325 | void wxWindowOS2::OnIdle( |
19193a2c | 1326 | wxIdleEvent& WXUNUSED(rEvent) |
c86c44a0 | 1327 | ) |
cdf1e714 | 1328 | { |
c86c44a0 DW |
1329 | // |
1330 | // Check if we need to send a LEAVE event | |
1331 | // | |
1332 | if (m_bMouseInWindow) | |
1333 | { | |
1334 | POINTL vPoint; | |
cdf1e714 | 1335 | |
c86c44a0 DW |
1336 | ::WinQueryPointerPos(HWND_DESKTOP, &vPoint); |
1337 | if (::WinWindowFromPoint(HWND_DESKTOP, &vPoint, FALSE) != (HWND)GetHwnd()) | |
1338 | { | |
1339 | // | |
1340 | // Generate a LEAVE event | |
1341 | // | |
1342 | m_bMouseInWindow = FALSE; | |
1343 | ||
1344 | // | |
1345 | // Unfortunately the mouse button and keyboard state may have changed | |
1346 | // by the time the OnIdle function is called, so 'state' may be | |
1347 | // meaningless. | |
1348 | // | |
1349 | int nState = 0; | |
1350 | ||
1351 | if (::WinGetKeyState(HWND_DESKTOP, VK_SHIFT) != 0) | |
1352 | nState |= VK_SHIFT; | |
542875a8 | 1353 | if (::WinGetKeyState(HWND_DESKTOP, VK_CTRL) != 0); |
c86c44a0 DW |
1354 | nState |= VK_CTRL; |
1355 | ||
1356 | wxMouseEvent rEvent(wxEVT_LEAVE_WINDOW); | |
1357 | ||
1358 | InitMouseEvent( rEvent | |
1359 | ,vPoint.x | |
1360 | ,vPoint.y | |
1361 | ,nState | |
1362 | ); | |
542875a8 | 1363 | (void)GetEventHandler()->ProcessEvent(rEvent); |
c86c44a0 DW |
1364 | } |
1365 | } | |
1366 | UpdateWindowUI(); | |
0367c1c0 | 1367 | } // end of wxWindowOS2::OnIdle |
c86c44a0 DW |
1368 | |
1369 | // | |
cdf1e714 | 1370 | // Set this window to be the child of 'parent'. |
c86c44a0 | 1371 | // |
0367c1c0 | 1372 | bool wxWindowOS2::Reparent( |
c86c44a0 DW |
1373 | wxWindow* pParent |
1374 | ) | |
cdf1e714 | 1375 | { |
c86c44a0 | 1376 | if (!wxWindowBase::Reparent(pParent)) |
cdf1e714 | 1377 | return FALSE; |
c86c44a0 DW |
1378 | |
1379 | HWND hWndChild = GetHwnd(); | |
1380 | HWND hWndParent = GetParent() ? GetWinHwnd(GetParent()) : (HWND)0; | |
1381 | ||
1382 | ::WinSetParent(hWndChild, hWndParent, TRUE); | |
1383 | return TRUE; | |
0367c1c0 | 1384 | } // end of wxWindowOS2::Reparent |
cdf1e714 | 1385 | |
0367c1c0 | 1386 | void wxWindowOS2::Clear() |
cdf1e714 | 1387 | { |
19193a2c | 1388 | wxClientDC vDc((wxWindow*)this); |
c86c44a0 DW |
1389 | wxBrush vBrush( GetBackgroundColour() |
1390 | ,wxSOLID | |
1391 | ); | |
1392 | ||
1393 | vDc.SetBackground(vBrush); | |
1394 | vDc.Clear(); | |
0367c1c0 | 1395 | } // end of wxWindowOS2::Clear |
cdf1e714 | 1396 | |
06519806 DW |
1397 | void wxWindowOS2::Update() |
1398 | { | |
1399 | ::WinUpdateWindow(GetHwnd()); | |
1400 | } // end of wxWindowOS2::Update | |
1401 | ||
1402 | void wxWindowOS2::Freeze() | |
1403 | { | |
1404 | ::WinSendMsg(GetHwnd(), WM_VRNDISABLED, (MPARAM)0, (MPARAM)0); | |
1405 | } // end of wxWindowOS2::Freeze | |
1406 | ||
1407 | void wxWindowOS2::Thaw() | |
1408 | { | |
1409 | ::WinSendMsg(GetHwnd(), WM_VRNENABLED, (MPARAM)TRUE, (MPARAM)0); | |
1410 | ||
1411 | // | |
1412 | // We need to refresh everything or otherwise he invalidated area is not | |
1413 | // repainted. | |
1414 | // | |
1415 | Refresh(); | |
1416 | } // end of wxWindowOS2::Thaw | |
1417 | ||
0367c1c0 | 1418 | void wxWindowOS2::Refresh( |
c86c44a0 DW |
1419 | bool bEraseBack |
1420 | , const wxRect* pRect | |
1421 | ) | |
cdf1e714 | 1422 | { |
c86c44a0 DW |
1423 | HWND hWnd = GetHwnd(); |
1424 | ||
1425 | if (hWnd) | |
1426 | { | |
1427 | if (pRect) | |
1428 | { | |
1429 | RECTL vOs2Rect; | |
1430 | ||
1431 | vOs2Rect.xLeft = pRect->x; | |
542875a8 | 1432 | vOs2Rect.yTop = pRect->y; |
c86c44a0 DW |
1433 | vOs2Rect.xRight = pRect->x + pRect->width; |
1434 | vOs2Rect.yBottom = pRect->y + pRect->height; | |
1435 | ||
1436 | ::WinInvalidateRect(hWnd, &vOs2Rect, bEraseBack); | |
1437 | } | |
1438 | else | |
1439 | ::WinInvalidateRect(hWnd, NULL, bEraseBack); | |
45e0dc94 DW |
1440 | if (m_hWndScrollBarHorz != NULLHANDLE) |
1441 | ::WinInvalidateRect(m_hWndScrollBarHorz, NULL, TRUE); | |
1442 | if (m_hWndScrollBarVert != NULLHANDLE) | |
1443 | ::WinInvalidateRect(m_hWndScrollBarVert, NULL, TRUE); | |
c86c44a0 | 1444 | } |
0367c1c0 | 1445 | } // end of wxWindowOS2::Refresh |
cdf1e714 DW |
1446 | |
1447 | // --------------------------------------------------------------------------- | |
1448 | // drag and drop | |
1449 | // --------------------------------------------------------------------------- | |
1450 | ||
1451 | #if wxUSE_DRAG_AND_DROP | |
0367c1c0 | 1452 | void wxWindowOS2::SetDropTarget( |
c86c44a0 DW |
1453 | wxDropTarget* pDropTarget |
1454 | ) | |
cdf1e714 | 1455 | { |
542875a8 | 1456 | if (m_dropTarget != 0) |
c86c44a0 DW |
1457 | { |
1458 | m_dropTarget->Revoke(m_hWnd); | |
1459 | delete m_dropTarget; | |
1460 | } | |
1461 | m_dropTarget = pDropTarget; | |
1462 | if (m_dropTarget != 0) | |
1463 | m_dropTarget->Register(m_hWnd); | |
0367c1c0 | 1464 | } // end of wxWindowOS2::SetDropTarget |
cdf1e714 DW |
1465 | #endif |
1466 | ||
c86c44a0 | 1467 | // |
cdf1e714 DW |
1468 | // old style file-manager drag&drop support: we retain the old-style |
1469 | // DragAcceptFiles in parallel with SetDropTarget. | |
c86c44a0 | 1470 | // |
0367c1c0 | 1471 | void wxWindowOS2::DragAcceptFiles( |
c86c44a0 DW |
1472 | bool bAccept |
1473 | ) | |
cdf1e714 | 1474 | { |
c86c44a0 DW |
1475 | HWND hWnd = GetHwnd(); |
1476 | ||
1477 | if (hWnd && bAccept) | |
542875a8 | 1478 | ::DrgAcceptDroppedFiles(hWnd, NULL, NULL, DO_COPY, 0L); |
0367c1c0 | 1479 | } // end of wxWindowOS2::DragAcceptFiles |
cdf1e714 DW |
1480 | |
1481 | // ---------------------------------------------------------------------------- | |
1482 | // tooltips | |
1483 | // ---------------------------------------------------------------------------- | |
1484 | ||
1485 | #if wxUSE_TOOLTIPS | |
1486 | ||
0367c1c0 | 1487 | void wxWindowOS2::DoSetToolTip( |
c86c44a0 DW |
1488 | wxToolTip* pTooltip |
1489 | ) | |
cdf1e714 | 1490 | { |
c86c44a0 | 1491 | wxWindowBase::DoSetToolTip(pTooltip); |
cdf1e714 | 1492 | |
542875a8 | 1493 | if (m_tooltip) |
cdf1e714 | 1494 | m_tooltip->SetWindow(this); |
0367c1c0 | 1495 | } // end of wxWindowOS2::DoSetToolTip |
cdf1e714 DW |
1496 | |
1497 | #endif // wxUSE_TOOLTIPS | |
1498 | ||
1499 | // --------------------------------------------------------------------------- | |
1500 | // moving and resizing | |
1501 | // --------------------------------------------------------------------------- | |
1502 | ||
1503 | // Get total size | |
0367c1c0 | 1504 | void wxWindowOS2::DoGetSize( |
a7ef993c DW |
1505 | int* pWidth |
1506 | , int* pHeight | |
1507 | ) const | |
cdf1e714 | 1508 | { |
5d44b24e | 1509 | HWND hWnd; |
a7ef993c | 1510 | RECTL vRect; |
c86c44a0 | 1511 | |
5d44b24e DW |
1512 | if (IsKindOf(CLASSINFO(wxFrame))) |
1513 | { | |
1514 | wxFrame* pFrame = wxDynamicCast(this, wxFrame); | |
1515 | hWnd = pFrame->GetFrame(); | |
1516 | } | |
1517 | else | |
1518 | hWnd = GetHwnd(); | |
1519 | ||
a7ef993c DW |
1520 | ::WinQueryWindowRect(hWnd, &vRect); |
1521 | ||
1522 | if (pWidth) | |
1523 | *pWidth = vRect.xRight - vRect.xLeft; | |
1524 | if (pHeight ) | |
1525 | // OS/2 PM is backwards from windows | |
1526 | *pHeight = vRect.yTop - vRect.yBottom; | |
0367c1c0 | 1527 | } // end of wxWindowOS2::DoGetSize |
cdf1e714 | 1528 | |
0367c1c0 | 1529 | void wxWindowOS2::DoGetPosition( |
a7ef993c DW |
1530 | int* pX |
1531 | , int* pY | |
1532 | ) const | |
cdf1e714 | 1533 | { |
a7ef993c | 1534 | HWND hWnd = GetHwnd(); |
8330166c | 1535 | SWP vSwp; |
a7ef993c | 1536 | POINTL vPoint; |
8330166c | 1537 | wxWindow* pParent = GetParent(); |
c86c44a0 | 1538 | |
8330166c DW |
1539 | // |
1540 | // It would seem that WinQueryWindowRect would be the correlary to | |
1541 | // the WIN32 WinGetRect, but unlike WinGetRect which returns the window | |
1542 | // origin position in screen coordinates, WinQueryWindowRect returns it | |
1543 | // relative to itself, i.e. (0,0). To get the same under PM we must | |
1544 | // us WinQueryWindowPos. This call, unlike the WIN32 call, however, | |
1545 | // returns a position relative to it's parent, so no parent adujstments | |
1546 | // are needed under OS/2. Also, windows should be created using | |
1547 | // wxWindow coordinates, i.e 0,0 is the TOP left so vSwp will already | |
1548 | // reflect that. | |
1549 | // | |
1550 | ::WinQueryWindowPos(hWnd, &vSwp); | |
c86c44a0 | 1551 | |
8330166c DW |
1552 | vPoint.x = vSwp.x; |
1553 | vPoint.y = vSwp.y; | |
c86c44a0 | 1554 | |
a7ef993c | 1555 | // |
8330166c DW |
1556 | // We may be faking the client origin. So a window that's really at (0, |
1557 | // 30) may appear (to wxWin apps) to be at (0, 0). | |
a7ef993c | 1558 | // |
8330166c | 1559 | if (pParent) |
c86c44a0 | 1560 | { |
8330166c | 1561 | wxPoint vPt(pParent->GetClientAreaOrigin()); |
a7ef993c | 1562 | |
8330166c DW |
1563 | vPoint.x -= vPt.x; |
1564 | vPoint.y -= vPt.y; | |
c86c44a0 DW |
1565 | } |
1566 | ||
a7ef993c DW |
1567 | if (pX) |
1568 | *pX = vPoint.x; | |
542875a8 | 1569 | if (pY) |
a7ef993c | 1570 | *pY = vPoint.y; |
0367c1c0 | 1571 | } // end of wxWindowOS2::DoGetPosition |
cdf1e714 | 1572 | |
0367c1c0 | 1573 | void wxWindowOS2::DoScreenToClient( |
a7ef993c DW |
1574 | int* pX |
1575 | , int* pY | |
1576 | ) const | |
cdf1e714 | 1577 | { |
a7ef993c | 1578 | HWND hWnd = GetHwnd(); |
8330166c | 1579 | SWP vSwp; |
542875a8 | 1580 | |
8330166c | 1581 | ::WinQueryWindowPos(hWnd, &vSwp); |
cdf1e714 | 1582 | |
a7ef993c | 1583 | if (pX) |
8330166c | 1584 | *pX += vSwp.x; |
a7ef993c | 1585 | if (pY) |
8330166c | 1586 | *pY += vSwp.y; |
0367c1c0 | 1587 | } // end of wxWindowOS2::DoScreenToClient |
a7ef993c | 1588 | |
0367c1c0 | 1589 | void wxWindowOS2::DoClientToScreen( |
a7ef993c DW |
1590 | int* pX |
1591 | , int* pY | |
1592 | ) const | |
cdf1e714 | 1593 | { |
a7ef993c | 1594 | HWND hWnd = GetHwnd(); |
8330166c | 1595 | SWP vSwp; |
19193a2c | 1596 | |
8330166c | 1597 | ::WinQueryWindowPos(hWnd, &vSwp); |
c86c44a0 | 1598 | |
a7ef993c | 1599 | if (pX) |
8330166c | 1600 | *pX += vSwp.x; |
a7ef993c | 1601 | if (pY) |
8330166c | 1602 | *pY += vSwp.y; |
0367c1c0 | 1603 | } // end of wxWindowOS2::DoClientToScreen |
cdf1e714 | 1604 | |
a7ef993c | 1605 | // |
cdf1e714 | 1606 | // Get size *available for subwindows* i.e. excluding menu bar etc. |
a7ef993c DW |
1607 | // Must be a frame type window |
1608 | // | |
0367c1c0 | 1609 | void wxWindowOS2::DoGetClientSize( |
a7ef993c DW |
1610 | int* pWidth |
1611 | , int* pHeight | |
1612 | ) const | |
cdf1e714 | 1613 | { |
a7ef993c | 1614 | HWND hWnd = GetHwnd(); |
a7ef993c DW |
1615 | RECTL vRect; |
1616 | ||
5d44b24e | 1617 | ::WinQueryWindowRect(hWnd, &vRect); |
e37db699 DW |
1618 | if (IsKindOf(CLASSINFO(wxDialog))) |
1619 | { | |
1620 | RECTL vTitle; | |
1621 | HWND hWndTitle; | |
1622 | // | |
1623 | // For a Dialog we have to explicitly request the client portion. | |
1624 | // For a Frame the hWnd IS the client window | |
1625 | // | |
1626 | hWndTitle = ::WinWindowFromID(hWnd, FID_TITLEBAR); | |
1627 | if (::WinQueryWindowRect(hWndTitle, &vTitle)) | |
1628 | { | |
1629 | if (vTitle.yTop - vTitle.yBottom == 0) | |
1630 | { | |
1631 | // | |
1632 | // Dialog has not been created yet, use a default | |
1633 | // | |
1634 | vTitle.yTop = 20; | |
1635 | } | |
1636 | vRect.yTop -= (vTitle.yTop - vTitle.yBottom); | |
1637 | } | |
1638 | ||
1639 | ULONG uStyle = ::WinQueryWindowULong(hWnd, QWL_STYLE); | |
1640 | ||
1641 | // | |
1642 | // Deal with borders | |
1643 | // | |
1644 | if (uStyle & FCF_DLGBORDER) | |
1645 | { | |
1646 | vRect.xLeft += 4; | |
1647 | vRect.xRight -= 4; | |
1648 | vRect.yTop -= 4; | |
1649 | vRect.yBottom += 4; | |
1650 | } | |
1651 | else if (uStyle & FCF_SIZEBORDER) | |
1652 | { | |
1653 | vRect.xLeft += 4; | |
1654 | vRect.xRight -= 4; | |
1655 | vRect.yTop -= 4; | |
1656 | vRect.yBottom += 4; | |
1657 | } | |
1658 | else if (uStyle & FCF_BORDER) | |
1659 | { | |
1660 | vRect.xLeft += 2; | |
1661 | vRect.xRight -= 2; | |
1662 | vRect.yTop -= 2; | |
1663 | vRect.yBottom += 2; | |
1664 | } | |
1665 | else // make some kind of adjustment or top sizers ram into the titlebar! | |
1666 | { | |
1667 | vRect.xLeft += 3; | |
1668 | vRect.xRight -= 3; | |
1669 | vRect.yTop -= 3; | |
1670 | vRect.yBottom += 3; | |
1671 | } | |
1672 | } | |
542875a8 | 1673 | if (pWidth) |
e37db699 | 1674 | *pWidth = vRect.xRight - vRect.xLeft; |
542875a8 | 1675 | if (pHeight) |
e37db699 | 1676 | *pHeight = vRect.yTop - vRect.yBottom; |
0367c1c0 | 1677 | } // end of wxWindowOS2::DoGetClientSize |
cdf1e714 | 1678 | |
0367c1c0 | 1679 | void wxWindowOS2::DoMoveWindow( |
a7ef993c DW |
1680 | int nX |
1681 | , int nY | |
1682 | , int nWidth | |
1683 | , int nHeight | |
1684 | ) | |
cdf1e714 | 1685 | { |
39c26ef2 DW |
1686 | RECTL vRect; |
1687 | HWND hParent; | |
1688 | wxWindow* pParent = GetParent(); | |
1689 | ||
1b086de1 | 1690 | if (pParent && !IsKindOf(CLASSINFO(wxDialog))) |
987da0d4 | 1691 | { |
d8a3f66c DW |
1692 | int nOS2Height = GetOS2ParentHeight(pParent); |
1693 | ||
1694 | nY = nOS2Height - (nY + nHeight); | |
987da0d4 | 1695 | } |
39c26ef2 | 1696 | else |
c86c44a0 | 1697 | { |
987da0d4 DW |
1698 | RECTL vRect; |
1699 | ||
1700 | ::WinQueryWindowRect(HWND_DESKTOP, &vRect); | |
1701 | nY = vRect.yTop - (nY + nHeight); | |
1702 | } | |
f289196b DW |
1703 | |
1704 | // | |
1705 | // In the case of a frame whose client is sized, the client cannot be | |
1706 | // large than its parent frame minus its borders! This usually happens | |
1707 | // when using an autosizer to size a frame to precisely hold client | |
1708 | // controls as in the notebook sample. | |
1709 | // | |
1710 | // In this case, we may need to resize both a frame and its client so we | |
1711 | // need a quick calc of the frame border size, then if the frame | |
1712 | // (less its borders) is smaller than the client, size the frame to | |
1713 | // encompass the client with the appropriate border size. | |
1714 | // | |
1715 | if (IsKindOf(CLASSINFO(wxFrame))) | |
1716 | { | |
1717 | RECTL vFRect; | |
1718 | HWND hWndFrame; | |
1719 | int nWidthFrameDelta = 0; | |
1720 | int nHeightFrameDelta = 0; | |
1721 | int nHeightFrame = 0; | |
1722 | int nWidthFrame = 0; | |
1723 | ULONG ulFLag = SWP_MOVE; | |
1724 | wxFrame* pFrame; | |
1725 | ||
1726 | pFrame = wxDynamicCast(this, wxFrame); | |
1727 | hWndFrame = pFrame->GetFrame(); | |
1728 | ::WinQueryWindowRect(hWndFrame, &vRect); | |
1729 | ::WinMapWindowPoints(hWndFrame, HWND_DESKTOP, (PPOINTL)&vRect, 2); | |
1730 | vFRect = vRect; | |
1731 | ::WinCalcFrameRect(hWndFrame, &vRect, TRUE); | |
1732 | nWidthFrameDelta = ((vRect.xLeft - vFRect.xLeft) + (vFRect.xRight - vRect.xRight)); | |
1733 | nHeightFrameDelta = ((vRect.yBottom - vFRect.yBottom) + (vFRect.yTop - vRect.yTop)); | |
1734 | nWidthFrame = vFRect.xRight - vFRect.xLeft; | |
1735 | nHeightFrame = vFRect.yTop - vFRect.yBottom; | |
1736 | ||
1737 | if (nWidth == vFRect.xRight - vFRect.xLeft && | |
1738 | nHeight == vFRect.yTop - vFRect.yBottom) | |
1739 | { | |
1740 | // | |
1741 | // In this case the caller is not aware of OS/2's need to size both | |
1742 | // the frame and it's client and is really only moving the window, | |
1743 | // not resizeing it. So move the frame, and back off the sizes | |
1744 | // for a proper client fit. | |
1745 | // | |
1746 | ::WinSetWindowPos( hWndFrame | |
1747 | ,HWND_TOP | |
1748 | ,(LONG)nX - (vRect.xLeft - vFRect.xLeft) | |
1749 | ,(LONG)nY - (vRect.yBottom - vFRect.yBottom) | |
1750 | ,(LONG)0 | |
1751 | ,(LONG)0 | |
1752 | ,SWP_MOVE | |
1753 | ); | |
1754 | nX += (vRect.xLeft - vFRect.xLeft); | |
1755 | nY += (vRect.yBottom - vFRect.yBottom); | |
1756 | nWidth -= nWidthFrameDelta; | |
1757 | nHeight -= nHeightFrameDelta; | |
1758 | } | |
1759 | else | |
1760 | { | |
1761 | if (nWidth > nWidthFrame - nHeightFrameDelta || | |
1762 | nHeight > nHeightFrame - nHeightFrameDelta) | |
1763 | { | |
1764 | ::WinSetWindowPos( hWndFrame | |
1765 | ,HWND_TOP | |
1766 | ,(LONG)nX - (vRect.xLeft - vFRect.xLeft) | |
1767 | ,(LONG)nY - (vRect.yBottom - vFRect.yBottom) | |
1768 | ,(LONG)nWidth + nWidthFrameDelta | |
1769 | ,(LONG)nHeight + nHeightFrameDelta | |
1770 | ,SWP_MOVE | SWP_SIZE | |
1771 | ); | |
1772 | } | |
1773 | } | |
1774 | } | |
1775 | ||
987da0d4 DW |
1776 | ::WinSetWindowPos( GetHwnd() |
1777 | ,HWND_TOP | |
1778 | ,(LONG)nX | |
1779 | ,(LONG)nY | |
1780 | ,(LONG)nWidth | |
1781 | ,(LONG)nHeight | |
f289196b | 1782 | ,SWP_SIZE | SWP_MOVE |
987da0d4 | 1783 | ); |
859e65de DW |
1784 | if (m_vWinSwp.cx == 0 && m_vWinSwp.cy == 0 && m_vWinSwp.fl == 0) |
1785 | // | |
1786 | // Uninitialized | |
1787 | // | |
1788 | ::WinQueryWindowPos(GetHwnd(), &m_vWinSwp); | |
1789 | else | |
1790 | { | |
1791 | int nYDiff = m_vWinSwp.cy - nHeight; | |
1792 | ||
1793 | // | |
1794 | // Handle resizing of scrolled windows. The target or window to | |
1795 | // be scrolled is the owner (gets the scroll notificaitons). The | |
1796 | // parent is usually the parent frame of the scrolled panel window. | |
1797 | // In order to show the scrollbars the target window will be shrunk | |
1798 | // by the size of the scroll bar widths (20) and moved in the X and Y | |
1799 | // directon. That value will be computed as part of the diff for | |
1800 | // moving the children. Everytime the window is sized the | |
1801 | // toplevel OnSize is going to resize the panel to fit the client | |
1802 | // or the whole sizer and will need to me resized. This will send | |
1803 | // a WM_SIZE out which will be intercepted by the ScrollHelper | |
1804 | // which will cause the scrollbars to be displayed via the SetScrollbar | |
1805 | // call in CWindow. | |
1806 | // | |
4a46a5df DW |
1807 | if ( IsKindOf(CLASSINFO(wxGenericScrolledWindow)) || |
1808 | IsKindOf(CLASSINFO(wxScrolledWindow)) | |
859e65de DW |
1809 | ) |
1810 | { | |
1811 | int nAdjustWidth = 0; | |
1812 | int nAdjustHeight = 0; | |
1813 | SWP vSwpScroll; | |
1814 | ||
524d72c4 DW |
1815 | if (GetScrollBarHorz() == NULLHANDLE || |
1816 | !WinIsWindowShowing(GetScrollBarHorz())) | |
1817 | nAdjustHeight = 0L; | |
1818 | else | |
859e65de | 1819 | nAdjustHeight = 20L; |
524d72c4 DW |
1820 | if (GetScrollBarVert() == NULLHANDLE || |
1821 | !WinIsWindowShowing(GetScrollBarVert())) | |
1822 | nAdjustWidth = 0L; | |
1823 | else | |
859e65de DW |
1824 | nAdjustWidth = 20L; |
1825 | ::WinQueryWindowPos(GetHWND(), &vSwpScroll); | |
1826 | ::WinSetWindowPos( GetHWND() | |
1827 | ,HWND_TOP | |
1828 | ,vSwpScroll.x | |
1829 | ,vSwpScroll.y + nAdjustHeight | |
1830 | ,vSwpScroll.cx - nAdjustWidth | |
1831 | ,vSwpScroll.cy - nAdjustHeight | |
1832 | ,SWP_MOVE | SWP_SIZE | |
1833 | ); | |
524d72c4 | 1834 | nYDiff += nAdjustHeight; |
859e65de DW |
1835 | } |
1836 | MoveChildren(nYDiff); | |
1837 | ::WinQueryWindowPos(GetHwnd(), &m_vWinSwp); | |
1838 | } | |
0367c1c0 | 1839 | } // end of wxWindowOS2::DoMoveWindow |
cdf1e714 | 1840 | |
c86c44a0 DW |
1841 | // |
1842 | // Set the size of the window: if the dimensions are positive, just use them, | |
cdf1e714 DW |
1843 | // but if any of them is equal to -1, it means that we must find the value for |
1844 | // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in | |
1845 | // which case -1 is a valid value for x and y) | |
1846 | // | |
1847 | // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate | |
1848 | // the width/height to best suit our contents, otherwise we reuse the current | |
1849 | // width/height | |
c86c44a0 | 1850 | // |
0367c1c0 | 1851 | void wxWindowOS2::DoSetSize( |
a7ef993c DW |
1852 | int nX |
1853 | , int nY | |
1854 | , int nWidth | |
1855 | , int nHeight | |
1856 | , int nSizeFlags | |
1857 | ) | |
cdf1e714 | 1858 | { |
a7ef993c DW |
1859 | // |
1860 | // Get the current size and position... | |
1861 | // | |
1862 | int nCurrentX; | |
1863 | int nCurrentY; | |
1864 | int nCurrentWidth; | |
1865 | int nCurrentHeight; | |
542875a8 | 1866 | wxSize vSize(-1, -1); |
a7ef993c | 1867 | |
19193a2c KB |
1868 | GetPosition(&nCurrentX, &nCurrentY); |
1869 | GetSize(&nCurrentWidth, &nCurrentHeight); | |
c86c44a0 | 1870 | |
5d44b24e | 1871 | // |
c86c44a0 | 1872 | // ... and don't do anything (avoiding flicker) if it's already ok |
5d44b24e DW |
1873 | // |
1874 | // | |
1875 | // Must convert Y coords to test for equality under OS/2 | |
1876 | // | |
1877 | int nY2 = nY; | |
1878 | wxWindow* pParent = (wxWindow*)GetParent(); | |
1879 | ||
5d44b24e | 1880 | if (nX == nCurrentX && nY2 == nCurrentY && |
19193a2c | 1881 | nWidth == nCurrentWidth && nHeight == nCurrentHeight) |
c86c44a0 DW |
1882 | { |
1883 | return; | |
1884 | } | |
1885 | ||
a7ef993c DW |
1886 | if (nX == -1 && !(nSizeFlags & wxSIZE_ALLOW_MINUS_ONE)) |
1887 | nX = nCurrentX; | |
542875a8 | 1888 | if (nY == -1 && !(nSizeFlags & wxSIZE_ALLOW_MINUS_ONE)) |
a7ef993c | 1889 | nY = nCurrentY; |
c86c44a0 | 1890 | |
19193a2c | 1891 | AdjustForParentClientOrigin(nX, nY, nSizeFlags); |
c86c44a0 | 1892 | |
a7ef993c | 1893 | if (nWidth == -1) |
c86c44a0 | 1894 | { |
a7ef993c | 1895 | if (nSizeFlags & wxSIZE_AUTO_WIDTH) |
c86c44a0 | 1896 | { |
a7ef993c DW |
1897 | vSize = DoGetBestSize(); |
1898 | nWidth = vSize.x; | |
c86c44a0 DW |
1899 | } |
1900 | else | |
1901 | { | |
a7ef993c DW |
1902 | // |
1903 | // Just take the current one | |
1904 | // | |
1905 | nWidth = nCurrentWidth; | |
c86c44a0 DW |
1906 | } |
1907 | } | |
1908 | ||
a7ef993c | 1909 | if (nHeight == -1) |
c86c44a0 | 1910 | { |
a7ef993c | 1911 | if (nSizeFlags & wxSIZE_AUTO_HEIGHT) |
c86c44a0 | 1912 | { |
a7ef993c | 1913 | if (vSize.x == -1) |
c86c44a0 | 1914 | { |
a7ef993c | 1915 | vSize = DoGetBestSize(); |
c86c44a0 | 1916 | } |
a7ef993c | 1917 | nHeight = vSize.y; |
c86c44a0 DW |
1918 | } |
1919 | else | |
1920 | { | |
1921 | // just take the current one | |
a7ef993c | 1922 | nHeight = nCurrentHeight; |
c86c44a0 DW |
1923 | } |
1924 | } | |
1925 | ||
a7ef993c DW |
1926 | DoMoveWindow( nX |
1927 | ,nY | |
1928 | ,nWidth | |
1929 | ,nHeight | |
1930 | ); | |
0367c1c0 | 1931 | } // end of wxWindowOS2::DoSetSize |
cdf1e714 | 1932 | |
0367c1c0 | 1933 | void wxWindowOS2::DoSetClientSize( |
a7ef993c DW |
1934 | int nWidth |
1935 | , int nHeight | |
1936 | ) | |
cdf1e714 | 1937 | { |
8330166c | 1938 | POINTL vPoint; |
b720b24d DW |
1939 | int nActualWidth; |
1940 | int nActualHeight; | |
1941 | wxWindow* pParent = (wxWindow*)GetParent(); | |
1942 | HWND hParentWnd = (HWND)0; | |
c86c44a0 | 1943 | |
b720b24d DW |
1944 | if (pParent) |
1945 | hParentWnd = (HWND)pParent->GetHWND(); | |
8330166c | 1946 | |
b720b24d DW |
1947 | if (IsKindOf(CLASSINFO(wxFrame))) |
1948 | { | |
1949 | wxFrame* pFrame = wxDynamicCast(this, wxFrame); | |
1950 | HWND hFrame = pFrame->GetFrame(); | |
1951 | RECTL vRect; | |
1952 | RECTL vRect2; | |
1953 | RECTL vRect3; | |
c86c44a0 | 1954 | |
b720b24d DW |
1955 | ::WinQueryWindowRect(GetHwnd(), &vRect2); |
1956 | ::WinQueryWindowRect(hFrame, &vRect); | |
1957 | ::WinQueryWindowRect(hParentWnd, &vRect3); | |
1958 | nActualWidth = vRect2.xRight - vRect2.xLeft - vRect.xRight + nWidth; | |
1959 | nActualHeight = vRect2.yTop - vRect2.yBottom - vRect.yTop + nHeight; | |
1960 | ||
1961 | vPoint.x = vRect2.xLeft; | |
1962 | vPoint.y = vRect2.yBottom; | |
1963 | if (pParent) | |
1964 | { | |
1965 | vPoint.x -= vRect3.xLeft; | |
1966 | vPoint.y -= vRect3.yBottom; | |
1967 | } | |
1968 | } | |
1969 | else | |
8330166c | 1970 | { |
b720b24d DW |
1971 | int nX; |
1972 | int nY; | |
1973 | ||
1974 | GetPosition(&nX, &nY); | |
1975 | nActualWidth = nWidth; | |
1976 | nActualHeight = nHeight; | |
1977 | ||
1978 | vPoint.x = nX; | |
1979 | vPoint.y = nY; | |
c86c44a0 | 1980 | } |
b720b24d DW |
1981 | DoMoveWindow( vPoint.x |
1982 | ,vPoint.y | |
1983 | ,nActualWidth | |
1984 | ,nActualHeight | |
1985 | ); | |
19193a2c | 1986 | |
b720b24d DW |
1987 | wxSizeEvent vEvent( wxSize( nWidth |
1988 | ,nHeight | |
1989 | ) | |
1990 | ,m_windowId | |
1991 | ); | |
19193a2c | 1992 | |
a7ef993c DW |
1993 | vEvent.SetEventObject(this); |
1994 | GetEventHandler()->ProcessEvent(vEvent); | |
0367c1c0 | 1995 | } // end of wxWindowOS2::DoSetClientSize |
cdf1e714 | 1996 | |
0367c1c0 | 1997 | wxPoint wxWindowOS2::GetClientAreaOrigin() const |
cdf1e714 DW |
1998 | { |
1999 | return wxPoint(0, 0); | |
0367c1c0 | 2000 | } // end of wxWindowOS2::GetClientAreaOrigin |
cdf1e714 | 2001 | |
cdf1e714 DW |
2002 | // --------------------------------------------------------------------------- |
2003 | // text metrics | |
2004 | // --------------------------------------------------------------------------- | |
2005 | ||
0367c1c0 | 2006 | int wxWindowOS2::GetCharHeight() const |
cdf1e714 | 2007 | { |
a7ef993c DW |
2008 | HPS hPs; |
2009 | FONTMETRICS vFontMetrics; | |
cdf1e714 | 2010 | |
a7ef993c DW |
2011 | hPs = ::WinGetPS(GetHwnd()); |
2012 | ||
542875a8 | 2013 | if(!GpiQueryFontMetrics(hPs, sizeof(FONTMETRICS), &vFontMetrics)) |
b7084589 DW |
2014 | { |
2015 | ::WinReleasePS(hPs); | |
a7ef993c | 2016 | return (0); |
b7084589 | 2017 | } |
a7ef993c | 2018 | ::WinReleasePS(hPs); |
b7084589 | 2019 | return(vFontMetrics.lMaxAscender + vFontMetrics.lMaxDescender); |
0367c1c0 | 2020 | } // end of wxWindowOS2::GetCharHeight |
a7ef993c | 2021 | |
0367c1c0 | 2022 | int wxWindowOS2::GetCharWidth() const |
cdf1e714 | 2023 | { |
542875a8 DW |
2024 | HPS hPs; |
2025 | FONTMETRICS vFontMetrics; | |
2026 | ||
a7ef993c | 2027 | hPs = ::WinGetPS(GetHwnd()); |
cdf1e714 | 2028 | |
542875a8 | 2029 | if(!GpiQueryFontMetrics(hPs, sizeof(FONTMETRICS), &vFontMetrics)) |
b7084589 DW |
2030 | { |
2031 | ::WinReleasePS(hPs); | |
a7ef993c | 2032 | return (0); |
b7084589 | 2033 | } |
a7ef993c | 2034 | ::WinReleasePS(hPs); |
b7084589 | 2035 | return(vFontMetrics.lAveCharWidth); |
0367c1c0 | 2036 | } // end of wxWindowOS2::GetCharWidth |
a7ef993c | 2037 | |
0367c1c0 | 2038 | void wxWindowOS2::GetTextExtent( |
a7ef993c DW |
2039 | const wxString& rString |
2040 | , int* pX | |
2041 | , int* pY | |
2042 | , int* pDescent | |
2043 | , int* pExternalLeading | |
2044 | , const wxFont* pTheFont | |
2045 | ) const | |
cdf1e714 | 2046 | { |
987da0d4 DW |
2047 | POINTL avPoint[TXTBOX_COUNT]; |
2048 | POINTL vPtMin; | |
2049 | POINTL vPtMax; | |
2050 | int i; | |
2051 | int l; | |
2052 | FONTMETRICS vFM; // metrics structure | |
2053 | BOOL bRc; | |
2054 | char* pStr; | |
2055 | ERRORID vErrorCode; // last error id code | |
2056 | HPS hPS; | |
19193a2c | 2057 | |
a7ef993c | 2058 | |
987da0d4 | 2059 | hPS = ::WinGetPS(GetHwnd()); |
a7ef993c | 2060 | |
987da0d4 DW |
2061 | l = rString.Length(); |
2062 | if (l > 0L) | |
2063 | { | |
2064 | pStr = (PCH)rString.c_str(); | |
a7ef993c | 2065 | |
987da0d4 DW |
2066 | // |
2067 | // In world coordinates. | |
2068 | // | |
2069 | bRc = ::GpiQueryTextBox( hPS | |
2070 | ,l | |
2071 | ,pStr | |
2072 | ,TXTBOX_COUNT // return maximum information | |
2073 | ,avPoint // array of coordinates points | |
2074 | ); | |
2075 | if (bRc) | |
2076 | { | |
2077 | vPtMin.x = avPoint[0].x; | |
2078 | vPtMax.x = avPoint[0].x; | |
2079 | vPtMin.y = avPoint[0].y; | |
2080 | vPtMax.y = avPoint[0].y; | |
2081 | for (i = 1; i < 4; i++) | |
2082 | { | |
2083 | if(vPtMin.x > avPoint[i].x) vPtMin.x = avPoint[i].x; | |
2084 | if(vPtMin.y > avPoint[i].y) vPtMin.y = avPoint[i].y; | |
2085 | if(vPtMax.x < avPoint[i].x) vPtMax.x = avPoint[i].x; | |
2086 | if(vPtMax.y < avPoint[i].y) vPtMax.y = avPoint[i].y; | |
2087 | } | |
2088 | bRc = ::GpiQueryFontMetrics( hPS | |
2089 | ,sizeof(FONTMETRICS) | |
2090 | ,&vFM | |
2091 | ); | |
2092 | if (!bRc) | |
2093 | { | |
2094 | vPtMin.x = 0; | |
2095 | vPtMin.y = 0; | |
2096 | vPtMax.x = 0; | |
2097 | vPtMax.y = 0; | |
2098 | } | |
2099 | } | |
2100 | else | |
2101 | { | |
2102 | vPtMin.x = 0; | |
2103 | vPtMin.y = 0; | |
2104 | vPtMax.x = 0; | |
2105 | vPtMax.y = 0; | |
2106 | } | |
2107 | } | |
2108 | else | |
a7ef993c | 2109 | { |
987da0d4 DW |
2110 | vPtMin.x = 0; |
2111 | vPtMin.y = 0; | |
2112 | vPtMax.x = 0; | |
2113 | vPtMax.y = 0; | |
a7ef993c | 2114 | } |
987da0d4 DW |
2115 | if (pX) |
2116 | *pX = (vPtMax.x - vPtMin.x + 1); | |
2117 | if (pY) | |
2118 | *pY = (vPtMax.y - vPtMin.y + 1); | |
2119 | if (pDescent) | |
2120 | { | |
2121 | if (bRc) | |
2122 | *pDescent = vFM.lMaxDescender; | |
2123 | else | |
2124 | *pDescent = 0; | |
2125 | } | |
2126 | if (pExternalLeading) | |
2127 | { | |
2128 | if (bRc) | |
2129 | *pExternalLeading = vFM.lExternalLeading; | |
2130 | else | |
2131 | *pExternalLeading = 0; | |
2132 | } | |
2133 | ::WinReleasePS(hPS); | |
2134 | } // end of wxWindow::GetTextExtent | |
cdf1e714 | 2135 | |
f9efbe3a DW |
2136 | bool wxWindowOS2::IsMouseInWindow() const |
2137 | { | |
2138 | // | |
2139 | // Get the mouse position | |
2140 | POINTL vPt; | |
2141 | ||
2142 | ::WinQueryPointerPos(HWND_DESKTOP, &vPt); | |
2143 | ||
2144 | // | |
2145 | // Find the window which currently has the cursor and go up the window | |
2146 | // chain until we find this window - or exhaust it | |
2147 | // | |
2148 | HWND hWnd = ::WinWindowFromPoint(HWND_DESKTOP, &vPt, TRUE); | |
2149 | ||
2150 | while (hWnd && (hWnd != GetHwnd())) | |
2151 | hWnd = ::WinQueryWindow(hWnd, QW_PARENT); | |
2152 | ||
2153 | return hWnd != NULL; | |
2154 | } // end of wxWindowOS2::IsMouseInWindow | |
2155 | ||
cdf1e714 DW |
2156 | #if wxUSE_CARET && WXWIN_COMPATIBILITY |
2157 | // --------------------------------------------------------------------------- | |
2158 | // Caret manipulation | |
2159 | // --------------------------------------------------------------------------- | |
2160 | ||
0367c1c0 | 2161 | void wxWindowOS2::CreateCaret( |
a7ef993c DW |
2162 | int nWidth |
2163 | , int nHeight | |
2164 | ) | |
cdf1e714 | 2165 | { |
a7ef993c DW |
2166 | SetCaret(new wxCaret( this |
2167 | ,nWidth | |
2168 | ,nHeight | |
2169 | )); | |
0367c1c0 | 2170 | } // end of wxWindowOS2::CreateCaret |
a7ef993c | 2171 | |
0367c1c0 | 2172 | void wxWindowOS2::CreateCaret( |
a7ef993c DW |
2173 | const wxBitmap* pBitmap |
2174 | ) | |
cdf1e714 | 2175 | { |
a7ef993c | 2176 | wxFAIL_MSG("not implemented"); |
0367c1c0 | 2177 | } // end of wxWindowOS2::CreateCaret |
cdf1e714 | 2178 | |
0367c1c0 | 2179 | void wxWindowOS2::ShowCaret( |
a7ef993c DW |
2180 | bool bShow |
2181 | ) | |
cdf1e714 | 2182 | { |
a7ef993c DW |
2183 | wxCHECK_RET( m_caret, "no caret to show" ); |
2184 | ||
2185 | m_caret->Show(bShow); | |
0367c1c0 | 2186 | } // end of wxWindowOS2::ShowCaret |
cdf1e714 | 2187 | |
0367c1c0 | 2188 | void wxWindowOS2::DestroyCaret() |
cdf1e714 | 2189 | { |
a7ef993c | 2190 | SetCaret(NULL); |
0367c1c0 | 2191 | } // end of wxWindowOS2::DestroyCaret |
cdf1e714 | 2192 | |
0367c1c0 | 2193 | void wxWindowOS2::SetCaretPos( |
a7ef993c DW |
2194 | int nX |
2195 | , int nY) | |
cdf1e714 | 2196 | { |
a7ef993c DW |
2197 | wxCHECK_RET( m_caret, "no caret to move" ); |
2198 | ||
2199 | m_caret->Move( nX | |
2200 | ,nY | |
2201 | ); | |
0367c1c0 | 2202 | } // end of wxWindowOS2::SetCaretPos |
cdf1e714 | 2203 | |
0367c1c0 | 2204 | void wxWindowOS2::GetCaretPos( |
a7ef993c DW |
2205 | int* pX |
2206 | , int* pY | |
2207 | ) const | |
cdf1e714 | 2208 | { |
a7ef993c DW |
2209 | wxCHECK_RET( m_caret, "no caret to get position of" ); |
2210 | ||
2211 | m_caret->GetPosition( pX | |
2212 | ,pY | |
2213 | ); | |
0367c1c0 | 2214 | } // end of wxWindowOS2::GetCaretPos |
cdf1e714 DW |
2215 | |
2216 | #endif //wxUSE_CARET | |
2217 | ||
2218 | // --------------------------------------------------------------------------- | |
2219 | // popup menu | |
2220 | // --------------------------------------------------------------------------- | |
19193a2c KB |
2221 | // |
2222 | #if wxUSE_MENUS_NATIVE | |
3febf684 DW |
2223 | static void wxYieldForCommandsOnly() |
2224 | { | |
2225 | // | |
2226 | // Peek all WM_COMMANDs (it will always return WM_QUIT too but we don't | |
2227 | // want to process it here) | |
2228 | // | |
2229 | QMSG vMsg; | |
2230 | ||
239c2e96 DW |
2231 | while (::WinPeekMsg(vHabmain, &vMsg, (HWND)0, WM_COMMAND, WM_COMMAND, PM_REMOVE) |
2232 | && vMsg.msg != WM_QUIT) | |
3febf684 DW |
2233 | { |
2234 | wxTheApp->DoMessage((WXMSG*)&vMsg); | |
2235 | } | |
2236 | } | |
19193a2c | 2237 | #endif // wxUSE_MENUS_NATIVE |
3febf684 | 2238 | |
19193a2c | 2239 | #if wxUSE_MENUS_NATIVE |
0367c1c0 | 2240 | bool wxWindowOS2::DoPopupMenu( |
61243a51 DW |
2241 | wxMenu* pMenu |
2242 | , int nX | |
2243 | , int nY | |
2244 | ) | |
cdf1e714 | 2245 | { |
239c2e96 DW |
2246 | HWND hWndOwner = GetHwnd(); |
2247 | HWND hWndParent = GetHwnd(); | |
61243a51 | 2248 | HWND hMenu = GetHmenuOf(pMenu); |
239c2e96 | 2249 | bool bIsWaiting = TRUE; |
61243a51 DW |
2250 | |
2251 | pMenu->SetInvokingWindow(this); | |
2252 | pMenu->UpdateUI(); | |
2253 | ||
2254 | DoClientToScreen( &nX | |
2255 | ,&nY | |
2256 | ); | |
2257 | wxCurrentPopupMenu = pMenu; | |
2258 | ||
2259 | ::WinPopupMenu( hWndParent | |
239c2e96 | 2260 | ,hWndOwner |
61243a51 DW |
2261 | ,hMenu |
2262 | ,nX | |
2263 | ,nY | |
2264 | ,0L | |
bdfd8d77 | 2265 | ,PU_HCONSTRAIN | PU_VCONSTRAIN | PU_MOUSEBUTTON1 | PU_KEYBOARD |
61243a51 | 2266 | ); |
bdfd8d77 | 2267 | |
239c2e96 DW |
2268 | while(bIsWaiting) |
2269 | { | |
bdfd8d77 DW |
2270 | QMSG vMsg; |
2271 | BOOL bRc = ::WinGetMsg(vHabmain, &vMsg, HWND(NULL), 0, 0); | |
239c2e96 | 2272 | |
bdfd8d77 | 2273 | if (vMsg.msg == WM_MENUEND || vMsg.msg == WM_COMMAND) |
239c2e96 | 2274 | { |
bdfd8d77 | 2275 | bIsWaiting = FALSE; |
239c2e96 | 2276 | } |
bdfd8d77 DW |
2277 | ::WinDispatchMsg(vHabmain, (PQMSG)&vMsg); |
2278 | ||
239c2e96 | 2279 | } |
61243a51 | 2280 | wxCurrentPopupMenu = NULL; |
61243a51 DW |
2281 | pMenu->SetInvokingWindow(NULL); |
2282 | return TRUE; | |
0367c1c0 | 2283 | } // end of wxWindowOS2::DoPopupMenu |
19193a2c | 2284 | #endif // wxUSE_MENUS_NATIVE |
cdf1e714 DW |
2285 | |
2286 | // =========================================================================== | |
2287 | // pre/post message processing | |
2288 | // =========================================================================== | |
2289 | ||
0367c1c0 | 2290 | MRESULT wxWindowOS2::OS2DefWindowProc( |
61243a51 DW |
2291 | WXUINT uMsg |
2292 | , WXWPARAM wParam | |
2293 | , WXLPARAM lParam | |
2294 | ) | |
cdf1e714 | 2295 | { |
61243a51 | 2296 | if (m_fnOldWndProc) |
19193a2c | 2297 | return (MRESULT)m_fnOldWndProc(GetHWND(), uMsg, (MPARAM)wParam, (MPARAM)lParam); |
61243a51 | 2298 | else |
19193a2c | 2299 | return ::WinDefWindowProc(GetHWND(), uMsg, (MPARAM)wParam, (MPARAM)lParam); |
0367c1c0 | 2300 | } // end of wxWindowOS2::OS2DefWindowProc |
cdf1e714 | 2301 | |
0367c1c0 | 2302 | bool wxWindowOS2::OS2ProcessMessage( |
61243a51 DW |
2303 | WXMSG* pMsg |
2304 | ) | |
cdf1e714 | 2305 | { |
19193a2c KB |
2306 | // wxUniversal implements tab traversal itself |
2307 | #ifndef __WXUNIVERSAL__ | |
61243a51 DW |
2308 | QMSG* pQMsg = (QMSG*)pMsg; |
2309 | ||
2310 | if (m_hWnd != 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL)) | |
2311 | { | |
2312 | // | |
2313 | // Intercept dialog navigation keys | |
2314 | // | |
2315 | bool bProcess = TRUE; | |
2316 | USHORT uKeyFlags = SHORT1FROMMP(pQMsg->mp1); | |
2317 | ||
2318 | if (uKeyFlags & KC_KEYUP) | |
2319 | bProcess = FALSE; | |
2320 | ||
2321 | if (uKeyFlags & KC_ALT) | |
2322 | bProcess = FALSE; | |
2323 | ||
2324 | if (!(uKeyFlags & KC_VIRTUALKEY)) | |
2325 | bProcess = FALSE; | |
2326 | ||
2327 | if (bProcess) | |
2328 | { | |
2329 | bool bCtrlDown = IsCtrlDown(); | |
2330 | bool bShiftDown = IsShiftDown(); | |
2331 | ||
2332 | // | |
2333 | // WM_QUERYDLGCODE: ask the control if it wants the key for itself, | |
2334 | // don't process it if it's the case (except for Ctrl-Tab/Enter | |
2335 | // combinations which are always processed) | |
2336 | // | |
2337 | ULONG ulDlgCode = 0; | |
2338 | ||
2339 | if (!bCtrlDown) | |
2340 | { | |
2341 | ulDlgCode = (ULONG)::WinSendMsg(pQMsg->hwnd, WM_QUERYDLGCODE, pQMsg, 0); | |
2342 | } | |
2343 | ||
2344 | bool bForward = TRUE; | |
2345 | bool bWindowChange = FALSE; | |
2346 | ||
2347 | switch (SHORT2FROMMP(pQMsg->mp2)) | |
2348 | { | |
2349 | // | |
2350 | // Going to make certain assumptions about specific types of controls | |
2351 | // here, so we may have to alter some things later if they prove invalid | |
2352 | // | |
2353 | case VK_TAB: | |
2354 | // | |
2355 | // Shift tabl will always be a nav-key but tabs may be wanted | |
2356 | // | |
2357 | if (!bShiftDown) | |
2358 | { | |
2359 | bProcess = FALSE; | |
2360 | } | |
2361 | else | |
2362 | { | |
2363 | // | |
2364 | // Entry Fields want tabs for themselve usually | |
2365 | // | |
2366 | switch (ulDlgCode) | |
2367 | { | |
2368 | case DLGC_ENTRYFIELD: | |
2369 | case DLGC_MLE: | |
2370 | bProcess = TRUE; | |
2371 | break; | |
2372 | ||
2373 | default: | |
2374 | bProcess = FALSE; | |
2375 | } | |
2376 | ||
2377 | // | |
2378 | // Ctrl-Tab cycles thru notebook pages | |
2379 | // | |
2380 | bWindowChange = bCtrlDown; | |
2381 | bForward = !bShiftDown; | |
2382 | } | |
2383 | break; | |
2384 | ||
2385 | case VK_UP: | |
2386 | case VK_LEFT: | |
2387 | if (bCtrlDown) | |
2388 | bProcess = FALSE; | |
2389 | else | |
2390 | bForward = FALSE; | |
2391 | break; | |
2392 | ||
2393 | case VK_DOWN: | |
2394 | case VK_RIGHT: | |
2395 | if (bCtrlDown) | |
2396 | bProcess = FALSE; | |
2397 | break; | |
2398 | ||
2399 | case VK_ENTER: | |
2400 | { | |
2401 | if (bCtrlDown) | |
2402 | { | |
2403 | // | |
2404 | // ctrl-enter is not processed | |
2405 | // | |
2406 | return FALSE; | |
2407 | } | |
2408 | else if (ulDlgCode & DLGC_BUTTON) | |
2409 | { | |
2410 | // | |
2411 | // buttons want process Enter themselevs | |
2412 | // | |
2413 | bProcess = FALSE; | |
2414 | } | |
2415 | else | |
2416 | { | |
1bcfc0e1 DW |
2417 | wxButton* pBtn = wxDynamicCast( GetDefaultItem() |
2418 | ,wxButton | |
2419 | ); | |
61243a51 DW |
2420 | |
2421 | if (pBtn && pBtn->IsEnabled()) | |
2422 | { | |
2423 | // | |
2424 | // If we do have a default button, do press it | |
2425 | // | |
2426 | pBtn->OS2Command(BN_CLICKED, 0 /* unused */); | |
2427 | return TRUE; | |
2428 | } | |
2429 | // else: but if it does not it makes sense to make | |
2430 | // it work like a TAB - and that's what we do. | |
2431 | // Note that Ctrl-Enter always works this way. | |
2432 | } | |
2433 | } | |
2434 | break; | |
2435 | ||
2436 | default: | |
2437 | bProcess = FALSE; | |
2438 | } | |
2439 | ||
2440 | if (bProcess) | |
2441 | { | |
2442 | wxNavigationKeyEvent vEvent; | |
2443 | ||
2444 | vEvent.SetDirection(bForward); | |
2445 | vEvent.SetWindowChange(bWindowChange); | |
2446 | vEvent.SetEventObject(this); | |
2447 | ||
2448 | if (GetEventHandler()->ProcessEvent(vEvent)) | |
2449 | { | |
2450 | wxButton* pBtn = wxDynamicCast(FindFocus(), wxButton); | |
2451 | ||
2452 | if (pBtn) | |
2453 | { | |
2454 | // | |
2455 | // The button which has focus should be default | |
2456 | // | |
2457 | pBtn->SetDefault(); | |
2458 | } | |
2459 | return TRUE; | |
2460 | } | |
2461 | } | |
2462 | } | |
dae16775 DW |
2463 | // |
2464 | // Let Dialogs process | |
2465 | // | |
2466 | if (::WinSendMsg(pQMsg->hwnd, WM_QUERYDLGCODE, pQMsg, 0)); | |
2467 | return TRUE; | |
61243a51 | 2468 | } |
19193a2c KB |
2469 | #else |
2470 | pMsg = pMsg; // just shut up the compiler | |
2471 | #endif // __WXUNIVERSAL__ | |
61243a51 | 2472 | |
cdf1e714 | 2473 | return FALSE; |
0367c1c0 | 2474 | } // end of wxWindowOS2::OS2ProcessMessage |
cdf1e714 | 2475 | |
0367c1c0 | 2476 | bool wxWindowOS2::OS2TranslateMessage( |
61243a51 DW |
2477 | WXMSG* pMsg |
2478 | ) | |
cdf1e714 | 2479 | { |
19193a2c | 2480 | #if wxUSE_ACCEL && !defined(__WXUNIVERSAL__) |
7e99520b DW |
2481 | return m_acceleratorTable.Translate(m_hWnd, pMsg); |
2482 | #else | |
19193a2c | 2483 | pMsg = pMsg; |
7e99520b DW |
2484 | return FALSE; |
2485 | #endif //wxUSE_ACCEL | |
0367c1c0 | 2486 | } // end of wxWindowOS2::OS2TranslateMessage |
cdf1e714 | 2487 | |
54ffa107 DW |
2488 | bool wxWindowOS2::OS2ShouldPreProcessMessage( |
2489 | WXMSG* pMsg | |
2490 | ) | |
2491 | { | |
2492 | // preprocess all messages by default | |
2493 | return TRUE; | |
2494 | } // end of wxWindowOS2::OS2ShouldPreProcessMessage | |
2495 | ||
cdf1e714 | 2496 | // --------------------------------------------------------------------------- |
61243a51 | 2497 | // message params unpackers |
cdf1e714 DW |
2498 | // --------------------------------------------------------------------------- |
2499 | ||
0367c1c0 | 2500 | void wxWindowOS2::UnpackCommand( |
61243a51 DW |
2501 | WXWPARAM wParam |
2502 | , WXLPARAM lParam | |
2503 | , WORD* pId | |
2504 | , WXHWND* phWnd | |
2505 | , WORD* pCmd | |
2506 | ) | |
cdf1e714 | 2507 | { |
5b3ed311 DW |
2508 | *pId = LOWORD(wParam); |
2509 | *phWnd = NULL; // or may be GetHWND() ? | |
2510 | *pCmd = LOWORD(lParam); | |
0367c1c0 | 2511 | } // end of wxWindowOS2::UnpackCommand |
cdf1e714 | 2512 | |
0367c1c0 | 2513 | void wxWindowOS2::UnpackActivate( |
61243a51 DW |
2514 | WXWPARAM wParam |
2515 | , WXLPARAM lParam | |
2516 | , WXWORD* pState | |
2517 | , WXHWND* phWnd | |
2518 | ) | |
cdf1e714 | 2519 | { |
61243a51 DW |
2520 | *pState = LOWORD(wParam); |
2521 | *phWnd = (WXHWND)lParam; | |
0367c1c0 | 2522 | } // end of wxWindowOS2::UnpackActivate |
cdf1e714 | 2523 | |
0367c1c0 | 2524 | void wxWindowOS2::UnpackScroll( |
61243a51 DW |
2525 | WXWPARAM wParam |
2526 | , WXLPARAM lParam | |
2527 | , WXWORD* pCode | |
2528 | , WXWORD* pPos | |
2529 | , WXHWND* phWnd | |
2530 | ) | |
cdf1e714 | 2531 | { |
b7d8f285 DW |
2532 | ULONG ulId; |
2533 | HWND hWnd; | |
2534 | ||
2535 | ulId = (ULONG)LONGFROMMP(wParam); | |
2536 | hWnd = ::WinWindowFromID(GetHwnd(), ulId); | |
2537 | if (hWnd == m_hWndScrollBarHorz || hWnd == m_hWndScrollBarVert) | |
2538 | *phWnd = NULLHANDLE; | |
2539 | else | |
2540 | *phWnd = hWnd; | |
2541 | ||
2542 | *pPos = SHORT1FROMMP(lParam); | |
2543 | *pCode = SHORT2FROMMP(lParam); | |
0367c1c0 | 2544 | } // end of wxWindowOS2::UnpackScroll |
61243a51 | 2545 | |
0367c1c0 | 2546 | void wxWindowOS2::UnpackMenuSelect( |
61243a51 DW |
2547 | WXWPARAM wParam |
2548 | , WXLPARAM lParam | |
2549 | , WXWORD* pItem | |
2550 | , WXWORD* pFlags | |
2551 | , WXHMENU* phMenu | |
2552 | ) | |
cdf1e714 | 2553 | { |
61243a51 DW |
2554 | *pItem = (WXWORD)LOWORD(wParam); |
2555 | *pFlags = HIWORD(wParam); | |
2556 | *phMenu = (WXHMENU)lParam; | |
0367c1c0 | 2557 | } // end of wxWindowOS2::UnpackMenuSelect |
cdf1e714 DW |
2558 | |
2559 | // --------------------------------------------------------------------------- | |
2560 | // Main wxWindows window proc and the window proc for wxWindow | |
2561 | // --------------------------------------------------------------------------- | |
2562 | ||
61243a51 | 2563 | // |
cdf1e714 DW |
2564 | // Hook for new window just as it's being created, when the window isn't yet |
2565 | // associated with the handle | |
61243a51 | 2566 | // |
19193a2c | 2567 | wxWindowOS2* wxWndHook = NULL; |
cdf1e714 | 2568 | |
61243a51 | 2569 | // |
cdf1e714 | 2570 | // Main window proc |
61243a51 | 2571 | // |
f23208ca | 2572 | MRESULT EXPENTRY wxWndProc( |
61243a51 DW |
2573 | HWND hWnd |
2574 | , ULONG ulMsg | |
2575 | , MPARAM wParam | |
2576 | , MPARAM lParam | |
2577 | ) | |
cdf1e714 | 2578 | { |
61243a51 DW |
2579 | // |
2580 | // Trace all ulMsgs - useful for the debugging | |
2581 | // | |
cdf1e714 DW |
2582 | #ifdef __WXDEBUG__ |
2583 | wxLogTrace(wxTraceMessages, wxT("Processing %s(wParam=%8lx, lParam=%8lx)"), | |
61243a51 | 2584 | wxGetMessageName(ulMsg), wParam, lParam); |
cdf1e714 DW |
2585 | #endif // __WXDEBUG__ |
2586 | ||
19193a2c | 2587 | wxWindowOS2* pWnd = wxFindWinFromHandle((WXHWND)hWnd); |
cdf1e714 | 2588 | |
61243a51 DW |
2589 | // |
2590 | // When we get the first message for the HWND we just created, we associate | |
cdf1e714 | 2591 | // it with wxWindow stored in wxWndHook |
61243a51 DW |
2592 | // |
2593 | if (!pWnd && wxWndHook) | |
cdf1e714 | 2594 | { |
cdf1e714 | 2595 | wxAssociateWinWithHandle(hWnd, wxWndHook); |
61243a51 | 2596 | pWnd = wxWndHook; |
cdf1e714 | 2597 | wxWndHook = NULL; |
61243a51 | 2598 | pWnd->SetHWND((WXHWND)hWnd); |
cdf1e714 DW |
2599 | } |
2600 | ||
5b3ed311 | 2601 | MRESULT rc = (MRESULT)0; |
e604d44b | 2602 | |
cdf1e714 | 2603 | |
61243a51 | 2604 | // |
cdf1e714 | 2605 | // Stop right here if we don't have a valid handle in our wxWindow object. |
61243a51 DW |
2606 | // |
2607 | if (pWnd && !pWnd->GetHWND()) | |
cdf1e714 | 2608 | { |
61243a51 DW |
2609 | pWnd->SetHWND((WXHWND) hWnd); |
2610 | rc = pWnd->OS2DefWindowProc(ulMsg, wParam, lParam ); | |
2611 | pWnd->SetHWND(0); | |
cdf1e714 DW |
2612 | } |
2613 | else | |
2614 | { | |
61243a51 | 2615 | if (pWnd) |
45e0dc94 | 2616 | { |
61243a51 | 2617 | rc = pWnd->OS2WindowProc(ulMsg, wParam, lParam); |
45e0dc94 DW |
2618 | if ( (pWnd->GetScrollBarHorz() != NULLHANDLE || |
2619 | pWnd->GetScrollBarVert() != NULLHANDLE) && | |
2620 | ulMsg == WM_PAINT) | |
2621 | { | |
2622 | if (pWnd->GetScrollBarHorz() != NULLHANDLE) | |
2623 | ::WinInvalidateRect(pWnd->GetScrollBarHorz(), NULL, TRUE); | |
2624 | if (pWnd->GetScrollBarVert() != NULLHANDLE) | |
2625 | ::WinInvalidateRect(pWnd->GetScrollBarVert(), NULL, TRUE); | |
2626 | } | |
2627 | } | |
e604d44b | 2628 | else |
61243a51 | 2629 | rc = ::WinDefWindowProc(hWnd, ulMsg, wParam, lParam); |
cdf1e714 | 2630 | } |
5b3ed311 | 2631 | |
cdf1e714 | 2632 | return rc; |
61243a51 | 2633 | } // end of wxWndProc |
cdf1e714 | 2634 | |
61243a51 DW |
2635 | // |
2636 | // We will add (or delete) messages we need to handle at this default | |
2637 | // level as we go | |
2638 | // | |
0367c1c0 | 2639 | MRESULT wxWindowOS2::OS2WindowProc( |
61243a51 DW |
2640 | WXUINT uMsg |
2641 | , WXWPARAM wParam | |
2642 | , WXLPARAM lParam | |
2643 | ) | |
cdf1e714 | 2644 | { |
61243a51 DW |
2645 | // |
2646 | // Did we process the uMsg? | |
2647 | // | |
2648 | bool bProcessed = FALSE; | |
e604d44b | 2649 | MRESULT mResult; |
cdf1e714 | 2650 | |
61243a51 DW |
2651 | // |
2652 | // For most messages we should return 0 when we do process the message | |
2653 | // | |
e604d44b | 2654 | mResult = (MRESULT)0; |
61243a51 DW |
2655 | |
2656 | switch (uMsg) | |
cdf1e714 DW |
2657 | { |
2658 | case WM_CREATE: | |
2659 | { | |
61243a51 DW |
2660 | bool bMayCreate; |
2661 | ||
2662 | bProcessed = HandleCreate( (WXLPCREATESTRUCT)lParam | |
2663 | ,&bMayCreate | |
2664 | ); | |
2665 | if (bProcessed) | |
cdf1e714 | 2666 | { |
61243a51 DW |
2667 | // |
2668 | // Return 0 to bAllow window creation | |
2669 | // | |
e604d44b | 2670 | mResult = (MRESULT)(bMayCreate ? 0 : -1); |
cdf1e714 DW |
2671 | } |
2672 | } | |
2673 | break; | |
2674 | ||
2675 | case WM_DESTROY: | |
e604d44b DW |
2676 | HandleDestroy(); |
2677 | bProcessed = TRUE; | |
e604d44b | 2678 | break; |
cdf1e714 DW |
2679 | |
2680 | case WM_MOVE: | |
61243a51 DW |
2681 | bProcessed = HandleMove( LOWORD(lParam) |
2682 | ,HIWORD(lParam) | |
2683 | ); | |
cdf1e714 DW |
2684 | break; |
2685 | ||
2686 | case WM_SIZE: | |
61243a51 DW |
2687 | bProcessed = HandleSize( LOWORD(lParam) |
2688 | ,HIWORD(lParam) | |
2689 | ,(WXUINT)wParam | |
2690 | ); | |
cdf1e714 DW |
2691 | break; |
2692 | ||
e37db699 DW |
2693 | case WM_WINDOWPOSCHANGED: |
2694 | ||
2695 | // | |
2696 | // Dialogs under OS/2 do not get WM_SIZE events at all. | |
2697 | // Instead they get this, which can function much like WM_SIZE | |
2698 | // PSWP contains the new sizes and positioning, PSWP+1 the old | |
2699 | // We use this because ADJUSTWINDOWPOS comes BEFORE the new | |
2700 | // position is added and our auto layout does a WinQueryWindowRect | |
2701 | // to get the CURRENT client size. That is the size used to position | |
2702 | // child controls, so we need to already be sized | |
2703 | // in order to get the child controls positoned properly. | |
2704 | // | |
626af800 | 2705 | if (IsKindOf(CLASSINFO(wxDialog)) || IsKindOf(CLASSINFO(wxFrame))) |
e37db699 DW |
2706 | { |
2707 | PSWP pSwp = (PSWP)PVOIDFROMMP(wParam); | |
f3e4a2a4 DW |
2708 | PSWP pSwp2 = pSwp++; |
2709 | ||
2710 | if (!(pSwp->cx == pSwp2->cx && | |
2711 | pSwp->cy == pSwp2->cy)) | |
2712 | bProcessed = HandleSize( pSwp->cx | |
2713 | ,pSwp->cy | |
2714 | ,(WXUINT)lParam | |
2715 | ); | |
626af800 DW |
2716 | if (IsKindOf(CLASSINFO(wxFrame))) |
2717 | { | |
2718 | wxFrame* pFrame = wxDynamicCast(this, wxFrame); | |
2719 | ||
2720 | if (pFrame) | |
2721 | { | |
2722 | if (pFrame->GetStatusBar()) | |
2723 | pFrame->PositionStatusBar(); | |
2590f154 DW |
2724 | if (pFrame->GetToolBar()) |
2725 | pFrame->PositionToolBar(); | |
626af800 DW |
2726 | } |
2727 | } | |
e37db699 DW |
2728 | } |
2729 | break; | |
2730 | ||
cdf1e714 DW |
2731 | case WM_ACTIVATE: |
2732 | { | |
61243a51 DW |
2733 | WXWORD wState; |
2734 | WXHWND hWnd; | |
2735 | ||
2736 | UnpackActivate( wParam | |
2737 | ,lParam | |
2738 | ,&wState | |
2739 | ,&hWnd | |
2740 | ); | |
2741 | ||
2742 | bProcessed = HandleActivate( wState | |
2743 | ,(WXHWND)hWnd | |
2744 | ); | |
e604d44b | 2745 | bProcessed = FALSE; |
cdf1e714 DW |
2746 | } |
2747 | break; | |
2748 | ||
2749 | case WM_SETFOCUS: | |
61243a51 DW |
2750 | if (SHORT1FROMMP((MPARAM)lParam) == TRUE) |
2751 | bProcessed = HandleSetFocus((WXHWND)(HWND)wParam); | |
2752 | else | |
2753 | bProcessed = HandleKillFocus((WXHWND)(HWND)wParam); | |
cdf1e714 DW |
2754 | break; |
2755 | ||
2756 | case WM_PAINT: | |
61243a51 | 2757 | bProcessed = HandlePaint(); |
cdf1e714 DW |
2758 | break; |
2759 | ||
2760 | case WM_CLOSE: | |
61243a51 DW |
2761 | // |
2762 | // Don't let the DefWindowProc() destroy our window - we'll do it | |
cdf1e714 | 2763 | // ourselves in ~wxWindow |
61243a51 DW |
2764 | // |
2765 | bProcessed = TRUE; | |
e604d44b | 2766 | mResult = (MRESULT)TRUE; |
cdf1e714 DW |
2767 | break; |
2768 | ||
61243a51 DW |
2769 | case WM_SHOW: |
2770 | bProcessed = HandleShow(wParam != 0, (int)lParam); | |
cdf1e714 DW |
2771 | break; |
2772 | ||
61243a51 DW |
2773 | // |
2774 | // Under OS2 PM Joysticks are treated just like mouse events | |
2775 | // The "Motion" events will be prevelent in joysticks | |
2776 | // | |
cdf1e714 | 2777 | case WM_MOUSEMOVE: |
61243a51 DW |
2778 | case WM_BUTTON1DOWN: |
2779 | case WM_BUTTON1UP: | |
2780 | case WM_BUTTON1DBLCLK: | |
2781 | case WM_BUTTON1MOTIONEND: | |
2782 | case WM_BUTTON1MOTIONSTART: | |
2783 | case WM_BUTTON2DOWN: | |
2784 | case WM_BUTTON2UP: | |
2785 | case WM_BUTTON2DBLCLK: | |
2786 | case WM_BUTTON2MOTIONEND: | |
2787 | case WM_BUTTON2MOTIONSTART: | |
2788 | case WM_BUTTON3DOWN: | |
2789 | case WM_BUTTON3UP: | |
2790 | case WM_BUTTON3DBLCLK: | |
2791 | case WM_BUTTON3MOTIONEND: | |
2792 | case WM_BUTTON3MOTIONSTART: | |
cdf1e714 | 2793 | { |
430974f8 DW |
2794 | if (uMsg == WM_BUTTON1DOWN && AcceptsFocus()) |
2795 | SetFocus(); | |
2796 | ||
2797 | short nX = LOWORD(wParam); | |
2798 | short nY = HIWORD(wParam); | |
cdf1e714 | 2799 | |
430974f8 DW |
2800 | // |
2801 | // Redirect the event to a static control if necessary | |
2802 | // | |
2803 | if (this == GetCapture()) | |
2804 | { | |
2805 | bProcessed = HandleMouseEvent( uMsg | |
2806 | ,nX | |
2807 | ,nY | |
2808 | ,(WXUINT)SHORT1FROMMP(wParam) | |
2809 | ); | |
2810 | } | |
2811 | else | |
2812 | { | |
2813 | wxWindow* pWin = FindWindowForMouseEvent( this | |
2814 | ,&nX | |
2815 | ,&nY | |
2816 | ); | |
2817 | bProcessed = pWin->HandleMouseEvent( uMsg | |
2818 | ,nX | |
2819 | ,nY | |
2820 | ,(WXUINT)SHORT1FROMMP(wParam) | |
2821 | ); | |
2822 | } | |
cdf1e714 DW |
2823 | } |
2824 | break; | |
430974f8 | 2825 | |
cdf1e714 | 2826 | case WM_SYSCOMMAND: |
61243a51 | 2827 | bProcessed = HandleSysCommand(wParam, lParam); |
cdf1e714 DW |
2828 | break; |
2829 | ||
2830 | case WM_COMMAND: | |
2831 | { | |
2832 | WORD id, cmd; | |
2833 | WXHWND hwnd; | |
2834 | UnpackCommand(wParam, lParam, &id, &hwnd, &cmd); | |
2835 | ||
61243a51 | 2836 | bProcessed = HandleCommand(id, cmd, hwnd); |
cdf1e714 DW |
2837 | } |
2838 | break; | |
2839 | ||
61243a51 DW |
2840 | // |
2841 | // For these messages we must return TRUE if process the message | |
2842 | // | |
cdf1e714 DW |
2843 | case WM_DRAWITEM: |
2844 | case WM_MEASUREITEM: | |
2845 | { | |
45bedfdd | 2846 | int nIdCtrl = (UINT)wParam; |
45bedfdd | 2847 | |
61243a51 | 2848 | if ( uMsg == WM_DRAWITEM ) |
cdf1e714 | 2849 | { |
45bedfdd | 2850 | bProcessed = OS2OnDrawItem(nIdCtrl, |
cdf1e714 DW |
2851 | (WXDRAWITEMSTRUCT *)lParam); |
2852 | } | |
2853 | else | |
2854 | { | |
f5ea767e DW |
2855 | return MRFROMLONG(OS2OnMeasureItem( nIdCtrl |
2856 | ,(WXMEASUREITEMSTRUCT *)lParam | |
2857 | )); | |
cdf1e714 DW |
2858 | } |
2859 | ||
61243a51 | 2860 | if ( bProcessed ) |
e604d44b | 2861 | mResult = (MRESULT)TRUE; |
cdf1e714 DW |
2862 | } |
2863 | break; | |
2864 | ||
61243a51 | 2865 | case WM_QUERYDLGCODE: |
47df2b8c | 2866 | if (!IsOfStandardClass()) |
cdf1e714 | 2867 | { |
47df2b8c DW |
2868 | if ( m_lDlgCode ) |
2869 | { | |
2870 | mResult = (MRESULT)m_lDlgCode; | |
2871 | bProcessed = TRUE; | |
2872 | } | |
cdf1e714 | 2873 | } |
61243a51 | 2874 | // |
cdf1e714 | 2875 | //else: get the dlg code from the DefWindowProc() |
61243a51 | 2876 | // |
cdf1e714 DW |
2877 | break; |
2878 | ||
61243a51 DW |
2879 | // |
2880 | // In OS/2 PM all keyboard events are of the WM_CHAR type. Virtual key and key-up | |
2881 | // and key-down events are obtained from the WM_CHAR params. | |
2882 | // | |
2883 | case WM_CHAR: | |
cdf1e714 | 2884 | { |
61243a51 | 2885 | USHORT uKeyFlags = SHORT1FROMMP((MPARAM)wParam); |
cdf1e714 | 2886 | |
61243a51 DW |
2887 | if (uKeyFlags & KC_KEYUP) |
2888 | { | |
19193a2c | 2889 | //TODO: check if the cast to WXWORD isn't causing trouble |
a086de98 | 2890 | bProcessed = HandleKeyUp(wParam, lParam); |
cdf1e714 | 2891 | break; |
61243a51 DW |
2892 | } |
2893 | else // keydown event | |
2894 | { | |
3437f881 | 2895 | m_bLastKeydownProcessed = FALSE; |
61243a51 DW |
2896 | // |
2897 | // If this has been processed by an event handler, | |
2898 | // return 0 now (we've handled it). DON't RETURN | |
2899 | // we still need to process further | |
2900 | // | |
a086de98 | 2901 | m_bLastKeydownProcessed = HandleKeyDown(wParam, lParam); |
61243a51 | 2902 | if (uKeyFlags & KC_VIRTUALKEY) |
cdf1e714 | 2903 | { |
61243a51 DW |
2904 | USHORT uVk = SHORT2FROMMP((MPARAM)lParam); |
2905 | ||
2906 | // | |
2907 | // We consider these message "not interesting" to OnChar | |
2908 | // | |
61243a51 DW |
2909 | switch(uVk) |
2910 | { | |
a086de98 DW |
2911 | case VK_SHIFT: |
2912 | case VK_CTRL: | |
2913 | case VK_MENU: | |
2914 | case VK_CAPSLOCK: | |
2915 | case VK_NUMLOCK: | |
2916 | case VK_SCRLLOCK: | |
2917 | bProcessed = TRUE; | |
2918 | break; | |
2919 | ||
61243a51 DW |
2920 | // Avoid duplicate messages to OnChar for these ASCII keys: they |
2921 | // will be translated by TranslateMessage() and received in WM_CHAR | |
2922 | case VK_ESC: | |
61243a51 DW |
2923 | case VK_ENTER: |
2924 | case VK_BACKSPACE: | |
2925 | case VK_TAB: | |
2926 | // But set processed to FALSE, not TRUE to still pass them to | |
2927 | // the control's default window proc - otherwise built-in | |
2928 | // keyboard handling won't work | |
2929 | bProcessed = FALSE; | |
2930 | break; | |
2931 | ||
61243a51 | 2932 | default: |
598d8cac | 2933 | bProcessed = HandleChar(wParam, lParam); |
61243a51 DW |
2934 | } |
2935 | break; | |
cdf1e714 | 2936 | } |
61243a51 DW |
2937 | else // WM_CHAR -- Always an ASCII character |
2938 | { | |
a086de98 DW |
2939 | if (m_bLastKeydownProcessed) |
2940 | { | |
2941 | // | |
2942 | // The key was handled in the EVT_KEY_DOWN and handling | |
2943 | // a key in an EVT_KEY_DOWN handler is meant, by | |
2944 | // design, to prevent EVT_CHARs from happening | |
2945 | // | |
2946 | m_bLastKeydownProcessed = FALSE; | |
2947 | bProcessed = TRUE; | |
2948 | } | |
2949 | else // do generate a CHAR event | |
2950 | { | |
598d8cac | 2951 | bProcessed = HandleChar(wParam, lParam, TRUE); |
a086de98 DW |
2952 | break; |
2953 | } | |
61243a51 DW |
2954 | } |
2955 | } | |
cdf1e714 | 2956 | } |
cdf1e714 DW |
2957 | |
2958 | case WM_HSCROLL: | |
2959 | case WM_VSCROLL: | |
2960 | { | |
61243a51 DW |
2961 | WXWORD wCode; |
2962 | WXWORD wPos; | |
2963 | WXHWND hWnd; | |
2964 | UnpackScroll( wParam | |
2965 | ,lParam | |
2966 | ,&wCode | |
2967 | ,&wPos | |
2968 | ,&hWnd | |
2969 | ); | |
2970 | ||
2971 | bProcessed = OS2OnScroll( uMsg == WM_HSCROLL ? wxHORIZONTAL | |
2972 | : wxVERTICAL | |
2973 | ,wCode | |
2974 | ,wPos | |
2975 | ,hWnd | |
2976 | ); | |
cdf1e714 DW |
2977 | } |
2978 | break; | |
2979 | ||
3c299c3a DW |
2980 | case WM_CONTROL: |
2981 | switch(SHORT2FROMMP(wParam)) | |
2982 | { | |
a5799260 DW |
2983 | case BN_PAINT: |
2984 | { | |
2985 | HWND hWnd = ::WinWindowFromID((HWND)GetHwnd(), SHORT1FROMMP(wParam)); | |
2986 | wxWindowOS2* pWin = wxFindWinFromHandle(hWnd); | |
2987 | ||
2988 | if (!pWin) | |
2989 | { | |
2990 | bProcessed = FALSE; | |
2991 | break; | |
2992 | } | |
2993 | if (pWin->IsKindOf(CLASSINFO(wxBitmapButton))) | |
2994 | { | |
2995 | wxBitmapButton* pBitmapButton = wxDynamicCast(pWin, wxBitmapButton); | |
2996 | ||
2997 | pBitmapButton->OS2OnDraw((WXDRAWITEMSTRUCT *)lParam); | |
2998 | } | |
2999 | return 0; | |
3000 | } | |
3001 | break; | |
3002 | ||
1de4baa3 DW |
3003 | case BKN_PAGESELECTEDPENDING: |
3004 | { | |
3005 | PPAGESELECTNOTIFY pPage = (PPAGESELECTNOTIFY)lParam; | |
3006 | ||
3007 | if ((pPage->ulPageIdNew != pPage->ulPageIdCur) && | |
3008 | (pPage->ulPageIdNew > 0L && pPage->ulPageIdCur > 0L)) | |
3009 | { | |
3010 | wxWindowOS2* pWin = wxFindWinFromHandle(pPage->hwndBook); | |
3011 | wxNotebookEvent vEvent( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED | |
3012 | ,(int)SHORT1FROMMP(wParam) | |
3013 | ,(int)pPage->ulPageIdNew | |
3014 | ,(int)pPage->ulPageIdCur | |
3015 | ); | |
3016 | if (!pWin) | |
3017 | { | |
3018 | bProcessed = FALSE; | |
3019 | break; | |
3020 | } | |
3021 | if (pWin->IsKindOf(CLASSINFO(wxNotebook))) | |
3022 | { | |
3023 | wxNotebook* pNotebook = wxDynamicCast(pWin, wxNotebook); | |
3024 | ||
3025 | vEvent.SetEventObject(pWin); | |
3026 | pNotebook->OnSelChange(vEvent); | |
3027 | bProcessed = TRUE; | |
3028 | } | |
3029 | else | |
3030 | bProcessed = FALSE; | |
3031 | } | |
3032 | else | |
3033 | bProcessed = FALSE; | |
3034 | } | |
3035 | break; | |
3036 | ||
3037 | case BN_CLICKED: // Dups as LN_SELECT and CBN_LBSELECT | |
f289196b DW |
3038 | { |
3039 | HWND hWnd = ::WinWindowFromID((HWND)GetHwnd(), SHORT1FROMMP(wParam)); | |
3040 | wxWindowOS2* pWin = wxFindWinFromHandle(hWnd); | |
3041 | ||
3042 | if (!pWin) | |
3043 | { | |
3044 | bProcessed = FALSE; | |
3045 | break; | |
3046 | } | |
3047 | // | |
3048 | // Simulate a WM_COMMAND here, as wxWindows expects all control | |
3049 | // button clicks to generate WM_COMMAND msgs, not WM_CONTROL | |
3050 | // | |
3051 | if (pWin->IsKindOf(CLASSINFO(wxRadioBox))) | |
3052 | { | |
3053 | wxRadioBox* pRadioBox = wxDynamicCast(pWin, wxRadioBox); | |
3054 | ||
3055 | pRadioBox->OS2Command( (WXUINT)SHORT2FROMMP(wParam) | |
3056 | ,(WXUINT)SHORT1FROMMP(wParam) | |
3057 | ); | |
3058 | } | |
3059 | if (pWin->IsKindOf(CLASSINFO(wxRadioButton))) | |
3060 | { | |
3061 | wxRadioButton* pRadioButton = wxDynamicCast(pWin, wxRadioButton); | |
3062 | ||
3063 | pRadioButton->OS2Command( (WXUINT)SHORT2FROMMP(wParam) | |
3064 | ,(WXUINT)SHORT1FROMMP(wParam) | |
3065 | ); | |
3066 | } | |
3067 | if (pWin->IsKindOf(CLASSINFO(wxCheckBox))) | |
3068 | { | |
3069 | wxCheckBox* pCheckBox = wxDynamicCast(pWin, wxCheckBox); | |
3070 | ||
3071 | pCheckBox->OS2Command( (WXUINT)SHORT2FROMMP(wParam) | |
3072 | ,(WXUINT)SHORT1FROMMP(wParam) | |
3073 | ); | |
3074 | } | |
1de4baa3 DW |
3075 | if (pWin->IsKindOf(CLASSINFO(wxListBox))) |
3076 | { | |
3077 | wxListBox* pListBox = wxDynamicCast(pWin, wxListBox); | |
3078 | ||
3079 | pListBox->OS2Command( (WXUINT)SHORT2FROMMP(wParam) | |
3080 | ,(WXUINT)SHORT1FROMMP(wParam) | |
3081 | ); | |
3082 | if (pListBox->GetWindowStyle() & wxLB_OWNERDRAW) | |
3083 | Refresh(); | |
3084 | } | |
3085 | if (pWin->IsKindOf(CLASSINFO(wxComboBox))) | |
3086 | { | |
3087 | wxComboBox* pComboBox = wxDynamicCast(pWin, wxComboBox); | |
3088 | ||
3089 | pComboBox->OS2Command( (WXUINT)SHORT2FROMMP(wParam) | |
3090 | ,(WXUINT)SHORT1FROMMP(wParam) | |
3091 | ); | |
3092 | } | |
3093 | return 0; | |
3094 | } | |
3095 | break; | |
3096 | ||
3097 | case LN_ENTER: /* dups as CBN_EFCHANGE */ | |
3098 | { | |
3099 | HWND hWnd = HWNDFROMMP(lParam); | |
3100 | wxWindowOS2* pWin = wxFindWinFromHandle(hWnd); | |
3101 | ||
3102 | if (!pWin) | |
3103 | { | |
3104 | bProcessed = FALSE; | |
3105 | break; | |
3106 | } | |
3107 | // | |
3108 | // Simulate a WM_COMMAND here, as wxWindows expects all control | |
3109 | // button clicks to generate WM_COMMAND msgs, not WM_CONTROL | |
3110 | // | |
3111 | if (pWin->IsKindOf(CLASSINFO(wxListBox))) | |
3112 | { | |
3113 | wxListBox* pListBox = wxDynamicCast(pWin, wxListBox); | |
3114 | ||
3115 | pListBox->OS2Command( (WXUINT)SHORT2FROMMP(wParam) | |
3116 | ,(WXUINT)SHORT1FROMMP(wParam) | |
3117 | ); | |
3118 | if (pListBox->GetWindowStyle() & wxLB_OWNERDRAW) | |
3119 | Refresh(); | |
3120 | ||
3121 | } | |
3122 | if (pWin->IsKindOf(CLASSINFO(wxComboBox))) | |
3123 | { | |
3124 | wxComboBox* pComboBox = wxDynamicCast(pWin, wxComboBox); | |
3125 | ||
3126 | pComboBox->OS2Command( (WXUINT)SHORT2FROMMP(wParam) | |
3127 | ,(WXUINT)SHORT1FROMMP(wParam) | |
3128 | ); | |
3129 | } | |
f289196b DW |
3130 | return 0; |
3131 | } | |
3132 | break; | |
3133 | ||
3c299c3a DW |
3134 | case SPBN_UPARROW: |
3135 | case SPBN_DOWNARROW: | |
3136 | case SPBN_CHANGE: | |
3137 | { | |
3138 | char zVal[10]; | |
3139 | long lVal; | |
3140 | ||
3141 | ::WinSendMsg( HWNDFROMMP(lParam) | |
3142 | ,SPBM_QUERYVALUE | |
3143 | ,&zVal | |
3144 | ,MPFROM2SHORT( (USHORT)10 | |
3145 | ,(USHORT)SPBQ_UPDATEIFVALID | |
3146 | ) | |
3147 | ); | |
3148 | lVal = atol(zVal); | |
3149 | bProcessed = OS2OnScroll( wxVERTICAL | |
3150 | ,(int)SHORT2FROMMP(wParam) | |
3151 | ,(int)lVal | |
3152 | ,HWNDFROMMP(lParam) | |
3153 | ); | |
3154 | } | |
3155 | break; | |
3156 | ||
3157 | case SLN_SLIDERTRACK: | |
3158 | { | |
3159 | HWND hWnd = ::WinWindowFromID(GetHWND(), SHORT1FROMMP(wParam)); | |
3160 | wxWindowOS2* pChild = wxFindWinFromHandle(hWnd); | |
3161 | ||
b389a12d DW |
3162 | if (!pChild) |
3163 | { | |
3164 | bProcessed = FALSE; | |
3165 | break; | |
3166 | } | |
3c299c3a DW |
3167 | if (pChild->IsKindOf(CLASSINFO(wxSlider))) |
3168 | bProcessed = OS2OnScroll( wxVERTICAL | |
3169 | ,(int)SHORT2FROMMP(wParam) | |
3170 | ,(int)LONGFROMMP(lParam) | |
3171 | ,hWnd | |
3172 | ); | |
3173 | } | |
3174 | break; | |
3175 | } | |
3176 | break; | |
3177 | ||
61243a51 DW |
3178 | #if defined(__VISAGECPP__) && (__IBMCPP__ >= 400) |
3179 | case WM_CTLCOLORCHANGE: | |
cdf1e714 | 3180 | { |
e604d44b | 3181 | bProcessed = HandleCtlColor(&hBrush); |
61243a51 DW |
3182 | } |
3183 | break; | |
3184 | #endif | |
8d854fa9 DW |
3185 | case WM_ERASEBACKGROUND: |
3186 | // | |
3187 | // Returning TRUE to requestw PM to paint the window background | |
3188 | // in SYSCLR_WINDOW. We don't really want that | |
3189 | // | |
3190 | bProcessed = HandleEraseBkgnd((WXHDC)(HPS)wParam); | |
3191 | mResult = (MRESULT)(FALSE); | |
3192 | break; | |
3193 | ||
cdf1e714 DW |
3194 | // the return value for this message is ignored |
3195 | case WM_SYSCOLORCHANGE: | |
61243a51 | 3196 | bProcessed = HandleSysColorChange(); |
cdf1e714 DW |
3197 | break; |
3198 | ||
61243a51 DW |
3199 | case WM_REALIZEPALETTE: |
3200 | bProcessed = HandlePaletteChanged(); | |
cdf1e714 DW |
3201 | break; |
3202 | ||
61243a51 DW |
3203 | // move all drag and drops to wxDrg |
3204 | case WM_ENDDRAG: | |
3205 | bProcessed = HandleEndDrag(wParam); | |
cdf1e714 DW |
3206 | break; |
3207 | ||
61243a51 DW |
3208 | case WM_INITDLG: |
3209 | bProcessed = HandleInitDialog((WXHWND)(HWND)wParam); | |
cdf1e714 | 3210 | |
61243a51 | 3211 | if ( bProcessed ) |
cdf1e714 DW |
3212 | { |
3213 | // we never set focus from here | |
272ebf16 | 3214 | mResult = (MRESULT)FALSE; |
cdf1e714 DW |
3215 | } |
3216 | break; | |
3217 | ||
61243a51 DW |
3218 | // wxFrame specific message |
3219 | case WM_MINMAXFRAME: | |
f6bcfd97 | 3220 | bProcessed = HandleGetMinMaxInfo((PSWP)wParam); |
cdf1e714 DW |
3221 | break; |
3222 | ||
61243a51 DW |
3223 | case WM_SYSVALUECHANGED: |
3224 | // TODO: do something | |
e604d44b | 3225 | mResult = (MRESULT)TRUE; |
cdf1e714 DW |
3226 | break; |
3227 | ||
61243a51 DW |
3228 | // |
3229 | // Comparable to WM_SETPOINTER for windows, only for just controls | |
3230 | // | |
3231 | case WM_CONTROLPOINTER: | |
3232 | bProcessed = HandleSetCursor( SHORT1FROMMP(wParam) // Control ID | |
3233 | ,(HWND)lParam // Cursor Handle | |
3234 | ); | |
3235 | if (bProcessed ) | |
cdf1e714 | 3236 | { |
61243a51 DW |
3237 | // |
3238 | // Returning TRUE stops the DefWindowProc() from further | |
cdf1e714 DW |
3239 | // processing this message - exactly what we need because we've |
3240 | // just set the cursor. | |
61243a51 | 3241 | // |
e604d44b | 3242 | mResult = (MRESULT)TRUE; |
cdf1e714 DW |
3243 | } |
3244 | break; | |
3245 | } | |
61243a51 | 3246 | if (!bProcessed) |
cdf1e714 DW |
3247 | { |
3248 | #ifdef __WXDEBUG__ | |
3249 | wxLogTrace(wxTraceMessages, wxT("Forwarding %s to DefWindowProc."), | |
61243a51 | 3250 | wxGetMessageName(uMsg)); |
cdf1e714 | 3251 | #endif // __WXDEBUG__ |
d08f23a7 DW |
3252 | if (IsKindOf(CLASSINFO(wxFrame))) |
3253 | mResult = ::WinDefWindowProc(m_hWnd, uMsg, wParam, lParam); | |
1b086de1 DW |
3254 | else if (IsKindOf(CLASSINFO(wxDialog))) |
3255 | mResult = ::WinDefDlgProc( m_hWnd, uMsg, wParam, lParam); | |
d08f23a7 DW |
3256 | else |
3257 | mResult = OS2DefWindowProc(uMsg, wParam, lParam); | |
cdf1e714 | 3258 | } |
e604d44b | 3259 | return mResult; |
0367c1c0 | 3260 | } // end of wxWindowOS2::OS2WindowProc |
cdf1e714 | 3261 | |
a4a16252 SN |
3262 | #ifndef __EMX__ |
3263 | // clashes with wxDlgProc in toplevel.cpp? | |
61243a51 | 3264 | // |
cdf1e714 | 3265 | // Dialog window proc |
61243a51 DW |
3266 | // |
3267 | MRESULT wxDlgProc( | |
19193a2c | 3268 | HWND WXUNUSED(hWnd) |
61243a51 | 3269 | , UINT uMsg |
19193a2c KB |
3270 | , MPARAM WXUNUSED(wParam) |
3271 | , MPARAM WXUNUSED(lParam)) | |
cdf1e714 | 3272 | { |
61243a51 | 3273 | if (uMsg == WM_INITDLG) |
cdf1e714 | 3274 | { |
61243a51 DW |
3275 | // |
3276 | // For this message, returning TRUE tells system to set focus to the | |
cdf1e714 | 3277 | // first control in the dialog box |
61243a51 DW |
3278 | // |
3279 | return (MRESULT)TRUE; | |
cdf1e714 DW |
3280 | } |
3281 | else | |
3282 | { | |
61243a51 DW |
3283 | // |
3284 | // For all the other ones, FALSE means that we didn't process the | |
cdf1e714 | 3285 | // message |
61243a51 DW |
3286 | // |
3287 | return (MRESULT)0; | |
cdf1e714 | 3288 | } |
61243a51 | 3289 | } // end of wxDlgProc |
a4a16252 | 3290 | #endif |
cdf1e714 | 3291 | |
61243a51 DW |
3292 | wxWindow* wxFindWinFromHandle( |
3293 | WXHWND hWnd | |
3294 | ) | |
cdf1e714 | 3295 | { |
61243a51 DW |
3296 | wxNode* pNode = wxWinHandleList->Find((long)hWnd); |
3297 | ||
3298 | if (!pNode) | |
cdf1e714 | 3299 | return NULL; |
61243a51 DW |
3300 | return (wxWindow *)pNode->Data(); |
3301 | } // end of wxFindWinFromHandle | |
cdf1e714 | 3302 | |
61243a51 DW |
3303 | void wxAssociateWinWithHandle( |
3304 | HWND hWnd | |
19193a2c | 3305 | , wxWindowOS2* pWin |
61243a51 | 3306 | ) |
cdf1e714 | 3307 | { |
61243a51 DW |
3308 | // |
3309 | // Adding NULL hWnd is (first) surely a result of an error and | |
cdf1e714 | 3310 | // (secondly) breaks menu command processing |
61243a51 | 3311 | // |
cdf1e714 DW |
3312 | wxCHECK_RET( hWnd != (HWND)NULL, |
3313 | wxT("attempt to add a NULL hWnd to window list ignored") ); | |
3314 | ||
3315 | ||
61243a51 DW |
3316 | wxWindow* pOldWin = wxFindWinFromHandle((WXHWND) hWnd); |
3317 | ||
3318 | if (pOldWin && (pOldWin != pWin)) | |
cdf1e714 | 3319 | { |
61243a51 DW |
3320 | wxString str(pWin->GetClassInfo()->GetClassName()); |
3321 | wxLogError( "Bug! Found existing HWND %X for new window of class %s" | |
3322 | ,(int)hWnd | |
3323 | ,(const char*)str | |
3324 | ); | |
cdf1e714 | 3325 | } |
61243a51 | 3326 | else if (!pOldWin) |
cdf1e714 | 3327 | { |
61243a51 DW |
3328 | wxWinHandleList->Append( (long)hWnd |
3329 | ,pWin | |
3330 | ); | |
cdf1e714 | 3331 | } |
61243a51 | 3332 | } // end of wxAssociateWinWithHandle |
cdf1e714 | 3333 | |
61243a51 | 3334 | void wxRemoveHandleAssociation( |
19193a2c | 3335 | wxWindowOS2* pWin |
61243a51 | 3336 | ) |
cdf1e714 | 3337 | { |
61243a51 DW |
3338 | wxWinHandleList->DeleteObject(pWin); |
3339 | } // end of wxRemoveHandleAssociation | |
cdf1e714 | 3340 | |
61243a51 | 3341 | // |
cdf1e714 DW |
3342 | // Default destroyer - override if you destroy it in some other way |
3343 | // (e.g. with MDI child windows) | |
61243a51 | 3344 | // |
0367c1c0 | 3345 | void wxWindowOS2::OS2DestroyWindow() |
cdf1e714 DW |
3346 | { |
3347 | } | |
3348 | ||
f9efbe3a DW |
3349 | bool wxWindowOS2::OS2GetCreateWindowCoords( |
3350 | const wxPoint& rPos | |
3351 | , const wxSize& rSize | |
3352 | , int& rnX | |
3353 | , int& rnY | |
3354 | , int& rnWidth | |
3355 | , int& rnHeight | |
3356 | ) const | |
3357 | { | |
3358 | bool bNonDefault = FALSE; | |
d697657f DW |
3359 | static const int DEFAULT_Y = 200; |
3360 | static const int DEFAULT_H = 250; | |
f9efbe3a DW |
3361 | |
3362 | if (rPos.x == -1) | |
3363 | { | |
f9efbe3a DW |
3364 | rnX = rnY = CW_USEDEFAULT; |
3365 | } | |
3366 | else | |
3367 | { | |
3368 | rnX = rPos.x; | |
d697657f | 3369 | rnY = rPos.y == -1 ? DEFAULT_Y : rPos.y; |
f9efbe3a DW |
3370 | bNonDefault = TRUE; |
3371 | } | |
3372 | if (rSize.x == -1) | |
3373 | { | |
f9efbe3a DW |
3374 | rnWidth = rnHeight = CW_USEDEFAULT; |
3375 | } | |
3376 | else | |
3377 | { | |
3378 | rnWidth = rSize.x; | |
d697657f | 3379 | rnHeight = rSize.y == -1 ? DEFAULT_H : rSize.y; |
f9efbe3a DW |
3380 | bNonDefault = TRUE; |
3381 | } | |
3382 | return bNonDefault; | |
3383 | } // end of wxWindowOS2::OS2GetCreateWindowCoords | |
3384 | ||
6ed98c6a DW |
3385 | WXHWND wxWindowOS2::OS2GetParent() const |
3386 | { | |
3387 | return m_parent ? m_parent->GetHWND() : NULL; | |
3388 | } | |
3389 | ||
0367c1c0 | 3390 | bool wxWindowOS2::OS2Create( |
5d44b24e DW |
3391 | PSZ zClass |
3392 | , const char* zTitle | |
61243a51 | 3393 | , WXDWORD dwStyle |
5d44b24e DW |
3394 | , const wxPoint& rPos |
3395 | , const wxSize& rSize | |
f23208ca | 3396 | , void* pCtlData |
008089f6 | 3397 | , WXDWORD dwExStyle |
5d44b24e | 3398 | , bool bIsChild |
61243a51 DW |
3399 | ) |
3400 | { | |
914589c2 DW |
3401 | ERRORID vError; |
3402 | wxString sError; | |
5d44b24e DW |
3403 | int nX = 0L; |
3404 | int nY = 0L; | |
3405 | int nWidth = 0L; | |
3406 | int nHeight = 0L; | |
3407 | wxWindow* pParent = GetParent(); | |
3408 | HWND hWnd = NULLHANDLE; | |
3409 | HWND hParent; | |
3410 | long lControlId = 0L; | |
3411 | wxWindowCreationHook vHook(this); | |
3412 | wxString sClassName((wxChar*)zClass); | |
3413 | ||
3414 | OS2GetCreateWindowCoords( rPos | |
3415 | ,rSize | |
3416 | ,nX | |
3417 | ,nY | |
3418 | ,nWidth | |
3419 | ,nHeight | |
3420 | ); | |
3421 | ||
5d44b24e | 3422 | if (bIsChild) |
cdf1e714 | 3423 | { |
5d44b24e DW |
3424 | lControlId = GetId(); |
3425 | if (GetWindowStyleFlag() & wxCLIP_SIBLINGS) | |
cdf1e714 | 3426 | { |
5d44b24e | 3427 | dwStyle |= WS_CLIPSIBLINGS; |
cdf1e714 DW |
3428 | } |
3429 | } | |
cd212ee4 | 3430 | // |
5d44b24e DW |
3431 | // For each class "Foo" we have we also have "FooNR" ("no repaint") class |
3432 | // which is the same but without CS_[HV]REDRAW class styles so using it | |
3433 | // ensures that the window is not fully repainted on each resize | |
e604d44b | 3434 | // |
5d44b24e | 3435 | if (GetWindowStyleFlag() & wxNO_FULL_REPAINT_ON_RESIZE) |
51c1d535 | 3436 | { |
5d44b24e DW |
3437 | sClassName += wxT("NR"); |
3438 | } | |
6ed98c6a DW |
3439 | m_hWnd = (WXHWND)::WinCreateWindow( (HWND)OS2GetParent() |
3440 | ,(PSZ)sClassName.c_str() | |
3441 | ,(PSZ)zTitle ? zTitle : "" | |
3442 | ,(ULONG)dwStyle | |
3443 | ,(LONG)0L | |
3444 | ,(LONG)0L | |
3445 | ,(LONG)0L | |
3446 | ,(LONG)0L | |
3447 | ,NULLHANDLE | |
3448 | ,HWND_TOP | |
3449 | ,(ULONG)lControlId | |
3450 | ,pCtlData | |
3451 | ,NULL | |
3452 | ); | |
5d44b24e DW |
3453 | if (!m_hWnd) |
3454 | { | |
3455 | vError = ::WinGetLastError(wxGetInstance()); | |
3456 | sError = wxPMErrorToStr(vError); | |
3457 | return FALSE; | |
51c1d535 | 3458 | } |
5d44b24e | 3459 | SubclassWin(m_hWnd); |
a756f210 | 3460 | SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT)); |
4a46a5df DW |
3461 | |
3462 | m_backgroundColour.Set(wxString("GREY")); | |
3463 | ||
3464 | LONG lColor = (LONG)m_backgroundColour.GetPixel(); | |
3465 | ||
3466 | if (!::WinSetPresParam( m_hWnd | |
3467 | ,PP_BACKGROUNDCOLOR | |
3468 | ,sizeof(LONG) | |
3469 | ,(PVOID)&lColor | |
3470 | )) | |
3471 | { | |
3472 | vError = ::WinGetLastError(vHabmain); | |
3473 | sError = wxPMErrorToStr(vError); | |
3474 | wxLogError("Error creating frame. Error: %s\n", sError); | |
3475 | return FALSE; | |
3476 | } | |
5d44b24e DW |
3477 | SetSize( nX |
3478 | ,nY | |
3479 | ,nWidth | |
3480 | ,nHeight | |
3481 | ); | |
cdf1e714 | 3482 | return TRUE; |
5d44b24e | 3483 | } // end of WinGuiBase_Window::OS2Create |
cdf1e714 DW |
3484 | |
3485 | // =========================================================================== | |
3486 | // OS2 PM message handlers | |
3487 | // =========================================================================== | |
3488 | ||
3489 | // --------------------------------------------------------------------------- | |
61243a51 | 3490 | // window creation/destruction |
cdf1e714 DW |
3491 | // --------------------------------------------------------------------------- |
3492 | ||
0367c1c0 | 3493 | bool wxWindowOS2::HandleCreate( |
19193a2c | 3494 | WXLPCREATESTRUCT WXUNUSED(vCs) |
61243a51 DW |
3495 | , bool* pbMayCreate |
3496 | ) | |
cdf1e714 | 3497 | { |
19193a2c | 3498 | wxWindowCreateEvent vEvent((wxWindow*)this); |
cdf1e714 | 3499 | |
61243a51 DW |
3500 | (void)GetEventHandler()->ProcessEvent(vEvent); |
3501 | *pbMayCreate = TRUE; | |
cdf1e714 | 3502 | return TRUE; |
0367c1c0 | 3503 | } // end of wxWindowOS2::HandleCreate |
cdf1e714 | 3504 | |
0367c1c0 | 3505 | bool wxWindowOS2::HandleDestroy() |
cdf1e714 | 3506 | { |
19193a2c | 3507 | wxWindowDestroyEvent vEvent((wxWindow*)this); |
cdf1e714 | 3508 | |
61243a51 DW |
3509 | (void)GetEventHandler()->ProcessEvent(vEvent); |
3510 | ||
3511 | // | |
3512 | // Delete our drop target if we've got one | |
3513 | // | |
cdf1e714 | 3514 | #if wxUSE_DRAG_AND_DROP |
61243a51 | 3515 | if (m_dropTarget != NULL) |
cdf1e714 | 3516 | { |
61243a51 | 3517 | m_dropTarget->Revoke(m_hWnd); |
cdf1e714 DW |
3518 | delete m_dropTarget; |
3519 | m_dropTarget = NULL; | |
3520 | } | |
3521 | #endif // wxUSE_DRAG_AND_DROP | |
3522 | ||
61243a51 | 3523 | // |
cdf1e714 | 3524 | // WM_DESTROY handled |
61243a51 | 3525 | // |
cdf1e714 | 3526 | return TRUE; |
0367c1c0 | 3527 | } // end of wxWindowOS2::HandleDestroy |
cdf1e714 DW |
3528 | |
3529 | // --------------------------------------------------------------------------- | |
3530 | // activation/focus | |
3531 | // --------------------------------------------------------------------------- | |
0367c1c0 | 3532 | void wxWindowOS2::OnSetFocus( |
61243a51 DW |
3533 | wxFocusEvent& rEvent |
3534 | ) | |
cdf1e714 | 3535 | { |
61243a51 | 3536 | rEvent.Skip(); |
0367c1c0 | 3537 | } // end of wxWindowOS2::OnSetFocus |
61243a51 | 3538 | |
0367c1c0 | 3539 | bool wxWindowOS2::HandleActivate( |
61243a51 DW |
3540 | int nState |
3541 | , WXHWND WXUNUSED(hActivate) | |
3542 | ) | |
3543 | { | |
3544 | wxActivateEvent vEvent( wxEVT_ACTIVATE | |
3545 | ,(bool)nState | |
3546 | ,m_windowId | |
3547 | ); | |
3548 | vEvent.SetEventObject(this); | |
3549 | return GetEventHandler()->ProcessEvent(vEvent); | |
0367c1c0 | 3550 | } // end of wxWindowOS2::HandleActivate |
61243a51 | 3551 | |
0367c1c0 | 3552 | bool wxWindowOS2::HandleSetFocus( |
61243a51 DW |
3553 | WXHWND WXUNUSED(hWnd) |
3554 | ) | |
cdf1e714 | 3555 | { |
54ffa107 DW |
3556 | // |
3557 | // Notify the parent keeping track of focus for the kbd navigation | |
3558 | // purposes that we got it | |
3559 | // | |
3560 | wxChildFocusEvent vEventFocus((wxWindow *)this); | |
3561 | (void)GetEventHandler()->ProcessEvent(vEventFocus); | |
3562 | ||
cdf1e714 | 3563 | #if wxUSE_CARET |
61243a51 | 3564 | // |
cdf1e714 | 3565 | // Deal with caret |
61243a51 DW |
3566 | // |
3567 | if (m_caret) | |
cdf1e714 DW |
3568 | { |
3569 | m_caret->OnSetFocus(); | |
3570 | } | |
3571 | #endif // wxUSE_CARET | |
3572 | ||
1bcfc0e1 DW |
3573 | #if wxUSE_TEXTCTRL |
3574 | // If it's a wxTextCtrl don't send the event as it will be done | |
3575 | // after the control gets to process it from EN_FOCUS handler | |
3576 | if ( wxDynamicCastThis(wxTextCtrl) ) | |
cdf1e714 | 3577 | { |
1bcfc0e1 | 3578 | return FALSE; |
cdf1e714 | 3579 | } |
1bcfc0e1 | 3580 | #endif // wxUSE_TEXTCTRL |
cdf1e714 | 3581 | |
61243a51 | 3582 | wxFocusEvent vEvent(wxEVT_SET_FOCUS, m_windowId); |
cdf1e714 | 3583 | |
61243a51 DW |
3584 | vEvent.SetEventObject(this); |
3585 | return GetEventHandler()->ProcessEvent(vEvent); | |
0367c1c0 | 3586 | } // end of wxWindowOS2::HandleSetFocus |
cdf1e714 | 3587 | |
0367c1c0 | 3588 | bool wxWindowOS2::HandleKillFocus( |
a23692f0 | 3589 | WXHWND hWnd |
61243a51 | 3590 | ) |
cdf1e714 DW |
3591 | { |
3592 | #if wxUSE_CARET | |
61243a51 | 3593 | // |
cdf1e714 | 3594 | // Deal with caret |
61243a51 DW |
3595 | // |
3596 | if (m_caret) | |
cdf1e714 DW |
3597 | { |
3598 | m_caret->OnKillFocus(); | |
3599 | } | |
3600 | #endif // wxUSE_CARET | |
3601 | ||
a23692f0 | 3602 | #if wxUSE_TEXTCTRL |
f289196b | 3603 | // |
a23692f0 DW |
3604 | // If it's a wxTextCtrl don't send the event as it will be done |
3605 | // after the control gets to process it. | |
3606 | // | |
3607 | wxTextCtrl* pCtrl = wxDynamicCastThis(wxTextCtrl); | |
3608 | ||
3609 | if (pCtrl) | |
3610 | { | |
3611 | return FALSE; | |
3612 | } | |
3613 | #endif | |
3614 | ||
f289196b | 3615 | // |
a23692f0 DW |
3616 | // Don't send the event when in the process of being deleted. This can |
3617 | // only cause problems if the event handler tries to access the object. | |
3618 | // | |
3619 | if ( m_isBeingDeleted ) | |
3620 | { | |
3621 | return FALSE; | |
3622 | } | |
3623 | ||
61243a51 DW |
3624 | wxFocusEvent vEvent( wxEVT_KILL_FOCUS |
3625 | ,m_windowId | |
3626 | ); | |
cdf1e714 | 3627 | |
61243a51 | 3628 | vEvent.SetEventObject(this); |
a23692f0 | 3629 | |
f289196b | 3630 | // |
a23692f0 DW |
3631 | // wxFindWinFromHandle() may return NULL, it is ok |
3632 | // | |
3633 | vEvent.SetWindow(wxFindWinFromHandle(hWnd)); | |
61243a51 | 3634 | return GetEventHandler()->ProcessEvent(vEvent); |
0367c1c0 | 3635 | } // end of wxWindowOS2::HandleKillFocus |
cdf1e714 DW |
3636 | |
3637 | // --------------------------------------------------------------------------- | |
3638 | // miscellaneous | |
3639 | // --------------------------------------------------------------------------- | |
3640 | ||
0367c1c0 | 3641 | bool wxWindowOS2::HandleShow( |
61243a51 | 3642 | bool bShow |
19193a2c | 3643 | , int WXUNUSED(nStatus) |
61243a51 | 3644 | ) |
cdf1e714 | 3645 | { |
19193a2c | 3646 | wxShowEvent vEvent(GetId(), bShow); |
cdf1e714 | 3647 | |
61243a51 DW |
3648 | vEvent.m_eventObject = this; |
3649 | return GetEventHandler()->ProcessEvent(vEvent); | |
0367c1c0 | 3650 | } // end of wxWindowOS2::HandleShow |
cdf1e714 | 3651 | |
0367c1c0 | 3652 | bool wxWindowOS2::HandleInitDialog( |
61243a51 DW |
3653 | WXHWND WXUNUSED(hWndFocus) |
3654 | ) | |
cdf1e714 | 3655 | { |
61243a51 | 3656 | wxInitDialogEvent vEvent(GetId()); |
cdf1e714 | 3657 | |
61243a51 DW |
3658 | vEvent.m_eventObject = this; |
3659 | return GetEventHandler()->ProcessEvent(vEvent); | |
0367c1c0 | 3660 | } // end of wxWindowOS2::HandleInitDialog |
cdf1e714 | 3661 | |
19193a2c | 3662 | bool wxWindowOS2::HandleEndDrag(WXWPARAM WXUNUSED(wParam)) |
cdf1e714 | 3663 | { |
61243a51 | 3664 | // TODO: We'll handle drag and drop later |
cdf1e714 DW |
3665 | return FALSE; |
3666 | } | |
3667 | ||
0367c1c0 | 3668 | bool wxWindowOS2::HandleSetCursor( |
19193a2c | 3669 | USHORT WXUNUSED(vId) |
61243a51 DW |
3670 | , WXHWND hPointer |
3671 | ) | |
cdf1e714 | 3672 | { |
61243a51 DW |
3673 | // |
3674 | // Under OS/2 PM this allows the pointer to be changed | |
3675 | // as it passes over a control | |
3676 | // | |
3677 | ::WinSetPointer(HWND_DESKTOP, (HPOINTER)hPointer); | |
3678 | return TRUE; | |
0367c1c0 | 3679 | } // end of wxWindowOS2::HandleSetCursor |
cdf1e714 DW |
3680 | |
3681 | // --------------------------------------------------------------------------- | |
3682 | // owner drawn stuff | |
3683 | // --------------------------------------------------------------------------- | |
0367c1c0 | 3684 | bool wxWindowOS2::OS2OnDrawItem( |
61243a51 DW |
3685 | int vId |
3686 | , WXDRAWITEMSTRUCT* pItemStruct | |
3687 | ) | |
cdf1e714 | 3688 | { |
19193a2c | 3689 | #if wxUSE_OWNER_DRAWN |
402e2f7c | 3690 | wxDC vDc; |
61243a51 | 3691 | |
19193a2c | 3692 | #if wxUSE_MENUS_NATIVE |
61243a51 | 3693 | // |
402e2f7c | 3694 | // Is it a menu item? |
61243a51 | 3695 | // |
402e2f7c DW |
3696 | if (vId == 0) |
3697 | { | |
5afb9458 DW |
3698 | ERRORID vError; |
3699 | wxString sError; | |
402e2f7c | 3700 | POWNERITEM pMeasureStruct = (POWNERITEM)pItemStruct; |
23122f8c DW |
3701 | wxFrame* pFrame = (wxFrame*)this; |
3702 | wxMenuItem* pMenuItem = pFrame->GetMenuBar()->FindItem(pMeasureStruct->idItem, pMeasureStruct->hItem); | |
402e2f7c | 3703 | HDC hDC = ::GpiQueryDevice(pMeasureStruct->hps); |
23122f8c DW |
3704 | wxRect vRect( pMeasureStruct->rclItem.xLeft |
3705 | ,pMeasureStruct->rclItem.yBottom | |
3706 | ,pMeasureStruct->rclItem.xRight - pMeasureStruct->rclItem.xLeft | |
3707 | ,pMeasureStruct->rclItem.yTop - pMeasureStruct->rclItem.yBottom | |
3708 | ); | |
402e2f7c DW |
3709 | vDc.SetHDC( hDC |
3710 | ,FALSE | |
3711 | ); | |
3712 | vDc.SetHPS(pMeasureStruct->hps); | |
5afb9458 DW |
3713 | // |
3714 | // Load the wxWindows Pallete and set to RGB mode | |
3715 | // | |
3716 | if (!::GpiCreateLogColorTable( pMeasureStruct->hps | |
3717 | ,0L | |
3718 | ,LCOLF_CONSECRGB | |
3719 | ,0L | |
3720 | ,(LONG)wxTheColourDatabase->m_nSize | |
3721 | ,(PLONG)wxTheColourDatabase->m_palTable | |
3722 | )) | |
3723 | { | |
3724 | vError = ::WinGetLastError(vHabmain); | |
3725 | sError = wxPMErrorToStr(vError); | |
3726 | wxLogError("Unable to set current color table. Error: %s\n", sError); | |
3727 | } | |
3728 | // | |
3729 | // Set the color table to RGB mode | |
3730 | // | |
3731 | if (!::GpiCreateLogColorTable( pMeasureStruct->hps | |
3732 | ,0L | |
3733 | ,LCOLF_RGB | |
3734 | ,0L | |
3735 | ,0L | |
3736 | ,NULL | |
3737 | )) | |
3738 | { | |
3739 | vError = ::WinGetLastError(vHabmain); | |
3740 | sError = wxPMErrorToStr(vError); | |
3741 | wxLogError("Unable to set current color table. Error: %s\n", sError); | |
3742 | } | |
cdf1e714 | 3743 | |
23122f8c DW |
3744 | wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE ); |
3745 | ||
3746 | ||
3747 | int eAction = 0; | |
3748 | int eStatus = 0; | |
cdf1e714 | 3749 | |
402e2f7c | 3750 | if (pMeasureStruct->fsAttribute == pMeasureStruct->fsAttributeOld) |
23122f8c DW |
3751 | { |
3752 | // | |
3753 | // Entire Item needs to be redrawn (either it has reappeared from | |
3754 | // behind another window or is being displayed for the first time | |
3755 | // | |
402e2f7c | 3756 | eAction = wxOwnerDrawn::wxODDrawAll; |
23122f8c DW |
3757 | |
3758 | if (pMeasureStruct->fsAttribute & MIA_HILITED) | |
3759 | { | |
3760 | // | |
3761 | // If it is currently selected we let the system handle it | |
3762 | // | |
3763 | eStatus |= wxOwnerDrawn::wxODSelected; | |
3764 | } | |
3765 | if (pMeasureStruct->fsAttribute & MIA_CHECKED) | |
3766 | { | |
3767 | // | |
3768 | // If it is currently checked we draw our own | |
3769 | // | |
3770 | eStatus |= wxOwnerDrawn::wxODChecked; | |
3771 | pMeasureStruct->fsAttributeOld = pMeasureStruct->fsAttribute &= ~MIA_CHECKED; | |
3772 | } | |
3773 | if (pMeasureStruct->fsAttribute & MIA_DISABLED) | |
3774 | { | |
3775 | // | |
3776 | // If it is currently disabled we let the system handle it | |
3777 | // | |
3778 | eStatus |= wxOwnerDrawn::wxODDisabled; | |
3779 | } | |
3780 | // | |
3781 | // Don't really care about framed (indicationg focus) or NoDismiss | |
3782 | // | |
3783 | } | |
402e2f7c | 3784 | else |
23122f8c | 3785 | { |
5afb9458 DW |
3786 | if (pMeasureStruct->fsAttribute & MIA_HILITED) |
3787 | { | |
3788 | eAction = wxOwnerDrawn::wxODDrawAll; | |
3789 | eStatus |= wxOwnerDrawn::wxODSelected; | |
3790 | // | |
3791 | // Keep the system from trying to highlight with its bogus colors | |
3792 | // | |
3793 | pMeasureStruct->fsAttributeOld = pMeasureStruct->fsAttribute &= ~MIA_HILITED; | |
3794 | } | |
3795 | else if (!(pMeasureStruct->fsAttribute & MIA_HILITED)) | |
3796 | { | |
3797 | eAction = wxOwnerDrawn::wxODDrawAll; | |
3798 | eStatus = 0; | |
3799 | // | |
3800 | // Keep the system from trying to highlight with its bogus colors | |
3801 | // | |
3802 | pMeasureStruct->fsAttribute = pMeasureStruct->fsAttributeOld &= ~MIA_HILITED; | |
3803 | } | |
3804 | else | |
3805 | { | |
3806 | // | |
3807 | // For now we don't care about anything else | |
3808 | // just ignore the entire message! | |
3809 | // | |
3810 | return TRUE; | |
3811 | } | |
23122f8c DW |
3812 | } |
3813 | // | |
3814 | // Now redraw the item | |
3815 | // | |
45bedfdd DW |
3816 | return(pMenuItem->OnDrawItem( vDc |
3817 | ,vRect | |
23122f8c DW |
3818 | ,(wxOwnerDrawn::wxODAction)eAction |
3819 | ,(wxOwnerDrawn::wxODStatus)eStatus | |
45bedfdd | 3820 | )); |
402e2f7c DW |
3821 | // |
3822 | // leave the fsAttribute and fsOldAttribute unchanged. If different, | |
3823 | // the system will do the highlight or fraeming or disabling for us, | |
3824 | // otherwise, we'd have to do it ourselves. | |
61243a51 | 3825 | // |
cdf1e714 | 3826 | } |
19193a2c | 3827 | #endif // wxUSE_MENUS_NATIVE |
cdf1e714 | 3828 | |
402e2f7c DW |
3829 | wxWindow* pItem = FindItem(vId); |
3830 | ||
3831 | if (pItem && pItem->IsKindOf(CLASSINFO(wxControl))) | |
3832 | { | |
3833 | return ((wxControl *)pItem)->OS2OnDraw(pItemStruct); | |
3834 | } | |
19193a2c KB |
3835 | #else |
3836 | vId = vId; | |
3837 | pItemStruct = pItemStruct; | |
61243a51 | 3838 | #endif |
402e2f7c | 3839 | return FALSE; |
0367c1c0 | 3840 | } // end of wxWindowOS2::OS2OnDrawItem |
cdf1e714 | 3841 | |
f5ea767e | 3842 | long wxWindowOS2::OS2OnMeasureItem( |
402e2f7c DW |
3843 | int lId |
3844 | , WXMEASUREITEMSTRUCT* pItemStruct | |
3845 | ) | |
0e320a79 | 3846 | { |
19193a2c | 3847 | #if wxUSE_OWNER_DRAWN |
402e2f7c DW |
3848 | // |
3849 | // Is it a menu item? | |
3850 | // | |
45bedfdd | 3851 | if (lId == 65536) // I really don't like this...has to be a better indicator |
cdf1e714 | 3852 | { |
4049cc1c | 3853 | if (IsKindOf(CLASSINFO(wxFrame))) // we'll assume if Frame then a menu |
45bedfdd | 3854 | { |
4049cc1c DW |
3855 | size_t nWidth; |
3856 | size_t nHeight; | |
3857 | POWNERITEM pMeasureStruct = (POWNERITEM)pItemStruct; | |
45bedfdd DW |
3858 | wxFrame* pFrame = (wxFrame*)this; |
3859 | wxMenuItem* pMenuItem = pFrame->GetMenuBar()->FindItem(pMeasureStruct->idItem, pMeasureStruct->hItem); | |
cdf1e714 | 3860 | |
45bedfdd | 3861 | wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE ); |
4049cc1c DW |
3862 | nWidth = 0L; |
3863 | nHeight = 0L; | |
3864 | if (pMenuItem->OnMeasureItem( &nWidth | |
3865 | ,&nHeight | |
3866 | )) | |
3867 | { | |
f5ea767e DW |
3868 | MRESULT mRc; |
3869 | ||
4049cc1c DW |
3870 | pMeasureStruct->rclItem.xRight = nWidth; |
3871 | pMeasureStruct->rclItem.xLeft = 0L; | |
3872 | pMeasureStruct->rclItem.yTop = nHeight; | |
3873 | pMeasureStruct->rclItem.yBottom = 0L; | |
f5ea767e DW |
3874 | mRc = MRFROM2SHORT(nHeight, nWidth); |
3875 | return LONGFROMMR(mRc); | |
4049cc1c | 3876 | } |
f5ea767e | 3877 | return 0L; |
45bedfdd | 3878 | } |
cdf1e714 | 3879 | } |
f15b4952 | 3880 | wxWindow* pItem = FindItem(lId); |
cdf1e714 | 3881 | |
402e2f7c | 3882 | if (pItem && pItem->IsKindOf(CLASSINFO(wxControl))) |
cdf1e714 | 3883 | { |
1de4baa3 DW |
3884 | OWNERITEM vItem; |
3885 | ||
3886 | vItem.idItem = (LONG)pItemStruct; | |
3887 | return ((wxControl *)pItem)->OS2OnMeasure((WXMEASUREITEMSTRUCT*)&vItem); | |
cdf1e714 | 3888 | } |
19193a2c KB |
3889 | #else |
3890 | lId = lId; | |
3891 | pItemStruct = pItemStruct; | |
3892 | #endif // wxUSE_OWNER_DRAWN | |
cdf1e714 | 3893 | return FALSE; |
0e320a79 DW |
3894 | } |
3895 | ||
cdf1e714 DW |
3896 | // --------------------------------------------------------------------------- |
3897 | // colours and palettes | |
3898 | // --------------------------------------------------------------------------- | |
849949b1 | 3899 | |
0367c1c0 | 3900 | bool wxWindowOS2::HandleSysColorChange() |
0e320a79 | 3901 | { |
61243a51 | 3902 | wxSysColourChangedEvent vEvent; |
cdf1e714 | 3903 | |
61243a51 DW |
3904 | vEvent.SetEventObject(this); |
3905 | return GetEventHandler()->ProcessEvent(vEvent); | |
0367c1c0 | 3906 | } // end of wxWindowOS2::HandleSysColorChange |
0e320a79 | 3907 | |
0367c1c0 | 3908 | bool wxWindowOS2::HandleCtlColor( |
19193a2c | 3909 | WXHBRUSH* WXUNUSED(phBrush) |
61243a51 | 3910 | ) |
0e320a79 | 3911 | { |
61243a51 DW |
3912 | // |
3913 | // Not much provided with message. So not sure I can do anything with it | |
3914 | // | |
3915 | return TRUE; | |
0367c1c0 | 3916 | } // end of wxWindowOS2::HandleCtlColor |
cdf1e714 | 3917 | |
0e320a79 | 3918 | |
cdf1e714 | 3919 | // Define for each class of dialog and control |
19193a2c KB |
3920 | WXHBRUSH wxWindowOS2::OnCtlColor(WXHDC WXUNUSED(hDC), |
3921 | WXHWND WXUNUSED(hWnd), | |
3922 | WXUINT WXUNUSED(nCtlColor), | |
3923 | WXUINT WXUNUSED(message), | |
3924 | WXWPARAM WXUNUSED(wParam), | |
3925 | WXLPARAM WXUNUSED(lParam)) | |
0e320a79 | 3926 | { |
cdf1e714 | 3927 | return (WXHBRUSH)0; |
0e320a79 DW |
3928 | } |
3929 | ||
0367c1c0 | 3930 | bool wxWindowOS2::HandlePaletteChanged() |
0e320a79 | 3931 | { |
61243a51 DW |
3932 | // need to set this to something first |
3933 | WXHWND hWndPalChange = NULLHANDLE; | |
cdf1e714 | 3934 | |
61243a51 DW |
3935 | wxPaletteChangedEvent vEvent(GetId()); |
3936 | ||
3937 | vEvent.SetEventObject(this); | |
3938 | vEvent.SetChangedWindow(wxFindWinFromHandle(hWndPalChange)); | |
0e320a79 | 3939 | |
61243a51 | 3940 | return GetEventHandler()->ProcessEvent(vEvent); |
0367c1c0 | 3941 | } // end of wxWindowOS2::HandlePaletteChanged |
61243a51 | 3942 | |
61243a51 | 3943 | // |
cdf1e714 | 3944 | // Responds to colour changes: passes event on to children. |
61243a51 | 3945 | // |
0367c1c0 | 3946 | void wxWindowOS2::OnSysColourChanged( |
61243a51 DW |
3947 | wxSysColourChangedEvent& rEvent |
3948 | ) | |
0e320a79 | 3949 | { |
61243a51 DW |
3950 | wxNode* pNode = GetChildren().First(); |
3951 | ||
3952 | while (pNode) | |
cdf1e714 | 3953 | { |
61243a51 | 3954 | // |
cdf1e714 | 3955 | // Only propagate to non-top-level windows |
61243a51 DW |
3956 | // |
3957 | wxWindow* pWin = (wxWindow *)pNode->Data(); | |
3958 | ||
3959 | if (pWin->GetParent()) | |
cdf1e714 | 3960 | { |
61243a51 | 3961 | wxSysColourChangedEvent vEvent; |
cdf1e714 | 3962 | |
61243a51 DW |
3963 | rEvent.m_eventObject = pWin; |
3964 | pWin->GetEventHandler()->ProcessEvent(vEvent); | |
3965 | } | |
3966 | pNode = pNode->Next(); | |
cdf1e714 | 3967 | } |
0367c1c0 | 3968 | } // end of wxWindowOS2::OnSysColourChanged |
0e320a79 | 3969 | |
cdf1e714 DW |
3970 | // --------------------------------------------------------------------------- |
3971 | // painting | |
3972 | // --------------------------------------------------------------------------- | |
3973 | ||
0367c1c0 | 3974 | bool wxWindowOS2::HandlePaint() |
0e320a79 | 3975 | { |
19193a2c KB |
3976 | HRGN hRgn; |
3977 | wxPaintEvent vEvent(m_windowId); | |
40bd6154 DW |
3978 | HPS hPS; |
3979 | RECTL vRect; | |
19193a2c KB |
3980 | bool bProcessed; |
3981 | ||
3982 | // Create empty region | |
3983 | // TODO: get HPS somewhere else if possible | |
3984 | hPS = ::WinGetPS(GetHwnd()); | |
3985 | hRgn = ::GpiCreateRegion(hPS, 0, NULL); | |
61243a51 | 3986 | |
19193a2c | 3987 | if (::WinQueryUpdateRegion(GetHwnd(), hRgn) == RGN_ERROR) |
61243a51 DW |
3988 | { |
3989 | wxLogLastError("CreateRectRgn"); | |
3990 | return FALSE; | |
3991 | } | |
7e99520b | 3992 | |
19193a2c KB |
3993 | m_updateRegion = wxRegion(hRgn, hPS); |
3994 | ||
61243a51 | 3995 | vEvent.SetEventObject(this); |
19193a2c KB |
3996 | bProcessed = GetEventHandler()->ProcessEvent(vEvent); |
3997 | ||
524d72c4 DW |
3998 | if (!bProcessed && |
3999 | IsKindOf(CLASSINFO(wxPanel)) && | |
4000 | GetChildren().GetCount() == 0 | |
4001 | ) | |
4002 | { | |
4003 | // | |
4004 | // OS/2 needs to process this right here, not by the default proc | |
f289196b DW |
4005 | // Window's default proc correctly paints everything, OS/2 does not. |
4006 | // For decorative panels that typically have no children, we draw | |
4007 | // borders. | |
524d72c4 DW |
4008 | // |
4009 | HPS hPS; | |
4010 | RECTL vRect; | |
4011 | wxFrame* pFrame; | |
4012 | wxWindow* pParent; | |
4013 | ||
4014 | hPS = ::WinBeginPaint( GetHwnd() | |
4015 | ,NULLHANDLE | |
4016 | ,&vRect | |
4017 | ); | |
4018 | if(hPS) | |
4019 | { | |
4020 | ::GpiCreateLogColorTable( hPS | |
4021 | ,0L | |
4022 | ,LCOLF_CONSECRGB | |
4023 | ,0L | |
4024 | ,(LONG)wxTheColourDatabase->m_nSize | |
4025 | ,(PLONG)wxTheColourDatabase->m_palTable | |
4026 | ); | |
4027 | ::GpiCreateLogColorTable( hPS | |
4028 | ,0L | |
4029 | ,LCOLF_RGB | |
4030 | ,0L | |
4031 | ,0L | |
4032 | ,NULL | |
4033 | ); | |
1de4baa3 | 4034 | if (::WinIsWindowVisible(GetHWND())) |
f289196b | 4035 | ::WinFillRect(hPS, &vRect, GetBackgroundColour().GetPixel()); |
1de4baa3 DW |
4036 | if (m_dwExStyle) |
4037 | { | |
4038 | LINEBUNDLE vLineBundle; | |
4039 | ||
4040 | vLineBundle.lColor = 0x00000000; // Black | |
4041 | vLineBundle.usMixMode = FM_OVERPAINT; | |
4042 | vLineBundle.fxWidth = 1; | |
4043 | vLineBundle.lGeomWidth = 1; | |
4044 | vLineBundle.usType = LINETYPE_SOLID; | |
4045 | vLineBundle.usEnd = 0; | |
4046 | vLineBundle.usJoin = 0; | |
4047 | ::GpiSetAttrs( hPS | |
4048 | ,PRIM_LINE | |
4049 | ,LBB_COLOR | LBB_MIX_MODE | LBB_WIDTH | LBB_GEOM_WIDTH | LBB_TYPE | |
4050 | ,0L | |
4051 | ,&vLineBundle | |
4052 | ); | |
4053 | ::WinQueryWindowRect(GetHwnd(), &vRect); | |
4054 | wxDrawBorder( hPS | |
4055 | ,vRect | |
4056 | ,m_dwExStyle | |
4057 | ); | |
524d72c4 | 4058 | } |
524d72c4 | 4059 | } |
f289196b | 4060 | ::WinEndPaint(hPS); |
524d72c4 DW |
4061 | bProcessed = TRUE; |
4062 | } | |
f289196b DW |
4063 | else if (!bProcessed && |
4064 | IsKindOf(CLASSINFO(wxPanel)) | |
4065 | ) | |
4066 | { | |
4067 | // | |
4068 | // Panel with children, usually fills a frame client so no borders. | |
4069 | // | |
4070 | HPS hPS; | |
4071 | RECTL vRect; | |
4072 | wxFrame* pFrame; | |
4073 | wxWindow* pParent; | |
524d72c4 | 4074 | |
f289196b DW |
4075 | hPS = ::WinBeginPaint( GetHwnd() |
4076 | ,NULLHANDLE | |
4077 | ,&vRect | |
4078 | ); | |
4079 | if(hPS) | |
4080 | { | |
4081 | ::GpiCreateLogColorTable( hPS | |
4082 | ,0L | |
4083 | ,LCOLF_CONSECRGB | |
4084 | ,0L | |
4085 | ,(LONG)wxTheColourDatabase->m_nSize | |
4086 | ,(PLONG)wxTheColourDatabase->m_palTable | |
4087 | ); | |
4088 | ::GpiCreateLogColorTable( hPS | |
4089 | ,0L | |
4090 | ,LCOLF_RGB | |
4091 | ,0L | |
4092 | ,0L | |
4093 | ,NULL | |
4094 | ); | |
4095 | ||
1de4baa3 | 4096 | if (::WinIsWindowVisible(GetHWND())) |
f289196b DW |
4097 | ::WinFillRect(hPS, &vRect, GetBackgroundColour().GetPixel()); |
4098 | } | |
4099 | ::WinEndPaint(hPS); | |
4100 | bProcessed = TRUE; | |
4101 | } | |
524d72c4 | 4102 | return bProcessed; |
0367c1c0 | 4103 | } // end of wxWindowOS2::HandlePaint |
0e320a79 | 4104 | |
0367c1c0 | 4105 | bool wxWindowOS2::HandleEraseBkgnd( |
8d854fa9 DW |
4106 | WXHDC hDC |
4107 | ) | |
0e320a79 | 4108 | { |
8d854fa9 | 4109 | SWP vSwp; |
19193a2c | 4110 | bool rc; |
8d854fa9 DW |
4111 | |
4112 | ::WinQueryWindowPos(GetHwnd(), &vSwp); | |
4113 | if (vSwp.fl & SWP_MINIMIZE) | |
61243a51 | 4114 | return TRUE; |
cdf1e714 | 4115 | |
8d854fa9 DW |
4116 | wxDC vDC; |
4117 | ||
4118 | vDC.m_hPS = (HPS)hDC; // this is really a PS | |
19193a2c | 4119 | vDC.SetWindow((wxWindow*)this); |
8d854fa9 | 4120 | vDC.BeginDrawing(); |
cdf1e714 | 4121 | |
8d854fa9 DW |
4122 | wxEraseEvent vEvent(m_windowId, &vDC); |
4123 | ||
4124 | vEvent.SetEventObject(this); | |
cdf1e714 | 4125 | |
19193a2c | 4126 | rc = GetEventHandler()->ProcessEvent(vEvent); |
cdf1e714 | 4127 | |
8d854fa9 DW |
4128 | vDC.EndDrawing(); |
4129 | vDC.m_hPS = NULLHANDLE; | |
61243a51 | 4130 | return TRUE; |
0367c1c0 | 4131 | } // end of wxWindowOS2::HandleEraseBkgnd |
cdf1e714 | 4132 | |
0367c1c0 | 4133 | void wxWindowOS2::OnEraseBackground( |
61243a51 DW |
4134 | wxEraseEvent& rEvent |
4135 | ) | |
0e320a79 | 4136 | { |
8d854fa9 DW |
4137 | RECTL vRect; |
4138 | HPS hPS = rEvent.m_dc->m_hPS; | |
19193a2c KB |
4139 | APIRET rc; |
4140 | LONG lColor = m_backgroundColour.GetPixel(); | |
8d854fa9 | 4141 | |
19193a2c KB |
4142 | rc = ::WinQueryWindowRect(GetHwnd(), &vRect); |
4143 | rc = ::WinFillRect(hPS, &vRect, lColor); | |
0367c1c0 | 4144 | } // end of wxWindowOS2::OnEraseBackground |
0e320a79 | 4145 | |
cdf1e714 DW |
4146 | // --------------------------------------------------------------------------- |
4147 | // moving and resizing | |
4148 | // --------------------------------------------------------------------------- | |
0e320a79 | 4149 | |
0367c1c0 | 4150 | bool wxWindowOS2::HandleMinimize() |
0e320a79 | 4151 | { |
61243a51 | 4152 | wxIconizeEvent vEvent(m_windowId); |
cdf1e714 | 4153 | |
61243a51 DW |
4154 | vEvent.SetEventObject(this); |
4155 | return GetEventHandler()->ProcessEvent(vEvent); | |
0367c1c0 | 4156 | } // end of wxWindowOS2::HandleMinimize |
0e320a79 | 4157 | |
0367c1c0 | 4158 | bool wxWindowOS2::HandleMaximize() |
0e320a79 | 4159 | { |
61243a51 | 4160 | wxMaximizeEvent vEvent(m_windowId); |
cdf1e714 | 4161 | |
61243a51 DW |
4162 | vEvent.SetEventObject(this); |
4163 | return GetEventHandler()->ProcessEvent(vEvent); | |
0367c1c0 | 4164 | } // end of wxWindowOS2::HandleMaximize |
0e320a79 | 4165 | |
0367c1c0 | 4166 | bool wxWindowOS2::HandleMove( |
61243a51 DW |
4167 | int nX |
4168 | , int nY | |
4169 | ) | |
0e320a79 | 4170 | { |
19193a2c | 4171 | wxMoveEvent vEvent(wxPoint(nX, nY), m_windowId); |
cdf1e714 | 4172 | |
61243a51 DW |
4173 | vEvent.SetEventObject(this); |
4174 | return GetEventHandler()->ProcessEvent(vEvent); | |
0367c1c0 | 4175 | } // end of wxWindowOS2::HandleMove |
0e320a79 | 4176 | |
0367c1c0 | 4177 | bool wxWindowOS2::HandleSize( |
61243a51 DW |
4178 | int nWidth |
4179 | , int nHeight | |
4180 | , WXUINT WXUNUSED(nFlag) | |
4181 | ) | |
0e320a79 | 4182 | { |
19193a2c | 4183 | wxSizeEvent vEvent(wxSize(nWidth, nHeight), m_windowId); |
cdf1e714 | 4184 | |
61243a51 DW |
4185 | vEvent.SetEventObject(this); |
4186 | return GetEventHandler()->ProcessEvent(vEvent); | |
0367c1c0 | 4187 | } // end of wxWindowOS2::HandleSize |
0e320a79 | 4188 | |
0367c1c0 | 4189 | bool wxWindowOS2::HandleGetMinMaxInfo( |
61243a51 DW |
4190 | PSWP pSwp |
4191 | ) | |
0e320a79 | 4192 | { |
61243a51 DW |
4193 | bool bRc = FALSE; |
4194 | POINTL vPoint; | |
cdf1e714 | 4195 | |
61243a51 | 4196 | switch(pSwp->fl) |
cdf1e714 | 4197 | { |
61243a51 DW |
4198 | case SWP_MAXIMIZE: |
4199 | ::WinGetMaxPosition(GetHwnd(), pSwp); | |
4200 | m_maxWidth = pSwp->cx; | |
4201 | m_maxHeight = pSwp->cy; | |
4202 | break; | |
cdf1e714 | 4203 | |
61243a51 DW |
4204 | case SWP_MINIMIZE: |
4205 | ::WinGetMinPosition(GetHwnd(), pSwp, &vPoint); | |
4206 | m_minWidth = pSwp->cx; | |
4207 | m_minHeight = pSwp->cy; | |
4208 | break; | |
cdf1e714 | 4209 | |
61243a51 DW |
4210 | default: |
4211 | return FALSE; | |
cdf1e714 | 4212 | } |
61243a51 | 4213 | return TRUE; |
0367c1c0 | 4214 | } // end of wxWindowOS2::HandleGetMinMaxInfo |
0e320a79 | 4215 | |
cdf1e714 DW |
4216 | // --------------------------------------------------------------------------- |
4217 | // command messages | |
4218 | // --------------------------------------------------------------------------- | |
0367c1c0 | 4219 | bool wxWindowOS2::HandleCommand( |
61243a51 DW |
4220 | WXWORD wId |
4221 | , WXWORD wCmd | |
4222 | , WXHWND hControl | |
4223 | ) | |
0e320a79 | 4224 | { |
19193a2c | 4225 | #if wxUSE_MENUS_NATIVE |
61243a51 | 4226 | if (wxCurrentPopupMenu) |
0e320a79 | 4227 | { |
61243a51 | 4228 | wxMenu* pPopupMenu = wxCurrentPopupMenu; |
0e320a79 | 4229 | |
61243a51 DW |
4230 | wxCurrentPopupMenu = NULL; |
4231 | return pPopupMenu->OS2Command(wCmd, wId); | |
cdf1e714 | 4232 | } |
19193a2c | 4233 | #endif // wxUSE_MENUS_NATIVE |
0e320a79 | 4234 | |
61243a51 DW |
4235 | wxWindow* pWin = FindItem(wId); |
4236 | ||
4237 | if (!pWin) | |
cdf1e714 | 4238 | { |
61243a51 | 4239 | pWin = wxFindWinFromHandle(hControl); |
0e320a79 | 4240 | } |
cdf1e714 | 4241 | |
61243a51 | 4242 | if (pWin) |
19193a2c KB |
4243 | return pWin->OS2Command(wCmd, wId); |
4244 | ||
cdf1e714 | 4245 | return FALSE; |
0367c1c0 | 4246 | } // end of wxWindowOS2::HandleCommand |
de44a9f0 | 4247 | |
0367c1c0 | 4248 | bool wxWindowOS2::HandleSysCommand( |
61243a51 | 4249 | WXWPARAM wParam |
19193a2c | 4250 | , WXLPARAM WXUNUSED(lParam) |
61243a51 | 4251 | ) |
0e320a79 | 4252 | { |
61243a51 DW |
4253 | // |
4254 | // 4 bits are reserved | |
4255 | // | |
4256 | switch (SHORT1FROMMP(wParam)) | |
4257 | { | |
4258 | case SC_MAXIMIZE: | |
4259 | return HandleMaximize(); | |
4260 | ||
4261 | case SC_MINIMIZE: | |
4262 | return HandleMinimize(); | |
4263 | } | |
cdf1e714 | 4264 | return FALSE; |
0367c1c0 | 4265 | } // end of wxWindowOS2::HandleSysCommand |
cdf1e714 DW |
4266 | |
4267 | // --------------------------------------------------------------------------- | |
4268 | // mouse events | |
4269 | // --------------------------------------------------------------------------- | |
19193a2c | 4270 | //TODO!!! check against MSW |
0367c1c0 | 4271 | void wxWindowOS2::InitMouseEvent( |
61243a51 DW |
4272 | wxMouseEvent& rEvent |
4273 | , int nX | |
4274 | , int nY | |
4275 | , WXUINT uFlags | |
4276 | ) | |
cdf1e714 | 4277 | { |
61243a51 DW |
4278 | rEvent.m_x = nX; |
4279 | rEvent.m_y = nY; | |
4280 | rEvent.m_shiftDown = ((uFlags & VK_SHIFT) != 0); | |
4281 | rEvent.m_controlDown = ((uFlags & VK_CTRL) != 0); | |
4282 | rEvent.m_leftDown = ((uFlags & VK_BUTTON1) != 0); | |
4283 | rEvent.m_middleDown = ((uFlags & VK_BUTTON3) != 0); | |
4284 | rEvent.m_rightDown = ((uFlags & VK_BUTTON2) != 0); | |
4285 | rEvent.SetTimestamp(s_currentMsg.time); | |
4286 | rEvent.m_eventObject = this; | |
6ed98c6a | 4287 | rEvent.SetId(GetId()); |
cdf1e714 DW |
4288 | |
4289 | #if wxUSE_MOUSEEVENT_HACK | |
61243a51 DW |
4290 | m_lastMouseX = nX; |
4291 | m_lastMouseY = nY; | |
4292 | m_lastMouseEvent = rEvent.GetEventType(); | |
cdf1e714 | 4293 | #endif // wxUSE_MOUSEEVENT_HACK |
0367c1c0 | 4294 | } // end of wxWindowOS2::InitMouseEvent |
0e320a79 | 4295 | |
0367c1c0 | 4296 | bool wxWindowOS2::HandleMouseEvent( |
61243a51 DW |
4297 | WXUINT uMsg |
4298 | , int nX | |
4299 | , int nY | |
4300 | , WXUINT uFlags | |
4301 | ) | |
0e320a79 | 4302 | { |
b389a12d DW |
4303 | bool bProcessed = FALSE; |
4304 | ||
61243a51 DW |
4305 | // |
4306 | // The mouse events take consecutive IDs from WM_MOUSEFIRST to | |
cdf1e714 DW |
4307 | // WM_MOUSELAST, so it's enough to substract WM_MOUSEMOVE == WM_MOUSEFIRST |
4308 | // from the message id and take the value in the table to get wxWin event | |
4309 | // id | |
61243a51 | 4310 | // |
cdf1e714 DW |
4311 | static const wxEventType eventsMouse[] = |
4312 | { | |
4313 | wxEVT_MOTION, | |
4314 | wxEVT_LEFT_DOWN, | |
4315 | wxEVT_LEFT_UP, | |
4316 | wxEVT_LEFT_DCLICK, | |
4317 | wxEVT_RIGHT_DOWN, | |
4318 | wxEVT_RIGHT_UP, | |
4319 | wxEVT_RIGHT_DCLICK, | |
4320 | wxEVT_MIDDLE_DOWN, | |
4321 | wxEVT_MIDDLE_UP, | |
4322 | wxEVT_MIDDLE_DCLICK | |
4323 | }; | |
4324 | ||
61243a51 | 4325 | wxMouseEvent vEvent(eventsMouse[uMsg - WM_MOUSEMOVE]); |
cdf1e714 | 4326 | |
61243a51 DW |
4327 | InitMouseEvent( vEvent |
4328 | ,nX | |
4329 | ,nY | |
4330 | ,uFlags | |
4331 | ); | |
0e320a79 | 4332 | |
b389a12d DW |
4333 | bProcessed = GetEventHandler()->ProcessEvent(vEvent); |
4334 | if (!bProcessed) | |
4335 | { | |
4336 | HPOINTER hPtr = ::WinQuerySysPointer(HWND_DESKTOP, SPTR_WAIT, FALSE); | |
4337 | HPOINTER hCursor = (HPOINTER)GetCursor().GetHCURSOR(); | |
4338 | ||
4339 | if (hCursor != NULLHANDLE) | |
4340 | { | |
4341 | ::WinSetPointer(HWND_DESKTOP, hCursor); | |
4342 | bProcessed = TRUE; | |
4343 | } | |
4344 | } | |
61243a51 | 4345 | return GetEventHandler()->ProcessEvent(vEvent); |
0367c1c0 | 4346 | } // end of wxWindowOS2::HandleMouseEvent |
61243a51 | 4347 | |
0367c1c0 | 4348 | bool wxWindowOS2::HandleMouseMove( |
61243a51 DW |
4349 | int nX |
4350 | , int nY | |
4351 | , WXUINT uFlags | |
4352 | ) | |
0e320a79 | 4353 | { |
61243a51 | 4354 | if (!m_bMouseInWindow) |
cdf1e714 | 4355 | { |
61243a51 | 4356 | // |
cdf1e714 | 4357 | // Generate an ENTER event |
61243a51 | 4358 | // |
776d87d5 | 4359 | m_bMouseInWindow = TRUE; |
cdf1e714 | 4360 | |
61243a51 | 4361 | wxMouseEvent vEvent(wxEVT_ENTER_WINDOW); |
cdf1e714 | 4362 | |
61243a51 DW |
4363 | InitMouseEvent( vEvent |
4364 | ,nX | |
4365 | ,nY | |
4366 | ,uFlags | |
4367 | ); | |
cdf1e714 | 4368 | |
61243a51 | 4369 | (void)GetEventHandler()->ProcessEvent(vEvent); |
cdf1e714 | 4370 | } |
61243a51 DW |
4371 | return HandleMouseEvent( WM_MOUSEMOVE |
4372 | ,nX | |
4373 | ,nY | |
4374 | ,uFlags | |
4375 | ); | |
0367c1c0 | 4376 | } // end of wxWindowOS2::HandleMouseMove |
0e320a79 | 4377 | |
cdf1e714 DW |
4378 | // --------------------------------------------------------------------------- |
4379 | // keyboard handling | |
4380 | // --------------------------------------------------------------------------- | |
4381 | ||
61243a51 DW |
4382 | // |
4383 | // Create the key event of the given type for the given key - used by | |
4384 | // HandleChar and HandleKeyDown/Up | |
4385 | // | |
0367c1c0 | 4386 | wxKeyEvent wxWindowOS2::CreateKeyEvent( |
61243a51 DW |
4387 | wxEventType eType |
4388 | , int nId | |
4389 | , WXLPARAM lParam | |
a086de98 | 4390 | , WXWPARAM wParam |
61243a51 DW |
4391 | ) const |
4392 | { | |
4393 | wxKeyEvent vEvent(eType); | |
4394 | ||
4395 | vEvent.SetId(GetId()); | |
4396 | vEvent.m_shiftDown = IsShiftDown(); | |
4397 | vEvent.m_controlDown = IsCtrlDown(); | |
4398 | vEvent.m_altDown = (HIWORD(lParam) & KC_ALT) == KC_ALT; | |
4399 | ||
4400 | vEvent.m_eventObject = (wxWindow *)this; // const_cast | |
4401 | vEvent.m_keyCode = nId; | |
a086de98 DW |
4402 | vEvent.m_rawCode = (wxUint32)wParam; |
4403 | vEvent.m_rawFlags = (wxUint32)lParam; | |
61243a51 DW |
4404 | vEvent.SetTimestamp(s_currentMsg.time); |
4405 | ||
4406 | // | |
4407 | // Translate the position to client coords | |
4408 | // | |
4409 | POINTL vPoint; | |
4410 | RECTL vRect; | |
4411 | ||
4412 | ::WinQueryPointerPos(HWND_DESKTOP, &vPoint); | |
4413 | ::WinQueryWindowRect( GetHwnd() | |
4414 | ,&vRect | |
4415 | ); | |
4416 | ||
4417 | vPoint.x -= vRect.xLeft; | |
4418 | vPoint.y -= vRect.yBottom; | |
4419 | ||
4420 | vEvent.m_x = vPoint.x; | |
4421 | vEvent.m_y = vPoint.y; | |
4422 | ||
4423 | return vEvent; | |
0367c1c0 | 4424 | } // end of wxWindowOS2::CreateKeyEvent |
61243a51 DW |
4425 | |
4426 | // | |
cdf1e714 DW |
4427 | // isASCII is TRUE only when we're called from WM_CHAR handler and not from |
4428 | // WM_KEYDOWN one | |
61243a51 | 4429 | // |
0367c1c0 | 4430 | bool wxWindowOS2::HandleChar( |
598d8cac | 4431 | WXWPARAM wParam |
61243a51 DW |
4432 | , WXLPARAM lParam |
4433 | , bool isASCII | |
4434 | ) | |
86de7616 | 4435 | { |
61243a51 DW |
4436 | bool bCtrlDown = FALSE; |
4437 | int vId; | |
4438 | ||
3437f881 DW |
4439 | if (m_bLastKeydownProcessed) |
4440 | { | |
4441 | // | |
4442 | // The key was handled in the EVT_KEY_DOWN. Handling a key in an | |
4443 | // EVT_KEY_DOWN handler is meant, by design, to prevent EVT_CHARs | |
4444 | // from happening, so just bail out at this point. | |
4445 | // | |
4446 | m_bLastKeydownProcessed = FALSE; | |
4447 | return TRUE; | |
4448 | } | |
61243a51 DW |
4449 | if (isASCII) |
4450 | { | |
4451 | // | |
a23692f0 DW |
4452 | // If 1 -> 26, translate to either special keycode or just set |
4453 | // ctrlDown. IOW, Ctrl-C should result in keycode == 3 and | |
4454 | // ControlDown() == TRUE. | |
61243a51 | 4455 | // |
1de4baa3 | 4456 | vId = SHORT1FROMMP(lParam); |
61243a51 DW |
4457 | if ((vId > 0) && (vId < 27)) |
4458 | { | |
4459 | switch (vId) | |
4460 | { | |
4461 | case 13: | |
4462 | vId = WXK_RETURN; | |
4463 | break; | |
4464 | ||
4465 | case 8: | |
4466 | vId = WXK_BACK; | |
4467 | break; | |
4468 | ||
4469 | case 9: | |
4470 | vId = WXK_TAB; | |
4471 | break; | |
4472 | ||
4473 | default: | |
4474 | bCtrlDown = TRUE; | |
a23692f0 | 4475 | break; |
61243a51 DW |
4476 | } |
4477 | } | |
4478 | } | |
a086de98 | 4479 | else // we're called from WM_KEYDOWN |
61243a51 | 4480 | { |
1de4baa3 | 4481 | vId = wxCharCodeOS2ToWX((int)SHORT2FROMMP(lParam)); |
a086de98 DW |
4482 | if (vId == 0) |
4483 | return FALSE; | |
61243a51 DW |
4484 | } |
4485 | ||
a086de98 | 4486 | wxKeyEvent vEvent(CreateKeyEvent( wxEVT_CHAR |
61243a51 DW |
4487 | ,vId |
4488 | ,lParam | |
4489 | )); | |
4490 | ||
a086de98 DW |
4491 | if (bCtrlDown) |
4492 | { | |
4493 | vEvent.m_controlDown = TRUE; | |
61243a51 | 4494 | } |
a086de98 | 4495 | return (GetEventHandler()->ProcessEvent(vEvent)); |
cdf1e714 | 4496 | } |
86de7616 | 4497 | |
0367c1c0 | 4498 | bool wxWindowOS2::HandleKeyDown( |
a086de98 | 4499 | WXWPARAM wParam |
61243a51 DW |
4500 | , WXLPARAM lParam |
4501 | ) | |
cdf1e714 | 4502 | { |
1de4baa3 | 4503 | int nId = wxCharCodeOS2ToWX((int)SHORT2FROMMP(lParam)); |
86de7616 | 4504 | |
61243a51 DW |
4505 | if (!nId) |
4506 | { | |
4507 | // | |
4508 | // Normal ASCII char | |
4509 | // | |
1de4baa3 | 4510 | nId = SHORT1FROMMP(lParam); |
61243a51 DW |
4511 | } |
4512 | ||
4513 | if (nId != -1) | |
4514 | { | |
4515 | wxKeyEvent vEvent(CreateKeyEvent( wxEVT_KEY_DOWN | |
4516 | ,nId | |
a086de98 DW |
4517 | ,(MPARAM)lParam |
4518 | ,(MPARAM)wParam | |
61243a51 DW |
4519 | )); |
4520 | ||
4521 | if (GetEventHandler()->ProcessEvent(vEvent)) | |
4522 | { | |
4523 | return TRUE; | |
4524 | } | |
4525 | } | |
4526 | return FALSE; | |
0367c1c0 | 4527 | } // end of wxWindowOS2::HandleKeyDown |
61243a51 | 4528 | |
0367c1c0 | 4529 | bool wxWindowOS2::HandleKeyUp( |
a086de98 | 4530 | WXWPARAM wParam |
61243a51 DW |
4531 | , WXLPARAM lParam |
4532 | ) | |
86de7616 | 4533 | { |
1de4baa3 | 4534 | int nId = wxCharCodeOS2ToWX((int)SHORT2FROMMP(lParam)); |
61243a51 DW |
4535 | |
4536 | if (!nId) | |
4537 | { | |
4538 | // | |
4539 | // Normal ASCII char | |
4540 | // | |
a086de98 | 4541 | nId = (int)wParam; |
61243a51 DW |
4542 | } |
4543 | ||
4544 | if (nId != -1) | |
4545 | { | |
4546 | wxKeyEvent vEvent(CreateKeyEvent( wxEVT_KEY_UP | |
4547 | ,nId | |
4548 | ,lParam | |
a086de98 | 4549 | ,wParam |
61243a51 DW |
4550 | )); |
4551 | ||
4552 | if (GetEventHandler()->ProcessEvent(vEvent)) | |
4553 | return TRUE; | |
4554 | } | |
4555 | return FALSE; | |
0367c1c0 | 4556 | } // end of wxWindowOS2::HandleKeyUp |
86de7616 | 4557 | |
cdf1e714 DW |
4558 | // --------------------------------------------------------------------------- |
4559 | // joystick | |
4560 | // --------------------------------------------------------------------------- | |
86de7616 | 4561 | |
cdf1e714 DW |
4562 | // --------------------------------------------------------------------------- |
4563 | // scrolling | |
4564 | // --------------------------------------------------------------------------- | |
4565 | ||
0367c1c0 | 4566 | bool wxWindowOS2::OS2OnScroll( |
61243a51 DW |
4567 | int nOrientation |
4568 | , WXWORD wParam | |
4569 | , WXWORD wPos | |
4570 | , WXHWND hControl | |
4571 | ) | |
cdf1e714 | 4572 | { |
61243a51 | 4573 | if (hControl) |
86de7616 | 4574 | { |
61243a51 DW |
4575 | wxWindow* pChild = wxFindWinFromHandle(hControl); |
4576 | ||
4577 | if (pChild ) | |
4578 | return pChild->OS2OnScroll( nOrientation | |
4579 | ,wParam | |
4580 | ,wPos | |
4581 | ,hControl | |
4582 | ); | |
cdf1e714 | 4583 | } |
86de7616 | 4584 | |
61243a51 DW |
4585 | wxScrollWinEvent vEvent; |
4586 | ||
4587 | vEvent.SetPosition(wPos); | |
4588 | vEvent.SetOrientation(nOrientation); | |
4589 | vEvent.m_eventObject = this; | |
4590 | ||
4591 | switch (wParam) | |
4592 | { | |
4593 | case SB_LINEUP: | |
4594 | vEvent.m_eventType = wxEVT_SCROLLWIN_LINEUP; | |
4595 | break; | |
4596 | ||
4597 | case SB_LINEDOWN: | |
4598 | vEvent.m_eventType = wxEVT_SCROLLWIN_LINEDOWN; | |
4599 | break; | |
4600 | ||
4601 | case SB_PAGEUP: | |
4602 | vEvent.m_eventType = wxEVT_SCROLLWIN_PAGEUP; | |
4603 | break; | |
4604 | ||
4605 | case SB_PAGEDOWN: | |
4606 | vEvent.m_eventType = wxEVT_SCROLLWIN_PAGEDOWN; | |
4607 | break; | |
4608 | ||
4609 | case SB_SLIDERPOSITION: | |
4610 | vEvent.m_eventType = wxEVT_SCROLLWIN_THUMBRELEASE; | |
4611 | break; | |
4612 | ||
4613 | case SB_SLIDERTRACK: | |
4614 | vEvent.m_eventType = wxEVT_SCROLLWIN_THUMBTRACK; | |
4615 | break; | |
4616 | ||
4617 | default: | |
4618 | return FALSE; | |
4619 | } | |
4620 | return GetEventHandler()->ProcessEvent(vEvent); | |
0367c1c0 | 4621 | } // end of wxWindowOS2::OS2OnScroll |
86de7616 | 4622 | |
d8a3f66c DW |
4623 | void wxWindowOS2::MoveChildren( |
4624 | int nDiff | |
4625 | ) | |
4626 | { | |
5efff147 DW |
4627 | // |
4628 | // We want to handle top levels ourself, manually | |
4629 | // | |
4630 | if (!IsTopLevel() && GetAutoLayout()) | |
d8a3f66c | 4631 | { |
f289196b DW |
4632 | Layout(); |
4633 | } | |
4634 | else | |
4635 | { | |
4636 | SWP vSwp; | |
d8a3f66c | 4637 | |
f289196b DW |
4638 | for (wxWindowList::Node* pNode = GetChildren().GetFirst(); |
4639 | pNode; | |
4640 | pNode = pNode->GetNext()) | |
d8a3f66c | 4641 | { |
f289196b | 4642 | wxWindow* pWin = pNode->GetData(); |
d8a3f66c | 4643 | |
f289196b DW |
4644 | ::WinQueryWindowPos( GetHwndOf(pWin) |
4645 | ,&vSwp | |
4646 | ); | |
4647 | if (pWin->IsKindOf(CLASSINFO(wxControl))) | |
4648 | { | |
4649 | wxControl* pCtrl; | |
4650 | ||
4651 | // | |
4652 | // Must deal with controls that have margins like ENTRYFIELD. The SWP | |
4653 | // struct of such a control will have and origin offset from its intended | |
4654 | // position by the width of the margins. | |
4655 | // | |
4656 | pCtrl = wxDynamicCast(pWin, wxControl); | |
4657 | vSwp.y -= pCtrl->GetYComp(); | |
4658 | vSwp.x -= pCtrl->GetXComp(); | |
4659 | } | |
4660 | ::WinSetWindowPos( GetHwndOf(pWin) | |
4661 | ,HWND_TOP | |
4662 | ,vSwp.x | |
4663 | ,vSwp.y - nDiff | |
4664 | ,vSwp.cx | |
4665 | ,vSwp.cy | |
4666 | ,SWP_MOVE | SWP_SHOW | SWP_ZORDER | |
4667 | ); | |
4668 | ::WinQueryWindowPos(GetHwndOf(pWin), pWin->GetSwp()); | |
4669 | if (pWin->IsKindOf(CLASSINFO(wxRadioBox))) | |
4670 | { | |
4671 | wxRadioBox* pRadioBox; | |
4672 | ||
4673 | pRadioBox = wxDynamicCast(pWin, wxRadioBox); | |
4674 | pRadioBox->AdjustButtons( (int)vSwp.x | |
4675 | ,(int)vSwp.y - nDiff | |
4676 | ,(int)vSwp.cx | |
4677 | ,(int)vSwp.cy | |
4678 | ,pRadioBox->GetSizeFlags() | |
4679 | ); | |
4680 | } | |
4681 | if (pWin->IsKindOf(CLASSINFO(wxSlider))) | |
4682 | { | |
4683 | wxSlider* pSlider; | |
4684 | ||
4685 | pSlider = wxDynamicCast(pWin, wxSlider); | |
4686 | pSlider->AdjustSubControls( (int)vSwp.x | |
4687 | ,(int)vSwp.y - nDiff | |
4688 | ,(int)vSwp.cx | |
4689 | ,(int)vSwp.cy | |
4690 | ,(int)pSlider->GetSizeFlags() | |
4691 | ); | |
4692 | } | |
d8a3f66c DW |
4693 | } |
4694 | } | |
4a46a5df | 4695 | Refresh(); |
d8a3f66c DW |
4696 | } // end of wxWindowOS2::MoveChildren |
4697 | ||
4698 | // | |
4699 | // Getting the Y position for a window, like a control, is a real | |
4700 | // pain. There are three sitatuions we must deal with in determining | |
4701 | // the OS2 to wxWindows Y coordinate. | |
4702 | // | |
4703 | // 1) The controls are created in a dialog. | |
4704 | // This is the easiest since a dialog is created with its original | |
4705 | // size so the standard: Y = ParentHeight - (Y + ControlHeight); | |
4706 | // | |
4707 | // 2) The controls are direct children of a frame | |
4708 | // In this instance the controls are actually children of the Frame's | |
4709 | // client. During creation the frame's client resizes several times | |
4710 | // during creation of the status bar and toolbars. The CFrame class | |
4711 | // will take care of this using its AlterChildPos proc. | |
4712 | // | |
4713 | // 3) The controls are children of a panel, which in turn is a child of | |
4714 | // a frame. | |
859e65de DW |
4715 | // The panel may be one of many, in which case the same treatment |
4716 | // as 1 applies. It may be the only child, though. | |
d8a3f66c DW |
4717 | // This is the nastiest case. A panel is created as the only child of |
4718 | // the frame and as such, when a frame has only one child, the child is | |
4719 | // expanded to fit the entire client area of the frame. Because the | |
4720 | // controls are created BEFORE this occurs their positions are totally | |
4721 | // whacked and any call to WinQueryWindowPos will return invalid | |
4722 | // coordinates. So for this situation we have to compare the size of | |
4723 | // the panel at control creation time with that of the frame client. If | |
4724 | // they are the same we can use the standard Y position equation. If | |
4725 | // not, then we must use the Frame Client's dimensions to position them | |
4726 | // as that will be the eventual size of the panel after the frame resizes | |
4727 | // it! | |
4728 | // | |
4729 | int wxWindowOS2::GetOS2ParentHeight( | |
4730 | wxWindowOS2* pParent | |
4731 | ) | |
4732 | { | |
4733 | wxWindowOS2* pGrandParent = NULL; | |
4734 | ||
4735 | // | |
4736 | // Case 1 | |
4737 | // | |
4738 | if (pParent->IsKindOf(CLASSINFO(wxDialog))) | |
e37db699 | 4739 | return(pParent->GetClientSize().y); |
d8a3f66c DW |
4740 | |
4741 | // | |
4742 | // Case 2 -- if we are one of the separately built standard Frame | |
4743 | // children, like a statusbar, menubar, or toolbar we want to | |
4744 | // use the frame, itself, for positioning. Otherwise we are | |
4745 | // child window and want to use the Frame's client. | |
4746 | // | |
4747 | else if (pParent->IsKindOf(CLASSINFO(wxFrame))) | |
4748 | { | |
4749 | if (IsKindOf(CLASSINFO(wxStatusBar)) || | |
4750 | IsKindOf(CLASSINFO(wxMenuBar)) || | |
4751 | IsKindOf(CLASSINFO(wxToolBar)) | |
4752 | ) | |
2590f154 DW |
4753 | { |
4754 | if (IsKindOf(CLASSINFO(wxToolBar))) | |
4755 | { | |
4756 | wxFrame* pFrame = wxDynamicCast(GetParent(), wxFrame); | |
4757 | ||
4758 | if (pFrame->GetToolBar() == this) | |
4759 | return(pParent->GetSize().y); | |
4760 | else | |
4761 | return(pParent->GetClientSize().y); | |
4762 | } | |
4763 | else | |
4764 | return(pParent->GetSize().y); | |
4765 | } | |
d8a3f66c DW |
4766 | else |
4767 | return(pParent->GetClientSize().y); | |
4768 | } | |
d8a3f66c | 4769 | // |
4a46a5df DW |
4770 | // Case -- this is for any window that is the sole child of a Frame. |
4771 | // The grandparent must exist and it must be of type CFrame | |
4772 | // and it's height must be different. Otherwise the standard | |
4773 | // applies. | |
d8a3f66c DW |
4774 | // |
4775 | else | |
4776 | { | |
4a46a5df | 4777 | return(pParent->GetClientSize().y); |
d8a3f66c DW |
4778 | } |
4779 | return(0L); | |
4780 | } // end of wxWindowOS2::GetOS2ParentHeight | |
4781 | ||
45e0dc94 DW |
4782 | // |
4783 | // OS/2 needs a lot extra manipulation to deal with layouts | |
4784 | // for canvas windows, particularly scrolled ones. | |
4785 | // | |
06519806 DW |
4786 | wxWindowCreationHook::wxWindowCreationHook( |
4787 | wxWindow* pWinBeingCreated | |
4788 | ) | |
4789 | { | |
4790 | gpWinBeingCreated = pWinBeingCreated; | |
4791 | } // end of wxWindowCreationHook::wxWindowCreationHook | |
4792 | ||
4793 | wxWindowCreationHook::~wxWindowCreationHook() | |
4794 | { | |
4795 | gpWinBeingCreated = NULL; | |
4796 | } // end of wxWindowCreationHook::~wxWindowCreationHook | |
4797 | ||
cdf1e714 DW |
4798 | // =========================================================================== |
4799 | // global functions | |
4800 | // =========================================================================== | |
4801 | ||
61243a51 | 4802 | void wxGetCharSize( |
987da0d4 DW |
4803 | WXHWND hWnd |
4804 | , int* pX | |
4805 | , int* pY | |
19193a2c | 4806 | ,wxFont* WXUNUSED(pTheFont) |
61243a51 | 4807 | ) |
cdf1e714 | 4808 | { |
987da0d4 DW |
4809 | FONTMETRICS vFM; |
4810 | HPS hPS; | |
4811 | BOOL rc; | |
4812 | ||
4813 | hPS =::WinGetPS(hWnd); | |
4814 | ||
4815 | rc = ::GpiQueryFontMetrics(hPS, sizeof(FONTMETRICS), &vFM); | |
4816 | if (rc) | |
4817 | { | |
4818 | if (pX) | |
4819 | *pX = vFM.lAveCharWidth; | |
4820 | if (pY) | |
4821 | *pY = vFM.lEmHeight + vFM.lExternalLeading; | |
4822 | } | |
4823 | else | |
4824 | { | |
4825 | if (pX) | |
4826 | *pX = 10; | |
4827 | if (pY) | |
4828 | *pY = 15; | |
4829 | } | |
4830 | ::WinReleasePS(hPS); | |
61243a51 | 4831 | } // end of wxGetCharSize |
cdf1e714 | 4832 | |
61243a51 | 4833 | // |
cdf1e714 DW |
4834 | // Returns 0 if was a normal ASCII value, not a special key. This indicates that |
4835 | // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead. | |
61243a51 DW |
4836 | // |
4837 | int wxCharCodeOS2ToWX( | |
4838 | int nKeySym | |
4839 | ) | |
cdf1e714 | 4840 | { |
61243a51 DW |
4841 | int nId = 0; |
4842 | ||
4843 | switch (nKeySym) | |
4844 | { | |
4845 | case VK_BACKTAB: nId = WXK_BACK; break; | |
4846 | case VK_TAB: nId = WXK_TAB; break; | |
4847 | case VK_CLEAR: nId = WXK_CLEAR; break; | |
4848 | case VK_ENTER: nId = WXK_RETURN; break; | |
4849 | case VK_SHIFT: nId = WXK_SHIFT; break; | |
4850 | case VK_CTRL: nId = WXK_CONTROL; break; | |
4851 | case VK_PAUSE: nId = WXK_PAUSE; break; | |
4852 | case VK_SPACE: nId = WXK_SPACE; break; | |
4853 | case VK_ESC: nId = WXK_ESCAPE; break; | |
4854 | case VK_END: nId = WXK_END; break; | |
4855 | case VK_HOME : nId = WXK_HOME; break; | |
4856 | case VK_LEFT : nId = WXK_LEFT; break; | |
4857 | case VK_UP: nId = WXK_UP; break; | |
4858 | case VK_RIGHT: nId = WXK_RIGHT; break; | |
4859 | case VK_DOWN : nId = WXK_DOWN; break; | |
4860 | case VK_PRINTSCRN: nId = WXK_PRINT; break; | |
4861 | case VK_INSERT: nId = WXK_INSERT; break; | |
4862 | case VK_DELETE: nId = WXK_DELETE; break; | |
a086de98 | 4863 | case VK_CAPSLOCK: nId = WXK_CAPITAL; break; |
61243a51 DW |
4864 | case VK_F1: nId = WXK_F1; break; |
4865 | case VK_F2: nId = WXK_F2; break; | |
4866 | case VK_F3: nId = WXK_F3; break; | |
4867 | case VK_F4: nId = WXK_F4; break; | |
4868 | case VK_F5: nId = WXK_F5; break; | |
4869 | case VK_F6: nId = WXK_F6; break; | |
4870 | case VK_F7: nId = WXK_F7; break; | |
4871 | case VK_F8: nId = WXK_F8; break; | |
4872 | case VK_F9: nId = WXK_F9; break; | |
4873 | case VK_F10: nId = WXK_F10; break; | |
4874 | case VK_F11: nId = WXK_F11; break; | |
4875 | case VK_F12: nId = WXK_F12; break; | |
4876 | case VK_F13: nId = WXK_F13; break; | |
4877 | case VK_F14: nId = WXK_F14; break; | |
4878 | case VK_F15: nId = WXK_F15; break; | |
4879 | case VK_F16: nId = WXK_F16; break; | |
4880 | case VK_F17: nId = WXK_F17; break; | |
4881 | case VK_F18: nId = WXK_F18; break; | |
4882 | case VK_F19: nId = WXK_F19; break; | |
4883 | case VK_F20: nId = WXK_F20; break; | |
4884 | case VK_F21: nId = WXK_F21; break; | |
4885 | case VK_F22: nId = WXK_F22; break; | |
4886 | case VK_F23: nId = WXK_F23; break; | |
4887 | case VK_F24: nId = WXK_F24; break; | |
a086de98 DW |
4888 | case VK_OEM_1: nId = ';'; break; |
4889 | case VK_OEM_PLUS: nId = '+'; break; | |
4890 | case VK_OEM_COMMA: nId = ','; break; | |
4891 | case VK_OEM_MINUS: nId = '-'; break; | |
4892 | case VK_OEM_PERIOD: nId = '.'; break; | |
4893 | case VK_OEM_2: nId = '/'; break; | |
4894 | case VK_OEM_3: nId = '~'; break; | |
4895 | case VK_OEM_4: nId = '['; break; | |
4896 | case VK_OEM_5: nId = '\\'; break; | |
4897 | case VK_OEM_6: nId = ']'; break; | |
4898 | case VK_OEM_7: nId = '\''; break; | |
61243a51 DW |
4899 | case VK_NUMLOCK: nId = WXK_NUMLOCK; break; |
4900 | case VK_SCRLLOCK: nId = WXK_SCROLL; break; | |
4901 | default: | |
86de7616 | 4902 | { |
cdf1e714 | 4903 | return 0; |
86de7616 DW |
4904 | } |
4905 | } | |
61243a51 DW |
4906 | return nId; |
4907 | } // end of wxCharCodeOS2ToWX | |
86de7616 | 4908 | |
61243a51 DW |
4909 | int wxCharCodeWXToOS2( |
4910 | int nId | |
4911 | , bool* bIsVirtual | |
4912 | ) | |
86de7616 | 4913 | { |
61243a51 DW |
4914 | int nKeySym = 0; |
4915 | ||
4916 | *bIsVirtual = TRUE; | |
4917 | switch (nId) | |
4918 | { | |
4919 | case WXK_CLEAR: nKeySym = VK_CLEAR; break; | |
4920 | case WXK_SHIFT: nKeySym = VK_SHIFT; break; | |
4921 | case WXK_CONTROL: nKeySym = VK_CTRL; break; | |
4922 | case WXK_PAUSE: nKeySym = VK_PAUSE; break; | |
4923 | case WXK_END: nKeySym = VK_END; break; | |
4924 | case WXK_HOME : nKeySym = VK_HOME; break; | |
4925 | case WXK_LEFT : nKeySym = VK_LEFT; break; | |
4926 | case WXK_UP: nKeySym = VK_UP; break; | |
4927 | case WXK_RIGHT: nKeySym = VK_RIGHT; break; | |
4928 | case WXK_DOWN : nKeySym = VK_DOWN; break; | |
4929 | case WXK_PRINT: nKeySym = VK_PRINTSCRN; break; | |
4930 | case WXK_INSERT: nKeySym = VK_INSERT; break; | |
4931 | case WXK_DELETE: nKeySym = VK_DELETE; break; | |
4932 | case WXK_F1: nKeySym = VK_F1; break; | |
4933 | case WXK_F2: nKeySym = VK_F2; break; | |
4934 | case WXK_F3: nKeySym = VK_F3; break; | |
4935 | case WXK_F4: nKeySym = VK_F4; break; | |
4936 | case WXK_F5: nKeySym = VK_F5; break; | |
4937 | case WXK_F6: nKeySym = VK_F6; break; | |
4938 | case WXK_F7: nKeySym = VK_F7; break; | |
4939 | case WXK_F8: nKeySym = VK_F8; break; | |
4940 | case WXK_F9: nKeySym = VK_F9; break; | |
4941 | case WXK_F10: nKeySym = VK_F10; break; | |
4942 | case WXK_F11: nKeySym = VK_F11; break; | |
4943 | case WXK_F12: nKeySym = VK_F12; break; | |
4944 | case WXK_F13: nKeySym = VK_F13; break; | |
4945 | case WXK_F14: nKeySym = VK_F14; break; | |
4946 | case WXK_F15: nKeySym = VK_F15; break; | |
4947 | case WXK_F16: nKeySym = VK_F16; break; | |
4948 | case WXK_F17: nKeySym = VK_F17; break; | |
4949 | case WXK_F18: nKeySym = VK_F18; break; | |
4950 | case WXK_F19: nKeySym = VK_F19; break; | |
4951 | case WXK_F20: nKeySym = VK_F20; break; | |
4952 | case WXK_F21: nKeySym = VK_F21; break; | |
4953 | case WXK_F22: nKeySym = VK_F22; break; | |
4954 | case WXK_F23: nKeySym = VK_F23; break; | |
4955 | case WXK_F24: nKeySym = VK_F24; break; | |
4956 | case WXK_NUMLOCK: nKeySym = VK_NUMLOCK; break; | |
4957 | case WXK_SCROLL: nKeySym = VK_SCRLLOCK; break; | |
4958 | default: | |
cdf1e714 | 4959 | { |
61243a51 DW |
4960 | *bIsVirtual = FALSE; |
4961 | nKeySym = nId; | |
cdf1e714 DW |
4962 | break; |
4963 | } | |
86de7616 | 4964 | } |
61243a51 DW |
4965 | return nKeySym; |
4966 | } // end of wxCharCodeWXToOS2 | |
86de7616 | 4967 | |
61243a51 | 4968 | wxWindow* wxGetActiveWindow() |
cdf1e714 | 4969 | { |
61243a51 | 4970 | HWND hWnd = ::WinQueryActiveWindow(HWND_DESKTOP); |
86de7616 | 4971 | |
61243a51 DW |
4972 | if (hWnd != 0) |
4973 | { | |
4974 | return wxFindWinFromHandle((WXHWND)hWnd); | |
4975 | } | |
4976 | return NULL; | |
4977 | } // end of wxGetActiveWindow | |
cdf1e714 DW |
4978 | |
4979 | #ifdef __WXDEBUG__ | |
61243a51 DW |
4980 | const char* wxGetMessageName( |
4981 | int nMessage) | |
cdf1e714 | 4982 | { |
61243a51 | 4983 | switch (nMessage) |
86de7616 | 4984 | { |
cdf1e714 DW |
4985 | case 0x0000: return "WM_NULL"; |
4986 | case 0x0001: return "WM_CREATE"; | |
4987 | case 0x0002: return "WM_DESTROY"; | |
61243a51 DW |
4988 | case 0x0004: return "WM_ENABLE"; |
4989 | case 0x0005: return "WM_SHOW"; | |
4990 | case 0x0006: return "WM_MOVE"; | |
4991 | case 0x0007: return "WM_SIZE"; | |
4992 | case 0x0008: return "WM_ADJUSTWINDOWPOS"; | |
4993 | case 0x0009: return "WM_CALCVALIDRECTS"; | |
4994 | case 0x000A: return "WM_SETWINDOWPARAMS"; | |
4995 | case 0x000B: return "WM_QUERYWINDOWPARAMS"; | |
4996 | case 0x000C: return "WM_HITTEST"; | |
4997 | case 0x000D: return "WM_ACTIVATE"; | |
4998 | case 0x000F: return "WM_SETFOCUS"; | |
4999 | case 0x0010: return "WM_SETSELECTION"; | |
5000 | case 0x0011: return "WM_PPAINT"; | |
5001 | case 0x0012: return "WM_PSETFOCUS"; | |
5002 | case 0x0013: return "WM_PSYSCOLORCHANGE"; | |
5003 | case 0x0014: return "WM_PSIZE"; | |
5004 | case 0x0015: return "WM_PACTIVATE"; | |
5005 | case 0x0016: return "WM_PCONTROL"; | |
5006 | case 0x0020: return "WM_COMMAND"; | |
5007 | case 0x0021: return "WM_SYSCOMMAND"; | |
5008 | case 0x0022: return "WM_HELP"; | |
5009 | case 0x0023: return "WM_PAINT"; | |
5010 | case 0x0024: return "WM_TIMER"; | |
5011 | case 0x0025: return "WM_SEM1"; | |
5012 | case 0x0026: return "WM_SEM2"; | |
5013 | case 0x0027: return "WM_SEM3"; | |
5014 | case 0x0028: return "WM_SEM4"; | |
5015 | case 0x0029: return "WM_CLOSE"; | |
5016 | case 0x002A: return "WM_QUIT"; | |
5017 | case 0x002B: return "WM_SYSCOLORCHANGE"; | |
5018 | case 0x002D: return "WM_SYSVALUECHANGE"; | |
5019 | case 0x002E: return "WM_APPTERMINATENOTIFY"; | |
5020 | case 0x002F: return "WM_PRESPARAMCHANGED"; | |
5021 | // Control notification messages | |
5022 | case 0x0030: return "WM_CONTROL"; | |
5023 | case 0x0031: return "WM_VSCROLL"; | |
5024 | case 0x0032: return "WM_HSCROLL"; | |
5025 | case 0x0033: return "WM_INITMENU"; | |
5026 | case 0x0034: return "WM_MENUSELECT"; | |
5027 | case 0x0035: return "WM_MENUSEND"; | |
5028 | case 0x0036: return "WM_DRAWITEM"; | |
5029 | case 0x0037: return "WM_MEASUREITEM"; | |
5030 | case 0x0038: return "WM_CONTROLPOINTER"; | |
5031 | case 0x003A: return "WM_QUERYDLGCODE"; | |
5032 | case 0x003B: return "WM_INITDLG"; | |
5033 | case 0x003C: return "WM_SUBSTITUTESTRING"; | |
5034 | case 0x003D: return "WM_MATCHMNEMONIC"; | |
5035 | case 0x003E: return "WM_SAVEAPPLICATION"; | |
5036 | case 0x0129: return "WM_CTLCOLORCHANGE"; | |
5037 | case 0x0130: return "WM_QUERYCTLTYPE"; | |
5038 | // Frame messages | |
5039 | case 0x0040: return "WM_FLASHWINDOW"; | |
5040 | case 0x0041: return "WM_FORMATFRAME"; | |
5041 | case 0x0042: return "WM_UPDATEFRAME"; | |
5042 | case 0x0043: return "WM_FOCUSCHANGE"; | |
5043 | case 0x0044: return "WM_SETBORDERSIZE"; | |
5044 | case 0x0045: return "WM_TRACKFRAME"; | |
5045 | case 0x0046: return "WM_MINMAXFRAME"; | |
5046 | case 0x0047: return "WM_SETICON"; | |
5047 | case 0x0048: return "WM_QUERYICON"; | |
5048 | case 0x0049: return "WM_SETACCELTABLE"; | |
5049 | case 0x004A: return "WM_QUERYACCELTABLE"; | |
5050 | case 0x004B: return "WM_TRANSLATEACCEL"; | |
5051 | case 0x004C: return "WM_QUERYTRACKINFO"; | |
5052 | case 0x004D: return "WM_QUERYBORDERSIZE"; | |
5053 | case 0x004E: return "WM_NEXTMENU"; | |
5054 | case 0x004F: return "WM_ERASEBACKGROUND"; | |
5055 | case 0x0050: return "WM_QUERYFRAMEINFO"; | |
5056 | case 0x0051: return "WM_QUERYFOCUSCHAIN"; | |
5057 | case 0x0052: return "WM_OWNERPOSCHANGE"; | |
5058 | case 0x0053: return "WM_CACLFRAMERECT"; | |
5059 | case 0x0055: return "WM_WINDOWPOSCHANGED"; | |
5060 | case 0x0056: return "WM_ADJUSTFRAMEPOS"; | |
5061 | case 0x0059: return "WM_QUERYFRAMECTLCOUNT"; | |
5062 | case 0x005B: return "WM_QUERYHELPINFO"; | |
5063 | case 0x005C: return "WM_SETHELPINFO"; | |
5064 | case 0x005D: return "WM_ERROR"; | |
5065 | case 0x005E: return "WM_REALIZEPALETTE"; | |
5066 | // Clipboard messages | |
5067 | case 0x0060: return "WM_RENDERFMT"; | |
5068 | case 0x0061: return "WM_RENDERALLFMTS"; | |
5069 | case 0x0062: return "WM_DESTROYCLIPBOARD"; | |
5070 | case 0x0063: return "WM_PAINTCLIPBOARD"; | |
5071 | case 0x0064: return "WM_SIZECLIPBOARD"; | |
5072 | case 0x0065: return "WM_HSCROLLCLIPBOARD"; | |
5073 | case 0x0066: return "WM_VSCROLLCLIPBOARD"; | |
5074 | case 0x0067: return "WM_DRAWCLIPBOARD"; | |
5075 | // mouse messages | |
5076 | case 0x0070: return "WM_MOUSEMOVE"; | |
5077 | case 0x0071: return "WM_BUTTON1DOWN"; | |
5078 | case 0x0072: return "WM_BUTTON1UP"; | |
5079 | case 0x0073: return "WM_BUTTON1DBLCLK"; | |
5080 | case 0x0074: return "WM_BUTTON2DOWN"; | |
5081 | case 0x0075: return "WM_BUTTON2UP"; | |
5082 | case 0x0076: return "WM_BUTTON2DBLCLK"; | |
5083 | case 0x0077: return "WM_BUTTON3DOWN"; | |
5084 | case 0x0078: return "WM_BUTTON3UP"; | |
5085 | case 0x0079: return "WM_BUTTON3DBLCLK"; | |
5086 | case 0x007D: return "WM_MOUSEMAP"; | |
5087 | case 0x007E: return "WM_VRNDISABLED"; | |
5088 | case 0x007F: return "WM_VRNENABLED"; | |
5089 | case 0x0410: return "WM_CHORD"; | |
5090 | case 0x0411: return "WM_BUTTON1MOTIONSTART"; | |
5091 | case 0x0412: return "WM_BUTTON1MOTIONEND"; | |
5092 | case 0x0413: return "WM_BUTTON1CLICK"; | |
5093 | case 0x0414: return "WM_BUTTON2MOTIONSTART"; | |
5094 | case 0x0415: return "WM_BUTTON2MOTIONEND"; | |
5095 | case 0x0416: return "WM_BUTTON2CLICK"; | |
5096 | case 0x0417: return "WM_BUTTON3MOTIONSTART"; | |
5097 | case 0x0418: return "WM_BUTTON3MOTIONEND"; | |
5098 | case 0x0419: return "WM_BUTTON3CLICK"; | |
5099 | case 0x0420: return "WM_BEGINDRAG"; | |
5100 | case 0x0421: return "WM_ENDDRAG"; | |
5101 | case 0x0422: return "WM_SINGLESELECT"; | |
5102 | case 0x0423: return "WM_OPEN"; | |
5103 | case 0x0424: return "WM_CONTEXTMENU"; | |
5104 | case 0x0425: return "WM_CONTEXTHELP"; | |
5105 | case 0x0426: return "WM_TEXTEDIT"; | |
5106 | case 0x0427: return "WM_BEGINSELECT"; | |
5107 | case 0x0228: return "WM_ENDSELECT"; | |
5108 | case 0x0429: return "WM_PICKUP"; | |
5109 | case 0x04C0: return "WM_PENFIRST"; | |
5110 | case 0x04FF: return "WM_PENLAST"; | |
5111 | case 0x0500: return "WM_MMPMFIRST"; | |
5112 | case 0x05FF: return "WM_MMPMLAST"; | |
5113 | case 0x0600: return "WM_STDDLGFIRST"; | |
5114 | case 0x06FF: return "WM_STDDLGLAST"; | |
5115 | case 0x0BD0: return "WM_BIDI_FIRST"; | |
5116 | case 0x0BFF: return "WM_BIDI_LAST"; | |
5117 | // keyboard input | |
5118 | case 0x007A: return "WM_CHAR"; | |
5119 | case 0x007B: return "WM_VIOCHAR"; | |
5120 | // DDE messages | |
5121 | case 0x00A0: return "WM_DDE_INITIATE"; | |
5122 | case 0x00A1: return "WM_DDE_REQUEST"; | |
5123 | case 0x00A2: return "WM_DDE_ACK"; | |
5124 | case 0x00A3: return "WM_DDE_DATA"; | |
5125 | case 0x00A4: return "WM_DDE_ADVISE"; | |
5126 | case 0x00A5: return "WM_DDE_UNADVISE"; | |
5127 | case 0x00A6: return "WM_DDE_POKE"; | |
5128 | case 0x00A7: return "WM_DDE_EXECUTE"; | |
5129 | case 0x00A8: return "WM_DDE_TERMINATE"; | |
5130 | case 0x00A9: return "WM_DDE_INITIATEACK"; | |
5131 | case 0x00AF: return "WM_DDE_LAST"; | |
5132 | // Buttons | |
5133 | case 0x0120: return "BM_CLICK"; | |
5134 | case 0x0121: return "BM_QUERYCHECKINDEX"; | |
5135 | case 0x0122: return "BM_QUERYHILITE"; | |
5136 | case 0x0123: return "BM_SETHILITE"; | |
5137 | case 0x0124: return "BM_QUERYCHECK"; | |
5138 | case 0x0125: return "BM_SETCHECK"; | |
5139 | case 0x0126: return "BM_SETDEFAULT"; | |
5140 | case 0x0128: return "BM_AUTOSIZE"; | |
5141 | // Combo boxes | |
5142 | case 0x029A: return "CBID_LIST"; | |
5143 | case 0x029B: return "CBID_EDIT"; | |
5144 | case 0x0170: return "CBM_SHOWLIST"; | |
5145 | case 0x0171: return "CBM_HILITE"; | |
5146 | case 0x0172: return "CBM_ISLISTSHOWING"; | |
5147 | // Edit fields | |
5148 | case 0x0140: return "EM_QUERYCHANGED"; | |
5149 | case 0x0141: return "EM_QUERYSEL"; | |
5150 | case 0x0142: return "EM_SETSEL"; | |
5151 | case 0x0143: return "EM_SETTEXTLIMIT"; | |
5152 | case 0x0144: return "EM_CUT"; | |
5153 | case 0x0145: return "EM_COPY"; | |
5154 | case 0x0146: return "EM_CLEAR"; | |
5155 | case 0x0147: return "EM_PASTE"; | |
5156 | case 0x0148: return "EM_QUERYFIRSTCHAR"; | |
5157 | case 0x0149: return "EM_SETFIRSTCHAR"; | |
5158 | case 0x014A: return "EM_QUERYREADONLY"; | |
5159 | case 0x014B: return "EM_SETREADONLY"; | |
5160 | case 0x014C: return "EM_SETINSERTMODE"; | |
5161 | // Listboxes | |
5162 | case 0x0160: return "LM_QUERYITEMCOUNT"; | |
5163 | case 0x0161: return "LM_INSERTITEM"; | |
5164 | case 0x0162: return "LM_SETOPENINDEX"; | |
5165 | case 0x0163: return "LM_DELETEITEM"; | |
5166 | case 0x0164: return "LM_SELECTITEM"; | |
5167 | case 0x0165: return "LM_QUERYSELECTION"; | |
5168 | case 0x0166: return "LM_SETITEMTEXT"; | |
5169 | case 0x0167: return "LM_QUERYITEMTEXTLENGTH"; | |
5170 | case 0x0168: return "LM_QUERYITEMTEXT"; | |
5171 | case 0x0169: return "LM_SETITEMHANDLE"; | |
5172 | case 0x016A: return "LM_QUERYITEMHANDLE"; | |
5173 | case 0x016B: return "LM_SEARCHSTRING"; | |
5174 | case 0x016C: return "LM_SETITEMHEIGHT"; | |
5175 | case 0x016D: return "LM_QUERYTOPINDEX"; | |
5176 | case 0x016E: return "LM_DELETEALL"; | |
5177 | case 0x016F: return "LM_INSERTMULITEMS"; | |
5178 | case 0x0660: return "LM_SETITEMWIDTH"; | |
5179 | // Menus | |
5180 | case 0x0180: return "MM_INSERTITEM"; | |
5181 | case 0x0181: return "MM_DELETEITEM"; | |
5182 | case 0x0182: return "MM_QUERYITEM"; | |
5183 | case 0x0183: return "MM_SETITEM"; | |
5184 | case 0x0184: return "MM_QUERYITEMCOUNT"; | |
5185 | case 0x0185: return "MM_STARTMENUMODE"; | |
5186 | case 0x0186: return "MM_ENDMENUMODE"; | |
5187 | case 0x0188: return "MM_REMOVEITEM"; | |
5188 | case 0x0189: return "MM_SELECTITEM"; | |
5189 | case 0x018A: return "MM_QUERYSELITEMID"; | |
5190 | case 0x018B: return "MM_QUERYITEMTEXT"; | |
5191 | case 0x018C: return "MM_QUERYITEMTEXTLENGTH"; | |
5192 | case 0x018D: return "MM_SETITEMHANDLE"; | |
5193 | case 0x018E: return "MM_SETITEMTEXT"; | |
5194 | case 0x018F: return "MM_ITEMPOSITIONFROMID"; | |
5195 | case 0x0190: return "MM_ITEMIDFROMPOSITION"; | |
5196 | case 0x0191: return "MM_QUERYITEMATTR"; | |
5197 | case 0x0192: return "MM_SETITEMATTR"; | |
5198 | case 0x0193: return "MM_ISITEMVALID"; | |
5199 | case 0x0194: return "MM_QUERYITEMRECT"; | |
5200 | case 0x0431: return "MM_QUERYDEFAULTITEMID"; | |
5201 | case 0x0432: return "MM_SETDEFAULTITEMID"; | |
5202 | // Scrollbars | |
5203 | case 0x01A0: return "SBM_SETSCROLLBAR"; | |
5204 | case 0x01A1: return "SBM_SETPOS"; | |
5205 | case 0x01A2: return "SBM_QUERYPOS"; | |
5206 | case 0x01A3: return "SBM_QUERYRANGE"; | |
5207 | case 0x01A6: return "SBM_SETTHUMBSIZE"; | |
5208 | ||
5209 | // Help messages | |
5210 | case 0x0F00: return "WM_HELPBASE"; | |
5211 | case 0x0FFF: return "WM_HELPTOP"; | |
5212 | // Beginning of user defined messages | |
5213 | case 0x1000: return "WM_USER"; | |
5214 | ||
5215 | // wxWindows user defined types | |
cdf1e714 DW |
5216 | |
5217 | // listview | |
61243a51 | 5218 | // case 0x1000 + 0: return "LVM_GETBKCOLOR"; |
cdf1e714 DW |
5219 | case 0x1000 + 1: return "LVM_SETBKCOLOR"; |
5220 | case 0x1000 + 2: return "LVM_GETIMAGELIST"; | |
5221 | case 0x1000 + 3: return "LVM_SETIMAGELIST"; | |
5222 | case 0x1000 + 4: return "LVM_GETITEMCOUNT"; | |
5223 | case 0x1000 + 5: return "LVM_GETITEMA"; | |
5224 | case 0x1000 + 75: return "LVM_GETITEMW"; | |
5225 | case 0x1000 + 6: return "LVM_SETITEMA"; | |
5226 | case 0x1000 + 76: return "LVM_SETITEMW"; | |
5227 | case 0x1000 + 7: return "LVM_INSERTITEMA"; | |
5228 | case 0x1000 + 77: return "LVM_INSERTITEMW"; | |
5229 | case 0x1000 + 8: return "LVM_DELETEITEM"; | |
5230 | case 0x1000 + 9: return "LVM_DELETEALLITEMS"; | |
5231 | case 0x1000 + 10: return "LVM_GETCALLBACKMASK"; | |
5232 | case 0x1000 + 11: return "LVM_SETCALLBACKMASK"; | |
5233 | case 0x1000 + 12: return "LVM_GETNEXTITEM"; | |
5234 | case 0x1000 + 13: return "LVM_FINDITEMA"; | |
5235 | case 0x1000 + 83: return "LVM_FINDITEMW"; | |
5236 | case 0x1000 + 14: return "LVM_GETITEMRECT"; | |
5237 | case 0x1000 + 15: return "LVM_SETITEMPOSITION"; | |
5238 | case 0x1000 + 16: return "LVM_GETITEMPOSITION"; | |
5239 | case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA"; | |
5240 | case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW"; | |
5241 | case 0x1000 + 18: return "LVM_HITTEST"; | |
5242 | case 0x1000 + 19: return "LVM_ENSUREVISIBLE"; | |
5243 | case 0x1000 + 20: return "LVM_SCROLL"; | |
5244 | case 0x1000 + 21: return "LVM_REDRAWITEMS"; | |
5245 | case 0x1000 + 22: return "LVM_ARRANGE"; | |
5246 | case 0x1000 + 23: return "LVM_EDITLABELA"; | |
5247 | case 0x1000 + 118: return "LVM_EDITLABELW"; | |
5248 | case 0x1000 + 24: return "LVM_GETEDITCONTROL"; | |
5249 | case 0x1000 + 25: return "LVM_GETCOLUMNA"; | |
5250 | case 0x1000 + 95: return "LVM_GETCOLUMNW"; | |
5251 | case 0x1000 + 26: return "LVM_SETCOLUMNA"; | |
5252 | case 0x1000 + 96: return "LVM_SETCOLUMNW"; | |
5253 | case 0x1000 + 27: return "LVM_INSERTCOLUMNA"; | |
5254 | case 0x1000 + 97: return "LVM_INSERTCOLUMNW"; | |
5255 | case 0x1000 + 28: return "LVM_DELETECOLUMN"; | |
5256 | case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH"; | |
5257 | case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH"; | |
5258 | case 0x1000 + 31: return "LVM_GETHEADER"; | |
5259 | case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE"; | |
5260 | case 0x1000 + 34: return "LVM_GETVIEWRECT"; | |
5261 | case 0x1000 + 35: return "LVM_GETTEXTCOLOR"; | |
5262 | case 0x1000 + 36: return "LVM_SETTEXTCOLOR"; | |
5263 | case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR"; | |
5264 | case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR"; | |
5265 | case 0x1000 + 39: return "LVM_GETTOPINDEX"; | |
5266 | case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE"; | |
5267 | case 0x1000 + 41: return "LVM_GETORIGIN"; | |
5268 | case 0x1000 + 42: return "LVM_UPDATE"; | |
5269 | case 0x1000 + 43: return "LVM_SETITEMSTATE"; | |
5270 | case 0x1000 + 44: return "LVM_GETITEMSTATE"; | |
5271 | case 0x1000 + 45: return "LVM_GETITEMTEXTA"; | |
5272 | case 0x1000 + 115: return "LVM_GETITEMTEXTW"; | |
5273 | case 0x1000 + 46: return "LVM_SETITEMTEXTA"; | |
5274 | case 0x1000 + 116: return "LVM_SETITEMTEXTW"; | |
5275 | case 0x1000 + 47: return "LVM_SETITEMCOUNT"; | |
5276 | case 0x1000 + 48: return "LVM_SORTITEMS"; | |
5277 | case 0x1000 + 49: return "LVM_SETITEMPOSITION32"; | |
5278 | case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT"; | |
5279 | case 0x1000 + 51: return "LVM_GETITEMSPACING"; | |
5280 | case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA"; | |
5281 | case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW"; | |
5282 | case 0x1000 + 53: return "LVM_SETICONSPACING"; | |
5283 | case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE"; | |
5284 | case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE"; | |
5285 | case 0x1000 + 56: return "LVM_GETSUBITEMRECT"; | |
5286 | case 0x1000 + 57: return "LVM_SUBITEMHITTEST"; | |
5287 | case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY"; | |
5288 | case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY"; | |
5289 | case 0x1000 + 60: return "LVM_SETHOTITEM"; | |
5290 | case 0x1000 + 61: return "LVM_GETHOTITEM"; | |
5291 | case 0x1000 + 62: return "LVM_SETHOTCURSOR"; | |
5292 | case 0x1000 + 63: return "LVM_GETHOTCURSOR"; | |
5293 | case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT"; | |
5294 | case 0x1000 + 65: return "LVM_SETWORKAREA"; | |
5295 | ||
5296 | // tree view | |
5297 | case 0x1100 + 0: return "TVM_INSERTITEMA"; | |
5298 | case 0x1100 + 50: return "TVM_INSERTITEMW"; | |
5299 | case 0x1100 + 1: return "TVM_DELETEITEM"; | |
5300 | case 0x1100 + 2: return "TVM_EXPAND"; | |
5301 | case 0x1100 + 4: return "TVM_GETITEMRECT"; | |
5302 | case 0x1100 + 5: return "TVM_GETCOUNT"; | |
5303 | case 0x1100 + 6: return "TVM_GETINDENT"; | |
5304 | case 0x1100 + 7: return "TVM_SETINDENT"; | |
5305 | case 0x1100 + 8: return "TVM_GETIMAGELIST"; | |
5306 | case 0x1100 + 9: return "TVM_SETIMAGELIST"; | |
5307 | case 0x1100 + 10: return "TVM_GETNEXTITEM"; | |
5308 | case 0x1100 + 11: return "TVM_SELECTITEM"; | |
5309 | case 0x1100 + 12: return "TVM_GETITEMA"; | |
5310 | case 0x1100 + 62: return "TVM_GETITEMW"; | |
5311 | case 0x1100 + 13: return "TVM_SETITEMA"; | |
5312 | case 0x1100 + 63: return "TVM_SETITEMW"; | |
5313 | case 0x1100 + 14: return "TVM_EDITLABELA"; | |
5314 | case 0x1100 + 65: return "TVM_EDITLABELW"; | |
5315 | case 0x1100 + 15: return "TVM_GETEDITCONTROL"; | |
5316 | case 0x1100 + 16: return "TVM_GETVISIBLECOUNT"; | |
5317 | case 0x1100 + 17: return "TVM_HITTEST"; | |
5318 | case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE"; | |
5319 | case 0x1100 + 19: return "TVM_SORTCHILDREN"; | |
5320 | case 0x1100 + 20: return "TVM_ENSUREVISIBLE"; | |
5321 | case 0x1100 + 21: return "TVM_SORTCHILDRENCB"; | |
5322 | case 0x1100 + 22: return "TVM_ENDEDITLABELNOW"; | |
5323 | case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA"; | |
5324 | case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW"; | |
5325 | case 0x1100 + 24: return "TVM_SETTOOLTIPS"; | |
5326 | case 0x1100 + 25: return "TVM_GETTOOLTIPS"; | |
5327 | ||
5328 | // header | |
5329 | case 0x1200 + 0: return "HDM_GETITEMCOUNT"; | |
5330 | case 0x1200 + 1: return "HDM_INSERTITEMA"; | |
5331 | case 0x1200 + 10: return "HDM_INSERTITEMW"; | |
5332 | case 0x1200 + 2: return "HDM_DELETEITEM"; | |
5333 | case 0x1200 + 3: return "HDM_GETITEMA"; | |
5334 | case 0x1200 + 11: return "HDM_GETITEMW"; | |
5335 | case 0x1200 + 4: return "HDM_SETITEMA"; | |
5336 | case 0x1200 + 12: return "HDM_SETITEMW"; | |
5337 | case 0x1200 + 5: return "HDM_LAYOUT"; | |
5338 | case 0x1200 + 6: return "HDM_HITTEST"; | |
5339 | case 0x1200 + 7: return "HDM_GETITEMRECT"; | |
5340 | case 0x1200 + 8: return "HDM_SETIMAGELIST"; | |
5341 | case 0x1200 + 9: return "HDM_GETIMAGELIST"; | |
5342 | case 0x1200 + 15: return "HDM_ORDERTOINDEX"; | |
5343 | case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE"; | |
5344 | case 0x1200 + 17: return "HDM_GETORDERARRAY"; | |
5345 | case 0x1200 + 18: return "HDM_SETORDERARRAY"; | |
5346 | case 0x1200 + 19: return "HDM_SETHOTDIVIDER"; | |
5347 | ||
5348 | // tab control | |
5349 | case 0x1300 + 2: return "TCM_GETIMAGELIST"; | |
5350 | case 0x1300 + 3: return "TCM_SETIMAGELIST"; | |
5351 | case 0x1300 + 4: return "TCM_GETITEMCOUNT"; | |
5352 | case 0x1300 + 5: return "TCM_GETITEMA"; | |
5353 | case 0x1300 + 60: return "TCM_GETITEMW"; | |
5354 | case 0x1300 + 6: return "TCM_SETITEMA"; | |
5355 | case 0x1300 + 61: return "TCM_SETITEMW"; | |
5356 | case 0x1300 + 7: return "TCM_INSERTITEMA"; | |
5357 | case 0x1300 + 62: return "TCM_INSERTITEMW"; | |
5358 | case 0x1300 + 8: return "TCM_DELETEITEM"; | |
5359 | case 0x1300 + 9: return "TCM_DELETEALLITEMS"; | |
5360 | case 0x1300 + 10: return "TCM_GETITEMRECT"; | |
5361 | case 0x1300 + 11: return "TCM_GETCURSEL"; | |
5362 | case 0x1300 + 12: return "TCM_SETCURSEL"; | |
5363 | case 0x1300 + 13: return "TCM_HITTEST"; | |
5364 | case 0x1300 + 14: return "TCM_SETITEMEXTRA"; | |
5365 | case 0x1300 + 40: return "TCM_ADJUSTRECT"; | |
5366 | case 0x1300 + 41: return "TCM_SETITEMSIZE"; | |
5367 | case 0x1300 + 42: return "TCM_REMOVEIMAGE"; | |
5368 | case 0x1300 + 43: return "TCM_SETPADDING"; | |
5369 | case 0x1300 + 44: return "TCM_GETROWCOUNT"; | |
5370 | case 0x1300 + 45: return "TCM_GETTOOLTIPS"; | |
5371 | case 0x1300 + 46: return "TCM_SETTOOLTIPS"; | |
5372 | case 0x1300 + 47: return "TCM_GETCURFOCUS"; | |
5373 | case 0x1300 + 48: return "TCM_SETCURFOCUS"; | |
5374 | case 0x1300 + 49: return "TCM_SETMINTABWIDTH"; | |
5375 | case 0x1300 + 50: return "TCM_DESELECTALL"; | |
5376 | ||
5377 | // toolbar | |
61243a51 DW |
5378 | case WM_USER+1000+1: return "TB_ENABLEBUTTON"; |
5379 | case WM_USER+1000+2: return "TB_CHECKBUTTON"; | |
5380 | case WM_USER+1000+3: return "TB_PRESSBUTTON"; | |
5381 | case WM_USER+1000+4: return "TB_HIDEBUTTON"; | |
5382 | case WM_USER+1000+5: return "TB_INDETERMINATE"; | |
5383 | case WM_USER+1000+9: return "TB_ISBUTTONENABLED"; | |
5384 | case WM_USER+1000+10: return "TB_ISBUTTONCHECKED"; | |
5385 | case WM_USER+1000+11: return "TB_ISBUTTONPRESSED"; | |
5386 | case WM_USER+1000+12: return "TB_ISBUTTONHIDDEN"; | |
5387 | case WM_USER+1000+13: return "TB_ISBUTTONINDETERMINATE"; | |
5388 | case WM_USER+1000+17: return "TB_SETSTATE"; | |
5389 | case WM_USER+1000+18: return "TB_GETSTATE"; | |
5390 | case WM_USER+1000+19: return "TB_ADDBITMAP"; | |
5391 | case WM_USER+1000+20: return "TB_ADDBUTTONS"; | |
5392 | case WM_USER+1000+21: return "TB_INSERTBUTTON"; | |
5393 | case WM_USER+1000+22: return "TB_DELETEBUTTON"; | |
5394 | case WM_USER+1000+23: return "TB_GETBUTTON"; | |
5395 | case WM_USER+1000+24: return "TB_BUTTONCOUNT"; | |
5396 | case WM_USER+1000+25: return "TB_COMMANDTOINDEX"; | |
5397 | case WM_USER+1000+26: return "TB_SAVERESTOREA"; | |
5398 | case WM_USER+1000+76: return "TB_SAVERESTOREW"; | |
5399 | case WM_USER+1000+27: return "TB_CUSTOMIZE"; | |
5400 | case WM_USER+1000+28: return "TB_ADDSTRINGA"; | |
5401 | case WM_USER+1000+77: return "TB_ADDSTRINGW"; | |
5402 | case WM_USER+1000+29: return "TB_GETITEMRECT"; | |
5403 | case WM_USER+1000+30: return "TB_BUTTONSTRUCTSIZE"; | |
5404 | case WM_USER+1000+31: return "TB_SETBUTTONSIZE"; | |
5405 | case WM_USER+1000+32: return "TB_SETBITMAPSIZE"; | |
5406 | case WM_USER+1000+33: return "TB_AUTOSIZE"; | |
5407 | case WM_USER+1000+35: return "TB_GETTOOLTIPS"; | |
5408 | case WM_USER+1000+36: return "TB_SETTOOLTIPS"; | |
5409 | case WM_USER+1000+37: return "TB_SETPARENT"; | |
5410 | case WM_USER+1000+39: return "TB_SETROWS"; | |
5411 | case WM_USER+1000+40: return "TB_GETROWS"; | |
5412 | case WM_USER+1000+42: return "TB_SETCMDID"; | |
5413 | case WM_USER+1000+43: return "TB_CHANGEBITMAP"; | |
5414 | case WM_USER+1000+44: return "TB_GETBITMAP"; | |
5415 | case WM_USER+1000+45: return "TB_GETBUTTONTEXTA"; | |
5416 | case WM_USER+1000+75: return "TB_GETBUTTONTEXTW"; | |
5417 | case WM_USER+1000+46: return "TB_REPLACEBITMAP"; | |
5418 | case WM_USER+1000+47: return "TB_SETINDENT"; | |
5419 | case WM_USER+1000+48: return "TB_SETIMAGELIST"; | |
5420 | case WM_USER+1000+49: return "TB_GETIMAGELIST"; | |
5421 | case WM_USER+1000+50: return "TB_LOADIMAGES"; | |
5422 | case WM_USER+1000+51: return "TB_GETRECT"; | |
5423 | case WM_USER+1000+52: return "TB_SETHOTIMAGELIST"; | |
5424 | case WM_USER+1000+53: return "TB_GETHOTIMAGELIST"; | |
5425 | case WM_USER+1000+54: return "TB_SETDISABLEDIMAGELIST"; | |
5426 | case WM_USER+1000+55: return "TB_GETDISABLEDIMAGELIST"; | |
5427 | case WM_USER+1000+56: return "TB_SETSTYLE"; | |
5428 | case WM_USER+1000+57: return "TB_GETSTYLE"; | |
5429 | case WM_USER+1000+58: return "TB_GETBUTTONSIZE"; | |
5430 | case WM_USER+1000+59: return "TB_SETBUTTONWIDTH"; | |
5431 | case WM_USER+1000+60: return "TB_SETMAXTEXTROWS"; | |
5432 | case WM_USER+1000+61: return "TB_GETTEXTROWS"; | |
5433 | case WM_USER+1000+41: return "TB_GETBITMAPFLAGS"; | |
cdf1e714 DW |
5434 | |
5435 | default: | |
5436 | static char s_szBuf[128]; | |
61243a51 | 5437 | sprintf(s_szBuf, "<unknown message = %d>", nMessage); |
cdf1e714 | 5438 | return s_szBuf; |
86de7616 | 5439 | } |
cdf1e714 | 5440 | return NULL; |
61243a51 | 5441 | } // end of wxGetMessageName |
86de7616 | 5442 | |
11e59d47 DW |
5443 | #endif // __WXDEBUG__ |
5444 | ||
19193a2c KB |
5445 | // Unused? |
5446 | #if 0 | |
61243a51 DW |
5447 | static void TranslateKbdEventToMouse( |
5448 | wxWindow* pWin | |
5449 | , int* pX | |
5450 | , int* pY | |
5451 | , ULONG* pFlags | |
5452 | ) | |
5453 | { | |
5454 | // | |
5455 | // Construct the key mask | |
5456 | ULONG& fwKeys = *pFlags; | |
5457 | ||
5458 | fwKeys = VK_BUTTON2; | |
5459 | if ((::WinGetKeyState(HWND_DESKTOP, VK_CTRL) & 0x100) != 0) | |
5460 | fwKeys |= VK_CTRL; | |
5461 | if ((::WinGetKeyState(HWND_DESKTOP, VK_SHIFT) & 0x100) != 0) | |
5462 | fwKeys |= VK_SHIFT; | |
5463 | ||
5464 | // | |
5465 | // Simulate right mouse button click | |
5466 | // | |
5467 | POINTL vPoint; | |
5468 | ||
5469 | ::WinQueryMsgPos(vHabmain, &vPoint); | |
5470 | *pX = vPoint.x; | |
5471 | *pY = vPoint.y; | |
5472 | ||
5473 | pWin->ScreenToClient(pX, pY); | |
5474 | } // end of TranslateKbdEventToMouse | |
19193a2c | 5475 | #endif |
61243a51 | 5476 | |
cd212ee4 DW |
5477 | // Find the wxWindow at the current mouse position, returning the mouse |
5478 | // position. | |
f44fdfb0 | 5479 | wxWindow* wxFindWindowAtPointer( |
19193a2c | 5480 | wxPoint& WXUNUSED(rPt) |
f44fdfb0 | 5481 | ) |
cd212ee4 DW |
5482 | { |
5483 | return wxFindWindowAtPoint(wxGetMousePosition()); | |
5484 | } | |
5485 | ||
f44fdfb0 DW |
5486 | wxWindow* wxFindWindowAtPoint( |
5487 | const wxPoint& rPt | |
5488 | ) | |
cd212ee4 | 5489 | { |
f44fdfb0 | 5490 | POINTL vPt2; |
cd212ee4 | 5491 | |
f44fdfb0 DW |
5492 | vPt2.x = rPt.x; |
5493 | vPt2.y = rPt.y; | |
cd212ee4 | 5494 | |
f44fdfb0 DW |
5495 | HWND hWndHit = ::WinWindowFromPoint(HWND_DESKTOP, &vPt2, FALSE); |
5496 | wxWindow* pWin = wxFindWinFromHandle((WXHWND)hWndHit) ; | |
5497 | HWND hWnd = hWndHit; | |
5498 | ||
5499 | // | |
cd212ee4 | 5500 | // Try to find a window with a wxWindow associated with it |
f44fdfb0 DW |
5501 | // |
5502 | while (!pWin && (hWnd != 0)) | |
cd212ee4 | 5503 | { |
f44fdfb0 DW |
5504 | hWnd = ::WinQueryWindow(hWnd, QW_PARENT); |
5505 | pWin = wxFindWinFromHandle((WXHWND)hWnd) ; | |
cd212ee4 | 5506 | } |
f44fdfb0 | 5507 | return pWin; |
cd212ee4 DW |
5508 | } |
5509 | ||
f44fdfb0 DW |
5510 | // Get the current mouse position. |
5511 | wxPoint wxGetMousePosition() | |
5512 | { | |
5513 | POINTL vPt; | |
5514 | ||
5515 | ::WinQueryPointerPos(HWND_DESKTOP, &vPt); | |
5516 | return wxPoint(vPt.x, vPt.y); | |
5517 | } | |
cd212ee4 | 5518 | |
430974f8 DW |
5519 | wxWindowOS2* FindWindowForMouseEvent( |
5520 | wxWindow* pWin | |
5521 | , short* pnX | |
5522 | , short* pnY | |
5523 | ) | |
5524 | { | |
430974f8 DW |
5525 | HWND hWnd = GetHwndOf(pWin); |
5526 | HWND hWndUnderMouse; | |
b720b24d DW |
5527 | POINTL vPoint; |
5528 | BOOL rcEnabled = FALSE; | |
5529 | BOOL rcVisible = FALSE; | |
5530 | HWND hWndDesktop = HWND_DESKTOP; | |
430974f8 | 5531 | |
b720b24d DW |
5532 | ::WinQueryPointerPos(HWND_DESKTOP, &vPoint); |
5533 | hWndUnderMouse = ::WinWindowFromPoint(HWND_DESKTOP, &vPoint, TRUE); | |
5534 | if (hWndUnderMouse != HWND_DESKTOP) | |
430974f8 | 5535 | { |
b720b24d DW |
5536 | wxWindow* pWinUnderMouse = wxFindWinFromHandle((WXHWND)hWndUnderMouse); |
5537 | ||
5538 | if (pWinUnderMouse) | |
5539 | { | |
5540 | wxWindowList::Node* pCurrent = pWinUnderMouse->GetChildren().GetFirst(); | |
5541 | wxWindow* pChild = NULL; | |
5542 | wxWindow* pGrandChild = NULL; | |
5543 | RECTL vRect; | |
5544 | POINTL vPoint2; | |
5545 | ||
5546 | ::WinMapWindowPoints(HWND_DESKTOP, hWndUnderMouse, &vPoint, 1); | |
5547 | // | |
5548 | // Find a child window mouse might be under | |
5549 | // | |
5550 | while (pCurrent) | |
5551 | { | |
5552 | wxWindow* pChild = pCurrent->GetData(); | |
5553 | ||
5554 | vPoint2.x = vPoint.x; | |
5555 | vPoint2.y = vPoint.y; | |
5556 | ::WinMapWindowPoints(hWndUnderMouse, pChild->GetHWND(), &vPoint2, 1); | |
5557 | ::WinQueryWindowRect(pChild->GetHWND(), &vRect); | |
5558 | if (::WinPtInRect(vHabmain, &vRect, &vPoint2)) | |
5559 | { | |
5560 | if (pChild->IsTopLevel()) | |
5561 | { | |
5562 | POINTL vPoint3; | |
5563 | wxWindowList::Node* pCurrent2 =pChild->GetChildren().GetFirst(); | |
430974f8 | 5564 | |
b720b24d DW |
5565 | while (pCurrent2) |
5566 | { | |
5567 | wxWindow* pGrandChild = pCurrent2->GetData(); | |
5568 | ||
5569 | vPoint3.x = vPoint2.x; | |
5570 | vPoint3.y = vPoint2.y; | |
5571 | ::WinMapWindowPoints( pChild->GetHWND() | |
5572 | ,pGrandChild->GetHWND() | |
5573 | ,&vPoint3 | |
5574 | ,1 | |
5575 | ); | |
5576 | ::WinQueryWindowRect(pGrandChild->GetHWND(), &vRect); | |
5577 | if (::WinPtInRect(vHabmain, &vRect, &vPoint3)) | |
5578 | { | |
5579 | hWndUnderMouse = GetHwndOf(pGrandChild); | |
5580 | pWinUnderMouse = pGrandChild; | |
5581 | break; | |
5582 | } | |
5583 | pCurrent2 = pCurrent2->GetNext(); | |
5584 | } | |
5585 | if (pGrandChild) | |
5586 | break; | |
5587 | } | |
5588 | hWndUnderMouse = GetHwndOf(pChild); | |
5589 | pWinUnderMouse = pChild; | |
5590 | rcVisible = ::WinIsWindowVisible(hWndUnderMouse); | |
5591 | rcEnabled = ::WinIsWindowEnabled(hWndUnderMouse); | |
5592 | if (rcVisible && rcEnabled) | |
5593 | break; | |
5594 | } | |
5595 | pCurrent = pCurrent->GetNext(); | |
5596 | } | |
5597 | } | |
430974f8 | 5598 | } |
b720b24d DW |
5599 | rcVisible = ::WinIsWindowVisible(hWndUnderMouse); |
5600 | rcEnabled = ::WinIsWindowEnabled(hWndUnderMouse); | |
5601 | ||
430974f8 DW |
5602 | |
5603 | // | |
5604 | // Check that we have a child window which is susceptible to receive mouse | |
5605 | // events: for this it must be shown and enabled | |
b720b24d | 5606 | // |
430974f8 DW |
5607 | if ( hWndUnderMouse && |
5608 | hWndUnderMouse != hWnd && | |
b720b24d | 5609 | rcVisible && rcEnabled) |
430974f8 | 5610 | { |
b720b24d DW |
5611 | wxWindow* pWinUnderMouse = wxFindWinFromHandle((WXHWND)hWndUnderMouse); |
5612 | ||
430974f8 DW |
5613 | if (pWinUnderMouse) |
5614 | { | |
b720b24d DW |
5615 | // |
5616 | // Translate the mouse coords to the other window coords | |
5617 | // | |
430974f8 DW |
5618 | pWin = pWinUnderMouse; |
5619 | } | |
5620 | } | |
5621 | return pWin; | |
5622 | } // end of FindWindowForMouseEvent | |
5623 |