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