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