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