1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/window.cpp
3 // Purpose: wxWindowMSW
4 // Author: Julian Smart
5 // Modified by: VZ on 13.05.99: no more Default(), MSWOnXXX() reorganisation
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/window.h"
30 #include "wx/msw/wrapwin.h"
31 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
32 #include "wx/msw/missing.h"
36 #include "wx/dcclient.h"
37 #include "wx/dcmemory.h"
40 #include "wx/layout.h"
41 #include "wx/dialog.h"
43 #include "wx/listbox.h"
44 #include "wx/button.h"
45 #include "wx/msgdlg.h"
46 #include "wx/settings.h"
47 #include "wx/statbox.h"
51 #include "wx/textctrl.h"
52 #include "wx/menuitem.h"
53 #include "wx/module.h"
56 #if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__)
57 #include "wx/ownerdrw.h"
60 #include "wx/hashmap.h"
61 #include "wx/evtloop.h"
63 #include "wx/sysopt.h"
65 #if wxUSE_DRAG_AND_DROP
69 #if wxUSE_ACCESSIBILITY
70 #include "wx/access.h"
74 #define WM_GETOBJECT 0x003D
77 #define OBJID_CLIENT 0xFFFFFFFC
81 #include "wx/msw/private.h"
82 #include "wx/msw/private/keyboard.h"
83 #include "wx/msw/dcclient.h"
86 #include "wx/tooltip.h"
94 #include "wx/spinctrl.h"
95 #endif // wxUSE_SPINCTRL
97 #include "wx/notebook.h"
98 #include "wx/listctrl.h"
99 #include "wx/dynlib.h"
103 #if (!defined(__GNUWIN32_OLD__) && !defined(__WXMICROWIN__) /* && !defined(__WXWINCE__) */ ) || defined(__CYGWIN10__)
104 #include <shellapi.h>
105 #include <mmsystem.h>
109 #include <windowsx.h>
112 #if !defined __WXWINCE__ && !defined NEED_PBT_H
116 #if defined(__WXWINCE__)
117 #include "wx/msw/wince/missing.h"
120 #include <shellapi.h>
122 #include <aygshell.h>
127 #include "wx/msw/uxtheme.h"
128 #define EP_EDITTEXT 1
131 #define ETS_SELECTED 3
132 #define ETS_DISABLED 4
133 #define ETS_FOCUSED 5
134 #define ETS_READONLY 6
138 // define the constants used by AnimateWindow() if our SDK doesn't have them
140 #define AW_HOR_POSITIVE 0x00000001
141 #define AW_HOR_NEGATIVE 0x00000002
142 #define AW_VER_POSITIVE 0x00000004
143 #define AW_VER_NEGATIVE 0x00000008
144 #define AW_CENTER 0x00000010
145 #define AW_HIDE 0x00010000
146 #define AW_ACTIVATE 0x00020000
147 #define AW_SLIDE 0x00040000
148 #define AW_BLEND 0x00080000
151 #if defined(TME_LEAVE) && defined(WM_MOUSELEAVE) && wxUSE_DYNLIB_CLASS
152 #define HAVE_TRACKMOUSEEVENT
153 #endif // everything needed for TrackMouseEvent()
155 // set this to 1 to filter out duplicate mouse events, e.g. mouse move events
156 // when mouse position didnd't change
158 #define wxUSE_MOUSEEVENT_HACK 0
160 #define wxUSE_MOUSEEVENT_HACK 1
163 // not all compilers/platforms have X button related declarations (notably
164 // Windows CE doesn't, and probably some old SDKs don't neither)
165 #ifdef WM_XBUTTONDOWN
166 #define wxHAS_XBUTTON
169 #ifndef MAPVK_VK_TO_CHAR
170 #define MAPVK_VK_TO_CHAR 2
173 // ---------------------------------------------------------------------------
175 // ---------------------------------------------------------------------------
177 #if wxUSE_MENUS_NATIVE
178 extern wxMenu
*wxCurrentPopupMenu
;
184 // true if we had already created the std colour map, used by
185 // wxGetStdColourMap() and wxWindow::OnSysColourChanged() (FIXME-MT)
186 bool gs_hasStdCmap
= false;
188 // last mouse event information we need to filter out the duplicates
189 #if wxUSE_MOUSEEVENT_HACK
190 struct MouseEventInfoDummy
192 // mouse position (in screen coordinates)
195 // last mouse event type
198 #endif // wxUSE_MOUSEEVENT_HACK
200 // hash containing the registered handlers for the custom messages
201 WX_DECLARE_HASH_MAP(int, wxWindow::MSWMessageHandler
,
202 wxIntegerHash
, wxIntegerEqual
,
205 MSWMessageHandlers gs_messageHandlers
;
207 // hash containing all our windows, it uses HWND keys and wxWindow* values
208 WX_DECLARE_HASH_MAP(HWND
, wxWindow
*,
209 wxPointerHash
, wxPointerEqual
,
212 WindowHandles gs_windowHandles
;
214 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
216 // temporary override for WM_ERASEBKGND processing: we don't store this in
217 // wxWindow itself as we don't need it during most of the time so don't
218 // increase the size of all window objects unnecessarily
219 WX_DECLARE_HASH_MAP(wxWindow
*, wxWindow
*,
220 wxPointerHash
, wxPointerEqual
,
223 EraseBgHooks gs_eraseBgHooks
;
225 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
227 } // anonymous namespace
229 // ---------------------------------------------------------------------------
231 // ---------------------------------------------------------------------------
233 // the window proc for all our windows
234 LRESULT WXDLLEXPORT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
,
235 WPARAM wParam
, LPARAM lParam
);
238 #if wxDEBUG_LEVEL >= 2
239 const wxChar
*wxGetMessageName(int message
);
240 #endif // wxDEBUG_LEVEL >= 2
242 void wxRemoveHandleAssociation(wxWindowMSW
*win
);
243 extern void wxAssociateWinWithHandle(HWND hWnd
, wxWindowMSW
*win
);
245 // get the text metrics for the current font
246 static TEXTMETRIC
wxGetTextMetrics(const wxWindowMSW
*win
);
249 // find the window for the mouse event at the specified position
250 static wxWindowMSW
*FindWindowForMouseEvent(wxWindowMSW
*win
, int *x
, int *y
);
251 #endif // __WXWINCE__
253 // wrapper around BringWindowToTop() API
254 static inline void wxBringWindowToTop(HWND hwnd
)
256 #ifdef __WXMICROWIN__
257 // It seems that MicroWindows brings the _parent_ of the window to the top,
258 // which can be the wrong one.
260 // activate (set focus to) specified window
264 // raise top level parent to top of z order
265 if (!::SetWindowPos(hwnd
, HWND_TOP
, 0, 0, 0, 0, SWP_NOMOVE
| SWP_NOSIZE
))
267 wxLogLastError(wxT("SetWindowPos"));
273 // ensure that all our parent windows have WS_EX_CONTROLPARENT style
274 static void EnsureParentHasControlParentStyle(wxWindow
*parent
)
277 If we have WS_EX_CONTROLPARENT flag we absolutely *must* set it for our
278 parent as well as otherwise several Win32 functions using
279 GetNextDlgTabItem() to iterate over all controls such as
280 IsDialogMessage() or DefDlgProc() would enter an infinite loop: indeed,
281 all of them iterate over all the controls starting from the currently
282 focused one and stop iterating when they get back to the focus but
283 unless all parents have WS_EX_CONTROLPARENT bit set, they would never
284 get back to the initial (focused) window: as we do have this style,
285 GetNextDlgTabItem() will leave this window and continue in its parent,
286 but if the parent doesn't have it, it wouldn't recurse inside it later
287 on and so wouldn't have a chance of getting back to this window either.
289 while ( parent
&& !parent
->IsTopLevel() )
291 LONG exStyle
= wxGetWindowExStyle(parent
);
292 if ( !(exStyle
& WS_EX_CONTROLPARENT
) )
294 // force the parent to have this style
295 wxSetWindowExStyle(parent
, exStyle
| WS_EX_CONTROLPARENT
);
298 parent
= parent
->GetParent();
302 #endif // !__WXWINCE__
305 // On Windows CE, GetCursorPos can return an error, so use this function
307 bool GetCursorPosWinCE(POINT
* pt
)
309 if (!GetCursorPos(pt
))
311 DWORD pos
= GetMessagePos();
319 // ---------------------------------------------------------------------------
321 // ---------------------------------------------------------------------------
323 // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
325 #ifdef __WXUNIVERSAL__
326 IMPLEMENT_ABSTRACT_CLASS(wxWindowMSW
, wxWindowBase
)
328 #if wxUSE_EXTENDED_RTTI
330 // windows that are created from a parent window during its Create method, eg. spin controls in a calendar controls
331 // must never been streamed out separately otherwise chaos occurs. Right now easiest is to test for negative ids, as
332 // windows with negative ids never can be recreated anyway
334 bool wxWindowStreamingCallback( const wxObject
*object
, wxWriter
* , wxPersister
* , wxxVariantArray
& )
336 const wxWindow
* win
= dynamic_cast<const wxWindow
*>(object
) ;
337 if ( win
&& win
->GetId() < 0 )
342 IMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK(wxWindow
, wxWindowBase
,"wx/window.h", wxWindowStreamingCallback
)
344 // make wxWindowList known before the property is used
346 wxCOLLECTION_TYPE_INFO( wxWindow
* , wxWindowList
) ;
348 template<> void wxCollectionToVariantArray( wxWindowList
const &theList
, wxxVariantArray
&value
)
350 wxListCollectionToVariantArray
<wxWindowList::compatibility_iterator
>( theList
, value
) ;
353 WX_DEFINE_FLAGS( wxWindowStyle
)
355 wxBEGIN_FLAGS( wxWindowStyle
)
356 // new style border flags, we put them first to
357 // use them for streaming out
359 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
360 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
361 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
362 wxFLAGS_MEMBER(wxBORDER_RAISED
)
363 wxFLAGS_MEMBER(wxBORDER_STATIC
)
364 wxFLAGS_MEMBER(wxBORDER_NONE
)
366 // old style border flags
367 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
368 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
369 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
370 wxFLAGS_MEMBER(wxRAISED_BORDER
)
371 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
372 wxFLAGS_MEMBER(wxBORDER
)
374 // standard window styles
375 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
376 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
377 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
378 wxFLAGS_MEMBER(wxWANTS_CHARS
)
379 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
380 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
381 wxFLAGS_MEMBER(wxVSCROLL
)
382 wxFLAGS_MEMBER(wxHSCROLL
)
384 wxEND_FLAGS( wxWindowStyle
)
386 wxBEGIN_PROPERTIES_TABLE(wxWindow
)
387 wxEVENT_PROPERTY( Close
, wxEVT_CLOSE_WINDOW
, wxCloseEvent
)
388 wxEVENT_PROPERTY( Create
, wxEVT_CREATE
, wxWindowCreateEvent
)
389 wxEVENT_PROPERTY( Destroy
, wxEVT_DESTROY
, wxWindowDestroyEvent
)
390 // Always constructor Properties first
392 wxREADONLY_PROPERTY( Parent
,wxWindow
*, GetParent
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
393 wxPROPERTY( Id
,wxWindowID
, SetId
, GetId
, -1 /*wxID_ANY*/ , 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
394 wxPROPERTY( Position
,wxPoint
, SetPosition
, GetPosition
, wxDefaultPosition
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // pos
395 wxPROPERTY( Size
,wxSize
, SetSize
, GetSize
, wxDefaultSize
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // size
396 wxPROPERTY( WindowStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
398 // Then all relations of the object graph
400 wxREADONLY_PROPERTY_COLLECTION( Children
, wxWindowList
, wxWindowBase
* , GetWindowChildren
, wxPROP_OBJECT_GRAPH
/*flags*/ , wxT("Helpstring") , wxT("group"))
402 // and finally all other properties
404 wxPROPERTY( ExtraStyle
, long , SetExtraStyle
, GetExtraStyle
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // extstyle
405 wxPROPERTY( BackgroundColour
, wxColour
, SetBackgroundColour
, GetBackgroundColour
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // bg
406 wxPROPERTY( ForegroundColour
, wxColour
, SetForegroundColour
, GetForegroundColour
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // fg
407 wxPROPERTY( Enabled
, bool , Enable
, IsEnabled
, wxxVariant((bool)true) , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
408 wxPROPERTY( Shown
, bool , Show
, IsShown
, wxxVariant((bool)true) , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
410 // possible property candidates (not in xrc) or not valid in all subclasses
411 wxPROPERTY( Title
,wxString
, SetTitle
, GetTitle
, wxEmptyString
)
412 wxPROPERTY( Font
, wxFont
, SetFont
, GetWindowFont
, )
413 wxPROPERTY( Label
,wxString
, SetLabel
, GetLabel
, wxEmptyString
)
414 // MaxHeight, Width , MinHeight , Width
415 // TODO switch label to control and title to toplevels
417 wxPROPERTY( ThemeEnabled
, bool , SetThemeEnabled
, GetThemeEnabled
, )
418 //wxPROPERTY( Cursor , wxCursor , SetCursor , GetCursor , )
419 // wxPROPERTY( ToolTip , wxString , SetToolTip , GetToolTipText , )
420 wxPROPERTY( AutoLayout
, bool , SetAutoLayout
, GetAutoLayout
, )
425 wxEND_PROPERTIES_TABLE()
427 wxBEGIN_HANDLERS_TABLE(wxWindow
)
428 wxEND_HANDLERS_TABLE()
430 wxCONSTRUCTOR_DUMMY(wxWindow
)
433 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
)
435 #endif // __WXUNIVERSAL__/__WXMSW__
437 BEGIN_EVENT_TABLE(wxWindowMSW
, wxWindowBase
)
438 EVT_SYS_COLOUR_CHANGED(wxWindowMSW::OnSysColourChanged
)
440 EVT_INIT_DIALOG(wxWindowMSW::OnInitDialog
)
444 // ===========================================================================
446 // ===========================================================================
448 // ---------------------------------------------------------------------------
449 // wxWindow utility functions
450 // ---------------------------------------------------------------------------
452 // Find an item given the MS Windows id
453 wxWindow
*wxWindowMSW::FindItem(long id
) const
456 wxControl
*item
= wxDynamicCastThis(wxControl
);
459 // is it us or one of our "internal" children?
460 if ( item
->GetId() == id
461 #ifndef __WXUNIVERSAL__
462 || (item
->GetSubcontrols().Index(id
) != wxNOT_FOUND
)
463 #endif // __WXUNIVERSAL__
469 #endif // wxUSE_CONTROLS
471 wxWindowList::compatibility_iterator current
= GetChildren().GetFirst();
474 wxWindow
*childWin
= current
->GetData();
476 wxWindow
*wnd
= childWin
->FindItem(id
);
480 current
= current
->GetNext();
486 // Find an item given the MS Windows handle
487 wxWindow
*wxWindowMSW::FindItemByHWND(WXHWND hWnd
, bool controlOnly
) const
489 wxWindowList::compatibility_iterator current
= GetChildren().GetFirst();
492 wxWindow
*parent
= current
->GetData();
494 // Do a recursive search.
495 wxWindow
*wnd
= parent
->FindItemByHWND(hWnd
);
501 || parent
->IsKindOf(CLASSINFO(wxControl
))
502 #endif // wxUSE_CONTROLS
505 wxWindow
*item
= current
->GetData();
506 if ( item
->GetHWND() == hWnd
)
510 if ( item
->ContainsHWND(hWnd
) )
515 current
= current
->GetNext();
520 // Default command handler
521 bool wxWindowMSW::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD
WXUNUSED(id
))
526 // ----------------------------------------------------------------------------
527 // constructors and such
528 // ----------------------------------------------------------------------------
530 void wxWindowMSW::Init()
534 m_mouseInWindow
= false;
535 m_lastKeydownProcessed
= false;
542 #if wxUSE_DEFERRED_SIZING
544 m_pendingPosition
= wxDefaultPosition
;
545 m_pendingSize
= wxDefaultSize
;
546 #endif // wxUSE_DEFERRED_SIZING
549 m_contextMenuEnabled
= false;
554 wxWindowMSW::~wxWindowMSW()
558 #ifndef __WXUNIVERSAL__
559 // VS: make sure there's no wxFrame with last focus set to us:
560 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
562 wxTopLevelWindow
*frame
= wxDynamicCast(win
, wxTopLevelWindow
);
565 if ( frame
->GetLastFocus() == this )
567 frame
->SetLastFocus(NULL
);
570 // apparently sometimes we can end up with our grand parent
571 // pointing to us as well: this is surely a bug in focus handling
572 // code but it's not clear where it happens so for now just try to
573 // fix it here by not breaking out of the loop
577 #endif // __WXUNIVERSAL__
579 // VS: destroy children first and _then_ detach *this from its parent.
580 // If we did it the other way around, children wouldn't be able
581 // find their parent frame (see above).
586 // VZ: test temp removed to understand what really happens here
587 //if (::IsWindow(GetHwnd()))
589 if ( !::DestroyWindow(GetHwnd()) )
591 wxLogLastError(wxT("DestroyWindow"));
595 // remove hWnd <-> wxWindow association
596 wxRemoveHandleAssociation(this);
602 const wxChar
*wxWindowMSW::MSWGetRegisteredClassName()
604 return wxApp::GetRegisteredClassName(wxT("wxWindow"), COLOR_BTNFACE
);
607 // real construction (Init() must have been called before!)
608 bool wxWindowMSW::Create(wxWindow
*parent
,
613 const wxString
& name
)
615 wxCHECK_MSG( parent
, false, wxT("can't create wxWindow without parent") );
617 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
620 parent
->AddChild(this);
623 DWORD msflags
= MSWGetCreateWindowFlags(&exstyle
);
625 #ifdef __WXUNIVERSAL__
626 // no borders, we draw them ourselves
627 exstyle
&= ~(WS_EX_DLGMODALFRAME
|
631 msflags
&= ~WS_BORDER
;
632 #endif // wxUniversal
636 msflags
|= WS_VISIBLE
;
639 if ( !MSWCreate(MSWGetRegisteredClassName(),
640 NULL
, pos
, size
, msflags
, exstyle
) )
648 // ---------------------------------------------------------------------------
650 // ---------------------------------------------------------------------------
652 void wxWindowMSW::SetFocus()
654 HWND hWnd
= GetHwnd();
655 wxCHECK_RET( hWnd
, wxT("can't set focus to invalid window") );
657 #if !defined(__WXWINCE__)
661 if ( !::SetFocus(hWnd
) )
663 // was there really an error?
664 DWORD dwRes
= ::GetLastError();
667 HWND hwndFocus
= ::GetFocus();
668 if ( hwndFocus
!= hWnd
)
670 wxLogApiError(wxT("SetFocus"), dwRes
);
676 void wxWindowMSW::SetFocusFromKbd()
678 // when the focus is given to the control with DLGC_HASSETSEL style from
679 // keyboard its contents should be entirely selected: this is what
680 // ::IsDialogMessage() does and so we should do it as well to provide the
681 // same LNF as the native programs
682 if ( ::SendMessage(GetHwnd(), WM_GETDLGCODE
, 0, 0) & DLGC_HASSETSEL
)
684 ::SendMessage(GetHwnd(), EM_SETSEL
, 0, -1);
687 // do this after (maybe) setting the selection as like this when
688 // wxEVT_SET_FOCUS handler is called, the selection would have been already
689 // set correctly -- this may be important
690 wxWindowBase::SetFocusFromKbd();
693 // Get the window with the focus
694 wxWindow
*wxWindowBase::DoFindFocus()
696 HWND hWnd
= ::GetFocus();
699 return wxGetWindowFromHWND((WXHWND
)hWnd
);
705 void wxWindowMSW::DoEnable( bool enable
)
707 MSWEnableHWND(GetHwnd(), enable
);
710 bool wxWindowMSW::MSWEnableHWND(WXHWND hWnd
, bool enable
)
715 // If disabling focused control, we move focus to the next one, as if the
716 // user pressed Tab. That's because we can't keep focus on a disabled
717 // control, Tab-navigation would stop working then.
718 if ( !enable
&& ::GetFocus() == hWnd
)
721 return ::EnableWindow(hWnd
, (BOOL
)enable
) != 0;
724 bool wxWindowMSW::Show(bool show
)
726 if ( !wxWindowBase::Show(show
) )
729 HWND hWnd
= GetHwnd();
731 // we could be called before the underlying window is created (this is
732 // actually useful to prevent it from being initially shown), e.g.
734 // wxFoo *foo = new wxFoo;
736 // foo->Create(parent, ...);
738 // should work without errors
741 ::ShowWindow(hWnd
, show
? SW_SHOW
: SW_HIDE
);
746 // DoFreeze/DoThaw don't do anything if the window is not shown, so
747 // we have to call them from here now
758 wxWindowMSW::MSWShowWithEffect(bool show
,
762 if ( effect
== wxSHOW_EFFECT_NONE
)
765 if ( !wxWindowBase::Show(show
) )
768 typedef BOOL (WINAPI
*AnimateWindow_t
)(HWND
, DWORD
, DWORD
);
770 static AnimateWindow_t s_pfnAnimateWindow
= NULL
;
771 static bool s_initDone
= false;
774 wxDynamicLibrary
dllUser32(wxT("user32.dll"), wxDL_VERBATIM
| wxDL_QUIET
);
775 wxDL_INIT_FUNC(s_pfn
, AnimateWindow
, dllUser32
);
779 // notice that it's ok to unload user32.dll here as it won't be really
780 // unloaded, being still in use because we link to it statically too
783 if ( !s_pfnAnimateWindow
)
786 // Show() has a side effect of sending a WM_SIZE to the window, which helps
787 // ensuring that it's laid out correctly, but AnimateWindow() doesn't do
788 // this so send the event ourselves
791 // prepare to use AnimateWindow()
794 timeout
= 200; // this is the default animation timeout, per MSDN
796 DWORD dwFlags
= show
? 0 : AW_HIDE
;
800 case wxSHOW_EFFECT_ROLL_TO_LEFT
:
801 dwFlags
|= AW_HOR_NEGATIVE
;
804 case wxSHOW_EFFECT_ROLL_TO_RIGHT
:
805 dwFlags
|= AW_HOR_POSITIVE
;
808 case wxSHOW_EFFECT_ROLL_TO_TOP
:
809 dwFlags
|= AW_VER_NEGATIVE
;
812 case wxSHOW_EFFECT_ROLL_TO_BOTTOM
:
813 dwFlags
|= AW_VER_POSITIVE
;
816 case wxSHOW_EFFECT_SLIDE_TO_LEFT
:
817 dwFlags
|= AW_SLIDE
| AW_HOR_NEGATIVE
;
820 case wxSHOW_EFFECT_SLIDE_TO_RIGHT
:
821 dwFlags
|= AW_SLIDE
| AW_HOR_POSITIVE
;
824 case wxSHOW_EFFECT_SLIDE_TO_TOP
:
825 dwFlags
|= AW_SLIDE
| AW_VER_NEGATIVE
;
828 case wxSHOW_EFFECT_SLIDE_TO_BOTTOM
:
829 dwFlags
|= AW_SLIDE
| AW_VER_POSITIVE
;
832 case wxSHOW_EFFECT_BLEND
:
836 case wxSHOW_EFFECT_EXPAND
:
837 dwFlags
|= AW_CENTER
;
841 case wxSHOW_EFFECT_MAX
:
842 wxFAIL_MSG( wxT("invalid window show effect") );
846 wxFAIL_MSG( wxT("unknown window show effect") );
850 if ( !(*s_pfnAnimateWindow
)(GetHwnd(), timeout
, dwFlags
) )
852 wxLogLastError(wxT("AnimateWindow"));
860 // Raise the window to the top of the Z order
861 void wxWindowMSW::Raise()
863 wxBringWindowToTop(GetHwnd());
866 // Lower the window to the bottom of the Z order
867 void wxWindowMSW::Lower()
869 ::SetWindowPos(GetHwnd(), HWND_BOTTOM
, 0, 0, 0, 0,
870 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
873 void wxWindowMSW::DoCaptureMouse()
875 HWND hWnd
= GetHwnd();
882 void wxWindowMSW::DoReleaseMouse()
884 if ( !::ReleaseCapture() )
886 wxLogLastError(wxT("ReleaseCapture"));
890 /* static */ wxWindow
*wxWindowBase::GetCapture()
892 HWND hwnd
= ::GetCapture();
893 return hwnd
? wxFindWinFromHandle(hwnd
) : NULL
;
896 bool wxWindowMSW::SetFont(const wxFont
& font
)
898 if ( !wxWindowBase::SetFont(font
) )
904 HWND hWnd
= GetHwnd();
907 // note the use of GetFont() instead of m_font: our own font could have
908 // just been reset and in this case we need to change the font used by
909 // the native window to the default for this class, i.e. exactly what
911 WXHANDLE hFont
= GetFont().GetResourceHandle();
913 wxASSERT_MSG( hFont
, wxT("should have valid font") );
915 ::SendMessage(hWnd
, WM_SETFONT
, (WPARAM
)hFont
, MAKELPARAM(TRUE
, 0));
920 bool wxWindowMSW::SetCursor(const wxCursor
& cursor
)
922 if ( !wxWindowBase::SetCursor(cursor
) )
928 // don't "overwrite" busy cursor
929 if ( m_cursor
.Ok() && !wxIsBusy() )
931 // normally we should change the cursor only if it's over this window
932 // but we should do it always if we capture the mouse currently
933 bool set
= HasCapture();
936 HWND hWnd
= GetHwnd();
940 ::GetCursorPosWinCE(&point
);
942 ::GetCursorPos(&point
);
945 RECT rect
= wxGetWindowRect(hWnd
);
947 set
= ::PtInRect(&rect
, point
) != 0;
952 ::SetCursor(GetHcursorOf(m_cursor
));
954 //else: will be set later when the mouse enters this window
960 void wxWindowMSW::WarpPointer(int x
, int y
)
962 ClientToScreen(&x
, &y
);
964 if ( !::SetCursorPos(x
, y
) )
966 wxLogLastError(wxT("SetCursorPos"));
970 void wxWindowMSW::MSWUpdateUIState(int action
, int state
)
972 // WM_CHANGEUISTATE only appeared in Windows 2000 so it can do us no good
973 // to use it on older systems -- and could possibly do some harm
974 static int s_needToUpdate
= -1;
975 if ( s_needToUpdate
== -1 )
978 s_needToUpdate
= wxGetOsVersion(&verMaj
, &verMin
) == wxOS_WINDOWS_NT
&&
982 if ( s_needToUpdate
)
984 // we send WM_CHANGEUISTATE so if nothing needs changing then the system
985 // won't send WM_UPDATEUISTATE
986 ::SendMessage(GetHwnd(), WM_CHANGEUISTATE
, MAKEWPARAM(action
, state
), 0);
990 // ---------------------------------------------------------------------------
992 // ---------------------------------------------------------------------------
997 inline int GetScrollPosition(HWND hWnd
, int wOrient
)
999 #ifdef __WXMICROWIN__
1000 return ::GetScrollPosWX(hWnd
, wOrient
);
1002 WinStruct
<SCROLLINFO
> scrollInfo
;
1003 scrollInfo
.cbSize
= sizeof(SCROLLINFO
);
1004 scrollInfo
.fMask
= SIF_POS
;
1005 ::GetScrollInfo(hWnd
, wOrient
, &scrollInfo
);
1007 return scrollInfo
.nPos
;
1012 inline UINT
WXOrientToSB(int orient
)
1014 return orient
== wxHORIZONTAL
? SB_HORZ
: SB_VERT
;
1017 } // anonymous namespace
1019 int wxWindowMSW::GetScrollPos(int orient
) const
1021 HWND hWnd
= GetHwnd();
1022 wxCHECK_MSG( hWnd
, 0, wxT("no HWND in GetScrollPos") );
1024 return GetScrollPosition(hWnd
, WXOrientToSB(orient
));
1027 // This now returns the whole range, not just the number
1028 // of positions that we can scroll.
1029 int wxWindowMSW::GetScrollRange(int orient
) const
1032 HWND hWnd
= GetHwnd();
1035 WinStruct
<SCROLLINFO
> scrollInfo
;
1036 scrollInfo
.fMask
= SIF_RANGE
;
1037 if ( !::GetScrollInfo(hWnd
, WXOrientToSB(orient
), &scrollInfo
) )
1039 // Most of the time this is not really an error, since the return
1040 // value can also be zero when there is no scrollbar yet.
1041 // wxLogLastError(wxT("GetScrollInfo"));
1043 maxPos
= scrollInfo
.nMax
;
1045 // undo "range - 1" done in SetScrollbar()
1049 int wxWindowMSW::GetScrollThumb(int orient
) const
1051 return orient
== wxHORIZONTAL
? m_xThumbSize
: m_yThumbSize
;
1054 void wxWindowMSW::SetScrollPos(int orient
, int pos
, bool refresh
)
1056 HWND hWnd
= GetHwnd();
1057 wxCHECK_RET( hWnd
, wxT("SetScrollPos: no HWND") );
1059 WinStruct
<SCROLLINFO
> info
;
1063 info
.fMask
= SIF_POS
;
1064 if ( HasFlag(wxALWAYS_SHOW_SB
) )
1066 // disable scrollbar instead of removing it then
1067 info
.fMask
|= SIF_DISABLENOSCROLL
;
1070 ::SetScrollInfo(hWnd
, WXOrientToSB(orient
), &info
, refresh
);
1073 // New function that will replace some of the above.
1074 void wxWindowMSW::SetScrollbar(int orient
,
1080 // We have to set the variables here to make them valid in events
1081 // triggered by ::SetScrollInfo()
1082 *(orient
== wxHORIZONTAL
? &m_xThumbSize
: &m_yThumbSize
) = pageSize
;
1084 HWND hwnd
= GetHwnd();
1088 WinStruct
<SCROLLINFO
> info
;
1091 info
.nPage
= pageSize
;
1092 info
.nMin
= 0; // range is nMax - nMin + 1
1093 info
.nMax
= range
- 1; // as both nMax and nMax are inclusive
1096 // We normally also reenable scrollbar in case it had been previously
1097 // disabled by specifying SIF_DISABLENOSCROLL below but we should only
1098 // do this if it has valid range, otherwise it would be enabled but not
1100 if ( range
>= pageSize
)
1102 ::EnableScrollBar(hwnd
, WXOrientToSB(orient
), ESB_ENABLE_BOTH
);
1105 //else: leave all the fields to be 0
1107 info
.fMask
= SIF_RANGE
| SIF_PAGE
| SIF_POS
;
1108 if ( HasFlag(wxALWAYS_SHOW_SB
) || range
== -1 )
1110 // disable scrollbar instead of removing it then
1111 info
.fMask
|= SIF_DISABLENOSCROLL
;
1114 ::SetScrollInfo(hwnd
, WXOrientToSB(orient
), &info
, refresh
);
1117 void wxWindowMSW::ScrollWindow(int dx
, int dy
, const wxRect
*prect
)
1123 wxCopyRectToRECT(*prect
, rect
);
1133 // FIXME: is this the exact equivalent of the line below?
1134 ::ScrollWindowEx(GetHwnd(), dx
, dy
, pr
, pr
, 0, 0, SW_SCROLLCHILDREN
|SW_ERASE
|SW_INVALIDATE
);
1136 ::ScrollWindow(GetHwnd(), dx
, dy
, pr
, pr
);
1140 static bool ScrollVertically(HWND hwnd
, int kind
, int count
)
1142 int posStart
= GetScrollPosition(hwnd
, SB_VERT
);
1145 for ( int n
= 0; n
< count
; n
++ )
1147 ::SendMessage(hwnd
, WM_VSCROLL
, kind
, 0);
1149 int posNew
= GetScrollPosition(hwnd
, SB_VERT
);
1150 if ( posNew
== pos
)
1152 // don't bother to continue, we're already at top/bottom
1159 return pos
!= posStart
;
1162 bool wxWindowMSW::ScrollLines(int lines
)
1164 bool down
= lines
> 0;
1166 return ScrollVertically(GetHwnd(),
1167 down
? SB_LINEDOWN
: SB_LINEUP
,
1168 down
? lines
: -lines
);
1171 bool wxWindowMSW::ScrollPages(int pages
)
1173 bool down
= pages
> 0;
1175 return ScrollVertically(GetHwnd(),
1176 down
? SB_PAGEDOWN
: SB_PAGEUP
,
1177 down
? pages
: -pages
);
1180 // ----------------------------------------------------------------------------
1182 // ----------------------------------------------------------------------------
1184 void wxWindowMSW::SetLayoutDirection(wxLayoutDirection dir
)
1189 wxCHECK_RET( GetHwnd(),
1190 wxT("layout direction must be set after window creation") );
1192 LONG styleOld
= wxGetWindowExStyle(this);
1194 LONG styleNew
= styleOld
;
1197 case wxLayout_LeftToRight
:
1198 styleNew
&= ~WS_EX_LAYOUTRTL
;
1201 case wxLayout_RightToLeft
:
1202 styleNew
|= WS_EX_LAYOUTRTL
;
1206 wxFAIL_MSG(wxT("unsupported layout direction"));
1210 if ( styleNew
!= styleOld
)
1212 wxSetWindowExStyle(this, styleNew
);
1217 wxLayoutDirection
wxWindowMSW::GetLayoutDirection() const
1220 return wxLayout_Default
;
1222 wxCHECK_MSG( GetHwnd(), wxLayout_Default
, wxT("invalid window") );
1224 return wxHasWindowExStyle(this, WS_EX_LAYOUTRTL
) ? wxLayout_RightToLeft
1225 : wxLayout_LeftToRight
;
1230 wxWindowMSW::AdjustForLayoutDirection(wxCoord x
,
1231 wxCoord
WXUNUSED(width
),
1232 wxCoord
WXUNUSED(widthTotal
)) const
1234 // Win32 mirrors the coordinates of RTL windows automatically, so don't
1235 // redo it ourselves
1239 // ---------------------------------------------------------------------------
1241 // ---------------------------------------------------------------------------
1243 void wxWindowMSW::SubclassWin(WXHWND hWnd
)
1245 wxASSERT_MSG( !m_oldWndProc
, wxT("subclassing window twice?") );
1247 HWND hwnd
= (HWND
)hWnd
;
1248 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in SubclassWin") );
1252 wxAssociateWinWithHandle(hwnd
, this);
1254 m_oldWndProc
= (WXFARPROC
)wxGetWindowProc((HWND
)hWnd
);
1256 // we don't need to subclass the window of our own class (in the Windows
1257 // sense of the word)
1258 if ( !wxCheckWindowWndProc(hWnd
, (WXFARPROC
)wxWndProc
) )
1260 wxSetWindowProc(hwnd
, wxWndProc
);
1264 // don't bother restoring it either: this also makes it easy to
1265 // implement IsOfStandardClass() method which returns true for the
1266 // standard controls and false for the wxWidgets own windows as it can
1267 // simply check m_oldWndProc
1268 m_oldWndProc
= NULL
;
1271 // we're officially created now, send the event
1272 wxWindowCreateEvent
event((wxWindow
*)this);
1273 (void)HandleWindowEvent(event
);
1276 void wxWindowMSW::UnsubclassWin()
1278 wxRemoveHandleAssociation(this);
1280 // Restore old Window proc
1281 HWND hwnd
= GetHwnd();
1286 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in UnsubclassWin") );
1290 if ( !wxCheckWindowWndProc((WXHWND
)hwnd
, m_oldWndProc
) )
1292 wxSetWindowProc(hwnd
, (WNDPROC
)m_oldWndProc
);
1295 m_oldWndProc
= NULL
;
1300 void wxWindowMSW::AssociateHandle(WXWidget handle
)
1304 if ( !::DestroyWindow(GetHwnd()) )
1306 wxLogLastError(wxT("DestroyWindow"));
1310 WXHWND wxhwnd
= (WXHWND
)handle
;
1312 // this also calls SetHWND(wxhwnd)
1313 SubclassWin(wxhwnd
);
1316 void wxWindowMSW::DissociateHandle()
1318 // this also calls SetHWND(0) for us
1323 bool wxCheckWindowWndProc(WXHWND hWnd
,
1324 WXFARPROC
WXUNUSED(wndProc
))
1326 const wxString
str(wxGetWindowClass(hWnd
));
1328 // TODO: get rid of wxTLWHiddenParent special case (currently it's not
1329 // registered by wxApp but using ad hoc code in msw/toplevel.cpp);
1330 // there is also a hidden window class used by sockets &c
1331 return wxApp::IsRegisteredClassName(str
) || str
== wxT("wxTLWHiddenParent");
1334 // ----------------------------------------------------------------------------
1336 // ----------------------------------------------------------------------------
1338 void wxWindowMSW::SetWindowStyleFlag(long flags
)
1340 long flagsOld
= GetWindowStyleFlag();
1341 if ( flags
== flagsOld
)
1344 // update the internal variable
1345 wxWindowBase::SetWindowStyleFlag(flags
);
1347 // and the real window flags
1348 MSWUpdateStyle(flagsOld
, GetExtraStyle());
1351 void wxWindowMSW::SetExtraStyle(long exflags
)
1353 long exflagsOld
= GetExtraStyle();
1354 if ( exflags
== exflagsOld
)
1357 // update the internal variable
1358 wxWindowBase::SetExtraStyle(exflags
);
1360 // and the real window flags
1361 MSWUpdateStyle(GetWindowStyleFlag(), exflagsOld
);
1364 void wxWindowMSW::MSWUpdateStyle(long flagsOld
, long exflagsOld
)
1366 // now update the Windows style as well if needed - and if the window had
1367 // been already created
1371 // we may need to call SetWindowPos() when we change some styles
1372 bool callSWP
= false;
1375 long style
= MSWGetStyle(GetWindowStyleFlag(), &exstyle
);
1377 // this is quite a horrible hack but we need it because MSWGetStyle()
1378 // doesn't take exflags as parameter but uses GetExtraStyle() internally
1379 // and so we have to modify the window exflags temporarily to get the
1380 // correct exstyleOld
1381 long exflagsNew
= GetExtraStyle();
1382 wxWindowBase::SetExtraStyle(exflagsOld
);
1385 long styleOld
= MSWGetStyle(flagsOld
, &exstyleOld
);
1387 wxWindowBase::SetExtraStyle(exflagsNew
);
1390 if ( style
!= styleOld
)
1392 // some flags (e.g. WS_VISIBLE or WS_DISABLED) should not be changed by
1393 // this function so instead of simply setting the style to the new
1394 // value we clear the bits which were set in styleOld but are set in
1395 // the new one and set the ones which were not set before
1396 long styleReal
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1397 styleReal
&= ~styleOld
;
1400 ::SetWindowLong(GetHwnd(), GWL_STYLE
, styleReal
);
1402 // we need to call SetWindowPos() if any of the styles affecting the
1403 // frame appearance have changed
1404 callSWP
= ((styleOld
^ style
) & (WS_BORDER
|
1413 // and the extended style
1414 long exstyleReal
= wxGetWindowExStyle(this);
1416 if ( exstyle
!= exstyleOld
)
1418 exstyleReal
&= ~exstyleOld
;
1419 exstyleReal
|= exstyle
;
1421 wxSetWindowExStyle(this, exstyleReal
);
1423 // ex style changes don't take effect without calling SetWindowPos
1429 // we must call SetWindowPos() to flush the cached extended style and
1430 // also to make the change to wxSTAY_ON_TOP style take effect: just
1431 // setting the style simply doesn't work
1432 if ( !::SetWindowPos(GetHwnd(),
1433 exstyleReal
& WS_EX_TOPMOST
? HWND_TOPMOST
1436 SWP_NOMOVE
| SWP_NOSIZE
| SWP_FRAMECHANGED
) )
1438 wxLogLastError(wxT("SetWindowPos"));
1443 wxBorder
wxWindowMSW::GetDefaultBorderForControl() const
1445 return wxBORDER_THEME
;
1448 wxBorder
wxWindowMSW::GetDefaultBorder() const
1450 return wxWindowBase::GetDefaultBorder();
1453 // Translate wxBORDER_THEME (and other border styles if necessary) to the value
1454 // that makes most sense for this Windows environment
1455 wxBorder
wxWindowMSW::TranslateBorder(wxBorder border
) const
1457 #if defined(__POCKETPC__) || defined(__SMARTPHONE__)
1458 if (border
== wxBORDER_THEME
|| border
== wxBORDER_SUNKEN
|| border
== wxBORDER_SIMPLE
)
1459 return wxBORDER_SIMPLE
;
1461 return wxBORDER_NONE
;
1464 if (border
== wxBORDER_THEME
)
1466 if (CanApplyThemeBorder())
1468 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
1470 return wxBORDER_THEME
;
1472 return wxBORDER_SUNKEN
;
1480 WXDWORD
wxWindowMSW::MSWGetStyle(long flags
, WXDWORD
*exstyle
) const
1482 // translate common wxWidgets styles to Windows ones
1484 // most of windows are child ones, those which are not (such as
1485 // wxTopLevelWindow) should remove WS_CHILD in their MSWGetStyle()
1486 WXDWORD style
= WS_CHILD
;
1488 // using this flag results in very significant reduction in flicker,
1489 // especially with controls inside the static boxes (as the interior of the
1490 // box is not redrawn twice), but sometimes results in redraw problems, so
1491 // optionally allow the old code to continue to use it provided a special
1492 // system option is turned on
1493 if ( !wxSystemOptions::GetOptionInt(wxT("msw.window.no-clip-children"))
1494 || (flags
& wxCLIP_CHILDREN
) )
1495 style
|= WS_CLIPCHILDREN
;
1497 // it doesn't seem useful to use WS_CLIPSIBLINGS here as we officially
1498 // don't support overlapping windows and it only makes sense for them and,
1499 // presumably, gives the system some extra work (to manage more clipping
1500 // regions), so avoid it alltogether
1503 if ( flags
& wxVSCROLL
)
1504 style
|= WS_VSCROLL
;
1506 if ( flags
& wxHSCROLL
)
1507 style
|= WS_HSCROLL
;
1509 const wxBorder border
= TranslateBorder(GetBorder(flags
));
1511 // After translation, border is now optimized for the specific version of Windows
1512 // and theme engine presence.
1514 // WS_BORDER is only required for wxBORDER_SIMPLE
1515 if ( border
== wxBORDER_SIMPLE
)
1518 // now deal with ext style if the caller wants it
1524 if ( flags
& wxTRANSPARENT_WINDOW
)
1525 *exstyle
|= WS_EX_TRANSPARENT
;
1531 case wxBORDER_DEFAULT
:
1532 wxFAIL_MSG( wxT("unknown border style") );
1536 case wxBORDER_SIMPLE
:
1537 case wxBORDER_THEME
:
1540 case wxBORDER_STATIC
:
1541 *exstyle
|= WS_EX_STATICEDGE
;
1544 case wxBORDER_RAISED
:
1545 *exstyle
|= WS_EX_DLGMODALFRAME
;
1548 case wxBORDER_SUNKEN
:
1549 *exstyle
|= WS_EX_CLIENTEDGE
;
1550 style
&= ~WS_BORDER
;
1553 // case wxBORDER_DOUBLE:
1554 // *exstyle |= WS_EX_DLGMODALFRAME;
1558 // wxUniv doesn't use Windows dialog navigation functions at all
1559 #if !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__)
1560 // to make the dialog navigation work with the nested panels we must
1561 // use this style (top level windows such as dialogs don't need it)
1562 if ( (flags
& wxTAB_TRAVERSAL
) && !IsTopLevel() )
1564 *exstyle
|= WS_EX_CONTROLPARENT
;
1566 #endif // __WXUNIVERSAL__
1572 // Setup background and foreground colours correctly
1573 void wxWindowMSW::SetupColours()
1576 SetBackgroundColour(GetParent()->GetBackgroundColour());
1579 bool wxWindowMSW::IsMouseInWindow() const
1581 // get the mouse position
1584 ::GetCursorPosWinCE(&pt
);
1586 ::GetCursorPos(&pt
);
1589 // find the window which currently has the cursor and go up the window
1590 // chain until we find this window - or exhaust it
1591 HWND hwnd
= ::WindowFromPoint(pt
);
1592 while ( hwnd
&& (hwnd
!= GetHwnd()) )
1593 hwnd
= ::GetParent(hwnd
);
1595 return hwnd
!= NULL
;
1598 void wxWindowMSW::OnInternalIdle()
1600 #ifndef HAVE_TRACKMOUSEEVENT
1601 // Check if we need to send a LEAVE event
1602 if ( m_mouseInWindow
)
1604 // note that we should generate the leave event whether the window has
1605 // or doesn't have mouse capture
1606 if ( !IsMouseInWindow() )
1608 GenerateMouseLeave();
1611 #endif // !HAVE_TRACKMOUSEEVENT
1613 if (wxUpdateUIEvent::CanUpdate(this) && IsShownOnScreen())
1614 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1617 // Set this window to be the child of 'parent'.
1618 bool wxWindowMSW::Reparent(wxWindowBase
*parent
)
1620 if ( !wxWindowBase::Reparent(parent
) )
1623 HWND hWndChild
= GetHwnd();
1624 HWND hWndParent
= GetParent() ? GetWinHwnd(GetParent()) : (HWND
)0;
1626 ::SetParent(hWndChild
, hWndParent
);
1629 if ( wxHasWindowExStyle(this, WS_EX_CONTROLPARENT
) )
1631 EnsureParentHasControlParentStyle(GetParent());
1633 #endif // !__WXWINCE__
1638 static inline void SendSetRedraw(HWND hwnd
, bool on
)
1640 #ifndef __WXMICROWIN__
1641 ::SendMessage(hwnd
, WM_SETREDRAW
, (WPARAM
)on
, 0);
1645 void wxWindowMSW::DoFreeze()
1648 return; // no point in freezing hidden window
1650 SendSetRedraw(GetHwnd(), false);
1653 void wxWindowMSW::DoThaw()
1656 return; // hidden windows aren't frozen by DoFreeze
1658 SendSetRedraw(GetHwnd(), true);
1660 // we need to refresh everything or otherwise the invalidated area
1661 // is not going to be repainted
1665 void wxWindowMSW::Refresh(bool eraseBack
, const wxRect
*rect
)
1667 HWND hWnd
= GetHwnd();
1674 wxCopyRectToRECT(*rect
, mswRect
);
1682 // RedrawWindow not available on SmartPhone or eVC++ 3
1683 #if !defined(__SMARTPHONE__) && !(defined(_WIN32_WCE) && _WIN32_WCE < 400)
1684 UINT flags
= RDW_INVALIDATE
| RDW_ALLCHILDREN
;
1688 ::RedrawWindow(hWnd
, pRect
, NULL
, flags
);
1690 ::InvalidateRect(hWnd
, pRect
, eraseBack
);
1695 void wxWindowMSW::Update()
1697 if ( !::UpdateWindow(GetHwnd()) )
1699 wxLogLastError(wxT("UpdateWindow"));
1702 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1703 // just calling UpdateWindow() is not enough, what we did in our WM_PAINT
1704 // handler needs to be really drawn right now
1709 // ---------------------------------------------------------------------------
1711 // ---------------------------------------------------------------------------
1713 #if wxUSE_DRAG_AND_DROP || !defined(__WXWINCE__)
1717 // we need to lower the sibling static boxes so controls contained within can be
1719 static void AdjustStaticBoxZOrder(wxWindow
*parent
)
1721 // no sibling static boxes if we have no parent (ie TLW)
1725 for ( wxWindowList::compatibility_iterator node
= parent
->GetChildren().GetFirst();
1727 node
= node
->GetNext() )
1729 wxStaticBox
*statbox
= wxDynamicCast(node
->GetData(), wxStaticBox
);
1732 ::SetWindowPos(GetHwndOf(statbox
), HWND_BOTTOM
, 0, 0, 0, 0,
1733 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
1738 #else // !wxUSE_STATBOX
1740 static inline void AdjustStaticBoxZOrder(wxWindow
* WXUNUSED(parent
))
1744 #endif // wxUSE_STATBOX/!wxUSE_STATBOX
1746 #endif // drag and drop is used
1748 #if wxUSE_DRAG_AND_DROP
1749 void wxWindowMSW::SetDropTarget(wxDropTarget
*pDropTarget
)
1751 if ( m_dropTarget
!= 0 ) {
1752 m_dropTarget
->Revoke(m_hWnd
);
1753 delete m_dropTarget
;
1756 m_dropTarget
= pDropTarget
;
1757 if ( m_dropTarget
!= 0 )
1759 AdjustStaticBoxZOrder(GetParent());
1760 m_dropTarget
->Register(m_hWnd
);
1763 #endif // wxUSE_DRAG_AND_DROP
1765 // old-style file manager drag&drop support: we retain the old-style
1766 // DragAcceptFiles in parallel with SetDropTarget.
1767 void wxWindowMSW::DragAcceptFiles(bool WXUNUSED_IN_WINCE(accept
))
1770 HWND hWnd
= GetHwnd();
1773 AdjustStaticBoxZOrder(GetParent());
1774 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
1779 // ----------------------------------------------------------------------------
1781 // ----------------------------------------------------------------------------
1785 void wxWindowMSW::DoSetToolTip(wxToolTip
*tooltip
)
1787 wxWindowBase::DoSetToolTip(tooltip
);
1790 m_tooltip
->SetWindow((wxWindow
*)this);
1793 #endif // wxUSE_TOOLTIPS
1795 // ---------------------------------------------------------------------------
1796 // moving and resizing
1797 // ---------------------------------------------------------------------------
1799 bool wxWindowMSW::IsSizeDeferred() const
1801 #if wxUSE_DEFERRED_SIZING
1802 if ( m_pendingPosition
!= wxDefaultPosition
||
1803 m_pendingSize
!= wxDefaultSize
)
1805 #endif // wxUSE_DEFERRED_SIZING
1811 void wxWindowMSW::DoGetSize(int *x
, int *y
) const
1813 #if wxUSE_DEFERRED_SIZING
1814 // if SetSize() had been called at wx level but not realized at Windows
1815 // level yet (i.e. EndDeferWindowPos() not called), we still should return
1816 // the new and not the old position to the other wx code
1817 if ( m_pendingSize
!= wxDefaultSize
)
1820 *x
= m_pendingSize
.x
;
1822 *y
= m_pendingSize
.y
;
1824 else // use current size
1825 #endif // wxUSE_DEFERRED_SIZING
1827 RECT rect
= wxGetWindowRect(GetHwnd());
1830 *x
= rect
.right
- rect
.left
;
1832 *y
= rect
.bottom
- rect
.top
;
1836 // Get size *available for subwindows* i.e. excluding menu bar etc.
1837 void wxWindowMSW::DoGetClientSize(int *x
, int *y
) const
1839 #if wxUSE_DEFERRED_SIZING
1840 if ( m_pendingSize
!= wxDefaultSize
)
1842 // we need to calculate the client size corresponding to pending size
1844 // FIXME: Unfortunately this doesn't work correctly for the maximized
1845 // top level windows, the returned values are too small (e.g.
1846 // under Windows 7 on a 1600*1200 screen with task bar on the
1847 // right the pending size for a maximized window is 1538*1200
1848 // and WM_NCCALCSIZE returns 1528*1172 even though the correct
1849 // client size of such window is 1538*1182). No idea how to fix
1850 // it though, setting WS_MAXIMIZE in GWL_STYLE before calling
1851 // WM_NCCALCSIZE doesn't help and AdjustWindowRectEx() doesn't
1852 // work in this direction neither. So we just have to live with
1853 // the slightly wrong results and relayout the window when it
1854 // gets finally shown in its maximized state (see #11762).
1856 rect
.left
= m_pendingPosition
.x
;
1857 rect
.top
= m_pendingPosition
.y
;
1858 rect
.right
= rect
.left
+ m_pendingSize
.x
;
1859 rect
.bottom
= rect
.top
+ m_pendingSize
.y
;
1861 ::SendMessage(GetHwnd(), WM_NCCALCSIZE
, FALSE
, (LPARAM
)&rect
);
1864 *x
= rect
.right
- rect
.left
;
1866 *y
= rect
.bottom
- rect
.top
;
1869 #endif // wxUSE_DEFERRED_SIZING
1871 RECT rect
= wxGetClientRect(GetHwnd());
1880 void wxWindowMSW::DoGetPosition(int *x
, int *y
) const
1882 wxWindow
* const parent
= GetParent();
1885 #if wxUSE_DEFERRED_SIZING
1886 if ( m_pendingPosition
!= wxDefaultPosition
)
1888 pos
= m_pendingPosition
;
1890 else // use current position
1891 #endif // wxUSE_DEFERRED_SIZING
1893 RECT rect
= wxGetWindowRect(GetHwnd());
1896 point
.x
= rect
.left
;
1899 // we do the adjustments with respect to the parent only for the "real"
1900 // children, not for the dialogs/frames
1901 if ( !IsTopLevel() )
1903 if ( wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
)
1905 // In RTL mode, we want the logical left x-coordinate,
1906 // which would be the physical right x-coordinate.
1907 point
.x
= rect
.right
;
1910 // Since we now have the absolute screen coords, if there's a
1911 // parent we must subtract its top left corner
1914 ::ScreenToClient(GetHwndOf(parent
), &point
);
1922 // we also must adjust by the client area offset: a control which is just
1923 // under a toolbar could be at (0, 30) in Windows but at (0, 0) in wx
1924 if ( parent
&& !IsTopLevel() )
1926 const wxPoint
pt(parent
->GetClientAreaOrigin());
1937 void wxWindowMSW::DoScreenToClient(int *x
, int *y
) const
1945 ::ScreenToClient(GetHwnd(), &pt
);
1953 void wxWindowMSW::DoClientToScreen(int *x
, int *y
) const
1961 ::ClientToScreen(GetHwnd(), &pt
);
1970 wxWindowMSW::DoMoveSibling(WXHWND hwnd
, int x
, int y
, int width
, int height
)
1972 #if wxUSE_DEFERRED_SIZING
1973 // if our parent had prepared a defer window handle for us, use it (unless
1974 // we are a top level window)
1975 wxWindowMSW
* const parent
= IsTopLevel() ? NULL
: GetParent();
1977 HDWP hdwp
= parent
? (HDWP
)parent
->m_hDWP
: NULL
;
1980 hdwp
= ::DeferWindowPos(hdwp
, (HWND
)hwnd
, NULL
, x
, y
, width
, height
,
1981 SWP_NOZORDER
| SWP_NOOWNERZORDER
| SWP_NOACTIVATE
);
1984 wxLogLastError(wxT("DeferWindowPos"));
1990 // hdwp must be updated as it may have been changed
1991 parent
->m_hDWP
= (WXHANDLE
)hdwp
;
1996 // did deferred move, remember new coordinates of the window as they're
1997 // different from what Windows would return for it
2001 // otherwise (or if deferring failed) move the window in place immediately
2002 #endif // wxUSE_DEFERRED_SIZING
2003 if ( !::MoveWindow((HWND
)hwnd
, x
, y
, width
, height
, IsShown()) )
2005 wxLogLastError(wxT("MoveWindow"));
2008 // if wxUSE_DEFERRED_SIZING, indicates that we didn't use deferred move,
2009 // ignored otherwise
2013 void wxWindowMSW::DoMoveWindow(int x
, int y
, int width
, int height
)
2015 // TODO: is this consistent with other platforms?
2016 // Still, negative width or height shouldn't be allowed
2022 if ( DoMoveSibling(m_hWnd
, x
, y
, width
, height
) )
2024 #if wxUSE_DEFERRED_SIZING
2025 m_pendingPosition
= wxPoint(x
, y
);
2026 m_pendingSize
= wxSize(width
, height
);
2028 else // window was moved immediately, without deferring it
2030 m_pendingPosition
= wxDefaultPosition
;
2031 m_pendingSize
= wxDefaultSize
;
2032 #endif // wxUSE_DEFERRED_SIZING
2036 // set the size of the window: if the dimensions are positive, just use them,
2037 // but if any of them is equal to -1, it means that we must find the value for
2038 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
2039 // which case -1 is a valid value for x and y)
2041 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
2042 // the width/height to best suit our contents, otherwise we reuse the current
2044 void wxWindowMSW::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
2046 // get the current size and position...
2047 int currentX
, currentY
;
2048 int currentW
, currentH
;
2050 GetPosition(¤tX
, ¤tY
);
2051 GetSize(¤tW
, ¤tH
);
2053 // ... and don't do anything (avoiding flicker) if it's already ok unless
2054 // we're forced to resize the window
2055 if ( x
== currentX
&& y
== currentY
&&
2056 width
== currentW
&& height
== currentH
&&
2057 !(sizeFlags
& wxSIZE_FORCE
) )
2059 if (sizeFlags
& wxSIZE_FORCE_EVENT
)
2061 wxSizeEvent
event( wxSize(width
,height
), GetId() );
2062 event
.SetEventObject( this );
2063 HandleWindowEvent( event
);
2068 if ( x
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
2070 if ( y
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
2073 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
2075 wxSize size
= wxDefaultSize
;
2076 if ( width
== wxDefaultCoord
)
2078 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
2080 size
= GetBestSize();
2085 // just take the current one
2090 if ( height
== wxDefaultCoord
)
2092 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
2094 if ( size
.x
== wxDefaultCoord
)
2096 size
= GetBestSize();
2098 //else: already called GetBestSize() above
2104 // just take the current one
2109 DoMoveWindow(x
, y
, width
, height
);
2112 void wxWindowMSW::DoSetClientSize(int width
, int height
)
2114 // setting the client size is less obvious than it could have been
2115 // because in the result of changing the total size the window scrollbar
2116 // may [dis]appear and/or its menubar may [un]wrap (and AdjustWindowRect()
2117 // doesn't take neither into account) and so the client size will not be
2118 // correct as the difference between the total and client size changes --
2119 // so we keep changing it until we get it right
2121 // normally this loop shouldn't take more than 3 iterations (usually 1 but
2122 // if scrollbars [dis]appear as the result of the first call, then 2 and it
2123 // may become 3 if the window had 0 size originally and so we didn't
2124 // calculate the scrollbar correction correctly during the first iteration)
2125 // but just to be on the safe side we check for it instead of making it an
2126 // "infinite" loop (i.e. leaving break inside as the only way to get out)
2127 for ( int i
= 0; i
< 4; i
++ )
2130 ::GetClientRect(GetHwnd(), &rectClient
);
2132 // if the size is already ok, stop here (NB: rectClient.left = top = 0)
2133 if ( (rectClient
.right
== width
|| width
== wxDefaultCoord
) &&
2134 (rectClient
.bottom
== height
|| height
== wxDefaultCoord
) )
2139 // Find the difference between the entire window (title bar and all)
2140 // and the client area; add this to the new client size to move the
2143 ::GetWindowRect(GetHwnd(), &rectWin
);
2145 const int widthWin
= rectWin
.right
- rectWin
.left
,
2146 heightWin
= rectWin
.bottom
- rectWin
.top
;
2148 // MoveWindow positions the child windows relative to the parent, so
2149 // adjust if necessary
2150 if ( !IsTopLevel() )
2152 wxWindow
*parent
= GetParent();
2155 ::ScreenToClient(GetHwndOf(parent
), (POINT
*)&rectWin
);
2159 // don't call DoMoveWindow() because we want to move window immediately
2160 // and not defer it here as otherwise the value returned by
2161 // GetClient/WindowRect() wouldn't change as the window wouldn't be
2163 if ( !::MoveWindow(GetHwnd(),
2166 width
+ widthWin
- rectClient
.right
,
2167 height
+ heightWin
- rectClient
.bottom
,
2170 wxLogLastError(wxT("MoveWindow"));
2175 wxSize
wxWindowMSW::DoGetBorderSize() const
2178 switch ( GetBorder() )
2180 case wxBORDER_STATIC
:
2181 case wxBORDER_SIMPLE
:
2185 case wxBORDER_SUNKEN
:
2189 case wxBORDER_RAISED
:
2190 case wxBORDER_DOUBLE
:
2195 wxFAIL_MSG( wxT("unknown border style") );
2202 return 2*wxSize(border
, border
);
2205 // ---------------------------------------------------------------------------
2207 // ---------------------------------------------------------------------------
2209 int wxWindowMSW::GetCharHeight() const
2211 return wxGetTextMetrics(this).tmHeight
;
2214 int wxWindowMSW::GetCharWidth() const
2216 // +1 is needed because Windows apparently adds it when calculating the
2217 // dialog units size in pixels
2218 #if wxDIALOG_UNIT_COMPATIBILITY
2219 return wxGetTextMetrics(this).tmAveCharWidth
;
2221 return wxGetTextMetrics(this).tmAveCharWidth
+ 1;
2225 void wxWindowMSW::DoGetTextExtent(const wxString
& string
,
2228 int *externalLeading
,
2229 const wxFont
*fontToUse
) const
2231 wxASSERT_MSG( !fontToUse
|| fontToUse
->Ok(),
2232 wxT("invalid font in GetTextExtent()") );
2236 hfontToUse
= GetHfontOf(*fontToUse
);
2238 hfontToUse
= GetHfontOf(GetFont());
2240 WindowHDC
hdc(GetHwnd());
2241 SelectInHDC
selectFont(hdc
, hfontToUse
);
2245 ::GetTextExtentPoint32(hdc
, string
.wx_str(), string
.length(), &sizeRect
);
2246 GetTextMetrics(hdc
, &tm
);
2253 *descent
= tm
.tmDescent
;
2254 if ( externalLeading
)
2255 *externalLeading
= tm
.tmExternalLeading
;
2258 // ---------------------------------------------------------------------------
2260 // ---------------------------------------------------------------------------
2262 #if wxUSE_MENUS_NATIVE
2264 // yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue
2265 // immediately, without waiting for the next event loop iteration
2267 // NB: this function should probably be made public later as it can almost
2268 // surely replace wxYield() elsewhere as well
2269 static void wxYieldForCommandsOnly()
2271 // peek all WM_COMMANDs (it will always return WM_QUIT too but we don't
2272 // want to process it here)
2274 while ( ::PeekMessage(&msg
, (HWND
)0, WM_COMMAND
, WM_COMMAND
, PM_REMOVE
) )
2276 if ( msg
.message
== WM_QUIT
)
2278 // if we retrieved a WM_QUIT, insert back into the message queue.
2279 ::PostQuitMessage(0);
2283 // luckily (as we don't have access to wxEventLoopImpl method from here
2284 // anyhow...) we don't need to pre process WM_COMMANDs so dispatch it
2286 ::TranslateMessage(&msg
);
2287 ::DispatchMessage(&msg
);
2291 bool wxWindowMSW::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
2295 if ( x
== wxDefaultCoord
&& y
== wxDefaultCoord
)
2297 wxPoint mouse
= ScreenToClient(wxGetMousePosition());
2298 x
= mouse
.x
; y
= mouse
.y
;
2301 HWND hWnd
= GetHwnd();
2302 HMENU hMenu
= GetHmenuOf(menu
);
2306 ::ClientToScreen(hWnd
, &point
);
2307 #if defined(__WXWINCE__)
2308 static const UINT flags
= 0;
2309 #else // !__WXWINCE__
2310 UINT flags
= TPM_RIGHTBUTTON
;
2311 // NT4 doesn't support TPM_RECURSE and simply doesn't show the menu at all
2312 // when it's use, I'm not sure about Win95/98 but prefer to err on the safe
2313 // side and not to use it there neither -- modify the test if it does work
2315 if ( wxGetWinVersion() >= wxWinVersion_5
)
2317 // using TPM_RECURSE allows us to show a popup menu while another menu
2318 // is opened which can be useful and is supported by the other
2319 // platforms, so allow it under Windows too
2320 flags
|= TPM_RECURSE
;
2322 #endif // __WXWINCE__/!__WXWINCE__
2324 ::TrackPopupMenu(hMenu
, flags
, point
.x
, point
.y
, 0, hWnd
, NULL
);
2326 // we need to do it right now as otherwise the events are never going to be
2327 // sent to wxCurrentPopupMenu from HandleCommand()
2329 // note that even eliminating (ugly) wxCurrentPopupMenu global wouldn't
2330 // help and we'd still need wxYieldForCommandsOnly() as the menu may be
2331 // destroyed as soon as we return (it can be a local variable in the caller
2332 // for example) and so we do need to process the event immediately
2333 wxYieldForCommandsOnly();
2338 #endif // wxUSE_MENUS_NATIVE
2340 // ===========================================================================
2341 // pre/post message processing
2342 // ===========================================================================
2344 WXLRESULT
wxWindowMSW::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
2347 return ::CallWindowProc(CASTWNDPROC m_oldWndProc
, GetHwnd(), (UINT
) nMsg
, (WPARAM
) wParam
, (LPARAM
) lParam
);
2349 return ::DefWindowProc(GetHwnd(), nMsg
, wParam
, lParam
);
2352 bool wxWindowMSW::MSWProcessMessage(WXMSG
* pMsg
)
2354 // wxUniversal implements tab traversal itself
2355 #ifndef __WXUNIVERSAL__
2356 if ( m_hWnd
!= 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL
) )
2358 // intercept dialog navigation keys
2359 MSG
*msg
= (MSG
*)pMsg
;
2361 // here we try to do all the job which ::IsDialogMessage() usually does
2363 if ( msg
->message
== WM_KEYDOWN
)
2365 bool bCtrlDown
= wxIsCtrlDown();
2366 bool bShiftDown
= wxIsShiftDown();
2368 // WM_GETDLGCODE: ask the control if it wants the key for itself,
2369 // don't process it if it's the case (except for Ctrl-Tab/Enter
2370 // combinations which are always processed)
2371 LONG lDlgCode
= ::SendMessage(msg
->hwnd
, WM_GETDLGCODE
, 0, 0);
2373 // surprisingly, DLGC_WANTALLKEYS bit mask doesn't contain the
2374 // DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically,
2375 // it, of course, implies them
2376 if ( lDlgCode
& DLGC_WANTALLKEYS
)
2378 lDlgCode
|= DLGC_WANTTAB
| DLGC_WANTARROWS
;
2381 bool bForward
= true,
2382 bWindowChange
= false,
2385 // should we process this message specially?
2386 bool bProcess
= true;
2387 switch ( msg
->wParam
)
2390 if ( (lDlgCode
& DLGC_WANTTAB
) && !bCtrlDown
)
2392 // let the control have the TAB
2395 else // use it for navigation
2397 // Ctrl-Tab cycles thru notebook pages
2398 bWindowChange
= bCtrlDown
;
2399 bForward
= !bShiftDown
;
2406 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2414 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2423 // we treat PageUp/Dn as arrows because chances are that
2424 // a control which needs arrows also needs them for
2425 // navigation (e.g. wxTextCtrl, wxListCtrl, ...)
2426 if ( (lDlgCode
& DLGC_WANTARROWS
) && !bCtrlDown
)
2428 else // OTOH Ctrl-PageUp/Dn works as [Shift-]Ctrl-Tab
2429 bWindowChange
= true;
2435 // currently active button should get enter press even
2436 // if there is a default button elsewhere so check if
2437 // this window is a button first
2438 wxWindow
*btn
= NULL
;
2439 if ( lDlgCode
& DLGC_DEFPUSHBUTTON
)
2441 // let IsDialogMessage() handle this for all
2442 // buttons except the owner-drawn ones which it
2443 // just seems to ignore
2444 long style
= ::GetWindowLong(msg
->hwnd
, GWL_STYLE
);
2445 if ( (style
& BS_OWNERDRAW
) == BS_OWNERDRAW
)
2447 // emulate the button click
2448 btn
= wxFindWinFromHandle(msg
->hwnd
);
2453 else // not a button itself, do we have default button?
2455 // check if this window or any of its ancestors
2456 // wants the message for itself (we always reserve
2457 // Ctrl-Enter for dialog navigation though)
2458 wxWindow
*win
= this;
2461 // this will contain the dialog code of this
2462 // window and all of its parent windows in turn
2463 LONG lDlgCode2
= lDlgCode
;
2467 if ( lDlgCode2
& DLGC_WANTMESSAGE
)
2469 // as it wants to process Enter itself,
2470 // don't call IsDialogMessage() which
2475 // don't propagate keyboard messages beyond
2476 // the first top level window parent
2477 if ( win
->IsTopLevel() )
2480 win
= win
->GetParent();
2482 lDlgCode2
= ::SendMessage
2493 win
= wxGetTopLevelParent(win
);
2496 wxTopLevelWindow
* const
2497 tlw
= wxDynamicCast(win
, wxTopLevelWindow
);
2500 btn
= wxDynamicCast(tlw
->GetDefaultItem(),
2505 if ( btn
&& btn
->IsEnabled() )
2507 btn
->MSWCommand(BN_CLICKED
, 0 /* unused */);
2511 #endif // wxUSE_BUTTON
2514 // map Enter presses into button presses on PDAs
2515 wxJoystickEvent
event(wxEVT_JOY_BUTTON_DOWN
);
2516 event
.SetEventObject(this);
2517 if ( HandleWindowEvent(event
) )
2519 #endif // __WXWINCE__
2529 wxNavigationKeyEvent event
;
2530 event
.SetDirection(bForward
);
2531 event
.SetWindowChange(bWindowChange
);
2532 event
.SetFromTab(bFromTab
);
2533 event
.SetEventObject(this);
2535 if ( HandleWindowEvent(event
) )
2537 // as we don't call IsDialogMessage(), which would take of
2538 // this by default, we need to manually send this message
2539 // so that controls can change their UI state if needed
2540 MSWUpdateUIState(UIS_CLEAR
, UISF_HIDEFOCUS
);
2547 if ( ::IsDialogMessage(GetHwnd(), msg
) )
2549 // IsDialogMessage() did something...
2553 #endif // __WXUNIVERSAL__
2558 // relay mouse move events to the tooltip control
2559 MSG
*msg
= (MSG
*)pMsg
;
2560 if ( msg
->message
== WM_MOUSEMOVE
)
2561 wxToolTip::RelayEvent(pMsg
);
2563 #endif // wxUSE_TOOLTIPS
2568 bool wxWindowMSW::MSWTranslateMessage(WXMSG
* pMsg
)
2570 #if wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
2571 return m_acceleratorTable
.Translate(this, pMsg
);
2575 #endif // wxUSE_ACCEL
2578 bool wxWindowMSW::MSWShouldPreProcessMessage(WXMSG
* msg
)
2580 // all tests below have to deal with various bugs/misfeatures of
2581 // IsDialogMessage(): we have to prevent it from being called from our
2582 // MSWProcessMessage() in some situations
2584 // don't let IsDialogMessage() get VK_ESCAPE as it _always_ eats the
2585 // message even when there is no cancel button and when the message is
2586 // needed by the control itself: in particular, it prevents the tree in
2587 // place edit control from being closed with Escape in a dialog
2588 if ( msg
->message
== WM_KEYDOWN
&& msg
->wParam
== VK_ESCAPE
)
2593 // ::IsDialogMessage() is broken and may sometimes hang the application by
2594 // going into an infinite loop when it tries to find the control to give
2595 // focus to when Alt-<key> is pressed, so we try to detect [some of] the
2596 // situations when this may happen and not call it then
2597 if ( msg
->message
!= WM_SYSCHAR
)
2600 // assume we can call it by default
2601 bool canSafelyCallIsDlgMsg
= true;
2603 HWND hwndFocus
= ::GetFocus();
2605 // if the currently focused window itself has WS_EX_CONTROLPARENT style,
2606 // ::IsDialogMessage() will also enter an infinite loop, because it will
2607 // recursively check the child windows but not the window itself and so if
2608 // none of the children accepts focus it loops forever (as it only stops
2609 // when it gets back to the window it started from)
2611 // while it is very unusual that a window with WS_EX_CONTROLPARENT
2612 // style has the focus, it can happen. One such possibility is if
2613 // all windows are either toplevel, wxDialog, wxPanel or static
2614 // controls and no window can actually accept keyboard input.
2615 #if !defined(__WXWINCE__)
2616 if ( ::GetWindowLong(hwndFocus
, GWL_EXSTYLE
) & WS_EX_CONTROLPARENT
)
2618 // pessimistic by default
2619 canSafelyCallIsDlgMsg
= false;
2620 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2622 node
= node
->GetNext() )
2624 wxWindow
* const win
= node
->GetData();
2625 if ( win
->CanAcceptFocus() &&
2626 !wxHasWindowExStyle(win
, WS_EX_CONTROLPARENT
) )
2628 // it shouldn't hang...
2629 canSafelyCallIsDlgMsg
= true;
2635 #endif // !__WXWINCE__
2637 if ( canSafelyCallIsDlgMsg
)
2639 // ::IsDialogMessage() can enter in an infinite loop when the
2640 // currently focused window is disabled or hidden and its
2641 // parent has WS_EX_CONTROLPARENT style, so don't call it in
2645 if ( !::IsWindowEnabled(hwndFocus
) ||
2646 !::IsWindowVisible(hwndFocus
) )
2648 // it would enter an infinite loop if we do this!
2649 canSafelyCallIsDlgMsg
= false;
2654 if ( !(::GetWindowLong(hwndFocus
, GWL_STYLE
) & WS_CHILD
) )
2656 // it's a top level window, don't go further -- e.g. even
2657 // if the parent of a dialog is disabled, this doesn't
2658 // break navigation inside the dialog
2662 hwndFocus
= ::GetParent(hwndFocus
);
2666 return canSafelyCallIsDlgMsg
;
2669 // ---------------------------------------------------------------------------
2670 // message params unpackers
2671 // ---------------------------------------------------------------------------
2673 void wxWindowMSW::UnpackCommand(WXWPARAM wParam
, WXLPARAM lParam
,
2674 WORD
*id
, WXHWND
*hwnd
, WORD
*cmd
)
2676 *id
= LOWORD(wParam
);
2677 *hwnd
= (WXHWND
)lParam
;
2678 *cmd
= HIWORD(wParam
);
2681 void wxWindowMSW::UnpackActivate(WXWPARAM wParam
, WXLPARAM lParam
,
2682 WXWORD
*state
, WXWORD
*minimized
, WXHWND
*hwnd
)
2684 *state
= LOWORD(wParam
);
2685 *minimized
= HIWORD(wParam
);
2686 *hwnd
= (WXHWND
)lParam
;
2689 void wxWindowMSW::UnpackScroll(WXWPARAM wParam
, WXLPARAM lParam
,
2690 WXWORD
*code
, WXWORD
*pos
, WXHWND
*hwnd
)
2692 *code
= LOWORD(wParam
);
2693 *pos
= HIWORD(wParam
);
2694 *hwnd
= (WXHWND
)lParam
;
2697 void wxWindowMSW::UnpackCtlColor(WXWPARAM wParam
, WXLPARAM lParam
,
2698 WXHDC
*hdc
, WXHWND
*hwnd
)
2700 *hwnd
= (WXHWND
)lParam
;
2701 *hdc
= (WXHDC
)wParam
;
2704 void wxWindowMSW::UnpackMenuSelect(WXWPARAM wParam
, WXLPARAM lParam
,
2705 WXWORD
*item
, WXWORD
*flags
, WXHMENU
*hmenu
)
2707 *item
= (WXWORD
)wParam
;
2708 *flags
= HIWORD(wParam
);
2709 *hmenu
= (WXHMENU
)lParam
;
2712 // ---------------------------------------------------------------------------
2713 // Main wxWidgets window proc and the window proc for wxWindow
2714 // ---------------------------------------------------------------------------
2716 // Hook for new window just as it's being created, when the window isn't yet
2717 // associated with the handle
2718 static wxWindowMSW
*gs_winBeingCreated
= NULL
;
2720 // implementation of wxWindowCreationHook class: it just sets gs_winBeingCreated to the
2721 // window being created and insures that it's always unset back later
2722 wxWindowCreationHook::wxWindowCreationHook(wxWindowMSW
*winBeingCreated
)
2724 gs_winBeingCreated
= winBeingCreated
;
2727 wxWindowCreationHook::~wxWindowCreationHook()
2729 gs_winBeingCreated
= NULL
;
2733 LRESULT WXDLLEXPORT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
2735 // trace all messages: useful for the debugging but noticeably slows down
2736 // the code so don't do it by default
2737 #if wxDEBUG_LEVEL >= 2
2738 // notice that we cast wParam and lParam to long to avoid mismatch with
2739 // format specifiers in 64 bit builds where they are both int64 quantities
2741 // casting like this loses information, of course, but it shouldn't matter
2742 // much for this diagnostic code and it keeps the code simple
2743 wxLogTrace("winmsg",
2744 wxT("Processing %s(hWnd=%p, wParam=%08lx, lParam=%08lx)"),
2745 wxGetMessageName(message
), hWnd
, (long)wParam
, (long)lParam
);
2746 #endif // wxDEBUG_LEVEL >= 2
2748 wxWindowMSW
*wnd
= wxFindWinFromHandle(hWnd
);
2750 // when we get the first message for the HWND we just created, we associate
2751 // it with wxWindow stored in gs_winBeingCreated
2752 if ( !wnd
&& gs_winBeingCreated
)
2754 wxAssociateWinWithHandle(hWnd
, gs_winBeingCreated
);
2755 wnd
= gs_winBeingCreated
;
2756 gs_winBeingCreated
= NULL
;
2757 wnd
->SetHWND((WXHWND
)hWnd
);
2762 if ( wnd
&& wxGUIEventLoop::AllowProcessing(wnd
) )
2763 rc
= wnd
->MSWWindowProc(message
, wParam
, lParam
);
2765 rc
= ::DefWindowProc(hWnd
, message
, wParam
, lParam
);
2770 WXLRESULT
wxWindowMSW::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
2772 // did we process the message?
2773 bool processed
= false;
2783 // for most messages we should return 0 when we do process the message
2791 processed
= HandleCreate((WXLPCREATESTRUCT
)lParam
, &mayCreate
);
2794 // return 0 to allow window creation
2795 rc
.result
= mayCreate
? 0 : -1;
2801 // never set processed to true and *always* pass WM_DESTROY to
2802 // DefWindowProc() as Windows may do some internal cleanup when
2803 // processing it and failing to pass the message along may cause
2804 // memory and resource leaks!
2805 (void)HandleDestroy();
2809 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
2813 processed
= HandleMove(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
2816 #if !defined(__WXWINCE__)
2819 LPRECT pRect
= (LPRECT
)lParam
;
2821 rc
.SetLeft(pRect
->left
);
2822 rc
.SetTop(pRect
->top
);
2823 rc
.SetRight(pRect
->right
);
2824 rc
.SetBottom(pRect
->bottom
);
2825 processed
= HandleMoving(rc
);
2827 pRect
->left
= rc
.GetLeft();
2828 pRect
->top
= rc
.GetTop();
2829 pRect
->right
= rc
.GetRight();
2830 pRect
->bottom
= rc
.GetBottom();
2835 case WM_ENTERSIZEMOVE
:
2837 processed
= HandleEnterSizeMove();
2841 case WM_EXITSIZEMOVE
:
2843 processed
= HandleExitSizeMove();
2849 LPRECT pRect
= (LPRECT
)lParam
;
2851 rc
.SetLeft(pRect
->left
);
2852 rc
.SetTop(pRect
->top
);
2853 rc
.SetRight(pRect
->right
);
2854 rc
.SetBottom(pRect
->bottom
);
2855 processed
= HandleSizing(rc
);
2857 pRect
->left
= rc
.GetLeft();
2858 pRect
->top
= rc
.GetTop();
2859 pRect
->right
= rc
.GetRight();
2860 pRect
->bottom
= rc
.GetBottom();
2864 #endif // !__WXWINCE__
2866 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
2867 case WM_ACTIVATEAPP
:
2868 // This implicitly sends a wxEVT_ACTIVATE_APP event
2869 wxTheApp
->SetActive(wParam
!= 0, FindFocus());
2875 WXWORD state
, minimized
;
2877 UnpackActivate(wParam
, lParam
, &state
, &minimized
, &hwnd
);
2879 processed
= HandleActivate(state
, minimized
!= 0, (WXHWND
)hwnd
);
2884 processed
= HandleSetFocus((WXHWND
)wParam
);
2888 processed
= HandleKillFocus((WXHWND
)wParam
);
2891 case WM_PRINTCLIENT
:
2892 processed
= HandlePrintClient((WXHDC
)wParam
);
2898 wxPaintDCEx
dc((wxWindow
*)this, (WXHDC
)wParam
);
2900 processed
= HandlePaint();
2904 processed
= HandlePaint();
2909 #ifdef __WXUNIVERSAL__
2910 // Universal uses its own wxFrame/wxDialog, so we don't receive
2911 // close events unless we have this.
2913 #endif // __WXUNIVERSAL__
2915 // don't let the DefWindowProc() destroy our window - we'll do it
2916 // ourselves in ~wxWindow
2922 processed
= HandleShow(wParam
!= 0, (int)lParam
);
2926 processed
= HandleMouseMove(GET_X_LPARAM(lParam
),
2927 GET_Y_LPARAM(lParam
),
2931 #ifdef HAVE_TRACKMOUSEEVENT
2933 // filter out excess WM_MOUSELEAVE events sent after PopupMenu()
2935 if ( m_mouseInWindow
)
2937 GenerateMouseLeave();
2940 // always pass processed back as false, this allows the window
2941 // manager to process the message too. This is needed to
2942 // ensure windows XP themes work properly as the mouse moves
2943 // over widgets like buttons. So don't set processed to true here.
2945 #endif // HAVE_TRACKMOUSEEVENT
2947 #if wxUSE_MOUSEWHEEL
2949 processed
= HandleMouseWheel(wParam
, lParam
);
2953 case WM_LBUTTONDOWN
:
2955 case WM_LBUTTONDBLCLK
:
2956 case WM_RBUTTONDOWN
:
2958 case WM_RBUTTONDBLCLK
:
2959 case WM_MBUTTONDOWN
:
2961 case WM_MBUTTONDBLCLK
:
2962 #ifdef wxHAS_XBUTTON
2963 case WM_XBUTTONDOWN
:
2965 case WM_XBUTTONDBLCLK
:
2966 #endif // wxHAS_XBUTTON
2968 #ifdef __WXMICROWIN__
2969 // MicroWindows seems to ignore the fact that a window is
2970 // disabled. So catch mouse events and throw them away if
2972 wxWindowMSW
* win
= this;
2975 if (!win
->IsEnabled())
2981 win
= win
->GetParent();
2982 if ( !win
|| win
->IsTopLevel() )
2989 #endif // __WXMICROWIN__
2990 int x
= GET_X_LPARAM(lParam
),
2991 y
= GET_Y_LPARAM(lParam
);
2994 // redirect the event to a static control if necessary by
2995 // finding one under mouse because under CE the static controls
2996 // don't generate mouse events (even with SS_NOTIFY)
2998 if ( GetCapture() == this )
3000 // but don't do it if the mouse is captured by this window
3001 // because then it should really get this event itself
3006 win
= FindWindowForMouseEvent(this, &x
, &y
);
3008 // this should never happen
3009 wxCHECK_MSG( win
, 0,
3010 wxT("FindWindowForMouseEvent() returned NULL") );
3013 if (IsContextMenuEnabled() && message
== WM_LBUTTONDOWN
)
3015 SHRGINFO shrgi
= {0};
3017 shrgi
.cbSize
= sizeof(SHRGINFO
);
3018 shrgi
.hwndClient
= (HWND
) GetHWND();
3022 shrgi
.dwFlags
= SHRG_RETURNCMD
;
3023 // shrgi.dwFlags = SHRG_NOTIFYPARENT;
3025 if (GN_CONTEXTMENU
== ::SHRecognizeGesture(&shrgi
))
3028 pt
= ClientToScreen(pt
);
3030 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
, GetId(), pt
);
3032 evtCtx
.SetEventObject(this);
3033 if (HandleWindowEvent(evtCtx
))
3042 #else // !__WXWINCE__
3043 wxWindowMSW
*win
= this;
3044 #endif // __WXWINCE__/!__WXWINCE__
3046 processed
= win
->HandleMouseEvent(message
, x
, y
, wParam
);
3048 // if the app didn't eat the event, handle it in the default
3049 // way, that is by giving this window the focus
3052 // for the standard classes their WndProc sets the focus to
3053 // them anyhow and doing it from here results in some weird
3054 // problems, so don't do it for them (unnecessary anyhow)
3055 if ( !win
->IsOfStandardClass() )
3057 if ( message
== WM_LBUTTONDOWN
&& win
->IsFocusable() )
3069 case MM_JOY1BUTTONDOWN
:
3070 case MM_JOY2BUTTONDOWN
:
3071 case MM_JOY1BUTTONUP
:
3072 case MM_JOY2BUTTONUP
:
3073 processed
= HandleJoystickEvent(message
,
3074 GET_X_LPARAM(lParam
),
3075 GET_Y_LPARAM(lParam
),
3078 #endif // __WXMICROWIN__
3084 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
3086 processed
= HandleCommand(id
, cmd
, hwnd
);
3091 processed
= HandleNotify((int)wParam
, lParam
, &rc
.result
);
3094 // we only need to reply to WM_NOTIFYFORMAT manually when using MSLU,
3095 // otherwise DefWindowProc() does it perfectly fine for us, but MSLU
3096 // apparently doesn't always behave properly and needs some help
3097 #if wxUSE_UNICODE_MSLU && defined(NF_QUERY)
3098 case WM_NOTIFYFORMAT
:
3099 if ( lParam
== NF_QUERY
)
3102 rc
.result
= NFR_UNICODE
;
3105 #endif // wxUSE_UNICODE_MSLU
3107 // for these messages we must return true if process the message
3110 processed
= MSWOnDrawItem(wParam
, (WXDRAWITEMSTRUCT
*)lParam
);
3115 case WM_MEASUREITEM
:
3116 processed
= MSWOnMeasureItem(wParam
, (WXMEASUREITEMSTRUCT
*)lParam
);
3120 #endif // defined(WM_DRAWITEM)
3123 if ( !IsOfStandardClass() || HasFlag(wxWANTS_CHARS
) )
3125 // we always want to get the char events
3126 rc
.result
= DLGC_WANTCHARS
;
3128 if ( HasFlag(wxWANTS_CHARS
) )
3130 // in fact, we want everything
3131 rc
.result
|= DLGC_WANTARROWS
|
3138 //else: get the dlg code from the DefWindowProc()
3143 // Generate the key down event in any case.
3144 m_lastKeydownProcessed
= HandleKeyDown((WORD
) wParam
, lParam
);
3145 if ( m_lastKeydownProcessed
)
3147 // If it was processed by an event handler, we stop here,
3148 // notably we intentionally don't generate char event then.
3151 else // key down event not handled
3153 // Examine the event to decide whether we need to generate a
3154 // char event for it ourselves or let Windows do it. Window
3155 // mostly only does it for the keys which produce printable
3156 // characters (although there are exceptions, e.g. VK_ESCAPE or
3157 // VK_BACK (but not VK_DELETE)) while we do it for all keys
3158 // except the modifier ones (the wisdom of this is debatable
3159 // but by now this decision is enshrined forever due to
3160 // backwards compatibility).
3163 // No wxEVT_CHAR events are generated for these keys at all.
3171 // Windows will send us WM_CHAR for these ones so we'll
3172 // generate wxEVT_CHAR for them later when we get it.
3207 // special case of VK_APPS: treat it the same as right mouse
3208 // click because both usually pop up a context menu
3210 processed
= HandleMouseEvent(WM_RBUTTONDOWN
, -1, -1, 0);
3215 if ( (wParam
>= '0' && wParam
<= '9') ||
3216 (wParam
>= 'A' && wParam
<= 'Z') )
3218 // We'll get WM_CHAR for those later too.
3222 // But for the rest we won't get WM_CHAR later so we do
3223 // need to generate the event right now.
3224 wxKeyEvent
event(wxEVT_CHAR
);
3225 InitAnyKeyEvent(event
, wParam
, lParam
);
3227 // Set the "extended" bit in lParam because we want to
3228 // generate CHAR events with WXK_HOME and not
3229 // WXK_NUMPAD_HOME even if the "Home" key on numpad was
3231 event
.m_keyCode
= wxMSWKeyboard::VKToWX
3234 lParam
| (KF_EXTENDED
<< 16)
3237 // Don't produce events without any valid character
3238 // code (even if this shouldn't normally happen...).
3239 if ( event
.m_keyCode
!= WXK_NONE
)
3240 processed
= HandleWindowEvent(event
);
3243 if (message
== WM_SYSKEYDOWN
) // Let Windows still handle the SYSKEYs
3250 // special case of VK_APPS: treat it the same as right mouse button
3251 if ( wParam
== VK_APPS
)
3253 processed
= HandleMouseEvent(WM_RBUTTONUP
, -1, -1, 0);
3258 processed
= HandleKeyUp((WORD
) wParam
, lParam
);
3263 case WM_CHAR
: // Always an ASCII character
3264 if ( m_lastKeydownProcessed
)
3266 // The key was handled in the EVT_KEY_DOWN and handling
3267 // a key in an EVT_KEY_DOWN handler is meant, by
3268 // design, to prevent EVT_CHARs from happening
3269 m_lastKeydownProcessed
= false;
3274 processed
= HandleChar((WORD
)wParam
, lParam
);
3280 processed
= HandleHotKey((WORD
)wParam
, lParam
);
3282 #endif // wxUSE_HOTKEY
3287 processed
= HandleClipboardEvent(message
);
3295 UnpackScroll(wParam
, lParam
, &code
, &pos
, &hwnd
);
3297 processed
= MSWOnScroll(message
== WM_HSCROLL
? wxHORIZONTAL
3303 // CTLCOLOR messages are sent by children to query the parent for their
3305 #ifndef __WXMICROWIN__
3306 case WM_CTLCOLORMSGBOX
:
3307 case WM_CTLCOLOREDIT
:
3308 case WM_CTLCOLORLISTBOX
:
3309 case WM_CTLCOLORBTN
:
3310 case WM_CTLCOLORDLG
:
3311 case WM_CTLCOLORSCROLLBAR
:
3312 case WM_CTLCOLORSTATIC
:
3316 UnpackCtlColor(wParam
, lParam
, &hdc
, &hwnd
);
3318 processed
= HandleCtlColor(&rc
.hBrush
, (WXHDC
)hdc
, (WXHWND
)hwnd
);
3321 #endif // !__WXMICROWIN__
3323 case WM_SYSCOLORCHANGE
:
3324 // the return value for this message is ignored
3325 processed
= HandleSysColorChange();
3328 #if !defined(__WXWINCE__)
3329 case WM_DISPLAYCHANGE
:
3330 processed
= HandleDisplayChange();
3334 case WM_PALETTECHANGED
:
3335 processed
= HandlePaletteChanged((WXHWND
)wParam
);
3338 case WM_CAPTURECHANGED
:
3339 processed
= HandleCaptureChanged((WXHWND
)lParam
);
3342 case WM_SETTINGCHANGE
:
3343 processed
= HandleSettingChange(wParam
, lParam
);
3346 case WM_QUERYNEWPALETTE
:
3347 processed
= HandleQueryNewPalette();
3352 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
3353 // check if an override was configured for this window
3354 EraseBgHooks::const_iterator it
= gs_eraseBgHooks
.find(this);
3355 if ( it
!= gs_eraseBgHooks
.end() )
3356 processed
= it
->second
->MSWEraseBgHook((WXHDC
)wParam
);
3358 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
3359 processed
= HandleEraseBkgnd((WXHDC
)wParam
);
3364 // we processed the message, i.e. erased the background
3369 #if !defined(__WXWINCE__)
3371 processed
= HandleDropFiles(wParam
);
3376 processed
= HandleInitDialog((WXHWND
)wParam
);
3380 // we never set focus from here
3385 #if !defined(__WXWINCE__)
3386 case WM_QUERYENDSESSION
:
3387 processed
= HandleQueryEndSession(lParam
, &rc
.allow
);
3391 processed
= HandleEndSession(wParam
!= 0, lParam
);
3394 case WM_GETMINMAXINFO
:
3395 processed
= HandleGetMinMaxInfo((MINMAXINFO
*)lParam
);
3400 processed
= HandleSetCursor((WXHWND
)wParam
,
3401 LOWORD(lParam
), // hit test
3402 HIWORD(lParam
)); // mouse msg
3406 // returning TRUE stops the DefWindowProc() from further
3407 // processing this message - exactly what we need because we've
3408 // just set the cursor.
3413 #if wxUSE_ACCESSIBILITY
3416 //WPARAM dwFlags = (WPARAM) (DWORD) wParam;
3417 LPARAM dwObjId
= (LPARAM
) (DWORD
) lParam
;
3419 if (dwObjId
== (LPARAM
)OBJID_CLIENT
&& GetOrCreateAccessible())
3421 return LresultFromObject(IID_IAccessible
, wParam
, (IUnknown
*) GetAccessible()->GetIAccessible());
3427 #if defined(WM_HELP)
3430 // by default, WM_HELP is propagated by DefWindowProc() upwards
3431 // to the window parent but as we do it ourselves already
3432 // (wxHelpEvent is derived from wxCommandEvent), we don't want
3433 // to get the other events if we process this message at all
3436 // WM_HELP doesn't use lParam under CE
3438 HELPINFO
* info
= (HELPINFO
*) lParam
;
3439 if ( info
->iContextType
== HELPINFO_WINDOW
)
3441 #endif // !__WXWINCE__
3442 wxHelpEvent helpEvent
3447 wxGetMousePosition() // what else?
3449 wxPoint(info
->MousePos
.x
, info
->MousePos
.y
)
3453 helpEvent
.SetEventObject(this);
3454 HandleWindowEvent(helpEvent
);
3457 else if ( info
->iContextType
== HELPINFO_MENUITEM
)
3459 wxHelpEvent
helpEvent(wxEVT_HELP
, info
->iCtrlId
);
3460 helpEvent
.SetEventObject(this);
3461 HandleWindowEvent(helpEvent
);
3464 else // unknown help event?
3468 #endif // !__WXWINCE__
3473 #if !defined(__WXWINCE__)
3474 case WM_CONTEXTMENU
:
3476 // we don't convert from screen to client coordinates as
3477 // the event may be handled by a parent window
3478 wxPoint
pt(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
3480 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
, GetId(), pt
);
3482 // we could have got an event from our child, reflect it back
3483 // to it if this is the case
3484 wxWindowMSW
*win
= NULL
;
3485 WXHWND hWnd
= (WXHWND
)wParam
;
3486 if ( hWnd
!= m_hWnd
)
3488 win
= FindItemByHWND(hWnd
);
3494 evtCtx
.SetEventObject(win
);
3495 processed
= win
->HandleWindowEvent(evtCtx
);
3502 // we're only interested in our own menus, not MF_SYSMENU
3503 if ( HIWORD(wParam
) == MF_POPUP
)
3505 // handle menu chars for ownerdrawn menu items
3506 int i
= HandleMenuChar(toupper(LOWORD(wParam
)), lParam
);
3507 if ( i
!= wxNOT_FOUND
)
3509 rc
.result
= MAKELRESULT(i
, MNC_EXECUTE
);
3514 #endif // wxUSE_MENUS
3517 case WM_POWERBROADCAST
:
3520 processed
= HandlePower(wParam
, lParam
, &vetoed
);
3521 rc
.result
= processed
&& vetoed
? BROADCAST_QUERY_DENY
: TRUE
;
3524 #endif // __WXWINCE__
3527 // If we want the default themed border then we need to draw it ourselves
3530 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
3531 const wxBorder border
= TranslateBorder(GetBorder());
3532 if (theme
&& border
== wxBORDER_THEME
)
3534 // first ask the widget to calculate the border size
3535 rc
.result
= MSWDefWindowProc(message
, wParam
, lParam
);
3538 // now alter the client size making room for drawing a
3541 NCCALCSIZE_PARAMS
*csparam
= NULL
;
3544 csparam
= (NCCALCSIZE_PARAMS
*)lParam
;
3545 rect
= &csparam
->rgrc
[0];
3549 rect
= (RECT
*)lParam
;
3552 wxUxThemeHandle
hTheme((const wxWindow
*)this, L
"EDIT");
3553 RECT rcClient
= { 0, 0, 0, 0 };
3554 wxClientDC
dc((wxWindow
*)this);
3555 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
3557 if ( theme
->GetThemeBackgroundContentRect
3564 &rcClient
) == S_OK
)
3566 InflateRect(&rcClient
, -1, -1);
3568 csparam
->rgrc
[0] = rcClient
;
3570 *((RECT
*)lParam
) = rcClient
;
3572 // WVR_REDRAW triggers a bug whereby child windows are moved up and left,
3574 // rc.result = WVR_REDRAW;
3582 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
3583 const wxBorder border
= TranslateBorder(GetBorder());
3584 if (theme
&& border
== wxBORDER_THEME
)
3586 // first ask the widget to paint its non-client area, such as scrollbars, etc.
3587 rc
.result
= MSWDefWindowProc(message
, wParam
, lParam
);
3590 wxUxThemeHandle
hTheme((const wxWindow
*)this, L
"EDIT");
3591 wxWindowDC
dc((wxWindow
*)this);
3592 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
3594 // Clip the DC so that you only draw on the non-client area
3596 wxCopyRectToRECT(GetSize(), rcBorder
);
3599 theme
->GetThemeBackgroundContentRect(
3600 hTheme
, GetHdcOf(*impl
), EP_EDITTEXT
, ETS_NORMAL
, &rcBorder
, &rcClient
);
3601 InflateRect(&rcClient
, -1, -1);
3603 ::ExcludeClipRect(GetHdcOf(*impl
), rcClient
.left
, rcClient
.top
,
3604 rcClient
.right
, rcClient
.bottom
);
3606 // Make sure the background is in a proper state
3607 if (theme
->IsThemeBackgroundPartiallyTransparent(hTheme
, EP_EDITTEXT
, ETS_NORMAL
))
3609 theme
->DrawThemeParentBackground(GetHwnd(), GetHdcOf(*impl
), &rcBorder
);
3615 nState
= ETS_DISABLED
;
3616 // should we check this?
3617 //else if ( ::GetWindowLong(GetHwnd(), GWL_STYLE) & ES_READONLY)
3618 // nState = ETS_READONLY;
3620 nState
= ETS_NORMAL
;
3621 theme
->DrawThemeBackground(hTheme
, GetHdcOf(*impl
), EP_EDITTEXT
, nState
, &rcBorder
, NULL
);
3626 #endif // wxUSE_UXTHEME
3629 // try a custom message handler
3630 const MSWMessageHandlers::const_iterator
3631 i
= gs_messageHandlers
.find(message
);
3632 if ( i
!= gs_messageHandlers
.end() )
3634 processed
= (*i
->second
)(this, message
, wParam
, lParam
);
3640 #if wxDEBUG_LEVEL >= 2
3641 wxLogTrace("winmsg", wxT("Forwarding %s to DefWindowProc."),
3642 wxGetMessageName(message
));
3643 #endif // wxDEBUG_LEVEL >= 2
3644 rc
.result
= MSWDefWindowProc(message
, wParam
, lParam
);
3650 // ----------------------------------------------------------------------------
3651 // wxWindow <-> HWND map
3652 // ----------------------------------------------------------------------------
3654 wxWindow
*wxFindWinFromHandle(HWND hwnd
)
3656 WindowHandles::const_iterator i
= gs_windowHandles
.find(hwnd
);
3657 return i
== gs_windowHandles
.end() ? NULL
: i
->second
;
3660 void wxAssociateWinWithHandle(HWND hwnd
, wxWindowMSW
*win
)
3662 // adding NULL hwnd is (first) surely a result of an error and
3663 // (secondly) breaks menu command processing
3664 wxCHECK_RET( hwnd
!= (HWND
)NULL
,
3665 wxT("attempt to add a NULL hwnd to window list ignored") );
3668 WindowHandles::const_iterator i
= gs_windowHandles
.find(hwnd
);
3669 if ( i
!= gs_windowHandles
.end() )
3671 if ( i
->second
!= win
)
3675 wxT("HWND %p already associated with another window (%s)"),
3676 hwnd
, win
->GetClassInfo()->GetClassName()
3680 //else: this actually happens currently because we associate the window
3681 // with its HWND during creation (if we create it) and also when
3682 // SubclassWin() is called later, this is ok
3684 #endif // wxDEBUG_LEVEL
3686 gs_windowHandles
[hwnd
] = (wxWindow
*)win
;
3689 void wxRemoveHandleAssociation(wxWindowMSW
*win
)
3691 gs_windowHandles
.erase(GetHwndOf(win
));
3694 // ----------------------------------------------------------------------------
3695 // various MSW speciic class dependent functions
3696 // ----------------------------------------------------------------------------
3698 // Default destroyer - override if you destroy it in some other way
3699 // (e.g. with MDI child windows)
3700 void wxWindowMSW::MSWDestroyWindow()
3704 void wxWindowMSW::MSWGetCreateWindowCoords(const wxPoint
& pos
,
3707 int& w
, int& h
) const
3709 // CW_USEDEFAULT can't be used for child windows so just position them at
3710 // the origin by default
3711 x
= pos
.x
== wxDefaultCoord
? 0 : pos
.x
;
3712 y
= pos
.y
== wxDefaultCoord
? 0 : pos
.y
;
3714 AdjustForParentClientOrigin(x
, y
);
3716 // We don't have any clearly good choice for the size by default neither
3717 // but we must use something non-zero.
3718 w
= WidthDefault(size
.x
);
3719 h
= HeightDefault(size
.y
);
3722 NB: there used to be some code here which set the initial size of the
3723 window to the client size of the parent if no explicit size was
3724 specified. This was wrong because wxWidgets programs often assume
3725 that they get a WM_SIZE (EVT_SIZE) upon creation, however this broke
3726 it. To see why, you should understand that Windows sends WM_SIZE from
3727 inside ::CreateWindow() anyhow. However, ::CreateWindow() is called
3728 from some base class ctor and so this WM_SIZE is not processed in the
3729 real class' OnSize() (because it's not fully constructed yet and the
3730 event goes to some base class OnSize() instead). So the WM_SIZE we
3731 rely on is the one sent when the parent frame resizes its children
3732 but here is the problem: if the child already has just the right
3733 size, nothing will happen as both wxWidgets and Windows check for
3734 this and ignore any attempts to change the window size to the size it
3735 already has - so no WM_SIZE would be sent.
3739 WXHWND
wxWindowMSW::MSWGetParent() const
3741 return m_parent
? m_parent
->GetHWND() : WXHWND(NULL
);
3744 bool wxWindowMSW::MSWCreate(const wxChar
*wclass
,
3745 const wxChar
*title
,
3749 WXDWORD extendedStyle
)
3751 // check a common bug in the user code: if the window is created with a
3752 // non-default ctor and Create() is called too, we'd create 2 HWND for a
3753 // single wxWindow object and this results in all sorts of trouble,
3754 // especially for wxTLWs
3755 wxCHECK_MSG( !m_hWnd
, true, "window can't be recreated" );
3757 // this can happen if this function is called using the return value of
3758 // wxApp::GetRegisteredClassName() which failed
3759 wxCHECK_MSG( wclass
, false, "failed to register window class?" );
3762 // choose the position/size for the new window
3764 (void)MSWGetCreateWindowCoords(pos
, size
, x
, y
, w
, h
);
3766 // controlId is menu handle for the top level windows, so set it to 0
3767 // unless we're creating a child window
3768 int controlId
= style
& WS_CHILD
? GetId() : 0;
3770 // for each class "Foo" we have we also have "FooNR" ("no repaint") class
3771 // which is the same but without CS_[HV]REDRAW class styles so using it
3772 // ensures that the window is not fully repainted on each resize
3773 wxString
className(wclass
);
3774 if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE
) )
3776 className
+= wxApp::GetNoRedrawClassSuffix();
3779 // do create the window
3780 wxWindowCreationHook
hook(this);
3782 m_hWnd
= (WXHWND
)::CreateWindowEx
3786 title
? title
: m_windowName
.wx_str(),
3789 (HWND
)MSWGetParent(),
3790 (HMENU
)wxUIntToPtr(controlId
),
3792 NULL
// no extra data
3797 wxLogSysError(_("Can't create window of class %s"), className
.c_str());
3802 SubclassWin(m_hWnd
);
3807 // ===========================================================================
3808 // MSW message handlers
3809 // ===========================================================================
3811 // ---------------------------------------------------------------------------
3813 // ---------------------------------------------------------------------------
3815 bool wxWindowMSW::HandleNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
3817 #ifndef __WXMICROWIN__
3818 LPNMHDR hdr
= (LPNMHDR
)lParam
;
3819 HWND hWnd
= hdr
->hwndFrom
;
3820 wxWindow
*win
= wxFindWinFromHandle(hWnd
);
3822 // if the control is one of our windows, let it handle the message itself
3825 return win
->MSWOnNotify(idCtrl
, lParam
, result
);
3828 // VZ: why did we do it? normally this is unnecessary and, besides, it
3829 // breaks the message processing for the toolbars because the tooltip
3830 // notifications were being forwarded to the toolbar child controls
3831 // (if it had any) before being passed to the toolbar itself, so in my
3832 // example the tooltip for the combobox was always shown instead of the
3833 // correct button tooltips
3835 // try all our children
3836 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3839 wxWindow
*child
= node
->GetData();
3840 if ( child
->MSWOnNotify(idCtrl
, lParam
, result
) )
3845 node
= node
->GetNext();
3849 // by default, handle it ourselves
3850 return MSWOnNotify(idCtrl
, lParam
, result
);
3851 #else // __WXMICROWIN__
3858 bool wxWindowMSW::HandleTooltipNotify(WXUINT code
,
3860 const wxString
& ttip
)
3862 // I don't know why it happens, but the versions of comctl32.dll starting
3863 // from 4.70 sometimes send TTN_NEEDTEXTW even to ANSI programs (normally,
3864 // this message is supposed to be sent to Unicode programs only) -- hence
3865 // we need to handle it as well, otherwise no tooltips will be shown in
3868 if ( !(code
== (WXUINT
) TTN_NEEDTEXTA
|| code
== (WXUINT
) TTN_NEEDTEXTW
)
3871 // not a tooltip message or no tooltip to show anyhow
3876 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
3878 // We don't want to use the szText buffer because it has a limit of 80
3879 // bytes and this is not enough, especially for Unicode build where it
3880 // limits the tooltip string length to only 40 characters
3882 // The best would be, of course, to not impose any length limitations at
3883 // all but then the buffer would have to be dynamic and someone would have
3884 // to free it and we don't have the tooltip owner object here any more, so
3885 // for now use our own static buffer with a higher fixed max length.
3887 // Note that using a static buffer should not be a problem as only a single
3888 // tooltip can be shown at the same time anyhow.
3890 if ( code
== (WXUINT
) TTN_NEEDTEXTW
)
3892 // We need to convert tooltip from multi byte to Unicode on the fly.
3893 static wchar_t buf
[513];
3895 // Truncate tooltip length if needed as otherwise we might not have
3896 // enough space for it in the buffer and MultiByteToWideChar() would
3898 size_t tipLength
= wxMin(ttip
.length(), WXSIZEOF(buf
) - 1);
3900 // Convert to WideChar without adding the NULL character. The NULL
3901 // character is added afterwards (this is more efficient).
3902 int len
= ::MultiByteToWideChar
3914 wxLogLastError(wxT("MultiByteToWideChar()"));
3918 ttText
->lpszText
= (LPSTR
) buf
;
3920 else // TTN_NEEDTEXTA
3921 #endif // !wxUSE_UNICODE
3923 // we get here if we got TTN_NEEDTEXTA (only happens in ANSI build) or
3924 // if we got TTN_NEEDTEXTW in Unicode build: in this case we just have
3925 // to copy the string we have into the buffer
3926 static wxChar buf
[513];
3927 wxStrlcpy(buf
, ttip
.c_str(), WXSIZEOF(buf
));
3928 ttText
->lpszText
= buf
;
3934 #endif // wxUSE_TOOLTIPS
3936 bool wxWindowMSW::MSWOnNotify(int WXUNUSED(idCtrl
),
3938 WXLPARAM
* WXUNUSED(result
))
3943 NMHDR
* hdr
= (NMHDR
*)lParam
;
3944 if ( HandleTooltipNotify(hdr
->code
, lParam
, m_tooltip
->GetTip()))
3951 wxUnusedVar(lParam
);
3952 #endif // wxUSE_TOOLTIPS
3957 // ---------------------------------------------------------------------------
3958 // end session messages
3959 // ---------------------------------------------------------------------------
3961 bool wxWindowMSW::HandleQueryEndSession(long logOff
, bool *mayEnd
)
3963 #ifdef ENDSESSION_LOGOFF
3964 wxCloseEvent
event(wxEVT_QUERY_END_SESSION
, wxID_ANY
);
3965 event
.SetEventObject(wxTheApp
);
3966 event
.SetCanVeto(true);
3967 event
.SetLoggingOff(logOff
== (long)ENDSESSION_LOGOFF
);
3969 bool rc
= wxTheApp
->ProcessEvent(event
);
3973 // we may end only if the app didn't veto session closing (double
3975 *mayEnd
= !event
.GetVeto();
3980 wxUnusedVar(logOff
);
3981 wxUnusedVar(mayEnd
);
3986 bool wxWindowMSW::HandleEndSession(bool endSession
, long logOff
)
3988 #ifdef ENDSESSION_LOGOFF
3989 // do nothing if the session isn't ending
3994 if ( (this != wxTheApp
->GetTopWindow()) )
3997 wxCloseEvent
event(wxEVT_END_SESSION
, wxID_ANY
);
3998 event
.SetEventObject(wxTheApp
);
3999 event
.SetCanVeto(false);
4000 event
.SetLoggingOff((logOff
& ENDSESSION_LOGOFF
) != 0);
4002 return wxTheApp
->ProcessEvent(event
);
4004 wxUnusedVar(endSession
);
4005 wxUnusedVar(logOff
);
4010 // ---------------------------------------------------------------------------
4011 // window creation/destruction
4012 // ---------------------------------------------------------------------------
4014 bool wxWindowMSW::HandleCreate(WXLPCREATESTRUCT
WXUNUSED_IN_WINCE(cs
),
4017 // VZ: why is this commented out for WinCE? If it doesn't support
4018 // WS_EX_CONTROLPARENT at all it should be somehow handled globally,
4019 // not with multiple #ifdef's!
4021 if ( ((CREATESTRUCT
*)cs
)->dwExStyle
& WS_EX_CONTROLPARENT
)
4022 EnsureParentHasControlParentStyle(GetParent());
4023 #endif // !__WXWINCE__
4030 bool wxWindowMSW::HandleDestroy()
4032 // delete our drop target if we've got one
4033 #if wxUSE_DRAG_AND_DROP
4034 if ( m_dropTarget
!= NULL
)
4036 m_dropTarget
->Revoke(m_hWnd
);
4038 wxDELETE(m_dropTarget
);
4040 #endif // wxUSE_DRAG_AND_DROP
4042 // WM_DESTROY handled
4046 // ---------------------------------------------------------------------------
4048 // ---------------------------------------------------------------------------
4050 bool wxWindowMSW::HandleActivate(int state
,
4051 bool WXUNUSED(minimized
),
4052 WXHWND
WXUNUSED(activate
))
4054 wxActivateEvent
event(wxEVT_ACTIVATE
,
4055 (state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
),
4057 event
.SetEventObject(this);
4059 return HandleWindowEvent(event
);
4062 bool wxWindowMSW::HandleSetFocus(WXHWND hwnd
)
4064 // Strangly enough, some controls get set focus events when they are being
4065 // deleted, even if they already had focus before.
4066 if ( m_isBeingDeleted
)
4071 // notify the parent keeping track of focus for the kbd navigation
4072 // purposes that we got it
4073 wxChildFocusEvent
eventFocus((wxWindow
*)this);
4074 (void)HandleWindowEvent(eventFocus
);
4080 m_caret
->OnSetFocus();
4082 #endif // wxUSE_CARET
4084 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
4085 event
.SetEventObject(this);
4087 // wxFindWinFromHandle() may return NULL, it is ok
4088 event
.SetWindow(wxFindWinFromHandle(hwnd
));
4090 return HandleWindowEvent(event
);
4093 bool wxWindowMSW::HandleKillFocus(WXHWND hwnd
)
4099 m_caret
->OnKillFocus();
4101 #endif // wxUSE_CARET
4103 // Don't send the event when in the process of being deleted. This can
4104 // only cause problems if the event handler tries to access the object.
4105 if ( m_isBeingDeleted
)
4110 wxFocusEvent
event(wxEVT_KILL_FOCUS
, m_windowId
);
4111 event
.SetEventObject(this);
4113 // wxFindWinFromHandle() may return NULL, it is ok
4114 event
.SetWindow(wxFindWinFromHandle(hwnd
));
4116 return HandleWindowEvent(event
);
4119 // ---------------------------------------------------------------------------
4121 // ---------------------------------------------------------------------------
4123 void wxWindowMSW::SetLabel( const wxString
& label
)
4125 SetWindowText(GetHwnd(), label
.c_str());
4128 wxString
wxWindowMSW::GetLabel() const
4130 return wxGetWindowText(GetHWND());
4133 // ---------------------------------------------------------------------------
4135 // ---------------------------------------------------------------------------
4137 bool wxWindowMSW::HandleShow(bool show
, int WXUNUSED(status
))
4139 wxShowEvent
event(GetId(), show
);
4140 event
.SetEventObject(this);
4142 return HandleWindowEvent(event
);
4145 bool wxWindowMSW::HandleInitDialog(WXHWND
WXUNUSED(hWndFocus
))
4147 wxInitDialogEvent
event(GetId());
4148 event
.SetEventObject(this);
4150 return HandleWindowEvent(event
);
4153 bool wxWindowMSW::HandleDropFiles(WXWPARAM wParam
)
4155 #if defined (__WXMICROWIN__) || defined(__WXWINCE__)
4156 wxUnusedVar(wParam
);
4158 #else // __WXMICROWIN__
4159 HDROP hFilesInfo
= (HDROP
) wParam
;
4161 // Get the total number of files dropped
4162 UINT gwFilesDropped
= ::DragQueryFile
4170 wxString
*files
= new wxString
[gwFilesDropped
];
4171 for ( UINT wIndex
= 0; wIndex
< gwFilesDropped
; wIndex
++ )
4173 // first get the needed buffer length (+1 for terminating NUL)
4174 size_t len
= ::DragQueryFile(hFilesInfo
, wIndex
, NULL
, 0) + 1;
4176 // and now get the file name
4177 ::DragQueryFile(hFilesInfo
, wIndex
,
4178 wxStringBuffer(files
[wIndex
], len
), len
);
4181 wxDropFilesEvent
event(wxEVT_DROP_FILES
, gwFilesDropped
, files
);
4182 event
.SetEventObject(this);
4185 DragQueryPoint(hFilesInfo
, (LPPOINT
) &dropPoint
);
4186 event
.m_pos
.x
= dropPoint
.x
;
4187 event
.m_pos
.y
= dropPoint
.y
;
4189 DragFinish(hFilesInfo
);
4191 return HandleWindowEvent(event
);
4196 bool wxWindowMSW::HandleSetCursor(WXHWND
WXUNUSED(hWnd
),
4198 int WXUNUSED(mouseMsg
))
4200 #ifndef __WXMICROWIN__
4201 // the logic is as follows:
4202 // 0. if we're busy, set the busy cursor (even for non client elements)
4203 // 1. don't set custom cursor for non client area of enabled windows
4204 // 2. ask user EVT_SET_CURSOR handler for the cursor
4205 // 3. if still no cursor but we're in a TLW, set the global cursor
4207 HCURSOR hcursor
= 0;
4210 hcursor
= wxGetCurrentBusyCursor();
4214 if ( nHitTest
!= HTCLIENT
)
4217 // first ask the user code - it may wish to set the cursor in some very
4218 // specific way (for example, depending on the current position)
4221 if ( !::GetCursorPosWinCE(&pt
))
4223 if ( !::GetCursorPos(&pt
) )
4226 wxLogLastError(wxT("GetCursorPos"));
4231 ScreenToClient(&x
, &y
);
4232 wxSetCursorEvent
event(x
, y
);
4233 event
.SetId(GetId());
4234 event
.SetEventObject(this);
4236 bool processedEvtSetCursor
= HandleWindowEvent(event
);
4237 if ( processedEvtSetCursor
&& event
.HasCursor() )
4239 hcursor
= GetHcursorOf(event
.GetCursor());
4244 // the test for processedEvtSetCursor is here to prevent using
4245 // m_cursor if the user code caught EVT_SET_CURSOR() and returned
4246 // nothing from it - this is a way to say that our cursor shouldn't
4247 // be used for this point
4248 if ( !processedEvtSetCursor
&& m_cursor
.Ok() )
4250 hcursor
= GetHcursorOf(m_cursor
);
4253 if ( !hcursor
&& !GetParent() )
4255 const wxCursor
*cursor
= wxGetGlobalCursor();
4256 if ( cursor
&& cursor
->Ok() )
4258 hcursor
= GetHcursorOf(*cursor
);
4267 ::SetCursor(hcursor
);
4269 // cursor set, stop here
4272 #endif // __WXMICROWIN__
4274 // pass up the window chain
4278 bool wxWindowMSW::HandlePower(WXWPARAM
WXUNUSED_IN_WINCE(wParam
),
4279 WXLPARAM
WXUNUSED(lParam
),
4280 bool *WXUNUSED_IN_WINCE(vetoed
))
4286 wxEventType evtType
;
4289 case PBT_APMQUERYSUSPEND
:
4290 evtType
= wxEVT_POWER_SUSPENDING
;
4293 case PBT_APMQUERYSUSPENDFAILED
:
4294 evtType
= wxEVT_POWER_SUSPEND_CANCEL
;
4297 case PBT_APMSUSPEND
:
4298 evtType
= wxEVT_POWER_SUSPENDED
;
4301 case PBT_APMRESUMESUSPEND
:
4302 evtType
= wxEVT_POWER_RESUME
;
4306 wxLogDebug(wxT("Unknown WM_POWERBROADCAST(%d) event"), wParam
);
4309 // these messages are currently not mapped to wx events
4310 case PBT_APMQUERYSTANDBY
:
4311 case PBT_APMQUERYSTANDBYFAILED
:
4312 case PBT_APMSTANDBY
:
4313 case PBT_APMRESUMESTANDBY
:
4314 case PBT_APMBATTERYLOW
:
4315 case PBT_APMPOWERSTATUSCHANGE
:
4316 case PBT_APMOEMEVENT
:
4317 case PBT_APMRESUMECRITICAL
:
4318 #ifdef PBT_APMRESUMEAUTOMATIC
4319 case PBT_APMRESUMEAUTOMATIC
:
4321 evtType
= wxEVT_NULL
;
4325 // don't handle unknown messages
4326 if ( evtType
== wxEVT_NULL
)
4329 // TODO: notify about PBTF_APMRESUMEFROMFAILURE in case of resume events?
4331 wxPowerEvent
event(evtType
);
4332 if ( !HandleWindowEvent(event
) )
4335 *vetoed
= event
.IsVetoed();
4341 bool wxWindowMSW::IsDoubleBuffered() const
4343 for ( const wxWindowMSW
*win
= this; win
; win
= win
->GetParent() )
4345 if ( wxHasWindowExStyle(win
, WS_EX_COMPOSITED
) )
4348 if ( win
->IsTopLevel() )
4355 void wxWindowMSW::SetDoubleBuffered(bool on
)
4357 // Get the current extended style bits
4358 long exstyle
= wxGetWindowExStyle(this);
4360 // Twiddle the bit as needed
4362 exstyle
|= WS_EX_COMPOSITED
;
4364 exstyle
&= ~WS_EX_COMPOSITED
;
4367 wxSetWindowExStyle(this, exstyle
);
4370 // ---------------------------------------------------------------------------
4371 // owner drawn stuff
4372 // ---------------------------------------------------------------------------
4374 #if (wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE) || \
4375 (wxUSE_CONTROLS && !defined(__WXUNIVERSAL__))
4376 #define WXUNUSED_UNLESS_ODRAWN(param) param
4378 #define WXUNUSED_UNLESS_ODRAWN(param)
4382 wxWindowMSW::MSWOnDrawItem(int WXUNUSED_UNLESS_ODRAWN(id
),
4383 WXDRAWITEMSTRUCT
* WXUNUSED_UNLESS_ODRAWN(itemStruct
))
4385 #if wxUSE_OWNER_DRAWN
4387 #if wxUSE_MENUS_NATIVE
4388 // is it a menu item?
4389 DRAWITEMSTRUCT
*pDrawStruct
= (DRAWITEMSTRUCT
*)itemStruct
;
4390 if ( id
== 0 && pDrawStruct
->CtlType
== ODT_MENU
)
4392 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pDrawStruct
->itemData
);
4394 // see comment before the same test in MSWOnMeasureItem() below
4398 wxCHECK_MSG( wxDynamicCast(pMenuItem
, wxMenuItem
),
4399 false, wxT("MSWOnDrawItem: bad wxMenuItem pointer") );
4401 // prepare to call OnDrawItem(): notice using of wxDCTemp to prevent
4402 // the DC from being released
4403 wxDCTemp
dc((WXHDC
)pDrawStruct
->hDC
);
4404 wxRect
rect(pDrawStruct
->rcItem
.left
, pDrawStruct
->rcItem
.top
,
4405 pDrawStruct
->rcItem
.right
- pDrawStruct
->rcItem
.left
,
4406 pDrawStruct
->rcItem
.bottom
- pDrawStruct
->rcItem
.top
);
4408 return pMenuItem
->OnDrawItem
4412 (wxOwnerDrawn::wxODAction
)pDrawStruct
->itemAction
,
4413 (wxOwnerDrawn::wxODStatus
)pDrawStruct
->itemState
4416 #endif // wxUSE_MENUS_NATIVE
4418 #endif // USE_OWNER_DRAWN
4420 #if wxUSE_CONTROLS && !defined(__WXUNIVERSAL__)
4422 #if wxUSE_OWNER_DRAWN
4423 wxControl
*item
= wxDynamicCast(FindItem(id
), wxControl
);
4424 #else // !wxUSE_OWNER_DRAWN
4425 // we may still have owner-drawn buttons internally because we have to make
4426 // them owner-drawn to support colour change
4429 wxDynamicCast(FindItem(id
), wxButton
)
4434 #endif // USE_OWNER_DRAWN
4438 return item
->MSWOnDraw(itemStruct
);
4441 #endif // wxUSE_CONTROLS
4447 wxWindowMSW::MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*itemStruct
)
4449 #if wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
4450 // is it a menu item?
4451 MEASUREITEMSTRUCT
*pMeasureStruct
= (MEASUREITEMSTRUCT
*)itemStruct
;
4452 if ( id
== 0 && pMeasureStruct
->CtlType
== ODT_MENU
)
4454 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pMeasureStruct
->itemData
);
4456 // according to Carsten Fuchs the pointer may be NULL under XP if an
4457 // MDI child frame is initially maximized, see this for more info:
4458 // http://article.gmane.org/gmane.comp.lib.wxwidgets.general/27745
4460 // so silently ignore it instead of asserting
4464 wxCHECK_MSG( wxDynamicCast(pMenuItem
, wxMenuItem
),
4465 false, wxT("MSWOnMeasureItem: bad wxMenuItem pointer") );
4468 bool rc
= pMenuItem
->OnMeasureItem(&w
, &h
);
4470 pMeasureStruct
->itemWidth
= w
;
4471 pMeasureStruct
->itemHeight
= h
;
4476 wxControl
*item
= wxDynamicCast(FindItem(id
), wxControl
);
4479 return item
->MSWOnMeasure(itemStruct
);
4483 wxUnusedVar(itemStruct
);
4484 #endif // wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
4489 // ---------------------------------------------------------------------------
4490 // colours and palettes
4491 // ---------------------------------------------------------------------------
4493 bool wxWindowMSW::HandleSysColorChange()
4495 wxSysColourChangedEvent event
;
4496 event
.SetEventObject(this);
4498 (void)HandleWindowEvent(event
);
4500 // always let the system carry on the default processing to allow the
4501 // native controls to react to the colours update
4505 bool wxWindowMSW::HandleDisplayChange()
4507 wxDisplayChangedEvent event
;
4508 event
.SetEventObject(this);
4510 return HandleWindowEvent(event
);
4513 #ifndef __WXMICROWIN__
4515 bool wxWindowMSW::HandleCtlColor(WXHBRUSH
*brush
, WXHDC hDC
, WXHWND hWnd
)
4517 #if !wxUSE_CONTROLS || defined(__WXUNIVERSAL__)
4521 wxControl
*item
= wxDynamicCast(FindItemByHWND(hWnd
, true), wxControl
);
4524 *brush
= item
->MSWControlColor(hDC
, hWnd
);
4526 #endif // wxUSE_CONTROLS
4529 return *brush
!= NULL
;
4532 #endif // __WXMICROWIN__
4534 bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange
)
4537 // same as below except we don't respond to our own messages
4538 if ( hWndPalChange
!= GetHWND() )
4540 // check to see if we our our parents have a custom palette
4541 wxWindowMSW
*win
= this;
4542 while ( win
&& !win
->HasCustomPalette() )
4544 win
= win
->GetParent();
4547 if ( win
&& win
->HasCustomPalette() )
4549 // realize the palette to see whether redrawing is needed
4550 HDC hdc
= ::GetDC((HWND
) hWndPalChange
);
4551 win
->m_palette
.SetHPALETTE((WXHPALETTE
)
4552 ::SelectPalette(hdc
, GetHpaletteOf(win
->m_palette
), FALSE
));
4554 int result
= ::RealizePalette(hdc
);
4556 // restore the palette (before releasing the DC)
4557 win
->m_palette
.SetHPALETTE((WXHPALETTE
)
4558 ::SelectPalette(hdc
, GetHpaletteOf(win
->m_palette
), FALSE
));
4559 ::RealizePalette(hdc
);
4560 ::ReleaseDC((HWND
) hWndPalChange
, hdc
);
4562 // now check for the need to redraw
4564 ::InvalidateRect((HWND
) hWndPalChange
, NULL
, TRUE
);
4568 #endif // wxUSE_PALETTE
4570 wxPaletteChangedEvent
event(GetId());
4571 event
.SetEventObject(this);
4572 event
.SetChangedWindow(wxFindWinFromHandle(hWndPalChange
));
4574 return HandleWindowEvent(event
);
4577 bool wxWindowMSW::HandleCaptureChanged(WXHWND hWndGainedCapture
)
4579 // notify windows on the capture stack about lost capture
4580 // (see http://sourceforge.net/tracker/index.php?func=detail&aid=1153662&group_id=9863&atid=109863):
4581 wxWindowBase::NotifyCaptureLost();
4583 wxWindow
*win
= wxFindWinFromHandle(hWndGainedCapture
);
4584 wxMouseCaptureChangedEvent
event(GetId(), win
);
4585 event
.SetEventObject(this);
4586 return HandleWindowEvent(event
);
4589 bool wxWindowMSW::HandleSettingChange(WXWPARAM wParam
, WXLPARAM lParam
)
4591 // despite MSDN saying "(This message cannot be sent directly to a window.)"
4592 // we need to send this to child windows (it is only sent to top-level
4593 // windows) so {list,tree}ctrls can adjust their font size if necessary
4594 // this is exactly how explorer does it to enable the font size changes
4596 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
4599 // top-level windows already get this message from the system
4600 wxWindow
*win
= node
->GetData();
4601 if ( !win
->IsTopLevel() )
4603 ::SendMessage(GetHwndOf(win
), WM_SETTINGCHANGE
, wParam
, lParam
);
4606 node
= node
->GetNext();
4609 // let the system handle it
4613 bool wxWindowMSW::HandleQueryNewPalette()
4617 // check to see if we our our parents have a custom palette
4618 wxWindowMSW
*win
= this;
4619 while (!win
->HasCustomPalette() && win
->GetParent()) win
= win
->GetParent();
4620 if (win
->HasCustomPalette()) {
4621 /* realize the palette to see whether redrawing is needed */
4622 HDC hdc
= ::GetDC((HWND
) GetHWND());
4623 win
->m_palette
.SetHPALETTE( (WXHPALETTE
)
4624 ::SelectPalette(hdc
, (HPALETTE
) win
->m_palette
.GetHPALETTE(), FALSE
) );
4626 int result
= ::RealizePalette(hdc
);
4627 /* restore the palette (before releasing the DC) */
4628 win
->m_palette
.SetHPALETTE( (WXHPALETTE
)
4629 ::SelectPalette(hdc
, (HPALETTE
) win
->m_palette
.GetHPALETTE(), TRUE
) );
4630 ::RealizePalette(hdc
);
4631 ::ReleaseDC((HWND
) GetHWND(), hdc
);
4632 /* now check for the need to redraw */
4634 ::InvalidateRect((HWND
) GetHWND(), NULL
, TRUE
);
4636 #endif // wxUSE_PALETTE
4638 wxQueryNewPaletteEvent
event(GetId());
4639 event
.SetEventObject(this);
4641 return HandleWindowEvent(event
) && event
.GetPaletteRealized();
4644 // Responds to colour changes: passes event on to children.
4645 void wxWindowMSW::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
4647 // the top level window also reset the standard colour map as it might have
4648 // changed (there is no need to do it for the non top level windows as we
4649 // only have to do it once)
4653 gs_hasStdCmap
= false;
4655 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
4658 // Only propagate to non-top-level windows because Windows already
4659 // sends this event to all top-level ones
4660 wxWindow
*win
= node
->GetData();
4661 if ( !win
->IsTopLevel() )
4663 // we need to send the real WM_SYSCOLORCHANGE and not just trigger
4664 // EVT_SYS_COLOUR_CHANGED call because the latter wouldn't work for
4665 // the standard controls
4666 ::SendMessage(GetHwndOf(win
), WM_SYSCOLORCHANGE
, 0, 0);
4669 node
= node
->GetNext();
4673 extern wxCOLORMAP
*wxGetStdColourMap()
4675 static COLORREF s_stdColours
[wxSTD_COL_MAX
];
4676 static wxCOLORMAP s_cmap
[wxSTD_COL_MAX
];
4678 if ( !gs_hasStdCmap
)
4680 static bool s_coloursInit
= false;
4682 if ( !s_coloursInit
)
4684 // When a bitmap is loaded, the RGB values can change (apparently
4685 // because Windows adjusts them to care for the old programs always
4686 // using 0xc0c0c0 while the transparent colour for the new Windows
4687 // versions is different). But we do this adjustment ourselves so
4688 // we want to avoid Windows' "help" and for this we need to have a
4689 // reference bitmap which can tell us what the RGB values change
4691 wxLogNull logNo
; // suppress error if we couldn't load the bitmap
4692 wxBitmap
stdColourBitmap(wxT("wxBITMAP_STD_COLOURS"));
4693 if ( stdColourBitmap
.Ok() )
4695 // the pixels in the bitmap must correspond to wxSTD_COL_XXX!
4696 wxASSERT_MSG( stdColourBitmap
.GetWidth() == wxSTD_COL_MAX
,
4697 wxT("forgot to update wxBITMAP_STD_COLOURS!") );
4700 memDC
.SelectObject(stdColourBitmap
);
4703 for ( size_t i
= 0; i
< WXSIZEOF(s_stdColours
); i
++ )
4705 memDC
.GetPixel(i
, 0, &colour
);
4706 s_stdColours
[i
] = wxColourToRGB(colour
);
4709 else // wxBITMAP_STD_COLOURS couldn't be loaded
4711 s_stdColours
[0] = RGB(000,000,000); // black
4712 s_stdColours
[1] = RGB(128,128,128); // dark grey
4713 s_stdColours
[2] = RGB(192,192,192); // light grey
4714 s_stdColours
[3] = RGB(255,255,255); // white
4715 //s_stdColours[4] = RGB(000,000,255); // blue
4716 //s_stdColours[5] = RGB(255,000,255); // magenta
4719 s_coloursInit
= true;
4722 gs_hasStdCmap
= true;
4724 // create the colour map
4725 #define INIT_CMAP_ENTRY(col) \
4726 s_cmap[wxSTD_COL_##col].from = s_stdColours[wxSTD_COL_##col]; \
4727 s_cmap[wxSTD_COL_##col].to = ::GetSysColor(COLOR_##col)
4729 INIT_CMAP_ENTRY(BTNTEXT
);
4730 INIT_CMAP_ENTRY(BTNSHADOW
);
4731 INIT_CMAP_ENTRY(BTNFACE
);
4732 INIT_CMAP_ENTRY(BTNHIGHLIGHT
);
4734 #undef INIT_CMAP_ENTRY
4740 #if wxUSE_UXTHEME && !defined(TMT_FILLCOLOR)
4741 #define TMT_FILLCOLOR 3802
4742 #define TMT_TEXTCOLOR 3803
4743 #define TMT_BORDERCOLOR 3801
4746 wxColour
wxWindowMSW::MSWGetThemeColour(const wchar_t *themeName
,
4749 MSWThemeColour themeColour
,
4750 wxSystemColour fallback
) const
4753 const wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
4756 int themeProperty
= 0;
4758 // TODO: Convert this into a table? Sure would be faster.
4759 switch ( themeColour
)
4761 case ThemeColourBackground
:
4762 themeProperty
= TMT_FILLCOLOR
;
4764 case ThemeColourText
:
4765 themeProperty
= TMT_TEXTCOLOR
;
4767 case ThemeColourBorder
:
4768 themeProperty
= TMT_BORDERCOLOR
;
4771 wxFAIL_MSG(wxT("unsupported theme colour"));
4774 wxUxThemeHandle
hTheme((const wxWindow
*)this, themeName
);
4776 HRESULT hr
= theme
->GetThemeColor
4785 if ( SUCCEEDED(hr
) )
4786 return wxRGBToColour(col
);
4790 "GetThemeColor(%s, %i, %i, %i)",
4791 themeName
, themePart
, themeState
, themeProperty
),
4795 wxUnusedVar(themeName
);
4796 wxUnusedVar(themePart
);
4797 wxUnusedVar(themeState
);
4798 wxUnusedVar(themeColour
);
4800 return wxSystemSettings::GetColour(fallback
);
4803 // ---------------------------------------------------------------------------
4805 // ---------------------------------------------------------------------------
4807 // this variable is used to check that a paint event handler which processed
4808 // the event did create a wxPaintDC inside its code and called BeginPaint() to
4809 // validate the invalidated window area as otherwise we'd keep getting an
4810 // endless stream of WM_PAINT messages for this window resulting in a lot of
4811 // difficult to debug problems (e.g. impossibility to repaint other windows,
4812 // lack of timer and idle events and so on)
4813 extern bool wxDidCreatePaintDC
;
4814 bool wxDidCreatePaintDC
= false;
4816 bool wxWindowMSW::HandlePaint()
4818 HRGN hRegion
= ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
4821 wxLogLastError(wxT("CreateRectRgn"));
4823 if ( ::GetUpdateRgn(GetHwnd(), hRegion
, FALSE
) == ERROR
)
4825 wxLogLastError(wxT("GetUpdateRgn"));
4828 m_updateRegion
= wxRegion((WXHRGN
) hRegion
);
4830 wxDidCreatePaintDC
= false;
4832 wxPaintEvent
event(m_windowId
);
4833 event
.SetEventObject(this);
4835 bool processed
= HandleWindowEvent(event
);
4837 if ( processed
&& !wxDidCreatePaintDC
)
4839 // do call MSWDefWindowProc() to validate the update region to avoid
4840 // the problems mentioned above
4844 // note that we must generate NC event after the normal one as otherwise
4845 // BeginPaint() will happily overwrite our decorations with the background
4847 wxNcPaintEvent
eventNc(m_windowId
);
4848 eventNc
.SetEventObject(this);
4849 HandleWindowEvent(eventNc
);
4851 // don't keep an HRGN we don't need any longer (GetUpdateRegion() can only
4852 // be called from inside the event handlers called above)
4853 m_updateRegion
.Clear();
4858 // Can be called from an application's OnPaint handler
4859 void wxWindowMSW::OnPaint(wxPaintEvent
& event
)
4861 #ifdef __WXUNIVERSAL__
4864 HDC hDC
= (HDC
) wxPaintDCImpl::FindDCInCache((wxWindow
*) event
.GetEventObject());
4867 MSWDefWindowProc(WM_PAINT
, (WPARAM
) hDC
, 0);
4872 bool wxWindowMSW::HandleEraseBkgnd(WXHDC hdc
)
4874 switch ( GetBackgroundStyle() )
4876 case wxBG_STYLE_ERASE
:
4877 case wxBG_STYLE_COLOUR
:
4878 // we need to generate an erase background event
4880 wxDCTemp
dc(hdc
, GetClientSize());
4881 wxDCTempImpl
*impl
= (wxDCTempImpl
*) dc
.GetImpl();
4884 impl
->SetWindow((wxWindow
*)this);
4886 wxEraseEvent
event(m_windowId
, &dc
);
4887 event
.SetEventObject(this);
4888 bool rc
= HandleWindowEvent(event
);
4890 // must be called manually as ~wxDC doesn't do anything for
4892 impl
->SelectOldObjects(hdc
);
4896 // background erased by the user-defined handler
4902 case wxBG_STYLE_SYSTEM
:
4903 if ( !DoEraseBackground(hdc
) )
4905 // let the default processing to take place if we didn't erase
4906 // the background ourselves
4911 case wxBG_STYLE_PAINT
:
4912 case wxBG_STYLE_TRANSPARENT
:
4913 // no need to do anything here at all, background will be entirely
4914 // redrawn in WM_PAINT handler
4918 wxFAIL_MSG( "unknown background style" );
4924 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
4926 bool wxWindowMSW::MSWHasEraseBgHook() const
4928 return gs_eraseBgHooks
.find(const_cast<wxWindowMSW
*>(this))
4929 != gs_eraseBgHooks
.end();
4932 void wxWindowMSW::MSWSetEraseBgHook(wxWindow
*child
)
4936 if ( !gs_eraseBgHooks
.insert(
4937 EraseBgHooks::value_type(this, child
)).second
)
4939 wxFAIL_MSG( wxT("Setting erase background hook twice?") );
4942 else // reset the hook
4944 if ( gs_eraseBgHooks
.erase(this) != 1 )
4946 wxFAIL_MSG( wxT("Resetting erase background which was not set?") );
4951 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
4953 bool wxWindowMSW::DoEraseBackground(WXHDC hDC
)
4955 HBRUSH hbr
= (HBRUSH
)MSWGetBgBrush(hDC
);
4959 // erase just the client area of the window, this is important for the
4960 // frames to avoid drawing over the toolbar part of the window (you might
4961 // think using WS_CLIPCHILDREN would prevent this from happening, but it
4964 wxCopyRectToRECT(GetClientRect(), rc
);
4965 ::FillRect((HDC
)hDC
, &rc
, hbr
);
4971 wxWindowMSW::MSWGetBgBrushForChild(WXHDC
WXUNUSED(hDC
),
4972 wxWindowMSW
* WXUNUSED(child
))
4977 brush
= wxTheBrushList
->FindOrCreateBrush(GetBackgroundColour());
4979 return (WXHBRUSH
)GetHbrushOf(*brush
);
4985 WXHBRUSH
wxWindowMSW::MSWGetBgBrush(WXHDC hDC
)
4987 for ( wxWindowMSW
*win
= this; win
; win
= win
->GetParent() )
4989 WXHBRUSH hBrush
= win
->MSWGetBgBrushForChild(hDC
, this);
4993 // don't use the parent background if we're not transparent
4994 if ( !win
->HasTransparentBackground() )
4997 // background is not inherited beyond top level windows
4998 if ( win
->IsTopLevel() )
5005 bool wxWindowMSW::HandlePrintClient(WXHDC hDC
)
5007 // we receive this message when DrawThemeParentBackground() is
5008 // called from def window proc of several controls under XP and we
5009 // must draw properly themed background here
5011 // note that naively I'd expect filling the client rect with the
5012 // brush returned by MSWGetBgBrush() work -- but for some reason it
5013 // doesn't and we have to call parents MSWPrintChild() which is
5014 // supposed to call DrawThemeBackground() with appropriate params
5016 // also note that in this case lParam == PRF_CLIENT but we're
5017 // clearly expected to paint the background and nothing else!
5019 if ( IsTopLevel() || InheritsBackgroundColour() )
5022 // sometimes we don't want the parent to handle it at all, instead
5023 // return whatever value this window wants
5024 if ( !MSWShouldPropagatePrintChild() )
5025 return MSWPrintChild(hDC
, (wxWindow
*)this);
5027 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
5029 if ( win
->MSWPrintChild(hDC
, (wxWindow
*)this) )
5032 if ( win
->IsTopLevel() || win
->InheritsBackgroundColour() )
5039 // ---------------------------------------------------------------------------
5040 // moving and resizing
5041 // ---------------------------------------------------------------------------
5043 bool wxWindowMSW::HandleMinimize()
5045 wxIconizeEvent
event(m_windowId
);
5046 event
.SetEventObject(this);
5048 return HandleWindowEvent(event
);
5051 bool wxWindowMSW::HandleMaximize()
5053 wxMaximizeEvent
event(m_windowId
);
5054 event
.SetEventObject(this);
5056 return HandleWindowEvent(event
);
5059 bool wxWindowMSW::HandleMove(int x
, int y
)
5062 wxMoveEvent
event(point
, m_windowId
);
5063 event
.SetEventObject(this);
5065 return HandleWindowEvent(event
);
5068 bool wxWindowMSW::HandleMoving(wxRect
& rect
)
5070 wxMoveEvent
event(rect
, m_windowId
);
5071 event
.SetEventObject(this);
5073 bool rc
= HandleWindowEvent(event
);
5075 rect
= event
.GetRect();
5079 bool wxWindowMSW::HandleEnterSizeMove()
5081 wxMoveEvent
event(wxPoint(0,0), m_windowId
);
5082 event
.SetEventType(wxEVT_MOVE_START
);
5083 event
.SetEventObject(this);
5085 return HandleWindowEvent(event
);
5088 bool wxWindowMSW::HandleExitSizeMove()
5090 wxMoveEvent
event(wxPoint(0,0), m_windowId
);
5091 event
.SetEventType(wxEVT_MOVE_END
);
5092 event
.SetEventObject(this);
5094 return HandleWindowEvent(event
);
5097 bool wxWindowMSW::HandleSize(int WXUNUSED(w
), int WXUNUSED(h
), WXUINT wParam
)
5099 #if wxUSE_DEFERRED_SIZING
5100 // when we resize this window, its children are probably going to be
5101 // repositioned as well, prepare to use DeferWindowPos() for them
5102 int numChildren
= 0;
5103 for ( HWND child
= ::GetWindow(GetHwndOf(this), GW_CHILD
);
5105 child
= ::GetWindow(child
, GW_HWNDNEXT
) )
5110 // Protect against valid m_hDWP being overwritten
5111 bool useDefer
= false;
5113 if ( numChildren
> 1 )
5117 m_hDWP
= (WXHANDLE
)::BeginDeferWindowPos(numChildren
);
5120 wxLogLastError(wxT("BeginDeferWindowPos"));
5126 #endif // wxUSE_DEFERRED_SIZING
5128 // update this window size
5129 bool processed
= false;
5133 wxFAIL_MSG( wxT("unexpected WM_SIZE parameter") );
5134 // fall through nevertheless
5138 // we're not interested in these messages at all
5141 case SIZE_MINIMIZED
:
5142 processed
= HandleMinimize();
5145 case SIZE_MAXIMIZED
:
5146 /* processed = */ HandleMaximize();
5147 // fall through to send a normal size event as well
5150 // don't use w and h parameters as they specify the client size
5151 // while according to the docs EVT_SIZE handler is supposed to
5152 // receive the total size
5153 wxSizeEvent
event(GetSize(), m_windowId
);
5154 event
.SetEventObject(this);
5156 processed
= HandleWindowEvent(event
);
5159 #if wxUSE_DEFERRED_SIZING
5160 // and finally change the positions of all child windows at once
5161 if ( useDefer
&& m_hDWP
)
5163 // reset m_hDWP to NULL so that child windows don't try to use our
5164 // m_hDWP after we call EndDeferWindowPos() on it (this shouldn't
5165 // happen anyhow normally but who knows what weird flow of control we
5166 // may have depending on what the users EVT_SIZE handler does...)
5167 HDWP hDWP
= (HDWP
)m_hDWP
;
5170 // do put all child controls in place at once
5171 if ( !::EndDeferWindowPos(hDWP
) )
5173 wxLogLastError(wxT("EndDeferWindowPos"));
5176 // Reset our children's pending pos/size values.
5177 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
5179 node
= node
->GetNext() )
5181 wxWindowMSW
* const child
= node
->GetData();
5182 child
->MSWEndDeferWindowPos();
5185 #endif // wxUSE_DEFERRED_SIZING
5190 bool wxWindowMSW::HandleSizing(wxRect
& rect
)
5192 wxSizeEvent
event(rect
, m_windowId
);
5193 event
.SetEventObject(this);
5195 bool rc
= HandleWindowEvent(event
);
5197 rect
= event
.GetRect();
5201 bool wxWindowMSW::HandleGetMinMaxInfo(void *WXUNUSED_IN_WINCE(mmInfo
))
5206 MINMAXINFO
*info
= (MINMAXINFO
*)mmInfo
;
5210 int minWidth
= GetMinWidth(),
5211 minHeight
= GetMinHeight(),
5212 maxWidth
= GetMaxWidth(),
5213 maxHeight
= GetMaxHeight();
5215 if ( minWidth
!= wxDefaultCoord
)
5217 info
->ptMinTrackSize
.x
= minWidth
;
5221 if ( minHeight
!= wxDefaultCoord
)
5223 info
->ptMinTrackSize
.y
= minHeight
;
5227 if ( maxWidth
!= wxDefaultCoord
)
5229 info
->ptMaxTrackSize
.x
= maxWidth
;
5233 if ( maxHeight
!= wxDefaultCoord
)
5235 info
->ptMaxTrackSize
.y
= maxHeight
;
5243 // ---------------------------------------------------------------------------
5245 // ---------------------------------------------------------------------------
5247 bool wxWindowMSW::HandleCommand(WXWORD id_
, WXWORD cmd
, WXHWND control
)
5249 // sign extend to int from short before comparing with the other int ids
5250 int id
= (signed short)id_
;
5252 #if wxUSE_MENUS_NATIVE
5253 if ( !cmd
&& wxCurrentPopupMenu
)
5255 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
5256 wxCurrentPopupMenu
= NULL
;
5258 return popupMenu
->MSWCommand(cmd
, id
);
5260 #endif // wxUSE_MENUS_NATIVE
5262 wxWindow
*win
= NULL
;
5264 // first try to find it from HWND - this works even with the broken
5265 // programs using the same ids for different controls
5268 win
= wxFindWinFromHandle(control
);
5279 return win
->MSWCommand(cmd
, id
);
5282 // the messages sent from the in-place edit control used by the treectrl
5283 // for label editing have id == 0, but they should _not_ be treated as menu
5284 // messages (they are EN_XXX ones, in fact) so don't translate anything
5285 // coming from a control to wxEVT_COMMAND_MENU_SELECTED
5288 wxCommandEvent
event(wxEVT_COMMAND_MENU_SELECTED
, id
);
5289 event
.SetEventObject(this);
5292 return HandleWindowEvent(event
);
5296 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
5297 // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND
5298 // notifications to its parent which we want to reflect back to
5300 wxSpinCtrl
*spin
= wxSpinCtrl::GetSpinForTextCtrl(control
);
5301 if ( spin
&& spin
->ProcessTextCommand(cmd
, id
) )
5303 #endif // wxUSE_SPINCTRL
5305 #if wxUSE_CHOICE && defined(__SMARTPHONE__)
5306 // the listbox ctrl which is logically part of wxChoice sends WM_COMMAND
5307 // notifications to its parent which we want to reflect back to
5309 wxChoice
*choice
= wxChoice::GetChoiceForListBox(control
);
5310 if ( choice
&& choice
->MSWCommand(cmd
, id
) )
5318 // ---------------------------------------------------------------------------
5320 // ---------------------------------------------------------------------------
5322 void wxWindowMSW::InitMouseEvent(wxMouseEvent
& event
,
5326 // our client coords are not quite the same as Windows ones
5327 wxPoint pt
= GetClientAreaOrigin();
5328 event
.m_x
= x
- pt
.x
;
5329 event
.m_y
= y
- pt
.y
;
5331 event
.m_shiftDown
= (flags
& MK_SHIFT
) != 0;
5332 event
.m_controlDown
= (flags
& MK_CONTROL
) != 0;
5333 event
.m_leftDown
= (flags
& MK_LBUTTON
) != 0;
5334 event
.m_middleDown
= (flags
& MK_MBUTTON
) != 0;
5335 event
.m_rightDown
= (flags
& MK_RBUTTON
) != 0;
5336 #ifdef wxHAS_XBUTTON
5337 event
.m_aux1Down
= (flags
& MK_XBUTTON1
) != 0;
5338 event
.m_aux2Down
= (flags
& MK_XBUTTON2
) != 0;
5339 #endif // wxHAS_XBUTTON
5340 event
.m_altDown
= ::wxIsAltDown();
5343 event
.SetTimestamp(::GetMessageTime());
5346 event
.SetEventObject(this);
5347 event
.SetId(GetId());
5349 #if wxUSE_MOUSEEVENT_HACK
5350 gs_lastMouseEvent
.pos
= ClientToScreen(wxPoint(x
, y
));
5351 gs_lastMouseEvent
.type
= event
.GetEventType();
5352 #endif // wxUSE_MOUSEEVENT_HACK
5356 // Windows doesn't send the mouse events to the static controls (which are
5357 // transparent in the sense that their WM_NCHITTEST handler returns
5358 // HTTRANSPARENT) at all but we want all controls to receive the mouse events
5359 // and so we manually check if we don't have a child window under mouse and if
5360 // we do, send the event to it instead of the window Windows had sent WM_XXX
5363 // Notice that this is not done for the mouse move events because this could
5364 // (would?) be too slow, but only for clicks which means that the static texts
5365 // still don't get move, enter nor leave events.
5366 static wxWindowMSW
*FindWindowForMouseEvent(wxWindowMSW
*win
, int *x
, int *y
)
5368 wxCHECK_MSG( x
&& y
, win
, wxT("NULL pointer in FindWindowForMouseEvent") );
5370 // first try to find a non transparent child: this allows us to send events
5371 // to a static text which is inside a static box, for example
5372 POINT pt
= { *x
, *y
};
5373 HWND hwnd
= GetHwndOf(win
),
5377 hwndUnderMouse
= ::ChildWindowFromPoint
5383 hwndUnderMouse
= ::ChildWindowFromPointEx
5393 if ( !hwndUnderMouse
|| hwndUnderMouse
== hwnd
)
5395 // now try any child window at all
5396 hwndUnderMouse
= ::ChildWindowFromPoint(hwnd
, pt
);
5399 // check that we have a child window which is susceptible to receive mouse
5400 // events: for this it must be shown and enabled
5401 if ( hwndUnderMouse
&&
5402 hwndUnderMouse
!= hwnd
&&
5403 ::IsWindowVisible(hwndUnderMouse
) &&
5404 ::IsWindowEnabled(hwndUnderMouse
) )
5406 wxWindow
*winUnderMouse
= wxFindWinFromHandle(hwndUnderMouse
);
5407 if ( winUnderMouse
)
5409 // translate the mouse coords to the other window coords
5410 win
->ClientToScreen(x
, y
);
5411 winUnderMouse
->ScreenToClient(x
, y
);
5413 win
= winUnderMouse
;
5419 #endif // __WXWINCE__
5421 bool wxWindowMSW::HandleMouseEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
5423 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
5424 // WM_MOUSELAST, so it's enough to subtract WM_MOUSEMOVE == WM_MOUSEFIRST
5425 // from the message id and take the value in the table to get wxWin event
5427 static const wxEventType eventsMouse
[] =
5438 wxEVT_MIDDLE_DCLICK
,
5439 0, // this one is for wxEVT_MOTION which is not used here
5448 #ifdef wxHAS_XBUTTON
5449 // the same messages are used for both auxillary mouse buttons so we need
5450 // to adjust the index manually
5453 case WM_XBUTTONDOWN
:
5455 case WM_XBUTTONDBLCLK
:
5456 if ( flags
& MK_XBUTTON2
)
5457 msg
+= wxEVT_AUX2_DOWN
- wxEVT_AUX1_DOWN
;
5459 #endif // wxHAS_XBUTTON
5461 wxMouseEvent
event(eventsMouse
[msg
- WM_MOUSEMOVE
]);
5462 InitMouseEvent(event
, x
, y
, flags
);
5464 return HandleWindowEvent(event
);
5467 bool wxWindowMSW::HandleMouseMove(int x
, int y
, WXUINT flags
)
5469 if ( !m_mouseInWindow
)
5471 // it would be wrong to assume that just because we get a mouse move
5472 // event that the mouse is inside the window: although this is usually
5473 // true, it is not if we had captured the mouse, so we need to check
5474 // the mouse coordinates here
5475 if ( !HasCapture() || IsMouseInWindow() )
5477 // Generate an ENTER event
5478 m_mouseInWindow
= true;
5480 #ifdef HAVE_TRACKMOUSEEVENT
5481 typedef BOOL (WINAPI
*_TrackMouseEvent_t
)(LPTRACKMOUSEEVENT
);
5483 static const _TrackMouseEvent_t
5484 s_pfn_TrackMouseEvent
= _TrackMouseEvent
;
5485 #else // !__WXWINCE__
5486 static _TrackMouseEvent_t s_pfn_TrackMouseEvent
;
5487 static bool s_initDone
= false;
5490 // see comment in wxApp::GetComCtl32Version() explaining the
5491 // use of wxLoadedDLL
5492 wxLoadedDLL
dllComCtl32(wxT("comctl32.dll"));
5493 if ( dllComCtl32
.IsLoaded() )
5495 s_pfn_TrackMouseEvent
= (_TrackMouseEvent_t
)
5496 dllComCtl32
.RawGetSymbol(wxT("_TrackMouseEvent"));
5502 if ( s_pfn_TrackMouseEvent
)
5503 #endif // __WXWINCE__/!__WXWINCE__
5505 WinStruct
<TRACKMOUSEEVENT
> trackinfo
;
5507 trackinfo
.dwFlags
= TME_LEAVE
;
5508 trackinfo
.hwndTrack
= GetHwnd();
5510 (*s_pfn_TrackMouseEvent
)(&trackinfo
);
5512 #endif // HAVE_TRACKMOUSEEVENT
5514 wxMouseEvent
event(wxEVT_ENTER_WINDOW
);
5515 InitMouseEvent(event
, x
, y
, flags
);
5517 (void)HandleWindowEvent(event
);
5520 #ifdef HAVE_TRACKMOUSEEVENT
5521 else // mouse not in window
5523 // Check if we need to send a LEAVE event
5524 // Windows doesn't send WM_MOUSELEAVE if the mouse has been captured so
5525 // send it here if we are using native mouse leave tracking
5526 if ( HasCapture() && !IsMouseInWindow() )
5528 GenerateMouseLeave();
5531 #endif // HAVE_TRACKMOUSEEVENT
5533 #if wxUSE_MOUSEEVENT_HACK
5534 // Windows often generates mouse events even if mouse position hasn't
5535 // changed (http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/66576)
5537 // Filter this out as it can result in unexpected behaviour compared to
5539 if ( gs_lastMouseEvent
.type
== wxEVT_RIGHT_DOWN
||
5540 gs_lastMouseEvent
.type
== wxEVT_LEFT_DOWN
||
5541 gs_lastMouseEvent
.type
== wxEVT_MIDDLE_DOWN
||
5542 gs_lastMouseEvent
.type
== wxEVT_MOTION
)
5544 if ( ClientToScreen(wxPoint(x
, y
)) == gs_lastMouseEvent
.pos
)
5546 gs_lastMouseEvent
.type
= wxEVT_MOTION
;
5551 #endif // wxUSE_MOUSEEVENT_HACK
5553 return HandleMouseEvent(WM_MOUSEMOVE
, x
, y
, flags
);
5557 bool wxWindowMSW::HandleMouseWheel(WXWPARAM wParam
, WXLPARAM lParam
)
5559 #if wxUSE_MOUSEWHEEL
5560 // notice that WM_MOUSEWHEEL position is in screen coords (as it's
5561 // forwarded up to the parent by DefWindowProc()) and not in the client
5562 // ones as all the other messages, translate them to the client coords for
5565 pt
= ScreenToClient(wxPoint(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
)));
5566 wxMouseEvent
event(wxEVT_MOUSEWHEEL
);
5567 InitMouseEvent(event
, pt
.x
, pt
.y
, LOWORD(wParam
));
5568 event
.m_wheelRotation
= (short)HIWORD(wParam
);
5569 event
.m_wheelDelta
= WHEEL_DELTA
;
5571 static int s_linesPerRotation
= -1;
5572 if ( s_linesPerRotation
== -1 )
5574 if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES
, 0,
5575 &s_linesPerRotation
, 0))
5577 // this is not supposed to happen
5578 wxLogLastError(wxT("SystemParametersInfo(GETWHEELSCROLLLINES)"));
5580 // the default is 3, so use it if SystemParametersInfo() failed
5581 s_linesPerRotation
= 3;
5585 event
.m_linesPerAction
= s_linesPerRotation
;
5586 return HandleWindowEvent(event
);
5588 #else // !wxUSE_MOUSEWHEEL
5589 wxUnusedVar(wParam
);
5590 wxUnusedVar(lParam
);
5593 #endif // wxUSE_MOUSEWHEEL/!wxUSE_MOUSEWHEEL
5596 void wxWindowMSW::GenerateMouseLeave()
5598 m_mouseInWindow
= false;
5601 if ( wxIsShiftDown() )
5603 if ( wxIsCtrlDown() )
5604 state
|= MK_CONTROL
;
5606 // Only the high-order bit should be tested
5607 if ( GetKeyState( VK_LBUTTON
) & (1<<15) )
5608 state
|= MK_LBUTTON
;
5609 if ( GetKeyState( VK_MBUTTON
) & (1<<15) )
5610 state
|= MK_MBUTTON
;
5611 if ( GetKeyState( VK_RBUTTON
) & (1<<15) )
5612 state
|= MK_RBUTTON
;
5616 if ( !::GetCursorPosWinCE(&pt
) )
5618 if ( !::GetCursorPos(&pt
) )
5621 wxLogLastError(wxT("GetCursorPos"));
5624 // we need to have client coordinates here for symmetry with
5625 // wxEVT_ENTER_WINDOW
5626 RECT rect
= wxGetWindowRect(GetHwnd());
5630 wxMouseEvent
event(wxEVT_LEAVE_WINDOW
);
5631 InitMouseEvent(event
, pt
.x
, pt
.y
, state
);
5633 (void)HandleWindowEvent(event
);
5636 // ---------------------------------------------------------------------------
5637 // keyboard handling
5638 // ---------------------------------------------------------------------------
5643 // Implementation of InitAnyKeyEvent() which can also be used when there is no
5644 // associated window: this can happen for the wxEVT_CHAR_HOOK events created by
5645 // the global keyboard hook (e.g. the event might have happened in a non-wx
5648 MSWInitAnyKeyEvent(wxKeyEvent
& event
,
5651 const wxWindow
*win
/* may be NULL */)
5655 event
.SetId(win
->GetId());
5656 event
.SetEventObject(const_cast<wxWindow
*>(win
));
5658 else // No associated window.
5660 // Use wxID_ANY for compatibility with the old code even if wxID_NONE
5661 // would arguably make more sense.
5662 event
.SetId(wxID_ANY
);
5665 event
.m_shiftDown
= wxIsShiftDown();
5666 event
.m_controlDown
= wxIsCtrlDown();
5667 event
.m_altDown
= (HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
;
5669 event
.m_rawCode
= (wxUint32
) wParam
;
5670 event
.m_rawFlags
= (wxUint32
) lParam
;
5672 event
.SetTimestamp(::GetMessageTime());
5675 // Event coordinates must be in window client coordinates system which
5676 // doesn't make sense if there is no window.
5678 // We could use screen coordinates for such events but this would make the
5679 // logic of the event handlers more complicated: you'd need to test for the
5680 // event object and interpret the coordinates differently according to
5681 // whether it's NULL or not so unless somebody really asks for this let's
5682 // just avoid the issue.
5685 const wxPoint mousePos
= win
->ScreenToClient(wxGetMousePosition());
5686 event
.m_x
= mousePos
.x
;
5687 event
.m_y
= mousePos
.y
;
5691 } // anonymous namespace
5694 wxWindowMSW::InitAnyKeyEvent(wxKeyEvent
& event
,
5696 WXLPARAM lParam
) const
5698 MSWInitAnyKeyEvent(event
, wParam
, lParam
, this);
5702 wxWindowMSW::CreateKeyEvent(wxEventType evType
,
5704 WXLPARAM lParam
) const
5706 // Catch any attempts to use this with WM_CHAR, it wouldn't work because
5707 // wParam is supposed to be a virtual key and not a character here.
5708 wxASSERT_MSG( evType
!= wxEVT_CHAR
&& evType
!= wxEVT_CHAR_HOOK
,
5709 "CreateKeyEvent() can't be used for char events" );
5711 wxKeyEvent
event(evType
);
5712 InitAnyKeyEvent(event
, wParam
, lParam
);
5714 event
.m_keyCode
= wxMSWKeyboard::VKToWX
5720 #endif // wxUSE_UNICODE
5726 // isASCII is true only when we're called from WM_CHAR handler and not from
5728 bool wxWindowMSW::HandleChar(WXWPARAM wParam
, WXLPARAM lParam
)
5730 wxKeyEvent
event(wxEVT_CHAR
);
5731 InitAnyKeyEvent(event
, wParam
, lParam
);
5734 // TODO: wParam uses UTF-16 so this is incorrect for characters outside of
5735 // the BMP, we should use WM_UNICHAR to handle them.
5736 event
.m_uniChar
= wParam
;
5737 #endif // wxUSE_UNICODE
5739 // Set non-Unicode key code too for compatibility if possible.
5740 if ( wParam
< 0x80 )
5742 // It's an ASCII character, no need to translate it.
5743 event
.m_keyCode
= wParam
;
5747 // Check if this key can be represented (as a single character) in the
5749 const wchar_t wc
= wParam
;
5751 if ( wxConvLibc
.FromWChar(&ch
, 1, &wc
, 1) != wxCONV_FAILED
)
5753 // For compatibility continue to provide the key code in this field
5754 // even though using GetUnicodeKey() is recommended now.
5755 event
.m_keyCode
= static_cast<unsigned char>(ch
);
5757 //else: Key can't be represented in the current locale, leave m_keyCode
5758 // as WXK_NONE and use GetUnicodeKey() to access the character.
5761 // the alphanumeric keys produced by pressing AltGr+something on European
5762 // keyboards have both Ctrl and Alt modifiers which may confuse the user
5763 // code as, normally, keys with Ctrl and/or Alt don't result in anything
5764 // alphanumeric, so pretend that there are no modifiers at all (the
5765 // KEY_DOWN event would still have the correct modifiers if they're really
5767 if ( event
.m_controlDown
&& event
.m_altDown
&&
5768 (event
.m_keyCode
>= 32 && event
.m_keyCode
< 256) )
5770 event
.m_controlDown
=
5771 event
.m_altDown
= false;
5774 return HandleWindowEvent(event
);
5777 bool wxWindowMSW::HandleKeyDown(WXWPARAM wParam
, WXLPARAM lParam
)
5779 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_DOWN
, wParam
, lParam
));
5780 return HandleWindowEvent(event
);
5783 bool wxWindowMSW::HandleKeyUp(WXWPARAM wParam
, WXLPARAM lParam
)
5785 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_UP
, wParam
, lParam
));
5786 return HandleWindowEvent(event
);
5790 int wxWindowMSW::HandleMenuChar(int WXUNUSED_IN_WINCE(chAccel
),
5791 WXLPARAM
WXUNUSED_IN_WINCE(lParam
))
5793 // FIXME: implement GetMenuItemCount for WinCE, possibly
5794 // in terms of GetMenuItemInfo
5796 const HMENU hmenu
= (HMENU
)lParam
;
5800 mii
.cbSize
= sizeof(MENUITEMINFO
);
5802 // we could use MIIM_FTYPE here as we only need to know if the item is
5803 // ownerdrawn or not and not dwTypeData which MIIM_TYPE also returns, but
5804 // MIIM_FTYPE is not supported under Win95
5805 mii
.fMask
= MIIM_TYPE
| MIIM_DATA
;
5807 // find if we have this letter in any owner drawn item
5808 const int count
= ::GetMenuItemCount(hmenu
);
5809 for ( int i
= 0; i
< count
; i
++ )
5811 // previous loop iteration could modify it, reset it back before
5812 // calling GetMenuItemInfo() to prevent it from overflowing dwTypeData
5815 if ( ::GetMenuItemInfo(hmenu
, i
, TRUE
, &mii
) )
5817 if ( mii
.fType
== MFT_OWNERDRAW
)
5819 // dwItemData member of the MENUITEMINFO is a
5820 // pointer to the associated wxMenuItem -- see the
5821 // menu creation code
5822 wxMenuItem
*item
= (wxMenuItem
*)mii
.dwItemData
;
5824 const wxString
label(item
->GetItemLabel());
5825 const wxChar
*p
= wxStrchr(label
.wx_str(), wxT('&'));
5828 if ( *p
== wxT('&') )
5830 // this is not the accel char, find the real one
5831 p
= wxStrchr(p
+ 1, wxT('&'));
5833 else // got the accel char
5835 // FIXME-UNICODE: this comparison doesn't risk to work
5836 // for non ASCII accelerator characters I'm afraid, but
5838 if ( (wchar_t)wxToupper(*p
) == (wchar_t)chAccel
)
5844 // this one doesn't match
5851 else // failed to get the menu text?
5853 // it's not fatal, so don't show error, but still log it
5854 wxLogLastError(wxT("GetMenuItemInfo"));
5861 #endif // wxUSE_MENUS
5863 bool wxWindowMSW::HandleClipboardEvent(WXUINT nMsg
)
5865 const wxEventType type
= nMsg
== WM_CUT
? wxEVT_COMMAND_TEXT_CUT
5866 : nMsg
== WM_COPY
? wxEVT_COMMAND_TEXT_COPY
5867 : /* nMsg == WM_PASTE */ wxEVT_COMMAND_TEXT_PASTE
;
5868 wxClipboardTextEvent
evt(type
, GetId());
5870 evt
.SetEventObject(this);
5872 return HandleWindowEvent(evt
);
5875 // ---------------------------------------------------------------------------
5877 // ---------------------------------------------------------------------------
5879 bool wxWindowMSW::HandleJoystickEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
5883 if ( flags
& JOY_BUTTON1CHG
)
5884 change
= wxJOY_BUTTON1
;
5885 if ( flags
& JOY_BUTTON2CHG
)
5886 change
= wxJOY_BUTTON2
;
5887 if ( flags
& JOY_BUTTON3CHG
)
5888 change
= wxJOY_BUTTON3
;
5889 if ( flags
& JOY_BUTTON4CHG
)
5890 change
= wxJOY_BUTTON4
;
5893 if ( flags
& JOY_BUTTON1
)
5894 buttons
|= wxJOY_BUTTON1
;
5895 if ( flags
& JOY_BUTTON2
)
5896 buttons
|= wxJOY_BUTTON2
;
5897 if ( flags
& JOY_BUTTON3
)
5898 buttons
|= wxJOY_BUTTON3
;
5899 if ( flags
& JOY_BUTTON4
)
5900 buttons
|= wxJOY_BUTTON4
;
5902 // the event ids aren't consecutive so we can't use table based lookup
5904 wxEventType eventType
;
5909 eventType
= wxEVT_JOY_MOVE
;
5914 eventType
= wxEVT_JOY_MOVE
;
5919 eventType
= wxEVT_JOY_ZMOVE
;
5924 eventType
= wxEVT_JOY_ZMOVE
;
5927 case MM_JOY1BUTTONDOWN
:
5929 eventType
= wxEVT_JOY_BUTTON_DOWN
;
5932 case MM_JOY2BUTTONDOWN
:
5934 eventType
= wxEVT_JOY_BUTTON_DOWN
;
5937 case MM_JOY1BUTTONUP
:
5939 eventType
= wxEVT_JOY_BUTTON_UP
;
5942 case MM_JOY2BUTTONUP
:
5944 eventType
= wxEVT_JOY_BUTTON_UP
;
5948 wxFAIL_MSG(wxT("no such joystick event"));
5953 wxJoystickEvent
event(eventType
, buttons
, joystick
, change
);
5954 event
.SetPosition(wxPoint(x
, y
));
5955 event
.SetEventObject(this);
5957 return HandleWindowEvent(event
);
5967 // ---------------------------------------------------------------------------
5969 // ---------------------------------------------------------------------------
5971 bool wxWindowMSW::MSWOnScroll(int orientation
, WXWORD wParam
,
5972 WXWORD pos
, WXHWND control
)
5974 if ( control
&& control
!= m_hWnd
) // Prevent infinite recursion
5976 wxWindow
*child
= wxFindWinFromHandle(control
);
5978 return child
->MSWOnScroll(orientation
, wParam
, pos
, control
);
5981 wxScrollWinEvent event
;
5982 event
.SetPosition(pos
);
5983 event
.SetOrientation(orientation
);
5984 event
.SetEventObject(this);
5989 event
.SetEventType(wxEVT_SCROLLWIN_TOP
);
5993 event
.SetEventType(wxEVT_SCROLLWIN_BOTTOM
);
5997 event
.SetEventType(wxEVT_SCROLLWIN_LINEUP
);
6001 event
.SetEventType(wxEVT_SCROLLWIN_LINEDOWN
);
6005 event
.SetEventType(wxEVT_SCROLLWIN_PAGEUP
);
6009 event
.SetEventType(wxEVT_SCROLLWIN_PAGEDOWN
);
6012 case SB_THUMBPOSITION
:
6014 // under Win32, the scrollbar range and position are 32 bit integers,
6015 // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must
6016 // explicitly query the scrollbar for the correct position (this must
6017 // be done only for these two SB_ events as they are the only one
6018 // carrying the scrollbar position)
6020 WinStruct
<SCROLLINFO
> scrollInfo
;
6021 scrollInfo
.fMask
= SIF_TRACKPOS
;
6023 if ( !::GetScrollInfo(GetHwnd(),
6024 WXOrientToSB(orientation
),
6027 // Not necessarily an error, if there are no scrollbars yet.
6028 // wxLogLastError(wxT("GetScrollInfo"));
6031 event
.SetPosition(scrollInfo
.nTrackPos
);
6034 event
.SetEventType( wParam
== SB_THUMBPOSITION
6035 ? wxEVT_SCROLLWIN_THUMBRELEASE
6036 : wxEVT_SCROLLWIN_THUMBTRACK
);
6043 return HandleWindowEvent(event
);
6046 // ----------------------------------------------------------------------------
6047 // custom message handlers
6048 // ----------------------------------------------------------------------------
6051 wxWindowMSW::MSWRegisterMessageHandler(int msg
, MSWMessageHandler handler
)
6053 wxCHECK_MSG( gs_messageHandlers
.find(msg
) == gs_messageHandlers
.end(),
6054 false, wxT("registering handler for the same message twice") );
6056 gs_messageHandlers
[msg
] = handler
;
6061 wxWindowMSW::MSWUnregisterMessageHandler(int msg
, MSWMessageHandler handler
)
6063 const MSWMessageHandlers::iterator i
= gs_messageHandlers
.find(msg
);
6064 wxCHECK_RET( i
!= gs_messageHandlers
.end() && i
->second
== handler
,
6065 wxT("unregistering non-registered handler?") );
6067 gs_messageHandlers
.erase(i
);
6070 // ===========================================================================
6072 // ===========================================================================
6074 void wxGetCharSize(WXHWND wnd
, int *x
, int *y
, const wxFont
& the_font
)
6077 HDC dc
= ::GetDC((HWND
) wnd
);
6080 // the_font.UseResource();
6081 // the_font.RealizeResource();
6082 HFONT fnt
= (HFONT
)the_font
.GetResourceHandle(); // const_cast
6084 was
= (HFONT
) SelectObject(dc
,fnt
);
6086 GetTextMetrics(dc
, &tm
);
6089 SelectObject(dc
,was
);
6091 ReleaseDC((HWND
)wnd
, dc
);
6094 *x
= tm
.tmAveCharWidth
;
6096 *y
= tm
.tmHeight
+ tm
.tmExternalLeading
;
6098 // the_font.ReleaseResource();
6101 // ----------------------------------------------------------------------------
6103 // ----------------------------------------------------------------------------
6105 namespace wxMSWKeyboard
6111 // use the "extended" bit of lParam to distinguish extended keys from normal
6112 // keys as the same virtual key code is sent for both by Windows
6114 int ChooseNormalOrExtended(int lParam
, int keyNormal
, int keyExtended
)
6116 // except that if lParam is 0, it means we don't have real lParam from
6117 // WM_KEYDOWN but are just translating just a VK constant (e.g. done from
6118 // msw/treectrl.cpp when processing TVN_KEYDOWN) -- then assume this is a
6119 // non-numpad (hence extended) key as this is a more common case
6120 return !lParam
|| (HIWORD(lParam
) & KF_EXTENDED
) ? keyExtended
: keyNormal
;
6123 // this array contains the Windows virtual key codes which map one to one to
6124 // WXK_xxx constants and is used in wxMSWKeyboard::VKToWX/WXToVK() below
6126 // note that keys having a normal and numpad version (e.g. WXK_HOME and
6127 // WXK_NUMPAD_HOME) are not included in this table as the mapping is not 1-to-1
6128 const struct wxKeyMapping
6132 } gs_specialKeys
[] =
6134 { VK_CANCEL
, WXK_CANCEL
},
6135 { VK_BACK
, WXK_BACK
},
6136 { VK_TAB
, WXK_TAB
},
6137 { VK_CLEAR
, WXK_CLEAR
},
6138 { VK_SHIFT
, WXK_SHIFT
},
6139 { VK_CONTROL
, WXK_CONTROL
},
6140 { VK_MENU
, WXK_ALT
},
6141 { VK_PAUSE
, WXK_PAUSE
},
6142 { VK_CAPITAL
, WXK_CAPITAL
},
6143 { VK_SPACE
, WXK_SPACE
},
6144 { VK_ESCAPE
, WXK_ESCAPE
},
6145 { VK_SELECT
, WXK_SELECT
},
6146 { VK_PRINT
, WXK_PRINT
},
6147 { VK_EXECUTE
, WXK_EXECUTE
},
6148 { VK_SNAPSHOT
, WXK_SNAPSHOT
},
6149 { VK_HELP
, WXK_HELP
},
6151 { VK_NUMPAD0
, WXK_NUMPAD0
},
6152 { VK_NUMPAD1
, WXK_NUMPAD1
},
6153 { VK_NUMPAD2
, WXK_NUMPAD2
},
6154 { VK_NUMPAD3
, WXK_NUMPAD3
},
6155 { VK_NUMPAD4
, WXK_NUMPAD4
},
6156 { VK_NUMPAD5
, WXK_NUMPAD5
},
6157 { VK_NUMPAD6
, WXK_NUMPAD6
},
6158 { VK_NUMPAD7
, WXK_NUMPAD7
},
6159 { VK_NUMPAD8
, WXK_NUMPAD8
},
6160 { VK_NUMPAD9
, WXK_NUMPAD9
},
6161 { VK_MULTIPLY
, WXK_NUMPAD_MULTIPLY
},
6162 { VK_ADD
, WXK_NUMPAD_ADD
},
6163 { VK_SUBTRACT
, WXK_NUMPAD_SUBTRACT
},
6164 { VK_DECIMAL
, WXK_NUMPAD_DECIMAL
},
6165 { VK_DIVIDE
, WXK_NUMPAD_DIVIDE
},
6176 { VK_F10
, WXK_F10
},
6177 { VK_F11
, WXK_F11
},
6178 { VK_F12
, WXK_F12
},
6179 { VK_F13
, WXK_F13
},
6180 { VK_F14
, WXK_F14
},
6181 { VK_F15
, WXK_F15
},
6182 { VK_F16
, WXK_F16
},
6183 { VK_F17
, WXK_F17
},
6184 { VK_F18
, WXK_F18
},
6185 { VK_F19
, WXK_F19
},
6186 { VK_F20
, WXK_F20
},
6187 { VK_F21
, WXK_F21
},
6188 { VK_F22
, WXK_F22
},
6189 { VK_F23
, WXK_F23
},
6190 { VK_F24
, WXK_F24
},
6192 { VK_NUMLOCK
, WXK_NUMLOCK
},
6193 { VK_SCROLL
, WXK_SCROLL
},
6196 { VK_LWIN
, WXK_WINDOWS_LEFT
},
6197 { VK_RWIN
, WXK_WINDOWS_RIGHT
},
6198 { VK_APPS
, WXK_WINDOWS_MENU
},
6199 #endif // VK_APPS defined
6202 } // anonymous namespace
6204 int VKToWX(WXWORD vk
, WXLPARAM lParam
, wchar_t *uc
)
6208 // check the table first
6209 for ( size_t n
= 0; n
< WXSIZEOF(gs_specialKeys
); n
++ )
6211 if ( gs_specialKeys
[n
].vk
== vk
)
6213 wxk
= gs_specialKeys
[n
].wxk
;
6214 if ( wxk
< WXK_START
)
6216 // Unicode code for this key is the same as its ASCII code.
6225 // keys requiring special handling
6239 // MapVirtualKey() returns 0 if it fails to convert the virtual
6240 // key which nicely corresponds to our WXK_NONE.
6241 wxk
= ::MapVirtualKey(vk
, MAPVK_VK_TO_CHAR
);
6243 if ( HIWORD(wxk
) & 0x8000 )
6245 // It's a dead key and we don't return anything at all for them
6246 // as we simply don't have any way to indicate the difference
6247 // between e.g. a normal "'" and "'" as a dead key -- and
6248 // generating the same events for them just doesn't seem like a
6253 // In any case return this as a Unicode character value.
6257 // For compatibility with the old non-Unicode code we continue
6258 // returning key codes for Latin-1 characters directly
6259 // (normally it would really only make sense to do it for the
6260 // ASCII characters, not Latin-1 ones).
6263 // But for anything beyond this we can only return the key
6264 // value as a real Unicode character, not a wxKeyCode
6265 // because this enum values clash with Unicode characters
6266 // (e.g. WXK_LBUTTON also happens to be U+012C a.k.a.
6267 // "LATIN CAPITAL LETTER I WITH BREVE").
6272 // handle extended keys
6274 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_PAGEUP
, WXK_PAGEUP
);
6278 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_PAGEDOWN
, WXK_PAGEDOWN
);
6282 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_END
, WXK_END
);
6286 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_HOME
, WXK_HOME
);
6290 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_LEFT
, WXK_LEFT
);
6294 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_UP
, WXK_UP
);
6298 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_RIGHT
, WXK_RIGHT
);
6302 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_DOWN
, WXK_DOWN
);
6306 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_INSERT
, WXK_INSERT
);
6310 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_DELETE
, WXK_DELETE
);
6314 // don't use ChooseNormalOrExtended() here as the keys are reversed
6315 // here: numpad enter is the extended one
6316 wxk
= HIWORD(lParam
) & KF_EXTENDED
? WXK_NUMPAD_ENTER
: WXK_RETURN
;
6320 if ( (vk
>= '0' && vk
<= '9') || (vk
>= 'A' && vk
<= 'Z') )
6322 // A simple alphanumeric key and the values of them coincide in
6323 // Windows and wx for both ASCII and Unicode codes.
6326 else // Something we simply don't know about at all.
6338 WXWORD
WXToVK(int wxk
, bool *isExtended
)
6340 // check the table first
6341 for ( size_t n
= 0; n
< WXSIZEOF(gs_specialKeys
); n
++ )
6343 if ( gs_specialKeys
[n
].wxk
== wxk
)
6345 // All extended keys (i.e. non-numpad versions of the keys that
6346 // exist both in the numpad and outside of it) are dealt with
6349 *isExtended
= false;
6351 return gs_specialKeys
[n
].vk
;
6355 // and then check for special keys not included in the table
6356 bool extended
= false;
6362 case WXK_NUMPAD_PAGEUP
:
6368 case WXK_NUMPAD_PAGEDOWN
:
6374 case WXK_NUMPAD_END
:
6380 case WXK_NUMPAD_HOME
:
6386 case WXK_NUMPAD_LEFT
:
6398 case WXK_NUMPAD_RIGHT
:
6404 case WXK_NUMPAD_DOWN
:
6410 case WXK_NUMPAD_INSERT
:
6416 case WXK_NUMPAD_DELETE
:
6421 // no VkKeyScan() under CE unfortunately, we need to test how does
6422 // it handle OEM keys
6424 // check to see if its one of the OEM key codes.
6425 BYTE vks
= LOBYTE(VkKeyScan(wxk
));
6431 #endif // !__WXWINCE__
6438 *isExtended
= extended
;
6443 } // namespace wxMSWKeyboard
6445 // small helper for wxGetKeyState() and wxGetMouseState()
6446 static inline bool wxIsKeyDown(WXWORD vk
)
6448 // SM_SWAPBUTTON is not available under CE, so don't swap buttons there
6449 #ifdef SM_SWAPBUTTON
6450 if ( vk
== VK_LBUTTON
|| vk
== VK_RBUTTON
)
6452 if ( ::GetSystemMetrics(SM_SWAPBUTTON
) )
6454 if ( vk
== VK_LBUTTON
)
6456 else // vk == VK_RBUTTON
6460 #endif // SM_SWAPBUTTON
6462 // the low order bit indicates whether the key was pressed since the last
6463 // call and the high order one indicates whether it is down right now and
6464 // we only want that one
6465 return (GetAsyncKeyState(vk
) & (1<<15)) != 0;
6468 bool wxGetKeyState(wxKeyCode key
)
6470 // although this does work under Windows, it is not supported under other
6471 // platforms so don't allow it, you must use wxGetMouseState() instead
6472 wxASSERT_MSG( key
!= VK_LBUTTON
&&
6473 key
!= VK_RBUTTON
&&
6475 wxT("can't use wxGetKeyState() for mouse buttons") );
6477 const WXWORD vk
= wxMSWKeyboard::WXToVK(key
);
6479 // if the requested key is a LED key, return true if the led is pressed
6480 if ( key
== WXK_NUMLOCK
|| key
== WXK_CAPITAL
|| key
== WXK_SCROLL
)
6482 // low order bit means LED is highlighted and high order one means the
6483 // key is down; for compatibility with the other ports return true if
6484 // either one is set
6485 return GetKeyState(vk
) != 0;
6490 return wxIsKeyDown(vk
);
6495 wxMouseState
wxGetMouseState()
6499 GetCursorPos( &pt
);
6503 ms
.SetLeftDown(wxIsKeyDown(VK_LBUTTON
));
6504 ms
.SetMiddleDown(wxIsKeyDown(VK_MBUTTON
));
6505 ms
.SetRightDown(wxIsKeyDown(VK_RBUTTON
));
6506 #ifdef wxHAS_XBUTTON
6507 ms
.SetAux1Down(wxIsKeyDown(VK_XBUTTON1
));
6508 ms
.SetAux2Down(wxIsKeyDown(VK_XBUTTON2
));
6509 #endif // wxHAS_XBUTTON
6511 ms
.SetControlDown(wxIsCtrlDown ());
6512 ms
.SetShiftDown (wxIsShiftDown());
6513 ms
.SetAltDown (wxIsAltDown ());
6514 // ms.SetMetaDown();
6520 wxWindow
*wxGetActiveWindow()
6522 HWND hWnd
= GetActiveWindow();
6525 return wxFindWinFromHandle(hWnd
);
6530 extern wxWindow
*wxGetWindowFromHWND(WXHWND hWnd
)
6532 HWND hwnd
= (HWND
)hWnd
;
6534 // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set
6535 // by code in msw/radiobox.cpp), for all the others we just search up the
6537 wxWindow
*win
= NULL
;
6540 win
= wxFindWinFromHandle(hwnd
);
6544 // native radiobuttons return DLGC_RADIOBUTTON here and for any
6545 // wxWindow class which overrides WM_GETDLGCODE processing to
6546 // do it as well, win would be already non NULL
6547 if ( ::SendMessage(hwnd
, WM_GETDLGCODE
, 0, 0) & DLGC_RADIOBUTTON
)
6549 win
= (wxWindow
*)wxGetWindowUserData(hwnd
);
6551 //else: it's a wxRadioButton, not a radiobutton from wxRadioBox
6552 #endif // wxUSE_RADIOBOX
6554 // spin control text buddy window should be mapped to spin ctrl
6555 // itself so try it too
6556 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
6559 win
= wxSpinCtrl::GetSpinForTextCtrl((WXHWND
)hwnd
);
6561 #endif // wxUSE_SPINCTRL
6565 while ( hwnd
&& !win
)
6567 // this is a really ugly hack needed to avoid mistakenly returning the
6568 // parent frame wxWindow for the find/replace modeless dialog HWND -
6569 // this, in turn, is needed to call IsDialogMessage() from
6570 // wxApp::ProcessMessage() as for this we must return NULL from here
6572 // FIXME: this is clearly not the best way to do it but I think we'll
6573 // need to change HWND <-> wxWindow code more heavily than I can
6574 // do it now to fix it
6575 #ifndef __WXMICROWIN__
6576 if ( ::GetWindow(hwnd
, GW_OWNER
) )
6578 // it's a dialog box, don't go upwards
6583 hwnd
= ::GetParent(hwnd
);
6584 win
= wxFindWinFromHandle(hwnd
);
6590 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
6592 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
6593 // in active frames and dialogs, regardless of where the focus is.
6594 static HHOOK wxTheKeyboardHook
= 0;
6597 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
)
6599 DWORD hiWord
= HIWORD(lParam
);
6600 if ( nCode
!= HC_NOREMOVE
&& ((hiWord
& KF_UP
) == 0) )
6603 int id
= wxMSWKeyboard::VKToWX(wParam
, lParam
, &uc
);
6606 || static_cast<int>(uc
) != WXK_NONE
6607 #endif // wxUSE_UNICODE
6610 const wxWindow
* const win
= wxGetActiveWindow();
6612 wxKeyEvent
event(wxEVT_CHAR_HOOK
);
6613 MSWInitAnyKeyEvent(event
, wParam
, lParam
, win
);
6615 event
.m_keyCode
= id
;
6617 event
.m_uniChar
= uc
;
6618 #endif // wxUSE_UNICODE
6620 wxEvtHandler
* const handler
= win
? win
->GetEventHandler()
6623 if ( handler
&& handler
->ProcessEvent(event
) )
6631 return (int)CallNextHookEx(wxTheKeyboardHook
, nCode
, wParam
, lParam
);
6634 void wxSetKeyboardHook(bool doIt
)
6638 wxTheKeyboardHook
= ::SetWindowsHookEx
6641 (HOOKPROC
)wxKeyboardHook
,
6642 NULL
, // must be NULL for process hook
6643 ::GetCurrentThreadId()
6645 if ( !wxTheKeyboardHook
)
6647 wxLogLastError(wxT("SetWindowsHookEx(wxKeyboardHook)"));
6652 if ( wxTheKeyboardHook
)
6653 ::UnhookWindowsHookEx(wxTheKeyboardHook
);
6657 #endif // !__WXMICROWIN__
6659 #if wxDEBUG_LEVEL >= 2
6660 const wxChar
*wxGetMessageName(int message
)
6664 case 0x0000: return wxT("WM_NULL");
6665 case 0x0001: return wxT("WM_CREATE");
6666 case 0x0002: return wxT("WM_DESTROY");
6667 case 0x0003: return wxT("WM_MOVE");
6668 case 0x0005: return wxT("WM_SIZE");
6669 case 0x0006: return wxT("WM_ACTIVATE");
6670 case 0x0007: return wxT("WM_SETFOCUS");
6671 case 0x0008: return wxT("WM_KILLFOCUS");
6672 case 0x000A: return wxT("WM_ENABLE");
6673 case 0x000B: return wxT("WM_SETREDRAW");
6674 case 0x000C: return wxT("WM_SETTEXT");
6675 case 0x000D: return wxT("WM_GETTEXT");
6676 case 0x000E: return wxT("WM_GETTEXTLENGTH");
6677 case 0x000F: return wxT("WM_PAINT");
6678 case 0x0010: return wxT("WM_CLOSE");
6679 case 0x0011: return wxT("WM_QUERYENDSESSION");
6680 case 0x0012: return wxT("WM_QUIT");
6681 case 0x0013: return wxT("WM_QUERYOPEN");
6682 case 0x0014: return wxT("WM_ERASEBKGND");
6683 case 0x0015: return wxT("WM_SYSCOLORCHANGE");
6684 case 0x0016: return wxT("WM_ENDSESSION");
6685 case 0x0017: return wxT("WM_SYSTEMERROR");
6686 case 0x0018: return wxT("WM_SHOWWINDOW");
6687 case 0x0019: return wxT("WM_CTLCOLOR");
6688 case 0x001A: return wxT("WM_WININICHANGE");
6689 case 0x001B: return wxT("WM_DEVMODECHANGE");
6690 case 0x001C: return wxT("WM_ACTIVATEAPP");
6691 case 0x001D: return wxT("WM_FONTCHANGE");
6692 case 0x001E: return wxT("WM_TIMECHANGE");
6693 case 0x001F: return wxT("WM_CANCELMODE");
6694 case 0x0020: return wxT("WM_SETCURSOR");
6695 case 0x0021: return wxT("WM_MOUSEACTIVATE");
6696 case 0x0022: return wxT("WM_CHILDACTIVATE");
6697 case 0x0023: return wxT("WM_QUEUESYNC");
6698 case 0x0024: return wxT("WM_GETMINMAXINFO");
6699 case 0x0026: return wxT("WM_PAINTICON");
6700 case 0x0027: return wxT("WM_ICONERASEBKGND");
6701 case 0x0028: return wxT("WM_NEXTDLGCTL");
6702 case 0x002A: return wxT("WM_SPOOLERSTATUS");
6703 case 0x002B: return wxT("WM_DRAWITEM");
6704 case 0x002C: return wxT("WM_MEASUREITEM");
6705 case 0x002D: return wxT("WM_DELETEITEM");
6706 case 0x002E: return wxT("WM_VKEYTOITEM");
6707 case 0x002F: return wxT("WM_CHARTOITEM");
6708 case 0x0030: return wxT("WM_SETFONT");
6709 case 0x0031: return wxT("WM_GETFONT");
6710 case 0x0037: return wxT("WM_QUERYDRAGICON");
6711 case 0x0039: return wxT("WM_COMPAREITEM");
6712 case 0x0041: return wxT("WM_COMPACTING");
6713 case 0x0044: return wxT("WM_COMMNOTIFY");
6714 case 0x0046: return wxT("WM_WINDOWPOSCHANGING");
6715 case 0x0047: return wxT("WM_WINDOWPOSCHANGED");
6716 case 0x0048: return wxT("WM_POWER");
6718 case 0x004A: return wxT("WM_COPYDATA");
6719 case 0x004B: return wxT("WM_CANCELJOURNAL");
6720 case 0x004E: return wxT("WM_NOTIFY");
6721 case 0x0050: return wxT("WM_INPUTLANGCHANGEREQUEST");
6722 case 0x0051: return wxT("WM_INPUTLANGCHANGE");
6723 case 0x0052: return wxT("WM_TCARD");
6724 case 0x0053: return wxT("WM_HELP");
6725 case 0x0054: return wxT("WM_USERCHANGED");
6726 case 0x0055: return wxT("WM_NOTIFYFORMAT");
6727 case 0x007B: return wxT("WM_CONTEXTMENU");
6728 case 0x007C: return wxT("WM_STYLECHANGING");
6729 case 0x007D: return wxT("WM_STYLECHANGED");
6730 case 0x007E: return wxT("WM_DISPLAYCHANGE");
6731 case 0x007F: return wxT("WM_GETICON");
6732 case 0x0080: return wxT("WM_SETICON");
6734 case 0x0081: return wxT("WM_NCCREATE");
6735 case 0x0082: return wxT("WM_NCDESTROY");
6736 case 0x0083: return wxT("WM_NCCALCSIZE");
6737 case 0x0084: return wxT("WM_NCHITTEST");
6738 case 0x0085: return wxT("WM_NCPAINT");
6739 case 0x0086: return wxT("WM_NCACTIVATE");
6740 case 0x0087: return wxT("WM_GETDLGCODE");
6741 case 0x00A0: return wxT("WM_NCMOUSEMOVE");
6742 case 0x00A1: return wxT("WM_NCLBUTTONDOWN");
6743 case 0x00A2: return wxT("WM_NCLBUTTONUP");
6744 case 0x00A3: return wxT("WM_NCLBUTTONDBLCLK");
6745 case 0x00A4: return wxT("WM_NCRBUTTONDOWN");
6746 case 0x00A5: return wxT("WM_NCRBUTTONUP");
6747 case 0x00A6: return wxT("WM_NCRBUTTONDBLCLK");
6748 case 0x00A7: return wxT("WM_NCMBUTTONDOWN");
6749 case 0x00A8: return wxT("WM_NCMBUTTONUP");
6750 case 0x00A9: return wxT("WM_NCMBUTTONDBLCLK");
6752 case 0x00B0: return wxT("EM_GETSEL");
6753 case 0x00B1: return wxT("EM_SETSEL");
6754 case 0x00B2: return wxT("EM_GETRECT");
6755 case 0x00B3: return wxT("EM_SETRECT");
6756 case 0x00B4: return wxT("EM_SETRECTNP");
6757 case 0x00B5: return wxT("EM_SCROLL");
6758 case 0x00B6: return wxT("EM_LINESCROLL");
6759 case 0x00B7: return wxT("EM_SCROLLCARET");
6760 case 0x00B8: return wxT("EM_GETMODIFY");
6761 case 0x00B9: return wxT("EM_SETMODIFY");
6762 case 0x00BA: return wxT("EM_GETLINECOUNT");
6763 case 0x00BB: return wxT("EM_LINEINDEX");
6764 case 0x00BC: return wxT("EM_SETHANDLE");
6765 case 0x00BD: return wxT("EM_GETHANDLE");
6766 case 0x00BE: return wxT("EM_GETTHUMB");
6767 case 0x00C1: return wxT("EM_LINELENGTH");
6768 case 0x00C2: return wxT("EM_REPLACESEL");
6769 case 0x00C4: return wxT("EM_GETLINE");
6770 case 0x00C5: return wxT("EM_LIMITTEXT/EM_SETLIMITTEXT"); /* ;win40 Name change */
6771 case 0x00C6: return wxT("EM_CANUNDO");
6772 case 0x00C7: return wxT("EM_UNDO");
6773 case 0x00C8: return wxT("EM_FMTLINES");
6774 case 0x00C9: return wxT("EM_LINEFROMCHAR");
6775 case 0x00CB: return wxT("EM_SETTABSTOPS");
6776 case 0x00CC: return wxT("EM_SETPASSWORDCHAR");
6777 case 0x00CD: return wxT("EM_EMPTYUNDOBUFFER");
6778 case 0x00CE: return wxT("EM_GETFIRSTVISIBLELINE");
6779 case 0x00CF: return wxT("EM_SETREADONLY");
6780 case 0x00D0: return wxT("EM_SETWORDBREAKPROC");
6781 case 0x00D1: return wxT("EM_GETWORDBREAKPROC");
6782 case 0x00D2: return wxT("EM_GETPASSWORDCHAR");
6783 case 0x00D3: return wxT("EM_SETMARGINS");
6784 case 0x00D4: return wxT("EM_GETMARGINS");
6785 case 0x00D5: return wxT("EM_GETLIMITTEXT");
6786 case 0x00D6: return wxT("EM_POSFROMCHAR");
6787 case 0x00D7: return wxT("EM_CHARFROMPOS");
6788 case 0x00D8: return wxT("EM_SETIMESTATUS");
6789 case 0x00D9: return wxT("EM_GETIMESTATUS");
6791 case 0x0100: return wxT("WM_KEYDOWN");
6792 case 0x0101: return wxT("WM_KEYUP");
6793 case 0x0102: return wxT("WM_CHAR");
6794 case 0x0103: return wxT("WM_DEADCHAR");
6795 case 0x0104: return wxT("WM_SYSKEYDOWN");
6796 case 0x0105: return wxT("WM_SYSKEYUP");
6797 case 0x0106: return wxT("WM_SYSCHAR");
6798 case 0x0107: return wxT("WM_SYSDEADCHAR");
6799 case 0x0108: return wxT("WM_KEYLAST");
6801 case 0x010D: return wxT("WM_IME_STARTCOMPOSITION");
6802 case 0x010E: return wxT("WM_IME_ENDCOMPOSITION");
6803 case 0x010F: return wxT("WM_IME_COMPOSITION");
6805 case 0x0110: return wxT("WM_INITDIALOG");
6806 case 0x0111: return wxT("WM_COMMAND");
6807 case 0x0112: return wxT("WM_SYSCOMMAND");
6808 case 0x0113: return wxT("WM_TIMER");
6809 case 0x0114: return wxT("WM_HSCROLL");
6810 case 0x0115: return wxT("WM_VSCROLL");
6811 case 0x0116: return wxT("WM_INITMENU");
6812 case 0x0117: return wxT("WM_INITMENUPOPUP");
6813 case 0x011F: return wxT("WM_MENUSELECT");
6814 case 0x0120: return wxT("WM_MENUCHAR");
6815 case 0x0121: return wxT("WM_ENTERIDLE");
6817 case 0x0127: return wxT("WM_CHANGEUISTATE");
6818 case 0x0128: return wxT("WM_UPDATEUISTATE");
6819 case 0x0129: return wxT("WM_QUERYUISTATE");
6821 case 0x0132: return wxT("WM_CTLCOLORMSGBOX");
6822 case 0x0133: return wxT("WM_CTLCOLOREDIT");
6823 case 0x0134: return wxT("WM_CTLCOLORLISTBOX");
6824 case 0x0135: return wxT("WM_CTLCOLORBTN");
6825 case 0x0136: return wxT("WM_CTLCOLORDLG");
6826 case 0x0137: return wxT("WM_CTLCOLORSCROLLBAR");
6827 case 0x0138: return wxT("WM_CTLCOLORSTATIC");
6828 case 0x01E1: return wxT("MN_GETHMENU");
6830 case 0x0200: return wxT("WM_MOUSEMOVE");
6831 case 0x0201: return wxT("WM_LBUTTONDOWN");
6832 case 0x0202: return wxT("WM_LBUTTONUP");
6833 case 0x0203: return wxT("WM_LBUTTONDBLCLK");
6834 case 0x0204: return wxT("WM_RBUTTONDOWN");
6835 case 0x0205: return wxT("WM_RBUTTONUP");
6836 case 0x0206: return wxT("WM_RBUTTONDBLCLK");
6837 case 0x0207: return wxT("WM_MBUTTONDOWN");
6838 case 0x0208: return wxT("WM_MBUTTONUP");
6839 case 0x0209: return wxT("WM_MBUTTONDBLCLK");
6840 case 0x020A: return wxT("WM_MOUSEWHEEL");
6841 case 0x020B: return wxT("WM_XBUTTONDOWN");
6842 case 0x020C: return wxT("WM_XBUTTONUP");
6843 case 0x020D: return wxT("WM_XBUTTONDBLCLK");
6844 case 0x0210: return wxT("WM_PARENTNOTIFY");
6845 case 0x0211: return wxT("WM_ENTERMENULOOP");
6846 case 0x0212: return wxT("WM_EXITMENULOOP");
6848 case 0x0213: return wxT("WM_NEXTMENU");
6849 case 0x0214: return wxT("WM_SIZING");
6850 case 0x0215: return wxT("WM_CAPTURECHANGED");
6851 case 0x0216: return wxT("WM_MOVING");
6852 case 0x0218: return wxT("WM_POWERBROADCAST");
6853 case 0x0219: return wxT("WM_DEVICECHANGE");
6855 case 0x0220: return wxT("WM_MDICREATE");
6856 case 0x0221: return wxT("WM_MDIDESTROY");
6857 case 0x0222: return wxT("WM_MDIACTIVATE");
6858 case 0x0223: return wxT("WM_MDIRESTORE");
6859 case 0x0224: return wxT("WM_MDINEXT");
6860 case 0x0225: return wxT("WM_MDIMAXIMIZE");
6861 case 0x0226: return wxT("WM_MDITILE");
6862 case 0x0227: return wxT("WM_MDICASCADE");
6863 case 0x0228: return wxT("WM_MDIICONARRANGE");
6864 case 0x0229: return wxT("WM_MDIGETACTIVE");
6865 case 0x0230: return wxT("WM_MDISETMENU");
6866 case 0x0233: return wxT("WM_DROPFILES");
6868 case 0x0281: return wxT("WM_IME_SETCONTEXT");
6869 case 0x0282: return wxT("WM_IME_NOTIFY");
6870 case 0x0283: return wxT("WM_IME_CONTROL");
6871 case 0x0284: return wxT("WM_IME_COMPOSITIONFULL");
6872 case 0x0285: return wxT("WM_IME_SELECT");
6873 case 0x0286: return wxT("WM_IME_CHAR");
6874 case 0x0290: return wxT("WM_IME_KEYDOWN");
6875 case 0x0291: return wxT("WM_IME_KEYUP");
6877 case 0x02A0: return wxT("WM_NCMOUSEHOVER");
6878 case 0x02A1: return wxT("WM_MOUSEHOVER");
6879 case 0x02A2: return wxT("WM_NCMOUSELEAVE");
6880 case 0x02A3: return wxT("WM_MOUSELEAVE");
6882 case 0x0300: return wxT("WM_CUT");
6883 case 0x0301: return wxT("WM_COPY");
6884 case 0x0302: return wxT("WM_PASTE");
6885 case 0x0303: return wxT("WM_CLEAR");
6886 case 0x0304: return wxT("WM_UNDO");
6887 case 0x0305: return wxT("WM_RENDERFORMAT");
6888 case 0x0306: return wxT("WM_RENDERALLFORMATS");
6889 case 0x0307: return wxT("WM_DESTROYCLIPBOARD");
6890 case 0x0308: return wxT("WM_DRAWCLIPBOARD");
6891 case 0x0309: return wxT("WM_PAINTCLIPBOARD");
6892 case 0x030A: return wxT("WM_VSCROLLCLIPBOARD");
6893 case 0x030B: return wxT("WM_SIZECLIPBOARD");
6894 case 0x030C: return wxT("WM_ASKCBFORMATNAME");
6895 case 0x030D: return wxT("WM_CHANGECBCHAIN");
6896 case 0x030E: return wxT("WM_HSCROLLCLIPBOARD");
6897 case 0x030F: return wxT("WM_QUERYNEWPALETTE");
6898 case 0x0310: return wxT("WM_PALETTEISCHANGING");
6899 case 0x0311: return wxT("WM_PALETTECHANGED");
6900 case 0x0312: return wxT("WM_HOTKEY");
6902 case 0x0317: return wxT("WM_PRINT");
6903 case 0x0318: return wxT("WM_PRINTCLIENT");
6905 // common controls messages - although they're not strictly speaking
6906 // standard, it's nice to decode them nevertheless
6909 case 0x1000 + 0: return wxT("LVM_GETBKCOLOR");
6910 case 0x1000 + 1: return wxT("LVM_SETBKCOLOR");
6911 case 0x1000 + 2: return wxT("LVM_GETIMAGELIST");
6912 case 0x1000 + 3: return wxT("LVM_SETIMAGELIST");
6913 case 0x1000 + 4: return wxT("LVM_GETITEMCOUNT");
6914 case 0x1000 + 5: return wxT("LVM_GETITEMA");
6915 case 0x1000 + 75: return wxT("LVM_GETITEMW");
6916 case 0x1000 + 6: return wxT("LVM_SETITEMA");
6917 case 0x1000 + 76: return wxT("LVM_SETITEMW");
6918 case 0x1000 + 7: return wxT("LVM_INSERTITEMA");
6919 case 0x1000 + 77: return wxT("LVM_INSERTITEMW");
6920 case 0x1000 + 8: return wxT("LVM_DELETEITEM");
6921 case 0x1000 + 9: return wxT("LVM_DELETEALLITEMS");
6922 case 0x1000 + 10: return wxT("LVM_GETCALLBACKMASK");
6923 case 0x1000 + 11: return wxT("LVM_SETCALLBACKMASK");
6924 case 0x1000 + 12: return wxT("LVM_GETNEXTITEM");
6925 case 0x1000 + 13: return wxT("LVM_FINDITEMA");
6926 case 0x1000 + 83: return wxT("LVM_FINDITEMW");
6927 case 0x1000 + 14: return wxT("LVM_GETITEMRECT");
6928 case 0x1000 + 15: return wxT("LVM_SETITEMPOSITION");
6929 case 0x1000 + 16: return wxT("LVM_GETITEMPOSITION");
6930 case 0x1000 + 17: return wxT("LVM_GETSTRINGWIDTHA");
6931 case 0x1000 + 87: return wxT("LVM_GETSTRINGWIDTHW");
6932 case 0x1000 + 18: return wxT("LVM_HITTEST");
6933 case 0x1000 + 19: return wxT("LVM_ENSUREVISIBLE");
6934 case 0x1000 + 20: return wxT("LVM_SCROLL");
6935 case 0x1000 + 21: return wxT("LVM_REDRAWITEMS");
6936 case 0x1000 + 22: return wxT("LVM_ARRANGE");
6937 case 0x1000 + 23: return wxT("LVM_EDITLABELA");
6938 case 0x1000 + 118: return wxT("LVM_EDITLABELW");
6939 case 0x1000 + 24: return wxT("LVM_GETEDITCONTROL");
6940 case 0x1000 + 25: return wxT("LVM_GETCOLUMNA");
6941 case 0x1000 + 95: return wxT("LVM_GETCOLUMNW");
6942 case 0x1000 + 26: return wxT("LVM_SETCOLUMNA");
6943 case 0x1000 + 96: return wxT("LVM_SETCOLUMNW");
6944 case 0x1000 + 27: return wxT("LVM_INSERTCOLUMNA");
6945 case 0x1000 + 97: return wxT("LVM_INSERTCOLUMNW");
6946 case 0x1000 + 28: return wxT("LVM_DELETECOLUMN");
6947 case 0x1000 + 29: return wxT("LVM_GETCOLUMNWIDTH");
6948 case 0x1000 + 30: return wxT("LVM_SETCOLUMNWIDTH");
6949 case 0x1000 + 31: return wxT("LVM_GETHEADER");
6950 case 0x1000 + 33: return wxT("LVM_CREATEDRAGIMAGE");
6951 case 0x1000 + 34: return wxT("LVM_GETVIEWRECT");
6952 case 0x1000 + 35: return wxT("LVM_GETTEXTCOLOR");
6953 case 0x1000 + 36: return wxT("LVM_SETTEXTCOLOR");
6954 case 0x1000 + 37: return wxT("LVM_GETTEXTBKCOLOR");
6955 case 0x1000 + 38: return wxT("LVM_SETTEXTBKCOLOR");
6956 case 0x1000 + 39: return wxT("LVM_GETTOPINDEX");
6957 case 0x1000 + 40: return wxT("LVM_GETCOUNTPERPAGE");
6958 case 0x1000 + 41: return wxT("LVM_GETORIGIN");
6959 case 0x1000 + 42: return wxT("LVM_UPDATE");
6960 case 0x1000 + 43: return wxT("LVM_SETITEMSTATE");
6961 case 0x1000 + 44: return wxT("LVM_GETITEMSTATE");
6962 case 0x1000 + 45: return wxT("LVM_GETITEMTEXTA");
6963 case 0x1000 + 115: return wxT("LVM_GETITEMTEXTW");
6964 case 0x1000 + 46: return wxT("LVM_SETITEMTEXTA");
6965 case 0x1000 + 116: return wxT("LVM_SETITEMTEXTW");
6966 case 0x1000 + 47: return wxT("LVM_SETITEMCOUNT");
6967 case 0x1000 + 48: return wxT("LVM_SORTITEMS");
6968 case 0x1000 + 49: return wxT("LVM_SETITEMPOSITION32");
6969 case 0x1000 + 50: return wxT("LVM_GETSELECTEDCOUNT");
6970 case 0x1000 + 51: return wxT("LVM_GETITEMSPACING");
6971 case 0x1000 + 52: return wxT("LVM_GETISEARCHSTRINGA");
6972 case 0x1000 + 117: return wxT("LVM_GETISEARCHSTRINGW");
6973 case 0x1000 + 53: return wxT("LVM_SETICONSPACING");
6974 case 0x1000 + 54: return wxT("LVM_SETEXTENDEDLISTVIEWSTYLE");
6975 case 0x1000 + 55: return wxT("LVM_GETEXTENDEDLISTVIEWSTYLE");
6976 case 0x1000 + 56: return wxT("LVM_GETSUBITEMRECT");
6977 case 0x1000 + 57: return wxT("LVM_SUBITEMHITTEST");
6978 case 0x1000 + 58: return wxT("LVM_SETCOLUMNORDERARRAY");
6979 case 0x1000 + 59: return wxT("LVM_GETCOLUMNORDERARRAY");
6980 case 0x1000 + 60: return wxT("LVM_SETHOTITEM");
6981 case 0x1000 + 61: return wxT("LVM_GETHOTITEM");
6982 case 0x1000 + 62: return wxT("LVM_SETHOTCURSOR");
6983 case 0x1000 + 63: return wxT("LVM_GETHOTCURSOR");
6984 case 0x1000 + 64: return wxT("LVM_APPROXIMATEVIEWRECT");
6985 case 0x1000 + 65: return wxT("LVM_SETWORKAREA");
6988 case 0x1100 + 0: return wxT("TVM_INSERTITEMA");
6989 case 0x1100 + 50: return wxT("TVM_INSERTITEMW");
6990 case 0x1100 + 1: return wxT("TVM_DELETEITEM");
6991 case 0x1100 + 2: return wxT("TVM_EXPAND");
6992 case 0x1100 + 4: return wxT("TVM_GETITEMRECT");
6993 case 0x1100 + 5: return wxT("TVM_GETCOUNT");
6994 case 0x1100 + 6: return wxT("TVM_GETINDENT");
6995 case 0x1100 + 7: return wxT("TVM_SETINDENT");
6996 case 0x1100 + 8: return wxT("TVM_GETIMAGELIST");
6997 case 0x1100 + 9: return wxT("TVM_SETIMAGELIST");
6998 case 0x1100 + 10: return wxT("TVM_GETNEXTITEM");
6999 case 0x1100 + 11: return wxT("TVM_SELECTITEM");
7000 case 0x1100 + 12: return wxT("TVM_GETITEMA");
7001 case 0x1100 + 62: return wxT("TVM_GETITEMW");
7002 case 0x1100 + 13: return wxT("TVM_SETITEMA");
7003 case 0x1100 + 63: return wxT("TVM_SETITEMW");
7004 case 0x1100 + 14: return wxT("TVM_EDITLABELA");
7005 case 0x1100 + 65: return wxT("TVM_EDITLABELW");
7006 case 0x1100 + 15: return wxT("TVM_GETEDITCONTROL");
7007 case 0x1100 + 16: return wxT("TVM_GETVISIBLECOUNT");
7008 case 0x1100 + 17: return wxT("TVM_HITTEST");
7009 case 0x1100 + 18: return wxT("TVM_CREATEDRAGIMAGE");
7010 case 0x1100 + 19: return wxT("TVM_SORTCHILDREN");
7011 case 0x1100 + 20: return wxT("TVM_ENSUREVISIBLE");
7012 case 0x1100 + 21: return wxT("TVM_SORTCHILDRENCB");
7013 case 0x1100 + 22: return wxT("TVM_ENDEDITLABELNOW");
7014 case 0x1100 + 23: return wxT("TVM_GETISEARCHSTRINGA");
7015 case 0x1100 + 64: return wxT("TVM_GETISEARCHSTRINGW");
7016 case 0x1100 + 24: return wxT("TVM_SETTOOLTIPS");
7017 case 0x1100 + 25: return wxT("TVM_GETTOOLTIPS");
7020 case 0x1200 + 0: return wxT("HDM_GETITEMCOUNT");
7021 case 0x1200 + 1: return wxT("HDM_INSERTITEMA");
7022 case 0x1200 + 10: return wxT("HDM_INSERTITEMW");
7023 case 0x1200 + 2: return wxT("HDM_DELETEITEM");
7024 case 0x1200 + 3: return wxT("HDM_GETITEMA");
7025 case 0x1200 + 11: return wxT("HDM_GETITEMW");
7026 case 0x1200 + 4: return wxT("HDM_SETITEMA");
7027 case 0x1200 + 12: return wxT("HDM_SETITEMW");
7028 case 0x1200 + 5: return wxT("HDM_LAYOUT");
7029 case 0x1200 + 6: return wxT("HDM_HITTEST");
7030 case 0x1200 + 7: return wxT("HDM_GETITEMRECT");
7031 case 0x1200 + 8: return wxT("HDM_SETIMAGELIST");
7032 case 0x1200 + 9: return wxT("HDM_GETIMAGELIST");
7033 case 0x1200 + 15: return wxT("HDM_ORDERTOINDEX");
7034 case 0x1200 + 16: return wxT("HDM_CREATEDRAGIMAGE");
7035 case 0x1200 + 17: return wxT("HDM_GETORDERARRAY");
7036 case 0x1200 + 18: return wxT("HDM_SETORDERARRAY");
7037 case 0x1200 + 19: return wxT("HDM_SETHOTDIVIDER");
7040 case 0x1300 + 2: return wxT("TCM_GETIMAGELIST");
7041 case 0x1300 + 3: return wxT("TCM_SETIMAGELIST");
7042 case 0x1300 + 4: return wxT("TCM_GETITEMCOUNT");
7043 case 0x1300 + 5: return wxT("TCM_GETITEMA");
7044 case 0x1300 + 60: return wxT("TCM_GETITEMW");
7045 case 0x1300 + 6: return wxT("TCM_SETITEMA");
7046 case 0x1300 + 61: return wxT("TCM_SETITEMW");
7047 case 0x1300 + 7: return wxT("TCM_INSERTITEMA");
7048 case 0x1300 + 62: return wxT("TCM_INSERTITEMW");
7049 case 0x1300 + 8: return wxT("TCM_DELETEITEM");
7050 case 0x1300 + 9: return wxT("TCM_DELETEALLITEMS");
7051 case 0x1300 + 10: return wxT("TCM_GETITEMRECT");
7052 case 0x1300 + 11: return wxT("TCM_GETCURSEL");
7053 case 0x1300 + 12: return wxT("TCM_SETCURSEL");
7054 case 0x1300 + 13: return wxT("TCM_HITTEST");
7055 case 0x1300 + 14: return wxT("TCM_SETITEMEXTRA");
7056 case 0x1300 + 40: return wxT("TCM_ADJUSTRECT");
7057 case 0x1300 + 41: return wxT("TCM_SETITEMSIZE");
7058 case 0x1300 + 42: return wxT("TCM_REMOVEIMAGE");
7059 case 0x1300 + 43: return wxT("TCM_SETPADDING");
7060 case 0x1300 + 44: return wxT("TCM_GETROWCOUNT");
7061 case 0x1300 + 45: return wxT("TCM_GETTOOLTIPS");
7062 case 0x1300 + 46: return wxT("TCM_SETTOOLTIPS");
7063 case 0x1300 + 47: return wxT("TCM_GETCURFOCUS");
7064 case 0x1300 + 48: return wxT("TCM_SETCURFOCUS");
7065 case 0x1300 + 49: return wxT("TCM_SETMINTABWIDTH");
7066 case 0x1300 + 50: return wxT("TCM_DESELECTALL");
7069 case WM_USER
+1: return wxT("TB_ENABLEBUTTON");
7070 case WM_USER
+2: return wxT("TB_CHECKBUTTON");
7071 case WM_USER
+3: return wxT("TB_PRESSBUTTON");
7072 case WM_USER
+4: return wxT("TB_HIDEBUTTON");
7073 case WM_USER
+5: return wxT("TB_INDETERMINATE");
7074 case WM_USER
+9: return wxT("TB_ISBUTTONENABLED");
7075 case WM_USER
+10: return wxT("TB_ISBUTTONCHECKED");
7076 case WM_USER
+11: return wxT("TB_ISBUTTONPRESSED");
7077 case WM_USER
+12: return wxT("TB_ISBUTTONHIDDEN");
7078 case WM_USER
+13: return wxT("TB_ISBUTTONINDETERMINATE");
7079 case WM_USER
+17: return wxT("TB_SETSTATE");
7080 case WM_USER
+18: return wxT("TB_GETSTATE");
7081 case WM_USER
+19: return wxT("TB_ADDBITMAP");
7082 case WM_USER
+20: return wxT("TB_ADDBUTTONS");
7083 case WM_USER
+21: return wxT("TB_INSERTBUTTON");
7084 case WM_USER
+22: return wxT("TB_DELETEBUTTON");
7085 case WM_USER
+23: return wxT("TB_GETBUTTON");
7086 case WM_USER
+24: return wxT("TB_BUTTONCOUNT");
7087 case WM_USER
+25: return wxT("TB_COMMANDTOINDEX");
7088 case WM_USER
+26: return wxT("TB_SAVERESTOREA");
7089 case WM_USER
+76: return wxT("TB_SAVERESTOREW");
7090 case WM_USER
+27: return wxT("TB_CUSTOMIZE");
7091 case WM_USER
+28: return wxT("TB_ADDSTRINGA");
7092 case WM_USER
+77: return wxT("TB_ADDSTRINGW");
7093 case WM_USER
+29: return wxT("TB_GETITEMRECT");
7094 case WM_USER
+30: return wxT("TB_BUTTONSTRUCTSIZE");
7095 case WM_USER
+31: return wxT("TB_SETBUTTONSIZE");
7096 case WM_USER
+32: return wxT("TB_SETBITMAPSIZE");
7097 case WM_USER
+33: return wxT("TB_AUTOSIZE");
7098 case WM_USER
+35: return wxT("TB_GETTOOLTIPS");
7099 case WM_USER
+36: return wxT("TB_SETTOOLTIPS");
7100 case WM_USER
+37: return wxT("TB_SETPARENT");
7101 case WM_USER
+39: return wxT("TB_SETROWS");
7102 case WM_USER
+40: return wxT("TB_GETROWS");
7103 case WM_USER
+42: return wxT("TB_SETCMDID");
7104 case WM_USER
+43: return wxT("TB_CHANGEBITMAP");
7105 case WM_USER
+44: return wxT("TB_GETBITMAP");
7106 case WM_USER
+45: return wxT("TB_GETBUTTONTEXTA");
7107 case WM_USER
+75: return wxT("TB_GETBUTTONTEXTW");
7108 case WM_USER
+46: return wxT("TB_REPLACEBITMAP");
7109 case WM_USER
+47: return wxT("TB_SETINDENT");
7110 case WM_USER
+48: return wxT("TB_SETIMAGELIST");
7111 case WM_USER
+49: return wxT("TB_GETIMAGELIST");
7112 case WM_USER
+50: return wxT("TB_LOADIMAGES");
7113 case WM_USER
+51: return wxT("TB_GETRECT");
7114 case WM_USER
+52: return wxT("TB_SETHOTIMAGELIST");
7115 case WM_USER
+53: return wxT("TB_GETHOTIMAGELIST");
7116 case WM_USER
+54: return wxT("TB_SETDISABLEDIMAGELIST");
7117 case WM_USER
+55: return wxT("TB_GETDISABLEDIMAGELIST");
7118 case WM_USER
+56: return wxT("TB_SETSTYLE");
7119 case WM_USER
+57: return wxT("TB_GETSTYLE");
7120 case WM_USER
+58: return wxT("TB_GETBUTTONSIZE");
7121 case WM_USER
+59: return wxT("TB_SETBUTTONWIDTH");
7122 case WM_USER
+60: return wxT("TB_SETMAXTEXTROWS");
7123 case WM_USER
+61: return wxT("TB_GETTEXTROWS");
7124 case WM_USER
+41: return wxT("TB_GETBITMAPFLAGS");
7127 static wxString s_szBuf
;
7128 s_szBuf
.Printf(wxT("<unknown message = %d>"), message
);
7129 return s_szBuf
.c_str();
7132 #endif // wxDEBUG_LEVEL >= 2
7134 static TEXTMETRIC
wxGetTextMetrics(const wxWindowMSW
*win
)
7138 HWND hwnd
= GetHwndOf(win
);
7139 HDC hdc
= ::GetDC(hwnd
);
7141 #if !wxDIALOG_UNIT_COMPATIBILITY
7142 // and select the current font into it
7143 HFONT hfont
= GetHfontOf(win
->GetFont());
7146 hfont
= (HFONT
)::SelectObject(hdc
, hfont
);
7150 // finally retrieve the text metrics from it
7151 GetTextMetrics(hdc
, &tm
);
7153 #if !wxDIALOG_UNIT_COMPATIBILITY
7157 (void)::SelectObject(hdc
, hfont
);
7161 ::ReleaseDC(hwnd
, hdc
);
7166 // Find the wxWindow at the current mouse position, returning the mouse
7168 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
7170 pt
= wxGetMousePosition();
7171 return wxFindWindowAtPoint(pt
);
7174 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
7180 HWND hWnd
= ::WindowFromPoint(pt2
);
7182 return wxGetWindowFromHWND((WXHWND
)hWnd
);
7185 // Get the current mouse position.
7186 wxPoint
wxGetMousePosition()
7190 GetCursorPosWinCE(&pt
);
7192 GetCursorPos( & pt
);
7195 return wxPoint(pt
.x
, pt
.y
);
7200 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7201 static void WinCEUnregisterHotKey(int modifiers
, int id
)
7203 // Register hotkeys for the hardware buttons
7205 typedef BOOL (WINAPI
*UnregisterFunc1Proc
)(UINT
, UINT
);
7207 UnregisterFunc1Proc procUnregisterFunc
;
7208 hCoreDll
= LoadLibrary(wxT("coredll.dll"));
7211 procUnregisterFunc
= (UnregisterFunc1Proc
)GetProcAddress(hCoreDll
, wxT("UnregisterFunc1"));
7212 if (procUnregisterFunc
)
7213 procUnregisterFunc(modifiers
, id
);
7214 FreeLibrary(hCoreDll
);
7219 bool wxWindowMSW::RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
)
7221 UINT win_modifiers
=0;
7222 if ( modifiers
& wxMOD_ALT
)
7223 win_modifiers
|= MOD_ALT
;
7224 if ( modifiers
& wxMOD_SHIFT
)
7225 win_modifiers
|= MOD_SHIFT
;
7226 if ( modifiers
& wxMOD_CONTROL
)
7227 win_modifiers
|= MOD_CONTROL
;
7228 if ( modifiers
& wxMOD_WIN
)
7229 win_modifiers
|= MOD_WIN
;
7231 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7232 // Required for PPC and Smartphone hardware buttons
7233 if (keycode
>= WXK_SPECIAL1
&& keycode
<= WXK_SPECIAL20
)
7234 WinCEUnregisterHotKey(win_modifiers
, hotkeyId
);
7237 if ( !::RegisterHotKey(GetHwnd(), hotkeyId
, win_modifiers
, keycode
) )
7239 wxLogLastError(wxT("RegisterHotKey"));
7247 bool wxWindowMSW::UnregisterHotKey(int hotkeyId
)
7249 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7250 WinCEUnregisterHotKey(MOD_WIN
, hotkeyId
);
7253 if ( !::UnregisterHotKey(GetHwnd(), hotkeyId
) )
7255 wxLogLastError(wxT("UnregisterHotKey"));
7265 bool wxWindowMSW::HandleHotKey(WXWPARAM wParam
, WXLPARAM lParam
)
7267 int win_modifiers
= LOWORD(lParam
);
7269 wxKeyEvent
event(CreateKeyEvent(wxEVT_HOTKEY
, HIWORD(lParam
)));
7270 event
.SetId(wParam
);
7271 event
.m_shiftDown
= (win_modifiers
& MOD_SHIFT
) != 0;
7272 event
.m_controlDown
= (win_modifiers
& MOD_CONTROL
) != 0;
7273 event
.m_altDown
= (win_modifiers
& MOD_ALT
) != 0;
7274 event
.m_metaDown
= (win_modifiers
& MOD_WIN
) != 0;
7276 return HandleWindowEvent(event
);
7279 #endif // wxUSE_ACCEL
7281 #endif // wxUSE_HOTKEY
7283 // Not tested under WinCE
7286 // this class installs a message hook which really wakes up our idle processing
7287 // each time a WM_NULL is received (wxWakeUpIdle does this), even if we're
7288 // sitting inside a local modal loop (e.g. a menu is opened or scrollbar is
7289 // being dragged or even inside ::MessageBox()) and so don't control message
7290 // dispatching otherwise
7291 class wxIdleWakeUpModule
: public wxModule
7294 virtual bool OnInit()
7296 ms_hMsgHookProc
= ::SetWindowsHookEx
7299 &wxIdleWakeUpModule::MsgHookProc
,
7301 GetCurrentThreadId()
7304 if ( !ms_hMsgHookProc
)
7306 wxLogLastError(wxT("SetWindowsHookEx(WH_GETMESSAGE)"));
7314 virtual void OnExit()
7316 ::UnhookWindowsHookEx(wxIdleWakeUpModule::ms_hMsgHookProc
);
7319 static LRESULT CALLBACK
MsgHookProc(int nCode
, WPARAM wParam
, LPARAM lParam
)
7321 MSG
*msg
= (MSG
*)lParam
;
7323 // only process the message if it is actually going to be removed from
7324 // the message queue, this prevents that the same event from being
7325 // processed multiple times if now someone just called PeekMessage()
7326 if ( msg
->message
== WM_NULL
&& wParam
== PM_REMOVE
)
7328 wxTheApp
->ProcessPendingEvents();
7331 return CallNextHookEx(ms_hMsgHookProc
, nCode
, wParam
, lParam
);
7335 static HHOOK ms_hMsgHookProc
;
7337 DECLARE_DYNAMIC_CLASS(wxIdleWakeUpModule
)
7340 HHOOK
wxIdleWakeUpModule::ms_hMsgHookProc
= 0;
7342 IMPLEMENT_DYNAMIC_CLASS(wxIdleWakeUpModule
, wxModule
)
7344 #endif // __WXWINCE__
7349 static void wxAdjustZOrder(wxWindow
* parent
)
7351 if (parent
->IsKindOf(CLASSINFO(wxStaticBox
)))
7353 // Set the z-order correctly
7354 SetWindowPos((HWND
) parent
->GetHWND(), HWND_BOTTOM
, 0, 0, 0, 0, SWP_NOMOVE
|SWP_NOSIZE
);
7357 wxWindowList::compatibility_iterator current
= parent
->GetChildren().GetFirst();
7360 wxWindow
*childWin
= current
->GetData();
7361 wxAdjustZOrder(childWin
);
7362 current
= current
->GetNext();
7367 // We need to adjust the z-order of static boxes in WinCE, to
7368 // make 'contained' controls visible
7369 void wxWindowMSW::OnInitDialog( wxInitDialogEvent
& event
)
7372 wxAdjustZOrder(this);