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