]> git.saurik.com Git - wxWidgets.git/blob - src/msw/window.cpp
3efc43f1e9d193c068251eec599afd9c6fa152da
[wxWidgets.git] / src / msw / window.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/window.cpp
3 // Purpose: wxWindowMSW
4 // Author: Julian Smart
5 // Modified by: VZ on 13.05.99: no more Default(), MSWOnXXX() reorganisation
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ===========================================================================
13 // declarations
14 // ===========================================================================
15
16 // ---------------------------------------------------------------------------
17 // headers
18 // ---------------------------------------------------------------------------
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #include "wx/window.h"
28
29 #ifndef WX_PRECOMP
30 #include "wx/msw/wrapwin.h"
31 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
32 #include "wx/msw/missing.h"
33 #include "wx/accel.h"
34 #include "wx/menu.h"
35 #include "wx/dc.h"
36 #include "wx/dcclient.h"
37 #include "wx/dcmemory.h"
38 #include "wx/utils.h"
39 #include "wx/app.h"
40 #include "wx/layout.h"
41 #include "wx/dialog.h"
42 #include "wx/frame.h"
43 #include "wx/listbox.h"
44 #include "wx/button.h"
45 #include "wx/msgdlg.h"
46 #include "wx/settings.h"
47 #include "wx/statbox.h"
48 #include "wx/sizer.h"
49 #include "wx/intl.h"
50 #include "wx/log.h"
51 #include "wx/textctrl.h"
52 #include "wx/menuitem.h"
53 #include "wx/module.h"
54 #endif
55
56 #if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__)
57 #include "wx/ownerdrw.h"
58 #endif
59
60 #include "wx/hashmap.h"
61 #include "wx/evtloop.h"
62 #include "wx/power.h"
63 #include "wx/sysopt.h"
64
65 #if wxUSE_DRAG_AND_DROP
66 #include "wx/dnd.h"
67 #endif
68
69 #if wxUSE_ACCESSIBILITY
70 #include "wx/access.h"
71 #include <ole2.h>
72 #include <oleacc.h>
73 #ifndef WM_GETOBJECT
74 #define WM_GETOBJECT 0x003D
75 #endif
76 #ifndef OBJID_CLIENT
77 #define OBJID_CLIENT 0xFFFFFFFC
78 #endif
79 #endif
80
81 #include "wx/msw/private.h"
82 #include "wx/msw/dcclient.h"
83
84 #if wxUSE_TOOLTIPS
85 #include "wx/tooltip.h"
86 #endif
87
88 #if wxUSE_CARET
89 #include "wx/caret.h"
90 #endif // wxUSE_CARET
91
92 #if wxUSE_SPINCTRL
93 #include "wx/spinctrl.h"
94 #endif // wxUSE_SPINCTRL
95
96 #include "wx/notebook.h"
97 #include "wx/listctrl.h"
98 #include "wx/dynlib.h"
99
100 #include <string.h>
101
102 #if (!defined(__GNUWIN32_OLD__) && !defined(__WXMICROWIN__) /* && !defined(__WXWINCE__) */ ) || defined(__CYGWIN10__)
103 #include <shellapi.h>
104 #include <mmsystem.h>
105 #endif
106
107 #ifdef __WIN32__
108 #include <windowsx.h>
109 #endif
110
111 #if !defined __WXWINCE__ && !defined NEED_PBT_H
112 #include <pbt.h>
113 #endif
114
115 #if defined(__WXWINCE__)
116 #include "wx/msw/wince/missing.h"
117 #ifdef __POCKETPC__
118 #include <windows.h>
119 #include <shellapi.h>
120 #include <ole2.h>
121 #include <aygshell.h>
122 #endif
123 #endif
124
125 #if wxUSE_UXTHEME
126 #include "wx/msw/uxtheme.h"
127 #define EP_EDITTEXT 1
128 #define ETS_NORMAL 1
129 #define ETS_HOT 2
130 #define ETS_SELECTED 3
131 #define ETS_DISABLED 4
132 #define ETS_FOCUSED 5
133 #define ETS_READONLY 6
134 #define ETS_ASSIST 7
135 #endif
136
137 // define the constants used by AnimateWindow() if our SDK doesn't have them
138 #ifndef AW_CENTER
139 #define AW_HOR_POSITIVE 0x00000001
140 #define AW_HOR_NEGATIVE 0x00000002
141 #define AW_VER_POSITIVE 0x00000004
142 #define AW_VER_NEGATIVE 0x00000008
143 #define AW_CENTER 0x00000010
144 #define AW_HIDE 0x00010000
145 #define AW_ACTIVATE 0x00020000
146 #define AW_SLIDE 0x00040000
147 #define AW_BLEND 0x00080000
148 #endif
149
150 #if defined(TME_LEAVE) && defined(WM_MOUSELEAVE) && wxUSE_DYNLIB_CLASS
151 #define HAVE_TRACKMOUSEEVENT
152 #endif // everything needed for TrackMouseEvent()
153
154 // if this is set to 1, we use deferred window sizing to reduce flicker when
155 // resizing complicated window hierarchies, but this can in theory result in
156 // different behaviour than the old code so we keep the possibility to use it
157 // by setting this to 0 (in the future this should be removed completely)
158 #ifdef __WXWINCE__
159 #define USE_DEFERRED_SIZING 0
160 #else
161 #define USE_DEFERRED_SIZING 1
162 #endif
163
164 // set this to 1 to filter out duplicate mouse events, e.g. mouse move events
165 // when mouse position didnd't change
166 #ifdef __WXWINCE__
167 #define wxUSE_MOUSEEVENT_HACK 0
168 #else
169 #define wxUSE_MOUSEEVENT_HACK 1
170 #endif
171
172 // not all compilers/platforms have X button related declarations (notably
173 // Windows CE doesn't, and probably some old SDKs don't neither)
174 #ifdef WM_XBUTTONDOWN
175 #define wxHAS_XBUTTON
176 #endif
177
178 // ---------------------------------------------------------------------------
179 // global variables
180 // ---------------------------------------------------------------------------
181
182 #if wxUSE_MENUS_NATIVE
183 extern wxMenu *wxCurrentPopupMenu;
184 #endif
185
186 #ifdef __WXWINCE__
187 extern wxChar *wxCanvasClassName;
188 #else
189 extern const wxChar *wxCanvasClassName;
190 #endif
191
192 // true if we had already created the std colour map, used by
193 // wxGetStdColourMap() and wxWindow::OnSysColourChanged() (FIXME-MT)
194 static bool gs_hasStdCmap = false;
195
196 // last mouse event information we need to filter out the duplicates
197 #if wxUSE_MOUSEEVENT_HACK
198 static struct MouseEventInfoDummy
199 {
200 // mouse position (in screen coordinates)
201 wxPoint pos;
202
203 // last mouse event type
204 wxEventType type;
205 } gs_lastMouseEvent;
206 #endif // wxUSE_MOUSEEVENT_HACK
207
208 // hash containing the registered handlers for the custom messages
209 WX_DECLARE_HASH_MAP(int, wxWindow::MSWMessageHandler,
210 wxIntegerHash, wxIntegerEqual,
211 MSWMessageHandlers);
212
213 static MSWMessageHandlers gs_messageHandlers;
214
215 // hash containing all our windows, it uses HWND keys and wxWindow* values
216 WX_DECLARE_HASH_MAP(HWND, wxWindow *,
217 wxPointerHash, wxPointerEqual,
218 WindowHandles);
219
220 static WindowHandles gs_windowHandles;
221
222 // ---------------------------------------------------------------------------
223 // private functions
224 // ---------------------------------------------------------------------------
225
226 // the window proc for all our windows
227 LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message,
228 WPARAM wParam, LPARAM lParam);
229
230
231 #ifdef __WXDEBUG__
232 const wxChar *wxGetMessageName(int message);
233 #endif //__WXDEBUG__
234
235 void wxRemoveHandleAssociation(wxWindowMSW *win);
236 extern void wxAssociateWinWithHandle(HWND hWnd, wxWindowMSW *win);
237
238 // get the text metrics for the current font
239 static TEXTMETRIC wxGetTextMetrics(const wxWindowMSW *win);
240
241 #ifdef __WXWINCE__
242 // find the window for the mouse event at the specified position
243 static wxWindowMSW *FindWindowForMouseEvent(wxWindowMSW *win, int *x, int *y);
244 #endif // __WXWINCE__
245
246 // wrapper around BringWindowToTop() API
247 static inline void wxBringWindowToTop(HWND hwnd)
248 {
249 #ifdef __WXMICROWIN__
250 // It seems that MicroWindows brings the _parent_ of the window to the top,
251 // which can be the wrong one.
252
253 // activate (set focus to) specified window
254 ::SetFocus(hwnd);
255 #endif
256
257 // raise top level parent to top of z order
258 if (!::SetWindowPos(hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE))
259 {
260 wxLogLastError(_T("SetWindowPos"));
261 }
262 }
263
264 #ifndef __WXWINCE__
265
266 // ensure that all our parent windows have WS_EX_CONTROLPARENT style
267 static void EnsureParentHasControlParentStyle(wxWindow *parent)
268 {
269 /*
270 If we have WS_EX_CONTROLPARENT flag we absolutely *must* set it for our
271 parent as well as otherwise several Win32 functions using
272 GetNextDlgTabItem() to iterate over all controls such as
273 IsDialogMessage() or DefDlgProc() would enter an infinite loop: indeed,
274 all of them iterate over all the controls starting from the currently
275 focused one and stop iterating when they get back to the focus but
276 unless all parents have WS_EX_CONTROLPARENT bit set, they would never
277 get back to the initial (focused) window: as we do have this style,
278 GetNextDlgTabItem() will leave this window and continue in its parent,
279 but if the parent doesn't have it, it wouldn't recurse inside it later
280 on and so wouldn't have a chance of getting back to this window either.
281 */
282 while ( parent && !parent->IsTopLevel() )
283 {
284 LONG exStyle = ::GetWindowLong(GetHwndOf(parent), GWL_EXSTYLE);
285 if ( !(exStyle & WS_EX_CONTROLPARENT) )
286 {
287 // force the parent to have this style
288 ::SetWindowLong(GetHwndOf(parent), GWL_EXSTYLE,
289 exStyle | WS_EX_CONTROLPARENT);
290 }
291
292 parent = parent->GetParent();
293 }
294 }
295
296 #endif // !__WXWINCE__
297
298 #ifdef __WXWINCE__
299 // On Windows CE, GetCursorPos can return an error, so use this function
300 // instead
301 bool GetCursorPosWinCE(POINT* pt)
302 {
303 if (!GetCursorPos(pt))
304 {
305 DWORD pos = GetMessagePos();
306 pt->x = LOWORD(pos);
307 pt->y = HIWORD(pos);
308 }
309 return true;
310 }
311 #endif
312
313 // ---------------------------------------------------------------------------
314 // event tables
315 // ---------------------------------------------------------------------------
316
317 // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
318 // method
319 #ifdef __WXUNIVERSAL__
320 IMPLEMENT_ABSTRACT_CLASS(wxWindowMSW, wxWindowBase)
321 #else // __WXMSW__
322 #if wxUSE_EXTENDED_RTTI
323
324 // windows that are created from a parent window during its Create method, eg. spin controls in a calendar controls
325 // must never been streamed out separately otherwise chaos occurs. Right now easiest is to test for negative ids, as
326 // windows with negative ids never can be recreated anyway
327
328 bool wxWindowStreamingCallback( const wxObject *object, wxWriter * , wxPersister * , wxxVariantArray & )
329 {
330 const wxWindow * win = dynamic_cast<const wxWindow*>(object) ;
331 if ( win && win->GetId() < 0 )
332 return false ;
333 return true ;
334 }
335
336 IMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK(wxWindow, wxWindowBase,"wx/window.h", wxWindowStreamingCallback)
337
338 // make wxWindowList known before the property is used
339
340 wxCOLLECTION_TYPE_INFO( wxWindow* , wxWindowList ) ;
341
342 template<> void wxCollectionToVariantArray( wxWindowList const &theList, wxxVariantArray &value)
343 {
344 wxListCollectionToVariantArray<wxWindowList::compatibility_iterator>( theList , value ) ;
345 }
346
347 WX_DEFINE_FLAGS( wxWindowStyle )
348
349 wxBEGIN_FLAGS( wxWindowStyle )
350 // new style border flags, we put them first to
351 // use them for streaming out
352
353 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
354 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
355 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
356 wxFLAGS_MEMBER(wxBORDER_RAISED)
357 wxFLAGS_MEMBER(wxBORDER_STATIC)
358 wxFLAGS_MEMBER(wxBORDER_NONE)
359
360 // old style border flags
361 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
362 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
363 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
364 wxFLAGS_MEMBER(wxRAISED_BORDER)
365 wxFLAGS_MEMBER(wxSTATIC_BORDER)
366 wxFLAGS_MEMBER(wxBORDER)
367
368 // standard window styles
369 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
370 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
371 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
372 wxFLAGS_MEMBER(wxWANTS_CHARS)
373 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
374 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
375 wxFLAGS_MEMBER(wxVSCROLL)
376 wxFLAGS_MEMBER(wxHSCROLL)
377
378 wxEND_FLAGS( wxWindowStyle )
379
380 wxBEGIN_PROPERTIES_TABLE(wxWindow)
381 wxEVENT_PROPERTY( Close , wxEVT_CLOSE_WINDOW , wxCloseEvent)
382 wxEVENT_PROPERTY( Create , wxEVT_CREATE , wxWindowCreateEvent )
383 wxEVENT_PROPERTY( Destroy , wxEVT_DESTROY , wxWindowDestroyEvent )
384 // Always constructor Properties first
385
386 wxREADONLY_PROPERTY( Parent,wxWindow*, GetParent, EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
387 wxPROPERTY( Id,wxWindowID, SetId, GetId, -1 /*wxID_ANY*/ , 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
388 wxPROPERTY( Position,wxPoint, SetPosition , GetPosition, wxDefaultPosition , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // pos
389 wxPROPERTY( Size,wxSize, SetSize, GetSize, wxDefaultSize , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // size
390 wxPROPERTY( WindowStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
391
392 // Then all relations of the object graph
393
394 wxREADONLY_PROPERTY_COLLECTION( Children , wxWindowList , wxWindowBase* , GetWindowChildren , wxPROP_OBJECT_GRAPH /*flags*/ , wxT("Helpstring") , wxT("group"))
395
396 // and finally all other properties
397
398 wxPROPERTY( ExtraStyle , long , SetExtraStyle , GetExtraStyle , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // extstyle
399 wxPROPERTY( BackgroundColour , wxColour , SetBackgroundColour , GetBackgroundColour , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // bg
400 wxPROPERTY( ForegroundColour , wxColour , SetForegroundColour , GetForegroundColour , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // fg
401 wxPROPERTY( Enabled , bool , Enable , IsEnabled , wxxVariant((bool)true) , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
402 wxPROPERTY( Shown , bool , Show , IsShown , wxxVariant((bool)true) , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
403 #if 0
404 // possible property candidates (not in xrc) or not valid in all subclasses
405 wxPROPERTY( Title,wxString, SetTitle, GetTitle, wxEmptyString )
406 wxPROPERTY( Font , wxFont , SetFont , GetWindowFont , )
407 wxPROPERTY( Label,wxString, SetLabel, GetLabel, wxEmptyString )
408 // MaxHeight, Width , MinHeight , Width
409 // TODO switch label to control and title to toplevels
410
411 wxPROPERTY( ThemeEnabled , bool , SetThemeEnabled , GetThemeEnabled , )
412 //wxPROPERTY( Cursor , wxCursor , SetCursor , GetCursor , )
413 // wxPROPERTY( ToolTip , wxString , SetToolTip , GetToolTipText , )
414 wxPROPERTY( AutoLayout , bool , SetAutoLayout , GetAutoLayout , )
415
416
417
418 #endif
419 wxEND_PROPERTIES_TABLE()
420
421 wxBEGIN_HANDLERS_TABLE(wxWindow)
422 wxEND_HANDLERS_TABLE()
423
424 wxCONSTRUCTOR_DUMMY(wxWindow)
425
426 #else
427 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
428 #endif
429 #endif // __WXUNIVERSAL__/__WXMSW__
430
431 BEGIN_EVENT_TABLE(wxWindowMSW, wxWindowBase)
432 EVT_SYS_COLOUR_CHANGED(wxWindowMSW::OnSysColourChanged)
433 EVT_ERASE_BACKGROUND(wxWindowMSW::OnEraseBackground)
434 #ifdef __WXWINCE__
435 EVT_INIT_DIALOG(wxWindowMSW::OnInitDialog)
436 #endif
437 END_EVENT_TABLE()
438
439 // ===========================================================================
440 // implementation
441 // ===========================================================================
442
443 // ---------------------------------------------------------------------------
444 // wxWindow utility functions
445 // ---------------------------------------------------------------------------
446
447 // Find an item given the MS Windows id
448 wxWindow *wxWindowMSW::FindItem(long id) const
449 {
450 #if wxUSE_CONTROLS
451 wxControl *item = wxDynamicCastThis(wxControl);
452 if ( item )
453 {
454 // is it us or one of our "internal" children?
455 if ( item->GetId() == id
456 #ifndef __WXUNIVERSAL__
457 || (item->GetSubcontrols().Index(id) != wxNOT_FOUND)
458 #endif // __WXUNIVERSAL__
459 )
460 {
461 return item;
462 }
463 }
464 #endif // wxUSE_CONTROLS
465
466 wxWindowList::compatibility_iterator current = GetChildren().GetFirst();
467 while (current)
468 {
469 wxWindow *childWin = current->GetData();
470
471 wxWindow *wnd = childWin->FindItem(id);
472 if ( wnd )
473 return wnd;
474
475 current = current->GetNext();
476 }
477
478 return NULL;
479 }
480
481 // Find an item given the MS Windows handle
482 wxWindow *wxWindowMSW::FindItemByHWND(WXHWND hWnd, bool controlOnly) const
483 {
484 wxWindowList::compatibility_iterator current = GetChildren().GetFirst();
485 while (current)
486 {
487 wxWindow *parent = current->GetData();
488
489 // Do a recursive search.
490 wxWindow *wnd = parent->FindItemByHWND(hWnd);
491 if ( wnd )
492 return wnd;
493
494 if ( !controlOnly
495 #if wxUSE_CONTROLS
496 || parent->IsKindOf(CLASSINFO(wxControl))
497 #endif // wxUSE_CONTROLS
498 )
499 {
500 wxWindow *item = current->GetData();
501 if ( item->GetHWND() == hWnd )
502 return item;
503 else
504 {
505 if ( item->ContainsHWND(hWnd) )
506 return item;
507 }
508 }
509
510 current = current->GetNext();
511 }
512 return NULL;
513 }
514
515 // Default command handler
516 bool wxWindowMSW::MSWCommand(WXUINT WXUNUSED(param), WXWORD WXUNUSED(id))
517 {
518 return false;
519 }
520
521 // ----------------------------------------------------------------------------
522 // constructors and such
523 // ----------------------------------------------------------------------------
524
525 void wxWindowMSW::Init()
526 {
527 // MSW specific
528 m_isBeingDeleted = false;
529 m_oldWndProc = NULL;
530 m_mouseInWindow = false;
531 m_lastKeydownProcessed = false;
532
533 m_hWnd = 0;
534 m_hDWP = 0;
535
536 m_xThumbSize = 0;
537 m_yThumbSize = 0;
538
539 m_pendingPosition = wxDefaultPosition;
540 m_pendingSize = wxDefaultSize;
541
542 #ifdef __POCKETPC__
543 m_contextMenuEnabled = false;
544 #endif
545 }
546
547 // Destructor
548 wxWindowMSW::~wxWindowMSW()
549 {
550 m_isBeingDeleted = true;
551
552 #ifndef __WXUNIVERSAL__
553 // VS: make sure there's no wxFrame with last focus set to us:
554 for ( wxWindow *win = GetParent(); win; win = win->GetParent() )
555 {
556 wxTopLevelWindow *frame = wxDynamicCast(win, wxTopLevelWindow);
557 if ( frame )
558 {
559 if ( frame->GetLastFocus() == this )
560 {
561 frame->SetLastFocus(NULL);
562 }
563
564 // apparently sometimes we can end up with our grand parent
565 // pointing to us as well: this is surely a bug in focus handling
566 // code but it's not clear where it happens so for now just try to
567 // fix it here by not breaking out of the loop
568 //break;
569 }
570 }
571 #endif // __WXUNIVERSAL__
572
573 // VS: destroy children first and _then_ detach *this from its parent.
574 // If we did it the other way around, children wouldn't be able
575 // find their parent frame (see above).
576 DestroyChildren();
577
578 if ( m_hWnd )
579 {
580 // VZ: test temp removed to understand what really happens here
581 //if (::IsWindow(GetHwnd()))
582 {
583 if ( !::DestroyWindow(GetHwnd()) )
584 wxLogLastError(wxT("DestroyWindow"));
585 }
586
587 // remove hWnd <-> wxWindow association
588 wxRemoveHandleAssociation(this);
589 }
590
591 }
592
593 // real construction (Init() must have been called before!)
594 bool wxWindowMSW::Create(wxWindow *parent,
595 wxWindowID id,
596 const wxPoint& pos,
597 const wxSize& size,
598 long style,
599 const wxString& name)
600 {
601 wxCHECK_MSG( parent, false, wxT("can't create wxWindow without parent") );
602
603 if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
604 return false;
605
606 parent->AddChild(this);
607
608 WXDWORD exstyle;
609 DWORD msflags = MSWGetCreateWindowFlags(&exstyle);
610
611 #ifdef __WXUNIVERSAL__
612 // no borders, we draw them ourselves
613 exstyle &= ~(WS_EX_DLGMODALFRAME |
614 WS_EX_STATICEDGE |
615 WS_EX_CLIENTEDGE |
616 WS_EX_WINDOWEDGE);
617 msflags &= ~WS_BORDER;
618 #endif // wxUniversal
619
620 if ( IsShown() )
621 {
622 msflags |= WS_VISIBLE;
623 }
624
625 if ( !MSWCreate(wxCanvasClassName, NULL, pos, size, msflags, exstyle) )
626 return false;
627
628 InheritAttributes();
629
630 return true;
631 }
632
633 // ---------------------------------------------------------------------------
634 // basic operations
635 // ---------------------------------------------------------------------------
636
637 void wxWindowMSW::SetFocus()
638 {
639 HWND hWnd = GetHwnd();
640 wxCHECK_RET( hWnd, _T("can't set focus to invalid window") );
641
642 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
643 ::SetLastError(0);
644 #endif
645
646 if ( !::SetFocus(hWnd) )
647 {
648 #if defined(__WXDEBUG__) && !defined(__WXMICROWIN__)
649 // was there really an error?
650 DWORD dwRes = ::GetLastError();
651 if ( dwRes )
652 {
653 HWND hwndFocus = ::GetFocus();
654 if ( hwndFocus != hWnd )
655 {
656 wxLogApiError(_T("SetFocus"), dwRes);
657 }
658 }
659 #endif // Debug
660 }
661 }
662
663 void wxWindowMSW::SetFocusFromKbd()
664 {
665 // when the focus is given to the control with DLGC_HASSETSEL style from
666 // keyboard its contents should be entirely selected: this is what
667 // ::IsDialogMessage() does and so we should do it as well to provide the
668 // same LNF as the native programs
669 if ( ::SendMessage(GetHwnd(), WM_GETDLGCODE, 0, 0) & DLGC_HASSETSEL )
670 {
671 ::SendMessage(GetHwnd(), EM_SETSEL, 0, -1);
672 }
673
674 // do this after (maybe) setting the selection as like this when
675 // wxEVT_SET_FOCUS handler is called, the selection would have been already
676 // set correctly -- this may be important
677 wxWindowBase::SetFocusFromKbd();
678 }
679
680 // Get the window with the focus
681 wxWindow *wxWindowBase::DoFindFocus()
682 {
683 HWND hWnd = ::GetFocus();
684 if ( hWnd )
685 {
686 return wxGetWindowFromHWND((WXHWND)hWnd);
687 }
688
689 return NULL;
690 }
691
692 void wxWindowMSW::DoEnable( bool enable )
693 {
694 HWND hWnd = GetHwnd();
695 if ( hWnd )
696 ::EnableWindow(hWnd, (BOOL)enable);
697 }
698
699 bool wxWindowMSW::Show(bool show)
700 {
701 if ( !wxWindowBase::Show(show) )
702 return false;
703
704 HWND hWnd = GetHwnd();
705
706 // we could be called before the underlying window is created (this is
707 // actually useful to prevent it from being initially shown), e.g.
708 //
709 // wxFoo *foo = new wxFoo;
710 // foo->Hide();
711 // foo->Create(parent, ...);
712 //
713 // should work without errors
714 if ( hWnd )
715 {
716 ::ShowWindow(hWnd, show ? SW_SHOW : SW_HIDE);
717 }
718
719 return true;
720 }
721
722 bool
723 wxWindowMSW::MSWShowWithEffect(bool show,
724 wxShowEffect effect,
725 unsigned timeout,
726 wxDirection dir)
727 {
728 typedef BOOL (WINAPI *AnimateWindow_t)(HWND, DWORD, DWORD);
729
730 static AnimateWindow_t s_pfnAnimateWindow = NULL;
731 static bool s_initDone = false;
732 if ( !s_initDone )
733 {
734 wxDynamicLibrary dllUser32(_T("user32.dll"), wxDL_VERBATIM | wxDL_QUIET);
735 wxDL_INIT_FUNC(s_pfn, AnimateWindow, dllUser32);
736
737 s_initDone = true;
738
739 // notice that it's ok to unload user32.dll here as it won't be really
740 // unloaded, being still in use because we link to it statically too
741 }
742
743 if ( !s_pfnAnimateWindow )
744 return Show(show);
745
746 // prepare to use AnimateWindow()
747
748 if ( !timeout )
749 timeout = 200; // this is the default animation timeout, per MSDN
750
751 DWORD dwFlags = show ? 0 : AW_HIDE;
752 bool needsDir = false;
753 switch ( effect )
754 {
755 case wxSHOW_EFFECT_ROLL:
756 needsDir = true;
757 break;
758
759 case wxSHOW_EFFECT_SLIDE:
760 needsDir = true;
761 dwFlags |= AW_SLIDE;
762 break;
763
764 case wxSHOW_EFFECT_BLEND:
765 dwFlags |= AW_BLEND;
766 break;
767
768 case wxSHOW_EFFECT_EXPAND:
769 dwFlags |= AW_CENTER;
770 break;
771
772
773 case wxSHOW_EFFECT_MAX:
774 wxFAIL_MSG( _T("invalid window show effect") );
775 return false;
776
777 default:
778 wxFAIL_MSG( _T("unknown window show effect") );
779 return false;
780 }
781
782 if ( needsDir )
783 {
784 switch ( dir )
785 {
786 case wxTOP:
787 dwFlags |= AW_VER_NEGATIVE;
788 break;
789
790 case wxBOTTOM:
791 dwFlags |= AW_VER_POSITIVE;
792 break;
793
794 case wxLEFT:
795 dwFlags |= AW_HOR_NEGATIVE;
796 break;
797
798 case wxRIGHT:
799 dwFlags |= AW_HOR_POSITIVE;
800 break;
801
802 default:
803 wxFAIL_MSG( _T("unknown window effect direction") );
804 return false;
805 }
806 }
807 else // animation effect which doesn't need the direction
808 {
809 wxASSERT_MSG( dir == wxBOTTOM,
810 _T("non-default direction used unnecessarily") );
811 }
812
813
814 if ( !(*s_pfnAnimateWindow)(GetHwnd(), timeout, dwFlags) )
815 {
816 wxLogLastError(_T("AnimateWindow"));
817
818 return false;
819 }
820
821 return true;
822 }
823
824 // Raise the window to the top of the Z order
825 void wxWindowMSW::Raise()
826 {
827 wxBringWindowToTop(GetHwnd());
828 }
829
830 // Lower the window to the bottom of the Z order
831 void wxWindowMSW::Lower()
832 {
833 ::SetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0,
834 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
835 }
836
837 void wxWindowMSW::DoCaptureMouse()
838 {
839 HWND hWnd = GetHwnd();
840 if ( hWnd )
841 {
842 ::SetCapture(hWnd);
843 }
844 }
845
846 void wxWindowMSW::DoReleaseMouse()
847 {
848 if ( !::ReleaseCapture() )
849 {
850 wxLogLastError(_T("ReleaseCapture"));
851 }
852 }
853
854 /* static */ wxWindow *wxWindowBase::GetCapture()
855 {
856 HWND hwnd = ::GetCapture();
857 return hwnd ? wxFindWinFromHandle(hwnd) : NULL;
858 }
859
860 bool wxWindowMSW::SetFont(const wxFont& font)
861 {
862 if ( !wxWindowBase::SetFont(font) )
863 {
864 // nothing to do
865 return false;
866 }
867
868 HWND hWnd = GetHwnd();
869 if ( hWnd != 0 )
870 {
871 WXHANDLE hFont = m_font.GetResourceHandle();
872
873 wxASSERT_MSG( hFont, wxT("should have valid font") );
874
875 ::SendMessage(hWnd, WM_SETFONT, (WPARAM)hFont, MAKELPARAM(TRUE, 0));
876 }
877
878 return true;
879 }
880 bool wxWindowMSW::SetCursor(const wxCursor& cursor)
881 {
882 if ( !wxWindowBase::SetCursor(cursor) )
883 {
884 // no change
885 return false;
886 }
887
888 // don't "overwrite" busy cursor
889 if ( m_cursor.Ok() && !wxIsBusy() )
890 {
891 // normally we should change the cursor only if it's over this window
892 // but we should do it always if we capture the mouse currently
893 bool set = HasCapture();
894 if ( !set )
895 {
896 HWND hWnd = GetHwnd();
897
898 POINT point;
899 #ifdef __WXWINCE__
900 ::GetCursorPosWinCE(&point);
901 #else
902 ::GetCursorPos(&point);
903 #endif
904
905 RECT rect = wxGetWindowRect(hWnd);
906
907 set = ::PtInRect(&rect, point) != 0;
908 }
909
910 if ( set )
911 {
912 ::SetCursor(GetHcursorOf(m_cursor));
913 }
914 //else: will be set later when the mouse enters this window
915 }
916
917 return true;
918 }
919
920 void wxWindowMSW::WarpPointer(int x, int y)
921 {
922 ClientToScreen(&x, &y);
923
924 if ( !::SetCursorPos(x, y) )
925 {
926 wxLogLastError(_T("SetCursorPos"));
927 }
928 }
929
930 void wxWindowMSW::MSWUpdateUIState(int action, int state)
931 {
932 // WM_CHANGEUISTATE only appeared in Windows 2000 so it can do us no good
933 // to use it on older systems -- and could possibly do some harm
934 static int s_needToUpdate = -1;
935 if ( s_needToUpdate == -1 )
936 {
937 int verMaj, verMin;
938 s_needToUpdate = wxGetOsVersion(&verMaj, &verMin) == wxOS_WINDOWS_NT &&
939 verMaj >= 5;
940 }
941
942 if ( s_needToUpdate )
943 {
944 // we send WM_CHANGEUISTATE so if nothing needs changing then the system
945 // won't send WM_UPDATEUISTATE
946 ::SendMessage(GetHwnd(), WM_CHANGEUISTATE, MAKEWPARAM(action, state), 0);
947 }
948 }
949
950 // ---------------------------------------------------------------------------
951 // scrolling stuff
952 // ---------------------------------------------------------------------------
953
954 inline int GetScrollPosition(HWND hWnd, int wOrient)
955 {
956 #ifdef __WXMICROWIN__
957 return ::GetScrollPosWX(hWnd, wOrient);
958 #else
959 WinStruct<SCROLLINFO> scrollInfo;
960 scrollInfo.cbSize = sizeof(SCROLLINFO);
961 scrollInfo.fMask = SIF_POS;
962 ::GetScrollInfo(hWnd, wOrient, &scrollInfo );
963
964 return scrollInfo.nPos;
965
966 #endif
967 }
968
969 int wxWindowMSW::GetScrollPos(int orient) const
970 {
971 HWND hWnd = GetHwnd();
972 wxCHECK_MSG( hWnd, 0, _T("no HWND in GetScrollPos") );
973
974 return GetScrollPosition(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT);
975 }
976
977 // This now returns the whole range, not just the number
978 // of positions that we can scroll.
979 int wxWindowMSW::GetScrollRange(int orient) const
980 {
981 int maxPos;
982 HWND hWnd = GetHwnd();
983 if ( !hWnd )
984 return 0;
985 #if 0
986 ::GetScrollRange(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT,
987 &minPos, &maxPos);
988 #endif
989 WinStruct<SCROLLINFO> scrollInfo;
990 scrollInfo.fMask = SIF_RANGE;
991 if ( !::GetScrollInfo(hWnd,
992 orient == wxHORIZONTAL ? SB_HORZ : SB_VERT,
993 &scrollInfo) )
994 {
995 // Most of the time this is not really an error, since the return
996 // value can also be zero when there is no scrollbar yet.
997 // wxLogLastError(_T("GetScrollInfo"));
998 }
999 maxPos = scrollInfo.nMax;
1000
1001 // undo "range - 1" done in SetScrollbar()
1002 return maxPos + 1;
1003 }
1004
1005 int wxWindowMSW::GetScrollThumb(int orient) const
1006 {
1007 return orient == wxHORIZONTAL ? m_xThumbSize : m_yThumbSize;
1008 }
1009
1010 void wxWindowMSW::SetScrollPos(int orient, int pos, bool refresh)
1011 {
1012 HWND hWnd = GetHwnd();
1013 wxCHECK_RET( hWnd, _T("SetScrollPos: no HWND") );
1014
1015 WinStruct<SCROLLINFO> info;
1016 info.nPage = 0;
1017 info.nMin = 0;
1018 info.nPos = pos;
1019 info.fMask = SIF_POS;
1020 if ( HasFlag(wxALWAYS_SHOW_SB) )
1021 {
1022 // disable scrollbar instead of removing it then
1023 info.fMask |= SIF_DISABLENOSCROLL;
1024 }
1025
1026 ::SetScrollInfo(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT,
1027 &info, refresh);
1028 }
1029
1030 // New function that will replace some of the above.
1031 void wxWindowMSW::SetScrollbar(int orient,
1032 int pos,
1033 int pageSize,
1034 int range,
1035 bool refresh)
1036 {
1037 WinStruct<SCROLLINFO> info;
1038 info.nPage = pageSize;
1039 info.nMin = 0; // range is nMax - nMin + 1
1040 info.nMax = range - 1; // as both nMax and nMax are inclusive
1041 info.nPos = pos;
1042 info.fMask = SIF_RANGE | SIF_PAGE | SIF_POS;
1043 if ( HasFlag(wxALWAYS_SHOW_SB) )
1044 {
1045 // disable scrollbar instead of removing it then
1046 info.fMask |= SIF_DISABLENOSCROLL;
1047 }
1048
1049 HWND hWnd = GetHwnd();
1050 if ( hWnd )
1051 {
1052 // We have to set the variables here to make them valid in events
1053 // triggered by ::SetScrollInfo()
1054 *(orient == wxHORIZONTAL ? &m_xThumbSize : &m_yThumbSize) = pageSize;
1055
1056 ::SetScrollInfo(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT,
1057 &info, refresh);
1058 }
1059 }
1060
1061 void wxWindowMSW::ScrollWindow(int dx, int dy, const wxRect *prect)
1062 {
1063 RECT rect;
1064 RECT *pr;
1065 if ( prect )
1066 {
1067 wxCopyRectToRECT(*prect, rect);
1068 pr = &rect;
1069 }
1070 else
1071 {
1072 pr = NULL;
1073
1074 }
1075
1076 #ifdef __WXWINCE__
1077 // FIXME: is this the exact equivalent of the line below?
1078 ::ScrollWindowEx(GetHwnd(), dx, dy, pr, pr, 0, 0, SW_SCROLLCHILDREN|SW_ERASE|SW_INVALIDATE);
1079 #else
1080 ::ScrollWindow(GetHwnd(), dx, dy, pr, pr);
1081 #endif
1082 }
1083
1084 static bool ScrollVertically(HWND hwnd, int kind, int count)
1085 {
1086 int posStart = GetScrollPosition(hwnd, SB_VERT);
1087
1088 int pos = posStart;
1089 for ( int n = 0; n < count; n++ )
1090 {
1091 ::SendMessage(hwnd, WM_VSCROLL, kind, 0);
1092
1093 int posNew = GetScrollPosition(hwnd, SB_VERT);
1094 if ( posNew == pos )
1095 {
1096 // don't bother to continue, we're already at top/bottom
1097 break;
1098 }
1099
1100 pos = posNew;
1101 }
1102
1103 return pos != posStart;
1104 }
1105
1106 bool wxWindowMSW::ScrollLines(int lines)
1107 {
1108 bool down = lines > 0;
1109
1110 return ScrollVertically(GetHwnd(),
1111 down ? SB_LINEDOWN : SB_LINEUP,
1112 down ? lines : -lines);
1113 }
1114
1115 bool wxWindowMSW::ScrollPages(int pages)
1116 {
1117 bool down = pages > 0;
1118
1119 return ScrollVertically(GetHwnd(),
1120 down ? SB_PAGEDOWN : SB_PAGEUP,
1121 down ? pages : -pages);
1122 }
1123
1124 // ----------------------------------------------------------------------------
1125 // RTL support
1126 // ----------------------------------------------------------------------------
1127
1128 void wxWindowMSW::SetLayoutDirection(wxLayoutDirection dir)
1129 {
1130 #ifdef __WXWINCE__
1131 wxUnusedVar(dir);
1132 #else
1133 const HWND hwnd = GetHwnd();
1134 wxCHECK_RET( hwnd, _T("layout direction must be set after window creation") );
1135
1136 LONG styleOld = ::GetWindowLong(hwnd, GWL_EXSTYLE);
1137
1138 LONG styleNew = styleOld;
1139 switch ( dir )
1140 {
1141 case wxLayout_LeftToRight:
1142 styleNew &= ~WS_EX_LAYOUTRTL;
1143 break;
1144
1145 case wxLayout_RightToLeft:
1146 styleNew |= WS_EX_LAYOUTRTL;
1147 break;
1148
1149 default:
1150 wxFAIL_MSG(_T("unsupported layout direction"));
1151 break;
1152 }
1153
1154 if ( styleNew != styleOld )
1155 {
1156 ::SetWindowLong(hwnd, GWL_EXSTYLE, styleNew);
1157 }
1158 #endif
1159 }
1160
1161 wxLayoutDirection wxWindowMSW::GetLayoutDirection() const
1162 {
1163 #ifdef __WXWINCE__
1164 return wxLayout_Default;
1165 #else
1166 const HWND hwnd = GetHwnd();
1167 wxCHECK_MSG( hwnd, wxLayout_Default, _T("invalid window") );
1168
1169 return ::GetWindowLong(hwnd, GWL_EXSTYLE) & WS_EX_LAYOUTRTL
1170 ? wxLayout_RightToLeft
1171 : wxLayout_LeftToRight;
1172 #endif
1173 }
1174
1175 wxCoord
1176 wxWindowMSW::AdjustForLayoutDirection(wxCoord x,
1177 wxCoord WXUNUSED(width),
1178 wxCoord WXUNUSED(widthTotal)) const
1179 {
1180 // Win32 mirrors the coordinates of RTL windows automatically, so don't
1181 // redo it ourselves
1182 return x;
1183 }
1184
1185 // ---------------------------------------------------------------------------
1186 // subclassing
1187 // ---------------------------------------------------------------------------
1188
1189 void wxWindowMSW::SubclassWin(WXHWND hWnd)
1190 {
1191 wxASSERT_MSG( !m_oldWndProc, wxT("subclassing window twice?") );
1192
1193 HWND hwnd = (HWND)hWnd;
1194 wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in SubclassWin") );
1195
1196 wxAssociateWinWithHandle(hwnd, this);
1197
1198 m_oldWndProc = (WXFARPROC)wxGetWindowProc((HWND)hWnd);
1199
1200 // we don't need to subclass the window of our own class (in the Windows
1201 // sense of the word)
1202 if ( !wxCheckWindowWndProc(hWnd, (WXFARPROC)wxWndProc) )
1203 {
1204 wxSetWindowProc(hwnd, wxWndProc);
1205 }
1206 else
1207 {
1208 // don't bother restoring it either: this also makes it easy to
1209 // implement IsOfStandardClass() method which returns true for the
1210 // standard controls and false for the wxWidgets own windows as it can
1211 // simply check m_oldWndProc
1212 m_oldWndProc = NULL;
1213 }
1214
1215 // we're officially created now, send the event
1216 wxWindowCreateEvent event((wxWindow *)this);
1217 (void)HandleWindowEvent(event);
1218 }
1219
1220 void wxWindowMSW::UnsubclassWin()
1221 {
1222 wxRemoveHandleAssociation(this);
1223
1224 // Restore old Window proc
1225 HWND hwnd = GetHwnd();
1226 if ( hwnd )
1227 {
1228 SetHWND(0);
1229
1230 wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in UnsubclassWin") );
1231
1232 if ( m_oldWndProc )
1233 {
1234 if ( !wxCheckWindowWndProc((WXHWND)hwnd, m_oldWndProc) )
1235 {
1236 wxSetWindowProc(hwnd, (WNDPROC)m_oldWndProc);
1237 }
1238
1239 m_oldWndProc = NULL;
1240 }
1241 }
1242 }
1243
1244 void wxWindowMSW::AssociateHandle(WXWidget handle)
1245 {
1246 if ( m_hWnd )
1247 {
1248 if ( !::DestroyWindow(GetHwnd()) )
1249 wxLogLastError(wxT("DestroyWindow"));
1250 }
1251
1252 WXHWND wxhwnd = (WXHWND)handle;
1253
1254 SetHWND(wxhwnd);
1255 SubclassWin(wxhwnd);
1256 }
1257
1258 void wxWindowMSW::DissociateHandle()
1259 {
1260 // this also calls SetHWND(0) for us
1261 UnsubclassWin();
1262 }
1263
1264
1265 bool wxCheckWindowWndProc(WXHWND hWnd,
1266 WXFARPROC WXUNUSED(wndProc))
1267 {
1268 // TODO: This list of window class names should be factored out so they can be
1269 // managed in one place and then accessed from here and other places, such as
1270 // wxApp::RegisterWindowClasses() and wxApp::UnregisterWindowClasses()
1271
1272 #ifdef __WXWINCE__
1273 extern wxChar *wxCanvasClassName;
1274 extern wxChar *wxCanvasClassNameNR;
1275 #else
1276 extern const wxChar *wxCanvasClassName;
1277 extern const wxChar *wxCanvasClassNameNR;
1278 #endif
1279 extern const wxChar *wxMDIFrameClassName;
1280 extern const wxChar *wxMDIFrameClassNameNoRedraw;
1281 extern const wxChar *wxMDIChildFrameClassName;
1282 extern const wxChar *wxMDIChildFrameClassNameNoRedraw;
1283 wxString str(wxGetWindowClass(hWnd));
1284 if (str == wxCanvasClassName ||
1285 str == wxCanvasClassNameNR ||
1286 #if wxUSE_GLCANVAS
1287 str == _T("wxGLCanvasClass") ||
1288 str == _T("wxGLCanvasClassNR") ||
1289 #endif // wxUSE_GLCANVAS
1290 str == wxMDIFrameClassName ||
1291 str == wxMDIFrameClassNameNoRedraw ||
1292 str == wxMDIChildFrameClassName ||
1293 str == wxMDIChildFrameClassNameNoRedraw ||
1294 str == _T("wxTLWHiddenParent"))
1295 return true; // Effectively means don't subclass
1296 else
1297 return false;
1298 }
1299
1300 // ----------------------------------------------------------------------------
1301 // Style handling
1302 // ----------------------------------------------------------------------------
1303
1304 void wxWindowMSW::SetWindowStyleFlag(long flags)
1305 {
1306 long flagsOld = GetWindowStyleFlag();
1307 if ( flags == flagsOld )
1308 return;
1309
1310 // update the internal variable
1311 wxWindowBase::SetWindowStyleFlag(flags);
1312
1313 // and the real window flags
1314 MSWUpdateStyle(flagsOld, GetExtraStyle());
1315 }
1316
1317 void wxWindowMSW::SetExtraStyle(long exflags)
1318 {
1319 long exflagsOld = GetExtraStyle();
1320 if ( exflags == exflagsOld )
1321 return;
1322
1323 // update the internal variable
1324 wxWindowBase::SetExtraStyle(exflags);
1325
1326 // and the real window flags
1327 MSWUpdateStyle(GetWindowStyleFlag(), exflagsOld);
1328 }
1329
1330 void wxWindowMSW::MSWUpdateStyle(long flagsOld, long exflagsOld)
1331 {
1332 // now update the Windows style as well if needed - and if the window had
1333 // been already created
1334 if ( !GetHwnd() )
1335 return;
1336
1337 // we may need to call SetWindowPos() when we change some styles
1338 bool callSWP = false;
1339
1340 WXDWORD exstyle;
1341 long style = MSWGetStyle(GetWindowStyleFlag(), &exstyle);
1342
1343 // this is quite a horrible hack but we need it because MSWGetStyle()
1344 // doesn't take exflags as parameter but uses GetExtraStyle() internally
1345 // and so we have to modify the window exflags temporarily to get the
1346 // correct exstyleOld
1347 long exflagsNew = GetExtraStyle();
1348 wxWindowBase::SetExtraStyle(exflagsOld);
1349
1350 WXDWORD exstyleOld;
1351 long styleOld = MSWGetStyle(flagsOld, &exstyleOld);
1352
1353 wxWindowBase::SetExtraStyle(exflagsNew);
1354
1355
1356 if ( style != styleOld )
1357 {
1358 // some flags (e.g. WS_VISIBLE or WS_DISABLED) should not be changed by
1359 // this function so instead of simply setting the style to the new
1360 // value we clear the bits which were set in styleOld but are set in
1361 // the new one and set the ones which were not set before
1362 long styleReal = ::GetWindowLong(GetHwnd(), GWL_STYLE);
1363 styleReal &= ~styleOld;
1364 styleReal |= style;
1365
1366 ::SetWindowLong(GetHwnd(), GWL_STYLE, styleReal);
1367
1368 // we need to call SetWindowPos() if any of the styles affecting the
1369 // frame appearance have changed
1370 callSWP = ((styleOld ^ style ) & (WS_BORDER |
1371 WS_THICKFRAME |
1372 WS_CAPTION |
1373 WS_DLGFRAME |
1374 WS_MAXIMIZEBOX |
1375 WS_MINIMIZEBOX |
1376 WS_SYSMENU) ) != 0;
1377 }
1378
1379 // and the extended style
1380 long exstyleReal = ::GetWindowLong(GetHwnd(), GWL_EXSTYLE);
1381
1382 if ( exstyle != exstyleOld )
1383 {
1384 exstyleReal &= ~exstyleOld;
1385 exstyleReal |= exstyle;
1386
1387 ::SetWindowLong(GetHwnd(), GWL_EXSTYLE, exstyleReal);
1388
1389 // ex style changes don't take effect without calling SetWindowPos
1390 callSWP = true;
1391 }
1392
1393 if ( callSWP )
1394 {
1395 // we must call SetWindowPos() to flush the cached extended style and
1396 // also to make the change to wxSTAY_ON_TOP style take effect: just
1397 // setting the style simply doesn't work
1398 if ( !::SetWindowPos(GetHwnd(),
1399 exstyleReal & WS_EX_TOPMOST ? HWND_TOPMOST
1400 : HWND_NOTOPMOST,
1401 0, 0, 0, 0,
1402 SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED) )
1403 {
1404 wxLogLastError(_T("SetWindowPos"));
1405 }
1406 }
1407 }
1408
1409 wxBorder wxWindowMSW::GetDefaultBorderForControl() const
1410 {
1411 return wxBORDER_THEME;
1412 }
1413
1414 wxBorder wxWindowMSW::GetDefaultBorder() const
1415 {
1416 return wxWindowBase::GetDefaultBorder();
1417 }
1418
1419 // Translate wxBORDER_THEME (and other border styles if necessary) to the value
1420 // that makes most sense for this Windows environment
1421 wxBorder wxWindowMSW::TranslateBorder(wxBorder border) const
1422 {
1423 #if defined(__POCKETPC__) || defined(__SMARTPHONE__)
1424 if (border == wxBORDER_THEME || border == wxBORDER_SUNKEN || border == wxBORDER_SIMPLE)
1425 return wxBORDER_SIMPLE;
1426 else
1427 return wxBORDER_NONE;
1428 #else
1429 #if wxUSE_UXTHEME
1430 if (border == wxBORDER_THEME)
1431 {
1432 if (CanApplyThemeBorder())
1433 {
1434 wxUxThemeEngine* theme = wxUxThemeEngine::GetIfActive();
1435 if (theme)
1436 return wxBORDER_THEME;
1437 }
1438 return wxBORDER_SUNKEN;
1439 }
1440 #endif
1441 return border;
1442 #endif
1443 }
1444
1445
1446 WXDWORD wxWindowMSW::MSWGetStyle(long flags, WXDWORD *exstyle) const
1447 {
1448 // translate common wxWidgets styles to Windows ones
1449
1450 // most of windows are child ones, those which are not (such as
1451 // wxTopLevelWindow) should remove WS_CHILD in their MSWGetStyle()
1452 WXDWORD style = WS_CHILD;
1453
1454 // using this flag results in very significant reduction in flicker,
1455 // especially with controls inside the static boxes (as the interior of the
1456 // box is not redrawn twice), but sometimes results in redraw problems, so
1457 // optionally allow the old code to continue to use it provided a special
1458 // system option is turned on
1459 if ( !wxSystemOptions::GetOptionInt(wxT("msw.window.no-clip-children"))
1460 || (flags & wxCLIP_CHILDREN) )
1461 style |= WS_CLIPCHILDREN;
1462
1463 // it doesn't seem useful to use WS_CLIPSIBLINGS here as we officially
1464 // don't support overlapping windows and it only makes sense for them and,
1465 // presumably, gives the system some extra work (to manage more clipping
1466 // regions), so avoid it alltogether
1467
1468
1469 if ( flags & wxVSCROLL )
1470 style |= WS_VSCROLL;
1471
1472 if ( flags & wxHSCROLL )
1473 style |= WS_HSCROLL;
1474
1475 const wxBorder border = TranslateBorder(GetBorder(flags));
1476
1477 // After translation, border is now optimized for the specific version of Windows
1478 // and theme engine presence.
1479
1480 // WS_BORDER is only required for wxBORDER_SIMPLE
1481 if ( border == wxBORDER_SIMPLE )
1482 style |= WS_BORDER;
1483
1484 // now deal with ext style if the caller wants it
1485 if ( exstyle )
1486 {
1487 *exstyle = 0;
1488
1489 #ifndef __WXWINCE__
1490 if ( flags & wxTRANSPARENT_WINDOW )
1491 *exstyle |= WS_EX_TRANSPARENT;
1492 #endif
1493
1494 switch ( border )
1495 {
1496 default:
1497 case wxBORDER_DEFAULT:
1498 wxFAIL_MSG( _T("unknown border style") );
1499 // fall through
1500
1501 case wxBORDER_NONE:
1502 case wxBORDER_SIMPLE:
1503 case wxBORDER_THEME:
1504 break;
1505
1506 case wxBORDER_STATIC:
1507 *exstyle |= WS_EX_STATICEDGE;
1508 break;
1509
1510 case wxBORDER_RAISED:
1511 *exstyle |= WS_EX_DLGMODALFRAME;
1512 break;
1513
1514 case wxBORDER_SUNKEN:
1515 *exstyle |= WS_EX_CLIENTEDGE;
1516 style &= ~WS_BORDER;
1517 break;
1518
1519 // case wxBORDER_DOUBLE:
1520 // *exstyle |= WS_EX_DLGMODALFRAME;
1521 // break;
1522 }
1523
1524 // wxUniv doesn't use Windows dialog navigation functions at all
1525 #if !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__)
1526 // to make the dialog navigation work with the nested panels we must
1527 // use this style (top level windows such as dialogs don't need it)
1528 if ( (flags & wxTAB_TRAVERSAL) && !IsTopLevel() )
1529 {
1530 *exstyle |= WS_EX_CONTROLPARENT;
1531 }
1532 #endif // __WXUNIVERSAL__
1533 }
1534
1535 return style;
1536 }
1537
1538 // Setup background and foreground colours correctly
1539 void wxWindowMSW::SetupColours()
1540 {
1541 if ( GetParent() )
1542 SetBackgroundColour(GetParent()->GetBackgroundColour());
1543 }
1544
1545 bool wxWindowMSW::IsMouseInWindow() const
1546 {
1547 // get the mouse position
1548 POINT pt;
1549 #ifdef __WXWINCE__
1550 ::GetCursorPosWinCE(&pt);
1551 #else
1552 ::GetCursorPos(&pt);
1553 #endif
1554
1555 // find the window which currently has the cursor and go up the window
1556 // chain until we find this window - or exhaust it
1557 HWND hwnd = ::WindowFromPoint(pt);
1558 while ( hwnd && (hwnd != GetHwnd()) )
1559 hwnd = ::GetParent(hwnd);
1560
1561 return hwnd != NULL;
1562 }
1563
1564 void wxWindowMSW::OnInternalIdle()
1565 {
1566 #ifndef HAVE_TRACKMOUSEEVENT
1567 // Check if we need to send a LEAVE event
1568 if ( m_mouseInWindow )
1569 {
1570 // note that we should generate the leave event whether the window has
1571 // or doesn't have mouse capture
1572 if ( !IsMouseInWindow() )
1573 {
1574 GenerateMouseLeave();
1575 }
1576 }
1577 #endif // !HAVE_TRACKMOUSEEVENT
1578
1579 if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
1580 UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
1581 }
1582
1583 // Set this window to be the child of 'parent'.
1584 bool wxWindowMSW::Reparent(wxWindowBase *parent)
1585 {
1586 if ( !wxWindowBase::Reparent(parent) )
1587 return false;
1588
1589 HWND hWndChild = GetHwnd();
1590 HWND hWndParent = GetParent() ? GetWinHwnd(GetParent()) : (HWND)0;
1591
1592 ::SetParent(hWndChild, hWndParent);
1593
1594 #ifndef __WXWINCE__
1595 if ( ::GetWindowLong(hWndChild, GWL_EXSTYLE) & WS_EX_CONTROLPARENT )
1596 {
1597 EnsureParentHasControlParentStyle(GetParent());
1598 }
1599 #endif // !__WXWINCE__
1600
1601 return true;
1602 }
1603
1604 static inline void SendSetRedraw(HWND hwnd, bool on)
1605 {
1606 #ifndef __WXMICROWIN__
1607 ::SendMessage(hwnd, WM_SETREDRAW, (WPARAM)on, 0);
1608 #endif
1609 }
1610
1611 void wxWindowMSW::DoFreeze()
1612 {
1613 if ( IsShown() )
1614 SendSetRedraw(GetHwnd(), false);
1615 }
1616
1617 void wxWindowMSW::DoThaw()
1618 {
1619 if ( IsShown() )
1620 {
1621 SendSetRedraw(GetHwnd(), true);
1622
1623 // we need to refresh everything or otherwise the invalidated area
1624 // is not going to be repainted
1625 Refresh();
1626 }
1627 }
1628
1629 void wxWindowMSW::Refresh(bool eraseBack, const wxRect *rect)
1630 {
1631 HWND hWnd = GetHwnd();
1632 if ( hWnd )
1633 {
1634 RECT mswRect;
1635 const RECT *pRect;
1636 if ( rect )
1637 {
1638 wxCopyRectToRECT(*rect, mswRect);
1639 pRect = &mswRect;
1640 }
1641 else
1642 {
1643 pRect = NULL;
1644 }
1645
1646 // RedrawWindow not available on SmartPhone or eVC++ 3
1647 #if !defined(__SMARTPHONE__) && !(defined(_WIN32_WCE) && _WIN32_WCE < 400)
1648 UINT flags = RDW_INVALIDATE | RDW_ALLCHILDREN;
1649 if ( eraseBack )
1650 flags |= RDW_ERASE;
1651
1652 ::RedrawWindow(hWnd, pRect, NULL, flags);
1653 #else
1654 ::InvalidateRect(hWnd, pRect, eraseBack);
1655 #endif
1656 }
1657 }
1658
1659 void wxWindowMSW::Update()
1660 {
1661 if ( !::UpdateWindow(GetHwnd()) )
1662 {
1663 wxLogLastError(_T("UpdateWindow"));
1664 }
1665
1666 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1667 // just calling UpdateWindow() is not enough, what we did in our WM_PAINT
1668 // handler needs to be really drawn right now
1669 (void)::GdiFlush();
1670 #endif // __WIN32__
1671 }
1672
1673 // ---------------------------------------------------------------------------
1674 // drag and drop
1675 // ---------------------------------------------------------------------------
1676
1677 #if wxUSE_DRAG_AND_DROP || !defined(__WXWINCE__)
1678
1679 #if wxUSE_STATBOX
1680
1681 // we need to lower the sibling static boxes so controls contained within can be
1682 // a drop target
1683 static void AdjustStaticBoxZOrder(wxWindow *parent)
1684 {
1685 // no sibling static boxes if we have no parent (ie TLW)
1686 if ( !parent )
1687 return;
1688
1689 for ( wxWindowList::compatibility_iterator node = parent->GetChildren().GetFirst();
1690 node;
1691 node = node->GetNext() )
1692 {
1693 wxStaticBox *statbox = wxDynamicCast(node->GetData(), wxStaticBox);
1694 if ( statbox )
1695 {
1696 ::SetWindowPos(GetHwndOf(statbox), HWND_BOTTOM, 0, 0, 0, 0,
1697 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
1698 }
1699 }
1700 }
1701
1702 #else // !wxUSE_STATBOX
1703
1704 static inline void AdjustStaticBoxZOrder(wxWindow * WXUNUSED(parent))
1705 {
1706 }
1707
1708 #endif // wxUSE_STATBOX/!wxUSE_STATBOX
1709
1710 #endif // drag and drop is used
1711
1712 #if wxUSE_DRAG_AND_DROP
1713 void wxWindowMSW::SetDropTarget(wxDropTarget *pDropTarget)
1714 {
1715 if ( m_dropTarget != 0 ) {
1716 m_dropTarget->Revoke(m_hWnd);
1717 delete m_dropTarget;
1718 }
1719
1720 m_dropTarget = pDropTarget;
1721 if ( m_dropTarget != 0 )
1722 {
1723 AdjustStaticBoxZOrder(GetParent());
1724 m_dropTarget->Register(m_hWnd);
1725 }
1726 }
1727 #endif // wxUSE_DRAG_AND_DROP
1728
1729 // old-style file manager drag&drop support: we retain the old-style
1730 // DragAcceptFiles in parallel with SetDropTarget.
1731 void wxWindowMSW::DragAcceptFiles(bool WXUNUSED_IN_WINCE(accept))
1732 {
1733 #ifndef __WXWINCE__
1734 HWND hWnd = GetHwnd();
1735 if ( hWnd )
1736 {
1737 AdjustStaticBoxZOrder(GetParent());
1738 ::DragAcceptFiles(hWnd, (BOOL)accept);
1739 }
1740 #endif
1741 }
1742
1743 // ----------------------------------------------------------------------------
1744 // tooltips
1745 // ----------------------------------------------------------------------------
1746
1747 #if wxUSE_TOOLTIPS
1748
1749 void wxWindowMSW::DoSetToolTip(wxToolTip *tooltip)
1750 {
1751 wxWindowBase::DoSetToolTip(tooltip);
1752
1753 if ( m_tooltip )
1754 m_tooltip->SetWindow((wxWindow *)this);
1755 }
1756
1757 #endif // wxUSE_TOOLTIPS
1758
1759 // ---------------------------------------------------------------------------
1760 // moving and resizing
1761 // ---------------------------------------------------------------------------
1762
1763 bool wxWindowMSW::IsSizeDeferred() const
1764 {
1765 #if USE_DEFERRED_SIZING
1766 if ( m_pendingPosition != wxDefaultPosition ||
1767 m_pendingSize != wxDefaultSize )
1768 return true;
1769 #endif // USE_DEFERRED_SIZING
1770
1771 return false;
1772 }
1773
1774 // Get total size
1775 void wxWindowMSW::DoGetSize(int *x, int *y) const
1776 {
1777 #if USE_DEFERRED_SIZING
1778 // if SetSize() had been called at wx level but not realized at Windows
1779 // level yet (i.e. EndDeferWindowPos() not called), we still should return
1780 // the new and not the old position to the other wx code
1781 if ( m_pendingSize != wxDefaultSize )
1782 {
1783 if ( x )
1784 *x = m_pendingSize.x;
1785 if ( y )
1786 *y = m_pendingSize.y;
1787 }
1788 else // use current size
1789 #endif // USE_DEFERRED_SIZING
1790 {
1791 RECT rect = wxGetWindowRect(GetHwnd());
1792
1793 if ( x )
1794 *x = rect.right - rect.left;
1795 if ( y )
1796 *y = rect.bottom - rect.top;
1797 }
1798 }
1799
1800 // Get size *available for subwindows* i.e. excluding menu bar etc.
1801 void wxWindowMSW::DoGetClientSize(int *x, int *y) const
1802 {
1803 #if USE_DEFERRED_SIZING
1804 if ( m_pendingSize != wxDefaultSize )
1805 {
1806 // we need to calculate the client size corresponding to pending size
1807 RECT rect;
1808 rect.left = m_pendingPosition.x;
1809 rect.top = m_pendingPosition.y;
1810 rect.right = rect.left + m_pendingSize.x;
1811 rect.bottom = rect.top + m_pendingSize.y;
1812
1813 ::SendMessage(GetHwnd(), WM_NCCALCSIZE, FALSE, (LPARAM)&rect);
1814
1815 if ( x )
1816 *x = rect.right - rect.left;
1817 if ( y )
1818 *y = rect.bottom - rect.top;
1819 }
1820 else
1821 #endif // USE_DEFERRED_SIZING
1822 {
1823 RECT rect = wxGetClientRect(GetHwnd());
1824
1825 if ( x )
1826 *x = rect.right;
1827 if ( y )
1828 *y = rect.bottom;
1829 }
1830 }
1831
1832 void wxWindowMSW::DoGetPosition(int *x, int *y) const
1833 {
1834 wxWindow * const parent = GetParent();
1835
1836 wxPoint pos;
1837 if ( m_pendingPosition != wxDefaultPosition )
1838 {
1839 pos = m_pendingPosition;
1840 }
1841 else // use current position
1842 {
1843 RECT rect = wxGetWindowRect(GetHwnd());
1844
1845 POINT point;
1846 point.x = rect.left;
1847 point.y = rect.top;
1848
1849 // we do the adjustments with respect to the parent only for the "real"
1850 // children, not for the dialogs/frames
1851 if ( !IsTopLevel() )
1852 {
1853 if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft )
1854 {
1855 // In RTL mode, we want the logical left x-coordinate,
1856 // which would be the physical right x-coordinate.
1857 point.x = rect.right;
1858 }
1859
1860 // Since we now have the absolute screen coords, if there's a
1861 // parent we must subtract its top left corner
1862 if ( parent )
1863 {
1864 ::ScreenToClient(GetHwndOf(parent), &point);
1865 }
1866 }
1867
1868 pos.x = point.x;
1869 pos.y = point.y;
1870 }
1871
1872 // we also must adjust by the client area offset: a control which is just
1873 // under a toolbar could be at (0, 30) in Windows but at (0, 0) in wx
1874 if ( parent && !IsTopLevel() )
1875 {
1876 const wxPoint pt(parent->GetClientAreaOrigin());
1877 pos.x -= pt.x;
1878 pos.y -= pt.y;
1879 }
1880
1881 if ( x )
1882 *x = pos.x;
1883 if ( y )
1884 *y = pos.y;
1885 }
1886
1887 void wxWindowMSW::DoScreenToClient(int *x, int *y) const
1888 {
1889 POINT pt;
1890 if ( x )
1891 pt.x = *x;
1892 if ( y )
1893 pt.y = *y;
1894
1895 ::ScreenToClient(GetHwnd(), &pt);
1896
1897 if ( x )
1898 *x = pt.x;
1899 if ( y )
1900 *y = pt.y;
1901 }
1902
1903 void wxWindowMSW::DoClientToScreen(int *x, int *y) const
1904 {
1905 POINT pt;
1906 if ( x )
1907 pt.x = *x;
1908 if ( y )
1909 pt.y = *y;
1910
1911 ::ClientToScreen(GetHwnd(), &pt);
1912
1913 if ( x )
1914 *x = pt.x;
1915 if ( y )
1916 *y = pt.y;
1917 }
1918
1919 bool
1920 wxWindowMSW::DoMoveSibling(WXHWND hwnd, int x, int y, int width, int height)
1921 {
1922 #if USE_DEFERRED_SIZING
1923 // if our parent had prepared a defer window handle for us, use it (unless
1924 // we are a top level window)
1925 wxWindowMSW * const parent = IsTopLevel() ? NULL : GetParent();
1926
1927 HDWP hdwp = parent ? (HDWP)parent->m_hDWP : NULL;
1928 if ( hdwp )
1929 {
1930 hdwp = ::DeferWindowPos(hdwp, (HWND)hwnd, NULL, x, y, width, height,
1931 SWP_NOZORDER | SWP_NOOWNERZORDER | SWP_NOACTIVATE);
1932 if ( !hdwp )
1933 {
1934 wxLogLastError(_T("DeferWindowPos"));
1935 }
1936 }
1937
1938 if ( parent )
1939 {
1940 // hdwp must be updated as it may have been changed
1941 parent->m_hDWP = (WXHANDLE)hdwp;
1942 }
1943
1944 if ( hdwp )
1945 {
1946 // did deferred move, remember new coordinates of the window as they're
1947 // different from what Windows would return for it
1948 return true;
1949 }
1950
1951 // otherwise (or if deferring failed) move the window in place immediately
1952 #endif // USE_DEFERRED_SIZING
1953 if ( !::MoveWindow((HWND)hwnd, x, y, width, height, IsShown()) )
1954 {
1955 wxLogLastError(wxT("MoveWindow"));
1956 }
1957
1958 // if USE_DEFERRED_SIZING, indicates that we didn't use deferred move,
1959 // ignored otherwise
1960 return false;
1961 }
1962
1963 void wxWindowMSW::DoMoveWindow(int x, int y, int width, int height)
1964 {
1965 // TODO: is this consistent with other platforms?
1966 // Still, negative width or height shouldn't be allowed
1967 if (width < 0)
1968 width = 0;
1969 if (height < 0)
1970 height = 0;
1971
1972 if ( DoMoveSibling(m_hWnd, x, y, width, height) )
1973 {
1974 #if USE_DEFERRED_SIZING
1975 m_pendingPosition = wxPoint(x, y);
1976 m_pendingSize = wxSize(width, height);
1977 #endif // USE_DEFERRED_SIZING
1978 }
1979 }
1980
1981 // set the size of the window: if the dimensions are positive, just use them,
1982 // but if any of them is equal to -1, it means that we must find the value for
1983 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1984 // which case -1 is a valid value for x and y)
1985 //
1986 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1987 // the width/height to best suit our contents, otherwise we reuse the current
1988 // width/height
1989 void wxWindowMSW::DoSetSize(int x, int y, int width, int height, int sizeFlags)
1990 {
1991 // get the current size and position...
1992 int currentX, currentY;
1993 int currentW, currentH;
1994
1995 GetPosition(&currentX, &currentY);
1996 GetSize(&currentW, &currentH);
1997
1998 // ... and don't do anything (avoiding flicker) if it's already ok unless
1999 // we're forced to resize the window
2000 if ( x == currentX && y == currentY &&
2001 width == currentW && height == currentH &&
2002 !(sizeFlags & wxSIZE_FORCE) )
2003 {
2004 return;
2005 }
2006
2007 if ( x == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
2008 x = currentX;
2009 if ( y == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
2010 y = currentY;
2011
2012 AdjustForParentClientOrigin(x, y, sizeFlags);
2013
2014 wxSize size = wxDefaultSize;
2015 if ( width == wxDefaultCoord )
2016 {
2017 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
2018 {
2019 size = DoGetBestSize();
2020 width = size.x;
2021 }
2022 else
2023 {
2024 // just take the current one
2025 width = currentW;
2026 }
2027 }
2028
2029 if ( height == wxDefaultCoord )
2030 {
2031 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
2032 {
2033 if ( size.x == wxDefaultCoord )
2034 {
2035 size = DoGetBestSize();
2036 }
2037 //else: already called DoGetBestSize() above
2038
2039 height = size.y;
2040 }
2041 else
2042 {
2043 // just take the current one
2044 height = currentH;
2045 }
2046 }
2047
2048 DoMoveWindow(x, y, width, height);
2049 }
2050
2051 void wxWindowMSW::DoSetClientSize(int width, int height)
2052 {
2053 // setting the client size is less obvious than it could have been
2054 // because in the result of changing the total size the window scrollbar
2055 // may [dis]appear and/or its menubar may [un]wrap (and AdjustWindowRect()
2056 // doesn't take neither into account) and so the client size will not be
2057 // correct as the difference between the total and client size changes --
2058 // so we keep changing it until we get it right
2059 //
2060 // normally this loop shouldn't take more than 3 iterations (usually 1 but
2061 // if scrollbars [dis]appear as the result of the first call, then 2 and it
2062 // may become 3 if the window had 0 size originally and so we didn't
2063 // calculate the scrollbar correction correctly during the first iteration)
2064 // but just to be on the safe side we check for it instead of making it an
2065 // "infinite" loop (i.e. leaving break inside as the only way to get out)
2066 for ( int i = 0; i < 4; i++ )
2067 {
2068 RECT rectClient;
2069 ::GetClientRect(GetHwnd(), &rectClient);
2070
2071 // if the size is already ok, stop here (NB: rectClient.left = top = 0)
2072 if ( (rectClient.right == width || width == wxDefaultCoord) &&
2073 (rectClient.bottom == height || height == wxDefaultCoord) )
2074 {
2075 break;
2076 }
2077
2078 // Find the difference between the entire window (title bar and all)
2079 // and the client area; add this to the new client size to move the
2080 // window
2081 RECT rectWin;
2082 ::GetWindowRect(GetHwnd(), &rectWin);
2083
2084 const int widthWin = rectWin.right - rectWin.left,
2085 heightWin = rectWin.bottom - rectWin.top;
2086
2087 // MoveWindow positions the child windows relative to the parent, so
2088 // adjust if necessary
2089 if ( !IsTopLevel() )
2090 {
2091 wxWindow *parent = GetParent();
2092 if ( parent )
2093 {
2094 ::ScreenToClient(GetHwndOf(parent), (POINT *)&rectWin);
2095 }
2096 }
2097
2098 // don't call DoMoveWindow() because we want to move window immediately
2099 // and not defer it here as otherwise the value returned by
2100 // GetClient/WindowRect() wouldn't change as the window wouldn't be
2101 // really resized
2102 if ( !::MoveWindow(GetHwnd(),
2103 rectWin.left,
2104 rectWin.top,
2105 width + widthWin - rectClient.right,
2106 height + heightWin - rectClient.bottom,
2107 TRUE) )
2108 {
2109 wxLogLastError(_T("MoveWindow"));
2110 }
2111 }
2112 }
2113
2114 // ---------------------------------------------------------------------------
2115 // text metrics
2116 // ---------------------------------------------------------------------------
2117
2118 int wxWindowMSW::GetCharHeight() const
2119 {
2120 return wxGetTextMetrics(this).tmHeight;
2121 }
2122
2123 int wxWindowMSW::GetCharWidth() const
2124 {
2125 // +1 is needed because Windows apparently adds it when calculating the
2126 // dialog units size in pixels
2127 #if wxDIALOG_UNIT_COMPATIBILITY
2128 return wxGetTextMetrics(this).tmAveCharWidth;
2129 #else
2130 return wxGetTextMetrics(this).tmAveCharWidth + 1;
2131 #endif
2132 }
2133
2134 void wxWindowMSW::GetTextExtent(const wxString& string,
2135 int *x, int *y,
2136 int *descent, int *externalLeading,
2137 const wxFont *fontToUse) const
2138 {
2139 wxASSERT_MSG( !fontToUse || fontToUse->Ok(),
2140 _T("invalid font in GetTextExtent()") );
2141
2142 HFONT hfontToUse;
2143 if ( fontToUse )
2144 hfontToUse = GetHfontOf(*fontToUse);
2145 else
2146 hfontToUse = GetHfontOf(GetFont());
2147
2148 WindowHDC hdc(GetHwnd());
2149 SelectInHDC selectFont(hdc, hfontToUse);
2150
2151 SIZE sizeRect;
2152 TEXTMETRIC tm;
2153 ::GetTextExtentPoint32(hdc, string.wx_str(), string.length(), &sizeRect);
2154 GetTextMetrics(hdc, &tm);
2155
2156 if ( x )
2157 *x = sizeRect.cx;
2158 if ( y )
2159 *y = sizeRect.cy;
2160 if ( descent )
2161 *descent = tm.tmDescent;
2162 if ( externalLeading )
2163 *externalLeading = tm.tmExternalLeading;
2164 }
2165
2166 // ---------------------------------------------------------------------------
2167 // popup menu
2168 // ---------------------------------------------------------------------------
2169
2170 #if wxUSE_MENUS_NATIVE
2171
2172 // yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue
2173 // immediately, without waiting for the next event loop iteration
2174 //
2175 // NB: this function should probably be made public later as it can almost
2176 // surely replace wxYield() elsewhere as well
2177 static void wxYieldForCommandsOnly()
2178 {
2179 // peek all WM_COMMANDs (it will always return WM_QUIT too but we don't
2180 // want to process it here)
2181 MSG msg;
2182 while ( ::PeekMessage(&msg, (HWND)0, WM_COMMAND, WM_COMMAND, PM_REMOVE) )
2183 {
2184 if ( msg.message == WM_QUIT )
2185 {
2186 // if we retrieved a WM_QUIT, insert back into the message queue.
2187 ::PostQuitMessage(0);
2188 break;
2189 }
2190
2191 // luckily (as we don't have access to wxEventLoopImpl method from here
2192 // anyhow...) we don't need to pre process WM_COMMANDs so dispatch it
2193 // immediately
2194 ::TranslateMessage(&msg);
2195 ::DispatchMessage(&msg);
2196 }
2197 }
2198
2199 bool wxWindowMSW::DoPopupMenu(wxMenu *menu, int x, int y)
2200 {
2201 menu->SetInvokingWindow(this);
2202 menu->UpdateUI();
2203
2204 if ( x == wxDefaultCoord && y == wxDefaultCoord )
2205 {
2206 wxPoint mouse = ScreenToClient(wxGetMousePosition());
2207 x = mouse.x; y = mouse.y;
2208 }
2209
2210 HWND hWnd = GetHwnd();
2211 HMENU hMenu = GetHmenuOf(menu);
2212 POINT point;
2213 point.x = x;
2214 point.y = y;
2215 ::ClientToScreen(hWnd, &point);
2216 #if defined(__WXWINCE__)
2217 static const UINT flags = 0;
2218 #else // !__WXWINCE__
2219 UINT flags = TPM_RIGHTBUTTON;
2220 // NT4 doesn't support TPM_RECURSE and simply doesn't show the menu at all
2221 // when it's use, I'm not sure about Win95/98 but prefer to err on the safe
2222 // side and not to use it there neither -- modify the test if it does work
2223 // on these systems
2224 if ( wxGetWinVersion() >= wxWinVersion_5 )
2225 {
2226 // using TPM_RECURSE allows us to show a popup menu while another menu
2227 // is opened which can be useful and is supported by the other
2228 // platforms, so allow it under Windows too
2229 flags |= TPM_RECURSE;
2230 }
2231 #endif // __WXWINCE__/!__WXWINCE__
2232
2233 ::TrackPopupMenu(hMenu, flags, point.x, point.y, 0, hWnd, NULL);
2234
2235 // we need to do it right now as otherwise the events are never going to be
2236 // sent to wxCurrentPopupMenu from HandleCommand()
2237 //
2238 // note that even eliminating (ugly) wxCurrentPopupMenu global wouldn't
2239 // help and we'd still need wxYieldForCommandsOnly() as the menu may be
2240 // destroyed as soon as we return (it can be a local variable in the caller
2241 // for example) and so we do need to process the event immediately
2242 wxYieldForCommandsOnly();
2243
2244 menu->SetInvokingWindow(NULL);
2245
2246 return true;
2247 }
2248
2249 #endif // wxUSE_MENUS_NATIVE
2250
2251 // ===========================================================================
2252 // pre/post message processing
2253 // ===========================================================================
2254
2255 WXLRESULT wxWindowMSW::MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
2256 {
2257 if ( m_oldWndProc )
2258 return ::CallWindowProc(CASTWNDPROC m_oldWndProc, GetHwnd(), (UINT) nMsg, (WPARAM) wParam, (LPARAM) lParam);
2259 else
2260 return ::DefWindowProc(GetHwnd(), nMsg, wParam, lParam);
2261 }
2262
2263 bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg)
2264 {
2265 // wxUniversal implements tab traversal itself
2266 #ifndef __WXUNIVERSAL__
2267 if ( m_hWnd != 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL) )
2268 {
2269 // intercept dialog navigation keys
2270 MSG *msg = (MSG *)pMsg;
2271
2272 // here we try to do all the job which ::IsDialogMessage() usually does
2273 // internally
2274 if ( msg->message == WM_KEYDOWN )
2275 {
2276 bool bCtrlDown = wxIsCtrlDown();
2277 bool bShiftDown = wxIsShiftDown();
2278
2279 // WM_GETDLGCODE: ask the control if it wants the key for itself,
2280 // don't process it if it's the case (except for Ctrl-Tab/Enter
2281 // combinations which are always processed)
2282 LONG lDlgCode = ::SendMessage(msg->hwnd, WM_GETDLGCODE, 0, 0);
2283
2284 // surprizingly, DLGC_WANTALLKEYS bit mask doesn't contain the
2285 // DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically,
2286 // it, of course, implies them
2287 if ( lDlgCode & DLGC_WANTALLKEYS )
2288 {
2289 lDlgCode |= DLGC_WANTTAB | DLGC_WANTARROWS;
2290 }
2291
2292 bool bForward = true,
2293 bWindowChange = false,
2294 bFromTab = false;
2295
2296 // should we process this message specially?
2297 bool bProcess = true;
2298 switch ( msg->wParam )
2299 {
2300 case VK_TAB:
2301 if ( (lDlgCode & DLGC_WANTTAB) && !bCtrlDown )
2302 {
2303 // let the control have the TAB
2304 bProcess = false;
2305 }
2306 else // use it for navigation
2307 {
2308 // Ctrl-Tab cycles thru notebook pages
2309 bWindowChange = bCtrlDown;
2310 bForward = !bShiftDown;
2311 bFromTab = true;
2312 }
2313 break;
2314
2315 case VK_UP:
2316 case VK_LEFT:
2317 if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown )
2318 bProcess = false;
2319 else
2320 bForward = false;
2321 break;
2322
2323 case VK_DOWN:
2324 case VK_RIGHT:
2325 if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown )
2326 bProcess = false;
2327 break;
2328
2329 case VK_PRIOR:
2330 bForward = false;
2331 // fall through
2332
2333 case VK_NEXT:
2334 // we treat PageUp/Dn as arrows because chances are that
2335 // a control which needs arrows also needs them for
2336 // navigation (e.g. wxTextCtrl, wxListCtrl, ...)
2337 if ( (lDlgCode & DLGC_WANTARROWS) && !bCtrlDown )
2338 bProcess = false;
2339 else // OTOH Ctrl-PageUp/Dn works as [Shift-]Ctrl-Tab
2340 bWindowChange = true;
2341 break;
2342
2343 case VK_RETURN:
2344 {
2345 #if wxUSE_BUTTON
2346 // currently active button should get enter press even
2347 // if there is a default button elsewhere so check if
2348 // this window is a button first
2349 wxWindow *btn = NULL;
2350 if ( lDlgCode & DLGC_DEFPUSHBUTTON )
2351 {
2352 // let IsDialogMessage() handle this for all
2353 // buttons except the owner-drawn ones which it
2354 // just seems to ignore
2355 long style = ::GetWindowLong(msg->hwnd, GWL_STYLE);
2356 if ( (style & BS_OWNERDRAW) == BS_OWNERDRAW )
2357 {
2358 // emulate the button click
2359 btn = wxFindWinFromHandle(msg->hwnd);
2360 }
2361
2362 bProcess = false;
2363 }
2364 else // not a button itself, do we have default button?
2365 {
2366 // check if this window or any of its ancestors
2367 // wants the message for itself (we always reserve
2368 // Ctrl-Enter for dialog navigation though)
2369 wxWindow *win = this;
2370 if ( !bCtrlDown )
2371 {
2372 // this will contain the dialog code of this
2373 // window and all of its parent windows in turn
2374 LONG lDlgCode2 = lDlgCode;
2375
2376 while ( win )
2377 {
2378 if ( lDlgCode2 & DLGC_WANTMESSAGE )
2379 {
2380 // as it wants to process Enter itself,
2381 // don't call IsDialogMessage() which
2382 // would consume it
2383 return false;
2384 }
2385
2386 // don't propagate keyboard messages beyond
2387 // the first top level window parent
2388 if ( win->IsTopLevel() )
2389 break;
2390
2391 win = win->GetParent();
2392
2393 lDlgCode2 = ::SendMessage
2394 (
2395 GetHwndOf(win),
2396 WM_GETDLGCODE,
2397 0,
2398 0
2399 );
2400 }
2401 }
2402 else // bCtrlDown
2403 {
2404 win = wxGetTopLevelParent(win);
2405 }
2406
2407 wxTopLevelWindow * const
2408 tlw = wxDynamicCast(win, wxTopLevelWindow);
2409 if ( tlw )
2410 {
2411 btn = wxDynamicCast(tlw->GetDefaultItem(),
2412 wxButton);
2413 }
2414 }
2415
2416 if ( btn && btn->IsEnabled() )
2417 {
2418 btn->MSWCommand(BN_CLICKED, 0 /* unused */);
2419 return true;
2420 }
2421
2422 #endif // wxUSE_BUTTON
2423
2424 #ifdef __WXWINCE__
2425 // map Enter presses into button presses on PDAs
2426 wxJoystickEvent event(wxEVT_JOY_BUTTON_DOWN);
2427 event.SetEventObject(this);
2428 if ( HandleWindowEvent(event) )
2429 return true;
2430 #endif // __WXWINCE__
2431 }
2432 break;
2433
2434 default:
2435 bProcess = false;
2436 }
2437
2438 if ( bProcess )
2439 {
2440 wxNavigationKeyEvent event;
2441 event.SetDirection(bForward);
2442 event.SetWindowChange(bWindowChange);
2443 event.SetFromTab(bFromTab);
2444 event.SetEventObject(this);
2445
2446 if ( HandleWindowEvent(event) )
2447 {
2448 // as we don't call IsDialogMessage(), which would take of
2449 // this by default, we need to manually send this message
2450 // so that controls can change their UI state if needed
2451 MSWUpdateUIState(UIS_CLEAR, UISF_HIDEFOCUS);
2452
2453 return true;
2454 }
2455 }
2456 }
2457
2458 if ( ::IsDialogMessage(GetHwnd(), msg) )
2459 {
2460 // IsDialogMessage() did something...
2461 return true;
2462 }
2463 }
2464 #endif // __WXUNIVERSAL__
2465
2466 #if wxUSE_TOOLTIPS
2467 if ( m_tooltip )
2468 {
2469 // relay mouse move events to the tooltip control
2470 MSG *msg = (MSG *)pMsg;
2471 if ( msg->message == WM_MOUSEMOVE )
2472 wxToolTip::RelayEvent(pMsg);
2473 }
2474 #endif // wxUSE_TOOLTIPS
2475
2476 return false;
2477 }
2478
2479 bool wxWindowMSW::MSWTranslateMessage(WXMSG* pMsg)
2480 {
2481 #if wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
2482 return m_acceleratorTable.Translate(this, pMsg);
2483 #else
2484 (void) pMsg;
2485 return false;
2486 #endif // wxUSE_ACCEL
2487 }
2488
2489 bool wxWindowMSW::MSWShouldPreProcessMessage(WXMSG* msg)
2490 {
2491 // all tests below have to deal with various bugs/misfeatures of
2492 // IsDialogMessage(): we have to prevent it from being called from our
2493 // MSWProcessMessage() in some situations
2494
2495 // don't let IsDialogMessage() get VK_ESCAPE as it _always_ eats the
2496 // message even when there is no cancel button and when the message is
2497 // needed by the control itself: in particular, it prevents the tree in
2498 // place edit control from being closed with Escape in a dialog
2499 if ( msg->message == WM_KEYDOWN && msg->wParam == VK_ESCAPE )
2500 {
2501 return false;
2502 }
2503
2504 // ::IsDialogMessage() is broken and may sometimes hang the application by
2505 // going into an infinite loop when it tries to find the control to give
2506 // focus to when Alt-<key> is pressed, so we try to detect [some of] the
2507 // situations when this may happen and not call it then
2508 if ( msg->message != WM_SYSCHAR )
2509 return true;
2510
2511 // assume we can call it by default
2512 bool canSafelyCallIsDlgMsg = true;
2513
2514 HWND hwndFocus = ::GetFocus();
2515
2516 // if the currently focused window itself has WS_EX_CONTROLPARENT style,
2517 // ::IsDialogMessage() will also enter an infinite loop, because it will
2518 // recursively check the child windows but not the window itself and so if
2519 // none of the children accepts focus it loops forever (as it only stops
2520 // when it gets back to the window it started from)
2521 //
2522 // while it is very unusual that a window with WS_EX_CONTROLPARENT
2523 // style has the focus, it can happen. One such possibility is if
2524 // all windows are either toplevel, wxDialog, wxPanel or static
2525 // controls and no window can actually accept keyboard input.
2526 #if !defined(__WXWINCE__)
2527 if ( ::GetWindowLong(hwndFocus, GWL_EXSTYLE) & WS_EX_CONTROLPARENT )
2528 {
2529 // pessimistic by default
2530 canSafelyCallIsDlgMsg = false;
2531 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
2532 node;
2533 node = node->GetNext() )
2534 {
2535 wxWindow * const win = node->GetData();
2536 if ( win->CanAcceptFocus() &&
2537 !(::GetWindowLong(GetHwndOf(win), GWL_EXSTYLE) &
2538 WS_EX_CONTROLPARENT) )
2539 {
2540 // it shouldn't hang...
2541 canSafelyCallIsDlgMsg = true;
2542
2543 break;
2544 }
2545 }
2546 }
2547 #endif // !__WXWINCE__
2548
2549 if ( canSafelyCallIsDlgMsg )
2550 {
2551 // ::IsDialogMessage() can enter in an infinite loop when the
2552 // currently focused window is disabled or hidden and its
2553 // parent has WS_EX_CONTROLPARENT style, so don't call it in
2554 // this case
2555 while ( hwndFocus )
2556 {
2557 if ( !::IsWindowEnabled(hwndFocus) ||
2558 !::IsWindowVisible(hwndFocus) )
2559 {
2560 // it would enter an infinite loop if we do this!
2561 canSafelyCallIsDlgMsg = false;
2562
2563 break;
2564 }
2565
2566 if ( !(::GetWindowLong(hwndFocus, GWL_STYLE) & WS_CHILD) )
2567 {
2568 // it's a top level window, don't go further -- e.g. even
2569 // if the parent of a dialog is disabled, this doesn't
2570 // break navigation inside the dialog
2571 break;
2572 }
2573
2574 hwndFocus = ::GetParent(hwndFocus);
2575 }
2576 }
2577
2578 return canSafelyCallIsDlgMsg;
2579 }
2580
2581 // ---------------------------------------------------------------------------
2582 // message params unpackers
2583 // ---------------------------------------------------------------------------
2584
2585 void wxWindowMSW::UnpackCommand(WXWPARAM wParam, WXLPARAM lParam,
2586 WORD *id, WXHWND *hwnd, WORD *cmd)
2587 {
2588 *id = LOWORD(wParam);
2589 *hwnd = (WXHWND)lParam;
2590 *cmd = HIWORD(wParam);
2591 }
2592
2593 void wxWindowMSW::UnpackActivate(WXWPARAM wParam, WXLPARAM lParam,
2594 WXWORD *state, WXWORD *minimized, WXHWND *hwnd)
2595 {
2596 *state = LOWORD(wParam);
2597 *minimized = HIWORD(wParam);
2598 *hwnd = (WXHWND)lParam;
2599 }
2600
2601 void wxWindowMSW::UnpackScroll(WXWPARAM wParam, WXLPARAM lParam,
2602 WXWORD *code, WXWORD *pos, WXHWND *hwnd)
2603 {
2604 *code = LOWORD(wParam);
2605 *pos = HIWORD(wParam);
2606 *hwnd = (WXHWND)lParam;
2607 }
2608
2609 void wxWindowMSW::UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam,
2610 WXHDC *hdc, WXHWND *hwnd)
2611 {
2612 *hwnd = (WXHWND)lParam;
2613 *hdc = (WXHDC)wParam;
2614 }
2615
2616 void wxWindowMSW::UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam,
2617 WXWORD *item, WXWORD *flags, WXHMENU *hmenu)
2618 {
2619 *item = (WXWORD)wParam;
2620 *flags = HIWORD(wParam);
2621 *hmenu = (WXHMENU)lParam;
2622 }
2623
2624 // ---------------------------------------------------------------------------
2625 // Main wxWidgets window proc and the window proc for wxWindow
2626 // ---------------------------------------------------------------------------
2627
2628 // Hook for new window just as it's being created, when the window isn't yet
2629 // associated with the handle
2630 static wxWindowMSW *gs_winBeingCreated = NULL;
2631
2632 // implementation of wxWindowCreationHook class: it just sets gs_winBeingCreated to the
2633 // window being created and insures that it's always unset back later
2634 wxWindowCreationHook::wxWindowCreationHook(wxWindowMSW *winBeingCreated)
2635 {
2636 gs_winBeingCreated = winBeingCreated;
2637 }
2638
2639 wxWindowCreationHook::~wxWindowCreationHook()
2640 {
2641 gs_winBeingCreated = NULL;
2642 }
2643
2644 // Main window proc
2645 LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
2646 {
2647 // trace all messages - useful for the debugging
2648 #ifdef __WXDEBUG__
2649 wxLogTrace(wxTraceMessages,
2650 wxT("Processing %s(hWnd=%p, wParam=%08lx, lParam=%08lx)"),
2651 wxGetMessageName(message), hWnd, (long)wParam, lParam);
2652 #endif // __WXDEBUG__
2653
2654 wxWindowMSW *wnd = wxFindWinFromHandle(hWnd);
2655
2656 // when we get the first message for the HWND we just created, we associate
2657 // it with wxWindow stored in gs_winBeingCreated
2658 if ( !wnd && gs_winBeingCreated )
2659 {
2660 wxAssociateWinWithHandle(hWnd, gs_winBeingCreated);
2661 wnd = gs_winBeingCreated;
2662 gs_winBeingCreated = NULL;
2663 wnd->SetHWND((WXHWND)hWnd);
2664 }
2665
2666 LRESULT rc;
2667
2668 if ( wnd && wxGUIEventLoop::AllowProcessing(wnd) )
2669 rc = wnd->MSWWindowProc(message, wParam, lParam);
2670 else
2671 rc = ::DefWindowProc(hWnd, message, wParam, lParam);
2672
2673 return rc;
2674 }
2675
2676 WXLRESULT wxWindowMSW::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
2677 {
2678 // did we process the message?
2679 bool processed = false;
2680
2681 // the return value
2682 union
2683 {
2684 bool allow;
2685 WXLRESULT result;
2686 WXHBRUSH hBrush;
2687 } rc;
2688
2689 // for most messages we should return 0 when we do process the message
2690 rc.result = 0;
2691
2692 switch ( message )
2693 {
2694 case WM_CREATE:
2695 {
2696 bool mayCreate;
2697 processed = HandleCreate((WXLPCREATESTRUCT)lParam, &mayCreate);
2698 if ( processed )
2699 {
2700 // return 0 to allow window creation
2701 rc.result = mayCreate ? 0 : -1;
2702 }
2703 }
2704 break;
2705
2706 case WM_DESTROY:
2707 // never set processed to true and *always* pass WM_DESTROY to
2708 // DefWindowProc() as Windows may do some internal cleanup when
2709 // processing it and failing to pass the message along may cause
2710 // memory and resource leaks!
2711 (void)HandleDestroy();
2712 break;
2713
2714 case WM_SIZE:
2715 processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam);
2716 break;
2717
2718 case WM_MOVE:
2719 processed = HandleMove(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam));
2720 break;
2721
2722 #if !defined(__WXWINCE__)
2723 case WM_MOVING:
2724 {
2725 LPRECT pRect = (LPRECT)lParam;
2726 wxRect rc;
2727 rc.SetLeft(pRect->left);
2728 rc.SetTop(pRect->top);
2729 rc.SetRight(pRect->right);
2730 rc.SetBottom(pRect->bottom);
2731 processed = HandleMoving(rc);
2732 if (processed) {
2733 pRect->left = rc.GetLeft();
2734 pRect->top = rc.GetTop();
2735 pRect->right = rc.GetRight();
2736 pRect->bottom = rc.GetBottom();
2737 }
2738 }
2739 break;
2740 #if 0
2741 case WM_ENTERSIZEMOVE:
2742 {
2743 processed = HandleEnterSizeMove();
2744 }
2745 break;
2746
2747 case WM_EXITSIZEMOVE:
2748 {
2749 processed = HandleExitSizeMove();
2750 }
2751 break;
2752 #endif
2753 case WM_SIZING:
2754 {
2755 LPRECT pRect = (LPRECT)lParam;
2756 wxRect rc;
2757 rc.SetLeft(pRect->left);
2758 rc.SetTop(pRect->top);
2759 rc.SetRight(pRect->right);
2760 rc.SetBottom(pRect->bottom);
2761 processed = HandleSizing(rc);
2762 if (processed) {
2763 pRect->left = rc.GetLeft();
2764 pRect->top = rc.GetTop();
2765 pRect->right = rc.GetRight();
2766 pRect->bottom = rc.GetBottom();
2767 }
2768 }
2769 break;
2770 #endif // !__WXWINCE__
2771
2772 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
2773 case WM_ACTIVATEAPP:
2774 // This implicitly sends a wxEVT_ACTIVATE_APP event
2775 wxTheApp->SetActive(wParam != 0, FindFocus());
2776 break;
2777 #endif
2778
2779 case WM_ACTIVATE:
2780 {
2781 WXWORD state, minimized;
2782 WXHWND hwnd;
2783 UnpackActivate(wParam, lParam, &state, &minimized, &hwnd);
2784
2785 processed = HandleActivate(state, minimized != 0, (WXHWND)hwnd);
2786 }
2787 break;
2788
2789 case WM_SETFOCUS:
2790 processed = HandleSetFocus((WXHWND)wParam);
2791 break;
2792
2793 case WM_KILLFOCUS:
2794 processed = HandleKillFocus((WXHWND)wParam);
2795 break;
2796
2797 case WM_PRINTCLIENT:
2798 processed = HandlePrintClient((WXHDC)wParam);
2799 break;
2800
2801 case WM_PAINT:
2802 if ( wParam )
2803 {
2804 wxPaintDCEx dc((wxWindow *)this, (WXHDC)wParam);
2805
2806 processed = HandlePaint();
2807 }
2808 else // no DC given
2809 {
2810 processed = HandlePaint();
2811 }
2812 break;
2813
2814 case WM_CLOSE:
2815 #ifdef __WXUNIVERSAL__
2816 // Universal uses its own wxFrame/wxDialog, so we don't receive
2817 // close events unless we have this.
2818 Close();
2819 #endif // __WXUNIVERSAL__
2820
2821 // don't let the DefWindowProc() destroy our window - we'll do it
2822 // ourselves in ~wxWindow
2823 processed = true;
2824 rc.result = TRUE;
2825 break;
2826
2827 case WM_SHOWWINDOW:
2828 processed = HandleShow(wParam != 0, (int)lParam);
2829 break;
2830
2831 case WM_MOUSEMOVE:
2832 processed = HandleMouseMove(GET_X_LPARAM(lParam),
2833 GET_Y_LPARAM(lParam),
2834 wParam);
2835 break;
2836
2837 #ifdef HAVE_TRACKMOUSEEVENT
2838 case WM_MOUSELEAVE:
2839 // filter out excess WM_MOUSELEAVE events sent after PopupMenu()
2840 // (on XP at least)
2841 if ( m_mouseInWindow )
2842 {
2843 GenerateMouseLeave();
2844 }
2845
2846 // always pass processed back as false, this allows the window
2847 // manager to process the message too. This is needed to
2848 // ensure windows XP themes work properly as the mouse moves
2849 // over widgets like buttons. So don't set processed to true here.
2850 break;
2851 #endif // HAVE_TRACKMOUSEEVENT
2852
2853 #if wxUSE_MOUSEWHEEL
2854 case WM_MOUSEWHEEL:
2855 processed = HandleMouseWheel(wParam, lParam);
2856 break;
2857 #endif
2858
2859 case WM_LBUTTONDOWN:
2860 case WM_LBUTTONUP:
2861 case WM_LBUTTONDBLCLK:
2862 case WM_RBUTTONDOWN:
2863 case WM_RBUTTONUP:
2864 case WM_RBUTTONDBLCLK:
2865 case WM_MBUTTONDOWN:
2866 case WM_MBUTTONUP:
2867 case WM_MBUTTONDBLCLK:
2868 #ifdef wxHAS_XBUTTON
2869 case WM_XBUTTONDOWN:
2870 case WM_XBUTTONUP:
2871 case WM_XBUTTONDBLCLK:
2872 #endif // wxHAS_XBUTTON
2873 {
2874 #ifdef __WXMICROWIN__
2875 // MicroWindows seems to ignore the fact that a window is
2876 // disabled. So catch mouse events and throw them away if
2877 // necessary.
2878 wxWindowMSW* win = this;
2879 for ( ;; )
2880 {
2881 if (!win->IsEnabled())
2882 {
2883 processed = true;
2884 break;
2885 }
2886
2887 win = win->GetParent();
2888 if ( !win || win->IsTopLevel() )
2889 break;
2890 }
2891
2892 if ( processed )
2893 break;
2894
2895 #endif // __WXMICROWIN__
2896 int x = GET_X_LPARAM(lParam),
2897 y = GET_Y_LPARAM(lParam);
2898
2899 #ifdef __WXWINCE__
2900 // redirect the event to a static control if necessary by
2901 // finding one under mouse because under CE the static controls
2902 // don't generate mouse events (even with SS_NOTIFY)
2903 wxWindowMSW *win;
2904 if ( GetCapture() == this )
2905 {
2906 // but don't do it if the mouse is captured by this window
2907 // because then it should really get this event itself
2908 win = this;
2909 }
2910 else
2911 {
2912 win = FindWindowForMouseEvent(this, &x, &y);
2913
2914 // this should never happen
2915 wxCHECK_MSG( win, 0,
2916 _T("FindWindowForMouseEvent() returned NULL") );
2917 }
2918 #ifdef __POCKETPC__
2919 if (IsContextMenuEnabled() && message == WM_LBUTTONDOWN)
2920 {
2921 SHRGINFO shrgi = {0};
2922
2923 shrgi.cbSize = sizeof(SHRGINFO);
2924 shrgi.hwndClient = (HWND) GetHWND();
2925 shrgi.ptDown.x = x;
2926 shrgi.ptDown.y = y;
2927
2928 shrgi.dwFlags = SHRG_RETURNCMD;
2929 // shrgi.dwFlags = SHRG_NOTIFYPARENT;
2930
2931 if (GN_CONTEXTMENU == ::SHRecognizeGesture(&shrgi))
2932 {
2933 wxPoint pt(x, y);
2934 pt = ClientToScreen(pt);
2935
2936 wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU, GetId(), pt);
2937
2938 evtCtx.SetEventObject(this);
2939 if (HandleWindowEvent(evtCtx))
2940 {
2941 processed = true;
2942 return true;
2943 }
2944 }
2945 }
2946 #endif
2947
2948 #else // !__WXWINCE__
2949 wxWindowMSW *win = this;
2950 #endif // __WXWINCE__/!__WXWINCE__
2951
2952 processed = win->HandleMouseEvent(message, x, y, wParam);
2953
2954 // if the app didn't eat the event, handle it in the default
2955 // way, that is by giving this window the focus
2956 if ( !processed )
2957 {
2958 // for the standard classes their WndProc sets the focus to
2959 // them anyhow and doing it from here results in some weird
2960 // problems, so don't do it for them (unnecessary anyhow)
2961 if ( !win->IsOfStandardClass() )
2962 {
2963 if ( message == WM_LBUTTONDOWN && win->IsFocusable() )
2964 win->SetFocus();
2965 }
2966 }
2967 }
2968 break;
2969
2970 #ifdef MM_JOY1MOVE
2971 case MM_JOY1MOVE:
2972 case MM_JOY2MOVE:
2973 case MM_JOY1ZMOVE:
2974 case MM_JOY2ZMOVE:
2975 case MM_JOY1BUTTONDOWN:
2976 case MM_JOY2BUTTONDOWN:
2977 case MM_JOY1BUTTONUP:
2978 case MM_JOY2BUTTONUP:
2979 processed = HandleJoystickEvent(message,
2980 GET_X_LPARAM(lParam),
2981 GET_Y_LPARAM(lParam),
2982 wParam);
2983 break;
2984 #endif // __WXMICROWIN__
2985
2986 case WM_COMMAND:
2987 {
2988 WORD id, cmd;
2989 WXHWND hwnd;
2990 UnpackCommand(wParam, lParam, &id, &hwnd, &cmd);
2991
2992 processed = HandleCommand(id, cmd, hwnd);
2993 }
2994 break;
2995
2996 case WM_NOTIFY:
2997 processed = HandleNotify((int)wParam, lParam, &rc.result);
2998 break;
2999
3000 // we only need to reply to WM_NOTIFYFORMAT manually when using MSLU,
3001 // otherwise DefWindowProc() does it perfectly fine for us, but MSLU
3002 // apparently doesn't always behave properly and needs some help
3003 #if wxUSE_UNICODE_MSLU && defined(NF_QUERY)
3004 case WM_NOTIFYFORMAT:
3005 if ( lParam == NF_QUERY )
3006 {
3007 processed = true;
3008 rc.result = NFR_UNICODE;
3009 }
3010 break;
3011 #endif // wxUSE_UNICODE_MSLU
3012
3013 // for these messages we must return true if process the message
3014 #ifdef WM_DRAWITEM
3015 case WM_DRAWITEM:
3016 processed = MSWOnDrawItem(wParam, (WXDRAWITEMSTRUCT *)lParam);
3017 if ( processed )
3018 rc.result = TRUE;
3019 break;
3020
3021 case WM_MEASUREITEM:
3022 processed = MSWOnMeasureItem(wParam, (WXMEASUREITEMSTRUCT *)lParam);
3023 if ( processed )
3024 rc.result = TRUE;
3025 break;
3026 #endif // defined(WM_DRAWITEM)
3027
3028 case WM_GETDLGCODE:
3029 if ( !IsOfStandardClass() || HasFlag(wxWANTS_CHARS) )
3030 {
3031 // we always want to get the char events
3032 rc.result = DLGC_WANTCHARS;
3033
3034 if ( HasFlag(wxWANTS_CHARS) )
3035 {
3036 // in fact, we want everything
3037 rc.result |= DLGC_WANTARROWS |
3038 DLGC_WANTTAB |
3039 DLGC_WANTALLKEYS;
3040 }
3041
3042 processed = true;
3043 }
3044 //else: get the dlg code from the DefWindowProc()
3045 break;
3046
3047 case WM_SYSKEYDOWN:
3048 case WM_KEYDOWN:
3049 // If this has been processed by an event handler, return 0 now
3050 // (we've handled it).
3051 m_lastKeydownProcessed = HandleKeyDown((WORD) wParam, lParam);
3052 if ( m_lastKeydownProcessed )
3053 {
3054 processed = true;
3055 }
3056
3057 if ( !processed )
3058 {
3059 switch ( wParam )
3060 {
3061 // we consider these messages "not interesting" to OnChar, so
3062 // just don't do anything more with them
3063 case VK_SHIFT:
3064 case VK_CONTROL:
3065 case VK_MENU:
3066 case VK_CAPITAL:
3067 case VK_NUMLOCK:
3068 case VK_SCROLL:
3069 processed = true;
3070 break;
3071
3072 // avoid duplicate messages to OnChar for these ASCII keys:
3073 // they will be translated by TranslateMessage() and received
3074 // in WM_CHAR
3075 case VK_ESCAPE:
3076 case VK_SPACE:
3077 case VK_RETURN:
3078 case VK_BACK:
3079 case VK_TAB:
3080 case VK_ADD:
3081 case VK_SUBTRACT:
3082 case VK_MULTIPLY:
3083 case VK_DIVIDE:
3084 case VK_NUMPAD0:
3085 case VK_NUMPAD1:
3086 case VK_NUMPAD2:
3087 case VK_NUMPAD3:
3088 case VK_NUMPAD4:
3089 case VK_NUMPAD5:
3090 case VK_NUMPAD6:
3091 case VK_NUMPAD7:
3092 case VK_NUMPAD8:
3093 case VK_NUMPAD9:
3094 case VK_OEM_1:
3095 case VK_OEM_2:
3096 case VK_OEM_3:
3097 case VK_OEM_4:
3098 case VK_OEM_5:
3099 case VK_OEM_6:
3100 case VK_OEM_7:
3101 case VK_OEM_PLUS:
3102 case VK_OEM_COMMA:
3103 case VK_OEM_MINUS:
3104 case VK_OEM_PERIOD:
3105 // but set processed to false, not true to still pass them
3106 // to the control's default window proc - otherwise
3107 // built-in keyboard handling won't work
3108 processed = false;
3109 break;
3110
3111 #ifdef VK_APPS
3112 // special case of VK_APPS: treat it the same as right mouse
3113 // click because both usually pop up a context menu
3114 case VK_APPS:
3115 processed = HandleMouseEvent(WM_RBUTTONDOWN, -1, -1, 0);
3116 break;
3117 #endif // VK_APPS
3118
3119 default:
3120 // do generate a CHAR event
3121 processed = HandleChar((WORD)wParam, lParam);
3122 }
3123 }
3124 if (message == WM_SYSKEYDOWN) // Let Windows still handle the SYSKEYs
3125 processed = false;
3126 break;
3127
3128 case WM_SYSKEYUP:
3129 case WM_KEYUP:
3130 #ifdef VK_APPS
3131 // special case of VK_APPS: treat it the same as right mouse button
3132 if ( wParam == VK_APPS )
3133 {
3134 processed = HandleMouseEvent(WM_RBUTTONUP, -1, -1, 0);
3135 }
3136 else
3137 #endif // VK_APPS
3138 {
3139 processed = HandleKeyUp((WORD) wParam, lParam);
3140 }
3141 break;
3142
3143 case WM_SYSCHAR:
3144 case WM_CHAR: // Always an ASCII character
3145 if ( m_lastKeydownProcessed )
3146 {
3147 // The key was handled in the EVT_KEY_DOWN and handling
3148 // a key in an EVT_KEY_DOWN handler is meant, by
3149 // design, to prevent EVT_CHARs from happening
3150 m_lastKeydownProcessed = false;
3151 processed = true;
3152 }
3153 else
3154 {
3155 processed = HandleChar((WORD)wParam, lParam, true);
3156 }
3157 break;
3158
3159 #if wxUSE_HOTKEY
3160 case WM_HOTKEY:
3161 processed = HandleHotKey((WORD)wParam, lParam);
3162 break;
3163 #endif // wxUSE_HOTKEY
3164
3165 case WM_CUT:
3166 case WM_COPY:
3167 case WM_PASTE:
3168 processed = HandleClipboardEvent(message);
3169 break;
3170
3171 case WM_HSCROLL:
3172 case WM_VSCROLL:
3173 {
3174 WXWORD code, pos;
3175 WXHWND hwnd;
3176 UnpackScroll(wParam, lParam, &code, &pos, &hwnd);
3177
3178 processed = MSWOnScroll(message == WM_HSCROLL ? wxHORIZONTAL
3179 : wxVERTICAL,
3180 code, pos, hwnd);
3181 }
3182 break;
3183
3184 // CTLCOLOR messages are sent by children to query the parent for their
3185 // colors
3186 #ifndef __WXMICROWIN__
3187 case WM_CTLCOLORMSGBOX:
3188 case WM_CTLCOLOREDIT:
3189 case WM_CTLCOLORLISTBOX:
3190 case WM_CTLCOLORBTN:
3191 case WM_CTLCOLORDLG:
3192 case WM_CTLCOLORSCROLLBAR:
3193 case WM_CTLCOLORSTATIC:
3194 {
3195 WXHDC hdc;
3196 WXHWND hwnd;
3197 UnpackCtlColor(wParam, lParam, &hdc, &hwnd);
3198
3199 processed = HandleCtlColor(&rc.hBrush, (WXHDC)hdc, (WXHWND)hwnd);
3200 }
3201 break;
3202 #endif // !__WXMICROWIN__
3203
3204 case WM_SYSCOLORCHANGE:
3205 // the return value for this message is ignored
3206 processed = HandleSysColorChange();
3207 break;
3208
3209 #if !defined(__WXWINCE__)
3210 case WM_DISPLAYCHANGE:
3211 processed = HandleDisplayChange();
3212 break;
3213 #endif
3214
3215 case WM_PALETTECHANGED:
3216 processed = HandlePaletteChanged((WXHWND)wParam);
3217 break;
3218
3219 case WM_CAPTURECHANGED:
3220 processed = HandleCaptureChanged((WXHWND)lParam);
3221 break;
3222
3223 case WM_SETTINGCHANGE:
3224 processed = HandleSettingChange(wParam, lParam);
3225 break;
3226
3227 case WM_QUERYNEWPALETTE:
3228 processed = HandleQueryNewPalette();
3229 break;
3230
3231 case WM_ERASEBKGND:
3232 processed = HandleEraseBkgnd((WXHDC)wParam);
3233 if ( processed )
3234 {
3235 // we processed the message, i.e. erased the background
3236 rc.result = TRUE;
3237 }
3238 break;
3239
3240 #if !defined(__WXWINCE__)
3241 case WM_DROPFILES:
3242 processed = HandleDropFiles(wParam);
3243 break;
3244 #endif
3245
3246 case WM_INITDIALOG:
3247 processed = HandleInitDialog((WXHWND)wParam);
3248
3249 if ( processed )
3250 {
3251 // we never set focus from here
3252 rc.result = FALSE;
3253 }
3254 break;
3255
3256 #if !defined(__WXWINCE__)
3257 case WM_QUERYENDSESSION:
3258 processed = HandleQueryEndSession(lParam, &rc.allow);
3259 break;
3260
3261 case WM_ENDSESSION:
3262 processed = HandleEndSession(wParam != 0, lParam);
3263 break;
3264
3265 case WM_GETMINMAXINFO:
3266 processed = HandleGetMinMaxInfo((MINMAXINFO*)lParam);
3267 break;
3268 #endif
3269
3270 case WM_SETCURSOR:
3271 processed = HandleSetCursor((WXHWND)wParam,
3272 LOWORD(lParam), // hit test
3273 HIWORD(lParam)); // mouse msg
3274
3275 if ( processed )
3276 {
3277 // returning TRUE stops the DefWindowProc() from further
3278 // processing this message - exactly what we need because we've
3279 // just set the cursor.
3280 rc.result = TRUE;
3281 }
3282 break;
3283
3284 #if wxUSE_ACCESSIBILITY
3285 case WM_GETOBJECT:
3286 {
3287 //WPARAM dwFlags = (WPARAM) (DWORD) wParam;
3288 LPARAM dwObjId = (LPARAM) (DWORD) lParam;
3289
3290 if (dwObjId == (LPARAM)OBJID_CLIENT && GetOrCreateAccessible())
3291 {
3292 return LresultFromObject(IID_IAccessible, wParam, (IUnknown*) GetAccessible()->GetIAccessible());
3293 }
3294 break;
3295 }
3296 #endif
3297
3298 #if defined(WM_HELP)
3299 case WM_HELP:
3300 {
3301 // by default, WM_HELP is propagated by DefWindowProc() upwards
3302 // to the window parent but as we do it ourselves already
3303 // (wxHelpEvent is derived from wxCommandEvent), we don't want
3304 // to get the other events if we process this message at all
3305 processed = true;
3306
3307 // WM_HELP doesn't use lParam under CE
3308 #ifndef __WXWINCE__
3309 HELPINFO* info = (HELPINFO*) lParam;
3310 if ( info->iContextType == HELPINFO_WINDOW )
3311 {
3312 #endif // !__WXWINCE__
3313 wxHelpEvent helpEvent
3314 (
3315 wxEVT_HELP,
3316 GetId(),
3317 #ifdef __WXWINCE__
3318 wxGetMousePosition() // what else?
3319 #else
3320 wxPoint(info->MousePos.x, info->MousePos.y)
3321 #endif
3322 );
3323
3324 helpEvent.SetEventObject(this);
3325 HandleWindowEvent(helpEvent);
3326 #ifndef __WXWINCE__
3327 }
3328 else if ( info->iContextType == HELPINFO_MENUITEM )
3329 {
3330 wxHelpEvent helpEvent(wxEVT_HELP, info->iCtrlId);
3331 helpEvent.SetEventObject(this);
3332 HandleWindowEvent(helpEvent);
3333
3334 }
3335 else // unknown help event?
3336 {
3337 processed = false;
3338 }
3339 #endif // !__WXWINCE__
3340 }
3341 break;
3342 #endif // WM_HELP
3343
3344 #if !defined(__WXWINCE__)
3345 case WM_CONTEXTMENU:
3346 {
3347 // we don't convert from screen to client coordinates as
3348 // the event may be handled by a parent window
3349 wxPoint pt(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam));
3350
3351 wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU, GetId(), pt);
3352
3353 // we could have got an event from our child, reflect it back
3354 // to it if this is the case
3355 wxWindowMSW *win = NULL;
3356 WXHWND hWnd = (WXHWND)wParam;
3357 if ( hWnd != m_hWnd )
3358 {
3359 win = FindItemByHWND(hWnd);
3360 }
3361
3362 if ( !win )
3363 win = this;
3364
3365 evtCtx.SetEventObject(win);
3366 processed = win->HandleWindowEvent(evtCtx);
3367 }
3368 break;
3369 #endif
3370
3371 #if wxUSE_MENUS
3372 case WM_MENUCHAR:
3373 // we're only interested in our own menus, not MF_SYSMENU
3374 if ( HIWORD(wParam) == MF_POPUP )
3375 {
3376 // handle menu chars for ownerdrawn menu items
3377 int i = HandleMenuChar(toupper(LOWORD(wParam)), lParam);
3378 if ( i != wxNOT_FOUND )
3379 {
3380 rc.result = MAKELRESULT(i, MNC_EXECUTE);
3381 processed = true;
3382 }
3383 }
3384 break;
3385 #endif // wxUSE_MENUS
3386
3387 #ifndef __WXWINCE__
3388 case WM_POWERBROADCAST:
3389 {
3390 bool vetoed;
3391 processed = HandlePower(wParam, lParam, &vetoed);
3392 rc.result = processed && vetoed ? BROADCAST_QUERY_DENY : TRUE;
3393 }
3394 break;
3395 #endif // __WXWINCE__
3396
3397 #if wxUSE_UXTHEME
3398 // If we want the default themed border then we need to draw it ourselves
3399 case WM_NCCALCSIZE:
3400 {
3401 wxUxThemeEngine* theme = wxUxThemeEngine::GetIfActive();
3402 const wxBorder border = TranslateBorder(GetBorder());
3403 if (theme && border == wxBORDER_THEME)
3404 {
3405 // first ask the widget to calculate the border size
3406 rc.result = MSWDefWindowProc(message, wParam, lParam);
3407 processed = true;
3408
3409 // now alter the client size making room for drawing a themed border
3410 NCCALCSIZE_PARAMS *csparam = NULL;
3411 RECT *rect;
3412 if ( wParam )
3413 {
3414 csparam = (NCCALCSIZE_PARAMS *)lParam;
3415 rect = &csparam->rgrc[0];
3416 }
3417 else
3418 {
3419 rect = (RECT *)lParam;
3420 }
3421
3422 wxUxThemeHandle hTheme((wxWindow *)this, L"EDIT");
3423 RECT rcClient = { 0, 0, 0, 0 };
3424 wxClientDC dc((wxWindow *)this);
3425 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl();
3426
3427 if ( theme->GetThemeBackgroundContentRect
3428 (
3429 hTheme,
3430 GetHdcOf(*impl),
3431 EP_EDITTEXT,
3432 ETS_NORMAL,
3433 rect,
3434 &rcClient) == S_OK )
3435 {
3436 InflateRect(&rcClient, -1, -1);
3437 *rect = rcClient;
3438 rc.result = WVR_REDRAW;
3439 }
3440 }
3441 }
3442 break;
3443
3444 case WM_NCPAINT:
3445 {
3446 wxUxThemeEngine* theme = wxUxThemeEngine::GetIfActive();
3447 const wxBorder border = TranslateBorder(GetBorder());
3448 if (theme && border == wxBORDER_THEME)
3449 {
3450 // first ask the widget to paint its non-client area, such as scrollbars, etc.
3451 rc.result = MSWDefWindowProc(message, wParam, lParam);
3452 processed = true;
3453
3454 wxUxThemeHandle hTheme((wxWindow *)this, L"EDIT");
3455 wxWindowDC dc((wxWindow *)this);
3456 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl();
3457
3458 // Clip the DC so that you only draw on the non-client area
3459 RECT rcBorder;
3460 wxCopyRectToRECT(GetSize(), rcBorder);
3461
3462 RECT rcClient;
3463 theme->GetThemeBackgroundContentRect(
3464 hTheme, GetHdcOf(*impl), EP_EDITTEXT, ETS_NORMAL, &rcBorder, &rcClient);
3465 InflateRect(&rcClient, -1, -1);
3466
3467 ::ExcludeClipRect(GetHdcOf(*impl), rcClient.left, rcClient.top,
3468 rcClient.right, rcClient.bottom);
3469
3470 // Make sure the background is in a proper state
3471 if (theme->IsThemeBackgroundPartiallyTransparent(hTheme, EP_EDITTEXT, ETS_NORMAL))
3472 {
3473 theme->DrawThemeParentBackground(GetHwnd(), GetHdcOf(*impl), &rcBorder);
3474 }
3475
3476 // Draw the border
3477 int nState;
3478 if ( !IsEnabled() )
3479 nState = ETS_DISABLED;
3480 // should we check this?
3481 //else if ( ::GetWindowLong(GetHwnd(), GWL_STYLE) & ES_READONLY)
3482 // nState = ETS_READONLY;
3483 else
3484 nState = ETS_NORMAL;
3485 theme->DrawThemeBackground(hTheme, GetHdcOf(*impl), EP_EDITTEXT, nState, &rcBorder, NULL);
3486 }
3487 }
3488 break;
3489
3490 #endif // wxUSE_UXTHEME
3491
3492 default:
3493 // try a custom message handler
3494 const MSWMessageHandlers::const_iterator
3495 i = gs_messageHandlers.find(message);
3496 if ( i != gs_messageHandlers.end() )
3497 {
3498 processed = (*i->second)(this, message, wParam, lParam);
3499 }
3500 }
3501
3502 if ( !processed )
3503 {
3504 #ifdef __WXDEBUG__
3505 wxLogTrace(wxTraceMessages, wxT("Forwarding %s to DefWindowProc."),
3506 wxGetMessageName(message));
3507 #endif // __WXDEBUG__
3508 rc.result = MSWDefWindowProc(message, wParam, lParam);
3509 }
3510
3511 return rc.result;
3512 }
3513
3514 // ----------------------------------------------------------------------------
3515 // wxWindow <-> HWND map
3516 // ----------------------------------------------------------------------------
3517
3518 wxWindow *wxFindWinFromHandle(HWND hwnd)
3519 {
3520 WindowHandles::const_iterator i = gs_windowHandles.find(hwnd);
3521 return i == gs_windowHandles.end() ? NULL : i->second;
3522 }
3523
3524 void wxAssociateWinWithHandle(HWND hwnd, wxWindowMSW *win)
3525 {
3526 // adding NULL hwnd is (first) surely a result of an error and
3527 // (secondly) breaks menu command processing
3528 wxCHECK_RET( hwnd != (HWND)NULL,
3529 wxT("attempt to add a NULL hwnd to window list ignored") );
3530
3531 #ifdef __WXDEBUG__
3532 WindowHandles::const_iterator i = gs_windowHandles.find(hwnd);
3533 if ( i != gs_windowHandles.end() )
3534 {
3535 if ( i->second != win )
3536 {
3537 wxLogDebug(wxT("HWND %p already associated with another window (%s)"),
3538 hwnd, win->GetClassInfo()->GetClassName());
3539 }
3540 //else: this actually happens currently because we associate the window
3541 // with its HWND during creation (if we create it) and also when
3542 // SubclassWin() is called later, this is ok
3543 }
3544 #endif // __WXDEBUG__
3545
3546 gs_windowHandles[hwnd] = win;
3547 }
3548
3549 void wxRemoveHandleAssociation(wxWindowMSW *win)
3550 {
3551 gs_windowHandles.erase(GetHwndOf(win));
3552 }
3553
3554 // ----------------------------------------------------------------------------
3555 // various MSW speciic class dependent functions
3556 // ----------------------------------------------------------------------------
3557
3558 // Default destroyer - override if you destroy it in some other way
3559 // (e.g. with MDI child windows)
3560 void wxWindowMSW::MSWDestroyWindow()
3561 {
3562 }
3563
3564 bool wxWindowMSW::MSWGetCreateWindowCoords(const wxPoint& pos,
3565 const wxSize& size,
3566 int& x, int& y,
3567 int& w, int& h) const
3568 {
3569 // yes, those are just some arbitrary hardcoded numbers
3570 static const int DEFAULT_Y = 200;
3571
3572 bool nonDefault = false;
3573
3574 if ( pos.x == wxDefaultCoord )
3575 {
3576 // if x is set to CW_USEDEFAULT, y parameter is ignored anyhow so we
3577 // can just as well set it to CW_USEDEFAULT as well
3578 x =
3579 y = CW_USEDEFAULT;
3580 }
3581 else
3582 {
3583 // OTOH, if x is not set to CW_USEDEFAULT, y shouldn't be set to it
3584 // neither because it is not handled as a special value by Windows then
3585 // and so we have to choose some default value for it
3586 x = pos.x;
3587 y = pos.y == wxDefaultCoord ? DEFAULT_Y : pos.y;
3588
3589 nonDefault = true;
3590 }
3591
3592 /*
3593 NB: there used to be some code here which set the initial size of the
3594 window to the client size of the parent if no explicit size was
3595 specified. This was wrong because wxWidgets programs often assume
3596 that they get a WM_SIZE (EVT_SIZE) upon creation, however this broke
3597 it. To see why, you should understand that Windows sends WM_SIZE from
3598 inside ::CreateWindow() anyhow. However, ::CreateWindow() is called
3599 from some base class ctor and so this WM_SIZE is not processed in the
3600 real class' OnSize() (because it's not fully constructed yet and the
3601 event goes to some base class OnSize() instead). So the WM_SIZE we
3602 rely on is the one sent when the parent frame resizes its children
3603 but here is the problem: if the child already has just the right
3604 size, nothing will happen as both wxWidgets and Windows check for
3605 this and ignore any attempts to change the window size to the size it
3606 already has - so no WM_SIZE would be sent.
3607 */
3608
3609
3610 // we don't use CW_USEDEFAULT here for several reasons:
3611 //
3612 // 1. it results in huge frames on modern screens (1000*800 is not
3613 // uncommon on my 1280*1024 screen) which is way too big for a half
3614 // empty frame of most of wxWidgets samples for example)
3615 //
3616 // 2. it is buggy for frames with wxFRAME_TOOL_WINDOW style for which
3617 // the default is for whatever reason 8*8 which breaks client <->
3618 // window size calculations (it would be nice if it didn't, but it
3619 // does and the simplest way to fix it seemed to change the broken
3620 // default size anyhow)
3621 //
3622 // 3. there is just no advantage in doing it: with x and y it is
3623 // possible that [future versions of] Windows position the new top
3624 // level window in some smart way which we can't do, but we can
3625 // guess a reasonably good size for a new window just as well
3626 // ourselves
3627
3628 // However, on PocketPC devices, we must use the default
3629 // size if possible.
3630 #ifdef _WIN32_WCE
3631 if (size.x == wxDefaultCoord)
3632 w = CW_USEDEFAULT;
3633 else
3634 w = size.x;
3635 if (size.y == wxDefaultCoord)
3636 h = CW_USEDEFAULT;
3637 else
3638 h = size.y;
3639 #else
3640 if ( size.x == wxDefaultCoord || size.y == wxDefaultCoord)
3641 {
3642 nonDefault = true;
3643 }
3644 w = WidthDefault(size.x);
3645 h = HeightDefault(size.y);
3646 #endif
3647
3648 AdjustForParentClientOrigin(x, y);
3649
3650 return nonDefault;
3651 }
3652
3653 WXHWND wxWindowMSW::MSWGetParent() const
3654 {
3655 return m_parent ? m_parent->GetHWND() : WXHWND(NULL);
3656 }
3657
3658 bool wxWindowMSW::MSWCreate(const wxChar *wclass,
3659 const wxChar *title,
3660 const wxPoint& pos,
3661 const wxSize& size,
3662 WXDWORD style,
3663 WXDWORD extendedStyle)
3664 {
3665 // choose the position/size for the new window
3666 int x, y, w, h;
3667 (void)MSWGetCreateWindowCoords(pos, size, x, y, w, h);
3668
3669 // controlId is menu handle for the top level windows, so set it to 0
3670 // unless we're creating a child window
3671 int controlId = style & WS_CHILD ? GetId() : 0;
3672
3673 // for each class "Foo" we have we also have "FooNR" ("no repaint") class
3674 // which is the same but without CS_[HV]REDRAW class styles so using it
3675 // ensures that the window is not fully repainted on each resize
3676 wxString className(wclass);
3677 if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE) )
3678 {
3679 className += wxT("NR");
3680 }
3681
3682 // do create the window
3683 wxWindowCreationHook hook(this);
3684
3685 m_hWnd = (WXHWND)::CreateWindowEx
3686 (
3687 extendedStyle,
3688 className.wx_str(),
3689 title ? title : m_windowName.wx_str(),
3690 style,
3691 x, y, w, h,
3692 (HWND)MSWGetParent(),
3693 (HMENU)wxUIntToPtr(controlId),
3694 wxGetInstance(),
3695 NULL // no extra data
3696 );
3697
3698 if ( !m_hWnd )
3699 {
3700 wxLogSysError(_("Can't create window of class %s"), className.c_str());
3701
3702 return false;
3703 }
3704
3705 SubclassWin(m_hWnd);
3706
3707 return true;
3708 }
3709
3710 // ===========================================================================
3711 // MSW message handlers
3712 // ===========================================================================
3713
3714 // ---------------------------------------------------------------------------
3715 // WM_NOTIFY
3716 // ---------------------------------------------------------------------------
3717
3718 bool wxWindowMSW::HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
3719 {
3720 #ifndef __WXMICROWIN__
3721 LPNMHDR hdr = (LPNMHDR)lParam;
3722 HWND hWnd = hdr->hwndFrom;
3723 wxWindow *win = wxFindWinFromHandle(hWnd);
3724
3725 // if the control is one of our windows, let it handle the message itself
3726 if ( win )
3727 {
3728 return win->MSWOnNotify(idCtrl, lParam, result);
3729 }
3730
3731 // VZ: why did we do it? normally this is unnecessary and, besides, it
3732 // breaks the message processing for the toolbars because the tooltip
3733 // notifications were being forwarded to the toolbar child controls
3734 // (if it had any) before being passed to the toolbar itself, so in my
3735 // example the tooltip for the combobox was always shown instead of the
3736 // correct button tooltips
3737 #if 0
3738 // try all our children
3739 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
3740 while ( node )
3741 {
3742 wxWindow *child = node->GetData();
3743 if ( child->MSWOnNotify(idCtrl, lParam, result) )
3744 {
3745 return true;
3746 }
3747
3748 node = node->GetNext();
3749 }
3750 #endif // 0
3751
3752 // by default, handle it ourselves
3753 return MSWOnNotify(idCtrl, lParam, result);
3754 #else // __WXMICROWIN__
3755 return false;
3756 #endif
3757 }
3758
3759 #if wxUSE_TOOLTIPS
3760
3761 bool wxWindowMSW::HandleTooltipNotify(WXUINT code,
3762 WXLPARAM lParam,
3763 const wxString& ttip)
3764 {
3765 // I don't know why it happens, but the versions of comctl32.dll starting
3766 // from 4.70 sometimes send TTN_NEEDTEXTW even to ANSI programs (normally,
3767 // this message is supposed to be sent to Unicode programs only) -- hence
3768 // we need to handle it as well, otherwise no tooltips will be shown in
3769 // this case
3770 #ifndef __WXWINCE__
3771 if ( !(code == (WXUINT) TTN_NEEDTEXTA || code == (WXUINT) TTN_NEEDTEXTW)
3772 || ttip.empty() )
3773 {
3774 // not a tooltip message or no tooltip to show anyhow
3775 return false;
3776 }
3777 #endif
3778
3779 LPTOOLTIPTEXT ttText = (LPTOOLTIPTEXT)lParam;
3780
3781 // We don't want to use the szText buffer because it has a limit of 80
3782 // bytes and this is not enough, especially for Unicode build where it
3783 // limits the tooltip string length to only 40 characters
3784 //
3785 // The best would be, of course, to not impose any length limitations at
3786 // all but then the buffer would have to be dynamic and someone would have
3787 // to free it and we don't have the tooltip owner object here any more, so
3788 // for now use our own static buffer with a higher fixed max length.
3789 //
3790 // Note that using a static buffer should not be a problem as only a single
3791 // tooltip can be shown at the same time anyhow.
3792 #if !wxUSE_UNICODE
3793 if ( code == (WXUINT) TTN_NEEDTEXTW )
3794 {
3795 // We need to convert tooltip from multi byte to Unicode on the fly.
3796 static wchar_t buf[513];
3797
3798 // Truncate tooltip length if needed as otherwise we might not have
3799 // enough space for it in the buffer and MultiByteToWideChar() would
3800 // return an error
3801 size_t tipLength = wxMin(ttip.length(), WXSIZEOF(buf) - 1);
3802
3803 // Convert to WideChar without adding the NULL character. The NULL
3804 // character is added afterwards (this is more efficient).
3805 int len = ::MultiByteToWideChar
3806 (
3807 CP_ACP,
3808 0, // no flags
3809 ttip.wx_str(),
3810 tipLength,
3811 buf,
3812 WXSIZEOF(buf) - 1
3813 );
3814
3815 if ( !len )
3816 {
3817 wxLogLastError(_T("MultiByteToWideChar()"));
3818 }
3819
3820 buf[len] = L'\0';
3821 ttText->lpszText = (LPSTR) buf;
3822 }
3823 else // TTN_NEEDTEXTA
3824 #endif // !wxUSE_UNICODE
3825 {
3826 // we get here if we got TTN_NEEDTEXTA (only happens in ANSI build) or
3827 // if we got TTN_NEEDTEXTW in Unicode build: in this case we just have
3828 // to copy the string we have into the buffer
3829 static wxChar buf[513];
3830 wxStrncpy(buf, ttip.c_str(), WXSIZEOF(buf) - 1);
3831 buf[WXSIZEOF(buf) - 1] = _T('\0');
3832 ttText->lpszText = buf;
3833 }
3834
3835 return true;
3836 }
3837
3838 #endif // wxUSE_TOOLTIPS
3839
3840 bool wxWindowMSW::MSWOnNotify(int WXUNUSED(idCtrl),
3841 WXLPARAM lParam,
3842 WXLPARAM* WXUNUSED(result))
3843 {
3844 #if wxUSE_TOOLTIPS
3845 if ( m_tooltip )
3846 {
3847 NMHDR* hdr = (NMHDR *)lParam;
3848 if ( HandleTooltipNotify(hdr->code, lParam, m_tooltip->GetTip()))
3849 {
3850 // processed
3851 return true;
3852 }
3853 }
3854 #else
3855 wxUnusedVar(lParam);
3856 #endif // wxUSE_TOOLTIPS
3857
3858 return false;
3859 }
3860
3861 // ---------------------------------------------------------------------------
3862 // end session messages
3863 // ---------------------------------------------------------------------------
3864
3865 bool wxWindowMSW::HandleQueryEndSession(long logOff, bool *mayEnd)
3866 {
3867 #ifdef ENDSESSION_LOGOFF
3868 wxCloseEvent event(wxEVT_QUERY_END_SESSION, wxID_ANY);
3869 event.SetEventObject(wxTheApp);
3870 event.SetCanVeto(true);
3871 event.SetLoggingOff(logOff == (long)ENDSESSION_LOGOFF);
3872
3873 bool rc = wxTheApp->ProcessEvent(event);
3874
3875 if ( rc )
3876 {
3877 // we may end only if the app didn't veto session closing (double
3878 // negation...)
3879 *mayEnd = !event.GetVeto();
3880 }
3881
3882 return rc;
3883 #else
3884 wxUnusedVar(logOff);
3885 wxUnusedVar(mayEnd);
3886 return false;
3887 #endif
3888 }
3889
3890 bool wxWindowMSW::HandleEndSession(bool endSession, long logOff)
3891 {
3892 #ifdef ENDSESSION_LOGOFF
3893 // do nothing if the session isn't ending
3894 if ( !endSession )
3895 return false;
3896
3897 // only send once
3898 if ( (this != wxTheApp->GetTopWindow()) )
3899 return false;
3900
3901 wxCloseEvent event(wxEVT_END_SESSION, wxID_ANY);
3902 event.SetEventObject(wxTheApp);
3903 event.SetCanVeto(false);
3904 event.SetLoggingOff( (logOff == (long)ENDSESSION_LOGOFF) );
3905
3906 return wxTheApp->ProcessEvent(event);
3907 #else
3908 wxUnusedVar(endSession);
3909 wxUnusedVar(logOff);
3910 return false;
3911 #endif
3912 }
3913
3914 // ---------------------------------------------------------------------------
3915 // window creation/destruction
3916 // ---------------------------------------------------------------------------
3917
3918 bool wxWindowMSW::HandleCreate(WXLPCREATESTRUCT WXUNUSED_IN_WINCE(cs),
3919 bool *mayCreate)
3920 {
3921 // VZ: why is this commented out for WinCE? If it doesn't support
3922 // WS_EX_CONTROLPARENT at all it should be somehow handled globally,
3923 // not with multiple #ifdef's!
3924 #ifndef __WXWINCE__
3925 if ( ((CREATESTRUCT *)cs)->dwExStyle & WS_EX_CONTROLPARENT )
3926 EnsureParentHasControlParentStyle(GetParent());
3927 #endif // !__WXWINCE__
3928
3929 *mayCreate = true;
3930
3931 return true;
3932 }
3933
3934 bool wxWindowMSW::HandleDestroy()
3935 {
3936 SendDestroyEvent();
3937
3938 // delete our drop target if we've got one
3939 #if wxUSE_DRAG_AND_DROP
3940 if ( m_dropTarget != NULL )
3941 {
3942 m_dropTarget->Revoke(m_hWnd);
3943
3944 delete m_dropTarget;
3945 m_dropTarget = NULL;
3946 }
3947 #endif // wxUSE_DRAG_AND_DROP
3948
3949 // WM_DESTROY handled
3950 return true;
3951 }
3952
3953 // ---------------------------------------------------------------------------
3954 // activation/focus
3955 // ---------------------------------------------------------------------------
3956
3957 bool wxWindowMSW::HandleActivate(int state,
3958 bool WXUNUSED(minimized),
3959 WXHWND WXUNUSED(activate))
3960 {
3961 wxActivateEvent event(wxEVT_ACTIVATE,
3962 (state == WA_ACTIVE) || (state == WA_CLICKACTIVE),
3963 m_windowId);
3964 event.SetEventObject(this);
3965
3966 return HandleWindowEvent(event);
3967 }
3968
3969 bool wxWindowMSW::HandleSetFocus(WXHWND hwnd)
3970 {
3971 // Strangly enough, some controls get set focus events when they are being
3972 // deleted, even if they already had focus before.
3973 if ( m_isBeingDeleted )
3974 {
3975 return false;
3976 }
3977
3978 // notify the parent keeping track of focus for the kbd navigation
3979 // purposes that we got it
3980 wxChildFocusEvent eventFocus((wxWindow *)this);
3981 (void)HandleWindowEvent(eventFocus);
3982
3983 #if wxUSE_CARET
3984 // Deal with caret
3985 if ( m_caret )
3986 {
3987 m_caret->OnSetFocus();
3988 }
3989 #endif // wxUSE_CARET
3990
3991 wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId);
3992 event.SetEventObject(this);
3993
3994 // wxFindWinFromHandle() may return NULL, it is ok
3995 event.SetWindow(wxFindWinFromHandle(hwnd));
3996
3997 return HandleWindowEvent(event);
3998 }
3999
4000 bool wxWindowMSW::HandleKillFocus(WXHWND hwnd)
4001 {
4002 #if wxUSE_CARET
4003 // Deal with caret
4004 if ( m_caret )
4005 {
4006 m_caret->OnKillFocus();
4007 }
4008 #endif // wxUSE_CARET
4009
4010 // Don't send the event when in the process of being deleted. This can
4011 // only cause problems if the event handler tries to access the object.
4012 if ( m_isBeingDeleted )
4013 {
4014 return false;
4015 }
4016
4017 wxFocusEvent event(wxEVT_KILL_FOCUS, m_windowId);
4018 event.SetEventObject(this);
4019
4020 // wxFindWinFromHandle() may return NULL, it is ok
4021 event.SetWindow(wxFindWinFromHandle(hwnd));
4022
4023 return HandleWindowEvent(event);
4024 }
4025
4026 // ---------------------------------------------------------------------------
4027 // labels
4028 // ---------------------------------------------------------------------------
4029
4030 void wxWindowMSW::SetLabel( const wxString& label)
4031 {
4032 SetWindowText(GetHwnd(), label.c_str());
4033 }
4034
4035 wxString wxWindowMSW::GetLabel() const
4036 {
4037 return wxGetWindowText(GetHWND());
4038 }
4039
4040 // ---------------------------------------------------------------------------
4041 // miscellaneous
4042 // ---------------------------------------------------------------------------
4043
4044 bool wxWindowMSW::HandleShow(bool show, int WXUNUSED(status))
4045 {
4046 wxShowEvent event(GetId(), show);
4047 event.SetEventObject(this);
4048
4049 return HandleWindowEvent(event);
4050 }
4051
4052 bool wxWindowMSW::HandleInitDialog(WXHWND WXUNUSED(hWndFocus))
4053 {
4054 wxInitDialogEvent event(GetId());
4055 event.SetEventObject(this);
4056
4057 return HandleWindowEvent(event);
4058 }
4059
4060 bool wxWindowMSW::HandleDropFiles(WXWPARAM wParam)
4061 {
4062 #if defined (__WXMICROWIN__) || defined(__WXWINCE__)
4063 wxUnusedVar(wParam);
4064 return false;
4065 #else // __WXMICROWIN__
4066 HDROP hFilesInfo = (HDROP) wParam;
4067
4068 // Get the total number of files dropped
4069 UINT gwFilesDropped = ::DragQueryFile
4070 (
4071 (HDROP)hFilesInfo,
4072 (UINT)-1,
4073 (LPTSTR)0,
4074 (UINT)0
4075 );
4076
4077 wxString *files = new wxString[gwFilesDropped];
4078 for ( UINT wIndex = 0; wIndex < gwFilesDropped; wIndex++ )
4079 {
4080 // first get the needed buffer length (+1 for terminating NUL)
4081 size_t len = ::DragQueryFile(hFilesInfo, wIndex, NULL, 0) + 1;
4082
4083 // and now get the file name
4084 ::DragQueryFile(hFilesInfo, wIndex,
4085 wxStringBuffer(files[wIndex], len), len);
4086 }
4087 DragFinish (hFilesInfo);
4088
4089 wxDropFilesEvent event(wxEVT_DROP_FILES, gwFilesDropped, files);
4090 event.SetEventObject(this);
4091
4092 POINT dropPoint;
4093 DragQueryPoint(hFilesInfo, (LPPOINT) &dropPoint);
4094 event.m_pos.x = dropPoint.x;
4095 event.m_pos.y = dropPoint.y;
4096
4097 return HandleWindowEvent(event);
4098 #endif
4099 }
4100
4101
4102 bool wxWindowMSW::HandleSetCursor(WXHWND WXUNUSED(hWnd),
4103 short nHitTest,
4104 int WXUNUSED(mouseMsg))
4105 {
4106 #ifndef __WXMICROWIN__
4107 // the logic is as follows:
4108 // 0. if we're busy, set the busy cursor (even for non client elements)
4109 // 1. don't set custom cursor for non client area of enabled windows
4110 // 2. ask user EVT_SET_CURSOR handler for the cursor
4111 // 3. if still no cursor but we're in a TLW, set the global cursor
4112
4113 HCURSOR hcursor = 0;
4114 if ( wxIsBusy() )
4115 {
4116 hcursor = wxGetCurrentBusyCursor();
4117 }
4118 else // not busy
4119 {
4120 if ( nHitTest != HTCLIENT )
4121 return false;
4122
4123 // first ask the user code - it may wish to set the cursor in some very
4124 // specific way (for example, depending on the current position)
4125 POINT pt;
4126 #ifdef __WXWINCE__
4127 if ( !::GetCursorPosWinCE(&pt))
4128 #else
4129 if ( !::GetCursorPos(&pt) )
4130 #endif
4131 {
4132 wxLogLastError(wxT("GetCursorPos"));
4133 }
4134
4135 int x = pt.x,
4136 y = pt.y;
4137 ScreenToClient(&x, &y);
4138 wxSetCursorEvent event(x, y);
4139
4140 bool processedEvtSetCursor = HandleWindowEvent(event);
4141 if ( processedEvtSetCursor && event.HasCursor() )
4142 {
4143 hcursor = GetHcursorOf(event.GetCursor());
4144 }
4145
4146 if ( !hcursor )
4147 {
4148 // the test for processedEvtSetCursor is here to prevent using
4149 // m_cursor if the user code caught EVT_SET_CURSOR() and returned
4150 // nothing from it - this is a way to say that our cursor shouldn't
4151 // be used for this point
4152 if ( !processedEvtSetCursor && m_cursor.Ok() )
4153 {
4154 hcursor = GetHcursorOf(m_cursor);
4155 }
4156
4157 if ( !hcursor && !GetParent() )
4158 {
4159 const wxCursor *cursor = wxGetGlobalCursor();
4160 if ( cursor && cursor->Ok() )
4161 {
4162 hcursor = GetHcursorOf(*cursor);
4163 }
4164 }
4165 }
4166 }
4167
4168
4169 if ( hcursor )
4170 {
4171 ::SetCursor(hcursor);
4172
4173 // cursor set, stop here
4174 return true;
4175 }
4176 #endif // __WXMICROWIN__
4177
4178 // pass up the window chain
4179 return false;
4180 }
4181
4182 bool wxWindowMSW::HandlePower(WXWPARAM WXUNUSED_IN_WINCE(wParam),
4183 WXLPARAM WXUNUSED(lParam),
4184 bool *WXUNUSED_IN_WINCE(vetoed))
4185 {
4186 #ifdef __WXWINCE__
4187 // FIXME
4188 return false;
4189 #else
4190 wxEventType evtType;
4191 switch ( wParam )
4192 {
4193 case PBT_APMQUERYSUSPEND:
4194 evtType = wxEVT_POWER_SUSPENDING;
4195 break;
4196
4197 case PBT_APMQUERYSUSPENDFAILED:
4198 evtType = wxEVT_POWER_SUSPEND_CANCEL;
4199 break;
4200
4201 case PBT_APMSUSPEND:
4202 evtType = wxEVT_POWER_SUSPENDED;
4203 break;
4204
4205 case PBT_APMRESUMESUSPEND:
4206 #ifdef PBT_APMRESUMEAUTOMATIC
4207 case PBT_APMRESUMEAUTOMATIC:
4208 #endif
4209 evtType = wxEVT_POWER_RESUME;
4210 break;
4211
4212 default:
4213 wxLogDebug(_T("Unknown WM_POWERBROADCAST(%d) event"), wParam);
4214 // fall through
4215
4216 // these messages are currently not mapped to wx events
4217 case PBT_APMQUERYSTANDBY:
4218 case PBT_APMQUERYSTANDBYFAILED:
4219 case PBT_APMSTANDBY:
4220 case PBT_APMRESUMESTANDBY:
4221 case PBT_APMBATTERYLOW:
4222 case PBT_APMPOWERSTATUSCHANGE:
4223 case PBT_APMOEMEVENT:
4224 case PBT_APMRESUMECRITICAL:
4225 evtType = wxEVT_NULL;
4226 break;
4227 }
4228
4229 // don't handle unknown messages
4230 if ( evtType == wxEVT_NULL )
4231 return false;
4232
4233 // TODO: notify about PBTF_APMRESUMEFROMFAILURE in case of resume events?
4234
4235 wxPowerEvent event(evtType);
4236 if ( !HandleWindowEvent(event) )
4237 return false;
4238
4239 *vetoed = event.IsVetoed();
4240
4241 return true;
4242 #endif
4243 }
4244
4245 bool wxWindowMSW::IsDoubleBuffered() const
4246 {
4247 for ( const wxWindowMSW *wnd = this;
4248 wnd && !wnd->IsTopLevel(); wnd =
4249 wnd->GetParent() )
4250 {
4251 if ( ::GetWindowLong(GetHwndOf(wnd), GWL_EXSTYLE) & WS_EX_COMPOSITED )
4252 return true;
4253 }
4254
4255 return false;
4256 }
4257
4258 // ---------------------------------------------------------------------------
4259 // owner drawn stuff
4260 // ---------------------------------------------------------------------------
4261
4262 #if (wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE) || \
4263 (wxUSE_CONTROLS && !defined(__WXUNIVERSAL__))
4264 #define WXUNUSED_UNLESS_ODRAWN(param) param
4265 #else
4266 #define WXUNUSED_UNLESS_ODRAWN(param)
4267 #endif
4268
4269 bool
4270 wxWindowMSW::MSWOnDrawItem(int WXUNUSED_UNLESS_ODRAWN(id),
4271 WXDRAWITEMSTRUCT * WXUNUSED_UNLESS_ODRAWN(itemStruct))
4272 {
4273 #if wxUSE_OWNER_DRAWN
4274
4275 #if wxUSE_MENUS_NATIVE
4276 // is it a menu item?
4277 DRAWITEMSTRUCT *pDrawStruct = (DRAWITEMSTRUCT *)itemStruct;
4278 if ( id == 0 && pDrawStruct->CtlType == ODT_MENU )
4279 {
4280 wxMenuItem *pMenuItem = (wxMenuItem *)(pDrawStruct->itemData);
4281
4282 // see comment before the same test in MSWOnMeasureItem() below
4283 if ( !pMenuItem )
4284 return false;
4285
4286 wxCHECK_MSG( wxDynamicCast(pMenuItem, wxMenuItem),
4287 false, _T("MSWOnDrawItem: bad wxMenuItem pointer") );
4288
4289 // prepare to call OnDrawItem(): notice using of wxDCTemp to prevent
4290 // the DC from being released
4291 wxDCTemp dc((WXHDC)pDrawStruct->hDC);
4292 wxRect rect(pDrawStruct->rcItem.left, pDrawStruct->rcItem.top,
4293 pDrawStruct->rcItem.right - pDrawStruct->rcItem.left,
4294 pDrawStruct->rcItem.bottom - pDrawStruct->rcItem.top);
4295
4296 return pMenuItem->OnDrawItem
4297 (
4298 dc,
4299 rect,
4300 (wxOwnerDrawn::wxODAction)pDrawStruct->itemAction,
4301 (wxOwnerDrawn::wxODStatus)pDrawStruct->itemState
4302 );
4303 }
4304 #endif // wxUSE_MENUS_NATIVE
4305
4306 #endif // USE_OWNER_DRAWN
4307
4308 #if wxUSE_CONTROLS && !defined(__WXUNIVERSAL__)
4309
4310 #if wxUSE_OWNER_DRAWN
4311 wxControl *item = wxDynamicCast(FindItem(id), wxControl);
4312 #else // !wxUSE_OWNER_DRAWN
4313 // we may still have owner-drawn buttons internally because we have to make
4314 // them owner-drawn to support colour change
4315 wxControl *item =
4316 # if wxUSE_BUTTON
4317 wxDynamicCast(FindItem(id), wxButton)
4318 # else
4319 NULL
4320 # endif
4321 ;
4322 #endif // USE_OWNER_DRAWN
4323
4324 if ( item )
4325 {
4326 return item->MSWOnDraw(itemStruct);
4327 }
4328
4329 #endif // wxUSE_CONTROLS
4330
4331 return false;
4332 }
4333
4334 bool
4335 wxWindowMSW::MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *itemStruct)
4336 {
4337 #if wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
4338 // is it a menu item?
4339 MEASUREITEMSTRUCT *pMeasureStruct = (MEASUREITEMSTRUCT *)itemStruct;
4340 if ( id == 0 && pMeasureStruct->CtlType == ODT_MENU )
4341 {
4342 wxMenuItem *pMenuItem = (wxMenuItem *)(pMeasureStruct->itemData);
4343
4344 // according to Carsten Fuchs the pointer may be NULL under XP if an
4345 // MDI child frame is initially maximized, see this for more info:
4346 // http://article.gmane.org/gmane.comp.lib.wxwidgets.general/27745
4347 //
4348 // so silently ignore it instead of asserting
4349 if ( !pMenuItem )
4350 return false;
4351
4352 wxCHECK_MSG( wxDynamicCast(pMenuItem, wxMenuItem),
4353 false, _T("MSWOnMeasureItem: bad wxMenuItem pointer") );
4354
4355 size_t w, h;
4356 bool rc = pMenuItem->OnMeasureItem(&w, &h);
4357
4358 pMeasureStruct->itemWidth = w;
4359 pMeasureStruct->itemHeight = h;
4360
4361 return rc;
4362 }
4363
4364 wxControl *item = wxDynamicCast(FindItem(id), wxControl);
4365 if ( item )
4366 {
4367 return item->MSWOnMeasure(itemStruct);
4368 }
4369 #else
4370 wxUnusedVar(id);
4371 wxUnusedVar(itemStruct);
4372 #endif // wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
4373
4374 return false;
4375 }
4376
4377 // ---------------------------------------------------------------------------
4378 // colours and palettes
4379 // ---------------------------------------------------------------------------
4380
4381 bool wxWindowMSW::HandleSysColorChange()
4382 {
4383 wxSysColourChangedEvent event;
4384 event.SetEventObject(this);
4385
4386 (void)HandleWindowEvent(event);
4387
4388 // always let the system carry on the default processing to allow the
4389 // native controls to react to the colours update
4390 return false;
4391 }
4392
4393 bool wxWindowMSW::HandleDisplayChange()
4394 {
4395 wxDisplayChangedEvent event;
4396 event.SetEventObject(this);
4397
4398 return HandleWindowEvent(event);
4399 }
4400
4401 #ifndef __WXMICROWIN__
4402
4403 bool wxWindowMSW::HandleCtlColor(WXHBRUSH *brush, WXHDC hDC, WXHWND hWnd)
4404 {
4405 #if !wxUSE_CONTROLS || defined(__WXUNIVERSAL__)
4406 wxUnusedVar(hDC);
4407 wxUnusedVar(hWnd);
4408 #else
4409 wxControl *item = wxDynamicCast(FindItemByHWND(hWnd, true), wxControl);
4410
4411 if ( item )
4412 *brush = item->MSWControlColor(hDC, hWnd);
4413 else
4414 #endif // wxUSE_CONTROLS
4415 *brush = NULL;
4416
4417 return *brush != NULL;
4418 }
4419
4420 #endif // __WXMICROWIN__
4421
4422 bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange)
4423 {
4424 #if wxUSE_PALETTE
4425 // same as below except we don't respond to our own messages
4426 if ( hWndPalChange != GetHWND() )
4427 {
4428 // check to see if we our our parents have a custom palette
4429 wxWindowMSW *win = this;
4430 while ( win && !win->HasCustomPalette() )
4431 {
4432 win = win->GetParent();
4433 }
4434
4435 if ( win && win->HasCustomPalette() )
4436 {
4437 // realize the palette to see whether redrawing is needed
4438 HDC hdc = ::GetDC((HWND) hWndPalChange);
4439 win->m_palette.SetHPALETTE((WXHPALETTE)
4440 ::SelectPalette(hdc, GetHpaletteOf(win->m_palette), FALSE));
4441
4442 int result = ::RealizePalette(hdc);
4443
4444 // restore the palette (before releasing the DC)
4445 win->m_palette.SetHPALETTE((WXHPALETTE)
4446 ::SelectPalette(hdc, GetHpaletteOf(win->m_palette), FALSE));
4447 ::RealizePalette(hdc);
4448 ::ReleaseDC((HWND) hWndPalChange, hdc);
4449
4450 // now check for the need to redraw
4451 if (result > 0)
4452 ::InvalidateRect((HWND) hWndPalChange, NULL, TRUE);
4453 }
4454
4455 }
4456 #endif // wxUSE_PALETTE
4457
4458 wxPaletteChangedEvent event(GetId());
4459 event.SetEventObject(this);
4460 event.SetChangedWindow(wxFindWinFromHandle(hWndPalChange));
4461
4462 return HandleWindowEvent(event);
4463 }
4464
4465 bool wxWindowMSW::HandleCaptureChanged(WXHWND hWndGainedCapture)
4466 {
4467 // notify windows on the capture stack about lost capture
4468 // (see http://sourceforge.net/tracker/index.php?func=detail&aid=1153662&group_id=9863&atid=109863):
4469 wxWindowBase::NotifyCaptureLost();
4470
4471 wxWindow *win = wxFindWinFromHandle(hWndGainedCapture);
4472 wxMouseCaptureChangedEvent event(GetId(), win);
4473 event.SetEventObject(this);
4474 return HandleWindowEvent(event);
4475 }
4476
4477 bool wxWindowMSW::HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam)
4478 {
4479 // despite MSDN saying "(This message cannot be sent directly to a window.)"
4480 // we need to send this to child windows (it is only sent to top-level
4481 // windows) so {list,tree}ctrls can adjust their font size if necessary
4482 // this is exactly how explorer does it to enable the font size changes
4483
4484 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
4485 while ( node )
4486 {
4487 // top-level windows already get this message from the system
4488 wxWindow *win = node->GetData();
4489 if ( !win->IsTopLevel() )
4490 {
4491 ::SendMessage(GetHwndOf(win), WM_SETTINGCHANGE, wParam, lParam);
4492 }
4493
4494 node = node->GetNext();
4495 }
4496
4497 // let the system handle it
4498 return false;
4499 }
4500
4501 bool wxWindowMSW::HandleQueryNewPalette()
4502 {
4503
4504 #if wxUSE_PALETTE
4505 // check to see if we our our parents have a custom palette
4506 wxWindowMSW *win = this;
4507 while (!win->HasCustomPalette() && win->GetParent()) win = win->GetParent();
4508 if (win->HasCustomPalette()) {
4509 /* realize the palette to see whether redrawing is needed */
4510 HDC hdc = ::GetDC((HWND) GetHWND());
4511 win->m_palette.SetHPALETTE( (WXHPALETTE)
4512 ::SelectPalette(hdc, (HPALETTE) win->m_palette.GetHPALETTE(), FALSE) );
4513
4514 int result = ::RealizePalette(hdc);
4515 /* restore the palette (before releasing the DC) */
4516 win->m_palette.SetHPALETTE( (WXHPALETTE)
4517 ::SelectPalette(hdc, (HPALETTE) win->m_palette.GetHPALETTE(), TRUE) );
4518 ::RealizePalette(hdc);
4519 ::ReleaseDC((HWND) GetHWND(), hdc);
4520 /* now check for the need to redraw */
4521 if (result > 0)
4522 ::InvalidateRect((HWND) GetHWND(), NULL, TRUE);
4523 }
4524 #endif // wxUSE_PALETTE
4525
4526 wxQueryNewPaletteEvent event(GetId());
4527 event.SetEventObject(this);
4528
4529 return HandleWindowEvent(event) && event.GetPaletteRealized();
4530 }
4531
4532 // Responds to colour changes: passes event on to children.
4533 void wxWindowMSW::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event))
4534 {
4535 // the top level window also reset the standard colour map as it might have
4536 // changed (there is no need to do it for the non top level windows as we
4537 // only have to do it once)
4538 if ( IsTopLevel() )
4539 {
4540 // FIXME-MT
4541 gs_hasStdCmap = false;
4542 }
4543 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
4544 while ( node )
4545 {
4546 // Only propagate to non-top-level windows because Windows already
4547 // sends this event to all top-level ones
4548 wxWindow *win = node->GetData();
4549 if ( !win->IsTopLevel() )
4550 {
4551 // we need to send the real WM_SYSCOLORCHANGE and not just trigger
4552 // EVT_SYS_COLOUR_CHANGED call because the latter wouldn't work for
4553 // the standard controls
4554 ::SendMessage(GetHwndOf(win), WM_SYSCOLORCHANGE, 0, 0);
4555 }
4556
4557 node = node->GetNext();
4558 }
4559 }
4560
4561 extern wxCOLORMAP *wxGetStdColourMap()
4562 {
4563 static COLORREF s_stdColours[wxSTD_COL_MAX];
4564 static wxCOLORMAP s_cmap[wxSTD_COL_MAX];
4565
4566 if ( !gs_hasStdCmap )
4567 {
4568 static bool s_coloursInit = false;
4569
4570 if ( !s_coloursInit )
4571 {
4572 // When a bitmap is loaded, the RGB values can change (apparently
4573 // because Windows adjusts them to care for the old programs always
4574 // using 0xc0c0c0 while the transparent colour for the new Windows
4575 // versions is different). But we do this adjustment ourselves so
4576 // we want to avoid Windows' "help" and for this we need to have a
4577 // reference bitmap which can tell us what the RGB values change
4578 // to.
4579 wxLogNull logNo; // suppress error if we couldn't load the bitmap
4580 wxBitmap stdColourBitmap(_T("wxBITMAP_STD_COLOURS"));
4581 if ( stdColourBitmap.Ok() )
4582 {
4583 // the pixels in the bitmap must correspond to wxSTD_COL_XXX!
4584 wxASSERT_MSG( stdColourBitmap.GetWidth() == wxSTD_COL_MAX,
4585 _T("forgot to update wxBITMAP_STD_COLOURS!") );
4586
4587 wxMemoryDC memDC;
4588 memDC.SelectObject(stdColourBitmap);
4589
4590 wxColour colour;
4591 for ( size_t i = 0; i < WXSIZEOF(s_stdColours); i++ )
4592 {
4593 memDC.GetPixel(i, 0, &colour);
4594 s_stdColours[i] = wxColourToRGB(colour);
4595 }
4596 }
4597 else // wxBITMAP_STD_COLOURS couldn't be loaded
4598 {
4599 s_stdColours[0] = RGB(000,000,000); // black
4600 s_stdColours[1] = RGB(128,128,128); // dark grey
4601 s_stdColours[2] = RGB(192,192,192); // light grey
4602 s_stdColours[3] = RGB(255,255,255); // white
4603 //s_stdColours[4] = RGB(000,000,255); // blue
4604 //s_stdColours[5] = RGB(255,000,255); // magenta
4605 }
4606
4607 s_coloursInit = true;
4608 }
4609
4610 gs_hasStdCmap = true;
4611
4612 // create the colour map
4613 #define INIT_CMAP_ENTRY(col) \
4614 s_cmap[wxSTD_COL_##col].from = s_stdColours[wxSTD_COL_##col]; \
4615 s_cmap[wxSTD_COL_##col].to = ::GetSysColor(COLOR_##col)
4616
4617 INIT_CMAP_ENTRY(BTNTEXT);
4618 INIT_CMAP_ENTRY(BTNSHADOW);
4619 INIT_CMAP_ENTRY(BTNFACE);
4620 INIT_CMAP_ENTRY(BTNHIGHLIGHT);
4621
4622 #undef INIT_CMAP_ENTRY
4623 }
4624
4625 return s_cmap;
4626 }
4627
4628 // ---------------------------------------------------------------------------
4629 // painting
4630 // ---------------------------------------------------------------------------
4631
4632 bool wxWindowMSW::HandlePaint()
4633 {
4634 HRGN hRegion = ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
4635 if ( !hRegion )
4636 wxLogLastError(wxT("CreateRectRgn"));
4637 if ( ::GetUpdateRgn(GetHwnd(), hRegion, FALSE) == ERROR )
4638 wxLogLastError(wxT("GetUpdateRgn"));
4639
4640 m_updateRegion = wxRegion((WXHRGN) hRegion);
4641
4642 wxPaintEvent event(m_windowId);
4643 event.SetEventObject(this);
4644
4645 bool processed = HandleWindowEvent(event);
4646
4647 // note that we must generate NC event after the normal one as otherwise
4648 // BeginPaint() will happily overwrite our decorations with the background
4649 // colour
4650 wxNcPaintEvent eventNc(m_windowId);
4651 eventNc.SetEventObject(this);
4652 HandleWindowEvent(eventNc);
4653
4654 // don't keep an HRGN we don't need any longer (GetUpdateRegion() can only
4655 // be called from inside the event handlers called above)
4656 m_updateRegion.Clear();
4657
4658 return processed;
4659 }
4660
4661 // Can be called from an application's OnPaint handler
4662 void wxWindowMSW::OnPaint(wxPaintEvent& event)
4663 {
4664 #ifdef __WXUNIVERSAL__
4665 event.Skip();
4666 #else
4667 HDC hDC = (HDC) wxPaintDCImpl::FindDCInCache((wxWindow*) event.GetEventObject());
4668 if (hDC != 0)
4669 {
4670 MSWDefWindowProc(WM_PAINT, (WPARAM) hDC, 0);
4671 }
4672 #endif
4673 }
4674
4675 bool wxWindowMSW::HandleEraseBkgnd(WXHDC hdc)
4676 {
4677 wxDCTemp dc(hdc, GetClientSize());
4678 wxDCTempImpl *impl = (wxDCTempImpl*) dc.GetImpl();
4679
4680 impl->SetHDC(hdc);
4681 impl->SetWindow((wxWindow *)this);
4682
4683 wxEraseEvent event(m_windowId, &dc);
4684 event.SetEventObject(this);
4685 bool rc = HandleWindowEvent(event);
4686
4687 // must be called manually as ~wxDC doesn't do anything for wxDCTemp
4688 impl->SelectOldObjects(hdc);
4689
4690 return rc;
4691 }
4692
4693 void wxWindowMSW::OnEraseBackground(wxEraseEvent& event)
4694 {
4695 // standard non top level controls (i.e. except the dialogs) always erase
4696 // their background themselves in HandleCtlColor() or have some control-
4697 // specific ways to set the colours (common controls)
4698 if ( IsOfStandardClass() && !IsTopLevel() )
4699 {
4700 event.Skip();
4701 return;
4702 }
4703
4704 if ( GetBackgroundStyle() == wxBG_STYLE_CUSTOM )
4705 {
4706 // don't skip the event here, custom background means that the app
4707 // is drawing it itself in its OnPaint(), so don't draw it at all
4708 // now to avoid flicker
4709 return;
4710 }
4711
4712 wxDC *dc = event.GetDC();
4713 if (!dc) return;
4714 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc->GetImpl();
4715
4716 // do default background painting
4717 if ( !DoEraseBackground(GetHdcOf(*impl)) )
4718 {
4719 // let the system paint the background
4720 event.Skip();
4721 }
4722 }
4723
4724 bool wxWindowMSW::DoEraseBackground(WXHDC hDC)
4725 {
4726 HBRUSH hbr = (HBRUSH)MSWGetBgBrush(hDC);
4727 if ( !hbr )
4728 return false;
4729
4730 wxFillRect(GetHwnd(), (HDC)hDC, hbr);
4731
4732 return true;
4733 }
4734
4735 WXHBRUSH
4736 wxWindowMSW::MSWGetBgBrushForChild(WXHDC WXUNUSED(hDC), WXHWND hWnd)
4737 {
4738 if ( m_hasBgCol )
4739 {
4740 // our background colour applies to:
4741 // 1. this window itself, always
4742 // 2. all children unless the colour is "not inheritable"
4743 // 3. even if it is not inheritable, our immediate transparent
4744 // children should still inherit it -- but not any transparent
4745 // children because it would look wrong if a child of non
4746 // transparent child would show our bg colour when the child itself
4747 // does not
4748 wxWindow *win = wxFindWinFromHandle(hWnd);
4749 if ( win == this ||
4750 m_inheritBgCol ||
4751 (win && win->HasTransparentBackground() &&
4752 win->GetParent() == this) )
4753 {
4754 // draw children with the same colour as the parent
4755 wxBrush *
4756 brush = wxTheBrushList->FindOrCreateBrush(GetBackgroundColour());
4757
4758 return (WXHBRUSH)GetHbrushOf(*brush);
4759 }
4760 }
4761
4762 return 0;
4763 }
4764
4765 WXHBRUSH wxWindowMSW::MSWGetBgBrush(WXHDC hDC, WXHWND hWndToPaint)
4766 {
4767 if ( !hWndToPaint )
4768 hWndToPaint = GetHWND();
4769
4770 for ( wxWindowMSW *win = this; win; win = win->GetParent() )
4771 {
4772 WXHBRUSH hBrush = win->MSWGetBgBrushForChild(hDC, hWndToPaint);
4773 if ( hBrush )
4774 return hBrush;
4775
4776 // background is not inherited beyond top level windows
4777 if ( win->IsTopLevel() )
4778 break;
4779 }
4780
4781 return 0;
4782 }
4783
4784 bool wxWindowMSW::HandlePrintClient(WXHDC hDC)
4785 {
4786 // we receive this message when DrawThemeParentBackground() is
4787 // called from def window proc of several controls under XP and we
4788 // must draw properly themed background here
4789 //
4790 // note that naively I'd expect filling the client rect with the
4791 // brush returned by MSWGetBgBrush() work -- but for some reason it
4792 // doesn't and we have to call parents MSWPrintChild() which is
4793 // supposed to call DrawThemeBackground() with appropriate params
4794 //
4795 // also note that in this case lParam == PRF_CLIENT but we're
4796 // clearly expected to paint the background and nothing else!
4797
4798 if ( IsTopLevel() || InheritsBackgroundColour() )
4799 return false;
4800
4801 // sometimes we don't want the parent to handle it at all, instead
4802 // return whatever value this window wants
4803 if ( !MSWShouldPropagatePrintChild() )
4804 return MSWPrintChild(hDC, (wxWindow *)this);
4805
4806 for ( wxWindow *win = GetParent(); win; win = win->GetParent() )
4807 {
4808 if ( win->MSWPrintChild(hDC, (wxWindow *)this) )
4809 return true;
4810
4811 if ( win->IsTopLevel() || win->InheritsBackgroundColour() )
4812 break;
4813 }
4814
4815 return false;
4816 }
4817
4818 // ---------------------------------------------------------------------------
4819 // moving and resizing
4820 // ---------------------------------------------------------------------------
4821
4822 bool wxWindowMSW::HandleMinimize()
4823 {
4824 wxIconizeEvent event(m_windowId);
4825 event.SetEventObject(this);
4826
4827 return HandleWindowEvent(event);
4828 }
4829
4830 bool wxWindowMSW::HandleMaximize()
4831 {
4832 wxMaximizeEvent event(m_windowId);
4833 event.SetEventObject(this);
4834
4835 return HandleWindowEvent(event);
4836 }
4837
4838 bool wxWindowMSW::HandleMove(int x, int y)
4839 {
4840 wxPoint point(x,y);
4841 wxMoveEvent event(point, m_windowId);
4842 event.SetEventObject(this);
4843
4844 return HandleWindowEvent(event);
4845 }
4846
4847 bool wxWindowMSW::HandleMoving(wxRect& rect)
4848 {
4849 wxMoveEvent event(rect, m_windowId);
4850 event.SetEventObject(this);
4851
4852 bool rc = HandleWindowEvent(event);
4853 if (rc)
4854 rect = event.GetRect();
4855 return rc;
4856 }
4857
4858 bool wxWindowMSW::HandleEnterSizeMove()
4859 {
4860 wxMoveEvent event(wxPoint(0,0), m_windowId);
4861 event.SetEventType(wxEVT_MOVE_START);
4862 event.SetEventObject(this);
4863
4864 return HandleWindowEvent(event);
4865 }
4866
4867 bool wxWindowMSW::HandleExitSizeMove()
4868 {
4869 wxMoveEvent event(wxPoint(0,0), m_windowId);
4870 event.SetEventType(wxEVT_MOVE_END);
4871 event.SetEventObject(this);
4872
4873 return HandleWindowEvent(event);
4874 }
4875
4876 bool wxWindowMSW::HandleSize(int WXUNUSED(w), int WXUNUSED(h), WXUINT wParam)
4877 {
4878 #if USE_DEFERRED_SIZING
4879 // when we resize this window, its children are probably going to be
4880 // repositioned as well, prepare to use DeferWindowPos() for them
4881 int numChildren = 0;
4882 for ( HWND child = ::GetWindow(GetHwndOf(this), GW_CHILD);
4883 child;
4884 child = ::GetWindow(child, GW_HWNDNEXT) )
4885 {
4886 numChildren ++;
4887 }
4888
4889 // Protect against valid m_hDWP being overwritten
4890 bool useDefer = false;
4891
4892 if ( numChildren > 1 )
4893 {
4894 if (!m_hDWP)
4895 {
4896 m_hDWP = (WXHANDLE)::BeginDeferWindowPos(numChildren);
4897 if ( !m_hDWP )
4898 {
4899 wxLogLastError(_T("BeginDeferWindowPos"));
4900 }
4901 if (m_hDWP)
4902 useDefer = true;
4903 }
4904 }
4905 #endif // USE_DEFERRED_SIZING
4906
4907 // update this window size
4908 bool processed = false;
4909 switch ( wParam )
4910 {
4911 default:
4912 wxFAIL_MSG( _T("unexpected WM_SIZE parameter") );
4913 // fall through nevertheless
4914
4915 case SIZE_MAXHIDE:
4916 case SIZE_MAXSHOW:
4917 // we're not interested in these messages at all
4918 break;
4919
4920 case SIZE_MINIMIZED:
4921 processed = HandleMinimize();
4922 break;
4923
4924 case SIZE_MAXIMIZED:
4925 /* processed = */ HandleMaximize();
4926 // fall through to send a normal size event as well
4927
4928 case SIZE_RESTORED:
4929 // don't use w and h parameters as they specify the client size
4930 // while according to the docs EVT_SIZE handler is supposed to
4931 // receive the total size
4932 wxSizeEvent event(GetSize(), m_windowId);
4933 event.SetEventObject(this);
4934
4935 processed = HandleWindowEvent(event);
4936 }
4937
4938 #if USE_DEFERRED_SIZING
4939 // and finally change the positions of all child windows at once
4940 if ( useDefer && m_hDWP )
4941 {
4942 // reset m_hDWP to NULL so that child windows don't try to use our
4943 // m_hDWP after we call EndDeferWindowPos() on it (this shouldn't
4944 // happen anyhow normally but who knows what weird flow of control we
4945 // may have depending on what the users EVT_SIZE handler does...)
4946 HDWP hDWP = (HDWP)m_hDWP;
4947 m_hDWP = NULL;
4948
4949 // do put all child controls in place at once
4950 if ( !::EndDeferWindowPos(hDWP) )
4951 {
4952 wxLogLastError(_T("EndDeferWindowPos"));
4953 }
4954
4955 // Reset our children's pending pos/size values.
4956 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
4957 node;
4958 node = node->GetNext() )
4959 {
4960 wxWindowMSW *child = node->GetData();
4961 child->m_pendingPosition = wxDefaultPosition;
4962 child->m_pendingSize = wxDefaultSize;
4963 }
4964 }
4965 #endif // USE_DEFERRED_SIZING
4966
4967 return processed;
4968 }
4969
4970 bool wxWindowMSW::HandleSizing(wxRect& rect)
4971 {
4972 wxSizeEvent event(rect, m_windowId);
4973 event.SetEventObject(this);
4974
4975 bool rc = HandleWindowEvent(event);
4976 if (rc)
4977 rect = event.GetRect();
4978 return rc;
4979 }
4980
4981 bool wxWindowMSW::HandleGetMinMaxInfo(void *WXUNUSED_IN_WINCE(mmInfo))
4982 {
4983 #ifdef __WXWINCE__
4984 return false;
4985 #else
4986 MINMAXINFO *info = (MINMAXINFO *)mmInfo;
4987
4988 bool rc = false;
4989
4990 int minWidth = GetMinWidth(),
4991 minHeight = GetMinHeight(),
4992 maxWidth = GetMaxWidth(),
4993 maxHeight = GetMaxHeight();
4994
4995 if ( minWidth != wxDefaultCoord )
4996 {
4997 info->ptMinTrackSize.x = minWidth;
4998 rc = true;
4999 }
5000
5001 if ( minHeight != wxDefaultCoord )
5002 {
5003 info->ptMinTrackSize.y = minHeight;
5004 rc = true;
5005 }
5006
5007 if ( maxWidth != wxDefaultCoord )
5008 {
5009 info->ptMaxTrackSize.x = maxWidth;
5010 rc = true;
5011 }
5012
5013 if ( maxHeight != wxDefaultCoord )
5014 {
5015 info->ptMaxTrackSize.y = maxHeight;
5016 rc = true;
5017 }
5018
5019 return rc;
5020 #endif
5021 }
5022
5023 // ---------------------------------------------------------------------------
5024 // command messages
5025 // ---------------------------------------------------------------------------
5026
5027 bool wxWindowMSW::HandleCommand(WXWORD id_, WXWORD cmd, WXHWND control)
5028 {
5029 // sign extend to int from short before comparing with the other int ids
5030 int id = (signed short)id_;
5031
5032 #if wxUSE_MENUS_NATIVE
5033 if ( !cmd && wxCurrentPopupMenu )
5034 {
5035 wxMenu *popupMenu = wxCurrentPopupMenu;
5036 wxCurrentPopupMenu = NULL;
5037
5038 return popupMenu->MSWCommand(cmd, id);
5039 }
5040 #endif // wxUSE_MENUS_NATIVE
5041
5042 wxWindow *win = NULL;
5043
5044 // first try to find it from HWND - this works even with the broken
5045 // programs using the same ids for different controls
5046 if ( control )
5047 {
5048 win = wxFindWinFromHandle(control);
5049 }
5050
5051 // try the id
5052 if ( !win )
5053 {
5054 win = FindItem(id);
5055 }
5056
5057 if ( win )
5058 {
5059 return win->MSWCommand(cmd, id);
5060 }
5061
5062 // the messages sent from the in-place edit control used by the treectrl
5063 // for label editing have id == 0, but they should _not_ be treated as menu
5064 // messages (they are EN_XXX ones, in fact) so don't translate anything
5065 // coming from a control to wxEVT_COMMAND_MENU_SELECTED
5066 if ( !control )
5067 {
5068 // If no child window, it may be an accelerator, e.g. for a popup menu
5069 // command
5070
5071 wxCommandEvent event(wxEVT_COMMAND_MENU_SELECTED);
5072 event.SetEventObject(this);
5073 event.SetId(id);
5074 event.SetInt(id);
5075
5076 return HandleWindowEvent(event);
5077 }
5078 else
5079 {
5080 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
5081 // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND
5082 // notifications to its parent which we want to reflect back to
5083 // wxSpinCtrl
5084 wxSpinCtrl *spin = wxSpinCtrl::GetSpinForTextCtrl(control);
5085 if ( spin && spin->ProcessTextCommand(cmd, id) )
5086 return true;
5087 #endif // wxUSE_SPINCTRL
5088
5089 #if wxUSE_CHOICE && defined(__SMARTPHONE__)
5090 // the listbox ctrl which is logically part of wxChoice sends WM_COMMAND
5091 // notifications to its parent which we want to reflect back to
5092 // wxChoice
5093 wxChoice *choice = wxChoice::GetChoiceForListBox(control);
5094 if ( choice && choice->MSWCommand(cmd, id) )
5095 return true;
5096 #endif
5097 }
5098
5099 return false;
5100 }
5101
5102 // ---------------------------------------------------------------------------
5103 // mouse events
5104 // ---------------------------------------------------------------------------
5105
5106 void wxWindowMSW::InitMouseEvent(wxMouseEvent& event,
5107 int x, int y,
5108 WXUINT flags)
5109 {
5110 // our client coords are not quite the same as Windows ones
5111 wxPoint pt = GetClientAreaOrigin();
5112 event.m_x = x - pt.x;
5113 event.m_y = y - pt.y;
5114
5115 event.m_shiftDown = (flags & MK_SHIFT) != 0;
5116 event.m_controlDown = (flags & MK_CONTROL) != 0;
5117 event.m_leftDown = (flags & MK_LBUTTON) != 0;
5118 event.m_middleDown = (flags & MK_MBUTTON) != 0;
5119 event.m_rightDown = (flags & MK_RBUTTON) != 0;
5120 #ifdef wxHAS_XBUTTON
5121 event.m_aux1Down = (flags & MK_XBUTTON1) != 0;
5122 event.m_aux2Down = (flags & MK_XBUTTON2) != 0;
5123 #endif // wxHAS_XBUTTON
5124 event.m_altDown = ::wxIsAltDown();
5125
5126 #ifndef __WXWINCE__
5127 event.SetTimestamp(::GetMessageTime());
5128 #endif
5129
5130 event.SetEventObject(this);
5131 event.SetId(GetId());
5132
5133 #if wxUSE_MOUSEEVENT_HACK
5134 gs_lastMouseEvent.pos = ClientToScreen(wxPoint(x, y));
5135 gs_lastMouseEvent.type = event.GetEventType();
5136 #endif // wxUSE_MOUSEEVENT_HACK
5137 }
5138
5139 #ifdef __WXWINCE__
5140 // Windows doesn't send the mouse events to the static controls (which are
5141 // transparent in the sense that their WM_NCHITTEST handler returns
5142 // HTTRANSPARENT) at all but we want all controls to receive the mouse events
5143 // and so we manually check if we don't have a child window under mouse and if
5144 // we do, send the event to it instead of the window Windows had sent WM_XXX
5145 // to.
5146 //
5147 // Notice that this is not done for the mouse move events because this could
5148 // (would?) be too slow, but only for clicks which means that the static texts
5149 // still don't get move, enter nor leave events.
5150 static wxWindowMSW *FindWindowForMouseEvent(wxWindowMSW *win, int *x, int *y)
5151 {
5152 wxCHECK_MSG( x && y, win, _T("NULL pointer in FindWindowForMouseEvent") );
5153
5154 // first try to find a non transparent child: this allows us to send events
5155 // to a static text which is inside a static box, for example
5156 POINT pt = { *x, *y };
5157 HWND hwnd = GetHwndOf(win),
5158 hwndUnderMouse;
5159
5160 #ifdef __WXWINCE__
5161 hwndUnderMouse = ::ChildWindowFromPoint
5162 (
5163 hwnd,
5164 pt
5165 );
5166 #else
5167 hwndUnderMouse = ::ChildWindowFromPointEx
5168 (
5169 hwnd,
5170 pt,
5171 CWP_SKIPINVISIBLE |
5172 CWP_SKIPDISABLED |
5173 CWP_SKIPTRANSPARENT
5174 );
5175 #endif
5176
5177 if ( !hwndUnderMouse || hwndUnderMouse == hwnd )
5178 {
5179 // now try any child window at all
5180 hwndUnderMouse = ::ChildWindowFromPoint(hwnd, pt);
5181 }
5182
5183 // check that we have a child window which is susceptible to receive mouse
5184 // events: for this it must be shown and enabled
5185 if ( hwndUnderMouse &&
5186 hwndUnderMouse != hwnd &&
5187 ::IsWindowVisible(hwndUnderMouse) &&
5188 ::IsWindowEnabled(hwndUnderMouse) )
5189 {
5190 wxWindow *winUnderMouse = wxFindWinFromHandle(hwndUnderMouse);
5191 if ( winUnderMouse )
5192 {
5193 // translate the mouse coords to the other window coords
5194 win->ClientToScreen(x, y);
5195 winUnderMouse->ScreenToClient(x, y);
5196
5197 win = winUnderMouse;
5198 }
5199 }
5200
5201 return win;
5202 }
5203 #endif // __WXWINCE__
5204
5205 bool wxWindowMSW::HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags)
5206 {
5207 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
5208 // WM_MOUSELAST, so it's enough to subtract WM_MOUSEMOVE == WM_MOUSEFIRST
5209 // from the message id and take the value in the table to get wxWin event
5210 // id
5211 static const wxEventType eventsMouse[] =
5212 {
5213 wxEVT_MOTION,
5214 wxEVT_LEFT_DOWN,
5215 wxEVT_LEFT_UP,
5216 wxEVT_LEFT_DCLICK,
5217 wxEVT_RIGHT_DOWN,
5218 wxEVT_RIGHT_UP,
5219 wxEVT_RIGHT_DCLICK,
5220 wxEVT_MIDDLE_DOWN,
5221 wxEVT_MIDDLE_UP,
5222 wxEVT_MIDDLE_DCLICK,
5223 0, // this one is for wxEVT_MOTION which is not used here
5224 wxEVT_AUX1_DOWN,
5225 wxEVT_AUX1_UP,
5226 wxEVT_AUX1_DCLICK,
5227 wxEVT_AUX2_DOWN,
5228 wxEVT_AUX2_UP,
5229 wxEVT_AUX2_DCLICK
5230 };
5231
5232 #ifdef wxHAS_XBUTTON
5233 // the same messages are used for both auxillary mouse buttons so we need
5234 // to adjust the index manually
5235 switch ( msg )
5236 {
5237 case WM_XBUTTONDOWN:
5238 case WM_XBUTTONUP:
5239 case WM_XBUTTONDBLCLK:
5240 if ( flags & MK_XBUTTON2 )
5241 msg += wxEVT_AUX2_DOWN - wxEVT_AUX1_DOWN;
5242 }
5243 #endif // wxHAS_XBUTTON
5244
5245 wxMouseEvent event(eventsMouse[msg - WM_MOUSEMOVE]);
5246 InitMouseEvent(event, x, y, flags);
5247
5248 return HandleWindowEvent(event);
5249 }
5250
5251 bool wxWindowMSW::HandleMouseMove(int x, int y, WXUINT flags)
5252 {
5253 if ( !m_mouseInWindow )
5254 {
5255 // it would be wrong to assume that just because we get a mouse move
5256 // event that the mouse is inside the window: although this is usually
5257 // true, it is not if we had captured the mouse, so we need to check
5258 // the mouse coordinates here
5259 if ( !HasCapture() || IsMouseInWindow() )
5260 {
5261 // Generate an ENTER event
5262 m_mouseInWindow = true;
5263
5264 #ifdef HAVE_TRACKMOUSEEVENT
5265 typedef BOOL (WINAPI *_TrackMouseEvent_t)(LPTRACKMOUSEEVENT);
5266 #ifdef __WXWINCE__
5267 static const _TrackMouseEvent_t
5268 s_pfn_TrackMouseEvent = _TrackMouseEvent;
5269 #else // !__WXWINCE__
5270 static _TrackMouseEvent_t s_pfn_TrackMouseEvent;
5271 static bool s_initDone = false;
5272 if ( !s_initDone )
5273 {
5274 wxLogNull noLog;
5275
5276 wxDynamicLibrary dllComCtl32(_T("comctl32.dll"), wxDL_VERBATIM);
5277 if ( dllComCtl32.IsLoaded() )
5278 {
5279 s_pfn_TrackMouseEvent = (_TrackMouseEvent_t)
5280 dllComCtl32.GetSymbol(_T("_TrackMouseEvent"));
5281 }
5282
5283 s_initDone = true;
5284
5285 // notice that it's ok to unload comctl32.dll here as it won't
5286 // be really unloaded, being still in use because we link to it
5287 // statically too
5288 }
5289
5290 if ( s_pfn_TrackMouseEvent )
5291 #endif // __WXWINCE__/!__WXWINCE__
5292 {
5293 WinStruct<TRACKMOUSEEVENT> trackinfo;
5294
5295 trackinfo.dwFlags = TME_LEAVE;
5296 trackinfo.hwndTrack = GetHwnd();
5297
5298 (*s_pfn_TrackMouseEvent)(&trackinfo);
5299 }
5300 #endif // HAVE_TRACKMOUSEEVENT
5301
5302 wxMouseEvent event(wxEVT_ENTER_WINDOW);
5303 InitMouseEvent(event, x, y, flags);
5304
5305 (void)HandleWindowEvent(event);
5306 }
5307 }
5308 #ifdef HAVE_TRACKMOUSEEVENT
5309 else // mouse not in window
5310 {
5311 // Check if we need to send a LEAVE event
5312 // Windows doesn't send WM_MOUSELEAVE if the mouse has been captured so
5313 // send it here if we are using native mouse leave tracking
5314 if ( HasCapture() && !IsMouseInWindow() )
5315 {
5316 GenerateMouseLeave();
5317 }
5318 }
5319 #endif // HAVE_TRACKMOUSEEVENT
5320
5321 #if wxUSE_MOUSEEVENT_HACK
5322 // Windows often generates mouse events even if mouse position hasn't
5323 // changed (http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/66576)
5324 //
5325 // Filter this out as it can result in unexpected behaviour compared to
5326 // other platforms
5327 if ( gs_lastMouseEvent.type == wxEVT_RIGHT_DOWN ||
5328 gs_lastMouseEvent.type == wxEVT_LEFT_DOWN ||
5329 gs_lastMouseEvent.type == wxEVT_MIDDLE_DOWN ||
5330 gs_lastMouseEvent.type == wxEVT_MOTION )
5331 {
5332 if ( ClientToScreen(wxPoint(x, y)) == gs_lastMouseEvent.pos )
5333 {
5334 gs_lastMouseEvent.type = wxEVT_MOTION;
5335
5336 return false;
5337 }
5338 }
5339 #endif // wxUSE_MOUSEEVENT_HACK
5340
5341 return HandleMouseEvent(WM_MOUSEMOVE, x, y, flags);
5342 }
5343
5344
5345 bool wxWindowMSW::HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam)
5346 {
5347 #if wxUSE_MOUSEWHEEL
5348 // notice that WM_MOUSEWHEEL position is in screen coords (as it's
5349 // forwarded up to the parent by DefWindowProc()) and not in the client
5350 // ones as all the other messages, translate them to the client coords for
5351 // consistency
5352 const wxPoint
5353 pt = ScreenToClient(wxPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)));
5354 wxMouseEvent event(wxEVT_MOUSEWHEEL);
5355 InitMouseEvent(event, pt.x, pt.y, LOWORD(wParam));
5356 event.m_wheelRotation = (short)HIWORD(wParam);
5357 event.m_wheelDelta = WHEEL_DELTA;
5358
5359 static int s_linesPerRotation = -1;
5360 if ( s_linesPerRotation == -1 )
5361 {
5362 if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
5363 &s_linesPerRotation, 0))
5364 {
5365 // this is not supposed to happen
5366 wxLogLastError(_T("SystemParametersInfo(GETWHEELSCROLLLINES)"));
5367
5368 // the default is 3, so use it if SystemParametersInfo() failed
5369 s_linesPerRotation = 3;
5370 }
5371 }
5372
5373 event.m_linesPerAction = s_linesPerRotation;
5374 return HandleWindowEvent(event);
5375
5376 #else // !wxUSE_MOUSEWHEEL
5377 wxUnusedVar(wParam);
5378 wxUnusedVar(lParam);
5379
5380 return false;
5381 #endif // wxUSE_MOUSEWHEEL/!wxUSE_MOUSEWHEEL
5382 }
5383
5384 void wxWindowMSW::GenerateMouseLeave()
5385 {
5386 m_mouseInWindow = false;
5387
5388 int state = 0;
5389 if ( wxIsShiftDown() )
5390 state |= MK_SHIFT;
5391 if ( wxIsCtrlDown() )
5392 state |= MK_CONTROL;
5393
5394 // Only the high-order bit should be tested
5395 if ( GetKeyState( VK_LBUTTON ) & (1<<15) )
5396 state |= MK_LBUTTON;
5397 if ( GetKeyState( VK_MBUTTON ) & (1<<15) )
5398 state |= MK_MBUTTON;
5399 if ( GetKeyState( VK_RBUTTON ) & (1<<15) )
5400 state |= MK_RBUTTON;
5401
5402 POINT pt;
5403 #ifdef __WXWINCE__
5404 if ( !::GetCursorPosWinCE(&pt) )
5405 #else
5406 if ( !::GetCursorPos(&pt) )
5407 #endif
5408 {
5409 wxLogLastError(_T("GetCursorPos"));
5410 }
5411
5412 // we need to have client coordinates here for symmetry with
5413 // wxEVT_ENTER_WINDOW
5414 RECT rect = wxGetWindowRect(GetHwnd());
5415 pt.x -= rect.left;
5416 pt.y -= rect.top;
5417
5418 wxMouseEvent event(wxEVT_LEAVE_WINDOW);
5419 InitMouseEvent(event, pt.x, pt.y, state);
5420
5421 (void)HandleWindowEvent(event);
5422 }
5423
5424 // ---------------------------------------------------------------------------
5425 // keyboard handling
5426 // ---------------------------------------------------------------------------
5427
5428 // create the key event of the given type for the given key - used by
5429 // HandleChar and HandleKeyDown/Up
5430 wxKeyEvent wxWindowMSW::CreateKeyEvent(wxEventType evType,
5431 int id,
5432 WXLPARAM lParam,
5433 WXWPARAM wParam) const
5434 {
5435 wxKeyEvent event(evType);
5436 event.SetId(GetId());
5437 event.m_shiftDown = wxIsShiftDown();
5438 event.m_controlDown = wxIsCtrlDown();
5439 event.m_altDown = (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN;
5440
5441 event.SetEventObject((wxWindow *)this); // const_cast
5442 event.m_keyCode = id;
5443 #if wxUSE_UNICODE
5444 event.m_uniChar = (wxChar) wParam;
5445 #endif
5446 event.m_rawCode = (wxUint32) wParam;
5447 event.m_rawFlags = (wxUint32) lParam;
5448 #ifndef __WXWINCE__
5449 event.SetTimestamp(::GetMessageTime());
5450 #endif
5451
5452 // translate the position to client coords
5453 POINT pt;
5454 #ifdef __WXWINCE__
5455 GetCursorPosWinCE(&pt);
5456 #else
5457 GetCursorPos(&pt);
5458 #endif
5459 RECT rect;
5460 GetWindowRect(GetHwnd(),&rect);
5461 pt.x -= rect.left;
5462 pt.y -= rect.top;
5463
5464 event.m_x = pt.x;
5465 event.m_y = pt.y;
5466
5467 return event;
5468 }
5469
5470 // isASCII is true only when we're called from WM_CHAR handler and not from
5471 // WM_KEYDOWN one
5472 bool wxWindowMSW::HandleChar(WXWPARAM wParam, WXLPARAM lParam, bool isASCII)
5473 {
5474 int id;
5475 if ( isASCII )
5476 {
5477 id = wParam;
5478 }
5479 else // we're called from WM_KEYDOWN
5480 {
5481 // don't pass lParam to wxCharCodeMSWToWX() here because we don't want
5482 // to get numpad key codes: CHAR events should use the logical keys
5483 // such as WXK_HOME instead of WXK_NUMPAD_HOME which is for KEY events
5484 id = wxCharCodeMSWToWX(wParam);
5485 if ( id == 0 )
5486 {
5487 // it's ASCII and will be processed here only when called from
5488 // WM_CHAR (i.e. when isASCII = true), don't process it now
5489 return false;
5490 }
5491 }
5492
5493 wxKeyEvent event(CreateKeyEvent(wxEVT_CHAR, id, lParam, wParam));
5494
5495 // the alphanumeric keys produced by pressing AltGr+something on European
5496 // keyboards have both Ctrl and Alt modifiers which may confuse the user
5497 // code as, normally, keys with Ctrl and/or Alt don't result in anything
5498 // alphanumeric, so pretend that there are no modifiers at all (the
5499 // KEY_DOWN event would still have the correct modifiers if they're really
5500 // needed)
5501 if ( event.m_controlDown && event.m_altDown &&
5502 (id >= 32 && id < 256) )
5503 {
5504 event.m_controlDown =
5505 event.m_altDown = false;
5506 }
5507
5508 return HandleWindowEvent(event);
5509 }
5510
5511 bool wxWindowMSW::HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam)
5512 {
5513 int id = wxCharCodeMSWToWX(wParam, lParam);
5514
5515 if ( !id )
5516 {
5517 // normal ASCII char
5518 id = wParam;
5519 }
5520
5521 wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_DOWN, id, lParam, wParam));
5522 return HandleWindowEvent(event);
5523 }
5524
5525 bool wxWindowMSW::HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam)
5526 {
5527 int id = wxCharCodeMSWToWX(wParam, lParam);
5528
5529 if ( !id )
5530 {
5531 // normal ASCII char
5532 id = wParam;
5533 }
5534
5535 wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_UP, id, lParam, wParam));
5536 return HandleWindowEvent(event);
5537 }
5538
5539 #if wxUSE_MENUS
5540 int wxWindowMSW::HandleMenuChar(int WXUNUSED_IN_WINCE(chAccel),
5541 WXLPARAM WXUNUSED_IN_WINCE(lParam))
5542 {
5543 // FIXME: implement GetMenuItemCount for WinCE, possibly
5544 // in terms of GetMenuItemInfo
5545 #ifndef __WXWINCE__
5546 const HMENU hmenu = (HMENU)lParam;
5547
5548 MENUITEMINFO mii;
5549 wxZeroMemory(mii);
5550 mii.cbSize = sizeof(MENUITEMINFO);
5551
5552 // we could use MIIM_FTYPE here as we only need to know if the item is
5553 // ownerdrawn or not and not dwTypeData which MIIM_TYPE also returns, but
5554 // MIIM_FTYPE is not supported under Win95
5555 mii.fMask = MIIM_TYPE | MIIM_DATA;
5556
5557 // find if we have this letter in any owner drawn item
5558 const int count = ::GetMenuItemCount(hmenu);
5559 for ( int i = 0; i < count; i++ )
5560 {
5561 // previous loop iteration could modify it, reset it back before
5562 // calling GetMenuItemInfo() to prevent it from overflowing dwTypeData
5563 mii.cch = 0;
5564
5565 if ( ::GetMenuItemInfo(hmenu, i, TRUE, &mii) )
5566 {
5567 if ( mii.fType == MFT_OWNERDRAW )
5568 {
5569 // dwItemData member of the MENUITEMINFO is a
5570 // pointer to the associated wxMenuItem -- see the
5571 // menu creation code
5572 wxMenuItem *item = (wxMenuItem*)mii.dwItemData;
5573
5574 const wxChar *p = wxStrchr(item->GetItemLabel().wx_str(), _T('&'));
5575 while ( p++ )
5576 {
5577 if ( *p == _T('&') )
5578 {
5579 // this is not the accel char, find the real one
5580 p = wxStrchr(p + 1, _T('&'));
5581 }
5582 else // got the accel char
5583 {
5584 // FIXME-UNICODE: this comparison doesn't risk to work
5585 // for non ASCII accelerator characters I'm afraid, but
5586 // what can we do?
5587 if ( (wchar_t)wxToupper(*p) == (wchar_t)chAccel )
5588 {
5589 return i;
5590 }
5591 else
5592 {
5593 // this one doesn't match
5594 break;
5595 }
5596 }
5597 }
5598 }
5599 }
5600 else // failed to get the menu text?
5601 {
5602 // it's not fatal, so don't show error, but still log it
5603 wxLogLastError(_T("GetMenuItemInfo"));
5604 }
5605 }
5606 #endif
5607 return wxNOT_FOUND;
5608 }
5609
5610 bool wxWindowMSW::HandleClipboardEvent( WXUINT nMsg )
5611 {
5612 const wxEventType type = ( nMsg == WM_CUT ) ? wxEVT_COMMAND_TEXT_CUT :
5613 ( nMsg == WM_COPY ) ? wxEVT_COMMAND_TEXT_COPY :
5614 /*( nMsg == WM_PASTE ) ? */ wxEVT_COMMAND_TEXT_PASTE;
5615 wxClipboardTextEvent evt(type, GetId());
5616
5617 evt.SetEventObject(this);
5618
5619 return HandleWindowEvent(evt);
5620 }
5621 #endif // wxUSE_MENUS
5622
5623 // ---------------------------------------------------------------------------
5624 // joystick
5625 // ---------------------------------------------------------------------------
5626
5627 bool wxWindowMSW::HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags)
5628 {
5629 #ifdef JOY_BUTTON1
5630 int change = 0;
5631 if ( flags & JOY_BUTTON1CHG )
5632 change = wxJOY_BUTTON1;
5633 if ( flags & JOY_BUTTON2CHG )
5634 change = wxJOY_BUTTON2;
5635 if ( flags & JOY_BUTTON3CHG )
5636 change = wxJOY_BUTTON3;
5637 if ( flags & JOY_BUTTON4CHG )
5638 change = wxJOY_BUTTON4;
5639
5640 int buttons = 0;
5641 if ( flags & JOY_BUTTON1 )
5642 buttons |= wxJOY_BUTTON1;
5643 if ( flags & JOY_BUTTON2 )
5644 buttons |= wxJOY_BUTTON2;
5645 if ( flags & JOY_BUTTON3 )
5646 buttons |= wxJOY_BUTTON3;
5647 if ( flags & JOY_BUTTON4 )
5648 buttons |= wxJOY_BUTTON4;
5649
5650 // the event ids aren't consecutive so we can't use table based lookup
5651 int joystick;
5652 wxEventType eventType;
5653 switch ( msg )
5654 {
5655 case MM_JOY1MOVE:
5656 joystick = 1;
5657 eventType = wxEVT_JOY_MOVE;
5658 break;
5659
5660 case MM_JOY2MOVE:
5661 joystick = 2;
5662 eventType = wxEVT_JOY_MOVE;
5663 break;
5664
5665 case MM_JOY1ZMOVE:
5666 joystick = 1;
5667 eventType = wxEVT_JOY_ZMOVE;
5668 break;
5669
5670 case MM_JOY2ZMOVE:
5671 joystick = 2;
5672 eventType = wxEVT_JOY_ZMOVE;
5673 break;
5674
5675 case MM_JOY1BUTTONDOWN:
5676 joystick = 1;
5677 eventType = wxEVT_JOY_BUTTON_DOWN;
5678 break;
5679
5680 case MM_JOY2BUTTONDOWN:
5681 joystick = 2;
5682 eventType = wxEVT_JOY_BUTTON_DOWN;
5683 break;
5684
5685 case MM_JOY1BUTTONUP:
5686 joystick = 1;
5687 eventType = wxEVT_JOY_BUTTON_UP;
5688 break;
5689
5690 case MM_JOY2BUTTONUP:
5691 joystick = 2;
5692 eventType = wxEVT_JOY_BUTTON_UP;
5693 break;
5694
5695 default:
5696 wxFAIL_MSG(wxT("no such joystick event"));
5697
5698 return false;
5699 }
5700
5701 wxJoystickEvent event(eventType, buttons, joystick, change);
5702 event.SetPosition(wxPoint(x, y));
5703 event.SetEventObject(this);
5704
5705 return HandleWindowEvent(event);
5706 #else
5707 wxUnusedVar(msg);
5708 wxUnusedVar(x);
5709 wxUnusedVar(y);
5710 wxUnusedVar(flags);
5711 return false;
5712 #endif
5713 }
5714
5715 // ---------------------------------------------------------------------------
5716 // scrolling
5717 // ---------------------------------------------------------------------------
5718
5719 bool wxWindowMSW::MSWOnScroll(int orientation, WXWORD wParam,
5720 WXWORD pos, WXHWND control)
5721 {
5722 if ( control && control != m_hWnd ) // Prevent infinite recursion
5723 {
5724 wxWindow *child = wxFindWinFromHandle(control);
5725 if ( child )
5726 return child->MSWOnScroll(orientation, wParam, pos, control);
5727 }
5728
5729 wxScrollWinEvent event;
5730 event.SetPosition(pos);
5731 event.SetOrientation(orientation);
5732 event.SetEventObject(this);
5733
5734 switch ( wParam )
5735 {
5736 case SB_TOP:
5737 event.SetEventType(wxEVT_SCROLLWIN_TOP);
5738 break;
5739
5740 case SB_BOTTOM:
5741 event.SetEventType(wxEVT_SCROLLWIN_BOTTOM);
5742 break;
5743
5744 case SB_LINEUP:
5745 event.SetEventType(wxEVT_SCROLLWIN_LINEUP);
5746 break;
5747
5748 case SB_LINEDOWN:
5749 event.SetEventType(wxEVT_SCROLLWIN_LINEDOWN);
5750 break;
5751
5752 case SB_PAGEUP:
5753 event.SetEventType(wxEVT_SCROLLWIN_PAGEUP);
5754 break;
5755
5756 case SB_PAGEDOWN:
5757 event.SetEventType(wxEVT_SCROLLWIN_PAGEDOWN);
5758 break;
5759
5760 case SB_THUMBPOSITION:
5761 case SB_THUMBTRACK:
5762 // under Win32, the scrollbar range and position are 32 bit integers,
5763 // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must
5764 // explicitly query the scrollbar for the correct position (this must
5765 // be done only for these two SB_ events as they are the only one
5766 // carrying the scrollbar position)
5767 {
5768 WinStruct<SCROLLINFO> scrollInfo;
5769 scrollInfo.fMask = SIF_TRACKPOS;
5770
5771 if ( !::GetScrollInfo(GetHwnd(),
5772 orientation == wxHORIZONTAL ? SB_HORZ
5773 : SB_VERT,
5774 &scrollInfo) )
5775 {
5776 // Not necessarily an error, if there are no scrollbars yet.
5777 // wxLogLastError(_T("GetScrollInfo"));
5778 }
5779
5780 event.SetPosition(scrollInfo.nTrackPos);
5781 }
5782
5783 event.SetEventType( wParam == SB_THUMBPOSITION
5784 ? wxEVT_SCROLLWIN_THUMBRELEASE
5785 : wxEVT_SCROLLWIN_THUMBTRACK );
5786 break;
5787
5788 default:
5789 return false;
5790 }
5791
5792 return HandleWindowEvent(event);
5793 }
5794
5795 // ----------------------------------------------------------------------------
5796 // custom message handlers
5797 // ----------------------------------------------------------------------------
5798
5799 /* static */ bool
5800 wxWindowMSW::MSWRegisterMessageHandler(int msg, MSWMessageHandler handler)
5801 {
5802 wxCHECK_MSG( gs_messageHandlers.find(msg) == gs_messageHandlers.end(),
5803 false, _T("registering handler for the same message twice") );
5804
5805 gs_messageHandlers[msg] = handler;
5806 return true;
5807 }
5808
5809 /* static */ void
5810 wxWindowMSW::MSWUnregisterMessageHandler(int msg, MSWMessageHandler handler)
5811 {
5812 const MSWMessageHandlers::iterator i = gs_messageHandlers.find(msg);
5813 wxCHECK_RET( i != gs_messageHandlers.end() && i->second == handler,
5814 _T("unregistering non-registered handler?") );
5815
5816 gs_messageHandlers.erase(i);
5817 }
5818
5819 // ===========================================================================
5820 // global functions
5821 // ===========================================================================
5822
5823 void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont& the_font)
5824 {
5825 TEXTMETRIC tm;
5826 HDC dc = ::GetDC((HWND) wnd);
5827 HFONT was = 0;
5828
5829 // the_font.UseResource();
5830 // the_font.RealizeResource();
5831 HFONT fnt = (HFONT)the_font.GetResourceHandle(); // const_cast
5832 if ( fnt )
5833 was = (HFONT) SelectObject(dc,fnt);
5834
5835 GetTextMetrics(dc, &tm);
5836 if ( fnt && was )
5837 {
5838 SelectObject(dc,was);
5839 }
5840 ReleaseDC((HWND)wnd, dc);
5841
5842 if ( x )
5843 *x = tm.tmAveCharWidth;
5844 if ( y )
5845 *y = tm.tmHeight + tm.tmExternalLeading;
5846
5847 // the_font.ReleaseResource();
5848 }
5849
5850 // use the "extended" bit (24) of lParam to distinguish extended keys
5851 // from normal keys as the same key is sent
5852 static inline
5853 int ChooseNormalOrExtended(int lParam, int keyNormal, int keyExtended)
5854 {
5855 // except that if lParam is 0, it means we don't have real lParam from
5856 // WM_KEYDOWN but are just translating just a VK constant (e.g. done from
5857 // msw/treectrl.cpp when processing TVN_KEYDOWN) -- then assume this is a
5858 // non-numpad (hence extended) key as this is a more common case
5859 return !lParam || (lParam & (1 << 24)) ? keyExtended : keyNormal;
5860 }
5861
5862 // this array contains the Windows virtual key codes which map one to one to
5863 // WXK_xxx constants and is used in wxCharCodeMSWToWX/WXToMSW() below
5864 //
5865 // note that keys having a normal and numpad version (e.g. WXK_HOME and
5866 // WXK_NUMPAD_HOME) are not included in this table as the mapping is not 1-to-1
5867 static const struct wxKeyMapping
5868 {
5869 int vk;
5870 wxKeyCode wxk;
5871 } gs_specialKeys[] =
5872 {
5873 { VK_CANCEL, WXK_CANCEL },
5874 { VK_BACK, WXK_BACK },
5875 { VK_TAB, WXK_TAB },
5876 { VK_CLEAR, WXK_CLEAR },
5877 { VK_SHIFT, WXK_SHIFT },
5878 { VK_CONTROL, WXK_CONTROL },
5879 { VK_MENU , WXK_ALT },
5880 { VK_PAUSE, WXK_PAUSE },
5881 { VK_CAPITAL, WXK_CAPITAL },
5882 { VK_SPACE, WXK_SPACE },
5883 { VK_ESCAPE, WXK_ESCAPE },
5884 { VK_SELECT, WXK_SELECT },
5885 { VK_PRINT, WXK_PRINT },
5886 { VK_EXECUTE, WXK_EXECUTE },
5887 { VK_SNAPSHOT, WXK_SNAPSHOT },
5888 { VK_HELP, WXK_HELP },
5889
5890 { VK_NUMPAD0, WXK_NUMPAD0 },
5891 { VK_NUMPAD1, WXK_NUMPAD1 },
5892 { VK_NUMPAD2, WXK_NUMPAD2 },
5893 { VK_NUMPAD3, WXK_NUMPAD3 },
5894 { VK_NUMPAD4, WXK_NUMPAD4 },
5895 { VK_NUMPAD5, WXK_NUMPAD5 },
5896 { VK_NUMPAD6, WXK_NUMPAD6 },
5897 { VK_NUMPAD7, WXK_NUMPAD7 },
5898 { VK_NUMPAD8, WXK_NUMPAD8 },
5899 { VK_NUMPAD9, WXK_NUMPAD9 },
5900 { VK_MULTIPLY, WXK_NUMPAD_MULTIPLY },
5901 { VK_ADD, WXK_NUMPAD_ADD },
5902 { VK_SUBTRACT, WXK_NUMPAD_SUBTRACT },
5903 { VK_DECIMAL, WXK_NUMPAD_DECIMAL },
5904 { VK_DIVIDE, WXK_NUMPAD_DIVIDE },
5905
5906 { VK_F1, WXK_F1 },
5907 { VK_F2, WXK_F2 },
5908 { VK_F3, WXK_F3 },
5909 { VK_F4, WXK_F4 },
5910 { VK_F5, WXK_F5 },
5911 { VK_F6, WXK_F6 },
5912 { VK_F7, WXK_F7 },
5913 { VK_F8, WXK_F8 },
5914 { VK_F9, WXK_F9 },
5915 { VK_F10, WXK_F10 },
5916 { VK_F11, WXK_F11 },
5917 { VK_F12, WXK_F12 },
5918 { VK_F13, WXK_F13 },
5919 { VK_F14, WXK_F14 },
5920 { VK_F15, WXK_F15 },
5921 { VK_F16, WXK_F16 },
5922 { VK_F17, WXK_F17 },
5923 { VK_F18, WXK_F18 },
5924 { VK_F19, WXK_F19 },
5925 { VK_F20, WXK_F20 },
5926 { VK_F21, WXK_F21 },
5927 { VK_F22, WXK_F22 },
5928 { VK_F23, WXK_F23 },
5929 { VK_F24, WXK_F24 },
5930
5931 { VK_NUMLOCK, WXK_NUMLOCK },
5932 { VK_SCROLL, WXK_SCROLL },
5933
5934 #ifdef VK_APPS
5935 { VK_LWIN, WXK_WINDOWS_LEFT },
5936 { VK_RWIN, WXK_WINDOWS_RIGHT },
5937 { VK_APPS, WXK_WINDOWS_MENU },
5938 #endif // VK_APPS defined
5939 };
5940
5941 // Returns 0 if was a normal ASCII value, not a special key. This indicates that
5942 // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
5943 int wxCharCodeMSWToWX(int vk, WXLPARAM lParam)
5944 {
5945 // check the table first
5946 for ( size_t n = 0; n < WXSIZEOF(gs_specialKeys); n++ )
5947 {
5948 if ( gs_specialKeys[n].vk == vk )
5949 return gs_specialKeys[n].wxk;
5950 }
5951
5952 // keys requiring special handling
5953 int wxk;
5954 switch ( vk )
5955 {
5956 // the mapping for these keys may be incorrect on non-US keyboards so
5957 // maybe we shouldn't map them to ASCII values at all
5958 case VK_OEM_1: wxk = ';'; break;
5959 case VK_OEM_PLUS: wxk = '+'; break;
5960 case VK_OEM_COMMA: wxk = ','; break;
5961 case VK_OEM_MINUS: wxk = '-'; break;
5962 case VK_OEM_PERIOD: wxk = '.'; break;
5963 case VK_OEM_2: wxk = '/'; break;
5964 case VK_OEM_3: wxk = '~'; break;
5965 case VK_OEM_4: wxk = '['; break;
5966 case VK_OEM_5: wxk = '\\'; break;
5967 case VK_OEM_6: wxk = ']'; break;
5968 case VK_OEM_7: wxk = '\''; break;
5969
5970 // handle extended keys
5971 case VK_PRIOR:
5972 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_PAGEUP, WXK_PAGEUP);
5973 break;
5974
5975 case VK_NEXT:
5976 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_PAGEDOWN, WXK_PAGEDOWN);
5977 break;
5978
5979 case VK_END:
5980 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_END, WXK_END);
5981 break;
5982
5983 case VK_HOME:
5984 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_HOME, WXK_HOME);
5985 break;
5986
5987 case VK_LEFT:
5988 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_LEFT, WXK_LEFT);
5989 break;
5990
5991 case VK_UP:
5992 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_UP, WXK_UP);
5993 break;
5994
5995 case VK_RIGHT:
5996 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_RIGHT, WXK_RIGHT);
5997 break;
5998
5999 case VK_DOWN:
6000 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_DOWN, WXK_DOWN);
6001 break;
6002
6003 case VK_INSERT:
6004 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_INSERT, WXK_INSERT);
6005 break;
6006
6007 case VK_DELETE:
6008 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_DELETE, WXK_DELETE);
6009 break;
6010
6011 case VK_RETURN:
6012 // don't use ChooseNormalOrExtended() here as the keys are reversed
6013 // here: numpad enter is the extended one
6014 wxk = lParam && (lParam & (1 << 24)) ? WXK_NUMPAD_ENTER : WXK_RETURN;
6015 break;
6016
6017 default:
6018 wxk = 0;
6019 }
6020
6021 return wxk;
6022 }
6023
6024 WXWORD wxCharCodeWXToMSW(int wxk, bool *isVirtual)
6025 {
6026 if ( isVirtual )
6027 *isVirtual = true;
6028
6029 // check the table first
6030 for ( size_t n = 0; n < WXSIZEOF(gs_specialKeys); n++ )
6031 {
6032 if ( gs_specialKeys[n].wxk == wxk )
6033 return gs_specialKeys[n].vk;
6034 }
6035
6036 // and then check for special keys not included in the table
6037 WXWORD vk;
6038 switch ( wxk )
6039 {
6040 case WXK_PAGEUP:
6041 case WXK_NUMPAD_PAGEUP:
6042 vk = VK_PRIOR;
6043 break;
6044
6045 case WXK_PAGEDOWN:
6046 case WXK_NUMPAD_PAGEDOWN:
6047 vk = VK_NEXT;
6048 break;
6049
6050 case WXK_END:
6051 case WXK_NUMPAD_END:
6052 vk = VK_END;
6053 break;
6054
6055 case WXK_HOME:
6056 case WXK_NUMPAD_HOME:
6057 vk = VK_HOME;
6058 break;
6059
6060 case WXK_LEFT:
6061 case WXK_NUMPAD_LEFT:
6062 vk = VK_LEFT;
6063 break;
6064
6065 case WXK_UP:
6066 case WXK_NUMPAD_UP:
6067 vk = VK_UP;
6068 break;
6069
6070 case WXK_RIGHT:
6071 case WXK_NUMPAD_RIGHT:
6072 vk = VK_RIGHT;
6073 break;
6074
6075 case WXK_DOWN:
6076 case WXK_NUMPAD_DOWN:
6077 vk = VK_DOWN;
6078 break;
6079
6080 case WXK_INSERT:
6081 case WXK_NUMPAD_INSERT:
6082 vk = VK_INSERT;
6083 break;
6084
6085 case WXK_DELETE:
6086 case WXK_NUMPAD_DELETE:
6087 vk = VK_DELETE;
6088 break;
6089
6090 default:
6091 // no VkKeyScan() under CE unfortunately, we need to test how does
6092 // it handle OEM keys
6093 #ifndef __WXWINCE__
6094 // check to see if its one of the OEM key codes.
6095 BYTE vks = LOBYTE(VkKeyScan(wxk));
6096 if ( vks != 0xff )
6097 {
6098 vk = vks;
6099 }
6100 else
6101 #endif // !__WXWINCE__
6102 {
6103 if ( isVirtual )
6104 *isVirtual = false;
6105 vk = (WXWORD)wxk;
6106 }
6107 }
6108
6109 return vk;
6110 }
6111
6112 // small helper for wxGetKeyState() and wxGetMouseState()
6113 static inline bool wxIsKeyDown(WXWORD vk)
6114 {
6115 // SM_SWAPBUTTON is not available under CE, so don't swap buttons there
6116 #ifdef SM_SWAPBUTTON
6117 if ( vk == VK_LBUTTON || vk == VK_RBUTTON )
6118 {
6119 if ( ::GetSystemMetrics(SM_SWAPBUTTON) )
6120 {
6121 if ( vk == VK_LBUTTON )
6122 vk = VK_RBUTTON;
6123 else // vk == VK_RBUTTON
6124 vk = VK_LBUTTON;
6125 }
6126 }
6127 #endif // SM_SWAPBUTTON
6128
6129 // the low order bit indicates whether the key was pressed since the last
6130 // call and the high order one indicates whether it is down right now and
6131 // we only want that one
6132 return (GetAsyncKeyState(vk) & (1<<15)) != 0;
6133 }
6134
6135 bool wxGetKeyState(wxKeyCode key)
6136 {
6137 // although this does work under Windows, it is not supported under other
6138 // platforms so don't allow it, you must use wxGetMouseState() instead
6139 wxASSERT_MSG( key != VK_LBUTTON &&
6140 key != VK_RBUTTON &&
6141 key != VK_MBUTTON,
6142 wxT("can't use wxGetKeyState() for mouse buttons") );
6143
6144 const WXWORD vk = wxCharCodeWXToMSW(key);
6145
6146 // if the requested key is a LED key, return true if the led is pressed
6147 if ( key == WXK_NUMLOCK || key == WXK_CAPITAL || key == WXK_SCROLL )
6148 {
6149 // low order bit means LED is highlighted and high order one means the
6150 // key is down; for compatibility with the other ports return true if
6151 // either one is set
6152 return GetKeyState(vk) != 0;
6153
6154 }
6155 else // normal key
6156 {
6157 return wxIsKeyDown(vk);
6158 }
6159 }
6160
6161
6162 wxMouseState wxGetMouseState()
6163 {
6164 wxMouseState ms;
6165 POINT pt;
6166 GetCursorPos( &pt );
6167
6168 ms.SetX(pt.x);
6169 ms.SetY(pt.y);
6170 ms.SetLeftDown(wxIsKeyDown(VK_LBUTTON));
6171 ms.SetMiddleDown(wxIsKeyDown(VK_MBUTTON));
6172 ms.SetRightDown(wxIsKeyDown(VK_RBUTTON));
6173 #ifdef wxHAS_XBUTTON
6174 ms.SetAux1Down(wxIsKeyDown(VK_XBUTTON1));
6175 ms.SetAux2Down(wxIsKeyDown(VK_XBUTTON2));
6176 #endif // wxHAS_XBUTTON
6177
6178 ms.SetControlDown(wxIsCtrlDown ());
6179 ms.SetShiftDown (wxIsShiftDown());
6180 ms.SetAltDown (wxIsAltDown ());
6181 // ms.SetMetaDown();
6182
6183 return ms;
6184 }
6185
6186
6187 wxWindow *wxGetActiveWindow()
6188 {
6189 HWND hWnd = GetActiveWindow();
6190 if ( hWnd != 0 )
6191 {
6192 return wxFindWinFromHandle(hWnd);
6193 }
6194 return NULL;
6195 }
6196
6197 extern wxWindow *wxGetWindowFromHWND(WXHWND hWnd)
6198 {
6199 HWND hwnd = (HWND)hWnd;
6200
6201 // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set
6202 // by code in msw/radiobox.cpp), for all the others we just search up the
6203 // window hierarchy
6204 wxWindow *win = (wxWindow *)NULL;
6205 if ( hwnd )
6206 {
6207 win = wxFindWinFromHandle(hwnd);
6208 if ( !win )
6209 {
6210 #if wxUSE_RADIOBOX
6211 // native radiobuttons return DLGC_RADIOBUTTON here and for any
6212 // wxWindow class which overrides WM_GETDLGCODE processing to
6213 // do it as well, win would be already non NULL
6214 if ( ::SendMessage(hwnd, WM_GETDLGCODE, 0, 0) & DLGC_RADIOBUTTON )
6215 {
6216 win = (wxWindow *)wxGetWindowUserData(hwnd);
6217 }
6218 //else: it's a wxRadioButton, not a radiobutton from wxRadioBox
6219 #endif // wxUSE_RADIOBOX
6220
6221 // spin control text buddy window should be mapped to spin ctrl
6222 // itself so try it too
6223 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
6224 if ( !win )
6225 {
6226 win = wxSpinCtrl::GetSpinForTextCtrl((WXHWND)hwnd);
6227 }
6228 #endif // wxUSE_SPINCTRL
6229 }
6230 }
6231
6232 while ( hwnd && !win )
6233 {
6234 // this is a really ugly hack needed to avoid mistakenly returning the
6235 // parent frame wxWindow for the find/replace modeless dialog HWND -
6236 // this, in turn, is needed to call IsDialogMessage() from
6237 // wxApp::ProcessMessage() as for this we must return NULL from here
6238 //
6239 // FIXME: this is clearly not the best way to do it but I think we'll
6240 // need to change HWND <-> wxWindow code more heavily than I can
6241 // do it now to fix it
6242 #ifndef __WXMICROWIN__
6243 if ( ::GetWindow(hwnd, GW_OWNER) )
6244 {
6245 // it's a dialog box, don't go upwards
6246 break;
6247 }
6248 #endif
6249
6250 hwnd = ::GetParent(hwnd);
6251 win = wxFindWinFromHandle(hwnd);
6252 }
6253
6254 return win;
6255 }
6256
6257 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
6258
6259 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
6260 // in active frames and dialogs, regardless of where the focus is.
6261 static HHOOK wxTheKeyboardHook = 0;
6262 static FARPROC wxTheKeyboardHookProc = 0;
6263 int APIENTRY _EXPORT
6264 wxKeyboardHook(int nCode, WORD wParam, DWORD lParam);
6265
6266 void wxSetKeyboardHook(bool doIt)
6267 {
6268 if ( doIt )
6269 {
6270 wxTheKeyboardHookProc = MakeProcInstance((FARPROC) wxKeyboardHook, wxGetInstance());
6271 wxTheKeyboardHook = SetWindowsHookEx(WH_KEYBOARD, (HOOKPROC) wxTheKeyboardHookProc, wxGetInstance(),
6272
6273 GetCurrentThreadId()
6274 // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right?
6275 );
6276 }
6277 else
6278 {
6279 UnhookWindowsHookEx(wxTheKeyboardHook);
6280 }
6281 }
6282
6283 int APIENTRY _EXPORT
6284 wxKeyboardHook(int nCode, WORD wParam, DWORD lParam)
6285 {
6286 DWORD hiWord = HIWORD(lParam);
6287 if ( nCode != HC_NOREMOVE && ((hiWord & KF_UP) == 0) )
6288 {
6289 int id = wxCharCodeMSWToWX(wParam, lParam);
6290 if ( id != 0 )
6291 {
6292 wxKeyEvent event(wxEVT_CHAR_HOOK);
6293 if ( (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN )
6294 event.m_altDown = true;
6295
6296 event.SetEventObject(NULL);
6297 event.m_keyCode = id;
6298 event.m_shiftDown = wxIsShiftDown();
6299 event.m_controlDown = wxIsCtrlDown();
6300 #ifndef __WXWINCE__
6301 event.SetTimestamp(::GetMessageTime());
6302 #endif
6303 wxWindow *win = wxGetActiveWindow();
6304 wxEvtHandler *handler;
6305 if ( win )
6306 {
6307 handler = win->GetEventHandler();
6308 event.SetId(win->GetId());
6309 }
6310 else
6311 {
6312 handler = wxTheApp;
6313 event.SetId(wxID_ANY);
6314 }
6315
6316 if ( handler && handler->ProcessEvent(event) )
6317 {
6318 // processed
6319 return 1;
6320 }
6321 }
6322 }
6323
6324 return (int)CallNextHookEx(wxTheKeyboardHook, nCode, wParam, lParam);
6325 }
6326
6327 #endif // !__WXMICROWIN__
6328
6329 #ifdef __WXDEBUG__
6330 const wxChar *wxGetMessageName(int message)
6331 {
6332 switch ( message )
6333 {
6334 case 0x0000: return wxT("WM_NULL");
6335 case 0x0001: return wxT("WM_CREATE");
6336 case 0x0002: return wxT("WM_DESTROY");
6337 case 0x0003: return wxT("WM_MOVE");
6338 case 0x0005: return wxT("WM_SIZE");
6339 case 0x0006: return wxT("WM_ACTIVATE");
6340 case 0x0007: return wxT("WM_SETFOCUS");
6341 case 0x0008: return wxT("WM_KILLFOCUS");
6342 case 0x000A: return wxT("WM_ENABLE");
6343 case 0x000B: return wxT("WM_SETREDRAW");
6344 case 0x000C: return wxT("WM_SETTEXT");
6345 case 0x000D: return wxT("WM_GETTEXT");
6346 case 0x000E: return wxT("WM_GETTEXTLENGTH");
6347 case 0x000F: return wxT("WM_PAINT");
6348 case 0x0010: return wxT("WM_CLOSE");
6349 case 0x0011: return wxT("WM_QUERYENDSESSION");
6350 case 0x0012: return wxT("WM_QUIT");
6351 case 0x0013: return wxT("WM_QUERYOPEN");
6352 case 0x0014: return wxT("WM_ERASEBKGND");
6353 case 0x0015: return wxT("WM_SYSCOLORCHANGE");
6354 case 0x0016: return wxT("WM_ENDSESSION");
6355 case 0x0017: return wxT("WM_SYSTEMERROR");
6356 case 0x0018: return wxT("WM_SHOWWINDOW");
6357 case 0x0019: return wxT("WM_CTLCOLOR");
6358 case 0x001A: return wxT("WM_WININICHANGE");
6359 case 0x001B: return wxT("WM_DEVMODECHANGE");
6360 case 0x001C: return wxT("WM_ACTIVATEAPP");
6361 case 0x001D: return wxT("WM_FONTCHANGE");
6362 case 0x001E: return wxT("WM_TIMECHANGE");
6363 case 0x001F: return wxT("WM_CANCELMODE");
6364 case 0x0020: return wxT("WM_SETCURSOR");
6365 case 0x0021: return wxT("WM_MOUSEACTIVATE");
6366 case 0x0022: return wxT("WM_CHILDACTIVATE");
6367 case 0x0023: return wxT("WM_QUEUESYNC");
6368 case 0x0024: return wxT("WM_GETMINMAXINFO");
6369 case 0x0026: return wxT("WM_PAINTICON");
6370 case 0x0027: return wxT("WM_ICONERASEBKGND");
6371 case 0x0028: return wxT("WM_NEXTDLGCTL");
6372 case 0x002A: return wxT("WM_SPOOLERSTATUS");
6373 case 0x002B: return wxT("WM_DRAWITEM");
6374 case 0x002C: return wxT("WM_MEASUREITEM");
6375 case 0x002D: return wxT("WM_DELETEITEM");
6376 case 0x002E: return wxT("WM_VKEYTOITEM");
6377 case 0x002F: return wxT("WM_CHARTOITEM");
6378 case 0x0030: return wxT("WM_SETFONT");
6379 case 0x0031: return wxT("WM_GETFONT");
6380 case 0x0037: return wxT("WM_QUERYDRAGICON");
6381 case 0x0039: return wxT("WM_COMPAREITEM");
6382 case 0x0041: return wxT("WM_COMPACTING");
6383 case 0x0044: return wxT("WM_COMMNOTIFY");
6384 case 0x0046: return wxT("WM_WINDOWPOSCHANGING");
6385 case 0x0047: return wxT("WM_WINDOWPOSCHANGED");
6386 case 0x0048: return wxT("WM_POWER");
6387
6388 case 0x004A: return wxT("WM_COPYDATA");
6389 case 0x004B: return wxT("WM_CANCELJOURNAL");
6390 case 0x004E: return wxT("WM_NOTIFY");
6391 case 0x0050: return wxT("WM_INPUTLANGCHANGEREQUEST");
6392 case 0x0051: return wxT("WM_INPUTLANGCHANGE");
6393 case 0x0052: return wxT("WM_TCARD");
6394 case 0x0053: return wxT("WM_HELP");
6395 case 0x0054: return wxT("WM_USERCHANGED");
6396 case 0x0055: return wxT("WM_NOTIFYFORMAT");
6397 case 0x007B: return wxT("WM_CONTEXTMENU");
6398 case 0x007C: return wxT("WM_STYLECHANGING");
6399 case 0x007D: return wxT("WM_STYLECHANGED");
6400 case 0x007E: return wxT("WM_DISPLAYCHANGE");
6401 case 0x007F: return wxT("WM_GETICON");
6402 case 0x0080: return wxT("WM_SETICON");
6403
6404 case 0x0081: return wxT("WM_NCCREATE");
6405 case 0x0082: return wxT("WM_NCDESTROY");
6406 case 0x0083: return wxT("WM_NCCALCSIZE");
6407 case 0x0084: return wxT("WM_NCHITTEST");
6408 case 0x0085: return wxT("WM_NCPAINT");
6409 case 0x0086: return wxT("WM_NCACTIVATE");
6410 case 0x0087: return wxT("WM_GETDLGCODE");
6411 case 0x00A0: return wxT("WM_NCMOUSEMOVE");
6412 case 0x00A1: return wxT("WM_NCLBUTTONDOWN");
6413 case 0x00A2: return wxT("WM_NCLBUTTONUP");
6414 case 0x00A3: return wxT("WM_NCLBUTTONDBLCLK");
6415 case 0x00A4: return wxT("WM_NCRBUTTONDOWN");
6416 case 0x00A5: return wxT("WM_NCRBUTTONUP");
6417 case 0x00A6: return wxT("WM_NCRBUTTONDBLCLK");
6418 case 0x00A7: return wxT("WM_NCMBUTTONDOWN");
6419 case 0x00A8: return wxT("WM_NCMBUTTONUP");
6420 case 0x00A9: return wxT("WM_NCMBUTTONDBLCLK");
6421
6422 case 0x00B0: return wxT("EM_GETSEL");
6423 case 0x00B1: return wxT("EM_SETSEL");
6424 case 0x00B2: return wxT("EM_GETRECT");
6425 case 0x00B3: return wxT("EM_SETRECT");
6426 case 0x00B4: return wxT("EM_SETRECTNP");
6427 case 0x00B5: return wxT("EM_SCROLL");
6428 case 0x00B6: return wxT("EM_LINESCROLL");
6429 case 0x00B7: return wxT("EM_SCROLLCARET");
6430 case 0x00B8: return wxT("EM_GETMODIFY");
6431 case 0x00B9: return wxT("EM_SETMODIFY");
6432 case 0x00BA: return wxT("EM_GETLINECOUNT");
6433 case 0x00BB: return wxT("EM_LINEINDEX");
6434 case 0x00BC: return wxT("EM_SETHANDLE");
6435 case 0x00BD: return wxT("EM_GETHANDLE");
6436 case 0x00BE: return wxT("EM_GETTHUMB");
6437 case 0x00C1: return wxT("EM_LINELENGTH");
6438 case 0x00C2: return wxT("EM_REPLACESEL");
6439 case 0x00C4: return wxT("EM_GETLINE");
6440 case 0x00C5: return wxT("EM_LIMITTEXT/EM_SETLIMITTEXT"); /* ;win40 Name change */
6441 case 0x00C6: return wxT("EM_CANUNDO");
6442 case 0x00C7: return wxT("EM_UNDO");
6443 case 0x00C8: return wxT("EM_FMTLINES");
6444 case 0x00C9: return wxT("EM_LINEFROMCHAR");
6445 case 0x00CB: return wxT("EM_SETTABSTOPS");
6446 case 0x00CC: return wxT("EM_SETPASSWORDCHAR");
6447 case 0x00CD: return wxT("EM_EMPTYUNDOBUFFER");
6448 case 0x00CE: return wxT("EM_GETFIRSTVISIBLELINE");
6449 case 0x00CF: return wxT("EM_SETREADONLY");
6450 case 0x00D0: return wxT("EM_SETWORDBREAKPROC");
6451 case 0x00D1: return wxT("EM_GETWORDBREAKPROC");
6452 case 0x00D2: return wxT("EM_GETPASSWORDCHAR");
6453 case 0x00D3: return wxT("EM_SETMARGINS");
6454 case 0x00D4: return wxT("EM_GETMARGINS");
6455 case 0x00D5: return wxT("EM_GETLIMITTEXT");
6456 case 0x00D6: return wxT("EM_POSFROMCHAR");
6457 case 0x00D7: return wxT("EM_CHARFROMPOS");
6458 case 0x00D8: return wxT("EM_SETIMESTATUS");
6459 case 0x00D9: return wxT("EM_GETIMESTATUS");
6460
6461 case 0x0100: return wxT("WM_KEYDOWN");
6462 case 0x0101: return wxT("WM_KEYUP");
6463 case 0x0102: return wxT("WM_CHAR");
6464 case 0x0103: return wxT("WM_DEADCHAR");
6465 case 0x0104: return wxT("WM_SYSKEYDOWN");
6466 case 0x0105: return wxT("WM_SYSKEYUP");
6467 case 0x0106: return wxT("WM_SYSCHAR");
6468 case 0x0107: return wxT("WM_SYSDEADCHAR");
6469 case 0x0108: return wxT("WM_KEYLAST");
6470
6471 case 0x010D: return wxT("WM_IME_STARTCOMPOSITION");
6472 case 0x010E: return wxT("WM_IME_ENDCOMPOSITION");
6473 case 0x010F: return wxT("WM_IME_COMPOSITION");
6474
6475 case 0x0110: return wxT("WM_INITDIALOG");
6476 case 0x0111: return wxT("WM_COMMAND");
6477 case 0x0112: return wxT("WM_SYSCOMMAND");
6478 case 0x0113: return wxT("WM_TIMER");
6479 case 0x0114: return wxT("WM_HSCROLL");
6480 case 0x0115: return wxT("WM_VSCROLL");
6481 case 0x0116: return wxT("WM_INITMENU");
6482 case 0x0117: return wxT("WM_INITMENUPOPUP");
6483 case 0x011F: return wxT("WM_MENUSELECT");
6484 case 0x0120: return wxT("WM_MENUCHAR");
6485 case 0x0121: return wxT("WM_ENTERIDLE");
6486
6487 case 0x0132: return wxT("WM_CTLCOLORMSGBOX");
6488 case 0x0133: return wxT("WM_CTLCOLOREDIT");
6489 case 0x0134: return wxT("WM_CTLCOLORLISTBOX");
6490 case 0x0135: return wxT("WM_CTLCOLORBTN");
6491 case 0x0136: return wxT("WM_CTLCOLORDLG");
6492 case 0x0137: return wxT("WM_CTLCOLORSCROLLBAR");
6493 case 0x0138: return wxT("WM_CTLCOLORSTATIC");
6494 case 0x01E1: return wxT("MN_GETHMENU");
6495
6496 case 0x0200: return wxT("WM_MOUSEMOVE");
6497 case 0x0201: return wxT("WM_LBUTTONDOWN");
6498 case 0x0202: return wxT("WM_LBUTTONUP");
6499 case 0x0203: return wxT("WM_LBUTTONDBLCLK");
6500 case 0x0204: return wxT("WM_RBUTTONDOWN");
6501 case 0x0205: return wxT("WM_RBUTTONUP");
6502 case 0x0206: return wxT("WM_RBUTTONDBLCLK");
6503 case 0x0207: return wxT("WM_MBUTTONDOWN");
6504 case 0x0208: return wxT("WM_MBUTTONUP");
6505 case 0x0209: return wxT("WM_MBUTTONDBLCLK");
6506 case 0x020A: return wxT("WM_MOUSEWHEEL");
6507 case 0x020B: return wxT("WM_XBUTTONDOWN");
6508 case 0x020C: return wxT("WM_XBUTTONUP");
6509 case 0x020D: return wxT("WM_XBUTTONDBLCLK");
6510 case 0x0210: return wxT("WM_PARENTNOTIFY");
6511 case 0x0211: return wxT("WM_ENTERMENULOOP");
6512 case 0x0212: return wxT("WM_EXITMENULOOP");
6513
6514 case 0x0213: return wxT("WM_NEXTMENU");
6515 case 0x0214: return wxT("WM_SIZING");
6516 case 0x0215: return wxT("WM_CAPTURECHANGED");
6517 case 0x0216: return wxT("WM_MOVING");
6518 case 0x0218: return wxT("WM_POWERBROADCAST");
6519 case 0x0219: return wxT("WM_DEVICECHANGE");
6520
6521 case 0x0220: return wxT("WM_MDICREATE");
6522 case 0x0221: return wxT("WM_MDIDESTROY");
6523 case 0x0222: return wxT("WM_MDIACTIVATE");
6524 case 0x0223: return wxT("WM_MDIRESTORE");
6525 case 0x0224: return wxT("WM_MDINEXT");
6526 case 0x0225: return wxT("WM_MDIMAXIMIZE");
6527 case 0x0226: return wxT("WM_MDITILE");
6528 case 0x0227: return wxT("WM_MDICASCADE");
6529 case 0x0228: return wxT("WM_MDIICONARRANGE");
6530 case 0x0229: return wxT("WM_MDIGETACTIVE");
6531 case 0x0230: return wxT("WM_MDISETMENU");
6532 case 0x0233: return wxT("WM_DROPFILES");
6533
6534 case 0x0281: return wxT("WM_IME_SETCONTEXT");
6535 case 0x0282: return wxT("WM_IME_NOTIFY");
6536 case 0x0283: return wxT("WM_IME_CONTROL");
6537 case 0x0284: return wxT("WM_IME_COMPOSITIONFULL");
6538 case 0x0285: return wxT("WM_IME_SELECT");
6539 case 0x0286: return wxT("WM_IME_CHAR");
6540 case 0x0290: return wxT("WM_IME_KEYDOWN");
6541 case 0x0291: return wxT("WM_IME_KEYUP");
6542
6543 case 0x02A0: return wxT("WM_NCMOUSEHOVER");
6544 case 0x02A1: return wxT("WM_MOUSEHOVER");
6545 case 0x02A2: return wxT("WM_NCMOUSELEAVE");
6546 case 0x02A3: return wxT("WM_MOUSELEAVE");
6547
6548 case 0x0300: return wxT("WM_CUT");
6549 case 0x0301: return wxT("WM_COPY");
6550 case 0x0302: return wxT("WM_PASTE");
6551 case 0x0303: return wxT("WM_CLEAR");
6552 case 0x0304: return wxT("WM_UNDO");
6553 case 0x0305: return wxT("WM_RENDERFORMAT");
6554 case 0x0306: return wxT("WM_RENDERALLFORMATS");
6555 case 0x0307: return wxT("WM_DESTROYCLIPBOARD");
6556 case 0x0308: return wxT("WM_DRAWCLIPBOARD");
6557 case 0x0309: return wxT("WM_PAINTCLIPBOARD");
6558 case 0x030A: return wxT("WM_VSCROLLCLIPBOARD");
6559 case 0x030B: return wxT("WM_SIZECLIPBOARD");
6560 case 0x030C: return wxT("WM_ASKCBFORMATNAME");
6561 case 0x030D: return wxT("WM_CHANGECBCHAIN");
6562 case 0x030E: return wxT("WM_HSCROLLCLIPBOARD");
6563 case 0x030F: return wxT("WM_QUERYNEWPALETTE");
6564 case 0x0310: return wxT("WM_PALETTEISCHANGING");
6565 case 0x0311: return wxT("WM_PALETTECHANGED");
6566 case 0x0312: return wxT("WM_HOTKEY");
6567
6568 case 0x0317: return wxT("WM_PRINT");
6569 case 0x0318: return wxT("WM_PRINTCLIENT");
6570
6571 // common controls messages - although they're not strictly speaking
6572 // standard, it's nice to decode them nevertheless
6573
6574 // listview
6575 case 0x1000 + 0: return wxT("LVM_GETBKCOLOR");
6576 case 0x1000 + 1: return wxT("LVM_SETBKCOLOR");
6577 case 0x1000 + 2: return wxT("LVM_GETIMAGELIST");
6578 case 0x1000 + 3: return wxT("LVM_SETIMAGELIST");
6579 case 0x1000 + 4: return wxT("LVM_GETITEMCOUNT");
6580 case 0x1000 + 5: return wxT("LVM_GETITEMA");
6581 case 0x1000 + 75: return wxT("LVM_GETITEMW");
6582 case 0x1000 + 6: return wxT("LVM_SETITEMA");
6583 case 0x1000 + 76: return wxT("LVM_SETITEMW");
6584 case 0x1000 + 7: return wxT("LVM_INSERTITEMA");
6585 case 0x1000 + 77: return wxT("LVM_INSERTITEMW");
6586 case 0x1000 + 8: return wxT("LVM_DELETEITEM");
6587 case 0x1000 + 9: return wxT("LVM_DELETEALLITEMS");
6588 case 0x1000 + 10: return wxT("LVM_GETCALLBACKMASK");
6589 case 0x1000 + 11: return wxT("LVM_SETCALLBACKMASK");
6590 case 0x1000 + 12: return wxT("LVM_GETNEXTITEM");
6591 case 0x1000 + 13: return wxT("LVM_FINDITEMA");
6592 case 0x1000 + 83: return wxT("LVM_FINDITEMW");
6593 case 0x1000 + 14: return wxT("LVM_GETITEMRECT");
6594 case 0x1000 + 15: return wxT("LVM_SETITEMPOSITION");
6595 case 0x1000 + 16: return wxT("LVM_GETITEMPOSITION");
6596 case 0x1000 + 17: return wxT("LVM_GETSTRINGWIDTHA");
6597 case 0x1000 + 87: return wxT("LVM_GETSTRINGWIDTHW");
6598 case 0x1000 + 18: return wxT("LVM_HITTEST");
6599 case 0x1000 + 19: return wxT("LVM_ENSUREVISIBLE");
6600 case 0x1000 + 20: return wxT("LVM_SCROLL");
6601 case 0x1000 + 21: return wxT("LVM_REDRAWITEMS");
6602 case 0x1000 + 22: return wxT("LVM_ARRANGE");
6603 case 0x1000 + 23: return wxT("LVM_EDITLABELA");
6604 case 0x1000 + 118: return wxT("LVM_EDITLABELW");
6605 case 0x1000 + 24: return wxT("LVM_GETEDITCONTROL");
6606 case 0x1000 + 25: return wxT("LVM_GETCOLUMNA");
6607 case 0x1000 + 95: return wxT("LVM_GETCOLUMNW");
6608 case 0x1000 + 26: return wxT("LVM_SETCOLUMNA");
6609 case 0x1000 + 96: return wxT("LVM_SETCOLUMNW");
6610 case 0x1000 + 27: return wxT("LVM_INSERTCOLUMNA");
6611 case 0x1000 + 97: return wxT("LVM_INSERTCOLUMNW");
6612 case 0x1000 + 28: return wxT("LVM_DELETECOLUMN");
6613 case 0x1000 + 29: return wxT("LVM_GETCOLUMNWIDTH");
6614 case 0x1000 + 30: return wxT("LVM_SETCOLUMNWIDTH");
6615 case 0x1000 + 31: return wxT("LVM_GETHEADER");
6616 case 0x1000 + 33: return wxT("LVM_CREATEDRAGIMAGE");
6617 case 0x1000 + 34: return wxT("LVM_GETVIEWRECT");
6618 case 0x1000 + 35: return wxT("LVM_GETTEXTCOLOR");
6619 case 0x1000 + 36: return wxT("LVM_SETTEXTCOLOR");
6620 case 0x1000 + 37: return wxT("LVM_GETTEXTBKCOLOR");
6621 case 0x1000 + 38: return wxT("LVM_SETTEXTBKCOLOR");
6622 case 0x1000 + 39: return wxT("LVM_GETTOPINDEX");
6623 case 0x1000 + 40: return wxT("LVM_GETCOUNTPERPAGE");
6624 case 0x1000 + 41: return wxT("LVM_GETORIGIN");
6625 case 0x1000 + 42: return wxT("LVM_UPDATE");
6626 case 0x1000 + 43: return wxT("LVM_SETITEMSTATE");
6627 case 0x1000 + 44: return wxT("LVM_GETITEMSTATE");
6628 case 0x1000 + 45: return wxT("LVM_GETITEMTEXTA");
6629 case 0x1000 + 115: return wxT("LVM_GETITEMTEXTW");
6630 case 0x1000 + 46: return wxT("LVM_SETITEMTEXTA");
6631 case 0x1000 + 116: return wxT("LVM_SETITEMTEXTW");
6632 case 0x1000 + 47: return wxT("LVM_SETITEMCOUNT");
6633 case 0x1000 + 48: return wxT("LVM_SORTITEMS");
6634 case 0x1000 + 49: return wxT("LVM_SETITEMPOSITION32");
6635 case 0x1000 + 50: return wxT("LVM_GETSELECTEDCOUNT");
6636 case 0x1000 + 51: return wxT("LVM_GETITEMSPACING");
6637 case 0x1000 + 52: return wxT("LVM_GETISEARCHSTRINGA");
6638 case 0x1000 + 117: return wxT("LVM_GETISEARCHSTRINGW");
6639 case 0x1000 + 53: return wxT("LVM_SETICONSPACING");
6640 case 0x1000 + 54: return wxT("LVM_SETEXTENDEDLISTVIEWSTYLE");
6641 case 0x1000 + 55: return wxT("LVM_GETEXTENDEDLISTVIEWSTYLE");
6642 case 0x1000 + 56: return wxT("LVM_GETSUBITEMRECT");
6643 case 0x1000 + 57: return wxT("LVM_SUBITEMHITTEST");
6644 case 0x1000 + 58: return wxT("LVM_SETCOLUMNORDERARRAY");
6645 case 0x1000 + 59: return wxT("LVM_GETCOLUMNORDERARRAY");
6646 case 0x1000 + 60: return wxT("LVM_SETHOTITEM");
6647 case 0x1000 + 61: return wxT("LVM_GETHOTITEM");
6648 case 0x1000 + 62: return wxT("LVM_SETHOTCURSOR");
6649 case 0x1000 + 63: return wxT("LVM_GETHOTCURSOR");
6650 case 0x1000 + 64: return wxT("LVM_APPROXIMATEVIEWRECT");
6651 case 0x1000 + 65: return wxT("LVM_SETWORKAREA");
6652
6653 // tree view
6654 case 0x1100 + 0: return wxT("TVM_INSERTITEMA");
6655 case 0x1100 + 50: return wxT("TVM_INSERTITEMW");
6656 case 0x1100 + 1: return wxT("TVM_DELETEITEM");
6657 case 0x1100 + 2: return wxT("TVM_EXPAND");
6658 case 0x1100 + 4: return wxT("TVM_GETITEMRECT");
6659 case 0x1100 + 5: return wxT("TVM_GETCOUNT");
6660 case 0x1100 + 6: return wxT("TVM_GETINDENT");
6661 case 0x1100 + 7: return wxT("TVM_SETINDENT");
6662 case 0x1100 + 8: return wxT("TVM_GETIMAGELIST");
6663 case 0x1100 + 9: return wxT("TVM_SETIMAGELIST");
6664 case 0x1100 + 10: return wxT("TVM_GETNEXTITEM");
6665 case 0x1100 + 11: return wxT("TVM_SELECTITEM");
6666 case 0x1100 + 12: return wxT("TVM_GETITEMA");
6667 case 0x1100 + 62: return wxT("TVM_GETITEMW");
6668 case 0x1100 + 13: return wxT("TVM_SETITEMA");
6669 case 0x1100 + 63: return wxT("TVM_SETITEMW");
6670 case 0x1100 + 14: return wxT("TVM_EDITLABELA");
6671 case 0x1100 + 65: return wxT("TVM_EDITLABELW");
6672 case 0x1100 + 15: return wxT("TVM_GETEDITCONTROL");
6673 case 0x1100 + 16: return wxT("TVM_GETVISIBLECOUNT");
6674 case 0x1100 + 17: return wxT("TVM_HITTEST");
6675 case 0x1100 + 18: return wxT("TVM_CREATEDRAGIMAGE");
6676 case 0x1100 + 19: return wxT("TVM_SORTCHILDREN");
6677 case 0x1100 + 20: return wxT("TVM_ENSUREVISIBLE");
6678 case 0x1100 + 21: return wxT("TVM_SORTCHILDRENCB");
6679 case 0x1100 + 22: return wxT("TVM_ENDEDITLABELNOW");
6680 case 0x1100 + 23: return wxT("TVM_GETISEARCHSTRINGA");
6681 case 0x1100 + 64: return wxT("TVM_GETISEARCHSTRINGW");
6682 case 0x1100 + 24: return wxT("TVM_SETTOOLTIPS");
6683 case 0x1100 + 25: return wxT("TVM_GETTOOLTIPS");
6684
6685 // header
6686 case 0x1200 + 0: return wxT("HDM_GETITEMCOUNT");
6687 case 0x1200 + 1: return wxT("HDM_INSERTITEMA");
6688 case 0x1200 + 10: return wxT("HDM_INSERTITEMW");
6689 case 0x1200 + 2: return wxT("HDM_DELETEITEM");
6690 case 0x1200 + 3: return wxT("HDM_GETITEMA");
6691 case 0x1200 + 11: return wxT("HDM_GETITEMW");
6692 case 0x1200 + 4: return wxT("HDM_SETITEMA");
6693 case 0x1200 + 12: return wxT("HDM_SETITEMW");
6694 case 0x1200 + 5: return wxT("HDM_LAYOUT");
6695 case 0x1200 + 6: return wxT("HDM_HITTEST");
6696 case 0x1200 + 7: return wxT("HDM_GETITEMRECT");
6697 case 0x1200 + 8: return wxT("HDM_SETIMAGELIST");
6698 case 0x1200 + 9: return wxT("HDM_GETIMAGELIST");
6699 case 0x1200 + 15: return wxT("HDM_ORDERTOINDEX");
6700 case 0x1200 + 16: return wxT("HDM_CREATEDRAGIMAGE");
6701 case 0x1200 + 17: return wxT("HDM_GETORDERARRAY");
6702 case 0x1200 + 18: return wxT("HDM_SETORDERARRAY");
6703 case 0x1200 + 19: return wxT("HDM_SETHOTDIVIDER");
6704
6705 // tab control
6706 case 0x1300 + 2: return wxT("TCM_GETIMAGELIST");
6707 case 0x1300 + 3: return wxT("TCM_SETIMAGELIST");
6708 case 0x1300 + 4: return wxT("TCM_GETITEMCOUNT");
6709 case 0x1300 + 5: return wxT("TCM_GETITEMA");
6710 case 0x1300 + 60: return wxT("TCM_GETITEMW");
6711 case 0x1300 + 6: return wxT("TCM_SETITEMA");
6712 case 0x1300 + 61: return wxT("TCM_SETITEMW");
6713 case 0x1300 + 7: return wxT("TCM_INSERTITEMA");
6714 case 0x1300 + 62: return wxT("TCM_INSERTITEMW");
6715 case 0x1300 + 8: return wxT("TCM_DELETEITEM");
6716 case 0x1300 + 9: return wxT("TCM_DELETEALLITEMS");
6717 case 0x1300 + 10: return wxT("TCM_GETITEMRECT");
6718 case 0x1300 + 11: return wxT("TCM_GETCURSEL");
6719 case 0x1300 + 12: return wxT("TCM_SETCURSEL");
6720 case 0x1300 + 13: return wxT("TCM_HITTEST");
6721 case 0x1300 + 14: return wxT("TCM_SETITEMEXTRA");
6722 case 0x1300 + 40: return wxT("TCM_ADJUSTRECT");
6723 case 0x1300 + 41: return wxT("TCM_SETITEMSIZE");
6724 case 0x1300 + 42: return wxT("TCM_REMOVEIMAGE");
6725 case 0x1300 + 43: return wxT("TCM_SETPADDING");
6726 case 0x1300 + 44: return wxT("TCM_GETROWCOUNT");
6727 case 0x1300 + 45: return wxT("TCM_GETTOOLTIPS");
6728 case 0x1300 + 46: return wxT("TCM_SETTOOLTIPS");
6729 case 0x1300 + 47: return wxT("TCM_GETCURFOCUS");
6730 case 0x1300 + 48: return wxT("TCM_SETCURFOCUS");
6731 case 0x1300 + 49: return wxT("TCM_SETMINTABWIDTH");
6732 case 0x1300 + 50: return wxT("TCM_DESELECTALL");
6733
6734 // toolbar
6735 case WM_USER+1: return wxT("TB_ENABLEBUTTON");
6736 case WM_USER+2: return wxT("TB_CHECKBUTTON");
6737 case WM_USER+3: return wxT("TB_PRESSBUTTON");
6738 case WM_USER+4: return wxT("TB_HIDEBUTTON");
6739 case WM_USER+5: return wxT("TB_INDETERMINATE");
6740 case WM_USER+9: return wxT("TB_ISBUTTONENABLED");
6741 case WM_USER+10: return wxT("TB_ISBUTTONCHECKED");
6742 case WM_USER+11: return wxT("TB_ISBUTTONPRESSED");
6743 case WM_USER+12: return wxT("TB_ISBUTTONHIDDEN");
6744 case WM_USER+13: return wxT("TB_ISBUTTONINDETERMINATE");
6745 case WM_USER+17: return wxT("TB_SETSTATE");
6746 case WM_USER+18: return wxT("TB_GETSTATE");
6747 case WM_USER+19: return wxT("TB_ADDBITMAP");
6748 case WM_USER+20: return wxT("TB_ADDBUTTONS");
6749 case WM_USER+21: return wxT("TB_INSERTBUTTON");
6750 case WM_USER+22: return wxT("TB_DELETEBUTTON");
6751 case WM_USER+23: return wxT("TB_GETBUTTON");
6752 case WM_USER+24: return wxT("TB_BUTTONCOUNT");
6753 case WM_USER+25: return wxT("TB_COMMANDTOINDEX");
6754 case WM_USER+26: return wxT("TB_SAVERESTOREA");
6755 case WM_USER+76: return wxT("TB_SAVERESTOREW");
6756 case WM_USER+27: return wxT("TB_CUSTOMIZE");
6757 case WM_USER+28: return wxT("TB_ADDSTRINGA");
6758 case WM_USER+77: return wxT("TB_ADDSTRINGW");
6759 case WM_USER+29: return wxT("TB_GETITEMRECT");
6760 case WM_USER+30: return wxT("TB_BUTTONSTRUCTSIZE");
6761 case WM_USER+31: return wxT("TB_SETBUTTONSIZE");
6762 case WM_USER+32: return wxT("TB_SETBITMAPSIZE");
6763 case WM_USER+33: return wxT("TB_AUTOSIZE");
6764 case WM_USER+35: return wxT("TB_GETTOOLTIPS");
6765 case WM_USER+36: return wxT("TB_SETTOOLTIPS");
6766 case WM_USER+37: return wxT("TB_SETPARENT");
6767 case WM_USER+39: return wxT("TB_SETROWS");
6768 case WM_USER+40: return wxT("TB_GETROWS");
6769 case WM_USER+42: return wxT("TB_SETCMDID");
6770 case WM_USER+43: return wxT("TB_CHANGEBITMAP");
6771 case WM_USER+44: return wxT("TB_GETBITMAP");
6772 case WM_USER+45: return wxT("TB_GETBUTTONTEXTA");
6773 case WM_USER+75: return wxT("TB_GETBUTTONTEXTW");
6774 case WM_USER+46: return wxT("TB_REPLACEBITMAP");
6775 case WM_USER+47: return wxT("TB_SETINDENT");
6776 case WM_USER+48: return wxT("TB_SETIMAGELIST");
6777 case WM_USER+49: return wxT("TB_GETIMAGELIST");
6778 case WM_USER+50: return wxT("TB_LOADIMAGES");
6779 case WM_USER+51: return wxT("TB_GETRECT");
6780 case WM_USER+52: return wxT("TB_SETHOTIMAGELIST");
6781 case WM_USER+53: return wxT("TB_GETHOTIMAGELIST");
6782 case WM_USER+54: return wxT("TB_SETDISABLEDIMAGELIST");
6783 case WM_USER+55: return wxT("TB_GETDISABLEDIMAGELIST");
6784 case WM_USER+56: return wxT("TB_SETSTYLE");
6785 case WM_USER+57: return wxT("TB_GETSTYLE");
6786 case WM_USER+58: return wxT("TB_GETBUTTONSIZE");
6787 case WM_USER+59: return wxT("TB_SETBUTTONWIDTH");
6788 case WM_USER+60: return wxT("TB_SETMAXTEXTROWS");
6789 case WM_USER+61: return wxT("TB_GETTEXTROWS");
6790 case WM_USER+41: return wxT("TB_GETBITMAPFLAGS");
6791
6792 default:
6793 static wxString s_szBuf;
6794 s_szBuf.Printf(wxT("<unknown message = %d>"), message);
6795 return s_szBuf.c_str();
6796 }
6797 }
6798 #endif //__WXDEBUG__
6799
6800 static TEXTMETRIC wxGetTextMetrics(const wxWindowMSW *win)
6801 {
6802 // prepare the DC
6803 TEXTMETRIC tm;
6804 HWND hwnd = GetHwndOf(win);
6805 HDC hdc = ::GetDC(hwnd);
6806
6807 #if !wxDIALOG_UNIT_COMPATIBILITY
6808 // and select the current font into it
6809 HFONT hfont = GetHfontOf(win->GetFont());
6810 if ( hfont )
6811 {
6812 hfont = (HFONT)::SelectObject(hdc, hfont);
6813 }
6814 #endif
6815
6816 // finally retrieve the text metrics from it
6817 GetTextMetrics(hdc, &tm);
6818
6819 #if !wxDIALOG_UNIT_COMPATIBILITY
6820 // and clean up
6821 if ( hfont )
6822 {
6823 (void)::SelectObject(hdc, hfont);
6824 }
6825 #endif
6826
6827 ::ReleaseDC(hwnd, hdc);
6828
6829 return tm;
6830 }
6831
6832 // Find the wxWindow at the current mouse position, returning the mouse
6833 // position.
6834 wxWindow* wxFindWindowAtPointer(wxPoint& pt)
6835 {
6836 pt = wxGetMousePosition();
6837 return wxFindWindowAtPoint(pt);
6838 }
6839
6840 wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
6841 {
6842 POINT pt2;
6843 pt2.x = pt.x;
6844 pt2.y = pt.y;
6845
6846 HWND hWnd = ::WindowFromPoint(pt2);
6847
6848 return wxGetWindowFromHWND((WXHWND)hWnd);
6849 }
6850
6851 // Get the current mouse position.
6852 wxPoint wxGetMousePosition()
6853 {
6854 POINT pt;
6855 #ifdef __WXWINCE__
6856 GetCursorPosWinCE(&pt);
6857 #else
6858 GetCursorPos( & pt );
6859 #endif
6860
6861 return wxPoint(pt.x, pt.y);
6862 }
6863
6864 #if wxUSE_HOTKEY
6865
6866 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
6867 static void WinCEUnregisterHotKey(int modifiers, int id)
6868 {
6869 // Register hotkeys for the hardware buttons
6870 HINSTANCE hCoreDll;
6871 typedef BOOL (WINAPI *UnregisterFunc1Proc)(UINT, UINT);
6872
6873 UnregisterFunc1Proc procUnregisterFunc;
6874 hCoreDll = LoadLibrary(_T("coredll.dll"));
6875 if (hCoreDll)
6876 {
6877 procUnregisterFunc = (UnregisterFunc1Proc)GetProcAddress(hCoreDll, _T("UnregisterFunc1"));
6878 if (procUnregisterFunc)
6879 procUnregisterFunc(modifiers, id);
6880 FreeLibrary(hCoreDll);
6881 }
6882 }
6883 #endif
6884
6885 bool wxWindowMSW::RegisterHotKey(int hotkeyId, int modifiers, int keycode)
6886 {
6887 UINT win_modifiers=0;
6888 if ( modifiers & wxMOD_ALT )
6889 win_modifiers |= MOD_ALT;
6890 if ( modifiers & wxMOD_SHIFT )
6891 win_modifiers |= MOD_SHIFT;
6892 if ( modifiers & wxMOD_CONTROL )
6893 win_modifiers |= MOD_CONTROL;
6894 if ( modifiers & wxMOD_WIN )
6895 win_modifiers |= MOD_WIN;
6896
6897 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
6898 // Required for PPC and Smartphone hardware buttons
6899 if (keycode >= WXK_SPECIAL1 && keycode <= WXK_SPECIAL20)
6900 WinCEUnregisterHotKey(win_modifiers, hotkeyId);
6901 #endif
6902
6903 if ( !::RegisterHotKey(GetHwnd(), hotkeyId, win_modifiers, keycode) )
6904 {
6905 wxLogLastError(_T("RegisterHotKey"));
6906
6907 return false;
6908 }
6909
6910 return true;
6911 }
6912
6913 bool wxWindowMSW::UnregisterHotKey(int hotkeyId)
6914 {
6915 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
6916 WinCEUnregisterHotKey(MOD_WIN, hotkeyId);
6917 #endif
6918
6919 if ( !::UnregisterHotKey(GetHwnd(), hotkeyId) )
6920 {
6921 wxLogLastError(_T("UnregisterHotKey"));
6922
6923 return false;
6924 }
6925
6926 return true;
6927 }
6928
6929 #if wxUSE_ACCEL
6930
6931 bool wxWindowMSW::HandleHotKey(WXWPARAM wParam, WXLPARAM lParam)
6932 {
6933 int hotkeyId = wParam;
6934 int virtualKey = HIWORD(lParam);
6935 int win_modifiers = LOWORD(lParam);
6936
6937 wxKeyEvent event(CreateKeyEvent(wxEVT_HOTKEY, virtualKey, wParam, lParam));
6938 event.SetId(hotkeyId);
6939 event.m_shiftDown = (win_modifiers & MOD_SHIFT) != 0;
6940 event.m_controlDown = (win_modifiers & MOD_CONTROL) != 0;
6941 event.m_altDown = (win_modifiers & MOD_ALT) != 0;
6942 event.m_metaDown = (win_modifiers & MOD_WIN) != 0;
6943
6944 return HandleWindowEvent(event);
6945 }
6946
6947 #endif // wxUSE_ACCEL
6948
6949 #endif // wxUSE_HOTKEY
6950
6951 // Not tested under WinCE
6952 #ifndef __WXWINCE__
6953
6954 // this class installs a message hook which really wakes up our idle processing
6955 // each time a WM_NULL is received (wxWakeUpIdle does this), even if we're
6956 // sitting inside a local modal loop (e.g. a menu is opened or scrollbar is
6957 // being dragged or even inside ::MessageBox()) and so don't control message
6958 // dispatching otherwise
6959 class wxIdleWakeUpModule : public wxModule
6960 {
6961 public:
6962 virtual bool OnInit()
6963 {
6964 ms_hMsgHookProc = ::SetWindowsHookEx
6965 (
6966 WH_GETMESSAGE,
6967 &wxIdleWakeUpModule::MsgHookProc,
6968 NULL,
6969 GetCurrentThreadId()
6970 );
6971
6972 if ( !ms_hMsgHookProc )
6973 {
6974 wxLogLastError(_T("SetWindowsHookEx(WH_GETMESSAGE)"));
6975
6976 return false;
6977 }
6978
6979 return true;
6980 }
6981
6982 virtual void OnExit()
6983 {
6984 ::UnhookWindowsHookEx(wxIdleWakeUpModule::ms_hMsgHookProc);
6985 }
6986
6987 static LRESULT CALLBACK MsgHookProc(int nCode, WPARAM wParam, LPARAM lParam)
6988 {
6989 MSG *msg = (MSG*)lParam;
6990
6991 // only process the message if it is actually going to be removed from
6992 // the message queue, this prevents that the same event from being
6993 // processed multiple times if now someone just called PeekMessage()
6994 if ( msg->message == WM_NULL && wParam == PM_REMOVE )
6995 {
6996 wxTheApp->ProcessPendingEvents();
6997 }
6998
6999 return CallNextHookEx(ms_hMsgHookProc, nCode, wParam, lParam);
7000 }
7001
7002 private:
7003 static HHOOK ms_hMsgHookProc;
7004
7005 DECLARE_DYNAMIC_CLASS(wxIdleWakeUpModule)
7006 };
7007
7008 HHOOK wxIdleWakeUpModule::ms_hMsgHookProc = 0;
7009
7010 IMPLEMENT_DYNAMIC_CLASS(wxIdleWakeUpModule, wxModule)
7011
7012 #endif // __WXWINCE__
7013
7014 #ifdef __WXWINCE__
7015
7016 #if wxUSE_STATBOX
7017 static void wxAdjustZOrder(wxWindow* parent)
7018 {
7019 if (parent->IsKindOf(CLASSINFO(wxStaticBox)))
7020 {
7021 // Set the z-order correctly
7022 SetWindowPos((HWND) parent->GetHWND(), HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
7023 }
7024
7025 wxWindowList::compatibility_iterator current = parent->GetChildren().GetFirst();
7026 while (current)
7027 {
7028 wxWindow *childWin = current->GetData();
7029 wxAdjustZOrder(childWin);
7030 current = current->GetNext();
7031 }
7032 }
7033 #endif
7034
7035 // We need to adjust the z-order of static boxes in WinCE, to
7036 // make 'contained' controls visible
7037 void wxWindowMSW::OnInitDialog( wxInitDialogEvent& event )
7038 {
7039 #if wxUSE_STATBOX
7040 wxAdjustZOrder(this);
7041 #endif
7042
7043 event.Skip();
7044 }
7045 #endif