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/radiobox.h"
95 #endif // wxUSE_RADIOBOX
98 #include "wx/spinctrl.h"
99 #endif // wxUSE_SPINCTRL
101 #include "wx/notebook.h"
102 #include "wx/listctrl.h"
103 #include "wx/dynlib.h"
107 #if (!defined(__GNUWIN32_OLD__) && !defined(__WXMICROWIN__) /* && !defined(__WXWINCE__) */ ) || defined(__CYGWIN10__)
108 #include <shellapi.h>
109 #include <mmsystem.h>
113 #include <windowsx.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
;
182 // This is a hack used by the owner-drawn wxButton implementation to ensure
183 // that the brush used for erasing its background is correctly aligned with the
185 wxWindowMSW
*wxWindowBeingErased
= NULL
;
186 #endif // wxUSE_UXTHEME
191 // true if we had already created the std colour map, used by
192 // wxGetStdColourMap() and wxWindow::OnSysColourChanged() (FIXME-MT)
193 bool gs_hasStdCmap
= false;
195 // last mouse event information we need to filter out the duplicates
196 #if wxUSE_MOUSEEVENT_HACK
197 struct MouseEventInfoDummy
199 // mouse position (in screen coordinates)
202 // last mouse event type
205 #endif // wxUSE_MOUSEEVENT_HACK
207 // hash containing the registered handlers for the custom messages
208 WX_DECLARE_HASH_MAP(int, wxWindow::MSWMessageHandler
,
209 wxIntegerHash
, wxIntegerEqual
,
212 MSWMessageHandlers gs_messageHandlers
;
214 // hash containing all our windows, it uses HWND keys and wxWindow* values
215 WX_DECLARE_HASH_MAP(HWND
, wxWindow
*,
216 wxPointerHash
, wxPointerEqual
,
219 WindowHandles gs_windowHandles
;
221 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
223 // temporary override for WM_ERASEBKGND processing: we don't store this in
224 // wxWindow itself as we don't need it during most of the time so don't
225 // increase the size of all window objects unnecessarily
226 WX_DECLARE_HASH_MAP(wxWindow
*, wxWindow
*,
227 wxPointerHash
, wxPointerEqual
,
230 EraseBgHooks gs_eraseBgHooks
;
232 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
234 // If this variable is strictly positive, EVT_CHAR_HOOK is not generated for
235 // Escape key presses as it can't be intercepted because it's needed by some
236 // currently shown window, e.g. IME entry.
238 // This is currently global as we allow using UI from the main thread only
239 // anyhow but could be replaced with a thread-specific value in the future if
241 int gs_modalEntryWindowCount
= 0;
243 } // anonymous namespace
245 // ---------------------------------------------------------------------------
247 // ---------------------------------------------------------------------------
249 // the window proc for all our windows
250 LRESULT WXDLLEXPORT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
,
251 WPARAM wParam
, LPARAM lParam
);
254 #if wxDEBUG_LEVEL >= 2
255 const wxChar
*wxGetMessageName(int message
);
256 #endif // wxDEBUG_LEVEL >= 2
258 void wxRemoveHandleAssociation(wxWindowMSW
*win
);
259 extern void wxAssociateWinWithHandle(HWND hWnd
, wxWindowMSW
*win
);
261 // get the text metrics for the current font
262 static TEXTMETRIC
wxGetTextMetrics(const wxWindowMSW
*win
);
265 // find the window for the mouse event at the specified position
266 static wxWindowMSW
*FindWindowForMouseEvent(wxWindowMSW
*win
, int *x
, int *y
);
267 #endif // __WXWINCE__
269 // wrapper around BringWindowToTop() API
270 static inline void wxBringWindowToTop(HWND hwnd
)
272 #ifdef __WXMICROWIN__
273 // It seems that MicroWindows brings the _parent_ of the window to the top,
274 // which can be the wrong one.
276 // activate (set focus to) specified window
280 // raise top level parent to top of z order
281 if (!::SetWindowPos(hwnd
, HWND_TOP
, 0, 0, 0, 0, SWP_NOMOVE
| SWP_NOSIZE
))
283 wxLogLastError(wxT("SetWindowPos"));
289 // ensure that all our parent windows have WS_EX_CONTROLPARENT style
290 static void EnsureParentHasControlParentStyle(wxWindow
*parent
)
293 If we have WS_EX_CONTROLPARENT flag we absolutely *must* set it for our
294 parent as well as otherwise several Win32 functions using
295 GetNextDlgTabItem() to iterate over all controls such as
296 IsDialogMessage() or DefDlgProc() would enter an infinite loop: indeed,
297 all of them iterate over all the controls starting from the currently
298 focused one and stop iterating when they get back to the focus but
299 unless all parents have WS_EX_CONTROLPARENT bit set, they would never
300 get back to the initial (focused) window: as we do have this style,
301 GetNextDlgTabItem() will leave this window and continue in its parent,
302 but if the parent doesn't have it, it wouldn't recurse inside it later
303 on and so wouldn't have a chance of getting back to this window either.
305 while ( parent
&& !parent
->IsTopLevel() )
307 LONG exStyle
= wxGetWindowExStyle(parent
);
308 if ( !(exStyle
& WS_EX_CONTROLPARENT
) )
310 // force the parent to have this style
311 wxSetWindowExStyle(parent
, exStyle
| WS_EX_CONTROLPARENT
);
314 parent
= parent
->GetParent();
318 #endif // !__WXWINCE__
320 // GetCursorPos can return an error, so use this function
322 // Error originally observed with WinCE, but later using Remote Desktop
324 void wxGetCursorPosMSW(POINT
* pt
)
326 if (!GetCursorPos(pt
))
329 wxLogLastError(wxT("GetCursorPos"));
331 DWORD pos
= GetMessagePos();
332 // the coordinates may be negative in multi-monitor systems
333 pt
->x
= GET_X_LPARAM(pos
);
334 pt
->y
= GET_Y_LPARAM(pos
);
338 // ---------------------------------------------------------------------------
340 // ---------------------------------------------------------------------------
342 // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
344 #ifdef __WXUNIVERSAL__
345 IMPLEMENT_ABSTRACT_CLASS(wxWindowMSW
, wxWindowBase
)
346 #endif // __WXUNIVERSAL__
348 BEGIN_EVENT_TABLE(wxWindowMSW
, wxWindowBase
)
349 EVT_SYS_COLOUR_CHANGED(wxWindowMSW::OnSysColourChanged
)
351 EVT_INIT_DIALOG(wxWindowMSW::OnInitDialog
)
355 // ===========================================================================
357 // ===========================================================================
359 // ---------------------------------------------------------------------------
360 // wxWindow utility functions
361 // ---------------------------------------------------------------------------
363 // Find an item given the MS Windows id
364 wxWindow
*wxWindowMSW::FindItem(long id
) const
367 wxControl
*item
= wxDynamicCastThis(wxControl
);
370 // is it us or one of our "internal" children?
371 if ( item
->GetId() == id
372 #ifndef __WXUNIVERSAL__
373 || (item
->GetSubcontrols().Index(id
) != wxNOT_FOUND
)
374 #endif // __WXUNIVERSAL__
380 #endif // wxUSE_CONTROLS
382 wxWindowList::compatibility_iterator current
= GetChildren().GetFirst();
385 wxWindow
*childWin
= current
->GetData();
387 wxWindow
*wnd
= childWin
->FindItem(id
);
391 current
= current
->GetNext();
397 // Find an item given the MS Windows handle
398 wxWindow
*wxWindowMSW::FindItemByHWND(WXHWND hWnd
, bool controlOnly
) const
400 wxWindowList::compatibility_iterator current
= GetChildren().GetFirst();
403 wxWindow
*parent
= current
->GetData();
405 // Do a recursive search.
406 wxWindow
*wnd
= parent
->FindItemByHWND(hWnd
);
412 || parent
->IsKindOf(CLASSINFO(wxControl
))
413 #endif // wxUSE_CONTROLS
416 wxWindow
*item
= current
->GetData();
417 if ( item
->GetHWND() == hWnd
)
421 if ( item
->ContainsHWND(hWnd
) )
426 current
= current
->GetNext();
431 // Default command handler
432 bool wxWindowMSW::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD
WXUNUSED(id
))
437 // ----------------------------------------------------------------------------
438 // constructors and such
439 // ----------------------------------------------------------------------------
441 void wxWindowMSW::Init()
445 m_mouseInWindow
= false;
446 m_lastKeydownProcessed
= false;
453 #if wxUSE_DEFERRED_SIZING
455 m_pendingPosition
= wxDefaultPosition
;
456 m_pendingSize
= wxDefaultSize
;
457 #endif // wxUSE_DEFERRED_SIZING
460 m_contextMenuEnabled
= false;
465 wxWindowMSW::~wxWindowMSW()
469 #ifndef __WXUNIVERSAL__
470 // VS: make sure there's no wxFrame with last focus set to us:
471 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
473 wxTopLevelWindow
*frame
= wxDynamicCast(win
, wxTopLevelWindow
);
476 if ( frame
->GetLastFocus() == this )
478 frame
->SetLastFocus(NULL
);
481 // apparently sometimes we can end up with our grand parent
482 // pointing to us as well: this is surely a bug in focus handling
483 // code but it's not clear where it happens so for now just try to
484 // fix it here by not breaking out of the loop
488 #endif // __WXUNIVERSAL__
490 // VS: destroy children first and _then_ detach *this from its parent.
491 // If we did it the other way around, children wouldn't be able
492 // find their parent frame (see above).
497 // VZ: test temp removed to understand what really happens here
498 //if (::IsWindow(GetHwnd()))
500 if ( !::DestroyWindow(GetHwnd()) )
502 wxLogLastError(wxT("DestroyWindow"));
506 // remove hWnd <-> wxWindow association
507 wxRemoveHandleAssociation(this);
513 const wxChar
*wxWindowMSW::MSWGetRegisteredClassName()
515 return wxApp::GetRegisteredClassName(wxT("wxWindow"), COLOR_BTNFACE
);
518 // real construction (Init() must have been called before!)
519 bool wxWindowMSW::Create(wxWindow
*parent
,
524 const wxString
& name
)
526 wxCHECK_MSG( parent
, false, wxT("can't create wxWindow without parent") );
528 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
531 parent
->AddChild(this);
534 DWORD msflags
= MSWGetCreateWindowFlags(&exstyle
);
536 #ifdef __WXUNIVERSAL__
537 // no borders, we draw them ourselves
538 exstyle
&= ~(WS_EX_DLGMODALFRAME
|
542 msflags
&= ~WS_BORDER
;
543 #endif // wxUniversal
547 msflags
|= WS_VISIBLE
;
550 if ( !MSWCreate(MSWGetRegisteredClassName(),
551 NULL
, pos
, size
, msflags
, exstyle
) )
559 // ---------------------------------------------------------------------------
561 // ---------------------------------------------------------------------------
563 void wxWindowMSW::SetFocus()
565 HWND hWnd
= GetHwnd();
566 wxCHECK_RET( hWnd
, wxT("can't set focus to invalid window") );
568 #if !defined(__WXWINCE__)
572 if ( !::SetFocus(hWnd
) )
574 // was there really an error?
575 DWORD dwRes
= ::GetLastError();
578 HWND hwndFocus
= ::GetFocus();
579 if ( hwndFocus
!= hWnd
)
581 wxLogApiError(wxT("SetFocus"), dwRes
);
587 void wxWindowMSW::SetFocusFromKbd()
589 // when the focus is given to the control with DLGC_HASSETSEL style from
590 // keyboard its contents should be entirely selected: this is what
591 // ::IsDialogMessage() does and so we should do it as well to provide the
592 // same LNF as the native programs
593 if ( ::SendMessage(GetHwnd(), WM_GETDLGCODE
, 0, 0) & DLGC_HASSETSEL
)
595 ::SendMessage(GetHwnd(), EM_SETSEL
, 0, -1);
598 // do this after (maybe) setting the selection as like this when
599 // wxEVT_SET_FOCUS handler is called, the selection would have been already
600 // set correctly -- this may be important
601 wxWindowBase::SetFocusFromKbd();
604 // Get the window with the focus
605 wxWindow
*wxWindowBase::DoFindFocus()
607 HWND hWnd
= ::GetFocus();
610 return wxGetWindowFromHWND((WXHWND
)hWnd
);
616 void wxWindowMSW::DoEnable( bool enable
)
618 MSWEnableHWND(GetHwnd(), enable
);
621 bool wxWindowMSW::MSWEnableHWND(WXHWND hWnd
, bool enable
)
626 // If disabling focused control, we move focus to the next one, as if the
627 // user pressed Tab. That's because we can't keep focus on a disabled
628 // control, Tab-navigation would stop working then.
629 if ( !enable
&& ::GetFocus() == hWnd
)
632 return ::EnableWindow(hWnd
, (BOOL
)enable
) != 0;
635 bool wxWindowMSW::Show(bool show
)
637 if ( !wxWindowBase::Show(show
) )
640 HWND hWnd
= GetHwnd();
642 // we could be called before the underlying window is created (this is
643 // actually useful to prevent it from being initially shown), e.g.
645 // wxFoo *foo = new wxFoo;
647 // foo->Create(parent, ...);
649 // should work without errors
652 ::ShowWindow(hWnd
, show
? SW_SHOW
: SW_HIDE
);
657 // DoFreeze/DoThaw don't do anything if the window is not shown, so
658 // we have to call them from here now
669 wxWindowMSW::MSWShowWithEffect(bool show
,
673 if ( effect
== wxSHOW_EFFECT_NONE
)
676 if ( !wxWindowBase::Show(show
) )
679 typedef BOOL (WINAPI
*AnimateWindow_t
)(HWND
, DWORD
, DWORD
);
681 static AnimateWindow_t s_pfnAnimateWindow
= NULL
;
682 static bool s_initDone
= false;
685 wxDynamicLibrary
dllUser32(wxT("user32.dll"), wxDL_VERBATIM
| wxDL_QUIET
);
686 wxDL_INIT_FUNC(s_pfn
, AnimateWindow
, dllUser32
);
690 // notice that it's ok to unload user32.dll here as it won't be really
691 // unloaded, being still in use because we link to it statically too
694 if ( !s_pfnAnimateWindow
)
697 // Show() has a side effect of sending a WM_SIZE to the window, which helps
698 // ensuring that it's laid out correctly, but AnimateWindow() doesn't do
699 // this so send the event ourselves
702 // prepare to use AnimateWindow()
705 timeout
= 200; // this is the default animation timeout, per MSDN
707 DWORD dwFlags
= show
? 0 : AW_HIDE
;
711 case wxSHOW_EFFECT_ROLL_TO_LEFT
:
712 dwFlags
|= AW_HOR_NEGATIVE
;
715 case wxSHOW_EFFECT_ROLL_TO_RIGHT
:
716 dwFlags
|= AW_HOR_POSITIVE
;
719 case wxSHOW_EFFECT_ROLL_TO_TOP
:
720 dwFlags
|= AW_VER_NEGATIVE
;
723 case wxSHOW_EFFECT_ROLL_TO_BOTTOM
:
724 dwFlags
|= AW_VER_POSITIVE
;
727 case wxSHOW_EFFECT_SLIDE_TO_LEFT
:
728 dwFlags
|= AW_SLIDE
| AW_HOR_NEGATIVE
;
731 case wxSHOW_EFFECT_SLIDE_TO_RIGHT
:
732 dwFlags
|= AW_SLIDE
| AW_HOR_POSITIVE
;
735 case wxSHOW_EFFECT_SLIDE_TO_TOP
:
736 dwFlags
|= AW_SLIDE
| AW_VER_NEGATIVE
;
739 case wxSHOW_EFFECT_SLIDE_TO_BOTTOM
:
740 dwFlags
|= AW_SLIDE
| AW_VER_POSITIVE
;
743 case wxSHOW_EFFECT_BLEND
:
747 case wxSHOW_EFFECT_EXPAND
:
748 dwFlags
|= AW_CENTER
;
752 case wxSHOW_EFFECT_MAX
:
753 wxFAIL_MSG( wxT("invalid window show effect") );
757 wxFAIL_MSG( wxT("unknown window show effect") );
761 if ( !(*s_pfnAnimateWindow
)(GetHwnd(), timeout
, dwFlags
) )
763 wxLogLastError(wxT("AnimateWindow"));
771 // Raise the window to the top of the Z order
772 void wxWindowMSW::Raise()
774 wxBringWindowToTop(GetHwnd());
777 // Lower the window to the bottom of the Z order
778 void wxWindowMSW::Lower()
780 ::SetWindowPos(GetHwnd(), HWND_BOTTOM
, 0, 0, 0, 0,
781 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
784 void wxWindowMSW::DoCaptureMouse()
786 HWND hWnd
= GetHwnd();
793 void wxWindowMSW::DoReleaseMouse()
795 if ( !::ReleaseCapture() )
797 wxLogLastError(wxT("ReleaseCapture"));
801 /* static */ wxWindow
*wxWindowBase::GetCapture()
803 HWND hwnd
= ::GetCapture();
804 return hwnd
? wxFindWinFromHandle(hwnd
) : NULL
;
807 bool wxWindowMSW::SetFont(const wxFont
& font
)
809 if ( !wxWindowBase::SetFont(font
) )
815 HWND hWnd
= GetHwnd();
818 // note the use of GetFont() instead of m_font: our own font could have
819 // just been reset and in this case we need to change the font used by
820 // the native window to the default for this class, i.e. exactly what
822 WXHANDLE hFont
= GetFont().GetResourceHandle();
824 wxASSERT_MSG( hFont
, wxT("should have valid font") );
826 ::SendMessage(hWnd
, WM_SETFONT
, (WPARAM
)hFont
, MAKELPARAM(TRUE
, 0));
832 bool wxWindowMSW::SetCursor(const wxCursor
& cursor
)
834 if ( !wxWindowBase::SetCursor(cursor
) )
840 // don't "overwrite" busy cursor
844 if ( m_cursor
.IsOk() )
846 // normally we should change the cursor only if it's over this window
847 // but we should do it always if we capture the mouse currently
848 bool set
= HasCapture();
851 HWND hWnd
= GetHwnd();
854 ::wxGetCursorPosMSW(&point
);
856 RECT rect
= wxGetWindowRect(hWnd
);
858 set
= ::PtInRect(&rect
, point
) != 0;
863 ::SetCursor(GetHcursorOf(m_cursor
));
865 //else: will be set later when the mouse enters this window
867 else // Invalid cursor: this means reset to the default one.
869 // To revert to the correct cursor we need to find the window currently
870 // under the cursor and ask it to set its cursor itself as only it
873 wxGetCursorPosMSW(&pt
);
875 const wxWindowMSW
* win
= wxFindWindowAtPoint(wxPoint(pt
.x
, pt
.y
));
879 ::SendMessage(GetHwndOf(win
), WM_SETCURSOR
,
880 (WPARAM
)GetHwndOf(win
),
881 MAKELPARAM(HTCLIENT
, WM_MOUSEMOVE
));
887 void wxWindowMSW::WarpPointer(int x
, int y
)
889 ClientToScreen(&x
, &y
);
891 if ( !::SetCursorPos(x
, y
) )
893 wxLogLastError(wxT("SetCursorPos"));
897 void wxWindowMSW::MSWUpdateUIState(int action
, int state
)
899 // WM_CHANGEUISTATE only appeared in Windows 2000 so it can do us no good
900 // to use it on older systems -- and could possibly do some harm
901 static int s_needToUpdate
= -1;
902 if ( s_needToUpdate
== -1 )
905 s_needToUpdate
= wxGetOsVersion(&verMaj
, &verMin
) == wxOS_WINDOWS_NT
&&
909 if ( s_needToUpdate
)
911 // we send WM_CHANGEUISTATE so if nothing needs changing then the system
912 // won't send WM_UPDATEUISTATE
913 ::SendMessage(GetHwnd(), WM_CHANGEUISTATE
, MAKEWPARAM(action
, state
), 0);
917 // ---------------------------------------------------------------------------
919 // ---------------------------------------------------------------------------
924 inline int GetScrollPosition(HWND hWnd
, int wOrient
)
926 #ifdef __WXMICROWIN__
927 return ::GetScrollPosWX(hWnd
, wOrient
);
929 WinStruct
<SCROLLINFO
> scrollInfo
;
930 scrollInfo
.cbSize
= sizeof(SCROLLINFO
);
931 scrollInfo
.fMask
= SIF_POS
;
932 ::GetScrollInfo(hWnd
, wOrient
, &scrollInfo
);
934 return scrollInfo
.nPos
;
939 inline UINT
WXOrientToSB(int orient
)
941 return orient
== wxHORIZONTAL
? SB_HORZ
: SB_VERT
;
944 } // anonymous namespace
946 int wxWindowMSW::GetScrollPos(int orient
) const
948 HWND hWnd
= GetHwnd();
949 wxCHECK_MSG( hWnd
, 0, wxT("no HWND in GetScrollPos") );
951 return GetScrollPosition(hWnd
, WXOrientToSB(orient
));
954 // This now returns the whole range, not just the number
955 // of positions that we can scroll.
956 int wxWindowMSW::GetScrollRange(int orient
) const
959 HWND hWnd
= GetHwnd();
962 WinStruct
<SCROLLINFO
> scrollInfo
;
963 scrollInfo
.fMask
= SIF_RANGE
;
964 if ( !::GetScrollInfo(hWnd
, WXOrientToSB(orient
), &scrollInfo
) )
966 // Most of the time this is not really an error, since the return
967 // value can also be zero when there is no scrollbar yet.
968 // wxLogLastError(wxT("GetScrollInfo"));
970 maxPos
= scrollInfo
.nMax
;
972 // undo "range - 1" done in SetScrollbar()
976 int wxWindowMSW::GetScrollThumb(int orient
) const
978 return orient
== wxHORIZONTAL
? m_xThumbSize
: m_yThumbSize
;
981 void wxWindowMSW::SetScrollPos(int orient
, int pos
, bool refresh
)
983 HWND hWnd
= GetHwnd();
984 wxCHECK_RET( hWnd
, wxT("SetScrollPos: no HWND") );
986 WinStruct
<SCROLLINFO
> info
;
990 info
.fMask
= SIF_POS
;
991 if ( HasFlag(wxALWAYS_SHOW_SB
) )
993 // disable scrollbar instead of removing it then
994 info
.fMask
|= SIF_DISABLENOSCROLL
;
997 ::SetScrollInfo(hWnd
, WXOrientToSB(orient
), &info
, refresh
);
1000 // New function that will replace some of the above.
1001 void wxWindowMSW::SetScrollbar(int orient
,
1007 // We have to set the variables here to make them valid in events
1008 // triggered by ::SetScrollInfo()
1009 *(orient
== wxHORIZONTAL
? &m_xThumbSize
: &m_yThumbSize
) = pageSize
;
1011 HWND hwnd
= GetHwnd();
1015 WinStruct
<SCROLLINFO
> info
;
1018 info
.nPage
= pageSize
;
1019 info
.nMin
= 0; // range is nMax - nMin + 1
1020 info
.nMax
= range
- 1; // as both nMax and nMax are inclusive
1023 // We normally also reenable scrollbar in case it had been previously
1024 // disabled by specifying SIF_DISABLENOSCROLL below but we should only
1025 // do this if it has valid range, otherwise it would be enabled but not
1027 if ( range
>= pageSize
)
1029 ::EnableScrollBar(hwnd
, WXOrientToSB(orient
), ESB_ENABLE_BOTH
);
1032 //else: leave all the fields to be 0
1034 info
.fMask
= SIF_RANGE
| SIF_PAGE
| SIF_POS
;
1035 if ( HasFlag(wxALWAYS_SHOW_SB
) || range
== -1 )
1037 // disable scrollbar instead of removing it then
1038 info
.fMask
|= SIF_DISABLENOSCROLL
;
1041 ::SetScrollInfo(hwnd
, WXOrientToSB(orient
), &info
, refresh
);
1044 void wxWindowMSW::ScrollWindow(int dx
, int dy
, const wxRect
*prect
)
1050 wxCopyRectToRECT(*prect
, rect
);
1060 // FIXME: is this the exact equivalent of the line below?
1061 ::ScrollWindowEx(GetHwnd(), dx
, dy
, pr
, pr
, 0, 0, SW_SCROLLCHILDREN
|SW_ERASE
|SW_INVALIDATE
);
1063 ::ScrollWindow(GetHwnd(), dx
, dy
, pr
, pr
);
1067 static bool ScrollVertically(HWND hwnd
, int kind
, int count
)
1069 int posStart
= GetScrollPosition(hwnd
, SB_VERT
);
1072 for ( int n
= 0; n
< count
; n
++ )
1074 ::SendMessage(hwnd
, WM_VSCROLL
, kind
, 0);
1076 int posNew
= GetScrollPosition(hwnd
, SB_VERT
);
1077 if ( posNew
== pos
)
1079 // don't bother to continue, we're already at top/bottom
1086 return pos
!= posStart
;
1089 bool wxWindowMSW::ScrollLines(int lines
)
1091 bool down
= lines
> 0;
1093 return ScrollVertically(GetHwnd(),
1094 down
? SB_LINEDOWN
: SB_LINEUP
,
1095 down
? lines
: -lines
);
1098 bool wxWindowMSW::ScrollPages(int pages
)
1100 bool down
= pages
> 0;
1102 return ScrollVertically(GetHwnd(),
1103 down
? SB_PAGEDOWN
: SB_PAGEUP
,
1104 down
? pages
: -pages
);
1107 // ----------------------------------------------------------------------------
1109 // ----------------------------------------------------------------------------
1111 void wxWindowMSW::SetLayoutDirection(wxLayoutDirection dir
)
1116 wxCHECK_RET( GetHwnd(),
1117 wxT("layout direction must be set after window creation") );
1119 LONG styleOld
= wxGetWindowExStyle(this);
1121 LONG styleNew
= styleOld
;
1124 case wxLayout_LeftToRight
:
1125 styleNew
&= ~WS_EX_LAYOUTRTL
;
1128 case wxLayout_RightToLeft
:
1129 styleNew
|= WS_EX_LAYOUTRTL
;
1133 wxFAIL_MSG(wxT("unsupported layout direction"));
1137 if ( styleNew
!= styleOld
)
1139 wxSetWindowExStyle(this, styleNew
);
1144 wxLayoutDirection
wxWindowMSW::GetLayoutDirection() const
1147 return wxLayout_Default
;
1149 wxCHECK_MSG( GetHwnd(), wxLayout_Default
, wxT("invalid window") );
1151 return wxHasWindowExStyle(this, WS_EX_LAYOUTRTL
) ? wxLayout_RightToLeft
1152 : wxLayout_LeftToRight
;
1157 wxWindowMSW::AdjustForLayoutDirection(wxCoord x
,
1158 wxCoord
WXUNUSED(width
),
1159 wxCoord
WXUNUSED(widthTotal
)) const
1161 // Win32 mirrors the coordinates of RTL windows automatically, so don't
1162 // redo it ourselves
1166 // ---------------------------------------------------------------------------
1168 // ---------------------------------------------------------------------------
1170 void wxWindowMSW::SubclassWin(WXHWND hWnd
)
1172 wxASSERT_MSG( !m_oldWndProc
, wxT("subclassing window twice?") );
1174 HWND hwnd
= (HWND
)hWnd
;
1175 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in SubclassWin") );
1179 wxAssociateWinWithHandle(hwnd
, this);
1181 m_oldWndProc
= (WXFARPROC
)wxGetWindowProc((HWND
)hWnd
);
1183 // we don't need to subclass the window of our own class (in the Windows
1184 // sense of the word)
1185 if ( !wxCheckWindowWndProc(hWnd
, (WXFARPROC
)wxWndProc
) )
1187 wxSetWindowProc(hwnd
, wxWndProc
);
1191 // don't bother restoring it either: this also makes it easy to
1192 // implement IsOfStandardClass() method which returns true for the
1193 // standard controls and false for the wxWidgets own windows as it can
1194 // simply check m_oldWndProc
1195 m_oldWndProc
= NULL
;
1198 // we're officially created now, send the event
1199 wxWindowCreateEvent
event((wxWindow
*)this);
1200 (void)HandleWindowEvent(event
);
1203 void wxWindowMSW::UnsubclassWin()
1205 wxRemoveHandleAssociation(this);
1207 // Restore old Window proc
1208 HWND hwnd
= GetHwnd();
1213 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in UnsubclassWin") );
1217 if ( !wxCheckWindowWndProc((WXHWND
)hwnd
, m_oldWndProc
) )
1219 wxSetWindowProc(hwnd
, (WNDPROC
)m_oldWndProc
);
1222 m_oldWndProc
= NULL
;
1227 void wxWindowMSW::AssociateHandle(WXWidget handle
)
1231 if ( !::DestroyWindow(GetHwnd()) )
1233 wxLogLastError(wxT("DestroyWindow"));
1237 WXHWND wxhwnd
= (WXHWND
)handle
;
1239 // this also calls SetHWND(wxhwnd)
1240 SubclassWin(wxhwnd
);
1243 void wxWindowMSW::DissociateHandle()
1245 // this also calls SetHWND(0) for us
1250 bool wxCheckWindowWndProc(WXHWND hWnd
,
1251 WXFARPROC
WXUNUSED(wndProc
))
1253 const wxString
str(wxGetWindowClass(hWnd
));
1255 // TODO: get rid of wxTLWHiddenParent special case (currently it's not
1256 // registered by wxApp but using ad hoc code in msw/toplevel.cpp);
1257 // there is also a hidden window class used by sockets &c
1258 return wxApp::IsRegisteredClassName(str
) || str
== wxT("wxTLWHiddenParent");
1261 // ----------------------------------------------------------------------------
1263 // ----------------------------------------------------------------------------
1265 void wxWindowMSW::SetWindowStyleFlag(long flags
)
1267 long flagsOld
= GetWindowStyleFlag();
1268 if ( flags
== flagsOld
)
1271 // update the internal variable
1272 wxWindowBase::SetWindowStyleFlag(flags
);
1274 // and the real window flags
1275 MSWUpdateStyle(flagsOld
, GetExtraStyle());
1278 void wxWindowMSW::SetExtraStyle(long exflags
)
1280 long exflagsOld
= GetExtraStyle();
1281 if ( exflags
== exflagsOld
)
1284 // update the internal variable
1285 wxWindowBase::SetExtraStyle(exflags
);
1287 // and the real window flags
1288 MSWUpdateStyle(GetWindowStyleFlag(), exflagsOld
);
1291 void wxWindowMSW::MSWUpdateStyle(long flagsOld
, long exflagsOld
)
1293 // now update the Windows style as well if needed - and if the window had
1294 // been already created
1298 // we may need to call SetWindowPos() when we change some styles
1299 bool callSWP
= false;
1302 long style
= MSWGetStyle(GetWindowStyleFlag(), &exstyle
);
1304 // this is quite a horrible hack but we need it because MSWGetStyle()
1305 // doesn't take exflags as parameter but uses GetExtraStyle() internally
1306 // and so we have to modify the window exflags temporarily to get the
1307 // correct exstyleOld
1308 long exflagsNew
= GetExtraStyle();
1309 wxWindowBase::SetExtraStyle(exflagsOld
);
1312 long styleOld
= MSWGetStyle(flagsOld
, &exstyleOld
);
1314 wxWindowBase::SetExtraStyle(exflagsNew
);
1317 if ( style
!= styleOld
)
1319 // some flags (e.g. WS_VISIBLE or WS_DISABLED) should not be changed by
1320 // this function so instead of simply setting the style to the new
1321 // value we clear the bits which were set in styleOld but are set in
1322 // the new one and set the ones which were not set before
1323 long styleReal
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1324 styleReal
&= ~styleOld
;
1327 ::SetWindowLong(GetHwnd(), GWL_STYLE
, styleReal
);
1329 // we need to call SetWindowPos() if any of the styles affecting the
1330 // frame appearance have changed
1331 callSWP
= ((styleOld
^ style
) & (WS_BORDER
|
1340 // and the extended style
1341 long exstyleReal
= wxGetWindowExStyle(this);
1343 if ( exstyle
!= exstyleOld
)
1345 exstyleReal
&= ~exstyleOld
;
1346 exstyleReal
|= exstyle
;
1348 wxSetWindowExStyle(this, exstyleReal
);
1350 // ex style changes don't take effect without calling SetWindowPos
1356 // we must call SetWindowPos() to flush the cached extended style and
1357 // also to make the change to wxSTAY_ON_TOP style take effect: just
1358 // setting the style simply doesn't work
1359 if ( !::SetWindowPos(GetHwnd(),
1360 exstyleReal
& WS_EX_TOPMOST
? HWND_TOPMOST
1363 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
|
1366 wxLogLastError(wxT("SetWindowPos"));
1371 wxBorder
wxWindowMSW::GetDefaultBorderForControl() const
1373 return wxBORDER_THEME
;
1376 wxBorder
wxWindowMSW::GetDefaultBorder() const
1378 return wxWindowBase::GetDefaultBorder();
1381 // Translate wxBORDER_THEME (and other border styles if necessary) to the value
1382 // that makes most sense for this Windows environment
1383 wxBorder
wxWindowMSW::TranslateBorder(wxBorder border
) const
1385 #if defined(__POCKETPC__) || defined(__SMARTPHONE__)
1386 if (border
== wxBORDER_THEME
|| border
== wxBORDER_SUNKEN
|| border
== wxBORDER_SIMPLE
)
1387 return wxBORDER_SIMPLE
;
1389 return wxBORDER_NONE
;
1392 if (border
== wxBORDER_THEME
)
1394 if (CanApplyThemeBorder())
1396 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
1398 return wxBORDER_THEME
;
1400 return wxBORDER_SUNKEN
;
1408 WXDWORD
wxWindowMSW::MSWGetStyle(long flags
, WXDWORD
*exstyle
) const
1410 // translate common wxWidgets styles to Windows ones
1412 // most of windows are child ones, those which are not (such as
1413 // wxTopLevelWindow) should remove WS_CHILD in their MSWGetStyle()
1414 WXDWORD style
= WS_CHILD
;
1416 // using this flag results in very significant reduction in flicker,
1417 // especially with controls inside the static boxes (as the interior of the
1418 // box is not redrawn twice), but sometimes results in redraw problems, so
1419 // optionally allow the old code to continue to use it provided a special
1420 // system option is turned on
1421 if ( !wxSystemOptions::GetOptionInt(wxT("msw.window.no-clip-children"))
1422 || (flags
& wxCLIP_CHILDREN
) )
1423 style
|= WS_CLIPCHILDREN
;
1425 // it doesn't seem useful to use WS_CLIPSIBLINGS here as we officially
1426 // don't support overlapping windows and it only makes sense for them and,
1427 // presumably, gives the system some extra work (to manage more clipping
1428 // regions), so avoid it alltogether
1431 if ( flags
& wxVSCROLL
)
1432 style
|= WS_VSCROLL
;
1434 if ( flags
& wxHSCROLL
)
1435 style
|= WS_HSCROLL
;
1437 const wxBorder border
= TranslateBorder(GetBorder(flags
));
1439 // After translation, border is now optimized for the specific version of Windows
1440 // and theme engine presence.
1442 // WS_BORDER is only required for wxBORDER_SIMPLE
1443 if ( border
== wxBORDER_SIMPLE
)
1446 // now deal with ext style if the caller wants it
1452 if ( flags
& wxTRANSPARENT_WINDOW
)
1453 *exstyle
|= WS_EX_TRANSPARENT
;
1459 case wxBORDER_DEFAULT
:
1460 wxFAIL_MSG( wxT("unknown border style") );
1464 case wxBORDER_SIMPLE
:
1465 case wxBORDER_THEME
:
1468 case wxBORDER_STATIC
:
1469 *exstyle
|= WS_EX_STATICEDGE
;
1472 case wxBORDER_RAISED
:
1473 *exstyle
|= WS_EX_DLGMODALFRAME
;
1476 case wxBORDER_SUNKEN
:
1477 *exstyle
|= WS_EX_CLIENTEDGE
;
1478 style
&= ~WS_BORDER
;
1481 // case wxBORDER_DOUBLE:
1482 // *exstyle |= WS_EX_DLGMODALFRAME;
1486 // wxUniv doesn't use Windows dialog navigation functions at all
1487 #if !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__)
1488 // to make the dialog navigation work with the nested panels we must
1489 // use this style (top level windows such as dialogs don't need it)
1490 if ( (flags
& wxTAB_TRAVERSAL
) && !IsTopLevel() )
1492 *exstyle
|= WS_EX_CONTROLPARENT
;
1494 #endif // __WXUNIVERSAL__
1500 // Setup background and foreground colours correctly
1501 void wxWindowMSW::SetupColours()
1504 SetBackgroundColour(GetParent()->GetBackgroundColour());
1507 bool wxWindowMSW::IsMouseInWindow() const
1509 // get the mouse position
1511 wxGetCursorPosMSW(&pt
);
1513 // find the window which currently has the cursor and go up the window
1514 // chain until we find this window - or exhaust it
1515 HWND hwnd
= ::WindowFromPoint(pt
);
1516 while ( hwnd
&& (hwnd
!= GetHwnd()) )
1517 hwnd
= ::GetParent(hwnd
);
1519 return hwnd
!= NULL
;
1522 void wxWindowMSW::OnInternalIdle()
1524 #ifndef HAVE_TRACKMOUSEEVENT
1525 // Check if we need to send a LEAVE event
1526 if ( m_mouseInWindow
)
1528 // note that we should generate the leave event whether the window has
1529 // or doesn't have mouse capture
1530 if ( !IsMouseInWindow() )
1532 GenerateMouseLeave();
1535 #endif // !HAVE_TRACKMOUSEEVENT
1537 wxWindowBase::OnInternalIdle();
1540 // Set this window to be the child of 'parent'.
1541 bool wxWindowMSW::Reparent(wxWindowBase
*parent
)
1543 if ( !wxWindowBase::Reparent(parent
) )
1546 HWND hWndChild
= GetHwnd();
1547 HWND hWndParent
= GetParent() ? GetWinHwnd(GetParent()) : (HWND
)0;
1549 ::SetParent(hWndChild
, hWndParent
);
1552 if ( wxHasWindowExStyle(this, WS_EX_CONTROLPARENT
) )
1554 EnsureParentHasControlParentStyle(GetParent());
1556 #endif // !__WXWINCE__
1561 static inline void SendSetRedraw(HWND hwnd
, bool on
)
1563 #ifndef __WXMICROWIN__
1564 ::SendMessage(hwnd
, WM_SETREDRAW
, (WPARAM
)on
, 0);
1568 void wxWindowMSW::DoFreeze()
1571 return; // no point in freezing hidden window
1573 SendSetRedraw(GetHwnd(), false);
1576 void wxWindowMSW::DoThaw()
1579 return; // hidden windows aren't frozen by DoFreeze
1581 SendSetRedraw(GetHwnd(), true);
1583 // we need to refresh everything or otherwise the invalidated area
1584 // is not going to be repainted
1588 void wxWindowMSW::Refresh(bool eraseBack
, const wxRect
*rect
)
1590 HWND hWnd
= GetHwnd();
1597 wxCopyRectToRECT(*rect
, mswRect
);
1605 // RedrawWindow not available on SmartPhone or eVC++ 3
1606 #if !defined(__SMARTPHONE__) && !(defined(_WIN32_WCE) && _WIN32_WCE < 400)
1607 UINT flags
= RDW_INVALIDATE
| RDW_ALLCHILDREN
;
1611 ::RedrawWindow(hWnd
, pRect
, NULL
, flags
);
1613 ::InvalidateRect(hWnd
, pRect
, eraseBack
);
1618 void wxWindowMSW::Update()
1620 if ( !::UpdateWindow(GetHwnd()) )
1622 wxLogLastError(wxT("UpdateWindow"));
1625 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1626 // just calling UpdateWindow() is not enough, what we did in our WM_PAINT
1627 // handler needs to be really drawn right now
1632 // ---------------------------------------------------------------------------
1634 // ---------------------------------------------------------------------------
1636 #if wxUSE_DRAG_AND_DROP || !defined(__WXWINCE__)
1640 // we need to lower the sibling static boxes so controls contained within can be
1642 static void AdjustStaticBoxZOrder(wxWindow
*parent
)
1644 // no sibling static boxes if we have no parent (ie TLW)
1648 for ( wxWindowList::compatibility_iterator node
= parent
->GetChildren().GetFirst();
1650 node
= node
->GetNext() )
1652 wxStaticBox
*statbox
= wxDynamicCast(node
->GetData(), wxStaticBox
);
1655 ::SetWindowPos(GetHwndOf(statbox
), HWND_BOTTOM
, 0, 0, 0, 0,
1656 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
1661 #else // !wxUSE_STATBOX
1663 static inline void AdjustStaticBoxZOrder(wxWindow
* WXUNUSED(parent
))
1667 #endif // wxUSE_STATBOX/!wxUSE_STATBOX
1669 #endif // drag and drop is used
1671 #if wxUSE_DRAG_AND_DROP
1672 void wxWindowMSW::SetDropTarget(wxDropTarget
*pDropTarget
)
1674 if ( m_dropTarget
!= 0 ) {
1675 m_dropTarget
->Revoke(m_hWnd
);
1676 delete m_dropTarget
;
1679 m_dropTarget
= pDropTarget
;
1680 if ( m_dropTarget
!= 0 )
1682 AdjustStaticBoxZOrder(GetParent());
1683 m_dropTarget
->Register(m_hWnd
);
1686 #endif // wxUSE_DRAG_AND_DROP
1688 // old-style file manager drag&drop support: we retain the old-style
1689 // DragAcceptFiles in parallel with SetDropTarget.
1690 void wxWindowMSW::DragAcceptFiles(bool WXUNUSED_IN_WINCE(accept
))
1693 HWND hWnd
= GetHwnd();
1696 AdjustStaticBoxZOrder(GetParent());
1697 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
1702 // ----------------------------------------------------------------------------
1704 // ----------------------------------------------------------------------------
1708 void wxWindowMSW::DoSetToolTip(wxToolTip
*tooltip
)
1710 wxWindowBase::DoSetToolTip(tooltip
);
1713 m_tooltip
->SetWindow((wxWindow
*)this);
1716 #endif // wxUSE_TOOLTIPS
1718 // ---------------------------------------------------------------------------
1719 // moving and resizing
1720 // ---------------------------------------------------------------------------
1722 bool wxWindowMSW::IsSizeDeferred() const
1724 #if wxUSE_DEFERRED_SIZING
1725 if ( m_pendingPosition
!= wxDefaultPosition
||
1726 m_pendingSize
!= wxDefaultSize
)
1728 #endif // wxUSE_DEFERRED_SIZING
1734 void wxWindowMSW::DoGetSize(int *x
, int *y
) const
1736 #if wxUSE_DEFERRED_SIZING
1737 // if SetSize() had been called at wx level but not realized at Windows
1738 // level yet (i.e. EndDeferWindowPos() not called), we still should return
1739 // the new and not the old position to the other wx code
1740 if ( m_pendingSize
!= wxDefaultSize
)
1743 *x
= m_pendingSize
.x
;
1745 *y
= m_pendingSize
.y
;
1747 else // use current size
1748 #endif // wxUSE_DEFERRED_SIZING
1750 RECT rect
= wxGetWindowRect(GetHwnd());
1753 *x
= rect
.right
- rect
.left
;
1755 *y
= rect
.bottom
- rect
.top
;
1759 // Get size *available for subwindows* i.e. excluding menu bar etc.
1760 void wxWindowMSW::DoGetClientSize(int *x
, int *y
) const
1762 #if wxUSE_DEFERRED_SIZING
1763 if ( m_pendingSize
!= wxDefaultSize
)
1765 // we need to calculate the client size corresponding to pending size
1767 // FIXME: Unfortunately this doesn't work correctly for the maximized
1768 // top level windows, the returned values are too small (e.g.
1769 // under Windows 7 on a 1600*1200 screen with task bar on the
1770 // right the pending size for a maximized window is 1538*1200
1771 // and WM_NCCALCSIZE returns 1528*1172 even though the correct
1772 // client size of such window is 1538*1182). No idea how to fix
1773 // it though, setting WS_MAXIMIZE in GWL_STYLE before calling
1774 // WM_NCCALCSIZE doesn't help and AdjustWindowRectEx() doesn't
1775 // work in this direction neither. So we just have to live with
1776 // the slightly wrong results and relayout the window when it
1777 // gets finally shown in its maximized state (see #11762).
1779 rect
.left
= m_pendingPosition
.x
;
1780 rect
.top
= m_pendingPosition
.y
;
1781 rect
.right
= rect
.left
+ m_pendingSize
.x
;
1782 rect
.bottom
= rect
.top
+ m_pendingSize
.y
;
1784 ::SendMessage(GetHwnd(), WM_NCCALCSIZE
, FALSE
, (LPARAM
)&rect
);
1787 *x
= rect
.right
- rect
.left
;
1789 *y
= rect
.bottom
- rect
.top
;
1792 #endif // wxUSE_DEFERRED_SIZING
1794 RECT rect
= wxGetClientRect(GetHwnd());
1802 // The size of the client window can't be negative but ::GetClientRect()
1803 // can return negative size for an extremely small (1x1) window with
1804 // borders so ensure that we correct it here as having negative sizes is
1805 // completely unexpected.
1812 void wxWindowMSW::DoGetPosition(int *x
, int *y
) const
1814 wxWindow
* const parent
= GetParent();
1817 #if wxUSE_DEFERRED_SIZING
1818 if ( m_pendingPosition
!= wxDefaultPosition
)
1820 pos
= m_pendingPosition
;
1822 else // use current position
1823 #endif // wxUSE_DEFERRED_SIZING
1825 RECT rect
= wxGetWindowRect(GetHwnd());
1828 point
.x
= rect
.left
;
1831 // we do the adjustments with respect to the parent only for the "real"
1832 // children, not for the dialogs/frames
1833 if ( !IsTopLevel() )
1835 if ( wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
)
1837 // In RTL mode, we want the logical left x-coordinate,
1838 // which would be the physical right x-coordinate.
1839 point
.x
= rect
.right
;
1842 // Since we now have the absolute screen coords, if there's a
1843 // parent we must subtract its top left corner
1846 ::ScreenToClient(GetHwndOf(parent
), &point
);
1854 // we also must adjust by the client area offset: a control which is just
1855 // under a toolbar could be at (0, 30) in Windows but at (0, 0) in wx
1856 if ( parent
&& !IsTopLevel() )
1858 const wxPoint
pt(parent
->GetClientAreaOrigin());
1869 void wxWindowMSW::DoScreenToClient(int *x
, int *y
) const
1877 ::ScreenToClient(GetHwnd(), &pt
);
1885 void wxWindowMSW::DoClientToScreen(int *x
, int *y
) const
1893 ::ClientToScreen(GetHwnd(), &pt
);
1902 wxWindowMSW::DoMoveSibling(WXHWND hwnd
, int x
, int y
, int width
, int height
)
1904 #if wxUSE_DEFERRED_SIZING
1905 // if our parent had prepared a defer window handle for us, use it (unless
1906 // we are a top level window)
1907 wxWindowMSW
* const parent
= IsTopLevel() ? NULL
: GetParent();
1909 HDWP hdwp
= parent
? (HDWP
)parent
->m_hDWP
: NULL
;
1912 hdwp
= ::DeferWindowPos(hdwp
, (HWND
)hwnd
, NULL
, x
, y
, width
, height
,
1913 SWP_NOZORDER
| SWP_NOOWNERZORDER
| SWP_NOACTIVATE
);
1916 wxLogLastError(wxT("DeferWindowPos"));
1922 // hdwp must be updated as it may have been changed
1923 parent
->m_hDWP
= (WXHANDLE
)hdwp
;
1928 // did deferred move, remember new coordinates of the window as they're
1929 // different from what Windows would return for it
1933 // otherwise (or if deferring failed) move the window in place immediately
1934 #endif // wxUSE_DEFERRED_SIZING
1935 if ( !::MoveWindow((HWND
)hwnd
, x
, y
, width
, height
, IsShown()) )
1937 wxLogLastError(wxT("MoveWindow"));
1940 // if wxUSE_DEFERRED_SIZING, indicates that we didn't use deferred move,
1941 // ignored otherwise
1945 void wxWindowMSW::DoMoveWindow(int x
, int y
, int width
, int height
)
1947 // TODO: is this consistent with other platforms?
1948 // Still, negative width or height shouldn't be allowed
1954 if ( DoMoveSibling(m_hWnd
, x
, y
, width
, height
) )
1956 #if wxUSE_DEFERRED_SIZING
1957 m_pendingPosition
= wxPoint(x
, y
);
1958 m_pendingSize
= wxSize(width
, height
);
1960 else // window was moved immediately, without deferring it
1962 m_pendingPosition
= wxDefaultPosition
;
1963 m_pendingSize
= wxDefaultSize
;
1964 #endif // wxUSE_DEFERRED_SIZING
1968 // set the size of the window: if the dimensions are positive, just use them,
1969 // but if any of them is equal to -1, it means that we must find the value for
1970 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1971 // which case -1 is a valid value for x and y)
1973 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1974 // the width/height to best suit our contents, otherwise we reuse the current
1976 void wxWindowMSW::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1978 // get the current size and position...
1979 int currentX
, currentY
;
1980 int currentW
, currentH
;
1982 GetPosition(¤tX
, ¤tY
);
1983 GetSize(¤tW
, ¤tH
);
1985 // ... and don't do anything (avoiding flicker) if it's already ok unless
1986 // we're forced to resize the window
1987 if ( x
== currentX
&& y
== currentY
&&
1988 width
== currentW
&& height
== currentH
&&
1989 !(sizeFlags
& wxSIZE_FORCE
) )
1991 if (sizeFlags
& wxSIZE_FORCE_EVENT
)
1993 wxSizeEvent
event( wxSize(width
,height
), GetId() );
1994 event
.SetEventObject( this );
1995 HandleWindowEvent( event
);
2000 if ( x
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
2002 if ( y
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
2005 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
2007 wxSize size
= wxDefaultSize
;
2008 if ( width
== wxDefaultCoord
)
2010 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
2012 size
= GetBestSize();
2017 // just take the current one
2022 if ( height
== wxDefaultCoord
)
2024 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
2026 if ( size
.x
== wxDefaultCoord
)
2028 size
= GetBestSize();
2030 //else: already called GetBestSize() above
2036 // just take the current one
2041 DoMoveWindow(x
, y
, width
, height
);
2044 void wxWindowMSW::DoSetClientSize(int width
, int height
)
2046 // setting the client size is less obvious than it could have been
2047 // because in the result of changing the total size the window scrollbar
2048 // may [dis]appear and/or its menubar may [un]wrap (and AdjustWindowRect()
2049 // doesn't take neither into account) and so the client size will not be
2050 // correct as the difference between the total and client size changes --
2051 // so we keep changing it until we get it right
2053 // normally this loop shouldn't take more than 3 iterations (usually 1 but
2054 // if scrollbars [dis]appear as the result of the first call, then 2 and it
2055 // may become 3 if the window had 0 size originally and so we didn't
2056 // calculate the scrollbar correction correctly during the first iteration)
2057 // but just to be on the safe side we check for it instead of making it an
2058 // "infinite" loop (i.e. leaving break inside as the only way to get out)
2059 for ( int i
= 0; i
< 4; i
++ )
2062 ::GetClientRect(GetHwnd(), &rectClient
);
2064 // if the size is already ok, stop here (NB: rectClient.left = top = 0)
2065 if ( (rectClient
.right
== width
|| width
== wxDefaultCoord
) &&
2066 (rectClient
.bottom
== height
|| height
== wxDefaultCoord
) )
2071 // Find the difference between the entire window (title bar and all)
2072 // and the client area; add this to the new client size to move the
2075 ::GetWindowRect(GetHwnd(), &rectWin
);
2077 const int widthWin
= rectWin
.right
- rectWin
.left
,
2078 heightWin
= rectWin
.bottom
- rectWin
.top
;
2080 // MoveWindow positions the child windows relative to the parent, so
2081 // adjust if necessary
2082 if ( !IsTopLevel() )
2084 wxWindow
*parent
= GetParent();
2087 ::ScreenToClient(GetHwndOf(parent
), (POINT
*)&rectWin
);
2091 // don't call DoMoveWindow() because we want to move window immediately
2092 // and not defer it here as otherwise the value returned by
2093 // GetClient/WindowRect() wouldn't change as the window wouldn't be
2095 if ( !::MoveWindow(GetHwnd(),
2098 width
+ widthWin
- rectClient
.right
,
2099 height
+ heightWin
- rectClient
.bottom
,
2102 wxLogLastError(wxT("MoveWindow"));
2107 wxSize
wxWindowMSW::DoGetBorderSize() const
2110 switch ( GetBorder() )
2112 case wxBORDER_STATIC
:
2113 case wxBORDER_SIMPLE
:
2117 case wxBORDER_SUNKEN
:
2121 case wxBORDER_RAISED
:
2122 case wxBORDER_DOUBLE
:
2127 wxFAIL_MSG( wxT("unknown border style") );
2134 return 2*wxSize(border
, border
);
2137 // ---------------------------------------------------------------------------
2139 // ---------------------------------------------------------------------------
2141 int wxWindowMSW::GetCharHeight() const
2143 return wxGetTextMetrics(this).tmHeight
;
2146 int wxWindowMSW::GetCharWidth() const
2148 // +1 is needed because Windows apparently adds it when calculating the
2149 // dialog units size in pixels
2150 #if wxDIALOG_UNIT_COMPATIBILITY
2151 return wxGetTextMetrics(this).tmAveCharWidth
;
2153 return wxGetTextMetrics(this).tmAveCharWidth
+ 1;
2157 void wxWindowMSW::DoGetTextExtent(const wxString
& string
,
2160 int *externalLeading
,
2161 const wxFont
*fontToUse
) const
2163 wxASSERT_MSG( !fontToUse
|| fontToUse
->IsOk(),
2164 wxT("invalid font in GetTextExtent()") );
2168 hfontToUse
= GetHfontOf(*fontToUse
);
2170 hfontToUse
= GetHfontOf(GetFont());
2172 WindowHDC
hdc(GetHwnd());
2173 SelectInHDC
selectFont(hdc
, hfontToUse
);
2177 ::GetTextExtentPoint32(hdc
, string
.wx_str(), string
.length(), &sizeRect
);
2178 GetTextMetrics(hdc
, &tm
);
2185 *descent
= tm
.tmDescent
;
2186 if ( externalLeading
)
2187 *externalLeading
= tm
.tmExternalLeading
;
2190 // ---------------------------------------------------------------------------
2192 // ---------------------------------------------------------------------------
2194 #if wxUSE_MENUS_NATIVE
2196 // yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue
2197 // immediately, without waiting for the next event loop iteration
2199 // NB: this function should probably be made public later as it can almost
2200 // surely replace wxYield() elsewhere as well
2201 static void wxYieldForCommandsOnly()
2203 // peek all WM_COMMANDs (it will always return WM_QUIT too but we don't
2204 // want to process it here)
2206 while ( ::PeekMessage(&msg
, (HWND
)0, WM_COMMAND
, WM_COMMAND
, PM_REMOVE
) )
2208 if ( msg
.message
== WM_QUIT
)
2210 // if we retrieved a WM_QUIT, insert back into the message queue.
2211 ::PostQuitMessage(0);
2215 // luckily (as we don't have access to wxEventLoopImpl method from here
2216 // anyhow...) we don't need to pre process WM_COMMANDs so dispatch it
2218 ::TranslateMessage(&msg
);
2219 ::DispatchMessage(&msg
);
2223 bool wxWindowMSW::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
2228 if ( x
== wxDefaultCoord
&& y
== wxDefaultCoord
)
2230 pt
= wxGetMousePosition();
2234 pt
= ClientToScreen(wxPoint(x
, y
));
2237 #if defined(__WXWINCE__)
2238 static const UINT flags
= 0;
2239 #else // !__WXWINCE__
2240 UINT flags
= TPM_RIGHTBUTTON
;
2241 // NT4 doesn't support TPM_RECURSE and simply doesn't show the menu at all
2242 // when it's use, I'm not sure about Win95/98 but prefer to err on the safe
2243 // side and not to use it there neither -- modify the test if it does work
2245 if ( wxGetWinVersion() >= wxWinVersion_5
)
2247 // using TPM_RECURSE allows us to show a popup menu while another menu
2248 // is opened which can be useful and is supported by the other
2249 // platforms, so allow it under Windows too
2250 flags
|= TPM_RECURSE
;
2252 #endif // __WXWINCE__/!__WXWINCE__
2254 ::TrackPopupMenu(GetHmenuOf(menu
), flags
, pt
.x
, pt
.y
, 0, GetHwnd(), NULL
);
2256 // we need to do it right now as otherwise the events are never going to be
2257 // sent to wxCurrentPopupMenu from HandleCommand()
2259 // note that even eliminating (ugly) wxCurrentPopupMenu global wouldn't
2260 // help and we'd still need wxYieldForCommandsOnly() as the menu may be
2261 // destroyed as soon as we return (it can be a local variable in the caller
2262 // for example) and so we do need to process the event immediately
2263 wxYieldForCommandsOnly();
2268 #endif // wxUSE_MENUS_NATIVE
2270 // ===========================================================================
2271 // pre/post message processing
2272 // ===========================================================================
2274 WXLRESULT
wxWindowMSW::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
2278 rc
= ::CallWindowProc(CASTWNDPROC m_oldWndProc
, GetHwnd(), (UINT
) nMsg
, (WPARAM
) wParam
, (LPARAM
) lParam
);
2280 rc
= ::DefWindowProc(GetHwnd(), nMsg
, wParam
, lParam
);
2282 // Special hack used by wxTextEntry auto-completion only: this event is
2283 // sent after the normal keyboard processing so that its handler could use
2284 // the updated contents of the text control, after taking the key that was
2285 // pressed into account.
2286 if ( nMsg
== WM_CHAR
)
2288 wxKeyEvent
event(CreateCharEvent(wxEVT_AFTER_CHAR
, wParam
, lParam
));
2289 HandleWindowEvent(event
);
2295 bool wxWindowMSW::MSWProcessMessage(WXMSG
* pMsg
)
2297 // wxUniversal implements tab traversal itself
2298 #ifndef __WXUNIVERSAL__
2299 if ( m_hWnd
!= 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL
) )
2301 // intercept dialog navigation keys
2302 MSG
*msg
= (MSG
*)pMsg
;
2304 // here we try to do all the job which ::IsDialogMessage() usually does
2306 if ( msg
->message
== WM_KEYDOWN
)
2308 bool bCtrlDown
= wxIsCtrlDown();
2309 bool bShiftDown
= wxIsShiftDown();
2311 // WM_GETDLGCODE: ask the control if it wants the key for itself,
2312 // don't process it if it's the case (except for Ctrl-Tab/Enter
2313 // combinations which are always processed)
2314 LONG lDlgCode
= ::SendMessage(msg
->hwnd
, WM_GETDLGCODE
, 0, 0);
2316 // surprisingly, DLGC_WANTALLKEYS bit mask doesn't contain the
2317 // DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically,
2318 // it, of course, implies them
2319 if ( lDlgCode
& DLGC_WANTALLKEYS
)
2321 lDlgCode
|= DLGC_WANTTAB
| DLGC_WANTARROWS
;
2324 bool bForward
= true,
2325 bWindowChange
= false,
2328 // should we process this message specially?
2329 bool bProcess
= true;
2330 switch ( msg
->wParam
)
2333 if ( (lDlgCode
& DLGC_WANTTAB
) && !bCtrlDown
)
2335 // let the control have the TAB
2338 else // use it for navigation
2340 // Ctrl-Tab cycles thru notebook pages
2341 bWindowChange
= bCtrlDown
;
2342 bForward
= !bShiftDown
;
2349 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2357 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2366 // we treat PageUp/Dn as arrows because chances are that
2367 // a control which needs arrows also needs them for
2368 // navigation (e.g. wxTextCtrl, wxListCtrl, ...)
2369 if ( (lDlgCode
& DLGC_WANTARROWS
) && !bCtrlDown
)
2371 else // OTOH Ctrl-PageUp/Dn works as [Shift-]Ctrl-Tab
2372 bWindowChange
= true;
2378 // currently active button should get enter press even
2379 // if there is a default button elsewhere so check if
2380 // this window is a button first
2381 wxWindow
*btn
= NULL
;
2382 if ( lDlgCode
& DLGC_DEFPUSHBUTTON
)
2384 // let IsDialogMessage() handle this for all
2385 // buttons except the owner-drawn ones which it
2386 // just seems to ignore
2387 long style
= ::GetWindowLong(msg
->hwnd
, GWL_STYLE
);
2388 if ( (style
& BS_OWNERDRAW
) == BS_OWNERDRAW
)
2390 // emulate the button click
2391 btn
= wxFindWinFromHandle(msg
->hwnd
);
2394 else // not a button itself, do we have default button?
2396 // check if this window or any of its ancestors
2397 // wants the message for itself (we always reserve
2398 // Ctrl-Enter for dialog navigation though)
2399 wxWindow
*win
= this;
2402 // this will contain the dialog code of this
2403 // window and all of its parent windows in turn
2404 LONG lDlgCode2
= lDlgCode
;
2408 if ( lDlgCode2
& DLGC_WANTMESSAGE
)
2410 // as it wants to process Enter itself,
2411 // don't call IsDialogMessage() which
2416 // don't propagate keyboard messages beyond
2417 // the first top level window parent
2418 if ( win
->IsTopLevel() )
2421 win
= win
->GetParent();
2423 lDlgCode2
= ::SendMessage
2434 win
= wxGetTopLevelParent(win
);
2437 wxTopLevelWindow
* const
2438 tlw
= wxDynamicCast(win
, wxTopLevelWindow
);
2441 btn
= wxDynamicCast(tlw
->GetDefaultItem(),
2446 if ( btn
&& btn
->IsEnabled() )
2448 btn
->MSWCommand(BN_CLICKED
, 0 /* unused */);
2452 // This "Return" key press won't be actually used for
2453 // navigation so don't generate wxNavigationKeyEvent
2454 // for it but still pass it to IsDialogMessage() as it
2455 // may handle it in some other way (e.g. by playing the
2456 // default error sound).
2459 #endif // wxUSE_BUTTON
2462 // map Enter presses into button presses on PDAs
2463 wxJoystickEvent
event(wxEVT_JOY_BUTTON_DOWN
);
2464 event
.SetEventObject(this);
2465 if ( HandleWindowEvent(event
) )
2467 #endif // __WXWINCE__
2477 wxNavigationKeyEvent event
;
2478 event
.SetDirection(bForward
);
2479 event
.SetWindowChange(bWindowChange
);
2480 event
.SetFromTab(bFromTab
);
2481 event
.SetEventObject(this);
2483 if ( HandleWindowEvent(event
) )
2485 // as we don't call IsDialogMessage(), which would take of
2486 // this by default, we need to manually send this message
2487 // so that controls can change their UI state if needed
2488 MSWUpdateUIState(UIS_CLEAR
, UISF_HIDEFOCUS
);
2495 if ( ::IsDialogMessage(GetHwnd(), msg
) )
2497 // IsDialogMessage() did something...
2501 #endif // __WXUNIVERSAL__
2506 // relay mouse move events to the tooltip control
2507 MSG
*msg
= (MSG
*)pMsg
;
2508 if ( msg
->message
== WM_MOUSEMOVE
)
2509 wxToolTip::RelayEvent(pMsg
);
2511 #endif // wxUSE_TOOLTIPS
2516 bool wxWindowMSW::MSWTranslateMessage(WXMSG
* pMsg
)
2518 #if wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
2519 return m_acceleratorTable
.Translate(this, pMsg
);
2523 #endif // wxUSE_ACCEL
2526 bool wxWindowMSW::MSWShouldPreProcessMessage(WXMSG
* msg
)
2528 // all tests below have to deal with various bugs/misfeatures of
2529 // IsDialogMessage(): we have to prevent it from being called from our
2530 // MSWProcessMessage() in some situations
2532 // don't let IsDialogMessage() get VK_ESCAPE as it _always_ eats the
2533 // message even when there is no cancel button and when the message is
2534 // needed by the control itself: in particular, it prevents the tree in
2535 // place edit control from being closed with Escape in a dialog
2536 if ( msg
->message
== WM_KEYDOWN
&& msg
->wParam
== VK_ESCAPE
)
2541 // ::IsDialogMessage() is broken and may sometimes hang the application by
2542 // going into an infinite loop when it tries to find the control to give
2543 // focus to when Alt-<key> is pressed, so we try to detect [some of] the
2544 // situations when this may happen and not call it then
2545 if ( msg
->message
!= WM_SYSCHAR
)
2548 // assume we can call it by default
2549 bool canSafelyCallIsDlgMsg
= true;
2551 HWND hwndFocus
= ::GetFocus();
2553 // if the currently focused window itself has WS_EX_CONTROLPARENT style,
2554 // ::IsDialogMessage() will also enter an infinite loop, because it will
2555 // recursively check the child windows but not the window itself and so if
2556 // none of the children accepts focus it loops forever (as it only stops
2557 // when it gets back to the window it started from)
2559 // while it is very unusual that a window with WS_EX_CONTROLPARENT
2560 // style has the focus, it can happen. One such possibility is if
2561 // all windows are either toplevel, wxDialog, wxPanel or static
2562 // controls and no window can actually accept keyboard input.
2563 #if !defined(__WXWINCE__)
2564 if ( ::GetWindowLong(hwndFocus
, GWL_EXSTYLE
) & WS_EX_CONTROLPARENT
)
2566 // pessimistic by default
2567 canSafelyCallIsDlgMsg
= false;
2568 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2570 node
= node
->GetNext() )
2572 wxWindow
* const win
= node
->GetData();
2573 if ( win
->CanAcceptFocus() &&
2574 !wxHasWindowExStyle(win
, WS_EX_CONTROLPARENT
) )
2576 // it shouldn't hang...
2577 canSafelyCallIsDlgMsg
= true;
2583 #endif // !__WXWINCE__
2585 if ( canSafelyCallIsDlgMsg
)
2587 // ::IsDialogMessage() can enter in an infinite loop when the
2588 // currently focused window is disabled or hidden and its
2589 // parent has WS_EX_CONTROLPARENT style, so don't call it in
2593 if ( !::IsWindowEnabled(hwndFocus
) ||
2594 !::IsWindowVisible(hwndFocus
) )
2596 // it would enter an infinite loop if we do this!
2597 canSafelyCallIsDlgMsg
= false;
2602 if ( !(::GetWindowLong(hwndFocus
, GWL_STYLE
) & WS_CHILD
) )
2604 // it's a top level window, don't go further -- e.g. even
2605 // if the parent of a dialog is disabled, this doesn't
2606 // break navigation inside the dialog
2610 hwndFocus
= ::GetParent(hwndFocus
);
2614 return canSafelyCallIsDlgMsg
;
2617 // ---------------------------------------------------------------------------
2618 // message params unpackers
2619 // ---------------------------------------------------------------------------
2621 void wxWindowMSW::UnpackCommand(WXWPARAM wParam
, WXLPARAM lParam
,
2622 WORD
*id
, WXHWND
*hwnd
, WORD
*cmd
)
2624 *id
= LOWORD(wParam
);
2625 *hwnd
= (WXHWND
)lParam
;
2626 *cmd
= HIWORD(wParam
);
2629 void wxWindowMSW::UnpackActivate(WXWPARAM wParam
, WXLPARAM lParam
,
2630 WXWORD
*state
, WXWORD
*minimized
, WXHWND
*hwnd
)
2632 *state
= LOWORD(wParam
);
2633 *minimized
= HIWORD(wParam
);
2634 *hwnd
= (WXHWND
)lParam
;
2637 void wxWindowMSW::UnpackScroll(WXWPARAM wParam
, WXLPARAM lParam
,
2638 WXWORD
*code
, WXWORD
*pos
, WXHWND
*hwnd
)
2640 *code
= LOWORD(wParam
);
2641 *pos
= HIWORD(wParam
);
2642 *hwnd
= (WXHWND
)lParam
;
2645 void wxWindowMSW::UnpackCtlColor(WXWPARAM wParam
, WXLPARAM lParam
,
2646 WXHDC
*hdc
, WXHWND
*hwnd
)
2648 *hwnd
= (WXHWND
)lParam
;
2649 *hdc
= (WXHDC
)wParam
;
2652 void wxWindowMSW::UnpackMenuSelect(WXWPARAM wParam
, WXLPARAM lParam
,
2653 WXWORD
*item
, WXWORD
*flags
, WXHMENU
*hmenu
)
2655 *item
= (WXWORD
)wParam
;
2656 *flags
= HIWORD(wParam
);
2657 *hmenu
= (WXHMENU
)lParam
;
2660 // ---------------------------------------------------------------------------
2661 // Main wxWidgets window proc and the window proc for wxWindow
2662 // ---------------------------------------------------------------------------
2664 // Hook for new window just as it's being created, when the window isn't yet
2665 // associated with the handle
2666 static wxWindowMSW
*gs_winBeingCreated
= NULL
;
2668 // implementation of wxWindowCreationHook class: it just sets gs_winBeingCreated to the
2669 // window being created and insures that it's always unset back later
2670 wxWindowCreationHook::wxWindowCreationHook(wxWindowMSW
*winBeingCreated
)
2672 gs_winBeingCreated
= winBeingCreated
;
2675 wxWindowCreationHook::~wxWindowCreationHook()
2677 gs_winBeingCreated
= NULL
;
2681 LRESULT WXDLLEXPORT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
2683 // trace all messages: useful for the debugging but noticeably slows down
2684 // the code so don't do it by default
2685 #if wxDEBUG_LEVEL >= 2
2686 // notice that we cast wParam and lParam to long to avoid mismatch with
2687 // format specifiers in 64 bit builds where they are both int64 quantities
2689 // casting like this loses information, of course, but it shouldn't matter
2690 // much for this diagnostic code and it keeps the code simple
2691 wxLogTrace("winmsg",
2692 wxT("Processing %s(hWnd=%p, wParam=%08lx, lParam=%08lx)"),
2693 wxGetMessageName(message
), hWnd
, (long)wParam
, (long)lParam
);
2694 #endif // wxDEBUG_LEVEL >= 2
2696 wxWindowMSW
*wnd
= wxFindWinFromHandle(hWnd
);
2698 // when we get the first message for the HWND we just created, we associate
2699 // it with wxWindow stored in gs_winBeingCreated
2700 if ( !wnd
&& gs_winBeingCreated
)
2702 wxAssociateWinWithHandle(hWnd
, gs_winBeingCreated
);
2703 wnd
= gs_winBeingCreated
;
2704 gs_winBeingCreated
= NULL
;
2705 wnd
->SetHWND((WXHWND
)hWnd
);
2710 if ( wnd
&& wxGUIEventLoop::AllowProcessing(wnd
) )
2711 rc
= wnd
->MSWWindowProc(message
, wParam
, lParam
);
2713 rc
= ::DefWindowProc(hWnd
, message
, wParam
, lParam
);
2719 wxWindowMSW::MSWHandleMessage(WXLRESULT
*result
,
2724 // did we process the message?
2725 bool processed
= false;
2735 // for most messages we should return 0 when we do process the message
2743 processed
= HandleCreate((WXLPCREATESTRUCT
)lParam
, &mayCreate
);
2746 // return 0 to allow window creation
2747 rc
.result
= mayCreate
? 0 : -1;
2753 // never set processed to true and *always* pass WM_DESTROY to
2754 // DefWindowProc() as Windows may do some internal cleanup when
2755 // processing it and failing to pass the message along may cause
2756 // memory and resource leaks!
2757 (void)HandleDestroy();
2761 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
2765 processed
= HandleMove(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
2768 #if !defined(__WXWINCE__)
2771 LPRECT pRect
= (LPRECT
)lParam
;
2773 rc
.SetLeft(pRect
->left
);
2774 rc
.SetTop(pRect
->top
);
2775 rc
.SetRight(pRect
->right
);
2776 rc
.SetBottom(pRect
->bottom
);
2777 processed
= HandleMoving(rc
);
2779 pRect
->left
= rc
.GetLeft();
2780 pRect
->top
= rc
.GetTop();
2781 pRect
->right
= rc
.GetRight();
2782 pRect
->bottom
= rc
.GetBottom();
2787 case WM_ENTERSIZEMOVE
:
2789 processed
= HandleEnterSizeMove();
2793 case WM_EXITSIZEMOVE
:
2795 processed
= HandleExitSizeMove();
2801 LPRECT pRect
= (LPRECT
)lParam
;
2803 rc
.SetLeft(pRect
->left
);
2804 rc
.SetTop(pRect
->top
);
2805 rc
.SetRight(pRect
->right
);
2806 rc
.SetBottom(pRect
->bottom
);
2807 processed
= HandleSizing(rc
);
2809 pRect
->left
= rc
.GetLeft();
2810 pRect
->top
= rc
.GetTop();
2811 pRect
->right
= rc
.GetRight();
2812 pRect
->bottom
= rc
.GetBottom();
2816 #endif // !__WXWINCE__
2818 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
2819 case WM_ACTIVATEAPP
:
2820 // This implicitly sends a wxEVT_ACTIVATE_APP event
2821 wxTheApp
->SetActive(wParam
!= 0, FindFocus());
2827 WXWORD state
, minimized
;
2829 UnpackActivate(wParam
, lParam
, &state
, &minimized
, &hwnd
);
2831 processed
= HandleActivate(state
, minimized
!= 0, (WXHWND
)hwnd
);
2836 processed
= HandleSetFocus((WXHWND
)wParam
);
2840 processed
= HandleKillFocus((WXHWND
)wParam
);
2843 case WM_PRINTCLIENT
:
2844 processed
= HandlePrintClient((WXHDC
)wParam
);
2850 wxPaintDCEx
dc((wxWindow
*)this, (WXHDC
)wParam
);
2852 processed
= HandlePaint();
2856 processed
= HandlePaint();
2861 #ifdef __WXUNIVERSAL__
2862 // Universal uses its own wxFrame/wxDialog, so we don't receive
2863 // close events unless we have this.
2865 #endif // __WXUNIVERSAL__
2867 // don't let the DefWindowProc() destroy our window - we'll do it
2868 // ourselves in ~wxWindow
2874 processed
= HandleShow(wParam
!= 0, (int)lParam
);
2878 processed
= HandleMouseMove(GET_X_LPARAM(lParam
),
2879 GET_Y_LPARAM(lParam
),
2883 #ifdef HAVE_TRACKMOUSEEVENT
2885 // filter out excess WM_MOUSELEAVE events sent after PopupMenu()
2887 if ( m_mouseInWindow
)
2889 GenerateMouseLeave();
2892 // always pass processed back as false, this allows the window
2893 // manager to process the message too. This is needed to
2894 // ensure windows XP themes work properly as the mouse moves
2895 // over widgets like buttons. So don't set processed to true here.
2897 #endif // HAVE_TRACKMOUSEEVENT
2899 #if wxUSE_MOUSEWHEEL
2901 processed
= HandleMouseWheel(wParam
, lParam
);
2905 case WM_LBUTTONDOWN
:
2907 case WM_LBUTTONDBLCLK
:
2908 case WM_RBUTTONDOWN
:
2910 case WM_RBUTTONDBLCLK
:
2911 case WM_MBUTTONDOWN
:
2913 case WM_MBUTTONDBLCLK
:
2914 #ifdef wxHAS_XBUTTON
2915 case WM_XBUTTONDOWN
:
2917 case WM_XBUTTONDBLCLK
:
2918 #endif // wxHAS_XBUTTON
2920 #ifdef __WXMICROWIN__
2921 // MicroWindows seems to ignore the fact that a window is
2922 // disabled. So catch mouse events and throw them away if
2924 wxWindowMSW
* win
= this;
2927 if (!win
->IsEnabled())
2933 win
= win
->GetParent();
2934 if ( !win
|| win
->IsTopLevel() )
2941 #endif // __WXMICROWIN__
2942 int x
= GET_X_LPARAM(lParam
),
2943 y
= GET_Y_LPARAM(lParam
);
2946 // redirect the event to a static control if necessary by
2947 // finding one under mouse because under CE the static controls
2948 // don't generate mouse events (even with SS_NOTIFY)
2950 if ( GetCapture() == this )
2952 // but don't do it if the mouse is captured by this window
2953 // because then it should really get this event itself
2958 win
= FindWindowForMouseEvent(this, &x
, &y
);
2960 // this should never happen
2961 wxCHECK_MSG( win
, 0,
2962 wxT("FindWindowForMouseEvent() returned NULL") );
2965 if (IsContextMenuEnabled() && message
== WM_LBUTTONDOWN
)
2967 SHRGINFO shrgi
= {0};
2969 shrgi
.cbSize
= sizeof(SHRGINFO
);
2970 shrgi
.hwndClient
= (HWND
) GetHWND();
2974 shrgi
.dwFlags
= SHRG_RETURNCMD
;
2975 // shrgi.dwFlags = SHRG_NOTIFYPARENT;
2977 if (GN_CONTEXTMENU
== ::SHRecognizeGesture(&shrgi
))
2980 pt
= ClientToScreen(pt
);
2982 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
, GetId(), pt
);
2984 evtCtx
.SetEventObject(this);
2985 if (HandleWindowEvent(evtCtx
))
2994 #else // !__WXWINCE__
2995 wxWindowMSW
*win
= this;
2996 #endif // __WXWINCE__/!__WXWINCE__
2998 processed
= win
->HandleMouseEvent(message
, x
, y
, wParam
);
3000 // if the app didn't eat the event, handle it in the default
3001 // way, that is by giving this window the focus
3004 // for the standard classes their WndProc sets the focus to
3005 // them anyhow and doing it from here results in some weird
3006 // problems, so don't do it for them (unnecessary anyhow)
3007 if ( !win
->IsOfStandardClass() )
3009 if ( message
== WM_LBUTTONDOWN
&& win
->IsFocusable() )
3021 case MM_JOY1BUTTONDOWN
:
3022 case MM_JOY2BUTTONDOWN
:
3023 case MM_JOY1BUTTONUP
:
3024 case MM_JOY2BUTTONUP
:
3025 processed
= HandleJoystickEvent(message
,
3030 #endif // __WXMICROWIN__
3036 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
3038 processed
= HandleCommand(id
, cmd
, hwnd
);
3043 processed
= HandleNotify((int)wParam
, lParam
, &rc
.result
);
3046 // we only need to reply to WM_NOTIFYFORMAT manually when using MSLU,
3047 // otherwise DefWindowProc() does it perfectly fine for us, but MSLU
3048 // apparently doesn't always behave properly and needs some help
3049 #if wxUSE_UNICODE_MSLU && defined(NF_QUERY)
3050 case WM_NOTIFYFORMAT
:
3051 if ( lParam
== NF_QUERY
)
3054 rc
.result
= NFR_UNICODE
;
3057 #endif // wxUSE_UNICODE_MSLU
3059 // for these messages we must return true if process the message
3062 processed
= MSWOnDrawItem(wParam
, (WXDRAWITEMSTRUCT
*)lParam
);
3067 case WM_MEASUREITEM
:
3068 processed
= MSWOnMeasureItem(wParam
, (WXMEASUREITEMSTRUCT
*)lParam
);
3072 #endif // defined(WM_DRAWITEM)
3075 if ( !IsOfStandardClass() || HasFlag(wxWANTS_CHARS
) )
3077 // we always want to get the char events
3078 rc
.result
= DLGC_WANTCHARS
;
3080 if ( HasFlag(wxWANTS_CHARS
) )
3082 // in fact, we want everything
3083 rc
.result
|= DLGC_WANTARROWS
|
3090 //else: get the dlg code from the DefWindowProc()
3095 // Generate the key down event in any case.
3096 m_lastKeydownProcessed
= HandleKeyDown((WORD
) wParam
, lParam
);
3097 if ( m_lastKeydownProcessed
)
3099 // If it was processed by an event handler, we stop here,
3100 // notably we intentionally don't generate char event then.
3103 else // key down event not handled
3105 // Examine the event to decide whether we need to generate a
3106 // char event for it ourselves or let Windows do it. Window
3107 // mostly only does it for the keys which produce printable
3108 // characters (although there are exceptions, e.g. VK_ESCAPE or
3109 // VK_BACK (but not VK_DELETE)) while we do it for all keys
3110 // except the modifier ones (the wisdom of this is debatable
3111 // but by now this decision is enshrined forever due to
3112 // backwards compatibility).
3115 // No wxEVT_CHAR events are generated for these keys at all.
3123 // Windows will send us WM_CHAR for these ones so we'll
3124 // generate wxEVT_CHAR for them later when we get it.
3160 // special case of VK_APPS: treat it the same as right mouse
3161 // click because both usually pop up a context menu
3163 processed
= HandleMouseEvent(WM_RBUTTONDOWN
, -1, -1, 0);
3168 if ( (wParam
>= '0' && wParam
<= '9') ||
3169 (wParam
>= 'A' && wParam
<= 'Z') )
3171 // We'll get WM_CHAR for those later too.
3175 // But for the rest we won't get WM_CHAR later so we do
3176 // need to generate the event right now.
3177 wxKeyEvent
event(wxEVT_CHAR
);
3178 InitAnyKeyEvent(event
, wParam
, lParam
);
3180 // Set the "extended" bit in lParam because we want to
3181 // generate CHAR events with WXK_HOME and not
3182 // WXK_NUMPAD_HOME even if the "Home" key on numpad was
3184 event
.m_keyCode
= wxMSWKeyboard::VKToWX
3187 lParam
| (KF_EXTENDED
<< 16)
3190 // Don't produce events without any valid character
3191 // code (even if this shouldn't normally happen...).
3192 if ( event
.m_keyCode
!= WXK_NONE
)
3193 processed
= HandleWindowEvent(event
);
3196 if (message
== WM_SYSKEYDOWN
) // Let Windows still handle the SYSKEYs
3203 // special case of VK_APPS: treat it the same as right mouse button
3204 if ( wParam
== VK_APPS
)
3206 processed
= HandleMouseEvent(WM_RBUTTONUP
, -1, -1, 0);
3211 processed
= HandleKeyUp((WORD
) wParam
, lParam
);
3216 case WM_CHAR
: // Always an ASCII character
3217 if ( m_lastKeydownProcessed
)
3219 // The key was handled in the EVT_KEY_DOWN and handling
3220 // a key in an EVT_KEY_DOWN handler is meant, by
3221 // design, to prevent EVT_CHARs from happening
3222 m_lastKeydownProcessed
= false;
3227 processed
= HandleChar((WORD
)wParam
, lParam
);
3231 case WM_IME_STARTCOMPOSITION
:
3232 // IME popup needs Escape as it should undo the changes in its
3233 // entry window instead of e.g. closing the dialog for which the
3234 // IME is used (and losing all the changes in the IME window).
3235 gs_modalEntryWindowCount
++;
3238 case WM_IME_ENDCOMPOSITION
:
3239 gs_modalEntryWindowCount
--;
3244 processed
= HandleHotKey((WORD
)wParam
, lParam
);
3246 #endif // wxUSE_HOTKEY
3251 processed
= HandleClipboardEvent(message
);
3259 UnpackScroll(wParam
, lParam
, &code
, &pos
, &hwnd
);
3261 processed
= MSWOnScroll(message
== WM_HSCROLL
? wxHORIZONTAL
3267 // CTLCOLOR messages are sent by children to query the parent for their
3269 #ifndef __WXMICROWIN__
3270 case WM_CTLCOLORMSGBOX
:
3271 case WM_CTLCOLOREDIT
:
3272 case WM_CTLCOLORLISTBOX
:
3273 case WM_CTLCOLORBTN
:
3274 case WM_CTLCOLORDLG
:
3275 case WM_CTLCOLORSCROLLBAR
:
3276 case WM_CTLCOLORSTATIC
:
3280 UnpackCtlColor(wParam
, lParam
, &hdc
, &hwnd
);
3282 processed
= HandleCtlColor(&rc
.hBrush
, (WXHDC
)hdc
, (WXHWND
)hwnd
);
3285 #endif // !__WXMICROWIN__
3287 case WM_SYSCOLORCHANGE
:
3288 // the return value for this message is ignored
3289 processed
= HandleSysColorChange();
3292 #if !defined(__WXWINCE__)
3293 case WM_DISPLAYCHANGE
:
3294 processed
= HandleDisplayChange();
3298 case WM_PALETTECHANGED
:
3299 processed
= HandlePaletteChanged((WXHWND
)wParam
);
3302 case WM_CAPTURECHANGED
:
3303 processed
= HandleCaptureChanged((WXHWND
)lParam
);
3306 case WM_SETTINGCHANGE
:
3307 processed
= HandleSettingChange(wParam
, lParam
);
3310 case WM_QUERYNEWPALETTE
:
3311 processed
= HandleQueryNewPalette();
3316 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
3317 // check if an override was configured for this window
3318 EraseBgHooks::const_iterator it
= gs_eraseBgHooks
.find(this);
3319 if ( it
!= gs_eraseBgHooks
.end() )
3320 processed
= it
->second
->MSWEraseBgHook((WXHDC
)wParam
);
3322 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
3323 processed
= HandleEraseBkgnd((WXHDC
)wParam
);
3328 // we processed the message, i.e. erased the background
3333 #if !defined(__WXWINCE__)
3335 processed
= HandleDropFiles(wParam
);
3340 processed
= HandleInitDialog((WXHWND
)wParam
);
3344 // we never set focus from here
3349 #if !defined(__WXWINCE__)
3350 case WM_QUERYENDSESSION
:
3351 processed
= HandleQueryEndSession(lParam
, &rc
.allow
);
3355 processed
= HandleEndSession(wParam
!= 0, lParam
);
3358 case WM_GETMINMAXINFO
:
3359 processed
= HandleGetMinMaxInfo((MINMAXINFO
*)lParam
);
3364 processed
= HandleSetCursor((WXHWND
)wParam
,
3365 LOWORD(lParam
), // hit test
3366 HIWORD(lParam
)); // mouse msg
3370 // returning TRUE stops the DefWindowProc() from further
3371 // processing this message - exactly what we need because we've
3372 // just set the cursor.
3377 #if wxUSE_ACCESSIBILITY
3380 //WPARAM dwFlags = (WPARAM) (DWORD) wParam;
3381 LPARAM dwObjId
= (LPARAM
) (DWORD
) lParam
;
3383 if (dwObjId
== (LPARAM
)OBJID_CLIENT
&& GetOrCreateAccessible())
3385 return LresultFromObject(IID_IAccessible
, wParam
, (IUnknown
*) GetAccessible()->GetIAccessible());
3391 #if defined(WM_HELP)
3394 // by default, WM_HELP is propagated by DefWindowProc() upwards
3395 // to the window parent but as we do it ourselves already
3396 // (wxHelpEvent is derived from wxCommandEvent), we don't want
3397 // to get the other events if we process this message at all
3400 // WM_HELP doesn't use lParam under CE
3402 HELPINFO
* info
= (HELPINFO
*) lParam
;
3403 if ( info
->iContextType
== HELPINFO_WINDOW
)
3405 #endif // !__WXWINCE__
3406 wxHelpEvent helpEvent
3411 wxGetMousePosition() // what else?
3413 wxPoint(info
->MousePos
.x
, info
->MousePos
.y
)
3417 helpEvent
.SetEventObject(this);
3418 HandleWindowEvent(helpEvent
);
3421 else if ( info
->iContextType
== HELPINFO_MENUITEM
)
3423 wxHelpEvent
helpEvent(wxEVT_HELP
, info
->iCtrlId
);
3424 helpEvent
.SetEventObject(this);
3425 HandleWindowEvent(helpEvent
);
3428 else // unknown help event?
3432 #endif // !__WXWINCE__
3437 #if !defined(__WXWINCE__)
3438 case WM_CONTEXTMENU
:
3440 // we don't convert from screen to client coordinates as
3441 // the event may be handled by a parent window
3442 wxPoint
pt(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
3444 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
, GetId(), pt
);
3446 // we could have got an event from our child, reflect it back
3447 // to it if this is the case
3448 wxWindowMSW
*win
= NULL
;
3449 WXHWND hWnd
= (WXHWND
)wParam
;
3450 if ( hWnd
!= m_hWnd
)
3452 win
= FindItemByHWND(hWnd
);
3458 evtCtx
.SetEventObject(win
);
3459 processed
= win
->HandleWindowEvent(evtCtx
);
3466 // we're only interested in our own menus, not MF_SYSMENU
3467 if ( HIWORD(wParam
) == MF_POPUP
)
3469 // handle menu chars for ownerdrawn menu items
3470 int i
= HandleMenuChar(toupper(LOWORD(wParam
)), lParam
);
3471 if ( i
!= wxNOT_FOUND
)
3473 rc
.result
= MAKELRESULT(i
, MNC_EXECUTE
);
3478 #endif // wxUSE_MENUS
3481 case WM_POWERBROADCAST
:
3484 processed
= HandlePower(wParam
, lParam
, &vetoed
);
3485 rc
.result
= processed
&& vetoed
? BROADCAST_QUERY_DENY
: TRUE
;
3488 #endif // __WXWINCE__
3491 // If we want the default themed border then we need to draw it ourselves
3494 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
3495 const wxBorder border
= TranslateBorder(GetBorder());
3496 if (theme
&& border
== wxBORDER_THEME
)
3498 // first ask the widget to calculate the border size
3499 rc
.result
= MSWDefWindowProc(message
, wParam
, lParam
);
3502 // now alter the client size making room for drawing a
3505 NCCALCSIZE_PARAMS
*csparam
= NULL
;
3508 csparam
= (NCCALCSIZE_PARAMS
*)lParam
;
3509 rect
= &csparam
->rgrc
[0];
3513 rect
= (RECT
*)lParam
;
3516 wxUxThemeHandle
hTheme((const wxWindow
*)this, L
"EDIT");
3517 RECT rcClient
= { 0, 0, 0, 0 };
3518 wxClientDC
dc((wxWindow
*)this);
3519 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
3521 if ( theme
->GetThemeBackgroundContentRect
3528 &rcClient
) == S_OK
)
3530 InflateRect(&rcClient
, -1, -1);
3532 csparam
->rgrc
[0] = rcClient
;
3534 *((RECT
*)lParam
) = rcClient
;
3536 // WVR_REDRAW triggers a bug whereby child windows are moved up and left,
3538 // rc.result = WVR_REDRAW;
3546 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
3547 const wxBorder border
= TranslateBorder(GetBorder());
3548 if (theme
&& border
== wxBORDER_THEME
)
3550 // first ask the widget to paint its non-client area, such as scrollbars, etc.
3551 rc
.result
= MSWDefWindowProc(message
, wParam
, lParam
);
3554 wxUxThemeHandle
hTheme((const wxWindow
*)this, L
"EDIT");
3555 wxWindowDC
dc((wxWindow
*)this);
3556 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
3558 // Clip the DC so that you only draw on the non-client area
3560 wxCopyRectToRECT(GetSize(), rcBorder
);
3563 theme
->GetThemeBackgroundContentRect(
3564 hTheme
, GetHdcOf(*impl
), EP_EDITTEXT
, ETS_NORMAL
, &rcBorder
, &rcClient
);
3565 InflateRect(&rcClient
, -1, -1);
3567 ::ExcludeClipRect(GetHdcOf(*impl
), rcClient
.left
, rcClient
.top
,
3568 rcClient
.right
, rcClient
.bottom
);
3570 // Make sure the background is in a proper state
3571 if (theme
->IsThemeBackgroundPartiallyTransparent(hTheme
, EP_EDITTEXT
, ETS_NORMAL
))
3573 theme
->DrawThemeParentBackground(GetHwnd(), GetHdcOf(*impl
), &rcBorder
);
3579 nState
= ETS_DISABLED
;
3580 // should we check this?
3581 //else if ( ::GetWindowLong(GetHwnd(), GWL_STYLE) & ES_READONLY)
3582 // nState = ETS_READONLY;
3584 nState
= ETS_NORMAL
;
3585 theme
->DrawThemeBackground(hTheme
, GetHdcOf(*impl
), EP_EDITTEXT
, nState
, &rcBorder
, NULL
);
3590 #endif // wxUSE_UXTHEME
3593 // try a custom message handler
3594 const MSWMessageHandlers::const_iterator
3595 i
= gs_messageHandlers
.find(message
);
3596 if ( i
!= gs_messageHandlers
.end() )
3598 processed
= (*i
->second
)(this, message
, wParam
, lParam
);
3605 *result
= rc
.result
;
3610 WXLRESULT
wxWindowMSW::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
3613 if ( !MSWHandleMessage(&result
, message
, wParam
, lParam
) )
3615 #if wxDEBUG_LEVEL >= 2
3616 wxLogTrace("winmsg", wxT("Forwarding %s to DefWindowProc."),
3617 wxGetMessageName(message
));
3618 #endif // wxDEBUG_LEVEL >= 2
3619 result
= MSWDefWindowProc(message
, wParam
, lParam
);
3625 // ----------------------------------------------------------------------------
3626 // wxWindow <-> HWND map
3627 // ----------------------------------------------------------------------------
3629 wxWindow
*wxFindWinFromHandle(HWND hwnd
)
3631 WindowHandles::const_iterator i
= gs_windowHandles
.find(hwnd
);
3632 return i
== gs_windowHandles
.end() ? NULL
: i
->second
;
3635 void wxAssociateWinWithHandle(HWND hwnd
, wxWindowMSW
*win
)
3637 // adding NULL hwnd is (first) surely a result of an error and
3638 // (secondly) breaks menu command processing
3639 wxCHECK_RET( hwnd
!= (HWND
)NULL
,
3640 wxT("attempt to add a NULL hwnd to window list ignored") );
3643 WindowHandles::const_iterator i
= gs_windowHandles
.find(hwnd
);
3644 if ( i
!= gs_windowHandles
.end() )
3646 if ( i
->second
!= win
)
3650 wxT("HWND %p already associated with another window (%s)"),
3651 hwnd
, win
->GetClassInfo()->GetClassName()
3655 //else: this actually happens currently because we associate the window
3656 // with its HWND during creation (if we create it) and also when
3657 // SubclassWin() is called later, this is ok
3659 #endif // wxDEBUG_LEVEL
3661 gs_windowHandles
[hwnd
] = (wxWindow
*)win
;
3664 void wxRemoveHandleAssociation(wxWindowMSW
*win
)
3666 gs_windowHandles
.erase(GetHwndOf(win
));
3669 // ----------------------------------------------------------------------------
3670 // various MSW speciic class dependent functions
3671 // ----------------------------------------------------------------------------
3673 // Default destroyer - override if you destroy it in some other way
3674 // (e.g. with MDI child windows)
3675 void wxWindowMSW::MSWDestroyWindow()
3679 void wxWindowMSW::MSWGetCreateWindowCoords(const wxPoint
& pos
,
3682 int& w
, int& h
) const
3684 // CW_USEDEFAULT can't be used for child windows so just position them at
3685 // the origin by default
3686 x
= pos
.x
== wxDefaultCoord
? 0 : pos
.x
;
3687 y
= pos
.y
== wxDefaultCoord
? 0 : pos
.y
;
3689 AdjustForParentClientOrigin(x
, y
);
3691 // We don't have any clearly good choice for the size by default neither
3692 // but we must use something non-zero.
3693 w
= WidthDefault(size
.x
);
3694 h
= HeightDefault(size
.y
);
3697 NB: there used to be some code here which set the initial size of the
3698 window to the client size of the parent if no explicit size was
3699 specified. This was wrong because wxWidgets programs often assume
3700 that they get a WM_SIZE (EVT_SIZE) upon creation, however this broke
3701 it. To see why, you should understand that Windows sends WM_SIZE from
3702 inside ::CreateWindow() anyhow. However, ::CreateWindow() is called
3703 from some base class ctor and so this WM_SIZE is not processed in the
3704 real class' OnSize() (because it's not fully constructed yet and the
3705 event goes to some base class OnSize() instead). So the WM_SIZE we
3706 rely on is the one sent when the parent frame resizes its children
3707 but here is the problem: if the child already has just the right
3708 size, nothing will happen as both wxWidgets and Windows check for
3709 this and ignore any attempts to change the window size to the size it
3710 already has - so no WM_SIZE would be sent.
3714 WXHWND
wxWindowMSW::MSWGetParent() const
3716 return m_parent
? m_parent
->GetHWND() : WXHWND(NULL
);
3719 bool wxWindowMSW::MSWCreate(const wxChar
*wclass
,
3720 const wxChar
*title
,
3724 WXDWORD extendedStyle
)
3726 // check a common bug in the user code: if the window is created with a
3727 // non-default ctor and Create() is called too, we'd create 2 HWND for a
3728 // single wxWindow object and this results in all sorts of trouble,
3729 // especially for wxTLWs
3730 wxCHECK_MSG( !m_hWnd
, true, "window can't be recreated" );
3732 // this can happen if this function is called using the return value of
3733 // wxApp::GetRegisteredClassName() which failed
3734 wxCHECK_MSG( wclass
, false, "failed to register window class?" );
3737 // choose the position/size for the new window
3739 (void)MSWGetCreateWindowCoords(pos
, size
, x
, y
, w
, h
);
3741 // controlId is menu handle for the top level windows, so set it to 0
3742 // unless we're creating a child window
3743 int controlId
= style
& WS_CHILD
? GetId() : 0;
3745 // for each class "Foo" we have we also have "FooNR" ("no repaint") class
3746 // which is the same but without CS_[HV]REDRAW class styles so using it
3747 // ensures that the window is not fully repainted on each resize
3748 wxString
className(wclass
);
3749 if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE
) )
3751 className
+= wxApp::GetNoRedrawClassSuffix();
3754 // do create the window
3755 wxWindowCreationHook
hook(this);
3757 m_hWnd
= (WXHWND
)::CreateWindowEx
3761 title
? title
: m_windowName
.wx_str(),
3764 (HWND
)MSWGetParent(),
3765 (HMENU
)wxUIntToPtr(controlId
),
3767 NULL
// no extra data
3772 wxLogSysError(_("Can't create window of class %s"), className
.c_str());
3777 SubclassWin(m_hWnd
);
3782 // ===========================================================================
3783 // MSW message handlers
3784 // ===========================================================================
3786 // ---------------------------------------------------------------------------
3788 // ---------------------------------------------------------------------------
3790 bool wxWindowMSW::HandleNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
3792 #ifndef __WXMICROWIN__
3793 LPNMHDR hdr
= (LPNMHDR
)lParam
;
3794 HWND hWnd
= hdr
->hwndFrom
;
3795 wxWindow
*win
= wxFindWinFromHandle(hWnd
);
3797 // if the control is one of our windows, let it handle the message itself
3800 return win
->MSWOnNotify(idCtrl
, lParam
, result
);
3803 // VZ: why did we do it? normally this is unnecessary and, besides, it
3804 // breaks the message processing for the toolbars because the tooltip
3805 // notifications were being forwarded to the toolbar child controls
3806 // (if it had any) before being passed to the toolbar itself, so in my
3807 // example the tooltip for the combobox was always shown instead of the
3808 // correct button tooltips
3810 // try all our children
3811 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3814 wxWindow
*child
= node
->GetData();
3815 if ( child
->MSWOnNotify(idCtrl
, lParam
, result
) )
3820 node
= node
->GetNext();
3824 // by default, handle it ourselves
3825 return MSWOnNotify(idCtrl
, lParam
, result
);
3826 #else // __WXMICROWIN__
3833 bool wxWindowMSW::HandleTooltipNotify(WXUINT code
,
3835 const wxString
& ttip
)
3837 // I don't know why it happens, but the versions of comctl32.dll starting
3838 // from 4.70 sometimes send TTN_NEEDTEXTW even to ANSI programs (normally,
3839 // this message is supposed to be sent to Unicode programs only) -- hence
3840 // we need to handle it as well, otherwise no tooltips will be shown in
3843 if ( !(code
== (WXUINT
) TTN_NEEDTEXTA
|| code
== (WXUINT
) TTN_NEEDTEXTW
)
3846 // not a tooltip message or no tooltip to show anyhow
3851 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
3853 // We don't want to use the szText buffer because it has a limit of 80
3854 // bytes and this is not enough, especially for Unicode build where it
3855 // limits the tooltip string length to only 40 characters
3857 // The best would be, of course, to not impose any length limitations at
3858 // all but then the buffer would have to be dynamic and someone would have
3859 // to free it and we don't have the tooltip owner object here any more, so
3860 // for now use our own static buffer with a higher fixed max length.
3862 // Note that using a static buffer should not be a problem as only a single
3863 // tooltip can be shown at the same time anyhow.
3865 if ( code
== (WXUINT
) TTN_NEEDTEXTW
)
3867 // We need to convert tooltip from multi byte to Unicode on the fly.
3868 static wchar_t buf
[513];
3870 // Truncate tooltip length if needed as otherwise we might not have
3871 // enough space for it in the buffer and MultiByteToWideChar() would
3873 size_t tipLength
= wxMin(ttip
.length(), WXSIZEOF(buf
) - 1);
3875 // Convert to WideChar without adding the NULL character. The NULL
3876 // character is added afterwards (this is more efficient).
3877 int len
= ::MultiByteToWideChar
3889 wxLogLastError(wxT("MultiByteToWideChar()"));
3893 ttText
->lpszText
= (LPSTR
) buf
;
3895 else // TTN_NEEDTEXTA
3896 #endif // !wxUSE_UNICODE
3898 // we get here if we got TTN_NEEDTEXTA (only happens in ANSI build) or
3899 // if we got TTN_NEEDTEXTW in Unicode build: in this case we just have
3900 // to copy the string we have into the buffer
3901 static wxChar buf
[513];
3902 wxStrlcpy(buf
, ttip
.c_str(), WXSIZEOF(buf
));
3903 ttText
->lpszText
= buf
;
3909 #endif // wxUSE_TOOLTIPS
3911 bool wxWindowMSW::MSWOnNotify(int WXUNUSED(idCtrl
),
3913 WXLPARAM
* WXUNUSED(result
))
3918 NMHDR
* hdr
= (NMHDR
*)lParam
;
3919 if ( HandleTooltipNotify(hdr
->code
, lParam
, m_tooltip
->GetTip()))
3926 wxUnusedVar(lParam
);
3927 #endif // wxUSE_TOOLTIPS
3932 // ---------------------------------------------------------------------------
3933 // end session messages
3934 // ---------------------------------------------------------------------------
3936 bool wxWindowMSW::HandleQueryEndSession(long logOff
, bool *mayEnd
)
3938 #ifdef ENDSESSION_LOGOFF
3939 wxCloseEvent
event(wxEVT_QUERY_END_SESSION
, wxID_ANY
);
3940 event
.SetEventObject(wxTheApp
);
3941 event
.SetCanVeto(true);
3942 event
.SetLoggingOff(logOff
== (long)ENDSESSION_LOGOFF
);
3944 bool rc
= wxTheApp
->ProcessEvent(event
);
3948 // we may end only if the app didn't veto session closing (double
3950 *mayEnd
= !event
.GetVeto();
3955 wxUnusedVar(logOff
);
3956 wxUnusedVar(mayEnd
);
3961 bool wxWindowMSW::HandleEndSession(bool endSession
, long logOff
)
3963 #ifdef ENDSESSION_LOGOFF
3964 // do nothing if the session isn't ending
3969 if ( (this != wxTheApp
->GetTopWindow()) )
3972 wxCloseEvent
event(wxEVT_END_SESSION
, wxID_ANY
);
3973 event
.SetEventObject(wxTheApp
);
3974 event
.SetCanVeto(false);
3975 event
.SetLoggingOff((logOff
& ENDSESSION_LOGOFF
) != 0);
3977 return wxTheApp
->ProcessEvent(event
);
3979 wxUnusedVar(endSession
);
3980 wxUnusedVar(logOff
);
3985 // ---------------------------------------------------------------------------
3986 // window creation/destruction
3987 // ---------------------------------------------------------------------------
3989 bool wxWindowMSW::HandleCreate(WXLPCREATESTRUCT
WXUNUSED_IN_WINCE(cs
),
3992 // VZ: why is this commented out for WinCE? If it doesn't support
3993 // WS_EX_CONTROLPARENT at all it should be somehow handled globally,
3994 // not with multiple #ifdef's!
3996 if ( ((CREATESTRUCT
*)cs
)->dwExStyle
& WS_EX_CONTROLPARENT
)
3997 EnsureParentHasControlParentStyle(GetParent());
3998 #endif // !__WXWINCE__
4005 bool wxWindowMSW::HandleDestroy()
4007 // delete our drop target if we've got one
4008 #if wxUSE_DRAG_AND_DROP
4009 if ( m_dropTarget
!= NULL
)
4011 m_dropTarget
->Revoke(m_hWnd
);
4013 wxDELETE(m_dropTarget
);
4015 #endif // wxUSE_DRAG_AND_DROP
4017 // WM_DESTROY handled
4021 // ---------------------------------------------------------------------------
4023 // ---------------------------------------------------------------------------
4025 bool wxWindowMSW::HandleActivate(int state
,
4026 bool WXUNUSED(minimized
),
4027 WXHWND
WXUNUSED(activate
))
4029 wxActivateEvent
event(wxEVT_ACTIVATE
,
4030 (state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
),
4032 event
.SetEventObject(this);
4034 return HandleWindowEvent(event
);
4037 bool wxWindowMSW::HandleSetFocus(WXHWND hwnd
)
4039 // Strangly enough, some controls get set focus events when they are being
4040 // deleted, even if they already had focus before.
4041 if ( m_isBeingDeleted
)
4046 // notify the parent keeping track of focus for the kbd navigation
4047 // purposes that we got it
4048 wxChildFocusEvent
eventFocus((wxWindow
*)this);
4049 (void)HandleWindowEvent(eventFocus
);
4055 m_caret
->OnSetFocus();
4057 #endif // wxUSE_CARET
4059 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
4060 event
.SetEventObject(this);
4062 // wxFindWinFromHandle() may return NULL, it is ok
4063 event
.SetWindow(wxFindWinFromHandle(hwnd
));
4065 return HandleWindowEvent(event
);
4068 bool wxWindowMSW::HandleKillFocus(WXHWND hwnd
)
4074 m_caret
->OnKillFocus();
4076 #endif // wxUSE_CARET
4078 // Don't send the event when in the process of being deleted. This can
4079 // only cause problems if the event handler tries to access the object.
4080 if ( m_isBeingDeleted
)
4085 wxFocusEvent
event(wxEVT_KILL_FOCUS
, m_windowId
);
4086 event
.SetEventObject(this);
4088 // wxFindWinFromHandle() may return NULL, it is ok
4089 event
.SetWindow(wxFindWinFromHandle(hwnd
));
4091 return HandleWindowEvent(event
);
4094 // ---------------------------------------------------------------------------
4096 // ---------------------------------------------------------------------------
4098 void wxWindowMSW::SetLabel( const wxString
& label
)
4100 SetWindowText(GetHwnd(), label
.c_str());
4103 wxString
wxWindowMSW::GetLabel() const
4105 return wxGetWindowText(GetHWND());
4108 // ---------------------------------------------------------------------------
4110 // ---------------------------------------------------------------------------
4112 bool wxWindowMSW::HandleShow(bool show
, int WXUNUSED(status
))
4114 wxShowEvent
event(GetId(), show
);
4115 event
.SetEventObject(this);
4117 return HandleWindowEvent(event
);
4120 bool wxWindowMSW::HandleInitDialog(WXHWND
WXUNUSED(hWndFocus
))
4122 wxInitDialogEvent
event(GetId());
4123 event
.SetEventObject(this);
4125 return HandleWindowEvent(event
);
4128 bool wxWindowMSW::HandleDropFiles(WXWPARAM wParam
)
4130 #if defined (__WXMICROWIN__) || defined(__WXWINCE__)
4131 wxUnusedVar(wParam
);
4133 #else // __WXMICROWIN__
4134 HDROP hFilesInfo
= (HDROP
) wParam
;
4136 // Get the total number of files dropped
4137 UINT gwFilesDropped
= ::DragQueryFile
4145 wxString
*files
= new wxString
[gwFilesDropped
];
4146 for ( UINT wIndex
= 0; wIndex
< gwFilesDropped
; wIndex
++ )
4148 // first get the needed buffer length (+1 for terminating NUL)
4149 size_t len
= ::DragQueryFile(hFilesInfo
, wIndex
, NULL
, 0) + 1;
4151 // and now get the file name
4152 ::DragQueryFile(hFilesInfo
, wIndex
,
4153 wxStringBuffer(files
[wIndex
], len
), len
);
4156 wxDropFilesEvent
event(wxEVT_DROP_FILES
, gwFilesDropped
, files
);
4157 event
.SetEventObject(this);
4160 DragQueryPoint(hFilesInfo
, (LPPOINT
) &dropPoint
);
4161 event
.m_pos
.x
= dropPoint
.x
;
4162 event
.m_pos
.y
= dropPoint
.y
;
4164 DragFinish(hFilesInfo
);
4166 return HandleWindowEvent(event
);
4171 bool wxWindowMSW::HandleSetCursor(WXHWND
WXUNUSED(hWnd
),
4173 int WXUNUSED(mouseMsg
))
4175 #ifndef __WXMICROWIN__
4176 // the logic is as follows:
4177 // 0. if we're busy, set the busy cursor (even for non client elements)
4178 // 1. don't set custom cursor for non client area of enabled windows
4179 // 2. ask user EVT_SET_CURSOR handler for the cursor
4180 // 3. if still no cursor but we're in a TLW, set the global cursor
4182 HCURSOR hcursor
= 0;
4185 hcursor
= wxGetCurrentBusyCursor();
4189 if ( nHitTest
!= HTCLIENT
)
4192 // first ask the user code - it may wish to set the cursor in some very
4193 // specific way (for example, depending on the current position)
4195 wxGetCursorPosMSW(&pt
);
4199 ScreenToClient(&x
, &y
);
4200 wxSetCursorEvent
event(x
, y
);
4201 event
.SetId(GetId());
4202 event
.SetEventObject(this);
4204 bool processedEvtSetCursor
= HandleWindowEvent(event
);
4205 if ( processedEvtSetCursor
&& event
.HasCursor() )
4207 hcursor
= GetHcursorOf(event
.GetCursor());
4212 // the test for processedEvtSetCursor is here to prevent using
4213 // m_cursor if the user code caught EVT_SET_CURSOR() and returned
4214 // nothing from it - this is a way to say that our cursor shouldn't
4215 // be used for this point
4216 if ( !processedEvtSetCursor
&& m_cursor
.IsOk() )
4218 hcursor
= GetHcursorOf(m_cursor
);
4221 if ( !hcursor
&& !GetParent() )
4223 const wxCursor
*cursor
= wxGetGlobalCursor();
4224 if ( cursor
&& cursor
->IsOk() )
4226 hcursor
= GetHcursorOf(*cursor
);
4235 ::SetCursor(hcursor
);
4237 // cursor set, stop here
4240 #endif // __WXMICROWIN__
4242 // pass up the window chain
4246 bool wxWindowMSW::HandlePower(WXWPARAM
WXUNUSED_IN_WINCE(wParam
),
4247 WXLPARAM
WXUNUSED(lParam
),
4248 bool *WXUNUSED_IN_WINCE(vetoed
))
4254 wxEventType evtType
;
4257 case PBT_APMQUERYSUSPEND
:
4258 evtType
= wxEVT_POWER_SUSPENDING
;
4261 case PBT_APMQUERYSUSPENDFAILED
:
4262 evtType
= wxEVT_POWER_SUSPEND_CANCEL
;
4265 case PBT_APMSUSPEND
:
4266 evtType
= wxEVT_POWER_SUSPENDED
;
4269 case PBT_APMRESUMESUSPEND
:
4270 evtType
= wxEVT_POWER_RESUME
;
4274 wxLogDebug(wxT("Unknown WM_POWERBROADCAST(%d) event"), wParam
);
4277 // these messages are currently not mapped to wx events
4278 case PBT_APMQUERYSTANDBY
:
4279 case PBT_APMQUERYSTANDBYFAILED
:
4280 case PBT_APMSTANDBY
:
4281 case PBT_APMRESUMESTANDBY
:
4282 case PBT_APMBATTERYLOW
:
4283 case PBT_APMPOWERSTATUSCHANGE
:
4284 case PBT_APMOEMEVENT
:
4285 case PBT_APMRESUMECRITICAL
:
4286 #ifdef PBT_APMRESUMEAUTOMATIC
4287 case PBT_APMRESUMEAUTOMATIC
:
4289 evtType
= wxEVT_NULL
;
4293 // don't handle unknown messages
4294 if ( evtType
== wxEVT_NULL
)
4297 // TODO: notify about PBTF_APMRESUMEFROMFAILURE in case of resume events?
4299 wxPowerEvent
event(evtType
);
4300 if ( !HandleWindowEvent(event
) )
4303 *vetoed
= event
.IsVetoed();
4309 bool wxWindowMSW::IsDoubleBuffered() const
4311 for ( const wxWindowMSW
*win
= this; win
; win
= win
->GetParent() )
4313 if ( wxHasWindowExStyle(win
, WS_EX_COMPOSITED
) )
4316 if ( win
->IsTopLevel() )
4323 void wxWindowMSW::SetDoubleBuffered(bool on
)
4325 // Get the current extended style bits
4326 long exstyle
= wxGetWindowExStyle(this);
4328 // Twiddle the bit as needed
4330 exstyle
|= WS_EX_COMPOSITED
;
4332 exstyle
&= ~WS_EX_COMPOSITED
;
4335 wxSetWindowExStyle(this, exstyle
);
4338 // ---------------------------------------------------------------------------
4339 // owner drawn stuff
4340 // ---------------------------------------------------------------------------
4342 #if (wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE) || \
4343 (wxUSE_CONTROLS && !defined(__WXUNIVERSAL__))
4344 #define WXUNUSED_UNLESS_ODRAWN(param) param
4346 #define WXUNUSED_UNLESS_ODRAWN(param)
4350 wxWindowMSW::MSWOnDrawItem(int WXUNUSED_UNLESS_ODRAWN(id
),
4351 WXDRAWITEMSTRUCT
* WXUNUSED_UNLESS_ODRAWN(itemStruct
))
4353 #if wxUSE_OWNER_DRAWN
4355 #if wxUSE_MENUS_NATIVE
4356 // is it a menu item?
4357 DRAWITEMSTRUCT
*pDrawStruct
= (DRAWITEMSTRUCT
*)itemStruct
;
4358 if ( id
== 0 && pDrawStruct
->CtlType
== ODT_MENU
)
4360 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pDrawStruct
->itemData
);
4362 // see comment before the same test in MSWOnMeasureItem() below
4366 wxCHECK_MSG( wxDynamicCast(pMenuItem
, wxMenuItem
),
4367 false, wxT("MSWOnDrawItem: bad wxMenuItem pointer") );
4369 // prepare to call OnDrawItem(): notice using of wxDCTemp to prevent
4370 // the DC from being released
4371 wxDCTemp
dc((WXHDC
)pDrawStruct
->hDC
);
4372 wxRect
rect(pDrawStruct
->rcItem
.left
, pDrawStruct
->rcItem
.top
,
4373 pDrawStruct
->rcItem
.right
- pDrawStruct
->rcItem
.left
,
4374 pDrawStruct
->rcItem
.bottom
- pDrawStruct
->rcItem
.top
);
4376 return pMenuItem
->OnDrawItem
4380 (wxOwnerDrawn::wxODAction
)pDrawStruct
->itemAction
,
4381 (wxOwnerDrawn::wxODStatus
)pDrawStruct
->itemState
4384 #endif // wxUSE_MENUS_NATIVE
4386 #endif // USE_OWNER_DRAWN
4388 #if wxUSE_CONTROLS && !defined(__WXUNIVERSAL__)
4390 #if wxUSE_OWNER_DRAWN
4391 wxControl
*item
= wxDynamicCast(FindItem(id
), wxControl
);
4392 #else // !wxUSE_OWNER_DRAWN
4393 // we may still have owner-drawn buttons internally because we have to make
4394 // them owner-drawn to support colour change
4397 wxDynamicCast(FindItem(id
), wxButton
)
4402 #endif // USE_OWNER_DRAWN
4406 return item
->MSWOnDraw(itemStruct
);
4409 #endif // wxUSE_CONTROLS
4415 wxWindowMSW::MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*itemStruct
)
4417 #if wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
4418 // is it a menu item?
4419 MEASUREITEMSTRUCT
*pMeasureStruct
= (MEASUREITEMSTRUCT
*)itemStruct
;
4420 if ( id
== 0 && pMeasureStruct
->CtlType
== ODT_MENU
)
4422 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pMeasureStruct
->itemData
);
4424 // according to Carsten Fuchs the pointer may be NULL under XP if an
4425 // MDI child frame is initially maximized, see this for more info:
4426 // http://article.gmane.org/gmane.comp.lib.wxwidgets.general/27745
4428 // so silently ignore it instead of asserting
4432 wxCHECK_MSG( wxDynamicCast(pMenuItem
, wxMenuItem
),
4433 false, wxT("MSWOnMeasureItem: bad wxMenuItem pointer") );
4436 bool rc
= pMenuItem
->OnMeasureItem(&w
, &h
);
4438 pMeasureStruct
->itemWidth
= w
;
4439 pMeasureStruct
->itemHeight
= h
;
4444 wxControl
*item
= wxDynamicCast(FindItem(id
), wxControl
);
4447 return item
->MSWOnMeasure(itemStruct
);
4451 wxUnusedVar(itemStruct
);
4452 #endif // wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
4457 // ---------------------------------------------------------------------------
4458 // colours and palettes
4459 // ---------------------------------------------------------------------------
4461 bool wxWindowMSW::HandleSysColorChange()
4463 wxSysColourChangedEvent event
;
4464 event
.SetEventObject(this);
4466 (void)HandleWindowEvent(event
);
4468 // always let the system carry on the default processing to allow the
4469 // native controls to react to the colours update
4473 bool wxWindowMSW::HandleDisplayChange()
4475 wxDisplayChangedEvent event
;
4476 event
.SetEventObject(this);
4478 return HandleWindowEvent(event
);
4481 #ifndef __WXMICROWIN__
4483 bool wxWindowMSW::HandleCtlColor(WXHBRUSH
*brush
, WXHDC hDC
, WXHWND hWnd
)
4485 #if !wxUSE_CONTROLS || defined(__WXUNIVERSAL__)
4489 wxControl
*item
= wxDynamicCast(FindItemByHWND(hWnd
, true), wxControl
);
4492 *brush
= item
->MSWControlColor(hDC
, hWnd
);
4494 #endif // wxUSE_CONTROLS
4497 return *brush
!= NULL
;
4500 #endif // __WXMICROWIN__
4502 bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange
)
4505 // same as below except we don't respond to our own messages
4506 if ( hWndPalChange
!= GetHWND() )
4508 // check to see if we our our parents have a custom palette
4509 wxWindowMSW
*win
= this;
4510 while ( win
&& !win
->HasCustomPalette() )
4512 win
= win
->GetParent();
4515 if ( win
&& win
->HasCustomPalette() )
4517 // realize the palette to see whether redrawing is needed
4518 HDC hdc
= ::GetDC((HWND
) hWndPalChange
);
4519 win
->m_palette
.SetHPALETTE((WXHPALETTE
)
4520 ::SelectPalette(hdc
, GetHpaletteOf(win
->m_palette
), FALSE
));
4522 int result
= ::RealizePalette(hdc
);
4524 // restore the palette (before releasing the DC)
4525 win
->m_palette
.SetHPALETTE((WXHPALETTE
)
4526 ::SelectPalette(hdc
, GetHpaletteOf(win
->m_palette
), FALSE
));
4527 ::RealizePalette(hdc
);
4528 ::ReleaseDC((HWND
) hWndPalChange
, hdc
);
4530 // now check for the need to redraw
4532 ::InvalidateRect((HWND
) hWndPalChange
, NULL
, TRUE
);
4536 #endif // wxUSE_PALETTE
4538 wxPaletteChangedEvent
event(GetId());
4539 event
.SetEventObject(this);
4540 event
.SetChangedWindow(wxFindWinFromHandle(hWndPalChange
));
4542 return HandleWindowEvent(event
);
4545 bool wxWindowMSW::HandleCaptureChanged(WXHWND hWndGainedCapture
)
4547 // notify windows on the capture stack about lost capture
4548 // (see http://sourceforge.net/tracker/index.php?func=detail&aid=1153662&group_id=9863&atid=109863):
4549 wxWindowBase::NotifyCaptureLost();
4551 wxWindow
*win
= wxFindWinFromHandle(hWndGainedCapture
);
4552 wxMouseCaptureChangedEvent
event(GetId(), win
);
4553 event
.SetEventObject(this);
4554 return HandleWindowEvent(event
);
4557 bool wxWindowMSW::HandleSettingChange(WXWPARAM wParam
, WXLPARAM lParam
)
4559 // despite MSDN saying "(This message cannot be sent directly to a window.)"
4560 // we need to send this to child windows (it is only sent to top-level
4561 // windows) so {list,tree}ctrls can adjust their font size if necessary
4562 // this is exactly how explorer does it to enable the font size changes
4564 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
4567 // top-level windows already get this message from the system
4568 wxWindow
*win
= node
->GetData();
4569 if ( !win
->IsTopLevel() )
4571 ::SendMessage(GetHwndOf(win
), WM_SETTINGCHANGE
, wParam
, lParam
);
4574 node
= node
->GetNext();
4577 // let the system handle it
4581 bool wxWindowMSW::HandleQueryNewPalette()
4585 // check to see if we our our parents have a custom palette
4586 wxWindowMSW
*win
= this;
4587 while (!win
->HasCustomPalette() && win
->GetParent()) win
= win
->GetParent();
4588 if (win
->HasCustomPalette()) {
4589 /* realize the palette to see whether redrawing is needed */
4590 HDC hdc
= ::GetDC((HWND
) GetHWND());
4591 win
->m_palette
.SetHPALETTE( (WXHPALETTE
)
4592 ::SelectPalette(hdc
, (HPALETTE
) win
->m_palette
.GetHPALETTE(), FALSE
) );
4594 int result
= ::RealizePalette(hdc
);
4595 /* restore the palette (before releasing the DC) */
4596 win
->m_palette
.SetHPALETTE( (WXHPALETTE
)
4597 ::SelectPalette(hdc
, (HPALETTE
) win
->m_palette
.GetHPALETTE(), TRUE
) );
4598 ::RealizePalette(hdc
);
4599 ::ReleaseDC((HWND
) GetHWND(), hdc
);
4600 /* now check for the need to redraw */
4602 ::InvalidateRect((HWND
) GetHWND(), NULL
, TRUE
);
4604 #endif // wxUSE_PALETTE
4606 wxQueryNewPaletteEvent
event(GetId());
4607 event
.SetEventObject(this);
4609 return HandleWindowEvent(event
) && event
.GetPaletteRealized();
4612 // Responds to colour changes: passes event on to children.
4613 void wxWindowMSW::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
4615 // the top level window also reset the standard colour map as it might have
4616 // changed (there is no need to do it for the non top level windows as we
4617 // only have to do it once)
4621 gs_hasStdCmap
= false;
4623 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
4626 // Only propagate to non-top-level windows because Windows already
4627 // sends this event to all top-level ones
4628 wxWindow
*win
= node
->GetData();
4629 if ( !win
->IsTopLevel() )
4631 // we need to send the real WM_SYSCOLORCHANGE and not just trigger
4632 // EVT_SYS_COLOUR_CHANGED call because the latter wouldn't work for
4633 // the standard controls
4634 ::SendMessage(GetHwndOf(win
), WM_SYSCOLORCHANGE
, 0, 0);
4637 node
= node
->GetNext();
4641 extern wxCOLORMAP
*wxGetStdColourMap()
4643 static COLORREF s_stdColours
[wxSTD_COL_MAX
];
4644 static wxCOLORMAP s_cmap
[wxSTD_COL_MAX
];
4646 if ( !gs_hasStdCmap
)
4648 static bool s_coloursInit
= false;
4650 if ( !s_coloursInit
)
4652 // When a bitmap is loaded, the RGB values can change (apparently
4653 // because Windows adjusts them to care for the old programs always
4654 // using 0xc0c0c0 while the transparent colour for the new Windows
4655 // versions is different). But we do this adjustment ourselves so
4656 // we want to avoid Windows' "help" and for this we need to have a
4657 // reference bitmap which can tell us what the RGB values change
4659 wxLogNull logNo
; // suppress error if we couldn't load the bitmap
4660 wxBitmap
stdColourBitmap(wxT("wxBITMAP_STD_COLOURS"));
4661 if ( stdColourBitmap
.IsOk() )
4663 // the pixels in the bitmap must correspond to wxSTD_COL_XXX!
4664 wxASSERT_MSG( stdColourBitmap
.GetWidth() == wxSTD_COL_MAX
,
4665 wxT("forgot to update wxBITMAP_STD_COLOURS!") );
4668 memDC
.SelectObject(stdColourBitmap
);
4671 for ( size_t i
= 0; i
< WXSIZEOF(s_stdColours
); i
++ )
4673 memDC
.GetPixel(i
, 0, &colour
);
4674 s_stdColours
[i
] = wxColourToRGB(colour
);
4677 else // wxBITMAP_STD_COLOURS couldn't be loaded
4679 s_stdColours
[0] = RGB(000,000,000); // black
4680 s_stdColours
[1] = RGB(128,128,128); // dark grey
4681 s_stdColours
[2] = RGB(192,192,192); // light grey
4682 s_stdColours
[3] = RGB(255,255,255); // white
4683 //s_stdColours[4] = RGB(000,000,255); // blue
4684 //s_stdColours[5] = RGB(255,000,255); // magenta
4687 s_coloursInit
= true;
4690 gs_hasStdCmap
= true;
4692 // create the colour map
4693 #define INIT_CMAP_ENTRY(col) \
4694 s_cmap[wxSTD_COL_##col].from = s_stdColours[wxSTD_COL_##col]; \
4695 s_cmap[wxSTD_COL_##col].to = ::GetSysColor(COLOR_##col)
4697 INIT_CMAP_ENTRY(BTNTEXT
);
4698 INIT_CMAP_ENTRY(BTNSHADOW
);
4699 INIT_CMAP_ENTRY(BTNFACE
);
4700 INIT_CMAP_ENTRY(BTNHIGHLIGHT
);
4702 #undef INIT_CMAP_ENTRY
4708 #if wxUSE_UXTHEME && !defined(TMT_FILLCOLOR)
4709 #define TMT_FILLCOLOR 3802
4710 #define TMT_TEXTCOLOR 3803
4711 #define TMT_BORDERCOLOR 3801
4714 wxColour
wxWindowMSW::MSWGetThemeColour(const wchar_t *themeName
,
4717 MSWThemeColour themeColour
,
4718 wxSystemColour fallback
) const
4721 const wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
4724 int themeProperty
= 0;
4726 // TODO: Convert this into a table? Sure would be faster.
4727 switch ( themeColour
)
4729 case ThemeColourBackground
:
4730 themeProperty
= TMT_FILLCOLOR
;
4732 case ThemeColourText
:
4733 themeProperty
= TMT_TEXTCOLOR
;
4735 case ThemeColourBorder
:
4736 themeProperty
= TMT_BORDERCOLOR
;
4739 wxFAIL_MSG(wxT("unsupported theme colour"));
4742 wxUxThemeHandle
hTheme((const wxWindow
*)this, themeName
);
4744 HRESULT hr
= theme
->GetThemeColor
4753 if ( SUCCEEDED(hr
) )
4754 return wxRGBToColour(col
);
4758 "GetThemeColor(%s, %i, %i, %i)",
4759 themeName
, themePart
, themeState
, themeProperty
),
4763 wxUnusedVar(themeName
);
4764 wxUnusedVar(themePart
);
4765 wxUnusedVar(themeState
);
4766 wxUnusedVar(themeColour
);
4768 return wxSystemSettings::GetColour(fallback
);
4771 // ---------------------------------------------------------------------------
4773 // ---------------------------------------------------------------------------
4775 // this variable is used to check that a paint event handler which processed
4776 // the event did create a wxPaintDC inside its code and called BeginPaint() to
4777 // validate the invalidated window area as otherwise we'd keep getting an
4778 // endless stream of WM_PAINT messages for this window resulting in a lot of
4779 // difficult to debug problems (e.g. impossibility to repaint other windows,
4780 // lack of timer and idle events and so on)
4781 extern bool wxDidCreatePaintDC
;
4782 bool wxDidCreatePaintDC
= false;
4784 bool wxWindowMSW::HandlePaint()
4786 HRGN hRegion
= ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
4789 wxLogLastError(wxT("CreateRectRgn"));
4791 if ( ::GetUpdateRgn(GetHwnd(), hRegion
, FALSE
) == ERROR
)
4793 wxLogLastError(wxT("GetUpdateRgn"));
4796 m_updateRegion
= wxRegion((WXHRGN
) hRegion
);
4798 wxDidCreatePaintDC
= false;
4800 wxPaintEvent
event(m_windowId
);
4801 event
.SetEventObject(this);
4803 bool processed
= HandleWindowEvent(event
);
4805 if ( processed
&& !wxDidCreatePaintDC
)
4807 // do call MSWDefWindowProc() to validate the update region to avoid
4808 // the problems mentioned above
4812 // note that we must generate NC event after the normal one as otherwise
4813 // BeginPaint() will happily overwrite our decorations with the background
4815 wxNcPaintEvent
eventNc(m_windowId
);
4816 eventNc
.SetEventObject(this);
4817 HandleWindowEvent(eventNc
);
4819 // don't keep an HRGN we don't need any longer (GetUpdateRegion() can only
4820 // be called from inside the event handlers called above)
4821 m_updateRegion
.Clear();
4826 // Can be called from an application's OnPaint handler
4827 void wxWindowMSW::OnPaint(wxPaintEvent
& event
)
4829 #ifdef __WXUNIVERSAL__
4832 HDC hDC
= (HDC
) wxPaintDCImpl::FindDCInCache((wxWindow
*) event
.GetEventObject());
4835 MSWDefWindowProc(WM_PAINT
, (WPARAM
) hDC
, 0);
4840 bool wxWindowMSW::HandleEraseBkgnd(WXHDC hdc
)
4842 switch ( GetBackgroundStyle() )
4844 case wxBG_STYLE_ERASE
:
4845 case wxBG_STYLE_COLOUR
:
4846 // we need to generate an erase background event
4848 wxDCTemp
dc(hdc
, GetClientSize());
4849 wxDCTempImpl
*impl
= (wxDCTempImpl
*) dc
.GetImpl();
4852 impl
->SetWindow((wxWindow
*)this);
4854 wxEraseEvent
event(m_windowId
, &dc
);
4855 event
.SetEventObject(this);
4856 bool rc
= HandleWindowEvent(event
);
4858 // must be called manually as ~wxDC doesn't do anything for
4860 impl
->SelectOldObjects(hdc
);
4864 // background erased by the user-defined handler
4870 case wxBG_STYLE_SYSTEM
:
4871 if ( !DoEraseBackground(hdc
) )
4873 // let the default processing to take place if we didn't erase
4874 // the background ourselves
4879 case wxBG_STYLE_PAINT
:
4880 case wxBG_STYLE_TRANSPARENT
:
4881 // no need to do anything here at all, background will be entirely
4882 // redrawn in WM_PAINT handler
4886 wxFAIL_MSG( "unknown background style" );
4892 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
4894 bool wxWindowMSW::MSWHasEraseBgHook() const
4896 return gs_eraseBgHooks
.find(const_cast<wxWindowMSW
*>(this))
4897 != gs_eraseBgHooks
.end();
4900 void wxWindowMSW::MSWSetEraseBgHook(wxWindow
*child
)
4904 if ( !gs_eraseBgHooks
.insert(
4905 EraseBgHooks::value_type(this, child
)).second
)
4907 wxFAIL_MSG( wxT("Setting erase background hook twice?") );
4910 else // reset the hook
4912 if ( gs_eraseBgHooks
.erase(this) != 1 )
4914 wxFAIL_MSG( wxT("Resetting erase background which was not set?") );
4919 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
4921 bool wxWindowMSW::DoEraseBackground(WXHDC hDC
)
4923 HBRUSH hbr
= (HBRUSH
)MSWGetBgBrush(hDC
);
4927 // erase just the client area of the window, this is important for the
4928 // frames to avoid drawing over the toolbar part of the window (you might
4929 // think using WS_CLIPCHILDREN would prevent this from happening, but it
4932 wxCopyRectToRECT(GetClientRect(), rc
);
4933 ::FillRect((HDC
)hDC
, &rc
, hbr
);
4939 wxWindowMSW::MSWGetBgBrushForChild(WXHDC hDC
, wxWindowMSW
*child
)
4941 // Test for the custom background brush first.
4942 WXHBRUSH hbrush
= MSWGetCustomBgBrush();
4945 // We assume that this is either a stipple or hatched brush and not a
4946 // solid one as otherwise it would have been enough to set the
4947 // background colour and such brushes need to be positioned correctly
4948 // in order to align when different windows are painted, so do it here.
4950 ::GetWindowRect(GetHwndOf(child
), &rc
);
4952 ::MapWindowPoints(NULL
, GetHwnd(), (POINT
*)&rc
, 1);
4954 if ( !::SetBrushOrgEx((HDC
)hDC
, -rc
.left
, -rc
.top
, NULL
) )
4956 wxLogLastError(wxT("SetBrushOrgEx(bg brush)"));
4962 // Otherwise see if we have a custom background colour.
4966 brush
= wxTheBrushList
->FindOrCreateBrush(GetBackgroundColour());
4968 return (WXHBRUSH
)GetHbrushOf(*brush
);
4974 WXHBRUSH
wxWindowMSW::MSWGetBgBrush(WXHDC hDC
)
4976 // Use the special wxWindowBeingErased variable if it is set as the child
4978 wxWindowMSW
* const child
=
4980 wxWindowBeingErased
? wxWindowBeingErased
:
4984 for ( wxWindowMSW
*win
= this; win
; win
= win
->GetParent() )
4986 WXHBRUSH hBrush
= win
->MSWGetBgBrushForChild(hDC
, child
);
4990 // don't use the parent background if we're not transparent
4991 if ( !win
->HasTransparentBackground() )
4994 // background is not inherited beyond top level windows
4995 if ( win
->IsTopLevel() )
5002 bool wxWindowMSW::HandlePrintClient(WXHDC hDC
)
5004 // we receive this message when DrawThemeParentBackground() is
5005 // called from def window proc of several controls under XP and we
5006 // must draw properly themed background here
5008 // note that naively I'd expect filling the client rect with the
5009 // brush returned by MSWGetBgBrush() work -- but for some reason it
5010 // doesn't and we have to call parents MSWPrintChild() which is
5011 // supposed to call DrawThemeBackground() with appropriate params
5013 // also note that in this case lParam == PRF_CLIENT but we're
5014 // clearly expected to paint the background and nothing else!
5016 if ( IsTopLevel() || InheritsBackgroundColour() )
5019 // sometimes we don't want the parent to handle it at all, instead
5020 // return whatever value this window wants
5021 if ( !MSWShouldPropagatePrintChild() )
5022 return MSWPrintChild(hDC
, (wxWindow
*)this);
5024 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
5026 if ( win
->MSWPrintChild(hDC
, (wxWindow
*)this) )
5029 if ( win
->IsTopLevel() || win
->InheritsBackgroundColour() )
5036 // ---------------------------------------------------------------------------
5037 // moving and resizing
5038 // ---------------------------------------------------------------------------
5040 bool wxWindowMSW::HandleMinimize()
5042 wxIconizeEvent
event(m_windowId
);
5043 event
.SetEventObject(this);
5045 return HandleWindowEvent(event
);
5048 bool wxWindowMSW::HandleMaximize()
5050 wxMaximizeEvent
event(m_windowId
);
5051 event
.SetEventObject(this);
5053 return HandleWindowEvent(event
);
5056 bool wxWindowMSW::HandleMove(int x
, int y
)
5059 wxMoveEvent
event(point
, m_windowId
);
5060 event
.SetEventObject(this);
5062 return HandleWindowEvent(event
);
5065 bool wxWindowMSW::HandleMoving(wxRect
& rect
)
5067 wxMoveEvent
event(rect
, m_windowId
);
5068 event
.SetEventObject(this);
5070 bool rc
= HandleWindowEvent(event
);
5072 rect
= event
.GetRect();
5076 bool wxWindowMSW::HandleEnterSizeMove()
5078 wxMoveEvent
event(wxPoint(0,0), m_windowId
);
5079 event
.SetEventType(wxEVT_MOVE_START
);
5080 event
.SetEventObject(this);
5082 return HandleWindowEvent(event
);
5085 bool wxWindowMSW::HandleExitSizeMove()
5087 wxMoveEvent
event(wxPoint(0,0), m_windowId
);
5088 event
.SetEventType(wxEVT_MOVE_END
);
5089 event
.SetEventObject(this);
5091 return HandleWindowEvent(event
);
5094 bool wxWindowMSW::HandleSize(int WXUNUSED(w
), int WXUNUSED(h
), WXUINT wParam
)
5096 #if wxUSE_DEFERRED_SIZING
5097 // when we resize this window, its children are probably going to be
5098 // repositioned as well, prepare to use DeferWindowPos() for them
5099 int numChildren
= 0;
5100 for ( HWND child
= ::GetWindow(GetHwndOf(this), GW_CHILD
);
5102 child
= ::GetWindow(child
, GW_HWNDNEXT
) )
5107 // Protect against valid m_hDWP being overwritten
5108 bool useDefer
= false;
5110 if ( numChildren
> 1 )
5114 m_hDWP
= (WXHANDLE
)::BeginDeferWindowPos(numChildren
);
5117 wxLogLastError(wxT("BeginDeferWindowPos"));
5123 #endif // wxUSE_DEFERRED_SIZING
5125 // update this window size
5126 bool processed
= false;
5130 wxFAIL_MSG( wxT("unexpected WM_SIZE parameter") );
5131 // fall through nevertheless
5135 // we're not interested in these messages at all
5138 case SIZE_MINIMIZED
:
5139 processed
= HandleMinimize();
5142 case SIZE_MAXIMIZED
:
5143 /* processed = */ HandleMaximize();
5144 // fall through to send a normal size event as well
5147 // don't use w and h parameters as they specify the client size
5148 // while according to the docs EVT_SIZE handler is supposed to
5149 // receive the total size
5150 wxSizeEvent
event(GetSize(), m_windowId
);
5151 event
.SetEventObject(this);
5153 processed
= HandleWindowEvent(event
);
5156 #if wxUSE_DEFERRED_SIZING
5157 // and finally change the positions of all child windows at once
5158 if ( useDefer
&& m_hDWP
)
5160 // reset m_hDWP to NULL so that child windows don't try to use our
5161 // m_hDWP after we call EndDeferWindowPos() on it (this shouldn't
5162 // happen anyhow normally but who knows what weird flow of control we
5163 // may have depending on what the users EVT_SIZE handler does...)
5164 HDWP hDWP
= (HDWP
)m_hDWP
;
5167 // do put all child controls in place at once
5168 if ( !::EndDeferWindowPos(hDWP
) )
5170 wxLogLastError(wxT("EndDeferWindowPos"));
5173 // Reset our children's pending pos/size values.
5174 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
5176 node
= node
->GetNext() )
5178 wxWindowMSW
* const child
= node
->GetData();
5179 child
->MSWEndDeferWindowPos();
5182 #endif // wxUSE_DEFERRED_SIZING
5187 bool wxWindowMSW::HandleSizing(wxRect
& rect
)
5189 wxSizeEvent
event(rect
, m_windowId
);
5190 event
.SetEventObject(this);
5192 bool rc
= HandleWindowEvent(event
);
5194 rect
= event
.GetRect();
5198 bool wxWindowMSW::HandleGetMinMaxInfo(void *WXUNUSED_IN_WINCE(mmInfo
))
5203 MINMAXINFO
*info
= (MINMAXINFO
*)mmInfo
;
5207 int minWidth
= GetMinWidth(),
5208 minHeight
= GetMinHeight(),
5209 maxWidth
= GetMaxWidth(),
5210 maxHeight
= GetMaxHeight();
5212 if ( minWidth
!= wxDefaultCoord
)
5214 info
->ptMinTrackSize
.x
= minWidth
;
5218 if ( minHeight
!= wxDefaultCoord
)
5220 info
->ptMinTrackSize
.y
= minHeight
;
5224 if ( maxWidth
!= wxDefaultCoord
)
5226 info
->ptMaxTrackSize
.x
= maxWidth
;
5230 if ( maxHeight
!= wxDefaultCoord
)
5232 info
->ptMaxTrackSize
.y
= maxHeight
;
5240 // ---------------------------------------------------------------------------
5242 // ---------------------------------------------------------------------------
5244 bool wxWindowMSW::HandleCommand(WXWORD id_
, WXWORD cmd
, WXHWND control
)
5246 // sign extend to int from short before comparing with the other int ids
5247 int id
= (signed short)id_
;
5249 #if wxUSE_MENUS_NATIVE
5250 if ( !cmd
&& wxCurrentPopupMenu
)
5252 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
5253 wxCurrentPopupMenu
= NULL
;
5255 return popupMenu
->MSWCommand(cmd
, id
);
5257 #endif // wxUSE_MENUS_NATIVE
5259 wxWindow
*win
= NULL
;
5261 // first try to find it from HWND - this works even with the broken
5262 // programs using the same ids for different controls
5265 win
= wxFindWinFromHandle(control
);
5276 return win
->MSWCommand(cmd
, id
);
5279 // the messages sent from the in-place edit control used by the treectrl
5280 // for label editing have id == 0, but they should _not_ be treated as menu
5281 // messages (they are EN_XXX ones, in fact) so don't translate anything
5282 // coming from a control to wxEVT_COMMAND_MENU_SELECTED
5285 wxCommandEvent
event(wxEVT_COMMAND_MENU_SELECTED
, id
);
5286 event
.SetEventObject(this);
5289 return HandleWindowEvent(event
);
5293 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
5294 // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND
5295 // notifications to its parent which we want to reflect back to
5297 wxSpinCtrl
*spin
= wxSpinCtrl::GetSpinForTextCtrl(control
);
5298 if ( spin
&& spin
->ProcessTextCommand(cmd
, id
) )
5300 #endif // wxUSE_SPINCTRL
5302 #if wxUSE_CHOICE && defined(__SMARTPHONE__)
5303 // the listbox ctrl which is logically part of wxChoice sends WM_COMMAND
5304 // notifications to its parent which we want to reflect back to
5306 wxChoice
*choice
= wxChoice::GetChoiceForListBox(control
);
5307 if ( choice
&& choice
->MSWCommand(cmd
, id
) )
5315 // ---------------------------------------------------------------------------
5317 // ---------------------------------------------------------------------------
5319 void wxWindowMSW::InitMouseEvent(wxMouseEvent
& event
,
5323 // our client coords are not quite the same as Windows ones
5324 wxPoint pt
= GetClientAreaOrigin();
5325 event
.m_x
= x
- pt
.x
;
5326 event
.m_y
= y
- pt
.y
;
5328 event
.m_shiftDown
= (flags
& MK_SHIFT
) != 0;
5329 event
.m_controlDown
= (flags
& MK_CONTROL
) != 0;
5330 event
.m_leftDown
= (flags
& MK_LBUTTON
) != 0;
5331 event
.m_middleDown
= (flags
& MK_MBUTTON
) != 0;
5332 event
.m_rightDown
= (flags
& MK_RBUTTON
) != 0;
5333 #ifdef wxHAS_XBUTTON
5334 event
.m_aux1Down
= (flags
& MK_XBUTTON1
) != 0;
5335 event
.m_aux2Down
= (flags
& MK_XBUTTON2
) != 0;
5336 #endif // wxHAS_XBUTTON
5337 event
.m_altDown
= ::wxIsAltDown();
5340 event
.SetTimestamp(::GetMessageTime());
5343 event
.SetEventObject(this);
5344 event
.SetId(GetId());
5346 #if wxUSE_MOUSEEVENT_HACK
5347 gs_lastMouseEvent
.pos
= ClientToScreen(wxPoint(x
, y
));
5348 gs_lastMouseEvent
.type
= event
.GetEventType();
5349 #endif // wxUSE_MOUSEEVENT_HACK
5353 // Windows doesn't send the mouse events to the static controls (which are
5354 // transparent in the sense that their WM_NCHITTEST handler returns
5355 // HTTRANSPARENT) at all but we want all controls to receive the mouse events
5356 // and so we manually check if we don't have a child window under mouse and if
5357 // we do, send the event to it instead of the window Windows had sent WM_XXX
5360 // Notice that this is not done for the mouse move events because this could
5361 // (would?) be too slow, but only for clicks which means that the static texts
5362 // still don't get move, enter nor leave events.
5363 static wxWindowMSW
*FindWindowForMouseEvent(wxWindowMSW
*win
, int *x
, int *y
)
5365 wxCHECK_MSG( x
&& y
, win
, wxT("NULL pointer in FindWindowForMouseEvent") );
5367 // first try to find a non transparent child: this allows us to send events
5368 // to a static text which is inside a static box, for example
5369 POINT pt
= { *x
, *y
};
5370 HWND hwnd
= GetHwndOf(win
),
5374 hwndUnderMouse
= ::ChildWindowFromPoint
5380 hwndUnderMouse
= ::ChildWindowFromPointEx
5390 if ( !hwndUnderMouse
|| hwndUnderMouse
== hwnd
)
5392 // now try any child window at all
5393 hwndUnderMouse
= ::ChildWindowFromPoint(hwnd
, pt
);
5396 // check that we have a child window which is susceptible to receive mouse
5397 // events: for this it must be shown and enabled
5398 if ( hwndUnderMouse
&&
5399 hwndUnderMouse
!= hwnd
&&
5400 ::IsWindowVisible(hwndUnderMouse
) &&
5401 ::IsWindowEnabled(hwndUnderMouse
) )
5403 wxWindow
*winUnderMouse
= wxFindWinFromHandle(hwndUnderMouse
);
5404 if ( winUnderMouse
)
5406 // translate the mouse coords to the other window coords
5407 win
->ClientToScreen(x
, y
);
5408 winUnderMouse
->ScreenToClient(x
, y
);
5410 win
= winUnderMouse
;
5416 #endif // __WXWINCE__
5418 bool wxWindowMSW::HandleMouseEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
5420 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
5421 // WM_MOUSELAST, so it's enough to subtract WM_MOUSEMOVE == WM_MOUSEFIRST
5422 // from the message id and take the value in the table to get wxWin event
5424 static const wxEventType eventsMouse
[] =
5435 wxEVT_MIDDLE_DCLICK
,
5436 0, // this one is for wxEVT_MOTION which is not used here
5445 #ifdef wxHAS_XBUTTON
5446 // the same messages are used for both auxillary mouse buttons so we need
5447 // to adjust the index manually
5450 case WM_XBUTTONDOWN
:
5452 case WM_XBUTTONDBLCLK
:
5453 if ( flags
& MK_XBUTTON2
)
5454 msg
+= wxEVT_AUX2_DOWN
- wxEVT_AUX1_DOWN
;
5456 #endif // wxHAS_XBUTTON
5458 wxMouseEvent
event(eventsMouse
[msg
- WM_MOUSEMOVE
]);
5459 InitMouseEvent(event
, x
, y
, flags
);
5461 return HandleWindowEvent(event
);
5464 bool wxWindowMSW::HandleMouseMove(int x
, int y
, WXUINT flags
)
5466 if ( !m_mouseInWindow
)
5468 // it would be wrong to assume that just because we get a mouse move
5469 // event that the mouse is inside the window: although this is usually
5470 // true, it is not if we had captured the mouse, so we need to check
5471 // the mouse coordinates here
5472 if ( !HasCapture() || IsMouseInWindow() )
5474 // Generate an ENTER event
5475 m_mouseInWindow
= true;
5477 #ifdef HAVE_TRACKMOUSEEVENT
5478 typedef BOOL (WINAPI
*_TrackMouseEvent_t
)(LPTRACKMOUSEEVENT
);
5480 static const _TrackMouseEvent_t
5481 s_pfn_TrackMouseEvent
= _TrackMouseEvent
;
5482 #else // !__WXWINCE__
5483 static _TrackMouseEvent_t s_pfn_TrackMouseEvent
;
5484 static bool s_initDone
= false;
5487 // see comment in wxApp::GetComCtl32Version() explaining the
5488 // use of wxLoadedDLL
5489 wxLoadedDLL
dllComCtl32(wxT("comctl32.dll"));
5490 if ( dllComCtl32
.IsLoaded() )
5492 s_pfn_TrackMouseEvent
= (_TrackMouseEvent_t
)
5493 dllComCtl32
.RawGetSymbol(wxT("_TrackMouseEvent"));
5499 if ( s_pfn_TrackMouseEvent
)
5500 #endif // __WXWINCE__/!__WXWINCE__
5502 WinStruct
<TRACKMOUSEEVENT
> trackinfo
;
5504 trackinfo
.dwFlags
= TME_LEAVE
;
5505 trackinfo
.hwndTrack
= GetHwnd();
5507 (*s_pfn_TrackMouseEvent
)(&trackinfo
);
5509 #endif // HAVE_TRACKMOUSEEVENT
5511 wxMouseEvent
event(wxEVT_ENTER_WINDOW
);
5512 InitMouseEvent(event
, x
, y
, flags
);
5514 (void)HandleWindowEvent(event
);
5517 #ifdef HAVE_TRACKMOUSEEVENT
5518 else // mouse not in window
5520 // Check if we need to send a LEAVE event
5521 // Windows doesn't send WM_MOUSELEAVE if the mouse has been captured so
5522 // send it here if we are using native mouse leave tracking
5523 if ( HasCapture() && !IsMouseInWindow() )
5525 GenerateMouseLeave();
5528 #endif // HAVE_TRACKMOUSEEVENT
5530 #if wxUSE_MOUSEEVENT_HACK
5531 // Windows often generates mouse events even if mouse position hasn't
5532 // changed (http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/66576)
5534 // Filter this out as it can result in unexpected behaviour compared to
5536 if ( gs_lastMouseEvent
.type
== wxEVT_RIGHT_DOWN
||
5537 gs_lastMouseEvent
.type
== wxEVT_LEFT_DOWN
||
5538 gs_lastMouseEvent
.type
== wxEVT_MIDDLE_DOWN
||
5539 gs_lastMouseEvent
.type
== wxEVT_MOTION
)
5541 if ( ClientToScreen(wxPoint(x
, y
)) == gs_lastMouseEvent
.pos
)
5543 gs_lastMouseEvent
.type
= wxEVT_MOTION
;
5548 #endif // wxUSE_MOUSEEVENT_HACK
5550 return HandleMouseEvent(WM_MOUSEMOVE
, x
, y
, flags
);
5554 bool wxWindowMSW::HandleMouseWheel(WXWPARAM wParam
, WXLPARAM lParam
)
5556 #if wxUSE_MOUSEWHEEL
5557 // notice that WM_MOUSEWHEEL position is in screen coords (as it's
5558 // forwarded up to the parent by DefWindowProc()) and not in the client
5559 // ones as all the other messages, translate them to the client coords for
5562 pt
= ScreenToClient(wxPoint(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
)));
5563 wxMouseEvent
event(wxEVT_MOUSEWHEEL
);
5564 InitMouseEvent(event
, pt
.x
, pt
.y
, LOWORD(wParam
));
5565 event
.m_wheelRotation
= (short)HIWORD(wParam
);
5566 event
.m_wheelDelta
= WHEEL_DELTA
;
5568 static int s_linesPerRotation
= -1;
5569 if ( s_linesPerRotation
== -1 )
5571 if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES
, 0,
5572 &s_linesPerRotation
, 0))
5574 // this is not supposed to happen
5575 wxLogLastError(wxT("SystemParametersInfo(GETWHEELSCROLLLINES)"));
5577 // the default is 3, so use it if SystemParametersInfo() failed
5578 s_linesPerRotation
= 3;
5582 event
.m_linesPerAction
= s_linesPerRotation
;
5583 return HandleWindowEvent(event
);
5585 #else // !wxUSE_MOUSEWHEEL
5586 wxUnusedVar(wParam
);
5587 wxUnusedVar(lParam
);
5590 #endif // wxUSE_MOUSEWHEEL/!wxUSE_MOUSEWHEEL
5593 void wxWindowMSW::GenerateMouseLeave()
5595 m_mouseInWindow
= false;
5598 if ( wxIsShiftDown() )
5600 if ( wxIsCtrlDown() )
5601 state
|= MK_CONTROL
;
5603 // Only the high-order bit should be tested
5604 if ( GetKeyState( VK_LBUTTON
) & (1<<15) )
5605 state
|= MK_LBUTTON
;
5606 if ( GetKeyState( VK_MBUTTON
) & (1<<15) )
5607 state
|= MK_MBUTTON
;
5608 if ( GetKeyState( VK_RBUTTON
) & (1<<15) )
5609 state
|= MK_RBUTTON
;
5612 wxGetCursorPosMSW(&pt
);
5614 // we need to have client coordinates here for symmetry with
5615 // wxEVT_ENTER_WINDOW
5616 RECT rect
= wxGetWindowRect(GetHwnd());
5620 wxMouseEvent
event(wxEVT_LEAVE_WINDOW
);
5621 InitMouseEvent(event
, pt
.x
, pt
.y
, state
);
5623 (void)HandleWindowEvent(event
);
5626 // ---------------------------------------------------------------------------
5627 // keyboard handling
5628 // ---------------------------------------------------------------------------
5633 // Implementation of InitAnyKeyEvent() which can also be used when there is no
5634 // associated window: this can happen for the wxEVT_CHAR_HOOK events created by
5635 // the global keyboard hook (e.g. the event might have happened in a non-wx
5638 MSWInitAnyKeyEvent(wxKeyEvent
& event
,
5641 const wxWindowBase
*win
/* may be NULL */)
5645 event
.SetId(win
->GetId());
5646 event
.SetEventObject(const_cast<wxWindowBase
*>(win
));
5648 else // No associated window.
5650 // Use wxID_ANY for compatibility with the old code even if wxID_NONE
5651 // would arguably make more sense.
5652 event
.SetId(wxID_ANY
);
5655 event
.m_shiftDown
= wxIsShiftDown();
5656 event
.m_controlDown
= wxIsCtrlDown();
5657 event
.m_altDown
= (HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
;
5659 event
.m_rawCode
= (wxUint32
) wParam
;
5660 event
.m_rawFlags
= (wxUint32
) lParam
;
5662 event
.SetTimestamp(::GetMessageTime());
5665 // Event coordinates must be in window client coordinates system which
5666 // doesn't make sense if there is no window.
5668 // We could use screen coordinates for such events but this would make the
5669 // logic of the event handlers more complicated: you'd need to test for the
5670 // event object and interpret the coordinates differently according to
5671 // whether it's NULL or not so unless somebody really asks for this let's
5672 // just avoid the issue.
5675 const wxPoint mousePos
= win
->ScreenToClient(wxGetMousePosition());
5676 event
.m_x
= mousePos
.x
;
5677 event
.m_y
= mousePos
.y
;
5681 } // anonymous namespace
5684 wxWindowMSW::InitAnyKeyEvent(wxKeyEvent
& event
,
5686 WXLPARAM lParam
) const
5688 MSWInitAnyKeyEvent(event
, wParam
, lParam
, this);
5692 wxWindowMSW::CreateKeyEvent(wxEventType evType
,
5694 WXLPARAM lParam
) const
5696 // Catch any attempts to use this with WM_CHAR, it wouldn't work because
5697 // wParam is supposed to be a virtual key and not a character here.
5698 wxASSERT_MSG( evType
!= wxEVT_CHAR
&& evType
!= wxEVT_CHAR_HOOK
,
5699 "CreateKeyEvent() can't be used for char events" );
5701 wxKeyEvent
event(evType
);
5702 InitAnyKeyEvent(event
, wParam
, lParam
);
5704 event
.m_keyCode
= wxMSWKeyboard::VKToWX
5710 #endif // wxUSE_UNICODE
5717 wxWindowMSW::CreateCharEvent(wxEventType evType
,
5719 WXLPARAM lParam
) const
5721 wxKeyEvent
event(evType
);
5722 InitAnyKeyEvent(event
, wParam
, lParam
);
5725 // TODO: wParam uses UTF-16 so this is incorrect for characters outside of
5726 // the BMP, we should use WM_UNICHAR to handle them.
5727 event
.m_uniChar
= wParam
;
5728 #endif // wxUSE_UNICODE
5730 // Set non-Unicode key code too for compatibility if possible.
5731 if ( wParam
< 0x80 )
5733 // It's an ASCII character, no need to translate it.
5734 event
.m_keyCode
= wParam
;
5738 // Check if this key can be represented (as a single character) in the
5740 const wchar_t wc
= wParam
;
5742 if ( wxConvLibc
.FromWChar(&ch
, 1, &wc
, 1) != wxCONV_FAILED
)
5744 // For compatibility continue to provide the key code in this field
5745 // even though using GetUnicodeKey() is recommended now.
5746 event
.m_keyCode
= static_cast<unsigned char>(ch
);
5748 //else: Key can't be represented in the current locale, leave m_keyCode
5749 // as WXK_NONE and use GetUnicodeKey() to access the character.
5752 // the alphanumeric keys produced by pressing AltGr+something on European
5753 // keyboards have both Ctrl and Alt modifiers which may confuse the user
5754 // code as, normally, keys with Ctrl and/or Alt don't result in anything
5755 // alphanumeric, so pretend that there are no modifiers at all (the
5756 // KEY_DOWN event would still have the correct modifiers if they're really
5758 if ( event
.m_controlDown
&& event
.m_altDown
&&
5759 (event
.m_keyCode
>= 32 && event
.m_keyCode
< 256) )
5761 event
.m_controlDown
=
5762 event
.m_altDown
= false;
5768 // isASCII is true only when we're called from WM_CHAR handler and not from
5770 bool wxWindowMSW::HandleChar(WXWPARAM wParam
, WXLPARAM lParam
)
5772 wxKeyEvent
event(CreateCharEvent(wxEVT_CHAR
, wParam
, lParam
));
5773 return HandleWindowEvent(event
);
5776 bool wxWindowMSW::HandleKeyDown(WXWPARAM wParam
, WXLPARAM lParam
)
5778 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_DOWN
, wParam
, lParam
));
5779 return HandleWindowEvent(event
);
5782 bool wxWindowMSW::HandleKeyUp(WXWPARAM wParam
, WXLPARAM lParam
)
5784 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_UP
, wParam
, lParam
));
5785 return HandleWindowEvent(event
);
5789 int wxWindowMSW::HandleMenuChar(int WXUNUSED_IN_WINCE(chAccel
),
5790 WXLPARAM
WXUNUSED_IN_WINCE(lParam
))
5792 // FIXME: implement GetMenuItemCount for WinCE, possibly
5793 // in terms of GetMenuItemInfo
5795 const HMENU hmenu
= (HMENU
)lParam
;
5797 WinStruct
<MENUITEMINFO
> mii
;
5799 // we could use MIIM_FTYPE here as we only need to know if the item is
5800 // ownerdrawn or not and not dwTypeData which MIIM_TYPE also returns, but
5801 // MIIM_FTYPE is not supported under Win95
5802 mii
.fMask
= MIIM_TYPE
| MIIM_DATA
;
5804 // find if we have this letter in any owner drawn item
5805 const int count
= ::GetMenuItemCount(hmenu
);
5806 for ( int i
= 0; i
< count
; i
++ )
5808 // previous loop iteration could modify it, reset it back before
5809 // calling GetMenuItemInfo() to prevent it from overflowing dwTypeData
5812 if ( ::GetMenuItemInfo(hmenu
, i
, TRUE
, &mii
) )
5814 if ( mii
.fType
== MFT_OWNERDRAW
)
5816 // dwItemData member of the MENUITEMINFO is a
5817 // pointer to the associated wxMenuItem -- see the
5818 // menu creation code
5819 wxMenuItem
*item
= (wxMenuItem
*)mii
.dwItemData
;
5821 const wxString
label(item
->GetItemLabel());
5822 const wxChar
*p
= wxStrchr(label
.wx_str(), wxT('&'));
5825 if ( *p
== wxT('&') )
5827 // this is not the accel char, find the real one
5828 p
= wxStrchr(p
+ 1, wxT('&'));
5830 else // got the accel char
5832 // FIXME-UNICODE: this comparison doesn't risk to work
5833 // for non ASCII accelerator characters I'm afraid, but
5835 if ( (wchar_t)wxToupper(*p
) == (wchar_t)chAccel
)
5841 // this one doesn't match
5848 else // failed to get the menu text?
5850 // it's not fatal, so don't show error, but still log it
5851 wxLogLastError(wxT("GetMenuItemInfo"));
5858 #endif // wxUSE_MENUS
5860 bool wxWindowMSW::HandleClipboardEvent(WXUINT nMsg
)
5862 const wxEventType type
= nMsg
== WM_CUT
? wxEVT_COMMAND_TEXT_CUT
5863 : nMsg
== WM_COPY
? wxEVT_COMMAND_TEXT_COPY
5864 : /* nMsg == WM_PASTE */ wxEVT_COMMAND_TEXT_PASTE
;
5865 wxClipboardTextEvent
evt(type
, GetId());
5867 evt
.SetEventObject(this);
5869 return HandleWindowEvent(evt
);
5872 // ---------------------------------------------------------------------------
5874 // ---------------------------------------------------------------------------
5876 bool wxWindowMSW::HandleJoystickEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
5880 if ( flags
& JOY_BUTTON1CHG
)
5881 change
= wxJOY_BUTTON1
;
5882 if ( flags
& JOY_BUTTON2CHG
)
5883 change
= wxJOY_BUTTON2
;
5884 if ( flags
& JOY_BUTTON3CHG
)
5885 change
= wxJOY_BUTTON3
;
5886 if ( flags
& JOY_BUTTON4CHG
)
5887 change
= wxJOY_BUTTON4
;
5890 if ( flags
& JOY_BUTTON1
)
5891 buttons
|= wxJOY_BUTTON1
;
5892 if ( flags
& JOY_BUTTON2
)
5893 buttons
|= wxJOY_BUTTON2
;
5894 if ( flags
& JOY_BUTTON3
)
5895 buttons
|= wxJOY_BUTTON3
;
5896 if ( flags
& JOY_BUTTON4
)
5897 buttons
|= wxJOY_BUTTON4
;
5899 // the event ids aren't consecutive so we can't use table based lookup
5901 wxEventType eventType
;
5906 eventType
= wxEVT_JOY_MOVE
;
5911 eventType
= wxEVT_JOY_MOVE
;
5916 eventType
= wxEVT_JOY_ZMOVE
;
5921 eventType
= wxEVT_JOY_ZMOVE
;
5924 case MM_JOY1BUTTONDOWN
:
5926 eventType
= wxEVT_JOY_BUTTON_DOWN
;
5929 case MM_JOY2BUTTONDOWN
:
5931 eventType
= wxEVT_JOY_BUTTON_DOWN
;
5934 case MM_JOY1BUTTONUP
:
5936 eventType
= wxEVT_JOY_BUTTON_UP
;
5939 case MM_JOY2BUTTONUP
:
5941 eventType
= wxEVT_JOY_BUTTON_UP
;
5945 wxFAIL_MSG(wxT("no such joystick event"));
5950 wxJoystickEvent
event(eventType
, buttons
, joystick
, change
);
5951 if ( eventType
== wxEVT_JOY_ZMOVE
)
5952 event
.SetZPosition(x
);
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
6240 // MapVirtualKey() returns 0 if it fails to convert the virtual
6241 // key which nicely corresponds to our WXK_NONE.
6242 wxk
= ::MapVirtualKey(vk
, MAPVK_VK_TO_CHAR
);
6244 if ( HIWORD(wxk
) & 0x8000 )
6246 // It's a dead key and we don't return anything at all for them
6247 // as we simply don't have any way to indicate the difference
6248 // between e.g. a normal "'" and "'" as a dead key -- and
6249 // generating the same events for them just doesn't seem like a
6254 // In any case return this as a Unicode character value.
6258 // For compatibility with the old non-Unicode code we continue
6259 // returning key codes for Latin-1 characters directly
6260 // (normally it would really only make sense to do it for the
6261 // ASCII characters, not Latin-1 ones).
6264 // But for anything beyond this we can only return the key
6265 // value as a real Unicode character, not a wxKeyCode
6266 // because this enum values clash with Unicode characters
6267 // (e.g. WXK_LBUTTON also happens to be U+012C a.k.a.
6268 // "LATIN CAPITAL LETTER I WITH BREVE").
6273 // handle extended keys
6275 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_PAGEUP
, WXK_PAGEUP
);
6279 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_PAGEDOWN
, WXK_PAGEDOWN
);
6283 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_END
, WXK_END
);
6287 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_HOME
, WXK_HOME
);
6291 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_LEFT
, WXK_LEFT
);
6295 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_UP
, WXK_UP
);
6299 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_RIGHT
, WXK_RIGHT
);
6303 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_DOWN
, WXK_DOWN
);
6307 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_INSERT
, WXK_INSERT
);
6311 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_DELETE
, WXK_DELETE
);
6315 // don't use ChooseNormalOrExtended() here as the keys are reversed
6316 // here: numpad enter is the extended one
6317 wxk
= HIWORD(lParam
) & KF_EXTENDED
? WXK_NUMPAD_ENTER
: WXK_RETURN
;
6324 if ( (vk
>= '0' && vk
<= '9') || (vk
>= 'A' && vk
<= 'Z') )
6326 // A simple alphanumeric key and the values of them coincide in
6327 // Windows and wx for both ASCII and Unicode codes.
6330 else // Something we simply don't know about at all.
6342 WXWORD
WXToVK(int wxk
, bool *isExtended
)
6344 // check the table first
6345 for ( size_t n
= 0; n
< WXSIZEOF(gs_specialKeys
); n
++ )
6347 if ( gs_specialKeys
[n
].wxk
== wxk
)
6349 // All extended keys (i.e. non-numpad versions of the keys that
6350 // exist both in the numpad and outside of it) are dealt with
6353 *isExtended
= false;
6355 return gs_specialKeys
[n
].vk
;
6359 // and then check for special keys not included in the table
6360 bool extended
= false;
6366 case WXK_NUMPAD_PAGEUP
:
6372 case WXK_NUMPAD_PAGEDOWN
:
6378 case WXK_NUMPAD_END
:
6384 case WXK_NUMPAD_HOME
:
6390 case WXK_NUMPAD_LEFT
:
6402 case WXK_NUMPAD_RIGHT
:
6408 case WXK_NUMPAD_DOWN
:
6414 case WXK_NUMPAD_INSERT
:
6420 case WXK_NUMPAD_DELETE
:
6425 // no VkKeyScan() under CE unfortunately, we need to test how does
6426 // it handle OEM keys
6428 // check to see if its one of the OEM key codes.
6429 BYTE vks
= LOBYTE(VkKeyScan(wxk
));
6435 #endif // !__WXWINCE__
6442 *isExtended
= extended
;
6447 } // namespace wxMSWKeyboard
6449 // small helper for wxGetKeyState() and wxGetMouseState()
6450 static inline bool wxIsKeyDown(WXWORD vk
)
6452 // SM_SWAPBUTTON is not available under CE, so don't swap buttons there
6453 #ifdef SM_SWAPBUTTON
6454 if ( vk
== VK_LBUTTON
|| vk
== VK_RBUTTON
)
6456 if ( ::GetSystemMetrics(SM_SWAPBUTTON
) )
6458 if ( vk
== VK_LBUTTON
)
6460 else // vk == VK_RBUTTON
6464 #endif // SM_SWAPBUTTON
6466 // the low order bit indicates whether the key was pressed since the last
6467 // call and the high order one indicates whether it is down right now and
6468 // we only want that one
6469 return (GetAsyncKeyState(vk
) & (1<<15)) != 0;
6472 bool wxGetKeyState(wxKeyCode key
)
6474 // although this does work under Windows, it is not supported under other
6475 // platforms so don't allow it, you must use wxGetMouseState() instead
6476 wxASSERT_MSG( key
!= VK_LBUTTON
&&
6477 key
!= VK_RBUTTON
&&
6479 wxT("can't use wxGetKeyState() for mouse buttons") );
6481 const WXWORD vk
= wxMSWKeyboard::WXToVK(key
);
6483 // if the requested key is a LED key, return true if the led is pressed
6484 if ( key
== WXK_NUMLOCK
|| key
== WXK_CAPITAL
|| key
== WXK_SCROLL
)
6486 // low order bit means LED is highlighted and high order one means the
6487 // key is down; for compatibility with the other ports return true if
6488 // either one is set
6489 return GetKeyState(vk
) != 0;
6494 return wxIsKeyDown(vk
);
6499 wxMouseState
wxGetMouseState()
6503 wxGetCursorPosMSW(&pt
);
6507 ms
.SetLeftDown(wxIsKeyDown(VK_LBUTTON
));
6508 ms
.SetMiddleDown(wxIsKeyDown(VK_MBUTTON
));
6509 ms
.SetRightDown(wxIsKeyDown(VK_RBUTTON
));
6510 #ifdef wxHAS_XBUTTON
6511 ms
.SetAux1Down(wxIsKeyDown(VK_XBUTTON1
));
6512 ms
.SetAux2Down(wxIsKeyDown(VK_XBUTTON2
));
6513 #endif // wxHAS_XBUTTON
6515 ms
.SetControlDown(wxIsCtrlDown ());
6516 ms
.SetShiftDown (wxIsShiftDown());
6517 ms
.SetAltDown (wxIsAltDown ());
6518 // ms.SetMetaDown();
6524 wxWindow
*wxGetActiveWindow()
6526 HWND hWnd
= GetActiveWindow();
6529 return wxFindWinFromHandle(hWnd
);
6534 extern wxWindow
*wxGetWindowFromHWND(WXHWND hWnd
)
6536 HWND hwnd
= (HWND
)hWnd
;
6538 // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set
6539 // by code in msw/radiobox.cpp), for all the others we just search up the
6541 wxWindow
*win
= NULL
;
6544 win
= wxFindWinFromHandle(hwnd
);
6547 #if wxUSE_RADIOBOX && !defined(__WXUNIVERSAL__)
6548 // native radiobuttons return DLGC_RADIOBUTTON here and for any
6549 // wxWindow class which overrides WM_GETDLGCODE processing to
6550 // do it as well, win would be already non NULL
6551 if ( ::SendMessage(hwnd
, WM_GETDLGCODE
, 0, 0) & DLGC_RADIOBUTTON
)
6553 win
= wxRadioBox::GetFromRadioButtonHWND(hwnd
);
6555 //else: it's a wxRadioButton, not a radiobutton from wxRadioBox
6556 #endif // wxUSE_RADIOBOX
6558 // spin control text buddy window should be mapped to spin ctrl
6559 // itself so try it too
6560 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
6563 win
= wxSpinCtrl::GetSpinForTextCtrl((WXHWND
)hwnd
);
6565 #endif // wxUSE_SPINCTRL
6569 while ( hwnd
&& !win
)
6571 // this is a really ugly hack needed to avoid mistakenly returning the
6572 // parent frame wxWindow for the find/replace modeless dialog HWND -
6573 // this, in turn, is needed to call IsDialogMessage() from
6574 // wxApp::ProcessMessage() as for this we must return NULL from here
6576 // FIXME: this is clearly not the best way to do it but I think we'll
6577 // need to change HWND <-> wxWindow code more heavily than I can
6578 // do it now to fix it
6579 #ifndef __WXMICROWIN__
6580 if ( ::GetWindow(hwnd
, GW_OWNER
) )
6582 // it's a dialog box, don't go upwards
6587 hwnd
= ::GetParent(hwnd
);
6588 win
= wxFindWinFromHandle(hwnd
);
6594 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
6596 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
6597 // in active frames and dialogs, regardless of where the focus is.
6598 static HHOOK wxTheKeyboardHook
= 0;
6601 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
)
6603 DWORD hiWord
= HIWORD(lParam
);
6604 if ( nCode
!= HC_NOREMOVE
&& ((hiWord
& KF_UP
) == 0) )
6607 int id
= wxMSWKeyboard::VKToWX(wParam
, lParam
, &uc
);
6609 // Don't intercept keyboard entry (notably Escape) if a modal window
6610 // (not managed by wx, e.g. IME one) is currently opened as more often
6611 // than not it needs all the keys for itself.
6613 // Also don't catch it if a window currently captures the mouse as
6614 // Escape is normally used to release the mouse capture and if you
6615 // really need to catch all the keys in the window that has mouse
6616 // capture it can be easily done in its own EVT_CHAR handler as it is
6617 // certain to have focus while it has the capture.
6618 if ( !gs_modalEntryWindowCount
&& !::GetCapture() )
6622 || static_cast<int>(uc
) != WXK_NONE
6623 #endif // wxUSE_UNICODE
6626 wxWindow
const* win
= wxWindow::DoFindFocus();
6629 // Even if the focus got lost somehow, still send the event
6630 // to the top level parent to allow a wxDialog to always
6632 win
= wxGetActiveWindow();
6635 wxKeyEvent
event(wxEVT_CHAR_HOOK
);
6636 MSWInitAnyKeyEvent(event
, wParam
, lParam
, win
);
6638 event
.m_keyCode
= id
;
6640 event
.m_uniChar
= uc
;
6641 #endif // wxUSE_UNICODE
6643 wxEvtHandler
* const handler
= win
? win
->GetEventHandler()
6646 if ( handler
&& handler
->ProcessEvent(event
) )
6648 if ( !event
.IsNextEventAllowed() )
6650 // Stop processing of this event.
6658 return (int)CallNextHookEx(wxTheKeyboardHook
, nCode
, wParam
, lParam
);
6661 void wxSetKeyboardHook(bool doIt
)
6665 wxTheKeyboardHook
= ::SetWindowsHookEx
6668 (HOOKPROC
)wxKeyboardHook
,
6669 NULL
, // must be NULL for process hook
6670 ::GetCurrentThreadId()
6672 if ( !wxTheKeyboardHook
)
6674 wxLogLastError(wxT("SetWindowsHookEx(wxKeyboardHook)"));
6679 if ( wxTheKeyboardHook
)
6680 ::UnhookWindowsHookEx(wxTheKeyboardHook
);
6684 #endif // !__WXMICROWIN__
6686 #if wxDEBUG_LEVEL >= 2
6687 const wxChar
*wxGetMessageName(int message
)
6691 case 0x0000: return wxT("WM_NULL");
6692 case 0x0001: return wxT("WM_CREATE");
6693 case 0x0002: return wxT("WM_DESTROY");
6694 case 0x0003: return wxT("WM_MOVE");
6695 case 0x0005: return wxT("WM_SIZE");
6696 case 0x0006: return wxT("WM_ACTIVATE");
6697 case 0x0007: return wxT("WM_SETFOCUS");
6698 case 0x0008: return wxT("WM_KILLFOCUS");
6699 case 0x000A: return wxT("WM_ENABLE");
6700 case 0x000B: return wxT("WM_SETREDRAW");
6701 case 0x000C: return wxT("WM_SETTEXT");
6702 case 0x000D: return wxT("WM_GETTEXT");
6703 case 0x000E: return wxT("WM_GETTEXTLENGTH");
6704 case 0x000F: return wxT("WM_PAINT");
6705 case 0x0010: return wxT("WM_CLOSE");
6706 case 0x0011: return wxT("WM_QUERYENDSESSION");
6707 case 0x0012: return wxT("WM_QUIT");
6708 case 0x0013: return wxT("WM_QUERYOPEN");
6709 case 0x0014: return wxT("WM_ERASEBKGND");
6710 case 0x0015: return wxT("WM_SYSCOLORCHANGE");
6711 case 0x0016: return wxT("WM_ENDSESSION");
6712 case 0x0017: return wxT("WM_SYSTEMERROR");
6713 case 0x0018: return wxT("WM_SHOWWINDOW");
6714 case 0x0019: return wxT("WM_CTLCOLOR");
6715 case 0x001A: return wxT("WM_WININICHANGE");
6716 case 0x001B: return wxT("WM_DEVMODECHANGE");
6717 case 0x001C: return wxT("WM_ACTIVATEAPP");
6718 case 0x001D: return wxT("WM_FONTCHANGE");
6719 case 0x001E: return wxT("WM_TIMECHANGE");
6720 case 0x001F: return wxT("WM_CANCELMODE");
6721 case 0x0020: return wxT("WM_SETCURSOR");
6722 case 0x0021: return wxT("WM_MOUSEACTIVATE");
6723 case 0x0022: return wxT("WM_CHILDACTIVATE");
6724 case 0x0023: return wxT("WM_QUEUESYNC");
6725 case 0x0024: return wxT("WM_GETMINMAXINFO");
6726 case 0x0026: return wxT("WM_PAINTICON");
6727 case 0x0027: return wxT("WM_ICONERASEBKGND");
6728 case 0x0028: return wxT("WM_NEXTDLGCTL");
6729 case 0x002A: return wxT("WM_SPOOLERSTATUS");
6730 case 0x002B: return wxT("WM_DRAWITEM");
6731 case 0x002C: return wxT("WM_MEASUREITEM");
6732 case 0x002D: return wxT("WM_DELETEITEM");
6733 case 0x002E: return wxT("WM_VKEYTOITEM");
6734 case 0x002F: return wxT("WM_CHARTOITEM");
6735 case 0x0030: return wxT("WM_SETFONT");
6736 case 0x0031: return wxT("WM_GETFONT");
6737 case 0x0037: return wxT("WM_QUERYDRAGICON");
6738 case 0x0039: return wxT("WM_COMPAREITEM");
6739 case 0x0041: return wxT("WM_COMPACTING");
6740 case 0x0044: return wxT("WM_COMMNOTIFY");
6741 case 0x0046: return wxT("WM_WINDOWPOSCHANGING");
6742 case 0x0047: return wxT("WM_WINDOWPOSCHANGED");
6743 case 0x0048: return wxT("WM_POWER");
6745 case 0x004A: return wxT("WM_COPYDATA");
6746 case 0x004B: return wxT("WM_CANCELJOURNAL");
6747 case 0x004E: return wxT("WM_NOTIFY");
6748 case 0x0050: return wxT("WM_INPUTLANGCHANGEREQUEST");
6749 case 0x0051: return wxT("WM_INPUTLANGCHANGE");
6750 case 0x0052: return wxT("WM_TCARD");
6751 case 0x0053: return wxT("WM_HELP");
6752 case 0x0054: return wxT("WM_USERCHANGED");
6753 case 0x0055: return wxT("WM_NOTIFYFORMAT");
6754 case 0x007B: return wxT("WM_CONTEXTMENU");
6755 case 0x007C: return wxT("WM_STYLECHANGING");
6756 case 0x007D: return wxT("WM_STYLECHANGED");
6757 case 0x007E: return wxT("WM_DISPLAYCHANGE");
6758 case 0x007F: return wxT("WM_GETICON");
6759 case 0x0080: return wxT("WM_SETICON");
6761 case 0x0081: return wxT("WM_NCCREATE");
6762 case 0x0082: return wxT("WM_NCDESTROY");
6763 case 0x0083: return wxT("WM_NCCALCSIZE");
6764 case 0x0084: return wxT("WM_NCHITTEST");
6765 case 0x0085: return wxT("WM_NCPAINT");
6766 case 0x0086: return wxT("WM_NCACTIVATE");
6767 case 0x0087: return wxT("WM_GETDLGCODE");
6768 case 0x00A0: return wxT("WM_NCMOUSEMOVE");
6769 case 0x00A1: return wxT("WM_NCLBUTTONDOWN");
6770 case 0x00A2: return wxT("WM_NCLBUTTONUP");
6771 case 0x00A3: return wxT("WM_NCLBUTTONDBLCLK");
6772 case 0x00A4: return wxT("WM_NCRBUTTONDOWN");
6773 case 0x00A5: return wxT("WM_NCRBUTTONUP");
6774 case 0x00A6: return wxT("WM_NCRBUTTONDBLCLK");
6775 case 0x00A7: return wxT("WM_NCMBUTTONDOWN");
6776 case 0x00A8: return wxT("WM_NCMBUTTONUP");
6777 case 0x00A9: return wxT("WM_NCMBUTTONDBLCLK");
6779 case 0x00B0: return wxT("EM_GETSEL");
6780 case 0x00B1: return wxT("EM_SETSEL");
6781 case 0x00B2: return wxT("EM_GETRECT");
6782 case 0x00B3: return wxT("EM_SETRECT");
6783 case 0x00B4: return wxT("EM_SETRECTNP");
6784 case 0x00B5: return wxT("EM_SCROLL");
6785 case 0x00B6: return wxT("EM_LINESCROLL");
6786 case 0x00B7: return wxT("EM_SCROLLCARET");
6787 case 0x00B8: return wxT("EM_GETMODIFY");
6788 case 0x00B9: return wxT("EM_SETMODIFY");
6789 case 0x00BA: return wxT("EM_GETLINECOUNT");
6790 case 0x00BB: return wxT("EM_LINEINDEX");
6791 case 0x00BC: return wxT("EM_SETHANDLE");
6792 case 0x00BD: return wxT("EM_GETHANDLE");
6793 case 0x00BE: return wxT("EM_GETTHUMB");
6794 case 0x00C1: return wxT("EM_LINELENGTH");
6795 case 0x00C2: return wxT("EM_REPLACESEL");
6796 case 0x00C4: return wxT("EM_GETLINE");
6797 case 0x00C5: return wxT("EM_LIMITTEXT/EM_SETLIMITTEXT"); /* ;win40 Name change */
6798 case 0x00C6: return wxT("EM_CANUNDO");
6799 case 0x00C7: return wxT("EM_UNDO");
6800 case 0x00C8: return wxT("EM_FMTLINES");
6801 case 0x00C9: return wxT("EM_LINEFROMCHAR");
6802 case 0x00CB: return wxT("EM_SETTABSTOPS");
6803 case 0x00CC: return wxT("EM_SETPASSWORDCHAR");
6804 case 0x00CD: return wxT("EM_EMPTYUNDOBUFFER");
6805 case 0x00CE: return wxT("EM_GETFIRSTVISIBLELINE");
6806 case 0x00CF: return wxT("EM_SETREADONLY");
6807 case 0x00D0: return wxT("EM_SETWORDBREAKPROC");
6808 case 0x00D1: return wxT("EM_GETWORDBREAKPROC");
6809 case 0x00D2: return wxT("EM_GETPASSWORDCHAR");
6810 case 0x00D3: return wxT("EM_SETMARGINS");
6811 case 0x00D4: return wxT("EM_GETMARGINS");
6812 case 0x00D5: return wxT("EM_GETLIMITTEXT");
6813 case 0x00D6: return wxT("EM_POSFROMCHAR");
6814 case 0x00D7: return wxT("EM_CHARFROMPOS");
6815 case 0x00D8: return wxT("EM_SETIMESTATUS");
6816 case 0x00D9: return wxT("EM_GETIMESTATUS");
6818 case 0x0100: return wxT("WM_KEYDOWN");
6819 case 0x0101: return wxT("WM_KEYUP");
6820 case 0x0102: return wxT("WM_CHAR");
6821 case 0x0103: return wxT("WM_DEADCHAR");
6822 case 0x0104: return wxT("WM_SYSKEYDOWN");
6823 case 0x0105: return wxT("WM_SYSKEYUP");
6824 case 0x0106: return wxT("WM_SYSCHAR");
6825 case 0x0107: return wxT("WM_SYSDEADCHAR");
6826 case 0x0108: return wxT("WM_KEYLAST");
6828 case 0x010D: return wxT("WM_IME_STARTCOMPOSITION");
6829 case 0x010E: return wxT("WM_IME_ENDCOMPOSITION");
6830 case 0x010F: return wxT("WM_IME_COMPOSITION");
6832 case 0x0110: return wxT("WM_INITDIALOG");
6833 case 0x0111: return wxT("WM_COMMAND");
6834 case 0x0112: return wxT("WM_SYSCOMMAND");
6835 case 0x0113: return wxT("WM_TIMER");
6836 case 0x0114: return wxT("WM_HSCROLL");
6837 case 0x0115: return wxT("WM_VSCROLL");
6838 case 0x0116: return wxT("WM_INITMENU");
6839 case 0x0117: return wxT("WM_INITMENUPOPUP");
6840 case 0x011F: return wxT("WM_MENUSELECT");
6841 case 0x0120: return wxT("WM_MENUCHAR");
6842 case 0x0121: return wxT("WM_ENTERIDLE");
6844 case 0x0127: return wxT("WM_CHANGEUISTATE");
6845 case 0x0128: return wxT("WM_UPDATEUISTATE");
6846 case 0x0129: return wxT("WM_QUERYUISTATE");
6848 case 0x0132: return wxT("WM_CTLCOLORMSGBOX");
6849 case 0x0133: return wxT("WM_CTLCOLOREDIT");
6850 case 0x0134: return wxT("WM_CTLCOLORLISTBOX");
6851 case 0x0135: return wxT("WM_CTLCOLORBTN");
6852 case 0x0136: return wxT("WM_CTLCOLORDLG");
6853 case 0x0137: return wxT("WM_CTLCOLORSCROLLBAR");
6854 case 0x0138: return wxT("WM_CTLCOLORSTATIC");
6855 case 0x01E1: return wxT("MN_GETHMENU");
6857 case 0x0200: return wxT("WM_MOUSEMOVE");
6858 case 0x0201: return wxT("WM_LBUTTONDOWN");
6859 case 0x0202: return wxT("WM_LBUTTONUP");
6860 case 0x0203: return wxT("WM_LBUTTONDBLCLK");
6861 case 0x0204: return wxT("WM_RBUTTONDOWN");
6862 case 0x0205: return wxT("WM_RBUTTONUP");
6863 case 0x0206: return wxT("WM_RBUTTONDBLCLK");
6864 case 0x0207: return wxT("WM_MBUTTONDOWN");
6865 case 0x0208: return wxT("WM_MBUTTONUP");
6866 case 0x0209: return wxT("WM_MBUTTONDBLCLK");
6867 case 0x020A: return wxT("WM_MOUSEWHEEL");
6868 case 0x020B: return wxT("WM_XBUTTONDOWN");
6869 case 0x020C: return wxT("WM_XBUTTONUP");
6870 case 0x020D: return wxT("WM_XBUTTONDBLCLK");
6871 case 0x0210: return wxT("WM_PARENTNOTIFY");
6872 case 0x0211: return wxT("WM_ENTERMENULOOP");
6873 case 0x0212: return wxT("WM_EXITMENULOOP");
6875 case 0x0213: return wxT("WM_NEXTMENU");
6876 case 0x0214: return wxT("WM_SIZING");
6877 case 0x0215: return wxT("WM_CAPTURECHANGED");
6878 case 0x0216: return wxT("WM_MOVING");
6879 case 0x0218: return wxT("WM_POWERBROADCAST");
6880 case 0x0219: return wxT("WM_DEVICECHANGE");
6882 case 0x0220: return wxT("WM_MDICREATE");
6883 case 0x0221: return wxT("WM_MDIDESTROY");
6884 case 0x0222: return wxT("WM_MDIACTIVATE");
6885 case 0x0223: return wxT("WM_MDIRESTORE");
6886 case 0x0224: return wxT("WM_MDINEXT");
6887 case 0x0225: return wxT("WM_MDIMAXIMIZE");
6888 case 0x0226: return wxT("WM_MDITILE");
6889 case 0x0227: return wxT("WM_MDICASCADE");
6890 case 0x0228: return wxT("WM_MDIICONARRANGE");
6891 case 0x0229: return wxT("WM_MDIGETACTIVE");
6892 case 0x0230: return wxT("WM_MDISETMENU");
6893 case 0x0233: return wxT("WM_DROPFILES");
6895 case 0x0281: return wxT("WM_IME_SETCONTEXT");
6896 case 0x0282: return wxT("WM_IME_NOTIFY");
6897 case 0x0283: return wxT("WM_IME_CONTROL");
6898 case 0x0284: return wxT("WM_IME_COMPOSITIONFULL");
6899 case 0x0285: return wxT("WM_IME_SELECT");
6900 case 0x0286: return wxT("WM_IME_CHAR");
6901 case 0x0290: return wxT("WM_IME_KEYDOWN");
6902 case 0x0291: return wxT("WM_IME_KEYUP");
6904 case 0x02A0: return wxT("WM_NCMOUSEHOVER");
6905 case 0x02A1: return wxT("WM_MOUSEHOVER");
6906 case 0x02A2: return wxT("WM_NCMOUSELEAVE");
6907 case 0x02A3: return wxT("WM_MOUSELEAVE");
6909 case 0x0300: return wxT("WM_CUT");
6910 case 0x0301: return wxT("WM_COPY");
6911 case 0x0302: return wxT("WM_PASTE");
6912 case 0x0303: return wxT("WM_CLEAR");
6913 case 0x0304: return wxT("WM_UNDO");
6914 case 0x0305: return wxT("WM_RENDERFORMAT");
6915 case 0x0306: return wxT("WM_RENDERALLFORMATS");
6916 case 0x0307: return wxT("WM_DESTROYCLIPBOARD");
6917 case 0x0308: return wxT("WM_DRAWCLIPBOARD");
6918 case 0x0309: return wxT("WM_PAINTCLIPBOARD");
6919 case 0x030A: return wxT("WM_VSCROLLCLIPBOARD");
6920 case 0x030B: return wxT("WM_SIZECLIPBOARD");
6921 case 0x030C: return wxT("WM_ASKCBFORMATNAME");
6922 case 0x030D: return wxT("WM_CHANGECBCHAIN");
6923 case 0x030E: return wxT("WM_HSCROLLCLIPBOARD");
6924 case 0x030F: return wxT("WM_QUERYNEWPALETTE");
6925 case 0x0310: return wxT("WM_PALETTEISCHANGING");
6926 case 0x0311: return wxT("WM_PALETTECHANGED");
6927 case 0x0312: return wxT("WM_HOTKEY");
6929 case 0x0317: return wxT("WM_PRINT");
6930 case 0x0318: return wxT("WM_PRINTCLIENT");
6932 // common controls messages - although they're not strictly speaking
6933 // standard, it's nice to decode them nevertheless
6936 case 0x1000 + 0: return wxT("LVM_GETBKCOLOR");
6937 case 0x1000 + 1: return wxT("LVM_SETBKCOLOR");
6938 case 0x1000 + 2: return wxT("LVM_GETIMAGELIST");
6939 case 0x1000 + 3: return wxT("LVM_SETIMAGELIST");
6940 case 0x1000 + 4: return wxT("LVM_GETITEMCOUNT");
6941 case 0x1000 + 5: return wxT("LVM_GETITEMA");
6942 case 0x1000 + 75: return wxT("LVM_GETITEMW");
6943 case 0x1000 + 6: return wxT("LVM_SETITEMA");
6944 case 0x1000 + 76: return wxT("LVM_SETITEMW");
6945 case 0x1000 + 7: return wxT("LVM_INSERTITEMA");
6946 case 0x1000 + 77: return wxT("LVM_INSERTITEMW");
6947 case 0x1000 + 8: return wxT("LVM_DELETEITEM");
6948 case 0x1000 + 9: return wxT("LVM_DELETEALLITEMS");
6949 case 0x1000 + 10: return wxT("LVM_GETCALLBACKMASK");
6950 case 0x1000 + 11: return wxT("LVM_SETCALLBACKMASK");
6951 case 0x1000 + 12: return wxT("LVM_GETNEXTITEM");
6952 case 0x1000 + 13: return wxT("LVM_FINDITEMA");
6953 case 0x1000 + 83: return wxT("LVM_FINDITEMW");
6954 case 0x1000 + 14: return wxT("LVM_GETITEMRECT");
6955 case 0x1000 + 15: return wxT("LVM_SETITEMPOSITION");
6956 case 0x1000 + 16: return wxT("LVM_GETITEMPOSITION");
6957 case 0x1000 + 17: return wxT("LVM_GETSTRINGWIDTHA");
6958 case 0x1000 + 87: return wxT("LVM_GETSTRINGWIDTHW");
6959 case 0x1000 + 18: return wxT("LVM_HITTEST");
6960 case 0x1000 + 19: return wxT("LVM_ENSUREVISIBLE");
6961 case 0x1000 + 20: return wxT("LVM_SCROLL");
6962 case 0x1000 + 21: return wxT("LVM_REDRAWITEMS");
6963 case 0x1000 + 22: return wxT("LVM_ARRANGE");
6964 case 0x1000 + 23: return wxT("LVM_EDITLABELA");
6965 case 0x1000 + 118: return wxT("LVM_EDITLABELW");
6966 case 0x1000 + 24: return wxT("LVM_GETEDITCONTROL");
6967 case 0x1000 + 25: return wxT("LVM_GETCOLUMNA");
6968 case 0x1000 + 95: return wxT("LVM_GETCOLUMNW");
6969 case 0x1000 + 26: return wxT("LVM_SETCOLUMNA");
6970 case 0x1000 + 96: return wxT("LVM_SETCOLUMNW");
6971 case 0x1000 + 27: return wxT("LVM_INSERTCOLUMNA");
6972 case 0x1000 + 97: return wxT("LVM_INSERTCOLUMNW");
6973 case 0x1000 + 28: return wxT("LVM_DELETECOLUMN");
6974 case 0x1000 + 29: return wxT("LVM_GETCOLUMNWIDTH");
6975 case 0x1000 + 30: return wxT("LVM_SETCOLUMNWIDTH");
6976 case 0x1000 + 31: return wxT("LVM_GETHEADER");
6977 case 0x1000 + 33: return wxT("LVM_CREATEDRAGIMAGE");
6978 case 0x1000 + 34: return wxT("LVM_GETVIEWRECT");
6979 case 0x1000 + 35: return wxT("LVM_GETTEXTCOLOR");
6980 case 0x1000 + 36: return wxT("LVM_SETTEXTCOLOR");
6981 case 0x1000 + 37: return wxT("LVM_GETTEXTBKCOLOR");
6982 case 0x1000 + 38: return wxT("LVM_SETTEXTBKCOLOR");
6983 case 0x1000 + 39: return wxT("LVM_GETTOPINDEX");
6984 case 0x1000 + 40: return wxT("LVM_GETCOUNTPERPAGE");
6985 case 0x1000 + 41: return wxT("LVM_GETORIGIN");
6986 case 0x1000 + 42: return wxT("LVM_UPDATE");
6987 case 0x1000 + 43: return wxT("LVM_SETITEMSTATE");
6988 case 0x1000 + 44: return wxT("LVM_GETITEMSTATE");
6989 case 0x1000 + 45: return wxT("LVM_GETITEMTEXTA");
6990 case 0x1000 + 115: return wxT("LVM_GETITEMTEXTW");
6991 case 0x1000 + 46: return wxT("LVM_SETITEMTEXTA");
6992 case 0x1000 + 116: return wxT("LVM_SETITEMTEXTW");
6993 case 0x1000 + 47: return wxT("LVM_SETITEMCOUNT");
6994 case 0x1000 + 48: return wxT("LVM_SORTITEMS");
6995 case 0x1000 + 49: return wxT("LVM_SETITEMPOSITION32");
6996 case 0x1000 + 50: return wxT("LVM_GETSELECTEDCOUNT");
6997 case 0x1000 + 51: return wxT("LVM_GETITEMSPACING");
6998 case 0x1000 + 52: return wxT("LVM_GETISEARCHSTRINGA");
6999 case 0x1000 + 117: return wxT("LVM_GETISEARCHSTRINGW");
7000 case 0x1000 + 53: return wxT("LVM_SETICONSPACING");
7001 case 0x1000 + 54: return wxT("LVM_SETEXTENDEDLISTVIEWSTYLE");
7002 case 0x1000 + 55: return wxT("LVM_GETEXTENDEDLISTVIEWSTYLE");
7003 case 0x1000 + 56: return wxT("LVM_GETSUBITEMRECT");
7004 case 0x1000 + 57: return wxT("LVM_SUBITEMHITTEST");
7005 case 0x1000 + 58: return wxT("LVM_SETCOLUMNORDERARRAY");
7006 case 0x1000 + 59: return wxT("LVM_GETCOLUMNORDERARRAY");
7007 case 0x1000 + 60: return wxT("LVM_SETHOTITEM");
7008 case 0x1000 + 61: return wxT("LVM_GETHOTITEM");
7009 case 0x1000 + 62: return wxT("LVM_SETHOTCURSOR");
7010 case 0x1000 + 63: return wxT("LVM_GETHOTCURSOR");
7011 case 0x1000 + 64: return wxT("LVM_APPROXIMATEVIEWRECT");
7012 case 0x1000 + 65: return wxT("LVM_SETWORKAREA");
7015 case 0x1100 + 0: return wxT("TVM_INSERTITEMA");
7016 case 0x1100 + 50: return wxT("TVM_INSERTITEMW");
7017 case 0x1100 + 1: return wxT("TVM_DELETEITEM");
7018 case 0x1100 + 2: return wxT("TVM_EXPAND");
7019 case 0x1100 + 4: return wxT("TVM_GETITEMRECT");
7020 case 0x1100 + 5: return wxT("TVM_GETCOUNT");
7021 case 0x1100 + 6: return wxT("TVM_GETINDENT");
7022 case 0x1100 + 7: return wxT("TVM_SETINDENT");
7023 case 0x1100 + 8: return wxT("TVM_GETIMAGELIST");
7024 case 0x1100 + 9: return wxT("TVM_SETIMAGELIST");
7025 case 0x1100 + 10: return wxT("TVM_GETNEXTITEM");
7026 case 0x1100 + 11: return wxT("TVM_SELECTITEM");
7027 case 0x1100 + 12: return wxT("TVM_GETITEMA");
7028 case 0x1100 + 62: return wxT("TVM_GETITEMW");
7029 case 0x1100 + 13: return wxT("TVM_SETITEMA");
7030 case 0x1100 + 63: return wxT("TVM_SETITEMW");
7031 case 0x1100 + 14: return wxT("TVM_EDITLABELA");
7032 case 0x1100 + 65: return wxT("TVM_EDITLABELW");
7033 case 0x1100 + 15: return wxT("TVM_GETEDITCONTROL");
7034 case 0x1100 + 16: return wxT("TVM_GETVISIBLECOUNT");
7035 case 0x1100 + 17: return wxT("TVM_HITTEST");
7036 case 0x1100 + 18: return wxT("TVM_CREATEDRAGIMAGE");
7037 case 0x1100 + 19: return wxT("TVM_SORTCHILDREN");
7038 case 0x1100 + 20: return wxT("TVM_ENSUREVISIBLE");
7039 case 0x1100 + 21: return wxT("TVM_SORTCHILDRENCB");
7040 case 0x1100 + 22: return wxT("TVM_ENDEDITLABELNOW");
7041 case 0x1100 + 23: return wxT("TVM_GETISEARCHSTRINGA");
7042 case 0x1100 + 64: return wxT("TVM_GETISEARCHSTRINGW");
7043 case 0x1100 + 24: return wxT("TVM_SETTOOLTIPS");
7044 case 0x1100 + 25: return wxT("TVM_GETTOOLTIPS");
7047 case 0x1200 + 0: return wxT("HDM_GETITEMCOUNT");
7048 case 0x1200 + 1: return wxT("HDM_INSERTITEMA");
7049 case 0x1200 + 10: return wxT("HDM_INSERTITEMW");
7050 case 0x1200 + 2: return wxT("HDM_DELETEITEM");
7051 case 0x1200 + 3: return wxT("HDM_GETITEMA");
7052 case 0x1200 + 11: return wxT("HDM_GETITEMW");
7053 case 0x1200 + 4: return wxT("HDM_SETITEMA");
7054 case 0x1200 + 12: return wxT("HDM_SETITEMW");
7055 case 0x1200 + 5: return wxT("HDM_LAYOUT");
7056 case 0x1200 + 6: return wxT("HDM_HITTEST");
7057 case 0x1200 + 7: return wxT("HDM_GETITEMRECT");
7058 case 0x1200 + 8: return wxT("HDM_SETIMAGELIST");
7059 case 0x1200 + 9: return wxT("HDM_GETIMAGELIST");
7060 case 0x1200 + 15: return wxT("HDM_ORDERTOINDEX");
7061 case 0x1200 + 16: return wxT("HDM_CREATEDRAGIMAGE");
7062 case 0x1200 + 17: return wxT("HDM_GETORDERARRAY");
7063 case 0x1200 + 18: return wxT("HDM_SETORDERARRAY");
7064 case 0x1200 + 19: return wxT("HDM_SETHOTDIVIDER");
7067 case 0x1300 + 2: return wxT("TCM_GETIMAGELIST");
7068 case 0x1300 + 3: return wxT("TCM_SETIMAGELIST");
7069 case 0x1300 + 4: return wxT("TCM_GETITEMCOUNT");
7070 case 0x1300 + 5: return wxT("TCM_GETITEMA");
7071 case 0x1300 + 60: return wxT("TCM_GETITEMW");
7072 case 0x1300 + 6: return wxT("TCM_SETITEMA");
7073 case 0x1300 + 61: return wxT("TCM_SETITEMW");
7074 case 0x1300 + 7: return wxT("TCM_INSERTITEMA");
7075 case 0x1300 + 62: return wxT("TCM_INSERTITEMW");
7076 case 0x1300 + 8: return wxT("TCM_DELETEITEM");
7077 case 0x1300 + 9: return wxT("TCM_DELETEALLITEMS");
7078 case 0x1300 + 10: return wxT("TCM_GETITEMRECT");
7079 case 0x1300 + 11: return wxT("TCM_GETCURSEL");
7080 case 0x1300 + 12: return wxT("TCM_SETCURSEL");
7081 case 0x1300 + 13: return wxT("TCM_HITTEST");
7082 case 0x1300 + 14: return wxT("TCM_SETITEMEXTRA");
7083 case 0x1300 + 40: return wxT("TCM_ADJUSTRECT");
7084 case 0x1300 + 41: return wxT("TCM_SETITEMSIZE");
7085 case 0x1300 + 42: return wxT("TCM_REMOVEIMAGE");
7086 case 0x1300 + 43: return wxT("TCM_SETPADDING");
7087 case 0x1300 + 44: return wxT("TCM_GETROWCOUNT");
7088 case 0x1300 + 45: return wxT("TCM_GETTOOLTIPS");
7089 case 0x1300 + 46: return wxT("TCM_SETTOOLTIPS");
7090 case 0x1300 + 47: return wxT("TCM_GETCURFOCUS");
7091 case 0x1300 + 48: return wxT("TCM_SETCURFOCUS");
7092 case 0x1300 + 49: return wxT("TCM_SETMINTABWIDTH");
7093 case 0x1300 + 50: return wxT("TCM_DESELECTALL");
7096 case WM_USER
+1: return wxT("TB_ENABLEBUTTON");
7097 case WM_USER
+2: return wxT("TB_CHECKBUTTON");
7098 case WM_USER
+3: return wxT("TB_PRESSBUTTON");
7099 case WM_USER
+4: return wxT("TB_HIDEBUTTON");
7100 case WM_USER
+5: return wxT("TB_INDETERMINATE");
7101 case WM_USER
+9: return wxT("TB_ISBUTTONENABLED");
7102 case WM_USER
+10: return wxT("TB_ISBUTTONCHECKED");
7103 case WM_USER
+11: return wxT("TB_ISBUTTONPRESSED");
7104 case WM_USER
+12: return wxT("TB_ISBUTTONHIDDEN");
7105 case WM_USER
+13: return wxT("TB_ISBUTTONINDETERMINATE");
7106 case WM_USER
+17: return wxT("TB_SETSTATE");
7107 case WM_USER
+18: return wxT("TB_GETSTATE");
7108 case WM_USER
+19: return wxT("TB_ADDBITMAP");
7109 case WM_USER
+20: return wxT("TB_ADDBUTTONS");
7110 case WM_USER
+21: return wxT("TB_INSERTBUTTON");
7111 case WM_USER
+22: return wxT("TB_DELETEBUTTON");
7112 case WM_USER
+23: return wxT("TB_GETBUTTON");
7113 case WM_USER
+24: return wxT("TB_BUTTONCOUNT");
7114 case WM_USER
+25: return wxT("TB_COMMANDTOINDEX");
7115 case WM_USER
+26: return wxT("TB_SAVERESTOREA");
7116 case WM_USER
+76: return wxT("TB_SAVERESTOREW");
7117 case WM_USER
+27: return wxT("TB_CUSTOMIZE");
7118 case WM_USER
+28: return wxT("TB_ADDSTRINGA");
7119 case WM_USER
+77: return wxT("TB_ADDSTRINGW");
7120 case WM_USER
+29: return wxT("TB_GETITEMRECT");
7121 case WM_USER
+30: return wxT("TB_BUTTONSTRUCTSIZE");
7122 case WM_USER
+31: return wxT("TB_SETBUTTONSIZE");
7123 case WM_USER
+32: return wxT("TB_SETBITMAPSIZE");
7124 case WM_USER
+33: return wxT("TB_AUTOSIZE");
7125 case WM_USER
+35: return wxT("TB_GETTOOLTIPS");
7126 case WM_USER
+36: return wxT("TB_SETTOOLTIPS");
7127 case WM_USER
+37: return wxT("TB_SETPARENT");
7128 case WM_USER
+39: return wxT("TB_SETROWS");
7129 case WM_USER
+40: return wxT("TB_GETROWS");
7130 case WM_USER
+42: return wxT("TB_SETCMDID");
7131 case WM_USER
+43: return wxT("TB_CHANGEBITMAP");
7132 case WM_USER
+44: return wxT("TB_GETBITMAP");
7133 case WM_USER
+45: return wxT("TB_GETBUTTONTEXTA");
7134 case WM_USER
+75: return wxT("TB_GETBUTTONTEXTW");
7135 case WM_USER
+46: return wxT("TB_REPLACEBITMAP");
7136 case WM_USER
+47: return wxT("TB_SETINDENT");
7137 case WM_USER
+48: return wxT("TB_SETIMAGELIST");
7138 case WM_USER
+49: return wxT("TB_GETIMAGELIST");
7139 case WM_USER
+50: return wxT("TB_LOADIMAGES");
7140 case WM_USER
+51: return wxT("TB_GETRECT");
7141 case WM_USER
+52: return wxT("TB_SETHOTIMAGELIST");
7142 case WM_USER
+53: return wxT("TB_GETHOTIMAGELIST");
7143 case WM_USER
+54: return wxT("TB_SETDISABLEDIMAGELIST");
7144 case WM_USER
+55: return wxT("TB_GETDISABLEDIMAGELIST");
7145 case WM_USER
+56: return wxT("TB_SETSTYLE");
7146 case WM_USER
+57: return wxT("TB_GETSTYLE");
7147 case WM_USER
+58: return wxT("TB_GETBUTTONSIZE");
7148 case WM_USER
+59: return wxT("TB_SETBUTTONWIDTH");
7149 case WM_USER
+60: return wxT("TB_SETMAXTEXTROWS");
7150 case WM_USER
+61: return wxT("TB_GETTEXTROWS");
7151 case WM_USER
+41: return wxT("TB_GETBITMAPFLAGS");
7154 static wxString s_szBuf
;
7155 s_szBuf
.Printf(wxT("<unknown message = %d>"), message
);
7156 return s_szBuf
.c_str();
7159 #endif // wxDEBUG_LEVEL >= 2
7161 static TEXTMETRIC
wxGetTextMetrics(const wxWindowMSW
*win
)
7165 HWND hwnd
= GetHwndOf(win
);
7166 HDC hdc
= ::GetDC(hwnd
);
7168 #if !wxDIALOG_UNIT_COMPATIBILITY
7169 // and select the current font into it
7170 HFONT hfont
= GetHfontOf(win
->GetFont());
7173 hfont
= (HFONT
)::SelectObject(hdc
, hfont
);
7177 // finally retrieve the text metrics from it
7178 GetTextMetrics(hdc
, &tm
);
7180 #if !wxDIALOG_UNIT_COMPATIBILITY
7184 (void)::SelectObject(hdc
, hfont
);
7188 ::ReleaseDC(hwnd
, hdc
);
7193 // Find the wxWindow at the current mouse position, returning the mouse
7195 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
7197 pt
= wxGetMousePosition();
7198 return wxFindWindowAtPoint(pt
);
7201 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
7207 HWND hWnd
= ::WindowFromPoint(pt2
);
7209 return wxGetWindowFromHWND((WXHWND
)hWnd
);
7212 // Get the current mouse position.
7213 wxPoint
wxGetMousePosition()
7216 wxGetCursorPosMSW(&pt
);
7218 return wxPoint(pt
.x
, pt
.y
);
7223 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7224 static void WinCEUnregisterHotKey(int modifiers
, int id
)
7226 // Register hotkeys for the hardware buttons
7228 typedef BOOL (WINAPI
*UnregisterFunc1Proc
)(UINT
, UINT
);
7230 UnregisterFunc1Proc procUnregisterFunc
;
7231 hCoreDll
= LoadLibrary(wxT("coredll.dll"));
7234 procUnregisterFunc
= (UnregisterFunc1Proc
)GetProcAddress(hCoreDll
, wxT("UnregisterFunc1"));
7235 if (procUnregisterFunc
)
7236 procUnregisterFunc(modifiers
, id
);
7237 FreeLibrary(hCoreDll
);
7242 bool wxWindowMSW::RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
)
7244 UINT win_modifiers
=0;
7245 if ( modifiers
& wxMOD_ALT
)
7246 win_modifiers
|= MOD_ALT
;
7247 if ( modifiers
& wxMOD_SHIFT
)
7248 win_modifiers
|= MOD_SHIFT
;
7249 if ( modifiers
& wxMOD_CONTROL
)
7250 win_modifiers
|= MOD_CONTROL
;
7251 if ( modifiers
& wxMOD_WIN
)
7252 win_modifiers
|= MOD_WIN
;
7254 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7255 // Required for PPC and Smartphone hardware buttons
7256 if (keycode
>= WXK_SPECIAL1
&& keycode
<= WXK_SPECIAL20
)
7257 WinCEUnregisterHotKey(win_modifiers
, hotkeyId
);
7260 if ( !::RegisterHotKey(GetHwnd(), hotkeyId
, win_modifiers
, keycode
) )
7262 wxLogLastError(wxT("RegisterHotKey"));
7270 bool wxWindowMSW::UnregisterHotKey(int hotkeyId
)
7272 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7273 WinCEUnregisterHotKey(MOD_WIN
, hotkeyId
);
7276 if ( !::UnregisterHotKey(GetHwnd(), hotkeyId
) )
7278 wxLogLastError(wxT("UnregisterHotKey"));
7288 bool wxWindowMSW::HandleHotKey(WXWPARAM wParam
, WXLPARAM lParam
)
7290 int win_modifiers
= LOWORD(lParam
);
7292 wxKeyEvent
event(CreateKeyEvent(wxEVT_HOTKEY
, HIWORD(lParam
)));
7293 event
.SetId(wParam
);
7294 event
.m_shiftDown
= (win_modifiers
& MOD_SHIFT
) != 0;
7295 event
.m_controlDown
= (win_modifiers
& MOD_CONTROL
) != 0;
7296 event
.m_altDown
= (win_modifiers
& MOD_ALT
) != 0;
7297 event
.m_metaDown
= (win_modifiers
& MOD_WIN
) != 0;
7299 return HandleWindowEvent(event
);
7302 #endif // wxUSE_ACCEL
7304 #endif // wxUSE_HOTKEY
7306 // Not tested under WinCE
7309 // this class installs a message hook which really wakes up our idle processing
7310 // each time a WM_NULL is received (wxWakeUpIdle does this), even if we're
7311 // sitting inside a local modal loop (e.g. a menu is opened or scrollbar is
7312 // being dragged or even inside ::MessageBox()) and so don't control message
7313 // dispatching otherwise
7314 class wxIdleWakeUpModule
: public wxModule
7317 virtual bool OnInit()
7319 ms_hMsgHookProc
= ::SetWindowsHookEx
7322 &wxIdleWakeUpModule::MsgHookProc
,
7324 GetCurrentThreadId()
7327 if ( !ms_hMsgHookProc
)
7329 wxLogLastError(wxT("SetWindowsHookEx(WH_GETMESSAGE)"));
7337 virtual void OnExit()
7339 ::UnhookWindowsHookEx(wxIdleWakeUpModule::ms_hMsgHookProc
);
7342 static LRESULT CALLBACK
MsgHookProc(int nCode
, WPARAM wParam
, LPARAM lParam
)
7344 MSG
*msg
= (MSG
*)lParam
;
7346 // only process the message if it is actually going to be removed from
7347 // the message queue, this prevents that the same event from being
7348 // processed multiple times if now someone just called PeekMessage()
7349 if ( msg
->message
== WM_NULL
&& wParam
== PM_REMOVE
)
7351 wxTheApp
->ProcessPendingEvents();
7354 return CallNextHookEx(ms_hMsgHookProc
, nCode
, wParam
, lParam
);
7358 static HHOOK ms_hMsgHookProc
;
7360 DECLARE_DYNAMIC_CLASS(wxIdleWakeUpModule
)
7363 HHOOK
wxIdleWakeUpModule::ms_hMsgHookProc
= 0;
7365 IMPLEMENT_DYNAMIC_CLASS(wxIdleWakeUpModule
, wxModule
)
7367 #endif // __WXWINCE__
7372 static void wxAdjustZOrder(wxWindow
* parent
)
7374 if (parent
->IsKindOf(CLASSINFO(wxStaticBox
)))
7376 // Set the z-order correctly
7377 SetWindowPos((HWND
) parent
->GetHWND(), HWND_BOTTOM
, 0, 0, 0, 0, SWP_NOMOVE
|SWP_NOSIZE
);
7380 wxWindowList::compatibility_iterator current
= parent
->GetChildren().GetFirst();
7383 wxWindow
*childWin
= current
->GetData();
7384 wxAdjustZOrder(childWin
);
7385 current
= current
->GetNext();
7390 // We need to adjust the z-order of static boxes in WinCE, to
7391 // make 'contained' controls visible
7392 void wxWindowMSW::OnInitDialog( wxInitDialogEvent
& event
)
7395 wxAdjustZOrder(this);