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