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