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