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