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__ && !defined NEED_PBT_H
120 #if defined(__WXWINCE__)
121 #include "wx/msw/wince/missing.h"
124 #include <shellapi.h>
126 #include <aygshell.h>
131 #include "wx/msw/uxtheme.h"
132 #define EP_EDITTEXT 1
135 #define ETS_SELECTED 3
136 #define ETS_DISABLED 4
137 #define ETS_FOCUSED 5
138 #define ETS_READONLY 6
142 // define the constants used by AnimateWindow() if our SDK doesn't have them
144 #define AW_HOR_POSITIVE 0x00000001
145 #define AW_HOR_NEGATIVE 0x00000002
146 #define AW_VER_POSITIVE 0x00000004
147 #define AW_VER_NEGATIVE 0x00000008
148 #define AW_CENTER 0x00000010
149 #define AW_HIDE 0x00010000
150 #define AW_ACTIVATE 0x00020000
151 #define AW_SLIDE 0x00040000
152 #define AW_BLEND 0x00080000
155 #if defined(TME_LEAVE) && defined(WM_MOUSELEAVE) && wxUSE_DYNLIB_CLASS
156 #define HAVE_TRACKMOUSEEVENT
157 #endif // everything needed for TrackMouseEvent()
159 // set this to 1 to filter out duplicate mouse events, e.g. mouse move events
160 // when mouse position didnd't change
162 #define wxUSE_MOUSEEVENT_HACK 0
164 #define wxUSE_MOUSEEVENT_HACK 1
167 // not all compilers/platforms have X button related declarations (notably
168 // Windows CE doesn't, and probably some old SDKs don't neither)
169 #ifdef WM_XBUTTONDOWN
170 #define wxHAS_XBUTTON
173 #ifndef MAPVK_VK_TO_CHAR
174 #define MAPVK_VK_TO_CHAR 2
177 // ---------------------------------------------------------------------------
179 // ---------------------------------------------------------------------------
181 #if wxUSE_MENUS_NATIVE
182 extern wxMenu
*wxCurrentPopupMenu
;
186 // This is a hack used by the owner-drawn wxButton implementation to ensure
187 // that the brush used for erasing its background is correctly aligned with the
189 wxWindowMSW
*wxWindowBeingErased
= NULL
;
190 #endif // wxUSE_UXTHEME
195 // true if we had already created the std colour map, used by
196 // wxGetStdColourMap() and wxWindow::OnSysColourChanged() (FIXME-MT)
197 bool gs_hasStdCmap
= false;
199 // last mouse event information we need to filter out the duplicates
200 #if wxUSE_MOUSEEVENT_HACK
201 struct MouseEventInfoDummy
203 // mouse position (in screen coordinates)
206 // last mouse event type
209 #endif // wxUSE_MOUSEEVENT_HACK
211 // hash containing the registered handlers for the custom messages
212 WX_DECLARE_HASH_MAP(int, wxWindow::MSWMessageHandler
,
213 wxIntegerHash
, wxIntegerEqual
,
216 MSWMessageHandlers gs_messageHandlers
;
218 // hash containing all our windows, it uses HWND keys and wxWindow* values
219 WX_DECLARE_HASH_MAP(HWND
, wxWindow
*,
220 wxPointerHash
, wxPointerEqual
,
223 WindowHandles gs_windowHandles
;
225 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
227 // temporary override for WM_ERASEBKGND processing: we don't store this in
228 // wxWindow itself as we don't need it during most of the time so don't
229 // increase the size of all window objects unnecessarily
230 WX_DECLARE_HASH_MAP(wxWindow
*, wxWindow
*,
231 wxPointerHash
, wxPointerEqual
,
234 EraseBgHooks gs_eraseBgHooks
;
236 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
238 // If this variable is strictly positive, EVT_CHAR_HOOK is not generated for
239 // Escape key presses as it can't be intercepted because it's needed by some
240 // currently shown window, e.g. IME entry.
242 // This is currently global as we allow using UI from the main thread only
243 // anyhow but could be replaced with a thread-specific value in the future if
245 int gs_modalEntryWindowCount
= 0;
247 } // anonymous namespace
249 // ---------------------------------------------------------------------------
251 // ---------------------------------------------------------------------------
253 // the window proc for all our windows
254 LRESULT WXDLLEXPORT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
,
255 WPARAM wParam
, LPARAM lParam
);
258 #if wxDEBUG_LEVEL >= 2
259 const wxChar
*wxGetMessageName(int message
);
260 #endif // wxDEBUG_LEVEL >= 2
262 void wxRemoveHandleAssociation(wxWindowMSW
*win
);
263 extern void wxAssociateWinWithHandle(HWND hWnd
, wxWindowMSW
*win
);
265 // get the text metrics for the current font
266 static TEXTMETRIC
wxGetTextMetrics(const wxWindowMSW
*win
);
269 // find the window for the mouse event at the specified position
270 static wxWindowMSW
*FindWindowForMouseEvent(wxWindowMSW
*win
, int *x
, int *y
);
271 #endif // __WXWINCE__
273 // wrapper around BringWindowToTop() API
274 static inline void wxBringWindowToTop(HWND hwnd
)
276 #ifdef __WXMICROWIN__
277 // It seems that MicroWindows brings the _parent_ of the window to the top,
278 // which can be the wrong one.
280 // activate (set focus to) specified window
284 // raise top level parent to top of z order
285 if (!::SetWindowPos(hwnd
, HWND_TOP
, 0, 0, 0, 0, SWP_NOMOVE
| SWP_NOSIZE
))
287 wxLogLastError(wxT("SetWindowPos"));
293 // ensure that all our parent windows have WS_EX_CONTROLPARENT style
294 static void EnsureParentHasControlParentStyle(wxWindow
*parent
)
297 If we have WS_EX_CONTROLPARENT flag we absolutely *must* set it for our
298 parent as well as otherwise several Win32 functions using
299 GetNextDlgTabItem() to iterate over all controls such as
300 IsDialogMessage() or DefDlgProc() would enter an infinite loop: indeed,
301 all of them iterate over all the controls starting from the currently
302 focused one and stop iterating when they get back to the focus but
303 unless all parents have WS_EX_CONTROLPARENT bit set, they would never
304 get back to the initial (focused) window: as we do have this style,
305 GetNextDlgTabItem() will leave this window and continue in its parent,
306 but if the parent doesn't have it, it wouldn't recurse inside it later
307 on and so wouldn't have a chance of getting back to this window either.
309 while ( parent
&& !parent
->IsTopLevel() )
311 LONG exStyle
= wxGetWindowExStyle(parent
);
312 if ( !(exStyle
& WS_EX_CONTROLPARENT
) )
314 // force the parent to have this style
315 wxSetWindowExStyle(parent
, exStyle
| WS_EX_CONTROLPARENT
);
318 parent
= parent
->GetParent();
322 #endif // !__WXWINCE__
324 // GetCursorPos can return an error, so use this function
326 // Error originally observed with WinCE, but later using Remote Desktop
328 void wxGetCursorPosMSW(POINT
* pt
)
330 if (!GetCursorPos(pt
))
333 wxLogLastError(wxT("GetCursorPos"));
335 DWORD pos
= GetMessagePos();
336 // the coordinates may be negative in multi-monitor systems
337 pt
->x
= GET_X_LPARAM(pos
);
338 pt
->y
= GET_Y_LPARAM(pos
);
342 // ---------------------------------------------------------------------------
344 // ---------------------------------------------------------------------------
346 // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
348 #ifdef __WXUNIVERSAL__
349 IMPLEMENT_ABSTRACT_CLASS(wxWindowMSW
, wxWindowBase
)
350 #endif // __WXUNIVERSAL__
352 BEGIN_EVENT_TABLE(wxWindowMSW
, wxWindowBase
)
353 EVT_SYS_COLOUR_CHANGED(wxWindowMSW::OnSysColourChanged
)
355 EVT_INIT_DIALOG(wxWindowMSW::OnInitDialog
)
359 // ===========================================================================
361 // ===========================================================================
363 // ---------------------------------------------------------------------------
364 // wxWindow utility functions
365 // ---------------------------------------------------------------------------
367 // Find an item given the MS Windows id
368 wxWindow
*wxWindowMSW::FindItem(long id
) const
371 wxControl
*item
= wxDynamicCastThis(wxControl
);
374 // is it us or one of our "internal" children?
375 if ( item
->GetId() == id
376 #ifndef __WXUNIVERSAL__
377 || (item
->GetSubcontrols().Index(id
) != wxNOT_FOUND
)
378 #endif // __WXUNIVERSAL__
384 #endif // wxUSE_CONTROLS
386 wxWindowList::compatibility_iterator current
= GetChildren().GetFirst();
389 wxWindow
*childWin
= current
->GetData();
391 wxWindow
*wnd
= childWin
->FindItem(id
);
395 current
= current
->GetNext();
401 // Find an item given the MS Windows handle
402 wxWindow
*wxWindowMSW::FindItemByHWND(WXHWND hWnd
, bool controlOnly
) const
404 wxWindowList::compatibility_iterator current
= GetChildren().GetFirst();
407 wxWindow
*parent
= current
->GetData();
409 // Do a recursive search.
410 wxWindow
*wnd
= parent
->FindItemByHWND(hWnd
);
416 || parent
->IsKindOf(CLASSINFO(wxControl
))
417 #endif // wxUSE_CONTROLS
420 wxWindow
*item
= current
->GetData();
421 if ( item
->GetHWND() == hWnd
)
425 if ( item
->ContainsHWND(hWnd
) )
430 current
= current
->GetNext();
435 // Default command handler
436 bool wxWindowMSW::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD
WXUNUSED(id
))
441 // ----------------------------------------------------------------------------
442 // constructors and such
443 // ----------------------------------------------------------------------------
445 void wxWindowMSW::Init()
449 m_mouseInWindow
= false;
450 m_lastKeydownProcessed
= false;
457 #if wxUSE_DEFERRED_SIZING
459 m_pendingPosition
= wxDefaultPosition
;
460 m_pendingSize
= wxDefaultSize
;
461 #endif // wxUSE_DEFERRED_SIZING
464 m_contextMenuEnabled
= false;
469 wxWindowMSW::~wxWindowMSW()
473 #ifndef __WXUNIVERSAL__
474 // VS: make sure there's no wxFrame with last focus set to us:
475 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
477 wxTopLevelWindow
*frame
= wxDynamicCast(win
, wxTopLevelWindow
);
480 if ( frame
->GetLastFocus() == this )
482 frame
->SetLastFocus(NULL
);
485 // apparently sometimes we can end up with our grand parent
486 // pointing to us as well: this is surely a bug in focus handling
487 // code but it's not clear where it happens so for now just try to
488 // fix it here by not breaking out of the loop
492 #endif // __WXUNIVERSAL__
494 // VS: destroy children first and _then_ detach *this from its parent.
495 // If we did it the other way around, children wouldn't be able
496 // find their parent frame (see above).
501 // VZ: test temp removed to understand what really happens here
502 //if (::IsWindow(GetHwnd()))
504 if ( !::DestroyWindow(GetHwnd()) )
506 wxLogLastError(wxT("DestroyWindow"));
510 // remove hWnd <-> wxWindow association
511 wxRemoveHandleAssociation(this);
517 const wxChar
*wxWindowMSW::MSWGetRegisteredClassName()
519 return wxApp::GetRegisteredClassName(wxT("wxWindow"), COLOR_BTNFACE
);
522 // real construction (Init() must have been called before!)
523 bool wxWindowMSW::Create(wxWindow
*parent
,
528 const wxString
& name
)
530 wxCHECK_MSG( parent
, false, wxT("can't create wxWindow without parent") );
532 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
535 parent
->AddChild(this);
538 DWORD msflags
= MSWGetCreateWindowFlags(&exstyle
);
540 #ifdef __WXUNIVERSAL__
541 // no borders, we draw them ourselves
542 exstyle
&= ~(WS_EX_DLGMODALFRAME
|
546 msflags
&= ~WS_BORDER
;
547 #endif // wxUniversal
551 msflags
|= WS_VISIBLE
;
554 if ( !MSWCreate(MSWGetRegisteredClassName(),
555 NULL
, pos
, size
, msflags
, exstyle
) )
563 // ---------------------------------------------------------------------------
565 // ---------------------------------------------------------------------------
567 void wxWindowMSW::SetFocus()
569 HWND hWnd
= GetHwnd();
570 wxCHECK_RET( hWnd
, wxT("can't set focus to invalid window") );
572 #if !defined(__WXWINCE__)
576 if ( !::SetFocus(hWnd
) )
578 // was there really an error?
579 DWORD dwRes
= ::GetLastError();
582 HWND hwndFocus
= ::GetFocus();
583 if ( hwndFocus
!= hWnd
)
585 wxLogApiError(wxT("SetFocus"), dwRes
);
591 void wxWindowMSW::SetFocusFromKbd()
593 // when the focus is given to the control with DLGC_HASSETSEL style from
594 // keyboard its contents should be entirely selected: this is what
595 // ::IsDialogMessage() does and so we should do it as well to provide the
596 // same LNF as the native programs
597 if ( ::SendMessage(GetHwnd(), WM_GETDLGCODE
, 0, 0) & DLGC_HASSETSEL
)
599 ::SendMessage(GetHwnd(), EM_SETSEL
, 0, -1);
602 // do this after (maybe) setting the selection as like this when
603 // wxEVT_SET_FOCUS handler is called, the selection would have been already
604 // set correctly -- this may be important
605 wxWindowBase::SetFocusFromKbd();
608 // Get the window with the focus
609 wxWindow
*wxWindowBase::DoFindFocus()
611 HWND hWnd
= ::GetFocus();
614 return wxGetWindowFromHWND((WXHWND
)hWnd
);
620 void wxWindowMSW::DoEnable( bool enable
)
622 MSWEnableHWND(GetHwnd(), enable
);
625 bool wxWindowMSW::MSWEnableHWND(WXHWND hWnd
, bool enable
)
630 // If disabling focused control, we move focus to the next one, as if the
631 // user pressed Tab. That's because we can't keep focus on a disabled
632 // control, Tab-navigation would stop working then.
633 if ( !enable
&& ::GetFocus() == hWnd
)
636 return ::EnableWindow(hWnd
, (BOOL
)enable
) != 0;
639 bool wxWindowMSW::Show(bool show
)
641 if ( !wxWindowBase::Show(show
) )
644 HWND hWnd
= GetHwnd();
646 // we could be called before the underlying window is created (this is
647 // actually useful to prevent it from being initially shown), e.g.
649 // wxFoo *foo = new wxFoo;
651 // foo->Create(parent, ...);
653 // should work without errors
656 ::ShowWindow(hWnd
, show
? SW_SHOW
: SW_HIDE
);
661 // DoFreeze/DoThaw don't do anything if the window is not shown, so
662 // we have to call them from here now
673 wxWindowMSW::MSWShowWithEffect(bool show
,
677 if ( effect
== wxSHOW_EFFECT_NONE
)
680 if ( !wxWindowBase::Show(show
) )
683 typedef BOOL (WINAPI
*AnimateWindow_t
)(HWND
, DWORD
, DWORD
);
685 static AnimateWindow_t s_pfnAnimateWindow
= NULL
;
686 static bool s_initDone
= false;
689 wxDynamicLibrary
dllUser32(wxT("user32.dll"), wxDL_VERBATIM
| wxDL_QUIET
);
690 wxDL_INIT_FUNC(s_pfn
, AnimateWindow
, dllUser32
);
694 // notice that it's ok to unload user32.dll here as it won't be really
695 // unloaded, being still in use because we link to it statically too
698 if ( !s_pfnAnimateWindow
)
701 // Show() has a side effect of sending a WM_SIZE to the window, which helps
702 // ensuring that it's laid out correctly, but AnimateWindow() doesn't do
703 // this so send the event ourselves
706 // prepare to use AnimateWindow()
709 timeout
= 200; // this is the default animation timeout, per MSDN
711 DWORD dwFlags
= show
? 0 : AW_HIDE
;
715 case wxSHOW_EFFECT_ROLL_TO_LEFT
:
716 dwFlags
|= AW_HOR_NEGATIVE
;
719 case wxSHOW_EFFECT_ROLL_TO_RIGHT
:
720 dwFlags
|= AW_HOR_POSITIVE
;
723 case wxSHOW_EFFECT_ROLL_TO_TOP
:
724 dwFlags
|= AW_VER_NEGATIVE
;
727 case wxSHOW_EFFECT_ROLL_TO_BOTTOM
:
728 dwFlags
|= AW_VER_POSITIVE
;
731 case wxSHOW_EFFECT_SLIDE_TO_LEFT
:
732 dwFlags
|= AW_SLIDE
| AW_HOR_NEGATIVE
;
735 case wxSHOW_EFFECT_SLIDE_TO_RIGHT
:
736 dwFlags
|= AW_SLIDE
| AW_HOR_POSITIVE
;
739 case wxSHOW_EFFECT_SLIDE_TO_TOP
:
740 dwFlags
|= AW_SLIDE
| AW_VER_NEGATIVE
;
743 case wxSHOW_EFFECT_SLIDE_TO_BOTTOM
:
744 dwFlags
|= AW_SLIDE
| AW_VER_POSITIVE
;
747 case wxSHOW_EFFECT_BLEND
:
751 case wxSHOW_EFFECT_EXPAND
:
752 dwFlags
|= AW_CENTER
;
756 case wxSHOW_EFFECT_MAX
:
757 wxFAIL_MSG( wxT("invalid window show effect") );
761 wxFAIL_MSG( wxT("unknown window show effect") );
765 if ( !(*s_pfnAnimateWindow
)(GetHwnd(), timeout
, dwFlags
) )
767 wxLogLastError(wxT("AnimateWindow"));
775 // Raise the window to the top of the Z order
776 void wxWindowMSW::Raise()
778 wxBringWindowToTop(GetHwnd());
781 // Lower the window to the bottom of the Z order
782 void wxWindowMSW::Lower()
784 ::SetWindowPos(GetHwnd(), HWND_BOTTOM
, 0, 0, 0, 0,
785 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
788 void wxWindowMSW::DoCaptureMouse()
790 HWND hWnd
= GetHwnd();
797 void wxWindowMSW::DoReleaseMouse()
799 if ( !::ReleaseCapture() )
801 wxLogLastError(wxT("ReleaseCapture"));
805 /* static */ wxWindow
*wxWindowBase::GetCapture()
807 HWND hwnd
= ::GetCapture();
808 return hwnd
? wxFindWinFromHandle(hwnd
) : NULL
;
811 bool wxWindowMSW::SetFont(const wxFont
& font
)
813 if ( !wxWindowBase::SetFont(font
) )
819 HWND hWnd
= GetHwnd();
822 // note the use of GetFont() instead of m_font: our own font could have
823 // just been reset and in this case we need to change the font used by
824 // the native window to the default for this class, i.e. exactly what
826 WXHANDLE hFont
= GetFont().GetResourceHandle();
828 wxASSERT_MSG( hFont
, wxT("should have valid font") );
830 ::SendMessage(hWnd
, WM_SETFONT
, (WPARAM
)hFont
, MAKELPARAM(TRUE
, 0));
836 bool wxWindowMSW::SetCursor(const wxCursor
& cursor
)
838 if ( !wxWindowBase::SetCursor(cursor
) )
844 // don't "overwrite" busy cursor
848 if ( m_cursor
.IsOk() )
850 // normally we should change the cursor only if it's over this window
851 // but we should do it always if we capture the mouse currently
852 bool set
= HasCapture();
855 HWND hWnd
= GetHwnd();
858 ::wxGetCursorPosMSW(&point
);
860 RECT rect
= wxGetWindowRect(hWnd
);
862 set
= ::PtInRect(&rect
, point
) != 0;
867 ::SetCursor(GetHcursorOf(m_cursor
));
869 //else: will be set later when the mouse enters this window
871 else // Invalid cursor: this means reset to the default one.
873 // To revert to the correct cursor we need to find the window currently
874 // under the cursor and ask it to set its cursor itself as only it
877 wxGetCursorPosMSW(&pt
);
879 const wxWindowMSW
* win
= wxFindWindowAtPoint(wxPoint(pt
.x
, pt
.y
));
883 ::SendMessage(GetHwndOf(win
), WM_SETCURSOR
,
884 (WPARAM
)GetHwndOf(win
),
885 MAKELPARAM(HTCLIENT
, WM_MOUSEMOVE
));
891 void wxWindowMSW::WarpPointer(int x
, int y
)
893 ClientToScreen(&x
, &y
);
895 if ( !::SetCursorPos(x
, y
) )
897 wxLogLastError(wxT("SetCursorPos"));
901 void wxWindowMSW::MSWUpdateUIState(int action
, int state
)
903 // WM_CHANGEUISTATE only appeared in Windows 2000 so it can do us no good
904 // to use it on older systems -- and could possibly do some harm
905 static int s_needToUpdate
= -1;
906 if ( s_needToUpdate
== -1 )
909 s_needToUpdate
= wxGetOsVersion(&verMaj
, &verMin
) == wxOS_WINDOWS_NT
&&
913 if ( s_needToUpdate
)
915 // we send WM_CHANGEUISTATE so if nothing needs changing then the system
916 // won't send WM_UPDATEUISTATE
917 ::SendMessage(GetHwnd(), WM_CHANGEUISTATE
, MAKEWPARAM(action
, state
), 0);
921 // ---------------------------------------------------------------------------
923 // ---------------------------------------------------------------------------
928 inline int GetScrollPosition(HWND hWnd
, int wOrient
)
930 #ifdef __WXMICROWIN__
931 return ::GetScrollPosWX(hWnd
, wOrient
);
933 WinStruct
<SCROLLINFO
> scrollInfo
;
934 scrollInfo
.cbSize
= sizeof(SCROLLINFO
);
935 scrollInfo
.fMask
= SIF_POS
;
936 ::GetScrollInfo(hWnd
, wOrient
, &scrollInfo
);
938 return scrollInfo
.nPos
;
943 inline UINT
WXOrientToSB(int orient
)
945 return orient
== wxHORIZONTAL
? SB_HORZ
: SB_VERT
;
948 } // anonymous namespace
950 int wxWindowMSW::GetScrollPos(int orient
) const
952 HWND hWnd
= GetHwnd();
953 wxCHECK_MSG( hWnd
, 0, wxT("no HWND in GetScrollPos") );
955 return GetScrollPosition(hWnd
, WXOrientToSB(orient
));
958 // This now returns the whole range, not just the number
959 // of positions that we can scroll.
960 int wxWindowMSW::GetScrollRange(int orient
) const
963 HWND hWnd
= GetHwnd();
966 WinStruct
<SCROLLINFO
> scrollInfo
;
967 scrollInfo
.fMask
= SIF_RANGE
;
968 if ( !::GetScrollInfo(hWnd
, WXOrientToSB(orient
), &scrollInfo
) )
970 // Most of the time this is not really an error, since the return
971 // value can also be zero when there is no scrollbar yet.
972 // wxLogLastError(wxT("GetScrollInfo"));
974 maxPos
= scrollInfo
.nMax
;
976 // undo "range - 1" done in SetScrollbar()
980 int wxWindowMSW::GetScrollThumb(int orient
) const
982 return orient
== wxHORIZONTAL
? m_xThumbSize
: m_yThumbSize
;
985 void wxWindowMSW::SetScrollPos(int orient
, int pos
, bool refresh
)
987 HWND hWnd
= GetHwnd();
988 wxCHECK_RET( hWnd
, wxT("SetScrollPos: no HWND") );
990 WinStruct
<SCROLLINFO
> info
;
994 info
.fMask
= SIF_POS
;
995 if ( HasFlag(wxALWAYS_SHOW_SB
) )
997 // disable scrollbar instead of removing it then
998 info
.fMask
|= SIF_DISABLENOSCROLL
;
1001 ::SetScrollInfo(hWnd
, WXOrientToSB(orient
), &info
, refresh
);
1004 // New function that will replace some of the above.
1005 void wxWindowMSW::SetScrollbar(int orient
,
1011 // We have to set the variables here to make them valid in events
1012 // triggered by ::SetScrollInfo()
1013 *(orient
== wxHORIZONTAL
? &m_xThumbSize
: &m_yThumbSize
) = pageSize
;
1015 HWND hwnd
= GetHwnd();
1019 WinStruct
<SCROLLINFO
> info
;
1022 info
.nPage
= pageSize
;
1023 info
.nMin
= 0; // range is nMax - nMin + 1
1024 info
.nMax
= range
- 1; // as both nMax and nMax are inclusive
1027 // We normally also reenable scrollbar in case it had been previously
1028 // disabled by specifying SIF_DISABLENOSCROLL below but we should only
1029 // do this if it has valid range, otherwise it would be enabled but not
1031 if ( range
>= pageSize
)
1033 ::EnableScrollBar(hwnd
, WXOrientToSB(orient
), ESB_ENABLE_BOTH
);
1036 //else: leave all the fields to be 0
1038 info
.fMask
= SIF_RANGE
| SIF_PAGE
| SIF_POS
;
1039 if ( HasFlag(wxALWAYS_SHOW_SB
) || range
== -1 )
1041 // disable scrollbar instead of removing it then
1042 info
.fMask
|= SIF_DISABLENOSCROLL
;
1045 ::SetScrollInfo(hwnd
, WXOrientToSB(orient
), &info
, refresh
);
1048 void wxWindowMSW::ScrollWindow(int dx
, int dy
, const wxRect
*prect
)
1054 wxCopyRectToRECT(*prect
, rect
);
1064 // FIXME: is this the exact equivalent of the line below?
1065 ::ScrollWindowEx(GetHwnd(), dx
, dy
, pr
, pr
, 0, 0, SW_SCROLLCHILDREN
|SW_ERASE
|SW_INVALIDATE
);
1067 ::ScrollWindow(GetHwnd(), dx
, dy
, pr
, pr
);
1071 static bool ScrollVertically(HWND hwnd
, int kind
, int count
)
1073 int posStart
= GetScrollPosition(hwnd
, SB_VERT
);
1076 for ( int n
= 0; n
< count
; n
++ )
1078 ::SendMessage(hwnd
, WM_VSCROLL
, kind
, 0);
1080 int posNew
= GetScrollPosition(hwnd
, SB_VERT
);
1081 if ( posNew
== pos
)
1083 // don't bother to continue, we're already at top/bottom
1090 return pos
!= posStart
;
1093 bool wxWindowMSW::ScrollLines(int lines
)
1095 bool down
= lines
> 0;
1097 return ScrollVertically(GetHwnd(),
1098 down
? SB_LINEDOWN
: SB_LINEUP
,
1099 down
? lines
: -lines
);
1102 bool wxWindowMSW::ScrollPages(int pages
)
1104 bool down
= pages
> 0;
1106 return ScrollVertically(GetHwnd(),
1107 down
? SB_PAGEDOWN
: SB_PAGEUP
,
1108 down
? pages
: -pages
);
1111 // ----------------------------------------------------------------------------
1113 // ----------------------------------------------------------------------------
1115 void wxWindowMSW::SetLayoutDirection(wxLayoutDirection dir
)
1120 wxCHECK_RET( GetHwnd(),
1121 wxT("layout direction must be set after window creation") );
1123 LONG styleOld
= wxGetWindowExStyle(this);
1125 LONG styleNew
= styleOld
;
1128 case wxLayout_LeftToRight
:
1129 styleNew
&= ~WS_EX_LAYOUTRTL
;
1132 case wxLayout_RightToLeft
:
1133 styleNew
|= WS_EX_LAYOUTRTL
;
1137 wxFAIL_MSG(wxT("unsupported layout direction"));
1141 if ( styleNew
!= styleOld
)
1143 wxSetWindowExStyle(this, styleNew
);
1148 wxLayoutDirection
wxWindowMSW::GetLayoutDirection() const
1151 return wxLayout_Default
;
1153 wxCHECK_MSG( GetHwnd(), wxLayout_Default
, wxT("invalid window") );
1155 return wxHasWindowExStyle(this, WS_EX_LAYOUTRTL
) ? wxLayout_RightToLeft
1156 : wxLayout_LeftToRight
;
1161 wxWindowMSW::AdjustForLayoutDirection(wxCoord x
,
1162 wxCoord
WXUNUSED(width
),
1163 wxCoord
WXUNUSED(widthTotal
)) const
1165 // Win32 mirrors the coordinates of RTL windows automatically, so don't
1166 // redo it ourselves
1170 // ---------------------------------------------------------------------------
1172 // ---------------------------------------------------------------------------
1174 void wxWindowMSW::SubclassWin(WXHWND hWnd
)
1176 wxASSERT_MSG( !m_oldWndProc
, wxT("subclassing window twice?") );
1178 HWND hwnd
= (HWND
)hWnd
;
1179 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in SubclassWin") );
1183 wxAssociateWinWithHandle(hwnd
, this);
1185 m_oldWndProc
= (WXFARPROC
)wxGetWindowProc((HWND
)hWnd
);
1187 // we don't need to subclass the window of our own class (in the Windows
1188 // sense of the word)
1189 if ( !wxCheckWindowWndProc(hWnd
, (WXFARPROC
)wxWndProc
) )
1191 wxSetWindowProc(hwnd
, wxWndProc
);
1195 // don't bother restoring it either: this also makes it easy to
1196 // implement IsOfStandardClass() method which returns true for the
1197 // standard controls and false for the wxWidgets own windows as it can
1198 // simply check m_oldWndProc
1199 m_oldWndProc
= NULL
;
1202 // we're officially created now, send the event
1203 wxWindowCreateEvent
event((wxWindow
*)this);
1204 (void)HandleWindowEvent(event
);
1207 void wxWindowMSW::UnsubclassWin()
1209 wxRemoveHandleAssociation(this);
1211 // Restore old Window proc
1212 HWND hwnd
= GetHwnd();
1217 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in UnsubclassWin") );
1221 if ( !wxCheckWindowWndProc((WXHWND
)hwnd
, m_oldWndProc
) )
1223 wxSetWindowProc(hwnd
, (WNDPROC
)m_oldWndProc
);
1226 m_oldWndProc
= NULL
;
1231 void wxWindowMSW::AssociateHandle(WXWidget handle
)
1235 if ( !::DestroyWindow(GetHwnd()) )
1237 wxLogLastError(wxT("DestroyWindow"));
1241 WXHWND wxhwnd
= (WXHWND
)handle
;
1243 // this also calls SetHWND(wxhwnd)
1244 SubclassWin(wxhwnd
);
1247 void wxWindowMSW::DissociateHandle()
1249 // this also calls SetHWND(0) for us
1254 bool wxCheckWindowWndProc(WXHWND hWnd
,
1255 WXFARPROC
WXUNUSED(wndProc
))
1257 const wxString
str(wxGetWindowClass(hWnd
));
1259 // TODO: get rid of wxTLWHiddenParent special case (currently it's not
1260 // registered by wxApp but using ad hoc code in msw/toplevel.cpp);
1261 // there is also a hidden window class used by sockets &c
1262 return wxApp::IsRegisteredClassName(str
) || str
== wxT("wxTLWHiddenParent");
1265 // ----------------------------------------------------------------------------
1267 // ----------------------------------------------------------------------------
1269 void wxWindowMSW::SetWindowStyleFlag(long flags
)
1271 long flagsOld
= GetWindowStyleFlag();
1272 if ( flags
== flagsOld
)
1275 // update the internal variable
1276 wxWindowBase::SetWindowStyleFlag(flags
);
1278 // and the real window flags
1279 MSWUpdateStyle(flagsOld
, GetExtraStyle());
1282 void wxWindowMSW::SetExtraStyle(long exflags
)
1284 long exflagsOld
= GetExtraStyle();
1285 if ( exflags
== exflagsOld
)
1288 // update the internal variable
1289 wxWindowBase::SetExtraStyle(exflags
);
1291 // and the real window flags
1292 MSWUpdateStyle(GetWindowStyleFlag(), exflagsOld
);
1295 void wxWindowMSW::MSWUpdateStyle(long flagsOld
, long exflagsOld
)
1297 // now update the Windows style as well if needed - and if the window had
1298 // been already created
1302 // we may need to call SetWindowPos() when we change some styles
1303 bool callSWP
= false;
1306 long style
= MSWGetStyle(GetWindowStyleFlag(), &exstyle
);
1308 // this is quite a horrible hack but we need it because MSWGetStyle()
1309 // doesn't take exflags as parameter but uses GetExtraStyle() internally
1310 // and so we have to modify the window exflags temporarily to get the
1311 // correct exstyleOld
1312 long exflagsNew
= GetExtraStyle();
1313 wxWindowBase::SetExtraStyle(exflagsOld
);
1316 long styleOld
= MSWGetStyle(flagsOld
, &exstyleOld
);
1318 wxWindowBase::SetExtraStyle(exflagsNew
);
1321 if ( style
!= styleOld
)
1323 // some flags (e.g. WS_VISIBLE or WS_DISABLED) should not be changed by
1324 // this function so instead of simply setting the style to the new
1325 // value we clear the bits which were set in styleOld but are set in
1326 // the new one and set the ones which were not set before
1327 long styleReal
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1328 styleReal
&= ~styleOld
;
1331 ::SetWindowLong(GetHwnd(), GWL_STYLE
, styleReal
);
1333 // we need to call SetWindowPos() if any of the styles affecting the
1334 // frame appearance have changed
1335 callSWP
= ((styleOld
^ style
) & (WS_BORDER
|
1344 // and the extended style
1345 long exstyleReal
= wxGetWindowExStyle(this);
1347 if ( exstyle
!= exstyleOld
)
1349 exstyleReal
&= ~exstyleOld
;
1350 exstyleReal
|= exstyle
;
1352 wxSetWindowExStyle(this, exstyleReal
);
1354 // ex style changes don't take effect without calling SetWindowPos
1360 // we must call SetWindowPos() to flush the cached extended style and
1361 // also to make the change to wxSTAY_ON_TOP style take effect: just
1362 // setting the style simply doesn't work
1363 if ( !::SetWindowPos(GetHwnd(),
1364 exstyleReal
& WS_EX_TOPMOST
? HWND_TOPMOST
1367 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
|
1370 wxLogLastError(wxT("SetWindowPos"));
1375 wxBorder
wxWindowMSW::GetDefaultBorderForControl() const
1377 return wxBORDER_THEME
;
1380 wxBorder
wxWindowMSW::GetDefaultBorder() const
1382 return wxWindowBase::GetDefaultBorder();
1385 // Translate wxBORDER_THEME (and other border styles if necessary) to the value
1386 // that makes most sense for this Windows environment
1387 wxBorder
wxWindowMSW::TranslateBorder(wxBorder border
) const
1389 #if defined(__POCKETPC__) || defined(__SMARTPHONE__)
1390 if (border
== wxBORDER_THEME
|| border
== wxBORDER_SUNKEN
|| border
== wxBORDER_SIMPLE
)
1391 return wxBORDER_SIMPLE
;
1393 return wxBORDER_NONE
;
1396 if (border
== wxBORDER_THEME
)
1398 if (CanApplyThemeBorder())
1400 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
1402 return wxBORDER_THEME
;
1404 return wxBORDER_SUNKEN
;
1412 WXDWORD
wxWindowMSW::MSWGetStyle(long flags
, WXDWORD
*exstyle
) const
1414 // translate common wxWidgets styles to Windows ones
1416 // most of windows are child ones, those which are not (such as
1417 // wxTopLevelWindow) should remove WS_CHILD in their MSWGetStyle()
1418 WXDWORD style
= WS_CHILD
;
1420 // using this flag results in very significant reduction in flicker,
1421 // especially with controls inside the static boxes (as the interior of the
1422 // box is not redrawn twice), but sometimes results in redraw problems, so
1423 // optionally allow the old code to continue to use it provided a special
1424 // system option is turned on
1425 if ( !wxSystemOptions::GetOptionInt(wxT("msw.window.no-clip-children"))
1426 || (flags
& wxCLIP_CHILDREN
) )
1427 style
|= WS_CLIPCHILDREN
;
1429 // it doesn't seem useful to use WS_CLIPSIBLINGS here as we officially
1430 // don't support overlapping windows and it only makes sense for them and,
1431 // presumably, gives the system some extra work (to manage more clipping
1432 // regions), so avoid it alltogether
1435 if ( flags
& wxVSCROLL
)
1436 style
|= WS_VSCROLL
;
1438 if ( flags
& wxHSCROLL
)
1439 style
|= WS_HSCROLL
;
1441 const wxBorder border
= TranslateBorder(GetBorder(flags
));
1443 // After translation, border is now optimized for the specific version of Windows
1444 // and theme engine presence.
1446 // WS_BORDER is only required for wxBORDER_SIMPLE
1447 if ( border
== wxBORDER_SIMPLE
)
1450 // now deal with ext style if the caller wants it
1456 if ( flags
& wxTRANSPARENT_WINDOW
)
1457 *exstyle
|= WS_EX_TRANSPARENT
;
1463 case wxBORDER_DEFAULT
:
1464 wxFAIL_MSG( wxT("unknown border style") );
1468 case wxBORDER_SIMPLE
:
1469 case wxBORDER_THEME
:
1472 case wxBORDER_STATIC
:
1473 *exstyle
|= WS_EX_STATICEDGE
;
1476 case wxBORDER_RAISED
:
1477 *exstyle
|= WS_EX_DLGMODALFRAME
;
1480 case wxBORDER_SUNKEN
:
1481 *exstyle
|= WS_EX_CLIENTEDGE
;
1482 style
&= ~WS_BORDER
;
1485 // case wxBORDER_DOUBLE:
1486 // *exstyle |= WS_EX_DLGMODALFRAME;
1490 // wxUniv doesn't use Windows dialog navigation functions at all
1491 #if !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__)
1492 // to make the dialog navigation work with the nested panels we must
1493 // use this style (top level windows such as dialogs don't need it)
1494 if ( (flags
& wxTAB_TRAVERSAL
) && !IsTopLevel() )
1496 *exstyle
|= WS_EX_CONTROLPARENT
;
1498 #endif // __WXUNIVERSAL__
1504 // Setup background and foreground colours correctly
1505 void wxWindowMSW::SetupColours()
1508 SetBackgroundColour(GetParent()->GetBackgroundColour());
1511 bool wxWindowMSW::IsMouseInWindow() const
1513 // get the mouse position
1515 wxGetCursorPosMSW(&pt
);
1517 // find the window which currently has the cursor and go up the window
1518 // chain until we find this window - or exhaust it
1519 HWND hwnd
= ::WindowFromPoint(pt
);
1520 while ( hwnd
&& (hwnd
!= GetHwnd()) )
1521 hwnd
= ::GetParent(hwnd
);
1523 return hwnd
!= NULL
;
1526 void wxWindowMSW::OnInternalIdle()
1528 #ifndef HAVE_TRACKMOUSEEVENT
1529 // Check if we need to send a LEAVE event
1530 if ( m_mouseInWindow
)
1532 // note that we should generate the leave event whether the window has
1533 // or doesn't have mouse capture
1534 if ( !IsMouseInWindow() )
1536 GenerateMouseLeave();
1539 #endif // !HAVE_TRACKMOUSEEVENT
1541 wxWindowBase::OnInternalIdle();
1544 // Set this window to be the child of 'parent'.
1545 bool wxWindowMSW::Reparent(wxWindowBase
*parent
)
1547 if ( !wxWindowBase::Reparent(parent
) )
1550 HWND hWndChild
= GetHwnd();
1551 HWND hWndParent
= GetParent() ? GetWinHwnd(GetParent()) : (HWND
)0;
1553 ::SetParent(hWndChild
, hWndParent
);
1556 if ( wxHasWindowExStyle(this, WS_EX_CONTROLPARENT
) )
1558 EnsureParentHasControlParentStyle(GetParent());
1560 #endif // !__WXWINCE__
1565 static inline void SendSetRedraw(HWND hwnd
, bool on
)
1567 #ifndef __WXMICROWIN__
1568 ::SendMessage(hwnd
, WM_SETREDRAW
, (WPARAM
)on
, 0);
1572 void wxWindowMSW::DoFreeze()
1575 return; // no point in freezing hidden window
1577 SendSetRedraw(GetHwnd(), false);
1580 void wxWindowMSW::DoThaw()
1583 return; // hidden windows aren't frozen by DoFreeze
1585 SendSetRedraw(GetHwnd(), true);
1587 // we need to refresh everything or otherwise the invalidated area
1588 // is not going to be repainted
1592 void wxWindowMSW::Refresh(bool eraseBack
, const wxRect
*rect
)
1594 HWND hWnd
= GetHwnd();
1601 wxCopyRectToRECT(*rect
, mswRect
);
1609 // RedrawWindow not available on SmartPhone or eVC++ 3
1610 #if !defined(__SMARTPHONE__) && !(defined(_WIN32_WCE) && _WIN32_WCE < 400)
1611 UINT flags
= RDW_INVALIDATE
| RDW_ALLCHILDREN
;
1615 ::RedrawWindow(hWnd
, pRect
, NULL
, flags
);
1617 ::InvalidateRect(hWnd
, pRect
, eraseBack
);
1622 void wxWindowMSW::Update()
1624 if ( !::UpdateWindow(GetHwnd()) )
1626 wxLogLastError(wxT("UpdateWindow"));
1629 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1630 // just calling UpdateWindow() is not enough, what we did in our WM_PAINT
1631 // handler needs to be really drawn right now
1636 // ---------------------------------------------------------------------------
1638 // ---------------------------------------------------------------------------
1640 #if wxUSE_DRAG_AND_DROP || !defined(__WXWINCE__)
1644 // we need to lower the sibling static boxes so controls contained within can be
1646 static void AdjustStaticBoxZOrder(wxWindow
*parent
)
1648 // no sibling static boxes if we have no parent (ie TLW)
1652 for ( wxWindowList::compatibility_iterator node
= parent
->GetChildren().GetFirst();
1654 node
= node
->GetNext() )
1656 wxStaticBox
*statbox
= wxDynamicCast(node
->GetData(), wxStaticBox
);
1659 ::SetWindowPos(GetHwndOf(statbox
), HWND_BOTTOM
, 0, 0, 0, 0,
1660 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
1665 #else // !wxUSE_STATBOX
1667 static inline void AdjustStaticBoxZOrder(wxWindow
* WXUNUSED(parent
))
1671 #endif // wxUSE_STATBOX/!wxUSE_STATBOX
1673 #endif // drag and drop is used
1675 #if wxUSE_DRAG_AND_DROP
1676 void wxWindowMSW::SetDropTarget(wxDropTarget
*pDropTarget
)
1678 if ( m_dropTarget
!= 0 ) {
1679 m_dropTarget
->Revoke(m_hWnd
);
1680 delete m_dropTarget
;
1683 m_dropTarget
= pDropTarget
;
1684 if ( m_dropTarget
!= 0 )
1686 AdjustStaticBoxZOrder(GetParent());
1687 m_dropTarget
->Register(m_hWnd
);
1690 #endif // wxUSE_DRAG_AND_DROP
1692 // old-style file manager drag&drop support: we retain the old-style
1693 // DragAcceptFiles in parallel with SetDropTarget.
1694 void wxWindowMSW::DragAcceptFiles(bool WXUNUSED_IN_WINCE(accept
))
1697 HWND hWnd
= GetHwnd();
1700 AdjustStaticBoxZOrder(GetParent());
1701 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
1706 // ----------------------------------------------------------------------------
1708 // ----------------------------------------------------------------------------
1712 void wxWindowMSW::DoSetToolTip(wxToolTip
*tooltip
)
1714 wxWindowBase::DoSetToolTip(tooltip
);
1717 m_tooltip
->SetWindow((wxWindow
*)this);
1720 #endif // wxUSE_TOOLTIPS
1722 // ---------------------------------------------------------------------------
1723 // moving and resizing
1724 // ---------------------------------------------------------------------------
1726 bool wxWindowMSW::IsSizeDeferred() const
1728 #if wxUSE_DEFERRED_SIZING
1729 if ( m_pendingPosition
!= wxDefaultPosition
||
1730 m_pendingSize
!= wxDefaultSize
)
1732 #endif // wxUSE_DEFERRED_SIZING
1738 void wxWindowMSW::DoGetSize(int *x
, int *y
) const
1740 #if wxUSE_DEFERRED_SIZING
1741 // if SetSize() had been called at wx level but not realized at Windows
1742 // level yet (i.e. EndDeferWindowPos() not called), we still should return
1743 // the new and not the old position to the other wx code
1744 if ( m_pendingSize
!= wxDefaultSize
)
1747 *x
= m_pendingSize
.x
;
1749 *y
= m_pendingSize
.y
;
1751 else // use current size
1752 #endif // wxUSE_DEFERRED_SIZING
1754 RECT rect
= wxGetWindowRect(GetHwnd());
1757 *x
= rect
.right
- rect
.left
;
1759 *y
= rect
.bottom
- rect
.top
;
1763 // Get size *available for subwindows* i.e. excluding menu bar etc.
1764 void wxWindowMSW::DoGetClientSize(int *x
, int *y
) const
1766 #if wxUSE_DEFERRED_SIZING
1767 if ( m_pendingSize
!= wxDefaultSize
)
1769 // we need to calculate the client size corresponding to pending size
1771 // FIXME: Unfortunately this doesn't work correctly for the maximized
1772 // top level windows, the returned values are too small (e.g.
1773 // under Windows 7 on a 1600*1200 screen with task bar on the
1774 // right the pending size for a maximized window is 1538*1200
1775 // and WM_NCCALCSIZE returns 1528*1172 even though the correct
1776 // client size of such window is 1538*1182). No idea how to fix
1777 // it though, setting WS_MAXIMIZE in GWL_STYLE before calling
1778 // WM_NCCALCSIZE doesn't help and AdjustWindowRectEx() doesn't
1779 // work in this direction neither. So we just have to live with
1780 // the slightly wrong results and relayout the window when it
1781 // gets finally shown in its maximized state (see #11762).
1783 rect
.left
= m_pendingPosition
.x
;
1784 rect
.top
= m_pendingPosition
.y
;
1785 rect
.right
= rect
.left
+ m_pendingSize
.x
;
1786 rect
.bottom
= rect
.top
+ m_pendingSize
.y
;
1788 ::SendMessage(GetHwnd(), WM_NCCALCSIZE
, FALSE
, (LPARAM
)&rect
);
1791 *x
= rect
.right
- rect
.left
;
1793 *y
= rect
.bottom
- rect
.top
;
1796 #endif // wxUSE_DEFERRED_SIZING
1798 RECT rect
= wxGetClientRect(GetHwnd());
1806 // The size of the client window can't be negative but ::GetClientRect()
1807 // can return negative size for an extremely small (1x1) window with
1808 // borders so ensure that we correct it here as having negative sizes is
1809 // completely unexpected.
1816 void wxWindowMSW::DoGetPosition(int *x
, int *y
) const
1818 wxWindow
* const parent
= GetParent();
1821 #if wxUSE_DEFERRED_SIZING
1822 if ( m_pendingPosition
!= wxDefaultPosition
)
1824 pos
= m_pendingPosition
;
1826 else // use current position
1827 #endif // wxUSE_DEFERRED_SIZING
1829 RECT rect
= wxGetWindowRect(GetHwnd());
1832 point
.x
= rect
.left
;
1835 // we do the adjustments with respect to the parent only for the "real"
1836 // children, not for the dialogs/frames
1837 if ( !IsTopLevel() )
1839 if ( wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
)
1841 // In RTL mode, we want the logical left x-coordinate,
1842 // which would be the physical right x-coordinate.
1843 point
.x
= rect
.right
;
1846 // Since we now have the absolute screen coords, if there's a
1847 // parent we must subtract its top left corner
1850 ::ScreenToClient(GetHwndOf(parent
), &point
);
1858 // we also must adjust by the client area offset: a control which is just
1859 // under a toolbar could be at (0, 30) in Windows but at (0, 0) in wx
1860 if ( parent
&& !IsTopLevel() )
1862 const wxPoint
pt(parent
->GetClientAreaOrigin());
1873 void wxWindowMSW::DoScreenToClient(int *x
, int *y
) const
1881 ::ScreenToClient(GetHwnd(), &pt
);
1889 void wxWindowMSW::DoClientToScreen(int *x
, int *y
) const
1897 ::ClientToScreen(GetHwnd(), &pt
);
1906 wxWindowMSW::DoMoveSibling(WXHWND hwnd
, int x
, int y
, int width
, int height
)
1908 #if wxUSE_DEFERRED_SIZING
1909 // if our parent had prepared a defer window handle for us, use it (unless
1910 // we are a top level window)
1911 wxWindowMSW
* const parent
= IsTopLevel() ? NULL
: GetParent();
1913 HDWP hdwp
= parent
? (HDWP
)parent
->m_hDWP
: NULL
;
1916 hdwp
= ::DeferWindowPos(hdwp
, (HWND
)hwnd
, NULL
, x
, y
, width
, height
,
1917 SWP_NOZORDER
| SWP_NOOWNERZORDER
| SWP_NOACTIVATE
);
1920 wxLogLastError(wxT("DeferWindowPos"));
1926 // hdwp must be updated as it may have been changed
1927 parent
->m_hDWP
= (WXHANDLE
)hdwp
;
1932 // did deferred move, remember new coordinates of the window as they're
1933 // different from what Windows would return for it
1937 // otherwise (or if deferring failed) move the window in place immediately
1938 #endif // wxUSE_DEFERRED_SIZING
1939 if ( !::MoveWindow((HWND
)hwnd
, x
, y
, width
, height
, IsShown()) )
1941 wxLogLastError(wxT("MoveWindow"));
1944 // if wxUSE_DEFERRED_SIZING, indicates that we didn't use deferred move,
1945 // ignored otherwise
1949 void wxWindowMSW::DoMoveWindow(int x
, int y
, int width
, int height
)
1951 // TODO: is this consistent with other platforms?
1952 // Still, negative width or height shouldn't be allowed
1958 if ( DoMoveSibling(m_hWnd
, x
, y
, width
, height
) )
1960 #if wxUSE_DEFERRED_SIZING
1961 m_pendingPosition
= wxPoint(x
, y
);
1962 m_pendingSize
= wxSize(width
, height
);
1964 else // window was moved immediately, without deferring it
1966 m_pendingPosition
= wxDefaultPosition
;
1967 m_pendingSize
= wxDefaultSize
;
1968 #endif // wxUSE_DEFERRED_SIZING
1972 // set the size of the window: if the dimensions are positive, just use them,
1973 // but if any of them is equal to -1, it means that we must find the value for
1974 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1975 // which case -1 is a valid value for x and y)
1977 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1978 // the width/height to best suit our contents, otherwise we reuse the current
1980 void wxWindowMSW::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1982 // get the current size and position...
1983 int currentX
, currentY
;
1984 int currentW
, currentH
;
1986 GetPosition(¤tX
, ¤tY
);
1987 GetSize(¤tW
, ¤tH
);
1989 // ... and don't do anything (avoiding flicker) if it's already ok unless
1990 // we're forced to resize the window
1991 if ( x
== currentX
&& y
== currentY
&&
1992 width
== currentW
&& height
== currentH
&&
1993 !(sizeFlags
& wxSIZE_FORCE
) )
1995 if (sizeFlags
& wxSIZE_FORCE_EVENT
)
1997 wxSizeEvent
event( wxSize(width
,height
), GetId() );
1998 event
.SetEventObject( this );
1999 HandleWindowEvent( event
);
2004 if ( x
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
2006 if ( y
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
2009 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
2011 wxSize size
= wxDefaultSize
;
2012 if ( width
== wxDefaultCoord
)
2014 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
2016 size
= GetBestSize();
2021 // just take the current one
2026 if ( height
== wxDefaultCoord
)
2028 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
2030 if ( size
.x
== wxDefaultCoord
)
2032 size
= GetBestSize();
2034 //else: already called GetBestSize() above
2040 // just take the current one
2045 DoMoveWindow(x
, y
, width
, height
);
2048 void wxWindowMSW::DoSetClientSize(int width
, int height
)
2050 // setting the client size is less obvious than it could have been
2051 // because in the result of changing the total size the window scrollbar
2052 // may [dis]appear and/or its menubar may [un]wrap (and AdjustWindowRect()
2053 // doesn't take neither into account) and so the client size will not be
2054 // correct as the difference between the total and client size changes --
2055 // so we keep changing it until we get it right
2057 // normally this loop shouldn't take more than 3 iterations (usually 1 but
2058 // if scrollbars [dis]appear as the result of the first call, then 2 and it
2059 // may become 3 if the window had 0 size originally and so we didn't
2060 // calculate the scrollbar correction correctly during the first iteration)
2061 // but just to be on the safe side we check for it instead of making it an
2062 // "infinite" loop (i.e. leaving break inside as the only way to get out)
2063 for ( int i
= 0; i
< 4; i
++ )
2066 ::GetClientRect(GetHwnd(), &rectClient
);
2068 // if the size is already ok, stop here (NB: rectClient.left = top = 0)
2069 if ( (rectClient
.right
== width
|| width
== wxDefaultCoord
) &&
2070 (rectClient
.bottom
== height
|| height
== wxDefaultCoord
) )
2075 // Find the difference between the entire window (title bar and all)
2076 // and the client area; add this to the new client size to move the
2079 ::GetWindowRect(GetHwnd(), &rectWin
);
2081 const int widthWin
= rectWin
.right
- rectWin
.left
,
2082 heightWin
= rectWin
.bottom
- rectWin
.top
;
2084 // MoveWindow positions the child windows relative to the parent, so
2085 // adjust if necessary
2086 if ( !IsTopLevel() )
2088 wxWindow
*parent
= GetParent();
2091 ::ScreenToClient(GetHwndOf(parent
), (POINT
*)&rectWin
);
2095 // don't call DoMoveWindow() because we want to move window immediately
2096 // and not defer it here as otherwise the value returned by
2097 // GetClient/WindowRect() wouldn't change as the window wouldn't be
2099 if ( !::MoveWindow(GetHwnd(),
2102 width
+ widthWin
- rectClient
.right
,
2103 height
+ heightWin
- rectClient
.bottom
,
2106 wxLogLastError(wxT("MoveWindow"));
2111 wxSize
wxWindowMSW::DoGetBorderSize() const
2114 switch ( GetBorder() )
2116 case wxBORDER_STATIC
:
2117 case wxBORDER_SIMPLE
:
2121 case wxBORDER_SUNKEN
:
2125 case wxBORDER_RAISED
:
2126 case wxBORDER_DOUBLE
:
2131 wxFAIL_MSG( wxT("unknown border style") );
2138 return 2*wxSize(border
, border
);
2141 // ---------------------------------------------------------------------------
2143 // ---------------------------------------------------------------------------
2145 int wxWindowMSW::GetCharHeight() const
2147 return wxGetTextMetrics(this).tmHeight
;
2150 int wxWindowMSW::GetCharWidth() const
2152 // +1 is needed because Windows apparently adds it when calculating the
2153 // dialog units size in pixels
2154 #if wxDIALOG_UNIT_COMPATIBILITY
2155 return wxGetTextMetrics(this).tmAveCharWidth
;
2157 return wxGetTextMetrics(this).tmAveCharWidth
+ 1;
2161 void wxWindowMSW::DoGetTextExtent(const wxString
& string
,
2164 int *externalLeading
,
2165 const wxFont
*fontToUse
) const
2167 wxASSERT_MSG( !fontToUse
|| fontToUse
->IsOk(),
2168 wxT("invalid font in GetTextExtent()") );
2172 hfontToUse
= GetHfontOf(*fontToUse
);
2174 hfontToUse
= GetHfontOf(GetFont());
2176 WindowHDC
hdc(GetHwnd());
2177 SelectInHDC
selectFont(hdc
, hfontToUse
);
2181 ::GetTextExtentPoint32(hdc
, string
.wx_str(), string
.length(), &sizeRect
);
2182 GetTextMetrics(hdc
, &tm
);
2189 *descent
= tm
.tmDescent
;
2190 if ( externalLeading
)
2191 *externalLeading
= tm
.tmExternalLeading
;
2194 // ---------------------------------------------------------------------------
2196 // ---------------------------------------------------------------------------
2198 #if wxUSE_MENUS_NATIVE
2200 // yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue
2201 // immediately, without waiting for the next event loop iteration
2203 // NB: this function should probably be made public later as it can almost
2204 // surely replace wxYield() elsewhere as well
2205 static void wxYieldForCommandsOnly()
2207 // peek all WM_COMMANDs (it will always return WM_QUIT too but we don't
2208 // want to process it here)
2210 while ( ::PeekMessage(&msg
, (HWND
)0, WM_COMMAND
, WM_COMMAND
, PM_REMOVE
) )
2212 if ( msg
.message
== WM_QUIT
)
2214 // if we retrieved a WM_QUIT, insert back into the message queue.
2215 ::PostQuitMessage(0);
2219 // luckily (as we don't have access to wxEventLoopImpl method from here
2220 // anyhow...) we don't need to pre process WM_COMMANDs so dispatch it
2222 ::TranslateMessage(&msg
);
2223 ::DispatchMessage(&msg
);
2227 bool wxWindowMSW::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
2232 if ( x
== wxDefaultCoord
&& y
== wxDefaultCoord
)
2234 pt
= wxGetMousePosition();
2238 pt
= ClientToScreen(wxPoint(x
, y
));
2241 #if defined(__WXWINCE__)
2242 static const UINT flags
= 0;
2243 #else // !__WXWINCE__
2244 UINT flags
= TPM_RIGHTBUTTON
;
2245 // NT4 doesn't support TPM_RECURSE and simply doesn't show the menu at all
2246 // when it's use, I'm not sure about Win95/98 but prefer to err on the safe
2247 // side and not to use it there neither -- modify the test if it does work
2249 if ( wxGetWinVersion() >= wxWinVersion_5
)
2251 // using TPM_RECURSE allows us to show a popup menu while another menu
2252 // is opened which can be useful and is supported by the other
2253 // platforms, so allow it under Windows too
2254 flags
|= TPM_RECURSE
;
2256 #endif // __WXWINCE__/!__WXWINCE__
2258 ::TrackPopupMenu(GetHmenuOf(menu
), flags
, pt
.x
, pt
.y
, 0, GetHwnd(), NULL
);
2260 // we need to do it right now as otherwise the events are never going to be
2261 // sent to wxCurrentPopupMenu from HandleCommand()
2263 // note that even eliminating (ugly) wxCurrentPopupMenu global wouldn't
2264 // help and we'd still need wxYieldForCommandsOnly() as the menu may be
2265 // destroyed as soon as we return (it can be a local variable in the caller
2266 // for example) and so we do need to process the event immediately
2267 wxYieldForCommandsOnly();
2272 #endif // wxUSE_MENUS_NATIVE
2274 // ===========================================================================
2275 // pre/post message processing
2276 // ===========================================================================
2278 WXLRESULT
wxWindowMSW::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
2282 rc
= ::CallWindowProc(CASTWNDPROC m_oldWndProc
, GetHwnd(), (UINT
) nMsg
, (WPARAM
) wParam
, (LPARAM
) lParam
);
2284 rc
= ::DefWindowProc(GetHwnd(), nMsg
, wParam
, lParam
);
2286 // Special hack used by wxTextEntry auto-completion only: this event is
2287 // sent after the normal keyboard processing so that its handler could use
2288 // the updated contents of the text control, after taking the key that was
2289 // pressed into account.
2290 if ( nMsg
== WM_CHAR
)
2292 wxKeyEvent
event(CreateCharEvent(wxEVT_AFTER_CHAR
, wParam
, lParam
));
2293 HandleWindowEvent(event
);
2299 bool wxWindowMSW::MSWProcessMessage(WXMSG
* pMsg
)
2301 // wxUniversal implements tab traversal itself
2302 #ifndef __WXUNIVERSAL__
2303 if ( m_hWnd
!= 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL
) )
2305 // intercept dialog navigation keys
2306 MSG
*msg
= (MSG
*)pMsg
;
2308 // here we try to do all the job which ::IsDialogMessage() usually does
2310 if ( msg
->message
== WM_KEYDOWN
)
2312 bool bCtrlDown
= wxIsCtrlDown();
2313 bool bShiftDown
= wxIsShiftDown();
2315 // WM_GETDLGCODE: ask the control if it wants the key for itself,
2316 // don't process it if it's the case (except for Ctrl-Tab/Enter
2317 // combinations which are always processed)
2318 LONG lDlgCode
= ::SendMessage(msg
->hwnd
, WM_GETDLGCODE
, 0, 0);
2320 // surprisingly, DLGC_WANTALLKEYS bit mask doesn't contain the
2321 // DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically,
2322 // it, of course, implies them
2323 if ( lDlgCode
& DLGC_WANTALLKEYS
)
2325 lDlgCode
|= DLGC_WANTTAB
| DLGC_WANTARROWS
;
2328 bool bForward
= true,
2329 bWindowChange
= false,
2332 // should we process this message specially?
2333 bool bProcess
= true;
2334 switch ( msg
->wParam
)
2337 if ( (lDlgCode
& DLGC_WANTTAB
) && !bCtrlDown
)
2339 // let the control have the TAB
2342 else // use it for navigation
2344 // Ctrl-Tab cycles thru notebook pages
2345 bWindowChange
= bCtrlDown
;
2346 bForward
= !bShiftDown
;
2353 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2361 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2370 // we treat PageUp/Dn as arrows because chances are that
2371 // a control which needs arrows also needs them for
2372 // navigation (e.g. wxTextCtrl, wxListCtrl, ...)
2373 if ( (lDlgCode
& DLGC_WANTARROWS
) && !bCtrlDown
)
2375 else // OTOH Ctrl-PageUp/Dn works as [Shift-]Ctrl-Tab
2376 bWindowChange
= true;
2382 // currently active button should get enter press even
2383 // if there is a default button elsewhere so check if
2384 // this window is a button first
2385 wxWindow
*btn
= NULL
;
2386 if ( lDlgCode
& DLGC_DEFPUSHBUTTON
)
2388 // let IsDialogMessage() handle this for all
2389 // buttons except the owner-drawn ones which it
2390 // just seems to ignore
2391 long style
= ::GetWindowLong(msg
->hwnd
, GWL_STYLE
);
2392 if ( (style
& BS_OWNERDRAW
) == BS_OWNERDRAW
)
2394 // emulate the button click
2395 btn
= wxFindWinFromHandle(msg
->hwnd
);
2398 else // not a button itself, do we have default button?
2400 // check if this window or any of its ancestors
2401 // wants the message for itself (we always reserve
2402 // Ctrl-Enter for dialog navigation though)
2403 wxWindow
*win
= this;
2406 // this will contain the dialog code of this
2407 // window and all of its parent windows in turn
2408 LONG lDlgCode2
= lDlgCode
;
2412 if ( lDlgCode2
& DLGC_WANTMESSAGE
)
2414 // as it wants to process Enter itself,
2415 // don't call IsDialogMessage() which
2420 // don't propagate keyboard messages beyond
2421 // the first top level window parent
2422 if ( win
->IsTopLevel() )
2425 win
= win
->GetParent();
2427 lDlgCode2
= ::SendMessage
2438 win
= wxGetTopLevelParent(win
);
2441 wxTopLevelWindow
* const
2442 tlw
= wxDynamicCast(win
, wxTopLevelWindow
);
2445 btn
= wxDynamicCast(tlw
->GetDefaultItem(),
2450 if ( btn
&& btn
->IsEnabled() )
2452 btn
->MSWCommand(BN_CLICKED
, 0 /* unused */);
2456 // This "Return" key press won't be actually used for
2457 // navigation so don't generate wxNavigationKeyEvent
2458 // for it but still pass it to IsDialogMessage() as it
2459 // may handle it in some other way (e.g. by playing the
2460 // default error sound).
2463 #endif // wxUSE_BUTTON
2466 // map Enter presses into button presses on PDAs
2467 wxJoystickEvent
event(wxEVT_JOY_BUTTON_DOWN
);
2468 event
.SetEventObject(this);
2469 if ( HandleWindowEvent(event
) )
2471 #endif // __WXWINCE__
2481 wxNavigationKeyEvent event
;
2482 event
.SetDirection(bForward
);
2483 event
.SetWindowChange(bWindowChange
);
2484 event
.SetFromTab(bFromTab
);
2485 event
.SetEventObject(this);
2487 if ( HandleWindowEvent(event
) )
2489 // as we don't call IsDialogMessage(), which would take of
2490 // this by default, we need to manually send this message
2491 // so that controls can change their UI state if needed
2492 MSWUpdateUIState(UIS_CLEAR
, UISF_HIDEFOCUS
);
2499 if ( ::IsDialogMessage(GetHwnd(), msg
) )
2501 // IsDialogMessage() did something...
2505 #endif // __WXUNIVERSAL__
2510 // relay mouse move events to the tooltip control
2511 MSG
*msg
= (MSG
*)pMsg
;
2512 if ( msg
->message
== WM_MOUSEMOVE
)
2513 wxToolTip::RelayEvent(pMsg
);
2515 #endif // wxUSE_TOOLTIPS
2520 bool wxWindowMSW::MSWTranslateMessage(WXMSG
* pMsg
)
2522 #if wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
2523 return m_acceleratorTable
.Translate(this, pMsg
);
2527 #endif // wxUSE_ACCEL
2530 bool wxWindowMSW::MSWShouldPreProcessMessage(WXMSG
* msg
)
2532 // all tests below have to deal with various bugs/misfeatures of
2533 // IsDialogMessage(): we have to prevent it from being called from our
2534 // MSWProcessMessage() in some situations
2536 // don't let IsDialogMessage() get VK_ESCAPE as it _always_ eats the
2537 // message even when there is no cancel button and when the message is
2538 // needed by the control itself: in particular, it prevents the tree in
2539 // place edit control from being closed with Escape in a dialog
2540 if ( msg
->message
== WM_KEYDOWN
&& msg
->wParam
== VK_ESCAPE
)
2545 // ::IsDialogMessage() is broken and may sometimes hang the application by
2546 // going into an infinite loop when it tries to find the control to give
2547 // focus to when Alt-<key> is pressed, so we try to detect [some of] the
2548 // situations when this may happen and not call it then
2549 if ( msg
->message
!= WM_SYSCHAR
)
2552 // assume we can call it by default
2553 bool canSafelyCallIsDlgMsg
= true;
2555 HWND hwndFocus
= ::GetFocus();
2557 // if the currently focused window itself has WS_EX_CONTROLPARENT style,
2558 // ::IsDialogMessage() will also enter an infinite loop, because it will
2559 // recursively check the child windows but not the window itself and so if
2560 // none of the children accepts focus it loops forever (as it only stops
2561 // when it gets back to the window it started from)
2563 // while it is very unusual that a window with WS_EX_CONTROLPARENT
2564 // style has the focus, it can happen. One such possibility is if
2565 // all windows are either toplevel, wxDialog, wxPanel or static
2566 // controls and no window can actually accept keyboard input.
2567 #if !defined(__WXWINCE__)
2568 if ( ::GetWindowLong(hwndFocus
, GWL_EXSTYLE
) & WS_EX_CONTROLPARENT
)
2570 // pessimistic by default
2571 canSafelyCallIsDlgMsg
= false;
2572 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2574 node
= node
->GetNext() )
2576 wxWindow
* const win
= node
->GetData();
2577 if ( win
->CanAcceptFocus() &&
2578 !wxHasWindowExStyle(win
, WS_EX_CONTROLPARENT
) )
2580 // it shouldn't hang...
2581 canSafelyCallIsDlgMsg
= true;
2587 #endif // !__WXWINCE__
2589 if ( canSafelyCallIsDlgMsg
)
2591 // ::IsDialogMessage() can enter in an infinite loop when the
2592 // currently focused window is disabled or hidden and its
2593 // parent has WS_EX_CONTROLPARENT style, so don't call it in
2597 if ( !::IsWindowEnabled(hwndFocus
) ||
2598 !::IsWindowVisible(hwndFocus
) )
2600 // it would enter an infinite loop if we do this!
2601 canSafelyCallIsDlgMsg
= false;
2606 if ( !(::GetWindowLong(hwndFocus
, GWL_STYLE
) & WS_CHILD
) )
2608 // it's a top level window, don't go further -- e.g. even
2609 // if the parent of a dialog is disabled, this doesn't
2610 // break navigation inside the dialog
2614 hwndFocus
= ::GetParent(hwndFocus
);
2618 return canSafelyCallIsDlgMsg
;
2621 // ---------------------------------------------------------------------------
2622 // message params unpackers
2623 // ---------------------------------------------------------------------------
2625 void wxWindowMSW::UnpackCommand(WXWPARAM wParam
, WXLPARAM lParam
,
2626 WORD
*id
, WXHWND
*hwnd
, WORD
*cmd
)
2628 *id
= LOWORD(wParam
);
2629 *hwnd
= (WXHWND
)lParam
;
2630 *cmd
= HIWORD(wParam
);
2633 void wxWindowMSW::UnpackActivate(WXWPARAM wParam
, WXLPARAM lParam
,
2634 WXWORD
*state
, WXWORD
*minimized
, WXHWND
*hwnd
)
2636 *state
= LOWORD(wParam
);
2637 *minimized
= HIWORD(wParam
);
2638 *hwnd
= (WXHWND
)lParam
;
2641 void wxWindowMSW::UnpackScroll(WXWPARAM wParam
, WXLPARAM lParam
,
2642 WXWORD
*code
, WXWORD
*pos
, WXHWND
*hwnd
)
2644 *code
= LOWORD(wParam
);
2645 *pos
= HIWORD(wParam
);
2646 *hwnd
= (WXHWND
)lParam
;
2649 void wxWindowMSW::UnpackCtlColor(WXWPARAM wParam
, WXLPARAM lParam
,
2650 WXHDC
*hdc
, WXHWND
*hwnd
)
2652 *hwnd
= (WXHWND
)lParam
;
2653 *hdc
= (WXHDC
)wParam
;
2656 void wxWindowMSW::UnpackMenuSelect(WXWPARAM wParam
, WXLPARAM lParam
,
2657 WXWORD
*item
, WXWORD
*flags
, WXHMENU
*hmenu
)
2659 *item
= (WXWORD
)wParam
;
2660 *flags
= HIWORD(wParam
);
2661 *hmenu
= (WXHMENU
)lParam
;
2664 // ---------------------------------------------------------------------------
2665 // Main wxWidgets window proc and the window proc for wxWindow
2666 // ---------------------------------------------------------------------------
2668 // Hook for new window just as it's being created, when the window isn't yet
2669 // associated with the handle
2670 static wxWindowMSW
*gs_winBeingCreated
= NULL
;
2672 // implementation of wxWindowCreationHook class: it just sets gs_winBeingCreated to the
2673 // window being created and insures that it's always unset back later
2674 wxWindowCreationHook::wxWindowCreationHook(wxWindowMSW
*winBeingCreated
)
2676 gs_winBeingCreated
= winBeingCreated
;
2679 wxWindowCreationHook::~wxWindowCreationHook()
2681 gs_winBeingCreated
= NULL
;
2685 LRESULT WXDLLEXPORT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
2687 // trace all messages: useful for the debugging but noticeably slows down
2688 // the code so don't do it by default
2689 #if wxDEBUG_LEVEL >= 2
2690 // notice that we cast wParam and lParam to long to avoid mismatch with
2691 // format specifiers in 64 bit builds where they are both int64 quantities
2693 // casting like this loses information, of course, but it shouldn't matter
2694 // much for this diagnostic code and it keeps the code simple
2695 wxLogTrace("winmsg",
2696 wxT("Processing %s(hWnd=%p, wParam=%08lx, lParam=%08lx)"),
2697 wxGetMessageName(message
), hWnd
, (long)wParam
, (long)lParam
);
2698 #endif // wxDEBUG_LEVEL >= 2
2700 wxWindowMSW
*wnd
= wxFindWinFromHandle(hWnd
);
2702 // when we get the first message for the HWND we just created, we associate
2703 // it with wxWindow stored in gs_winBeingCreated
2704 if ( !wnd
&& gs_winBeingCreated
)
2706 wxAssociateWinWithHandle(hWnd
, gs_winBeingCreated
);
2707 wnd
= gs_winBeingCreated
;
2708 gs_winBeingCreated
= NULL
;
2709 wnd
->SetHWND((WXHWND
)hWnd
);
2714 if ( wnd
&& wxGUIEventLoop::AllowProcessing(wnd
) )
2715 rc
= wnd
->MSWWindowProc(message
, wParam
, lParam
);
2717 rc
= ::DefWindowProc(hWnd
, message
, wParam
, lParam
);
2723 wxWindowMSW::MSWHandleMessage(WXLRESULT
*result
,
2728 // did we process the message?
2729 bool processed
= false;
2739 // for most messages we should return 0 when we do process the message
2747 processed
= HandleCreate((WXLPCREATESTRUCT
)lParam
, &mayCreate
);
2750 // return 0 to allow window creation
2751 rc
.result
= mayCreate
? 0 : -1;
2757 // never set processed to true and *always* pass WM_DESTROY to
2758 // DefWindowProc() as Windows may do some internal cleanup when
2759 // processing it and failing to pass the message along may cause
2760 // memory and resource leaks!
2761 (void)HandleDestroy();
2765 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
2769 processed
= HandleMove(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
2772 #if !defined(__WXWINCE__)
2775 LPRECT pRect
= (LPRECT
)lParam
;
2777 rc
.SetLeft(pRect
->left
);
2778 rc
.SetTop(pRect
->top
);
2779 rc
.SetRight(pRect
->right
);
2780 rc
.SetBottom(pRect
->bottom
);
2781 processed
= HandleMoving(rc
);
2783 pRect
->left
= rc
.GetLeft();
2784 pRect
->top
= rc
.GetTop();
2785 pRect
->right
= rc
.GetRight();
2786 pRect
->bottom
= rc
.GetBottom();
2791 case WM_ENTERSIZEMOVE
:
2793 processed
= HandleEnterSizeMove();
2797 case WM_EXITSIZEMOVE
:
2799 processed
= HandleExitSizeMove();
2805 LPRECT pRect
= (LPRECT
)lParam
;
2807 rc
.SetLeft(pRect
->left
);
2808 rc
.SetTop(pRect
->top
);
2809 rc
.SetRight(pRect
->right
);
2810 rc
.SetBottom(pRect
->bottom
);
2811 processed
= HandleSizing(rc
);
2813 pRect
->left
= rc
.GetLeft();
2814 pRect
->top
= rc
.GetTop();
2815 pRect
->right
= rc
.GetRight();
2816 pRect
->bottom
= rc
.GetBottom();
2820 #endif // !__WXWINCE__
2822 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
2823 case WM_ACTIVATEAPP
:
2824 // This implicitly sends a wxEVT_ACTIVATE_APP event
2825 wxTheApp
->SetActive(wParam
!= 0, FindFocus());
2831 WXWORD state
, minimized
;
2833 UnpackActivate(wParam
, lParam
, &state
, &minimized
, &hwnd
);
2835 processed
= HandleActivate(state
, minimized
!= 0, (WXHWND
)hwnd
);
2840 processed
= HandleSetFocus((WXHWND
)wParam
);
2844 processed
= HandleKillFocus((WXHWND
)wParam
);
2847 case WM_PRINTCLIENT
:
2848 processed
= HandlePrintClient((WXHDC
)wParam
);
2854 wxPaintDCEx
dc((wxWindow
*)this, (WXHDC
)wParam
);
2856 processed
= HandlePaint();
2860 processed
= HandlePaint();
2865 #ifdef __WXUNIVERSAL__
2866 // Universal uses its own wxFrame/wxDialog, so we don't receive
2867 // close events unless we have this.
2869 #endif // __WXUNIVERSAL__
2871 // don't let the DefWindowProc() destroy our window - we'll do it
2872 // ourselves in ~wxWindow
2878 processed
= HandleShow(wParam
!= 0, (int)lParam
);
2882 processed
= HandleMouseMove(GET_X_LPARAM(lParam
),
2883 GET_Y_LPARAM(lParam
),
2887 #ifdef HAVE_TRACKMOUSEEVENT
2889 // filter out excess WM_MOUSELEAVE events sent after PopupMenu()
2891 if ( m_mouseInWindow
)
2893 GenerateMouseLeave();
2896 // always pass processed back as false, this allows the window
2897 // manager to process the message too. This is needed to
2898 // ensure windows XP themes work properly as the mouse moves
2899 // over widgets like buttons. So don't set processed to true here.
2901 #endif // HAVE_TRACKMOUSEEVENT
2903 #if wxUSE_MOUSEWHEEL
2905 processed
= HandleMouseWheel(wParam
, lParam
);
2909 case WM_LBUTTONDOWN
:
2911 case WM_LBUTTONDBLCLK
:
2912 case WM_RBUTTONDOWN
:
2914 case WM_RBUTTONDBLCLK
:
2915 case WM_MBUTTONDOWN
:
2917 case WM_MBUTTONDBLCLK
:
2918 #ifdef wxHAS_XBUTTON
2919 case WM_XBUTTONDOWN
:
2921 case WM_XBUTTONDBLCLK
:
2922 #endif // wxHAS_XBUTTON
2924 #ifdef __WXMICROWIN__
2925 // MicroWindows seems to ignore the fact that a window is
2926 // disabled. So catch mouse events and throw them away if
2928 wxWindowMSW
* win
= this;
2931 if (!win
->IsEnabled())
2937 win
= win
->GetParent();
2938 if ( !win
|| win
->IsTopLevel() )
2945 #endif // __WXMICROWIN__
2946 int x
= GET_X_LPARAM(lParam
),
2947 y
= GET_Y_LPARAM(lParam
);
2950 // redirect the event to a static control if necessary by
2951 // finding one under mouse because under CE the static controls
2952 // don't generate mouse events (even with SS_NOTIFY)
2954 if ( GetCapture() == this )
2956 // but don't do it if the mouse is captured by this window
2957 // because then it should really get this event itself
2962 win
= FindWindowForMouseEvent(this, &x
, &y
);
2964 // this should never happen
2965 wxCHECK_MSG( win
, 0,
2966 wxT("FindWindowForMouseEvent() returned NULL") );
2969 if (IsContextMenuEnabled() && message
== WM_LBUTTONDOWN
)
2971 SHRGINFO shrgi
= {0};
2973 shrgi
.cbSize
= sizeof(SHRGINFO
);
2974 shrgi
.hwndClient
= (HWND
) GetHWND();
2978 shrgi
.dwFlags
= SHRG_RETURNCMD
;
2979 // shrgi.dwFlags = SHRG_NOTIFYPARENT;
2981 if (GN_CONTEXTMENU
== ::SHRecognizeGesture(&shrgi
))
2984 pt
= ClientToScreen(pt
);
2986 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
, GetId(), pt
);
2988 evtCtx
.SetEventObject(this);
2989 if (HandleWindowEvent(evtCtx
))
2998 #else // !__WXWINCE__
2999 wxWindowMSW
*win
= this;
3000 #endif // __WXWINCE__/!__WXWINCE__
3002 processed
= win
->HandleMouseEvent(message
, x
, y
, wParam
);
3004 // if the app didn't eat the event, handle it in the default
3005 // way, that is by giving this window the focus
3008 // for the standard classes their WndProc sets the focus to
3009 // them anyhow and doing it from here results in some weird
3010 // problems, so don't do it for them (unnecessary anyhow)
3011 if ( !win
->IsOfStandardClass() )
3013 if ( message
== WM_LBUTTONDOWN
&& win
->IsFocusable() )
3025 case MM_JOY1BUTTONDOWN
:
3026 case MM_JOY2BUTTONDOWN
:
3027 case MM_JOY1BUTTONUP
:
3028 case MM_JOY2BUTTONUP
:
3029 processed
= HandleJoystickEvent(message
,
3030 GET_X_LPARAM(lParam
),
3031 GET_Y_LPARAM(lParam
),
3034 #endif // __WXMICROWIN__
3040 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
3042 processed
= HandleCommand(id
, cmd
, hwnd
);
3047 processed
= HandleNotify((int)wParam
, lParam
, &rc
.result
);
3050 // we only need to reply to WM_NOTIFYFORMAT manually when using MSLU,
3051 // otherwise DefWindowProc() does it perfectly fine for us, but MSLU
3052 // apparently doesn't always behave properly and needs some help
3053 #if wxUSE_UNICODE_MSLU && defined(NF_QUERY)
3054 case WM_NOTIFYFORMAT
:
3055 if ( lParam
== NF_QUERY
)
3058 rc
.result
= NFR_UNICODE
;
3061 #endif // wxUSE_UNICODE_MSLU
3063 // for these messages we must return true if process the message
3066 processed
= MSWOnDrawItem(wParam
, (WXDRAWITEMSTRUCT
*)lParam
);
3071 case WM_MEASUREITEM
:
3072 processed
= MSWOnMeasureItem(wParam
, (WXMEASUREITEMSTRUCT
*)lParam
);
3076 #endif // defined(WM_DRAWITEM)
3079 if ( !IsOfStandardClass() || HasFlag(wxWANTS_CHARS
) )
3081 // we always want to get the char events
3082 rc
.result
= DLGC_WANTCHARS
;
3084 if ( HasFlag(wxWANTS_CHARS
) )
3086 // in fact, we want everything
3087 rc
.result
|= DLGC_WANTARROWS
|
3094 //else: get the dlg code from the DefWindowProc()
3099 // Generate the key down event in any case.
3100 m_lastKeydownProcessed
= HandleKeyDown((WORD
) wParam
, lParam
);
3101 if ( m_lastKeydownProcessed
)
3103 // If it was processed by an event handler, we stop here,
3104 // notably we intentionally don't generate char event then.
3107 else // key down event not handled
3109 // Examine the event to decide whether we need to generate a
3110 // char event for it ourselves or let Windows do it. Window
3111 // mostly only does it for the keys which produce printable
3112 // characters (although there are exceptions, e.g. VK_ESCAPE or
3113 // VK_BACK (but not VK_DELETE)) while we do it for all keys
3114 // except the modifier ones (the wisdom of this is debatable
3115 // but by now this decision is enshrined forever due to
3116 // backwards compatibility).
3119 // No wxEVT_CHAR events are generated for these keys at all.
3127 // Windows will send us WM_CHAR for these ones so we'll
3128 // generate wxEVT_CHAR for them later when we get it.
3163 // special case of VK_APPS: treat it the same as right mouse
3164 // click because both usually pop up a context menu
3166 processed
= HandleMouseEvent(WM_RBUTTONDOWN
, -1, -1, 0);
3171 if ( (wParam
>= '0' && wParam
<= '9') ||
3172 (wParam
>= 'A' && wParam
<= 'Z') )
3174 // We'll get WM_CHAR for those later too.
3178 // But for the rest we won't get WM_CHAR later so we do
3179 // need to generate the event right now.
3180 wxKeyEvent
event(wxEVT_CHAR
);
3181 InitAnyKeyEvent(event
, wParam
, lParam
);
3183 // Set the "extended" bit in lParam because we want to
3184 // generate CHAR events with WXK_HOME and not
3185 // WXK_NUMPAD_HOME even if the "Home" key on numpad was
3187 event
.m_keyCode
= wxMSWKeyboard::VKToWX
3190 lParam
| (KF_EXTENDED
<< 16)
3193 // Don't produce events without any valid character
3194 // code (even if this shouldn't normally happen...).
3195 if ( event
.m_keyCode
!= WXK_NONE
)
3196 processed
= HandleWindowEvent(event
);
3199 if (message
== WM_SYSKEYDOWN
) // Let Windows still handle the SYSKEYs
3206 // special case of VK_APPS: treat it the same as right mouse button
3207 if ( wParam
== VK_APPS
)
3209 processed
= HandleMouseEvent(WM_RBUTTONUP
, -1, -1, 0);
3214 processed
= HandleKeyUp((WORD
) wParam
, lParam
);
3219 case WM_CHAR
: // Always an ASCII character
3220 if ( m_lastKeydownProcessed
)
3222 // The key was handled in the EVT_KEY_DOWN and handling
3223 // a key in an EVT_KEY_DOWN handler is meant, by
3224 // design, to prevent EVT_CHARs from happening
3225 m_lastKeydownProcessed
= false;
3230 processed
= HandleChar((WORD
)wParam
, lParam
);
3234 case WM_IME_STARTCOMPOSITION
:
3235 // IME popup needs Escape as it should undo the changes in its
3236 // entry window instead of e.g. closing the dialog for which the
3237 // IME is used (and losing all the changes in the IME window).
3238 gs_modalEntryWindowCount
++;
3241 case WM_IME_ENDCOMPOSITION
:
3242 gs_modalEntryWindowCount
--;
3247 processed
= HandleHotKey((WORD
)wParam
, lParam
);
3249 #endif // wxUSE_HOTKEY
3254 processed
= HandleClipboardEvent(message
);
3262 UnpackScroll(wParam
, lParam
, &code
, &pos
, &hwnd
);
3264 processed
= MSWOnScroll(message
== WM_HSCROLL
? wxHORIZONTAL
3270 // CTLCOLOR messages are sent by children to query the parent for their
3272 #ifndef __WXMICROWIN__
3273 case WM_CTLCOLORMSGBOX
:
3274 case WM_CTLCOLOREDIT
:
3275 case WM_CTLCOLORLISTBOX
:
3276 case WM_CTLCOLORBTN
:
3277 case WM_CTLCOLORDLG
:
3278 case WM_CTLCOLORSCROLLBAR
:
3279 case WM_CTLCOLORSTATIC
:
3283 UnpackCtlColor(wParam
, lParam
, &hdc
, &hwnd
);
3285 processed
= HandleCtlColor(&rc
.hBrush
, (WXHDC
)hdc
, (WXHWND
)hwnd
);
3288 #endif // !__WXMICROWIN__
3290 case WM_SYSCOLORCHANGE
:
3291 // the return value for this message is ignored
3292 processed
= HandleSysColorChange();
3295 #if !defined(__WXWINCE__)
3296 case WM_DISPLAYCHANGE
:
3297 processed
= HandleDisplayChange();
3301 case WM_PALETTECHANGED
:
3302 processed
= HandlePaletteChanged((WXHWND
)wParam
);
3305 case WM_CAPTURECHANGED
:
3306 processed
= HandleCaptureChanged((WXHWND
)lParam
);
3309 case WM_SETTINGCHANGE
:
3310 processed
= HandleSettingChange(wParam
, lParam
);
3313 case WM_QUERYNEWPALETTE
:
3314 processed
= HandleQueryNewPalette();
3319 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
3320 // check if an override was configured for this window
3321 EraseBgHooks::const_iterator it
= gs_eraseBgHooks
.find(this);
3322 if ( it
!= gs_eraseBgHooks
.end() )
3323 processed
= it
->second
->MSWEraseBgHook((WXHDC
)wParam
);
3325 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
3326 processed
= HandleEraseBkgnd((WXHDC
)wParam
);
3331 // we processed the message, i.e. erased the background
3336 #if !defined(__WXWINCE__)
3338 processed
= HandleDropFiles(wParam
);
3343 processed
= HandleInitDialog((WXHWND
)wParam
);
3347 // we never set focus from here
3352 #if !defined(__WXWINCE__)
3353 case WM_QUERYENDSESSION
:
3354 processed
= HandleQueryEndSession(lParam
, &rc
.allow
);
3358 processed
= HandleEndSession(wParam
!= 0, lParam
);
3361 case WM_GETMINMAXINFO
:
3362 processed
= HandleGetMinMaxInfo((MINMAXINFO
*)lParam
);
3367 processed
= HandleSetCursor((WXHWND
)wParam
,
3368 LOWORD(lParam
), // hit test
3369 HIWORD(lParam
)); // mouse msg
3373 // returning TRUE stops the DefWindowProc() from further
3374 // processing this message - exactly what we need because we've
3375 // just set the cursor.
3380 #if wxUSE_ACCESSIBILITY
3383 //WPARAM dwFlags = (WPARAM) (DWORD) wParam;
3384 LPARAM dwObjId
= (LPARAM
) (DWORD
) lParam
;
3386 if (dwObjId
== (LPARAM
)OBJID_CLIENT
&& GetOrCreateAccessible())
3388 return LresultFromObject(IID_IAccessible
, wParam
, (IUnknown
*) GetAccessible()->GetIAccessible());
3394 #if defined(WM_HELP)
3397 // by default, WM_HELP is propagated by DefWindowProc() upwards
3398 // to the window parent but as we do it ourselves already
3399 // (wxHelpEvent is derived from wxCommandEvent), we don't want
3400 // to get the other events if we process this message at all
3403 // WM_HELP doesn't use lParam under CE
3405 HELPINFO
* info
= (HELPINFO
*) lParam
;
3406 if ( info
->iContextType
== HELPINFO_WINDOW
)
3408 #endif // !__WXWINCE__
3409 wxHelpEvent helpEvent
3414 wxGetMousePosition() // what else?
3416 wxPoint(info
->MousePos
.x
, info
->MousePos
.y
)
3420 helpEvent
.SetEventObject(this);
3421 HandleWindowEvent(helpEvent
);
3424 else if ( info
->iContextType
== HELPINFO_MENUITEM
)
3426 wxHelpEvent
helpEvent(wxEVT_HELP
, info
->iCtrlId
);
3427 helpEvent
.SetEventObject(this);
3428 HandleWindowEvent(helpEvent
);
3431 else // unknown help event?
3435 #endif // !__WXWINCE__
3440 #if !defined(__WXWINCE__)
3441 case WM_CONTEXTMENU
:
3443 // we don't convert from screen to client coordinates as
3444 // the event may be handled by a parent window
3445 wxPoint
pt(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
3447 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
, GetId(), pt
);
3449 // we could have got an event from our child, reflect it back
3450 // to it if this is the case
3451 wxWindowMSW
*win
= NULL
;
3452 WXHWND hWnd
= (WXHWND
)wParam
;
3453 if ( hWnd
!= m_hWnd
)
3455 win
= FindItemByHWND(hWnd
);
3461 evtCtx
.SetEventObject(win
);
3462 processed
= win
->HandleWindowEvent(evtCtx
);
3469 // we're only interested in our own menus, not MF_SYSMENU
3470 if ( HIWORD(wParam
) == MF_POPUP
)
3472 // handle menu chars for ownerdrawn menu items
3473 int i
= HandleMenuChar(toupper(LOWORD(wParam
)), lParam
);
3474 if ( i
!= wxNOT_FOUND
)
3476 rc
.result
= MAKELRESULT(i
, MNC_EXECUTE
);
3481 #endif // wxUSE_MENUS
3484 case WM_POWERBROADCAST
:
3487 processed
= HandlePower(wParam
, lParam
, &vetoed
);
3488 rc
.result
= processed
&& vetoed
? BROADCAST_QUERY_DENY
: TRUE
;
3491 #endif // __WXWINCE__
3494 // If we want the default themed border then we need to draw it ourselves
3497 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
3498 const wxBorder border
= TranslateBorder(GetBorder());
3499 if (theme
&& border
== wxBORDER_THEME
)
3501 // first ask the widget to calculate the border size
3502 rc
.result
= MSWDefWindowProc(message
, wParam
, lParam
);
3505 // now alter the client size making room for drawing a
3508 NCCALCSIZE_PARAMS
*csparam
= NULL
;
3511 csparam
= (NCCALCSIZE_PARAMS
*)lParam
;
3512 rect
= &csparam
->rgrc
[0];
3516 rect
= (RECT
*)lParam
;
3519 wxUxThemeHandle
hTheme((const wxWindow
*)this, L
"EDIT");
3520 RECT rcClient
= { 0, 0, 0, 0 };
3521 wxClientDC
dc((wxWindow
*)this);
3522 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
3524 if ( theme
->GetThemeBackgroundContentRect
3531 &rcClient
) == S_OK
)
3533 InflateRect(&rcClient
, -1, -1);
3535 csparam
->rgrc
[0] = rcClient
;
3537 *((RECT
*)lParam
) = rcClient
;
3539 // WVR_REDRAW triggers a bug whereby child windows are moved up and left,
3541 // rc.result = WVR_REDRAW;
3549 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
3550 const wxBorder border
= TranslateBorder(GetBorder());
3551 if (theme
&& border
== wxBORDER_THEME
)
3553 // first ask the widget to paint its non-client area, such as scrollbars, etc.
3554 rc
.result
= MSWDefWindowProc(message
, wParam
, lParam
);
3557 wxUxThemeHandle
hTheme((const wxWindow
*)this, L
"EDIT");
3558 wxWindowDC
dc((wxWindow
*)this);
3559 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
3561 // Clip the DC so that you only draw on the non-client area
3563 wxCopyRectToRECT(GetSize(), rcBorder
);
3566 theme
->GetThemeBackgroundContentRect(
3567 hTheme
, GetHdcOf(*impl
), EP_EDITTEXT
, ETS_NORMAL
, &rcBorder
, &rcClient
);
3568 InflateRect(&rcClient
, -1, -1);
3570 ::ExcludeClipRect(GetHdcOf(*impl
), rcClient
.left
, rcClient
.top
,
3571 rcClient
.right
, rcClient
.bottom
);
3573 // Make sure the background is in a proper state
3574 if (theme
->IsThemeBackgroundPartiallyTransparent(hTheme
, EP_EDITTEXT
, ETS_NORMAL
))
3576 theme
->DrawThemeParentBackground(GetHwnd(), GetHdcOf(*impl
), &rcBorder
);
3582 nState
= ETS_DISABLED
;
3583 // should we check this?
3584 //else if ( ::GetWindowLong(GetHwnd(), GWL_STYLE) & ES_READONLY)
3585 // nState = ETS_READONLY;
3587 nState
= ETS_NORMAL
;
3588 theme
->DrawThemeBackground(hTheme
, GetHdcOf(*impl
), EP_EDITTEXT
, nState
, &rcBorder
, NULL
);
3593 #endif // wxUSE_UXTHEME
3596 // try a custom message handler
3597 const MSWMessageHandlers::const_iterator
3598 i
= gs_messageHandlers
.find(message
);
3599 if ( i
!= gs_messageHandlers
.end() )
3601 processed
= (*i
->second
)(this, message
, wParam
, lParam
);
3608 *result
= rc
.result
;
3613 WXLRESULT
wxWindowMSW::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
3616 if ( !MSWHandleMessage(&result
, message
, wParam
, lParam
) )
3618 #if wxDEBUG_LEVEL >= 2
3619 wxLogTrace("winmsg", wxT("Forwarding %s to DefWindowProc."),
3620 wxGetMessageName(message
));
3621 #endif // wxDEBUG_LEVEL >= 2
3622 result
= MSWDefWindowProc(message
, wParam
, lParam
);
3628 // ----------------------------------------------------------------------------
3629 // wxWindow <-> HWND map
3630 // ----------------------------------------------------------------------------
3632 wxWindow
*wxFindWinFromHandle(HWND hwnd
)
3634 WindowHandles::const_iterator i
= gs_windowHandles
.find(hwnd
);
3635 return i
== gs_windowHandles
.end() ? NULL
: i
->second
;
3638 void wxAssociateWinWithHandle(HWND hwnd
, wxWindowMSW
*win
)
3640 // adding NULL hwnd is (first) surely a result of an error and
3641 // (secondly) breaks menu command processing
3642 wxCHECK_RET( hwnd
!= (HWND
)NULL
,
3643 wxT("attempt to add a NULL hwnd to window list ignored") );
3646 WindowHandles::const_iterator i
= gs_windowHandles
.find(hwnd
);
3647 if ( i
!= gs_windowHandles
.end() )
3649 if ( i
->second
!= win
)
3653 wxT("HWND %p already associated with another window (%s)"),
3654 hwnd
, win
->GetClassInfo()->GetClassName()
3658 //else: this actually happens currently because we associate the window
3659 // with its HWND during creation (if we create it) and also when
3660 // SubclassWin() is called later, this is ok
3662 #endif // wxDEBUG_LEVEL
3664 gs_windowHandles
[hwnd
] = (wxWindow
*)win
;
3667 void wxRemoveHandleAssociation(wxWindowMSW
*win
)
3669 gs_windowHandles
.erase(GetHwndOf(win
));
3672 // ----------------------------------------------------------------------------
3673 // various MSW speciic class dependent functions
3674 // ----------------------------------------------------------------------------
3676 // Default destroyer - override if you destroy it in some other way
3677 // (e.g. with MDI child windows)
3678 void wxWindowMSW::MSWDestroyWindow()
3682 void wxWindowMSW::MSWGetCreateWindowCoords(const wxPoint
& pos
,
3685 int& w
, int& h
) const
3687 // CW_USEDEFAULT can't be used for child windows so just position them at
3688 // the origin by default
3689 x
= pos
.x
== wxDefaultCoord
? 0 : pos
.x
;
3690 y
= pos
.y
== wxDefaultCoord
? 0 : pos
.y
;
3692 AdjustForParentClientOrigin(x
, y
);
3694 // We don't have any clearly good choice for the size by default neither
3695 // but we must use something non-zero.
3696 w
= WidthDefault(size
.x
);
3697 h
= HeightDefault(size
.y
);
3700 NB: there used to be some code here which set the initial size of the
3701 window to the client size of the parent if no explicit size was
3702 specified. This was wrong because wxWidgets programs often assume
3703 that they get a WM_SIZE (EVT_SIZE) upon creation, however this broke
3704 it. To see why, you should understand that Windows sends WM_SIZE from
3705 inside ::CreateWindow() anyhow. However, ::CreateWindow() is called
3706 from some base class ctor and so this WM_SIZE is not processed in the
3707 real class' OnSize() (because it's not fully constructed yet and the
3708 event goes to some base class OnSize() instead). So the WM_SIZE we
3709 rely on is the one sent when the parent frame resizes its children
3710 but here is the problem: if the child already has just the right
3711 size, nothing will happen as both wxWidgets and Windows check for
3712 this and ignore any attempts to change the window size to the size it
3713 already has - so no WM_SIZE would be sent.
3717 WXHWND
wxWindowMSW::MSWGetParent() const
3719 return m_parent
? m_parent
->GetHWND() : WXHWND(NULL
);
3722 bool wxWindowMSW::MSWCreate(const wxChar
*wclass
,
3723 const wxChar
*title
,
3727 WXDWORD extendedStyle
)
3729 // check a common bug in the user code: if the window is created with a
3730 // non-default ctor and Create() is called too, we'd create 2 HWND for a
3731 // single wxWindow object and this results in all sorts of trouble,
3732 // especially for wxTLWs
3733 wxCHECK_MSG( !m_hWnd
, true, "window can't be recreated" );
3735 // this can happen if this function is called using the return value of
3736 // wxApp::GetRegisteredClassName() which failed
3737 wxCHECK_MSG( wclass
, false, "failed to register window class?" );
3740 // choose the position/size for the new window
3742 (void)MSWGetCreateWindowCoords(pos
, size
, x
, y
, w
, h
);
3744 // controlId is menu handle for the top level windows, so set it to 0
3745 // unless we're creating a child window
3746 int controlId
= style
& WS_CHILD
? GetId() : 0;
3748 // for each class "Foo" we have we also have "FooNR" ("no repaint") class
3749 // which is the same but without CS_[HV]REDRAW class styles so using it
3750 // ensures that the window is not fully repainted on each resize
3751 wxString
className(wclass
);
3752 if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE
) )
3754 className
+= wxApp::GetNoRedrawClassSuffix();
3757 // do create the window
3758 wxWindowCreationHook
hook(this);
3760 m_hWnd
= (WXHWND
)::CreateWindowEx
3764 title
? title
: m_windowName
.wx_str(),
3767 (HWND
)MSWGetParent(),
3768 (HMENU
)wxUIntToPtr(controlId
),
3770 NULL
// no extra data
3775 wxLogSysError(_("Can't create window of class %s"), className
.c_str());
3780 SubclassWin(m_hWnd
);
3785 // ===========================================================================
3786 // MSW message handlers
3787 // ===========================================================================
3789 // ---------------------------------------------------------------------------
3791 // ---------------------------------------------------------------------------
3793 bool wxWindowMSW::HandleNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
3795 #ifndef __WXMICROWIN__
3796 LPNMHDR hdr
= (LPNMHDR
)lParam
;
3797 HWND hWnd
= hdr
->hwndFrom
;
3798 wxWindow
*win
= wxFindWinFromHandle(hWnd
);
3800 // if the control is one of our windows, let it handle the message itself
3803 return win
->MSWOnNotify(idCtrl
, lParam
, result
);
3806 // VZ: why did we do it? normally this is unnecessary and, besides, it
3807 // breaks the message processing for the toolbars because the tooltip
3808 // notifications were being forwarded to the toolbar child controls
3809 // (if it had any) before being passed to the toolbar itself, so in my
3810 // example the tooltip for the combobox was always shown instead of the
3811 // correct button tooltips
3813 // try all our children
3814 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3817 wxWindow
*child
= node
->GetData();
3818 if ( child
->MSWOnNotify(idCtrl
, lParam
, result
) )
3823 node
= node
->GetNext();
3827 // by default, handle it ourselves
3828 return MSWOnNotify(idCtrl
, lParam
, result
);
3829 #else // __WXMICROWIN__
3836 bool wxWindowMSW::HandleTooltipNotify(WXUINT code
,
3838 const wxString
& ttip
)
3840 // I don't know why it happens, but the versions of comctl32.dll starting
3841 // from 4.70 sometimes send TTN_NEEDTEXTW even to ANSI programs (normally,
3842 // this message is supposed to be sent to Unicode programs only) -- hence
3843 // we need to handle it as well, otherwise no tooltips will be shown in
3846 if ( !(code
== (WXUINT
) TTN_NEEDTEXTA
|| code
== (WXUINT
) TTN_NEEDTEXTW
)
3849 // not a tooltip message or no tooltip to show anyhow
3854 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
3856 // We don't want to use the szText buffer because it has a limit of 80
3857 // bytes and this is not enough, especially for Unicode build where it
3858 // limits the tooltip string length to only 40 characters
3860 // The best would be, of course, to not impose any length limitations at
3861 // all but then the buffer would have to be dynamic and someone would have
3862 // to free it and we don't have the tooltip owner object here any more, so
3863 // for now use our own static buffer with a higher fixed max length.
3865 // Note that using a static buffer should not be a problem as only a single
3866 // tooltip can be shown at the same time anyhow.
3868 if ( code
== (WXUINT
) TTN_NEEDTEXTW
)
3870 // We need to convert tooltip from multi byte to Unicode on the fly.
3871 static wchar_t buf
[513];
3873 // Truncate tooltip length if needed as otherwise we might not have
3874 // enough space for it in the buffer and MultiByteToWideChar() would
3876 size_t tipLength
= wxMin(ttip
.length(), WXSIZEOF(buf
) - 1);
3878 // Convert to WideChar without adding the NULL character. The NULL
3879 // character is added afterwards (this is more efficient).
3880 int len
= ::MultiByteToWideChar
3892 wxLogLastError(wxT("MultiByteToWideChar()"));
3896 ttText
->lpszText
= (LPSTR
) buf
;
3898 else // TTN_NEEDTEXTA
3899 #endif // !wxUSE_UNICODE
3901 // we get here if we got TTN_NEEDTEXTA (only happens in ANSI build) or
3902 // if we got TTN_NEEDTEXTW in Unicode build: in this case we just have
3903 // to copy the string we have into the buffer
3904 static wxChar buf
[513];
3905 wxStrlcpy(buf
, ttip
.c_str(), WXSIZEOF(buf
));
3906 ttText
->lpszText
= buf
;
3912 #endif // wxUSE_TOOLTIPS
3914 bool wxWindowMSW::MSWOnNotify(int WXUNUSED(idCtrl
),
3916 WXLPARAM
* WXUNUSED(result
))
3921 NMHDR
* hdr
= (NMHDR
*)lParam
;
3922 if ( HandleTooltipNotify(hdr
->code
, lParam
, m_tooltip
->GetTip()))
3929 wxUnusedVar(lParam
);
3930 #endif // wxUSE_TOOLTIPS
3935 // ---------------------------------------------------------------------------
3936 // end session messages
3937 // ---------------------------------------------------------------------------
3939 bool wxWindowMSW::HandleQueryEndSession(long logOff
, bool *mayEnd
)
3941 #ifdef ENDSESSION_LOGOFF
3942 wxCloseEvent
event(wxEVT_QUERY_END_SESSION
, wxID_ANY
);
3943 event
.SetEventObject(wxTheApp
);
3944 event
.SetCanVeto(true);
3945 event
.SetLoggingOff(logOff
== (long)ENDSESSION_LOGOFF
);
3947 bool rc
= wxTheApp
->ProcessEvent(event
);
3951 // we may end only if the app didn't veto session closing (double
3953 *mayEnd
= !event
.GetVeto();
3958 wxUnusedVar(logOff
);
3959 wxUnusedVar(mayEnd
);
3964 bool wxWindowMSW::HandleEndSession(bool endSession
, long logOff
)
3966 #ifdef ENDSESSION_LOGOFF
3967 // do nothing if the session isn't ending
3972 if ( (this != wxTheApp
->GetTopWindow()) )
3975 wxCloseEvent
event(wxEVT_END_SESSION
, wxID_ANY
);
3976 event
.SetEventObject(wxTheApp
);
3977 event
.SetCanVeto(false);
3978 event
.SetLoggingOff((logOff
& ENDSESSION_LOGOFF
) != 0);
3980 return wxTheApp
->ProcessEvent(event
);
3982 wxUnusedVar(endSession
);
3983 wxUnusedVar(logOff
);
3988 // ---------------------------------------------------------------------------
3989 // window creation/destruction
3990 // ---------------------------------------------------------------------------
3992 bool wxWindowMSW::HandleCreate(WXLPCREATESTRUCT
WXUNUSED_IN_WINCE(cs
),
3995 // VZ: why is this commented out for WinCE? If it doesn't support
3996 // WS_EX_CONTROLPARENT at all it should be somehow handled globally,
3997 // not with multiple #ifdef's!
3999 if ( ((CREATESTRUCT
*)cs
)->dwExStyle
& WS_EX_CONTROLPARENT
)
4000 EnsureParentHasControlParentStyle(GetParent());
4001 #endif // !__WXWINCE__
4008 bool wxWindowMSW::HandleDestroy()
4010 // delete our drop target if we've got one
4011 #if wxUSE_DRAG_AND_DROP
4012 if ( m_dropTarget
!= NULL
)
4014 m_dropTarget
->Revoke(m_hWnd
);
4016 wxDELETE(m_dropTarget
);
4018 #endif // wxUSE_DRAG_AND_DROP
4020 // WM_DESTROY handled
4024 // ---------------------------------------------------------------------------
4026 // ---------------------------------------------------------------------------
4028 bool wxWindowMSW::HandleActivate(int state
,
4029 bool WXUNUSED(minimized
),
4030 WXHWND
WXUNUSED(activate
))
4032 wxActivateEvent
event(wxEVT_ACTIVATE
,
4033 (state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
),
4035 event
.SetEventObject(this);
4037 return HandleWindowEvent(event
);
4040 bool wxWindowMSW::HandleSetFocus(WXHWND hwnd
)
4042 // Strangly enough, some controls get set focus events when they are being
4043 // deleted, even if they already had focus before.
4044 if ( m_isBeingDeleted
)
4049 // notify the parent keeping track of focus for the kbd navigation
4050 // purposes that we got it
4051 wxChildFocusEvent
eventFocus((wxWindow
*)this);
4052 (void)HandleWindowEvent(eventFocus
);
4058 m_caret
->OnSetFocus();
4060 #endif // wxUSE_CARET
4062 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
4063 event
.SetEventObject(this);
4065 // wxFindWinFromHandle() may return NULL, it is ok
4066 event
.SetWindow(wxFindWinFromHandle(hwnd
));
4068 return HandleWindowEvent(event
);
4071 bool wxWindowMSW::HandleKillFocus(WXHWND hwnd
)
4077 m_caret
->OnKillFocus();
4079 #endif // wxUSE_CARET
4081 // Don't send the event when in the process of being deleted. This can
4082 // only cause problems if the event handler tries to access the object.
4083 if ( m_isBeingDeleted
)
4088 wxFocusEvent
event(wxEVT_KILL_FOCUS
, m_windowId
);
4089 event
.SetEventObject(this);
4091 // wxFindWinFromHandle() may return NULL, it is ok
4092 event
.SetWindow(wxFindWinFromHandle(hwnd
));
4094 return HandleWindowEvent(event
);
4097 // ---------------------------------------------------------------------------
4099 // ---------------------------------------------------------------------------
4101 void wxWindowMSW::SetLabel( const wxString
& label
)
4103 SetWindowText(GetHwnd(), label
.c_str());
4106 wxString
wxWindowMSW::GetLabel() const
4108 return wxGetWindowText(GetHWND());
4111 // ---------------------------------------------------------------------------
4113 // ---------------------------------------------------------------------------
4115 bool wxWindowMSW::HandleShow(bool show
, int WXUNUSED(status
))
4117 wxShowEvent
event(GetId(), show
);
4118 event
.SetEventObject(this);
4120 return HandleWindowEvent(event
);
4123 bool wxWindowMSW::HandleInitDialog(WXHWND
WXUNUSED(hWndFocus
))
4125 wxInitDialogEvent
event(GetId());
4126 event
.SetEventObject(this);
4128 return HandleWindowEvent(event
);
4131 bool wxWindowMSW::HandleDropFiles(WXWPARAM wParam
)
4133 #if defined (__WXMICROWIN__) || defined(__WXWINCE__)
4134 wxUnusedVar(wParam
);
4136 #else // __WXMICROWIN__
4137 HDROP hFilesInfo
= (HDROP
) wParam
;
4139 // Get the total number of files dropped
4140 UINT gwFilesDropped
= ::DragQueryFile
4148 wxString
*files
= new wxString
[gwFilesDropped
];
4149 for ( UINT wIndex
= 0; wIndex
< gwFilesDropped
; wIndex
++ )
4151 // first get the needed buffer length (+1 for terminating NUL)
4152 size_t len
= ::DragQueryFile(hFilesInfo
, wIndex
, NULL
, 0) + 1;
4154 // and now get the file name
4155 ::DragQueryFile(hFilesInfo
, wIndex
,
4156 wxStringBuffer(files
[wIndex
], len
), len
);
4159 wxDropFilesEvent
event(wxEVT_DROP_FILES
, gwFilesDropped
, files
);
4160 event
.SetEventObject(this);
4163 DragQueryPoint(hFilesInfo
, (LPPOINT
) &dropPoint
);
4164 event
.m_pos
.x
= dropPoint
.x
;
4165 event
.m_pos
.y
= dropPoint
.y
;
4167 DragFinish(hFilesInfo
);
4169 return HandleWindowEvent(event
);
4174 bool wxWindowMSW::HandleSetCursor(WXHWND
WXUNUSED(hWnd
),
4176 int WXUNUSED(mouseMsg
))
4178 #ifndef __WXMICROWIN__
4179 // the logic is as follows:
4180 // 0. if we're busy, set the busy cursor (even for non client elements)
4181 // 1. don't set custom cursor for non client area of enabled windows
4182 // 2. ask user EVT_SET_CURSOR handler for the cursor
4183 // 3. if still no cursor but we're in a TLW, set the global cursor
4185 HCURSOR hcursor
= 0;
4188 hcursor
= wxGetCurrentBusyCursor();
4192 if ( nHitTest
!= HTCLIENT
)
4195 // first ask the user code - it may wish to set the cursor in some very
4196 // specific way (for example, depending on the current position)
4198 wxGetCursorPosMSW(&pt
);
4202 ScreenToClient(&x
, &y
);
4203 wxSetCursorEvent
event(x
, y
);
4204 event
.SetId(GetId());
4205 event
.SetEventObject(this);
4207 bool processedEvtSetCursor
= HandleWindowEvent(event
);
4208 if ( processedEvtSetCursor
&& event
.HasCursor() )
4210 hcursor
= GetHcursorOf(event
.GetCursor());
4215 // the test for processedEvtSetCursor is here to prevent using
4216 // m_cursor if the user code caught EVT_SET_CURSOR() and returned
4217 // nothing from it - this is a way to say that our cursor shouldn't
4218 // be used for this point
4219 if ( !processedEvtSetCursor
&& m_cursor
.IsOk() )
4221 hcursor
= GetHcursorOf(m_cursor
);
4224 if ( !hcursor
&& !GetParent() )
4226 const wxCursor
*cursor
= wxGetGlobalCursor();
4227 if ( cursor
&& cursor
->IsOk() )
4229 hcursor
= GetHcursorOf(*cursor
);
4238 ::SetCursor(hcursor
);
4240 // cursor set, stop here
4243 #endif // __WXMICROWIN__
4245 // pass up the window chain
4249 bool wxWindowMSW::HandlePower(WXWPARAM
WXUNUSED_IN_WINCE(wParam
),
4250 WXLPARAM
WXUNUSED(lParam
),
4251 bool *WXUNUSED_IN_WINCE(vetoed
))
4257 wxEventType evtType
;
4260 case PBT_APMQUERYSUSPEND
:
4261 evtType
= wxEVT_POWER_SUSPENDING
;
4264 case PBT_APMQUERYSUSPENDFAILED
:
4265 evtType
= wxEVT_POWER_SUSPEND_CANCEL
;
4268 case PBT_APMSUSPEND
:
4269 evtType
= wxEVT_POWER_SUSPENDED
;
4272 case PBT_APMRESUMESUSPEND
:
4273 evtType
= wxEVT_POWER_RESUME
;
4277 wxLogDebug(wxT("Unknown WM_POWERBROADCAST(%d) event"), wParam
);
4280 // these messages are currently not mapped to wx events
4281 case PBT_APMQUERYSTANDBY
:
4282 case PBT_APMQUERYSTANDBYFAILED
:
4283 case PBT_APMSTANDBY
:
4284 case PBT_APMRESUMESTANDBY
:
4285 case PBT_APMBATTERYLOW
:
4286 case PBT_APMPOWERSTATUSCHANGE
:
4287 case PBT_APMOEMEVENT
:
4288 case PBT_APMRESUMECRITICAL
:
4289 #ifdef PBT_APMRESUMEAUTOMATIC
4290 case PBT_APMRESUMEAUTOMATIC
:
4292 evtType
= wxEVT_NULL
;
4296 // don't handle unknown messages
4297 if ( evtType
== wxEVT_NULL
)
4300 // TODO: notify about PBTF_APMRESUMEFROMFAILURE in case of resume events?
4302 wxPowerEvent
event(evtType
);
4303 if ( !HandleWindowEvent(event
) )
4306 *vetoed
= event
.IsVetoed();
4312 bool wxWindowMSW::IsDoubleBuffered() const
4314 for ( const wxWindowMSW
*win
= this; win
; win
= win
->GetParent() )
4316 if ( wxHasWindowExStyle(win
, WS_EX_COMPOSITED
) )
4319 if ( win
->IsTopLevel() )
4326 void wxWindowMSW::SetDoubleBuffered(bool on
)
4328 // Get the current extended style bits
4329 long exstyle
= wxGetWindowExStyle(this);
4331 // Twiddle the bit as needed
4333 exstyle
|= WS_EX_COMPOSITED
;
4335 exstyle
&= ~WS_EX_COMPOSITED
;
4338 wxSetWindowExStyle(this, exstyle
);
4341 // ---------------------------------------------------------------------------
4342 // owner drawn stuff
4343 // ---------------------------------------------------------------------------
4345 #if (wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE) || \
4346 (wxUSE_CONTROLS && !defined(__WXUNIVERSAL__))
4347 #define WXUNUSED_UNLESS_ODRAWN(param) param
4349 #define WXUNUSED_UNLESS_ODRAWN(param)
4353 wxWindowMSW::MSWOnDrawItem(int WXUNUSED_UNLESS_ODRAWN(id
),
4354 WXDRAWITEMSTRUCT
* WXUNUSED_UNLESS_ODRAWN(itemStruct
))
4356 #if wxUSE_OWNER_DRAWN
4358 #if wxUSE_MENUS_NATIVE
4359 // is it a menu item?
4360 DRAWITEMSTRUCT
*pDrawStruct
= (DRAWITEMSTRUCT
*)itemStruct
;
4361 if ( id
== 0 && pDrawStruct
->CtlType
== ODT_MENU
)
4363 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pDrawStruct
->itemData
);
4365 // see comment before the same test in MSWOnMeasureItem() below
4369 wxCHECK_MSG( wxDynamicCast(pMenuItem
, wxMenuItem
),
4370 false, wxT("MSWOnDrawItem: bad wxMenuItem pointer") );
4372 // prepare to call OnDrawItem(): notice using of wxDCTemp to prevent
4373 // the DC from being released
4374 wxDCTemp
dc((WXHDC
)pDrawStruct
->hDC
);
4375 wxRect
rect(pDrawStruct
->rcItem
.left
, pDrawStruct
->rcItem
.top
,
4376 pDrawStruct
->rcItem
.right
- pDrawStruct
->rcItem
.left
,
4377 pDrawStruct
->rcItem
.bottom
- pDrawStruct
->rcItem
.top
);
4379 return pMenuItem
->OnDrawItem
4383 (wxOwnerDrawn::wxODAction
)pDrawStruct
->itemAction
,
4384 (wxOwnerDrawn::wxODStatus
)pDrawStruct
->itemState
4387 #endif // wxUSE_MENUS_NATIVE
4389 #endif // USE_OWNER_DRAWN
4391 #if wxUSE_CONTROLS && !defined(__WXUNIVERSAL__)
4393 #if wxUSE_OWNER_DRAWN
4394 wxControl
*item
= wxDynamicCast(FindItem(id
), wxControl
);
4395 #else // !wxUSE_OWNER_DRAWN
4396 // we may still have owner-drawn buttons internally because we have to make
4397 // them owner-drawn to support colour change
4400 wxDynamicCast(FindItem(id
), wxButton
)
4405 #endif // USE_OWNER_DRAWN
4409 return item
->MSWOnDraw(itemStruct
);
4412 #endif // wxUSE_CONTROLS
4418 wxWindowMSW::MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*itemStruct
)
4420 #if wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
4421 // is it a menu item?
4422 MEASUREITEMSTRUCT
*pMeasureStruct
= (MEASUREITEMSTRUCT
*)itemStruct
;
4423 if ( id
== 0 && pMeasureStruct
->CtlType
== ODT_MENU
)
4425 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pMeasureStruct
->itemData
);
4427 // according to Carsten Fuchs the pointer may be NULL under XP if an
4428 // MDI child frame is initially maximized, see this for more info:
4429 // http://article.gmane.org/gmane.comp.lib.wxwidgets.general/27745
4431 // so silently ignore it instead of asserting
4435 wxCHECK_MSG( wxDynamicCast(pMenuItem
, wxMenuItem
),
4436 false, wxT("MSWOnMeasureItem: bad wxMenuItem pointer") );
4439 bool rc
= pMenuItem
->OnMeasureItem(&w
, &h
);
4441 pMeasureStruct
->itemWidth
= w
;
4442 pMeasureStruct
->itemHeight
= h
;
4447 wxControl
*item
= wxDynamicCast(FindItem(id
), wxControl
);
4450 return item
->MSWOnMeasure(itemStruct
);
4454 wxUnusedVar(itemStruct
);
4455 #endif // wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
4460 // ---------------------------------------------------------------------------
4461 // colours and palettes
4462 // ---------------------------------------------------------------------------
4464 bool wxWindowMSW::HandleSysColorChange()
4466 wxSysColourChangedEvent event
;
4467 event
.SetEventObject(this);
4469 (void)HandleWindowEvent(event
);
4471 // always let the system carry on the default processing to allow the
4472 // native controls to react to the colours update
4476 bool wxWindowMSW::HandleDisplayChange()
4478 wxDisplayChangedEvent event
;
4479 event
.SetEventObject(this);
4481 return HandleWindowEvent(event
);
4484 #ifndef __WXMICROWIN__
4486 bool wxWindowMSW::HandleCtlColor(WXHBRUSH
*brush
, WXHDC hDC
, WXHWND hWnd
)
4488 #if !wxUSE_CONTROLS || defined(__WXUNIVERSAL__)
4492 wxControl
*item
= wxDynamicCast(FindItemByHWND(hWnd
, true), wxControl
);
4495 *brush
= item
->MSWControlColor(hDC
, hWnd
);
4497 #endif // wxUSE_CONTROLS
4500 return *brush
!= NULL
;
4503 #endif // __WXMICROWIN__
4505 bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange
)
4508 // same as below except we don't respond to our own messages
4509 if ( hWndPalChange
!= GetHWND() )
4511 // check to see if we our our parents have a custom palette
4512 wxWindowMSW
*win
= this;
4513 while ( win
&& !win
->HasCustomPalette() )
4515 win
= win
->GetParent();
4518 if ( win
&& win
->HasCustomPalette() )
4520 // realize the palette to see whether redrawing is needed
4521 HDC hdc
= ::GetDC((HWND
) hWndPalChange
);
4522 win
->m_palette
.SetHPALETTE((WXHPALETTE
)
4523 ::SelectPalette(hdc
, GetHpaletteOf(win
->m_palette
), FALSE
));
4525 int result
= ::RealizePalette(hdc
);
4527 // restore the palette (before releasing the DC)
4528 win
->m_palette
.SetHPALETTE((WXHPALETTE
)
4529 ::SelectPalette(hdc
, GetHpaletteOf(win
->m_palette
), FALSE
));
4530 ::RealizePalette(hdc
);
4531 ::ReleaseDC((HWND
) hWndPalChange
, hdc
);
4533 // now check for the need to redraw
4535 ::InvalidateRect((HWND
) hWndPalChange
, NULL
, TRUE
);
4539 #endif // wxUSE_PALETTE
4541 wxPaletteChangedEvent
event(GetId());
4542 event
.SetEventObject(this);
4543 event
.SetChangedWindow(wxFindWinFromHandle(hWndPalChange
));
4545 return HandleWindowEvent(event
);
4548 bool wxWindowMSW::HandleCaptureChanged(WXHWND hWndGainedCapture
)
4550 // notify windows on the capture stack about lost capture
4551 // (see http://sourceforge.net/tracker/index.php?func=detail&aid=1153662&group_id=9863&atid=109863):
4552 wxWindowBase::NotifyCaptureLost();
4554 wxWindow
*win
= wxFindWinFromHandle(hWndGainedCapture
);
4555 wxMouseCaptureChangedEvent
event(GetId(), win
);
4556 event
.SetEventObject(this);
4557 return HandleWindowEvent(event
);
4560 bool wxWindowMSW::HandleSettingChange(WXWPARAM wParam
, WXLPARAM lParam
)
4562 // despite MSDN saying "(This message cannot be sent directly to a window.)"
4563 // we need to send this to child windows (it is only sent to top-level
4564 // windows) so {list,tree}ctrls can adjust their font size if necessary
4565 // this is exactly how explorer does it to enable the font size changes
4567 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
4570 // top-level windows already get this message from the system
4571 wxWindow
*win
= node
->GetData();
4572 if ( !win
->IsTopLevel() )
4574 ::SendMessage(GetHwndOf(win
), WM_SETTINGCHANGE
, wParam
, lParam
);
4577 node
= node
->GetNext();
4580 // let the system handle it
4584 bool wxWindowMSW::HandleQueryNewPalette()
4588 // check to see if we our our parents have a custom palette
4589 wxWindowMSW
*win
= this;
4590 while (!win
->HasCustomPalette() && win
->GetParent()) win
= win
->GetParent();
4591 if (win
->HasCustomPalette()) {
4592 /* realize the palette to see whether redrawing is needed */
4593 HDC hdc
= ::GetDC((HWND
) GetHWND());
4594 win
->m_palette
.SetHPALETTE( (WXHPALETTE
)
4595 ::SelectPalette(hdc
, (HPALETTE
) win
->m_palette
.GetHPALETTE(), FALSE
) );
4597 int result
= ::RealizePalette(hdc
);
4598 /* restore the palette (before releasing the DC) */
4599 win
->m_palette
.SetHPALETTE( (WXHPALETTE
)
4600 ::SelectPalette(hdc
, (HPALETTE
) win
->m_palette
.GetHPALETTE(), TRUE
) );
4601 ::RealizePalette(hdc
);
4602 ::ReleaseDC((HWND
) GetHWND(), hdc
);
4603 /* now check for the need to redraw */
4605 ::InvalidateRect((HWND
) GetHWND(), NULL
, TRUE
);
4607 #endif // wxUSE_PALETTE
4609 wxQueryNewPaletteEvent
event(GetId());
4610 event
.SetEventObject(this);
4612 return HandleWindowEvent(event
) && event
.GetPaletteRealized();
4615 // Responds to colour changes: passes event on to children.
4616 void wxWindowMSW::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
4618 // the top level window also reset the standard colour map as it might have
4619 // changed (there is no need to do it for the non top level windows as we
4620 // only have to do it once)
4624 gs_hasStdCmap
= false;
4626 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
4629 // Only propagate to non-top-level windows because Windows already
4630 // sends this event to all top-level ones
4631 wxWindow
*win
= node
->GetData();
4632 if ( !win
->IsTopLevel() )
4634 // we need to send the real WM_SYSCOLORCHANGE and not just trigger
4635 // EVT_SYS_COLOUR_CHANGED call because the latter wouldn't work for
4636 // the standard controls
4637 ::SendMessage(GetHwndOf(win
), WM_SYSCOLORCHANGE
, 0, 0);
4640 node
= node
->GetNext();
4644 extern wxCOLORMAP
*wxGetStdColourMap()
4646 static COLORREF s_stdColours
[wxSTD_COL_MAX
];
4647 static wxCOLORMAP s_cmap
[wxSTD_COL_MAX
];
4649 if ( !gs_hasStdCmap
)
4651 static bool s_coloursInit
= false;
4653 if ( !s_coloursInit
)
4655 // When a bitmap is loaded, the RGB values can change (apparently
4656 // because Windows adjusts them to care for the old programs always
4657 // using 0xc0c0c0 while the transparent colour for the new Windows
4658 // versions is different). But we do this adjustment ourselves so
4659 // we want to avoid Windows' "help" and for this we need to have a
4660 // reference bitmap which can tell us what the RGB values change
4662 wxLogNull logNo
; // suppress error if we couldn't load the bitmap
4663 wxBitmap
stdColourBitmap(wxT("wxBITMAP_STD_COLOURS"));
4664 if ( stdColourBitmap
.IsOk() )
4666 // the pixels in the bitmap must correspond to wxSTD_COL_XXX!
4667 wxASSERT_MSG( stdColourBitmap
.GetWidth() == wxSTD_COL_MAX
,
4668 wxT("forgot to update wxBITMAP_STD_COLOURS!") );
4671 memDC
.SelectObject(stdColourBitmap
);
4674 for ( size_t i
= 0; i
< WXSIZEOF(s_stdColours
); i
++ )
4676 memDC
.GetPixel(i
, 0, &colour
);
4677 s_stdColours
[i
] = wxColourToRGB(colour
);
4680 else // wxBITMAP_STD_COLOURS couldn't be loaded
4682 s_stdColours
[0] = RGB(000,000,000); // black
4683 s_stdColours
[1] = RGB(128,128,128); // dark grey
4684 s_stdColours
[2] = RGB(192,192,192); // light grey
4685 s_stdColours
[3] = RGB(255,255,255); // white
4686 //s_stdColours[4] = RGB(000,000,255); // blue
4687 //s_stdColours[5] = RGB(255,000,255); // magenta
4690 s_coloursInit
= true;
4693 gs_hasStdCmap
= true;
4695 // create the colour map
4696 #define INIT_CMAP_ENTRY(col) \
4697 s_cmap[wxSTD_COL_##col].from = s_stdColours[wxSTD_COL_##col]; \
4698 s_cmap[wxSTD_COL_##col].to = ::GetSysColor(COLOR_##col)
4700 INIT_CMAP_ENTRY(BTNTEXT
);
4701 INIT_CMAP_ENTRY(BTNSHADOW
);
4702 INIT_CMAP_ENTRY(BTNFACE
);
4703 INIT_CMAP_ENTRY(BTNHIGHLIGHT
);
4705 #undef INIT_CMAP_ENTRY
4711 #if wxUSE_UXTHEME && !defined(TMT_FILLCOLOR)
4712 #define TMT_FILLCOLOR 3802
4713 #define TMT_TEXTCOLOR 3803
4714 #define TMT_BORDERCOLOR 3801
4717 wxColour
wxWindowMSW::MSWGetThemeColour(const wchar_t *themeName
,
4720 MSWThemeColour themeColour
,
4721 wxSystemColour fallback
) const
4724 const wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
4727 int themeProperty
= 0;
4729 // TODO: Convert this into a table? Sure would be faster.
4730 switch ( themeColour
)
4732 case ThemeColourBackground
:
4733 themeProperty
= TMT_FILLCOLOR
;
4735 case ThemeColourText
:
4736 themeProperty
= TMT_TEXTCOLOR
;
4738 case ThemeColourBorder
:
4739 themeProperty
= TMT_BORDERCOLOR
;
4742 wxFAIL_MSG(wxT("unsupported theme colour"));
4745 wxUxThemeHandle
hTheme((const wxWindow
*)this, themeName
);
4747 HRESULT hr
= theme
->GetThemeColor
4756 if ( SUCCEEDED(hr
) )
4757 return wxRGBToColour(col
);
4761 "GetThemeColor(%s, %i, %i, %i)",
4762 themeName
, themePart
, themeState
, themeProperty
),
4766 wxUnusedVar(themeName
);
4767 wxUnusedVar(themePart
);
4768 wxUnusedVar(themeState
);
4769 wxUnusedVar(themeColour
);
4771 return wxSystemSettings::GetColour(fallback
);
4774 // ---------------------------------------------------------------------------
4776 // ---------------------------------------------------------------------------
4778 // this variable is used to check that a paint event handler which processed
4779 // the event did create a wxPaintDC inside its code and called BeginPaint() to
4780 // validate the invalidated window area as otherwise we'd keep getting an
4781 // endless stream of WM_PAINT messages for this window resulting in a lot of
4782 // difficult to debug problems (e.g. impossibility to repaint other windows,
4783 // lack of timer and idle events and so on)
4784 extern bool wxDidCreatePaintDC
;
4785 bool wxDidCreatePaintDC
= false;
4787 bool wxWindowMSW::HandlePaint()
4789 HRGN hRegion
= ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
4792 wxLogLastError(wxT("CreateRectRgn"));
4794 if ( ::GetUpdateRgn(GetHwnd(), hRegion
, FALSE
) == ERROR
)
4796 wxLogLastError(wxT("GetUpdateRgn"));
4799 m_updateRegion
= wxRegion((WXHRGN
) hRegion
);
4801 wxDidCreatePaintDC
= false;
4803 wxPaintEvent
event(m_windowId
);
4804 event
.SetEventObject(this);
4806 bool processed
= HandleWindowEvent(event
);
4808 if ( processed
&& !wxDidCreatePaintDC
)
4810 // do call MSWDefWindowProc() to validate the update region to avoid
4811 // the problems mentioned above
4815 // note that we must generate NC event after the normal one as otherwise
4816 // BeginPaint() will happily overwrite our decorations with the background
4818 wxNcPaintEvent
eventNc(m_windowId
);
4819 eventNc
.SetEventObject(this);
4820 HandleWindowEvent(eventNc
);
4822 // don't keep an HRGN we don't need any longer (GetUpdateRegion() can only
4823 // be called from inside the event handlers called above)
4824 m_updateRegion
.Clear();
4829 // Can be called from an application's OnPaint handler
4830 void wxWindowMSW::OnPaint(wxPaintEvent
& event
)
4832 #ifdef __WXUNIVERSAL__
4835 HDC hDC
= (HDC
) wxPaintDCImpl::FindDCInCache((wxWindow
*) event
.GetEventObject());
4838 MSWDefWindowProc(WM_PAINT
, (WPARAM
) hDC
, 0);
4843 bool wxWindowMSW::HandleEraseBkgnd(WXHDC hdc
)
4845 switch ( GetBackgroundStyle() )
4847 case wxBG_STYLE_ERASE
:
4848 case wxBG_STYLE_COLOUR
:
4849 // we need to generate an erase background event
4851 wxDCTemp
dc(hdc
, GetClientSize());
4852 wxDCTempImpl
*impl
= (wxDCTempImpl
*) dc
.GetImpl();
4855 impl
->SetWindow((wxWindow
*)this);
4857 wxEraseEvent
event(m_windowId
, &dc
);
4858 event
.SetEventObject(this);
4859 bool rc
= HandleWindowEvent(event
);
4861 // must be called manually as ~wxDC doesn't do anything for
4863 impl
->SelectOldObjects(hdc
);
4867 // background erased by the user-defined handler
4873 case wxBG_STYLE_SYSTEM
:
4874 if ( !DoEraseBackground(hdc
) )
4876 // let the default processing to take place if we didn't erase
4877 // the background ourselves
4882 case wxBG_STYLE_PAINT
:
4883 case wxBG_STYLE_TRANSPARENT
:
4884 // no need to do anything here at all, background will be entirely
4885 // redrawn in WM_PAINT handler
4889 wxFAIL_MSG( "unknown background style" );
4895 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
4897 bool wxWindowMSW::MSWHasEraseBgHook() const
4899 return gs_eraseBgHooks
.find(const_cast<wxWindowMSW
*>(this))
4900 != gs_eraseBgHooks
.end();
4903 void wxWindowMSW::MSWSetEraseBgHook(wxWindow
*child
)
4907 if ( !gs_eraseBgHooks
.insert(
4908 EraseBgHooks::value_type(this, child
)).second
)
4910 wxFAIL_MSG( wxT("Setting erase background hook twice?") );
4913 else // reset the hook
4915 if ( gs_eraseBgHooks
.erase(this) != 1 )
4917 wxFAIL_MSG( wxT("Resetting erase background which was not set?") );
4922 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
4924 bool wxWindowMSW::DoEraseBackground(WXHDC hDC
)
4926 HBRUSH hbr
= (HBRUSH
)MSWGetBgBrush(hDC
);
4930 // erase just the client area of the window, this is important for the
4931 // frames to avoid drawing over the toolbar part of the window (you might
4932 // think using WS_CLIPCHILDREN would prevent this from happening, but it
4935 wxCopyRectToRECT(GetClientRect(), rc
);
4936 ::FillRect((HDC
)hDC
, &rc
, hbr
);
4942 wxWindowMSW::MSWGetBgBrushForChild(WXHDC hDC
, wxWindowMSW
*child
)
4944 // Test for the custom background brush first.
4945 WXHBRUSH hbrush
= MSWGetCustomBgBrush();
4948 // We assume that this is either a stipple or hatched brush and not a
4949 // solid one as otherwise it would have been enough to set the
4950 // background colour and such brushes need to be positioned correctly
4951 // in order to align when different windows are painted, so do it here.
4953 ::GetWindowRect(GetHwndOf(child
), &rc
);
4955 ::MapWindowPoints(NULL
, GetHwnd(), (POINT
*)&rc
, 1);
4957 if ( !::SetBrushOrgEx((HDC
)hDC
, -rc
.left
, -rc
.top
, NULL
) )
4959 wxLogLastError(wxT("SetBrushOrgEx(bg brush)"));
4965 // Otherwise see if we have a custom background colour.
4969 brush
= wxTheBrushList
->FindOrCreateBrush(GetBackgroundColour());
4971 return (WXHBRUSH
)GetHbrushOf(*brush
);
4977 WXHBRUSH
wxWindowMSW::MSWGetBgBrush(WXHDC hDC
)
4979 // Use the special wxWindowBeingErased variable if it is set as the child
4981 wxWindowMSW
* const child
=
4983 wxWindowBeingErased
? wxWindowBeingErased
:
4987 for ( wxWindowMSW
*win
= this; win
; win
= win
->GetParent() )
4989 WXHBRUSH hBrush
= win
->MSWGetBgBrushForChild(hDC
, child
);
4993 // don't use the parent background if we're not transparent
4994 if ( !win
->HasTransparentBackground() )
4997 // background is not inherited beyond top level windows
4998 if ( win
->IsTopLevel() )
5005 bool wxWindowMSW::HandlePrintClient(WXHDC hDC
)
5007 // we receive this message when DrawThemeParentBackground() is
5008 // called from def window proc of several controls under XP and we
5009 // must draw properly themed background here
5011 // note that naively I'd expect filling the client rect with the
5012 // brush returned by MSWGetBgBrush() work -- but for some reason it
5013 // doesn't and we have to call parents MSWPrintChild() which is
5014 // supposed to call DrawThemeBackground() with appropriate params
5016 // also note that in this case lParam == PRF_CLIENT but we're
5017 // clearly expected to paint the background and nothing else!
5019 if ( IsTopLevel() || InheritsBackgroundColour() )
5022 // sometimes we don't want the parent to handle it at all, instead
5023 // return whatever value this window wants
5024 if ( !MSWShouldPropagatePrintChild() )
5025 return MSWPrintChild(hDC
, (wxWindow
*)this);
5027 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
5029 if ( win
->MSWPrintChild(hDC
, (wxWindow
*)this) )
5032 if ( win
->IsTopLevel() || win
->InheritsBackgroundColour() )
5039 // ---------------------------------------------------------------------------
5040 // moving and resizing
5041 // ---------------------------------------------------------------------------
5043 bool wxWindowMSW::HandleMinimize()
5045 wxIconizeEvent
event(m_windowId
);
5046 event
.SetEventObject(this);
5048 return HandleWindowEvent(event
);
5051 bool wxWindowMSW::HandleMaximize()
5053 wxMaximizeEvent
event(m_windowId
);
5054 event
.SetEventObject(this);
5056 return HandleWindowEvent(event
);
5059 bool wxWindowMSW::HandleMove(int x
, int y
)
5062 wxMoveEvent
event(point
, m_windowId
);
5063 event
.SetEventObject(this);
5065 return HandleWindowEvent(event
);
5068 bool wxWindowMSW::HandleMoving(wxRect
& rect
)
5070 wxMoveEvent
event(rect
, m_windowId
);
5071 event
.SetEventObject(this);
5073 bool rc
= HandleWindowEvent(event
);
5075 rect
= event
.GetRect();
5079 bool wxWindowMSW::HandleEnterSizeMove()
5081 wxMoveEvent
event(wxPoint(0,0), m_windowId
);
5082 event
.SetEventType(wxEVT_MOVE_START
);
5083 event
.SetEventObject(this);
5085 return HandleWindowEvent(event
);
5088 bool wxWindowMSW::HandleExitSizeMove()
5090 wxMoveEvent
event(wxPoint(0,0), m_windowId
);
5091 event
.SetEventType(wxEVT_MOVE_END
);
5092 event
.SetEventObject(this);
5094 return HandleWindowEvent(event
);
5097 bool wxWindowMSW::HandleSize(int WXUNUSED(w
), int WXUNUSED(h
), WXUINT wParam
)
5099 #if wxUSE_DEFERRED_SIZING
5100 // when we resize this window, its children are probably going to be
5101 // repositioned as well, prepare to use DeferWindowPos() for them
5102 int numChildren
= 0;
5103 for ( HWND child
= ::GetWindow(GetHwndOf(this), GW_CHILD
);
5105 child
= ::GetWindow(child
, GW_HWNDNEXT
) )
5110 // Protect against valid m_hDWP being overwritten
5111 bool useDefer
= false;
5113 if ( numChildren
> 1 )
5117 m_hDWP
= (WXHANDLE
)::BeginDeferWindowPos(numChildren
);
5120 wxLogLastError(wxT("BeginDeferWindowPos"));
5126 #endif // wxUSE_DEFERRED_SIZING
5128 // update this window size
5129 bool processed
= false;
5133 wxFAIL_MSG( wxT("unexpected WM_SIZE parameter") );
5134 // fall through nevertheless
5138 // we're not interested in these messages at all
5141 case SIZE_MINIMIZED
:
5142 processed
= HandleMinimize();
5145 case SIZE_MAXIMIZED
:
5146 /* processed = */ HandleMaximize();
5147 // fall through to send a normal size event as well
5150 // don't use w and h parameters as they specify the client size
5151 // while according to the docs EVT_SIZE handler is supposed to
5152 // receive the total size
5153 wxSizeEvent
event(GetSize(), m_windowId
);
5154 event
.SetEventObject(this);
5156 processed
= HandleWindowEvent(event
);
5159 #if wxUSE_DEFERRED_SIZING
5160 // and finally change the positions of all child windows at once
5161 if ( useDefer
&& m_hDWP
)
5163 // reset m_hDWP to NULL so that child windows don't try to use our
5164 // m_hDWP after we call EndDeferWindowPos() on it (this shouldn't
5165 // happen anyhow normally but who knows what weird flow of control we
5166 // may have depending on what the users EVT_SIZE handler does...)
5167 HDWP hDWP
= (HDWP
)m_hDWP
;
5170 // do put all child controls in place at once
5171 if ( !::EndDeferWindowPos(hDWP
) )
5173 wxLogLastError(wxT("EndDeferWindowPos"));
5176 // Reset our children's pending pos/size values.
5177 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
5179 node
= node
->GetNext() )
5181 wxWindowMSW
* const child
= node
->GetData();
5182 child
->MSWEndDeferWindowPos();
5185 #endif // wxUSE_DEFERRED_SIZING
5190 bool wxWindowMSW::HandleSizing(wxRect
& rect
)
5192 wxSizeEvent
event(rect
, m_windowId
);
5193 event
.SetEventObject(this);
5195 bool rc
= HandleWindowEvent(event
);
5197 rect
= event
.GetRect();
5201 bool wxWindowMSW::HandleGetMinMaxInfo(void *WXUNUSED_IN_WINCE(mmInfo
))
5206 MINMAXINFO
*info
= (MINMAXINFO
*)mmInfo
;
5210 int minWidth
= GetMinWidth(),
5211 minHeight
= GetMinHeight(),
5212 maxWidth
= GetMaxWidth(),
5213 maxHeight
= GetMaxHeight();
5215 if ( minWidth
!= wxDefaultCoord
)
5217 info
->ptMinTrackSize
.x
= minWidth
;
5221 if ( minHeight
!= wxDefaultCoord
)
5223 info
->ptMinTrackSize
.y
= minHeight
;
5227 if ( maxWidth
!= wxDefaultCoord
)
5229 info
->ptMaxTrackSize
.x
= maxWidth
;
5233 if ( maxHeight
!= wxDefaultCoord
)
5235 info
->ptMaxTrackSize
.y
= maxHeight
;
5243 // ---------------------------------------------------------------------------
5245 // ---------------------------------------------------------------------------
5247 bool wxWindowMSW::HandleCommand(WXWORD id_
, WXWORD cmd
, WXHWND control
)
5249 // sign extend to int from short before comparing with the other int ids
5250 int id
= (signed short)id_
;
5252 #if wxUSE_MENUS_NATIVE
5253 if ( !cmd
&& wxCurrentPopupMenu
)
5255 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
5256 wxCurrentPopupMenu
= NULL
;
5258 return popupMenu
->MSWCommand(cmd
, id
);
5260 #endif // wxUSE_MENUS_NATIVE
5262 wxWindow
*win
= NULL
;
5264 // first try to find it from HWND - this works even with the broken
5265 // programs using the same ids for different controls
5268 win
= wxFindWinFromHandle(control
);
5279 return win
->MSWCommand(cmd
, id
);
5282 // the messages sent from the in-place edit control used by the treectrl
5283 // for label editing have id == 0, but they should _not_ be treated as menu
5284 // messages (they are EN_XXX ones, in fact) so don't translate anything
5285 // coming from a control to wxEVT_COMMAND_MENU_SELECTED
5288 wxCommandEvent
event(wxEVT_COMMAND_MENU_SELECTED
, id
);
5289 event
.SetEventObject(this);
5292 return HandleWindowEvent(event
);
5296 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
5297 // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND
5298 // notifications to its parent which we want to reflect back to
5300 wxSpinCtrl
*spin
= wxSpinCtrl::GetSpinForTextCtrl(control
);
5301 if ( spin
&& spin
->ProcessTextCommand(cmd
, id
) )
5303 #endif // wxUSE_SPINCTRL
5305 #if wxUSE_CHOICE && defined(__SMARTPHONE__)
5306 // the listbox ctrl which is logically part of wxChoice sends WM_COMMAND
5307 // notifications to its parent which we want to reflect back to
5309 wxChoice
*choice
= wxChoice::GetChoiceForListBox(control
);
5310 if ( choice
&& choice
->MSWCommand(cmd
, id
) )
5318 // ---------------------------------------------------------------------------
5320 // ---------------------------------------------------------------------------
5322 void wxWindowMSW::InitMouseEvent(wxMouseEvent
& event
,
5326 // our client coords are not quite the same as Windows ones
5327 wxPoint pt
= GetClientAreaOrigin();
5328 event
.m_x
= x
- pt
.x
;
5329 event
.m_y
= y
- pt
.y
;
5331 event
.m_shiftDown
= (flags
& MK_SHIFT
) != 0;
5332 event
.m_controlDown
= (flags
& MK_CONTROL
) != 0;
5333 event
.m_leftDown
= (flags
& MK_LBUTTON
) != 0;
5334 event
.m_middleDown
= (flags
& MK_MBUTTON
) != 0;
5335 event
.m_rightDown
= (flags
& MK_RBUTTON
) != 0;
5336 #ifdef wxHAS_XBUTTON
5337 event
.m_aux1Down
= (flags
& MK_XBUTTON1
) != 0;
5338 event
.m_aux2Down
= (flags
& MK_XBUTTON2
) != 0;
5339 #endif // wxHAS_XBUTTON
5340 event
.m_altDown
= ::wxIsAltDown();
5343 event
.SetTimestamp(::GetMessageTime());
5346 event
.SetEventObject(this);
5347 event
.SetId(GetId());
5349 #if wxUSE_MOUSEEVENT_HACK
5350 gs_lastMouseEvent
.pos
= ClientToScreen(wxPoint(x
, y
));
5351 gs_lastMouseEvent
.type
= event
.GetEventType();
5352 #endif // wxUSE_MOUSEEVENT_HACK
5356 // Windows doesn't send the mouse events to the static controls (which are
5357 // transparent in the sense that their WM_NCHITTEST handler returns
5358 // HTTRANSPARENT) at all but we want all controls to receive the mouse events
5359 // and so we manually check if we don't have a child window under mouse and if
5360 // we do, send the event to it instead of the window Windows had sent WM_XXX
5363 // Notice that this is not done for the mouse move events because this could
5364 // (would?) be too slow, but only for clicks which means that the static texts
5365 // still don't get move, enter nor leave events.
5366 static wxWindowMSW
*FindWindowForMouseEvent(wxWindowMSW
*win
, int *x
, int *y
)
5368 wxCHECK_MSG( x
&& y
, win
, wxT("NULL pointer in FindWindowForMouseEvent") );
5370 // first try to find a non transparent child: this allows us to send events
5371 // to a static text which is inside a static box, for example
5372 POINT pt
= { *x
, *y
};
5373 HWND hwnd
= GetHwndOf(win
),
5377 hwndUnderMouse
= ::ChildWindowFromPoint
5383 hwndUnderMouse
= ::ChildWindowFromPointEx
5393 if ( !hwndUnderMouse
|| hwndUnderMouse
== hwnd
)
5395 // now try any child window at all
5396 hwndUnderMouse
= ::ChildWindowFromPoint(hwnd
, pt
);
5399 // check that we have a child window which is susceptible to receive mouse
5400 // events: for this it must be shown and enabled
5401 if ( hwndUnderMouse
&&
5402 hwndUnderMouse
!= hwnd
&&
5403 ::IsWindowVisible(hwndUnderMouse
) &&
5404 ::IsWindowEnabled(hwndUnderMouse
) )
5406 wxWindow
*winUnderMouse
= wxFindWinFromHandle(hwndUnderMouse
);
5407 if ( winUnderMouse
)
5409 // translate the mouse coords to the other window coords
5410 win
->ClientToScreen(x
, y
);
5411 winUnderMouse
->ScreenToClient(x
, y
);
5413 win
= winUnderMouse
;
5419 #endif // __WXWINCE__
5421 bool wxWindowMSW::HandleMouseEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
5423 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
5424 // WM_MOUSELAST, so it's enough to subtract WM_MOUSEMOVE == WM_MOUSEFIRST
5425 // from the message id and take the value in the table to get wxWin event
5427 static const wxEventType eventsMouse
[] =
5438 wxEVT_MIDDLE_DCLICK
,
5439 0, // this one is for wxEVT_MOTION which is not used here
5448 #ifdef wxHAS_XBUTTON
5449 // the same messages are used for both auxillary mouse buttons so we need
5450 // to adjust the index manually
5453 case WM_XBUTTONDOWN
:
5455 case WM_XBUTTONDBLCLK
:
5456 if ( flags
& MK_XBUTTON2
)
5457 msg
+= wxEVT_AUX2_DOWN
- wxEVT_AUX1_DOWN
;
5459 #endif // wxHAS_XBUTTON
5461 wxMouseEvent
event(eventsMouse
[msg
- WM_MOUSEMOVE
]);
5462 InitMouseEvent(event
, x
, y
, flags
);
5464 return HandleWindowEvent(event
);
5467 bool wxWindowMSW::HandleMouseMove(int x
, int y
, WXUINT flags
)
5469 if ( !m_mouseInWindow
)
5471 // it would be wrong to assume that just because we get a mouse move
5472 // event that the mouse is inside the window: although this is usually
5473 // true, it is not if we had captured the mouse, so we need to check
5474 // the mouse coordinates here
5475 if ( !HasCapture() || IsMouseInWindow() )
5477 // Generate an ENTER event
5478 m_mouseInWindow
= true;
5480 #ifdef HAVE_TRACKMOUSEEVENT
5481 typedef BOOL (WINAPI
*_TrackMouseEvent_t
)(LPTRACKMOUSEEVENT
);
5483 static const _TrackMouseEvent_t
5484 s_pfn_TrackMouseEvent
= _TrackMouseEvent
;
5485 #else // !__WXWINCE__
5486 static _TrackMouseEvent_t s_pfn_TrackMouseEvent
;
5487 static bool s_initDone
= false;
5490 // see comment in wxApp::GetComCtl32Version() explaining the
5491 // use of wxLoadedDLL
5492 wxLoadedDLL
dllComCtl32(wxT("comctl32.dll"));
5493 if ( dllComCtl32
.IsLoaded() )
5495 s_pfn_TrackMouseEvent
= (_TrackMouseEvent_t
)
5496 dllComCtl32
.RawGetSymbol(wxT("_TrackMouseEvent"));
5502 if ( s_pfn_TrackMouseEvent
)
5503 #endif // __WXWINCE__/!__WXWINCE__
5505 WinStruct
<TRACKMOUSEEVENT
> trackinfo
;
5507 trackinfo
.dwFlags
= TME_LEAVE
;
5508 trackinfo
.hwndTrack
= GetHwnd();
5510 (*s_pfn_TrackMouseEvent
)(&trackinfo
);
5512 #endif // HAVE_TRACKMOUSEEVENT
5514 wxMouseEvent
event(wxEVT_ENTER_WINDOW
);
5515 InitMouseEvent(event
, x
, y
, flags
);
5517 (void)HandleWindowEvent(event
);
5520 #ifdef HAVE_TRACKMOUSEEVENT
5521 else // mouse not in window
5523 // Check if we need to send a LEAVE event
5524 // Windows doesn't send WM_MOUSELEAVE if the mouse has been captured so
5525 // send it here if we are using native mouse leave tracking
5526 if ( HasCapture() && !IsMouseInWindow() )
5528 GenerateMouseLeave();
5531 #endif // HAVE_TRACKMOUSEEVENT
5533 #if wxUSE_MOUSEEVENT_HACK
5534 // Windows often generates mouse events even if mouse position hasn't
5535 // changed (http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/66576)
5537 // Filter this out as it can result in unexpected behaviour compared to
5539 if ( gs_lastMouseEvent
.type
== wxEVT_RIGHT_DOWN
||
5540 gs_lastMouseEvent
.type
== wxEVT_LEFT_DOWN
||
5541 gs_lastMouseEvent
.type
== wxEVT_MIDDLE_DOWN
||
5542 gs_lastMouseEvent
.type
== wxEVT_MOTION
)
5544 if ( ClientToScreen(wxPoint(x
, y
)) == gs_lastMouseEvent
.pos
)
5546 gs_lastMouseEvent
.type
= wxEVT_MOTION
;
5551 #endif // wxUSE_MOUSEEVENT_HACK
5553 return HandleMouseEvent(WM_MOUSEMOVE
, x
, y
, flags
);
5557 bool wxWindowMSW::HandleMouseWheel(WXWPARAM wParam
, WXLPARAM lParam
)
5559 #if wxUSE_MOUSEWHEEL
5560 // notice that WM_MOUSEWHEEL position is in screen coords (as it's
5561 // forwarded up to the parent by DefWindowProc()) and not in the client
5562 // ones as all the other messages, translate them to the client coords for
5565 pt
= ScreenToClient(wxPoint(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
)));
5566 wxMouseEvent
event(wxEVT_MOUSEWHEEL
);
5567 InitMouseEvent(event
, pt
.x
, pt
.y
, LOWORD(wParam
));
5568 event
.m_wheelRotation
= (short)HIWORD(wParam
);
5569 event
.m_wheelDelta
= WHEEL_DELTA
;
5571 static int s_linesPerRotation
= -1;
5572 if ( s_linesPerRotation
== -1 )
5574 if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES
, 0,
5575 &s_linesPerRotation
, 0))
5577 // this is not supposed to happen
5578 wxLogLastError(wxT("SystemParametersInfo(GETWHEELSCROLLLINES)"));
5580 // the default is 3, so use it if SystemParametersInfo() failed
5581 s_linesPerRotation
= 3;
5585 event
.m_linesPerAction
= s_linesPerRotation
;
5586 return HandleWindowEvent(event
);
5588 #else // !wxUSE_MOUSEWHEEL
5589 wxUnusedVar(wParam
);
5590 wxUnusedVar(lParam
);
5593 #endif // wxUSE_MOUSEWHEEL/!wxUSE_MOUSEWHEEL
5596 void wxWindowMSW::GenerateMouseLeave()
5598 m_mouseInWindow
= false;
5601 if ( wxIsShiftDown() )
5603 if ( wxIsCtrlDown() )
5604 state
|= MK_CONTROL
;
5606 // Only the high-order bit should be tested
5607 if ( GetKeyState( VK_LBUTTON
) & (1<<15) )
5608 state
|= MK_LBUTTON
;
5609 if ( GetKeyState( VK_MBUTTON
) & (1<<15) )
5610 state
|= MK_MBUTTON
;
5611 if ( GetKeyState( VK_RBUTTON
) & (1<<15) )
5612 state
|= MK_RBUTTON
;
5615 wxGetCursorPosMSW(&pt
);
5617 // we need to have client coordinates here for symmetry with
5618 // wxEVT_ENTER_WINDOW
5619 RECT rect
= wxGetWindowRect(GetHwnd());
5623 wxMouseEvent
event(wxEVT_LEAVE_WINDOW
);
5624 InitMouseEvent(event
, pt
.x
, pt
.y
, state
);
5626 (void)HandleWindowEvent(event
);
5629 // ---------------------------------------------------------------------------
5630 // keyboard handling
5631 // ---------------------------------------------------------------------------
5636 // Implementation of InitAnyKeyEvent() which can also be used when there is no
5637 // associated window: this can happen for the wxEVT_CHAR_HOOK events created by
5638 // the global keyboard hook (e.g. the event might have happened in a non-wx
5641 MSWInitAnyKeyEvent(wxKeyEvent
& event
,
5644 const wxWindowBase
*win
/* may be NULL */)
5648 event
.SetId(win
->GetId());
5649 event
.SetEventObject(const_cast<wxWindowBase
*>(win
));
5651 else // No associated window.
5653 // Use wxID_ANY for compatibility with the old code even if wxID_NONE
5654 // would arguably make more sense.
5655 event
.SetId(wxID_ANY
);
5658 event
.m_shiftDown
= wxIsShiftDown();
5659 event
.m_controlDown
= wxIsCtrlDown();
5660 event
.m_altDown
= (HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
;
5662 event
.m_rawCode
= (wxUint32
) wParam
;
5663 event
.m_rawFlags
= (wxUint32
) lParam
;
5665 event
.SetTimestamp(::GetMessageTime());
5668 // Event coordinates must be in window client coordinates system which
5669 // doesn't make sense if there is no window.
5671 // We could use screen coordinates for such events but this would make the
5672 // logic of the event handlers more complicated: you'd need to test for the
5673 // event object and interpret the coordinates differently according to
5674 // whether it's NULL or not so unless somebody really asks for this let's
5675 // just avoid the issue.
5678 const wxPoint mousePos
= win
->ScreenToClient(wxGetMousePosition());
5679 event
.m_x
= mousePos
.x
;
5680 event
.m_y
= mousePos
.y
;
5684 } // anonymous namespace
5687 wxWindowMSW::InitAnyKeyEvent(wxKeyEvent
& event
,
5689 WXLPARAM lParam
) const
5691 MSWInitAnyKeyEvent(event
, wParam
, lParam
, this);
5695 wxWindowMSW::CreateKeyEvent(wxEventType evType
,
5697 WXLPARAM lParam
) const
5699 // Catch any attempts to use this with WM_CHAR, it wouldn't work because
5700 // wParam is supposed to be a virtual key and not a character here.
5701 wxASSERT_MSG( evType
!= wxEVT_CHAR
&& evType
!= wxEVT_CHAR_HOOK
,
5702 "CreateKeyEvent() can't be used for char events" );
5704 wxKeyEvent
event(evType
);
5705 InitAnyKeyEvent(event
, wParam
, lParam
);
5707 event
.m_keyCode
= wxMSWKeyboard::VKToWX
5713 #endif // wxUSE_UNICODE
5720 wxWindowMSW::CreateCharEvent(wxEventType evType
,
5722 WXLPARAM lParam
) const
5724 wxKeyEvent
event(evType
);
5725 InitAnyKeyEvent(event
, wParam
, lParam
);
5728 // TODO: wParam uses UTF-16 so this is incorrect for characters outside of
5729 // the BMP, we should use WM_UNICHAR to handle them.
5730 event
.m_uniChar
= wParam
;
5731 #endif // wxUSE_UNICODE
5733 // Set non-Unicode key code too for compatibility if possible.
5734 if ( wParam
< 0x80 )
5736 // It's an ASCII character, no need to translate it.
5737 event
.m_keyCode
= wParam
;
5741 // Check if this key can be represented (as a single character) in the
5743 const wchar_t wc
= wParam
;
5745 if ( wxConvLibc
.FromWChar(&ch
, 1, &wc
, 1) != wxCONV_FAILED
)
5747 // For compatibility continue to provide the key code in this field
5748 // even though using GetUnicodeKey() is recommended now.
5749 event
.m_keyCode
= static_cast<unsigned char>(ch
);
5751 //else: Key can't be represented in the current locale, leave m_keyCode
5752 // as WXK_NONE and use GetUnicodeKey() to access the character.
5755 // the alphanumeric keys produced by pressing AltGr+something on European
5756 // keyboards have both Ctrl and Alt modifiers which may confuse the user
5757 // code as, normally, keys with Ctrl and/or Alt don't result in anything
5758 // alphanumeric, so pretend that there are no modifiers at all (the
5759 // KEY_DOWN event would still have the correct modifiers if they're really
5761 if ( event
.m_controlDown
&& event
.m_altDown
&&
5762 (event
.m_keyCode
>= 32 && event
.m_keyCode
< 256) )
5764 event
.m_controlDown
=
5765 event
.m_altDown
= false;
5771 // isASCII is true only when we're called from WM_CHAR handler and not from
5773 bool wxWindowMSW::HandleChar(WXWPARAM wParam
, WXLPARAM lParam
)
5775 wxKeyEvent
event(CreateCharEvent(wxEVT_CHAR
, wParam
, lParam
));
5776 return HandleWindowEvent(event
);
5779 bool wxWindowMSW::HandleKeyDown(WXWPARAM wParam
, WXLPARAM lParam
)
5781 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_DOWN
, wParam
, lParam
));
5782 return HandleWindowEvent(event
);
5785 bool wxWindowMSW::HandleKeyUp(WXWPARAM wParam
, WXLPARAM lParam
)
5787 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_UP
, wParam
, lParam
));
5788 return HandleWindowEvent(event
);
5792 int wxWindowMSW::HandleMenuChar(int WXUNUSED_IN_WINCE(chAccel
),
5793 WXLPARAM
WXUNUSED_IN_WINCE(lParam
))
5795 // FIXME: implement GetMenuItemCount for WinCE, possibly
5796 // in terms of GetMenuItemInfo
5798 const HMENU hmenu
= (HMENU
)lParam
;
5802 mii
.cbSize
= sizeof(MENUITEMINFO
);
5804 // we could use MIIM_FTYPE here as we only need to know if the item is
5805 // ownerdrawn or not and not dwTypeData which MIIM_TYPE also returns, but
5806 // MIIM_FTYPE is not supported under Win95
5807 mii
.fMask
= MIIM_TYPE
| MIIM_DATA
;
5809 // find if we have this letter in any owner drawn item
5810 const int count
= ::GetMenuItemCount(hmenu
);
5811 for ( int i
= 0; i
< count
; i
++ )
5813 // previous loop iteration could modify it, reset it back before
5814 // calling GetMenuItemInfo() to prevent it from overflowing dwTypeData
5817 if ( ::GetMenuItemInfo(hmenu
, i
, TRUE
, &mii
) )
5819 if ( mii
.fType
== MFT_OWNERDRAW
)
5821 // dwItemData member of the MENUITEMINFO is a
5822 // pointer to the associated wxMenuItem -- see the
5823 // menu creation code
5824 wxMenuItem
*item
= (wxMenuItem
*)mii
.dwItemData
;
5826 const wxString
label(item
->GetItemLabel());
5827 const wxChar
*p
= wxStrchr(label
.wx_str(), wxT('&'));
5830 if ( *p
== wxT('&') )
5832 // this is not the accel char, find the real one
5833 p
= wxStrchr(p
+ 1, wxT('&'));
5835 else // got the accel char
5837 // FIXME-UNICODE: this comparison doesn't risk to work
5838 // for non ASCII accelerator characters I'm afraid, but
5840 if ( (wchar_t)wxToupper(*p
) == (wchar_t)chAccel
)
5846 // this one doesn't match
5853 else // failed to get the menu text?
5855 // it's not fatal, so don't show error, but still log it
5856 wxLogLastError(wxT("GetMenuItemInfo"));
5863 #endif // wxUSE_MENUS
5865 bool wxWindowMSW::HandleClipboardEvent(WXUINT nMsg
)
5867 const wxEventType type
= nMsg
== WM_CUT
? wxEVT_COMMAND_TEXT_CUT
5868 : nMsg
== WM_COPY
? wxEVT_COMMAND_TEXT_COPY
5869 : /* nMsg == WM_PASTE */ wxEVT_COMMAND_TEXT_PASTE
;
5870 wxClipboardTextEvent
evt(type
, GetId());
5872 evt
.SetEventObject(this);
5874 return HandleWindowEvent(evt
);
5877 // ---------------------------------------------------------------------------
5879 // ---------------------------------------------------------------------------
5881 bool wxWindowMSW::HandleJoystickEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
5885 if ( flags
& JOY_BUTTON1CHG
)
5886 change
= wxJOY_BUTTON1
;
5887 if ( flags
& JOY_BUTTON2CHG
)
5888 change
= wxJOY_BUTTON2
;
5889 if ( flags
& JOY_BUTTON3CHG
)
5890 change
= wxJOY_BUTTON3
;
5891 if ( flags
& JOY_BUTTON4CHG
)
5892 change
= wxJOY_BUTTON4
;
5895 if ( flags
& JOY_BUTTON1
)
5896 buttons
|= wxJOY_BUTTON1
;
5897 if ( flags
& JOY_BUTTON2
)
5898 buttons
|= wxJOY_BUTTON2
;
5899 if ( flags
& JOY_BUTTON3
)
5900 buttons
|= wxJOY_BUTTON3
;
5901 if ( flags
& JOY_BUTTON4
)
5902 buttons
|= wxJOY_BUTTON4
;
5904 // the event ids aren't consecutive so we can't use table based lookup
5906 wxEventType eventType
;
5911 eventType
= wxEVT_JOY_MOVE
;
5916 eventType
= wxEVT_JOY_MOVE
;
5921 eventType
= wxEVT_JOY_ZMOVE
;
5926 eventType
= wxEVT_JOY_ZMOVE
;
5929 case MM_JOY1BUTTONDOWN
:
5931 eventType
= wxEVT_JOY_BUTTON_DOWN
;
5934 case MM_JOY2BUTTONDOWN
:
5936 eventType
= wxEVT_JOY_BUTTON_DOWN
;
5939 case MM_JOY1BUTTONUP
:
5941 eventType
= wxEVT_JOY_BUTTON_UP
;
5944 case MM_JOY2BUTTONUP
:
5946 eventType
= wxEVT_JOY_BUTTON_UP
;
5950 wxFAIL_MSG(wxT("no such joystick event"));
5955 wxJoystickEvent
event(eventType
, buttons
, joystick
, change
);
5956 event
.SetPosition(wxPoint(x
, y
));
5957 event
.SetEventObject(this);
5959 return HandleWindowEvent(event
);
5969 // ---------------------------------------------------------------------------
5971 // ---------------------------------------------------------------------------
5973 bool wxWindowMSW::MSWOnScroll(int orientation
, WXWORD wParam
,
5974 WXWORD pos
, WXHWND control
)
5976 if ( control
&& control
!= m_hWnd
) // Prevent infinite recursion
5978 wxWindow
*child
= wxFindWinFromHandle(control
);
5980 return child
->MSWOnScroll(orientation
, wParam
, pos
, control
);
5983 wxScrollWinEvent event
;
5984 event
.SetPosition(pos
);
5985 event
.SetOrientation(orientation
);
5986 event
.SetEventObject(this);
5991 event
.SetEventType(wxEVT_SCROLLWIN_TOP
);
5995 event
.SetEventType(wxEVT_SCROLLWIN_BOTTOM
);
5999 event
.SetEventType(wxEVT_SCROLLWIN_LINEUP
);
6003 event
.SetEventType(wxEVT_SCROLLWIN_LINEDOWN
);
6007 event
.SetEventType(wxEVT_SCROLLWIN_PAGEUP
);
6011 event
.SetEventType(wxEVT_SCROLLWIN_PAGEDOWN
);
6014 case SB_THUMBPOSITION
:
6016 // under Win32, the scrollbar range and position are 32 bit integers,
6017 // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must
6018 // explicitly query the scrollbar for the correct position (this must
6019 // be done only for these two SB_ events as they are the only one
6020 // carrying the scrollbar position)
6022 WinStruct
<SCROLLINFO
> scrollInfo
;
6023 scrollInfo
.fMask
= SIF_TRACKPOS
;
6025 if ( !::GetScrollInfo(GetHwnd(),
6026 WXOrientToSB(orientation
),
6029 // Not necessarily an error, if there are no scrollbars yet.
6030 // wxLogLastError(wxT("GetScrollInfo"));
6033 event
.SetPosition(scrollInfo
.nTrackPos
);
6036 event
.SetEventType( wParam
== SB_THUMBPOSITION
6037 ? wxEVT_SCROLLWIN_THUMBRELEASE
6038 : wxEVT_SCROLLWIN_THUMBTRACK
);
6045 return HandleWindowEvent(event
);
6048 // ----------------------------------------------------------------------------
6049 // custom message handlers
6050 // ----------------------------------------------------------------------------
6053 wxWindowMSW::MSWRegisterMessageHandler(int msg
, MSWMessageHandler handler
)
6055 wxCHECK_MSG( gs_messageHandlers
.find(msg
) == gs_messageHandlers
.end(),
6056 false, wxT("registering handler for the same message twice") );
6058 gs_messageHandlers
[msg
] = handler
;
6063 wxWindowMSW::MSWUnregisterMessageHandler(int msg
, MSWMessageHandler handler
)
6065 const MSWMessageHandlers::iterator i
= gs_messageHandlers
.find(msg
);
6066 wxCHECK_RET( i
!= gs_messageHandlers
.end() && i
->second
== handler
,
6067 wxT("unregistering non-registered handler?") );
6069 gs_messageHandlers
.erase(i
);
6072 // ===========================================================================
6074 // ===========================================================================
6076 void wxGetCharSize(WXHWND wnd
, int *x
, int *y
, const wxFont
& the_font
)
6079 HDC dc
= ::GetDC((HWND
) wnd
);
6082 // the_font.UseResource();
6083 // the_font.RealizeResource();
6084 HFONT fnt
= (HFONT
)the_font
.GetResourceHandle(); // const_cast
6086 was
= (HFONT
) SelectObject(dc
,fnt
);
6088 GetTextMetrics(dc
, &tm
);
6091 SelectObject(dc
,was
);
6093 ReleaseDC((HWND
)wnd
, dc
);
6096 *x
= tm
.tmAveCharWidth
;
6098 *y
= tm
.tmHeight
+ tm
.tmExternalLeading
;
6100 // the_font.ReleaseResource();
6103 // ----------------------------------------------------------------------------
6105 // ----------------------------------------------------------------------------
6107 namespace wxMSWKeyboard
6113 // use the "extended" bit of lParam to distinguish extended keys from normal
6114 // keys as the same virtual key code is sent for both by Windows
6116 int ChooseNormalOrExtended(int lParam
, int keyNormal
, int keyExtended
)
6118 // except that if lParam is 0, it means we don't have real lParam from
6119 // WM_KEYDOWN but are just translating just a VK constant (e.g. done from
6120 // msw/treectrl.cpp when processing TVN_KEYDOWN) -- then assume this is a
6121 // non-numpad (hence extended) key as this is a more common case
6122 return !lParam
|| (HIWORD(lParam
) & KF_EXTENDED
) ? keyExtended
: keyNormal
;
6125 // this array contains the Windows virtual key codes which map one to one to
6126 // WXK_xxx constants and is used in wxMSWKeyboard::VKToWX/WXToVK() below
6128 // note that keys having a normal and numpad version (e.g. WXK_HOME and
6129 // WXK_NUMPAD_HOME) are not included in this table as the mapping is not 1-to-1
6130 const struct wxKeyMapping
6134 } gs_specialKeys
[] =
6136 { VK_CANCEL
, WXK_CANCEL
},
6137 { VK_BACK
, WXK_BACK
},
6138 { VK_TAB
, WXK_TAB
},
6139 { VK_CLEAR
, WXK_CLEAR
},
6140 { VK_SHIFT
, WXK_SHIFT
},
6141 { VK_CONTROL
, WXK_CONTROL
},
6142 { VK_MENU
, WXK_ALT
},
6143 { VK_PAUSE
, WXK_PAUSE
},
6144 { VK_CAPITAL
, WXK_CAPITAL
},
6145 { VK_SPACE
, WXK_SPACE
},
6146 { VK_ESCAPE
, WXK_ESCAPE
},
6147 { VK_SELECT
, WXK_SELECT
},
6148 { VK_PRINT
, WXK_PRINT
},
6149 { VK_EXECUTE
, WXK_EXECUTE
},
6150 { VK_SNAPSHOT
, WXK_SNAPSHOT
},
6151 { VK_HELP
, WXK_HELP
},
6153 { VK_NUMPAD0
, WXK_NUMPAD0
},
6154 { VK_NUMPAD1
, WXK_NUMPAD1
},
6155 { VK_NUMPAD2
, WXK_NUMPAD2
},
6156 { VK_NUMPAD3
, WXK_NUMPAD3
},
6157 { VK_NUMPAD4
, WXK_NUMPAD4
},
6158 { VK_NUMPAD5
, WXK_NUMPAD5
},
6159 { VK_NUMPAD6
, WXK_NUMPAD6
},
6160 { VK_NUMPAD7
, WXK_NUMPAD7
},
6161 { VK_NUMPAD8
, WXK_NUMPAD8
},
6162 { VK_NUMPAD9
, WXK_NUMPAD9
},
6163 { VK_MULTIPLY
, WXK_NUMPAD_MULTIPLY
},
6164 { VK_ADD
, WXK_NUMPAD_ADD
},
6165 { VK_SUBTRACT
, WXK_NUMPAD_SUBTRACT
},
6166 { VK_DECIMAL
, WXK_NUMPAD_DECIMAL
},
6167 { VK_DIVIDE
, WXK_NUMPAD_DIVIDE
},
6178 { VK_F10
, WXK_F10
},
6179 { VK_F11
, WXK_F11
},
6180 { VK_F12
, WXK_F12
},
6181 { VK_F13
, WXK_F13
},
6182 { VK_F14
, WXK_F14
},
6183 { VK_F15
, WXK_F15
},
6184 { VK_F16
, WXK_F16
},
6185 { VK_F17
, WXK_F17
},
6186 { VK_F18
, WXK_F18
},
6187 { VK_F19
, WXK_F19
},
6188 { VK_F20
, WXK_F20
},
6189 { VK_F21
, WXK_F21
},
6190 { VK_F22
, WXK_F22
},
6191 { VK_F23
, WXK_F23
},
6192 { VK_F24
, WXK_F24
},
6194 { VK_NUMLOCK
, WXK_NUMLOCK
},
6195 { VK_SCROLL
, WXK_SCROLL
},
6198 { VK_LWIN
, WXK_WINDOWS_LEFT
},
6199 { VK_RWIN
, WXK_WINDOWS_RIGHT
},
6200 { VK_APPS
, WXK_WINDOWS_MENU
},
6201 #endif // VK_APPS defined
6204 } // anonymous namespace
6206 int VKToWX(WXWORD vk
, WXLPARAM lParam
, wchar_t *uc
)
6210 // check the table first
6211 for ( size_t n
= 0; n
< WXSIZEOF(gs_specialKeys
); n
++ )
6213 if ( gs_specialKeys
[n
].vk
== vk
)
6215 wxk
= gs_specialKeys
[n
].wxk
;
6216 if ( wxk
< WXK_START
)
6218 // Unicode code for this key is the same as its ASCII code.
6227 // keys requiring special handling
6241 // MapVirtualKey() returns 0 if it fails to convert the virtual
6242 // key which nicely corresponds to our WXK_NONE.
6243 wxk
= ::MapVirtualKey(vk
, MAPVK_VK_TO_CHAR
);
6245 if ( HIWORD(wxk
) & 0x8000 )
6247 // It's a dead key and we don't return anything at all for them
6248 // as we simply don't have any way to indicate the difference
6249 // between e.g. a normal "'" and "'" as a dead key -- and
6250 // generating the same events for them just doesn't seem like a
6255 // In any case return this as a Unicode character value.
6259 // For compatibility with the old non-Unicode code we continue
6260 // returning key codes for Latin-1 characters directly
6261 // (normally it would really only make sense to do it for the
6262 // ASCII characters, not Latin-1 ones).
6265 // But for anything beyond this we can only return the key
6266 // value as a real Unicode character, not a wxKeyCode
6267 // because this enum values clash with Unicode characters
6268 // (e.g. WXK_LBUTTON also happens to be U+012C a.k.a.
6269 // "LATIN CAPITAL LETTER I WITH BREVE").
6274 // handle extended keys
6276 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_PAGEUP
, WXK_PAGEUP
);
6280 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_PAGEDOWN
, WXK_PAGEDOWN
);
6284 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_END
, WXK_END
);
6288 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_HOME
, WXK_HOME
);
6292 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_LEFT
, WXK_LEFT
);
6296 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_UP
, WXK_UP
);
6300 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_RIGHT
, WXK_RIGHT
);
6304 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_DOWN
, WXK_DOWN
);
6308 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_INSERT
, WXK_INSERT
);
6312 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_DELETE
, WXK_DELETE
);
6316 // don't use ChooseNormalOrExtended() here as the keys are reversed
6317 // here: numpad enter is the extended one
6318 wxk
= HIWORD(lParam
) & KF_EXTENDED
? WXK_NUMPAD_ENTER
: WXK_RETURN
;
6325 if ( (vk
>= '0' && vk
<= '9') || (vk
>= 'A' && vk
<= 'Z') )
6327 // A simple alphanumeric key and the values of them coincide in
6328 // Windows and wx for both ASCII and Unicode codes.
6331 else // Something we simply don't know about at all.
6343 WXWORD
WXToVK(int wxk
, bool *isExtended
)
6345 // check the table first
6346 for ( size_t n
= 0; n
< WXSIZEOF(gs_specialKeys
); n
++ )
6348 if ( gs_specialKeys
[n
].wxk
== wxk
)
6350 // All extended keys (i.e. non-numpad versions of the keys that
6351 // exist both in the numpad and outside of it) are dealt with
6354 *isExtended
= false;
6356 return gs_specialKeys
[n
].vk
;
6360 // and then check for special keys not included in the table
6361 bool extended
= false;
6367 case WXK_NUMPAD_PAGEUP
:
6373 case WXK_NUMPAD_PAGEDOWN
:
6379 case WXK_NUMPAD_END
:
6385 case WXK_NUMPAD_HOME
:
6391 case WXK_NUMPAD_LEFT
:
6403 case WXK_NUMPAD_RIGHT
:
6409 case WXK_NUMPAD_DOWN
:
6415 case WXK_NUMPAD_INSERT
:
6421 case WXK_NUMPAD_DELETE
:
6426 // no VkKeyScan() under CE unfortunately, we need to test how does
6427 // it handle OEM keys
6429 // check to see if its one of the OEM key codes.
6430 BYTE vks
= LOBYTE(VkKeyScan(wxk
));
6436 #endif // !__WXWINCE__
6443 *isExtended
= extended
;
6448 } // namespace wxMSWKeyboard
6450 // small helper for wxGetKeyState() and wxGetMouseState()
6451 static inline bool wxIsKeyDown(WXWORD vk
)
6453 // SM_SWAPBUTTON is not available under CE, so don't swap buttons there
6454 #ifdef SM_SWAPBUTTON
6455 if ( vk
== VK_LBUTTON
|| vk
== VK_RBUTTON
)
6457 if ( ::GetSystemMetrics(SM_SWAPBUTTON
) )
6459 if ( vk
== VK_LBUTTON
)
6461 else // vk == VK_RBUTTON
6465 #endif // SM_SWAPBUTTON
6467 // the low order bit indicates whether the key was pressed since the last
6468 // call and the high order one indicates whether it is down right now and
6469 // we only want that one
6470 return (GetAsyncKeyState(vk
) & (1<<15)) != 0;
6473 bool wxGetKeyState(wxKeyCode key
)
6475 // although this does work under Windows, it is not supported under other
6476 // platforms so don't allow it, you must use wxGetMouseState() instead
6477 wxASSERT_MSG( key
!= VK_LBUTTON
&&
6478 key
!= VK_RBUTTON
&&
6480 wxT("can't use wxGetKeyState() for mouse buttons") );
6482 const WXWORD vk
= wxMSWKeyboard::WXToVK(key
);
6484 // if the requested key is a LED key, return true if the led is pressed
6485 if ( key
== WXK_NUMLOCK
|| key
== WXK_CAPITAL
|| key
== WXK_SCROLL
)
6487 // low order bit means LED is highlighted and high order one means the
6488 // key is down; for compatibility with the other ports return true if
6489 // either one is set
6490 return GetKeyState(vk
) != 0;
6495 return wxIsKeyDown(vk
);
6500 wxMouseState
wxGetMouseState()
6504 wxGetCursorPosMSW(&pt
);
6508 ms
.SetLeftDown(wxIsKeyDown(VK_LBUTTON
));
6509 ms
.SetMiddleDown(wxIsKeyDown(VK_MBUTTON
));
6510 ms
.SetRightDown(wxIsKeyDown(VK_RBUTTON
));
6511 #ifdef wxHAS_XBUTTON
6512 ms
.SetAux1Down(wxIsKeyDown(VK_XBUTTON1
));
6513 ms
.SetAux2Down(wxIsKeyDown(VK_XBUTTON2
));
6514 #endif // wxHAS_XBUTTON
6516 ms
.SetControlDown(wxIsCtrlDown ());
6517 ms
.SetShiftDown (wxIsShiftDown());
6518 ms
.SetAltDown (wxIsAltDown ());
6519 // ms.SetMetaDown();
6525 wxWindow
*wxGetActiveWindow()
6527 HWND hWnd
= GetActiveWindow();
6530 return wxFindWinFromHandle(hWnd
);
6535 extern wxWindow
*wxGetWindowFromHWND(WXHWND hWnd
)
6537 HWND hwnd
= (HWND
)hWnd
;
6539 // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set
6540 // by code in msw/radiobox.cpp), for all the others we just search up the
6542 wxWindow
*win
= NULL
;
6545 win
= wxFindWinFromHandle(hwnd
);
6548 #if wxUSE_RADIOBOX && !defined(__WXUNIVERSAL__)
6549 // native radiobuttons return DLGC_RADIOBUTTON here and for any
6550 // wxWindow class which overrides WM_GETDLGCODE processing to
6551 // do it as well, win would be already non NULL
6552 if ( ::SendMessage(hwnd
, WM_GETDLGCODE
, 0, 0) & DLGC_RADIOBUTTON
)
6554 win
= wxRadioBox::GetFromRadioButtonHWND(hwnd
);
6556 //else: it's a wxRadioButton, not a radiobutton from wxRadioBox
6557 #endif // wxUSE_RADIOBOX
6559 // spin control text buddy window should be mapped to spin ctrl
6560 // itself so try it too
6561 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
6564 win
= wxSpinCtrl::GetSpinForTextCtrl((WXHWND
)hwnd
);
6566 #endif // wxUSE_SPINCTRL
6570 while ( hwnd
&& !win
)
6572 // this is a really ugly hack needed to avoid mistakenly returning the
6573 // parent frame wxWindow for the find/replace modeless dialog HWND -
6574 // this, in turn, is needed to call IsDialogMessage() from
6575 // wxApp::ProcessMessage() as for this we must return NULL from here
6577 // FIXME: this is clearly not the best way to do it but I think we'll
6578 // need to change HWND <-> wxWindow code more heavily than I can
6579 // do it now to fix it
6580 #ifndef __WXMICROWIN__
6581 if ( ::GetWindow(hwnd
, GW_OWNER
) )
6583 // it's a dialog box, don't go upwards
6588 hwnd
= ::GetParent(hwnd
);
6589 win
= wxFindWinFromHandle(hwnd
);
6595 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
6597 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
6598 // in active frames and dialogs, regardless of where the focus is.
6599 static HHOOK wxTheKeyboardHook
= 0;
6602 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
)
6604 DWORD hiWord
= HIWORD(lParam
);
6605 if ( nCode
!= HC_NOREMOVE
&& ((hiWord
& KF_UP
) == 0) )
6608 int id
= wxMSWKeyboard::VKToWX(wParam
, lParam
, &uc
);
6610 // Don't intercept keyboard entry (notably Escape) if a modal window
6611 // (not managed by wx, e.g. IME one) is currently opened as more often
6612 // than not it needs all the keys for itself.
6614 // Also don't catch it if a window currently captures the mouse as
6615 // Escape is normally used to release the mouse capture and if you
6616 // really need to catch all the keys in the window that has mouse
6617 // capture it can be easily done in its own EVT_CHAR handler as it is
6618 // certain to have focus while it has the capture.
6619 if ( !gs_modalEntryWindowCount
&& !::GetCapture() )
6623 || static_cast<int>(uc
) != WXK_NONE
6624 #endif // wxUSE_UNICODE
6627 const wxWindow
* const win
= wxGetActiveWindow();
6629 wxKeyEvent
event(wxEVT_CHAR_HOOK
);
6630 MSWInitAnyKeyEvent(event
, wParam
, lParam
, win
);
6632 event
.m_keyCode
= id
;
6634 event
.m_uniChar
= uc
;
6635 #endif // wxUSE_UNICODE
6637 wxEvtHandler
* const handler
= win
? win
->GetEventHandler()
6640 if ( handler
&& handler
->ProcessEvent(event
) )
6649 return (int)CallNextHookEx(wxTheKeyboardHook
, nCode
, wParam
, lParam
);
6652 void wxSetKeyboardHook(bool doIt
)
6656 wxTheKeyboardHook
= ::SetWindowsHookEx
6659 (HOOKPROC
)wxKeyboardHook
,
6660 NULL
, // must be NULL for process hook
6661 ::GetCurrentThreadId()
6663 if ( !wxTheKeyboardHook
)
6665 wxLogLastError(wxT("SetWindowsHookEx(wxKeyboardHook)"));
6670 if ( wxTheKeyboardHook
)
6671 ::UnhookWindowsHookEx(wxTheKeyboardHook
);
6675 #endif // !__WXMICROWIN__
6677 #if wxDEBUG_LEVEL >= 2
6678 const wxChar
*wxGetMessageName(int message
)
6682 case 0x0000: return wxT("WM_NULL");
6683 case 0x0001: return wxT("WM_CREATE");
6684 case 0x0002: return wxT("WM_DESTROY");
6685 case 0x0003: return wxT("WM_MOVE");
6686 case 0x0005: return wxT("WM_SIZE");
6687 case 0x0006: return wxT("WM_ACTIVATE");
6688 case 0x0007: return wxT("WM_SETFOCUS");
6689 case 0x0008: return wxT("WM_KILLFOCUS");
6690 case 0x000A: return wxT("WM_ENABLE");
6691 case 0x000B: return wxT("WM_SETREDRAW");
6692 case 0x000C: return wxT("WM_SETTEXT");
6693 case 0x000D: return wxT("WM_GETTEXT");
6694 case 0x000E: return wxT("WM_GETTEXTLENGTH");
6695 case 0x000F: return wxT("WM_PAINT");
6696 case 0x0010: return wxT("WM_CLOSE");
6697 case 0x0011: return wxT("WM_QUERYENDSESSION");
6698 case 0x0012: return wxT("WM_QUIT");
6699 case 0x0013: return wxT("WM_QUERYOPEN");
6700 case 0x0014: return wxT("WM_ERASEBKGND");
6701 case 0x0015: return wxT("WM_SYSCOLORCHANGE");
6702 case 0x0016: return wxT("WM_ENDSESSION");
6703 case 0x0017: return wxT("WM_SYSTEMERROR");
6704 case 0x0018: return wxT("WM_SHOWWINDOW");
6705 case 0x0019: return wxT("WM_CTLCOLOR");
6706 case 0x001A: return wxT("WM_WININICHANGE");
6707 case 0x001B: return wxT("WM_DEVMODECHANGE");
6708 case 0x001C: return wxT("WM_ACTIVATEAPP");
6709 case 0x001D: return wxT("WM_FONTCHANGE");
6710 case 0x001E: return wxT("WM_TIMECHANGE");
6711 case 0x001F: return wxT("WM_CANCELMODE");
6712 case 0x0020: return wxT("WM_SETCURSOR");
6713 case 0x0021: return wxT("WM_MOUSEACTIVATE");
6714 case 0x0022: return wxT("WM_CHILDACTIVATE");
6715 case 0x0023: return wxT("WM_QUEUESYNC");
6716 case 0x0024: return wxT("WM_GETMINMAXINFO");
6717 case 0x0026: return wxT("WM_PAINTICON");
6718 case 0x0027: return wxT("WM_ICONERASEBKGND");
6719 case 0x0028: return wxT("WM_NEXTDLGCTL");
6720 case 0x002A: return wxT("WM_SPOOLERSTATUS");
6721 case 0x002B: return wxT("WM_DRAWITEM");
6722 case 0x002C: return wxT("WM_MEASUREITEM");
6723 case 0x002D: return wxT("WM_DELETEITEM");
6724 case 0x002E: return wxT("WM_VKEYTOITEM");
6725 case 0x002F: return wxT("WM_CHARTOITEM");
6726 case 0x0030: return wxT("WM_SETFONT");
6727 case 0x0031: return wxT("WM_GETFONT");
6728 case 0x0037: return wxT("WM_QUERYDRAGICON");
6729 case 0x0039: return wxT("WM_COMPAREITEM");
6730 case 0x0041: return wxT("WM_COMPACTING");
6731 case 0x0044: return wxT("WM_COMMNOTIFY");
6732 case 0x0046: return wxT("WM_WINDOWPOSCHANGING");
6733 case 0x0047: return wxT("WM_WINDOWPOSCHANGED");
6734 case 0x0048: return wxT("WM_POWER");
6736 case 0x004A: return wxT("WM_COPYDATA");
6737 case 0x004B: return wxT("WM_CANCELJOURNAL");
6738 case 0x004E: return wxT("WM_NOTIFY");
6739 case 0x0050: return wxT("WM_INPUTLANGCHANGEREQUEST");
6740 case 0x0051: return wxT("WM_INPUTLANGCHANGE");
6741 case 0x0052: return wxT("WM_TCARD");
6742 case 0x0053: return wxT("WM_HELP");
6743 case 0x0054: return wxT("WM_USERCHANGED");
6744 case 0x0055: return wxT("WM_NOTIFYFORMAT");
6745 case 0x007B: return wxT("WM_CONTEXTMENU");
6746 case 0x007C: return wxT("WM_STYLECHANGING");
6747 case 0x007D: return wxT("WM_STYLECHANGED");
6748 case 0x007E: return wxT("WM_DISPLAYCHANGE");
6749 case 0x007F: return wxT("WM_GETICON");
6750 case 0x0080: return wxT("WM_SETICON");
6752 case 0x0081: return wxT("WM_NCCREATE");
6753 case 0x0082: return wxT("WM_NCDESTROY");
6754 case 0x0083: return wxT("WM_NCCALCSIZE");
6755 case 0x0084: return wxT("WM_NCHITTEST");
6756 case 0x0085: return wxT("WM_NCPAINT");
6757 case 0x0086: return wxT("WM_NCACTIVATE");
6758 case 0x0087: return wxT("WM_GETDLGCODE");
6759 case 0x00A0: return wxT("WM_NCMOUSEMOVE");
6760 case 0x00A1: return wxT("WM_NCLBUTTONDOWN");
6761 case 0x00A2: return wxT("WM_NCLBUTTONUP");
6762 case 0x00A3: return wxT("WM_NCLBUTTONDBLCLK");
6763 case 0x00A4: return wxT("WM_NCRBUTTONDOWN");
6764 case 0x00A5: return wxT("WM_NCRBUTTONUP");
6765 case 0x00A6: return wxT("WM_NCRBUTTONDBLCLK");
6766 case 0x00A7: return wxT("WM_NCMBUTTONDOWN");
6767 case 0x00A8: return wxT("WM_NCMBUTTONUP");
6768 case 0x00A9: return wxT("WM_NCMBUTTONDBLCLK");
6770 case 0x00B0: return wxT("EM_GETSEL");
6771 case 0x00B1: return wxT("EM_SETSEL");
6772 case 0x00B2: return wxT("EM_GETRECT");
6773 case 0x00B3: return wxT("EM_SETRECT");
6774 case 0x00B4: return wxT("EM_SETRECTNP");
6775 case 0x00B5: return wxT("EM_SCROLL");
6776 case 0x00B6: return wxT("EM_LINESCROLL");
6777 case 0x00B7: return wxT("EM_SCROLLCARET");
6778 case 0x00B8: return wxT("EM_GETMODIFY");
6779 case 0x00B9: return wxT("EM_SETMODIFY");
6780 case 0x00BA: return wxT("EM_GETLINECOUNT");
6781 case 0x00BB: return wxT("EM_LINEINDEX");
6782 case 0x00BC: return wxT("EM_SETHANDLE");
6783 case 0x00BD: return wxT("EM_GETHANDLE");
6784 case 0x00BE: return wxT("EM_GETTHUMB");
6785 case 0x00C1: return wxT("EM_LINELENGTH");
6786 case 0x00C2: return wxT("EM_REPLACESEL");
6787 case 0x00C4: return wxT("EM_GETLINE");
6788 case 0x00C5: return wxT("EM_LIMITTEXT/EM_SETLIMITTEXT"); /* ;win40 Name change */
6789 case 0x00C6: return wxT("EM_CANUNDO");
6790 case 0x00C7: return wxT("EM_UNDO");
6791 case 0x00C8: return wxT("EM_FMTLINES");
6792 case 0x00C9: return wxT("EM_LINEFROMCHAR");
6793 case 0x00CB: return wxT("EM_SETTABSTOPS");
6794 case 0x00CC: return wxT("EM_SETPASSWORDCHAR");
6795 case 0x00CD: return wxT("EM_EMPTYUNDOBUFFER");
6796 case 0x00CE: return wxT("EM_GETFIRSTVISIBLELINE");
6797 case 0x00CF: return wxT("EM_SETREADONLY");
6798 case 0x00D0: return wxT("EM_SETWORDBREAKPROC");
6799 case 0x00D1: return wxT("EM_GETWORDBREAKPROC");
6800 case 0x00D2: return wxT("EM_GETPASSWORDCHAR");
6801 case 0x00D3: return wxT("EM_SETMARGINS");
6802 case 0x00D4: return wxT("EM_GETMARGINS");
6803 case 0x00D5: return wxT("EM_GETLIMITTEXT");
6804 case 0x00D6: return wxT("EM_POSFROMCHAR");
6805 case 0x00D7: return wxT("EM_CHARFROMPOS");
6806 case 0x00D8: return wxT("EM_SETIMESTATUS");
6807 case 0x00D9: return wxT("EM_GETIMESTATUS");
6809 case 0x0100: return wxT("WM_KEYDOWN");
6810 case 0x0101: return wxT("WM_KEYUP");
6811 case 0x0102: return wxT("WM_CHAR");
6812 case 0x0103: return wxT("WM_DEADCHAR");
6813 case 0x0104: return wxT("WM_SYSKEYDOWN");
6814 case 0x0105: return wxT("WM_SYSKEYUP");
6815 case 0x0106: return wxT("WM_SYSCHAR");
6816 case 0x0107: return wxT("WM_SYSDEADCHAR");
6817 case 0x0108: return wxT("WM_KEYLAST");
6819 case 0x010D: return wxT("WM_IME_STARTCOMPOSITION");
6820 case 0x010E: return wxT("WM_IME_ENDCOMPOSITION");
6821 case 0x010F: return wxT("WM_IME_COMPOSITION");
6823 case 0x0110: return wxT("WM_INITDIALOG");
6824 case 0x0111: return wxT("WM_COMMAND");
6825 case 0x0112: return wxT("WM_SYSCOMMAND");
6826 case 0x0113: return wxT("WM_TIMER");
6827 case 0x0114: return wxT("WM_HSCROLL");
6828 case 0x0115: return wxT("WM_VSCROLL");
6829 case 0x0116: return wxT("WM_INITMENU");
6830 case 0x0117: return wxT("WM_INITMENUPOPUP");
6831 case 0x011F: return wxT("WM_MENUSELECT");
6832 case 0x0120: return wxT("WM_MENUCHAR");
6833 case 0x0121: return wxT("WM_ENTERIDLE");
6835 case 0x0127: return wxT("WM_CHANGEUISTATE");
6836 case 0x0128: return wxT("WM_UPDATEUISTATE");
6837 case 0x0129: return wxT("WM_QUERYUISTATE");
6839 case 0x0132: return wxT("WM_CTLCOLORMSGBOX");
6840 case 0x0133: return wxT("WM_CTLCOLOREDIT");
6841 case 0x0134: return wxT("WM_CTLCOLORLISTBOX");
6842 case 0x0135: return wxT("WM_CTLCOLORBTN");
6843 case 0x0136: return wxT("WM_CTLCOLORDLG");
6844 case 0x0137: return wxT("WM_CTLCOLORSCROLLBAR");
6845 case 0x0138: return wxT("WM_CTLCOLORSTATIC");
6846 case 0x01E1: return wxT("MN_GETHMENU");
6848 case 0x0200: return wxT("WM_MOUSEMOVE");
6849 case 0x0201: return wxT("WM_LBUTTONDOWN");
6850 case 0x0202: return wxT("WM_LBUTTONUP");
6851 case 0x0203: return wxT("WM_LBUTTONDBLCLK");
6852 case 0x0204: return wxT("WM_RBUTTONDOWN");
6853 case 0x0205: return wxT("WM_RBUTTONUP");
6854 case 0x0206: return wxT("WM_RBUTTONDBLCLK");
6855 case 0x0207: return wxT("WM_MBUTTONDOWN");
6856 case 0x0208: return wxT("WM_MBUTTONUP");
6857 case 0x0209: return wxT("WM_MBUTTONDBLCLK");
6858 case 0x020A: return wxT("WM_MOUSEWHEEL");
6859 case 0x020B: return wxT("WM_XBUTTONDOWN");
6860 case 0x020C: return wxT("WM_XBUTTONUP");
6861 case 0x020D: return wxT("WM_XBUTTONDBLCLK");
6862 case 0x0210: return wxT("WM_PARENTNOTIFY");
6863 case 0x0211: return wxT("WM_ENTERMENULOOP");
6864 case 0x0212: return wxT("WM_EXITMENULOOP");
6866 case 0x0213: return wxT("WM_NEXTMENU");
6867 case 0x0214: return wxT("WM_SIZING");
6868 case 0x0215: return wxT("WM_CAPTURECHANGED");
6869 case 0x0216: return wxT("WM_MOVING");
6870 case 0x0218: return wxT("WM_POWERBROADCAST");
6871 case 0x0219: return wxT("WM_DEVICECHANGE");
6873 case 0x0220: return wxT("WM_MDICREATE");
6874 case 0x0221: return wxT("WM_MDIDESTROY");
6875 case 0x0222: return wxT("WM_MDIACTIVATE");
6876 case 0x0223: return wxT("WM_MDIRESTORE");
6877 case 0x0224: return wxT("WM_MDINEXT");
6878 case 0x0225: return wxT("WM_MDIMAXIMIZE");
6879 case 0x0226: return wxT("WM_MDITILE");
6880 case 0x0227: return wxT("WM_MDICASCADE");
6881 case 0x0228: return wxT("WM_MDIICONARRANGE");
6882 case 0x0229: return wxT("WM_MDIGETACTIVE");
6883 case 0x0230: return wxT("WM_MDISETMENU");
6884 case 0x0233: return wxT("WM_DROPFILES");
6886 case 0x0281: return wxT("WM_IME_SETCONTEXT");
6887 case 0x0282: return wxT("WM_IME_NOTIFY");
6888 case 0x0283: return wxT("WM_IME_CONTROL");
6889 case 0x0284: return wxT("WM_IME_COMPOSITIONFULL");
6890 case 0x0285: return wxT("WM_IME_SELECT");
6891 case 0x0286: return wxT("WM_IME_CHAR");
6892 case 0x0290: return wxT("WM_IME_KEYDOWN");
6893 case 0x0291: return wxT("WM_IME_KEYUP");
6895 case 0x02A0: return wxT("WM_NCMOUSEHOVER");
6896 case 0x02A1: return wxT("WM_MOUSEHOVER");
6897 case 0x02A2: return wxT("WM_NCMOUSELEAVE");
6898 case 0x02A3: return wxT("WM_MOUSELEAVE");
6900 case 0x0300: return wxT("WM_CUT");
6901 case 0x0301: return wxT("WM_COPY");
6902 case 0x0302: return wxT("WM_PASTE");
6903 case 0x0303: return wxT("WM_CLEAR");
6904 case 0x0304: return wxT("WM_UNDO");
6905 case 0x0305: return wxT("WM_RENDERFORMAT");
6906 case 0x0306: return wxT("WM_RENDERALLFORMATS");
6907 case 0x0307: return wxT("WM_DESTROYCLIPBOARD");
6908 case 0x0308: return wxT("WM_DRAWCLIPBOARD");
6909 case 0x0309: return wxT("WM_PAINTCLIPBOARD");
6910 case 0x030A: return wxT("WM_VSCROLLCLIPBOARD");
6911 case 0x030B: return wxT("WM_SIZECLIPBOARD");
6912 case 0x030C: return wxT("WM_ASKCBFORMATNAME");
6913 case 0x030D: return wxT("WM_CHANGECBCHAIN");
6914 case 0x030E: return wxT("WM_HSCROLLCLIPBOARD");
6915 case 0x030F: return wxT("WM_QUERYNEWPALETTE");
6916 case 0x0310: return wxT("WM_PALETTEISCHANGING");
6917 case 0x0311: return wxT("WM_PALETTECHANGED");
6918 case 0x0312: return wxT("WM_HOTKEY");
6920 case 0x0317: return wxT("WM_PRINT");
6921 case 0x0318: return wxT("WM_PRINTCLIENT");
6923 // common controls messages - although they're not strictly speaking
6924 // standard, it's nice to decode them nevertheless
6927 case 0x1000 + 0: return wxT("LVM_GETBKCOLOR");
6928 case 0x1000 + 1: return wxT("LVM_SETBKCOLOR");
6929 case 0x1000 + 2: return wxT("LVM_GETIMAGELIST");
6930 case 0x1000 + 3: return wxT("LVM_SETIMAGELIST");
6931 case 0x1000 + 4: return wxT("LVM_GETITEMCOUNT");
6932 case 0x1000 + 5: return wxT("LVM_GETITEMA");
6933 case 0x1000 + 75: return wxT("LVM_GETITEMW");
6934 case 0x1000 + 6: return wxT("LVM_SETITEMA");
6935 case 0x1000 + 76: return wxT("LVM_SETITEMW");
6936 case 0x1000 + 7: return wxT("LVM_INSERTITEMA");
6937 case 0x1000 + 77: return wxT("LVM_INSERTITEMW");
6938 case 0x1000 + 8: return wxT("LVM_DELETEITEM");
6939 case 0x1000 + 9: return wxT("LVM_DELETEALLITEMS");
6940 case 0x1000 + 10: return wxT("LVM_GETCALLBACKMASK");
6941 case 0x1000 + 11: return wxT("LVM_SETCALLBACKMASK");
6942 case 0x1000 + 12: return wxT("LVM_GETNEXTITEM");
6943 case 0x1000 + 13: return wxT("LVM_FINDITEMA");
6944 case 0x1000 + 83: return wxT("LVM_FINDITEMW");
6945 case 0x1000 + 14: return wxT("LVM_GETITEMRECT");
6946 case 0x1000 + 15: return wxT("LVM_SETITEMPOSITION");
6947 case 0x1000 + 16: return wxT("LVM_GETITEMPOSITION");
6948 case 0x1000 + 17: return wxT("LVM_GETSTRINGWIDTHA");
6949 case 0x1000 + 87: return wxT("LVM_GETSTRINGWIDTHW");
6950 case 0x1000 + 18: return wxT("LVM_HITTEST");
6951 case 0x1000 + 19: return wxT("LVM_ENSUREVISIBLE");
6952 case 0x1000 + 20: return wxT("LVM_SCROLL");
6953 case 0x1000 + 21: return wxT("LVM_REDRAWITEMS");
6954 case 0x1000 + 22: return wxT("LVM_ARRANGE");
6955 case 0x1000 + 23: return wxT("LVM_EDITLABELA");
6956 case 0x1000 + 118: return wxT("LVM_EDITLABELW");
6957 case 0x1000 + 24: return wxT("LVM_GETEDITCONTROL");
6958 case 0x1000 + 25: return wxT("LVM_GETCOLUMNA");
6959 case 0x1000 + 95: return wxT("LVM_GETCOLUMNW");
6960 case 0x1000 + 26: return wxT("LVM_SETCOLUMNA");
6961 case 0x1000 + 96: return wxT("LVM_SETCOLUMNW");
6962 case 0x1000 + 27: return wxT("LVM_INSERTCOLUMNA");
6963 case 0x1000 + 97: return wxT("LVM_INSERTCOLUMNW");
6964 case 0x1000 + 28: return wxT("LVM_DELETECOLUMN");
6965 case 0x1000 + 29: return wxT("LVM_GETCOLUMNWIDTH");
6966 case 0x1000 + 30: return wxT("LVM_SETCOLUMNWIDTH");
6967 case 0x1000 + 31: return wxT("LVM_GETHEADER");
6968 case 0x1000 + 33: return wxT("LVM_CREATEDRAGIMAGE");
6969 case 0x1000 + 34: return wxT("LVM_GETVIEWRECT");
6970 case 0x1000 + 35: return wxT("LVM_GETTEXTCOLOR");
6971 case 0x1000 + 36: return wxT("LVM_SETTEXTCOLOR");
6972 case 0x1000 + 37: return wxT("LVM_GETTEXTBKCOLOR");
6973 case 0x1000 + 38: return wxT("LVM_SETTEXTBKCOLOR");
6974 case 0x1000 + 39: return wxT("LVM_GETTOPINDEX");
6975 case 0x1000 + 40: return wxT("LVM_GETCOUNTPERPAGE");
6976 case 0x1000 + 41: return wxT("LVM_GETORIGIN");
6977 case 0x1000 + 42: return wxT("LVM_UPDATE");
6978 case 0x1000 + 43: return wxT("LVM_SETITEMSTATE");
6979 case 0x1000 + 44: return wxT("LVM_GETITEMSTATE");
6980 case 0x1000 + 45: return wxT("LVM_GETITEMTEXTA");
6981 case 0x1000 + 115: return wxT("LVM_GETITEMTEXTW");
6982 case 0x1000 + 46: return wxT("LVM_SETITEMTEXTA");
6983 case 0x1000 + 116: return wxT("LVM_SETITEMTEXTW");
6984 case 0x1000 + 47: return wxT("LVM_SETITEMCOUNT");
6985 case 0x1000 + 48: return wxT("LVM_SORTITEMS");
6986 case 0x1000 + 49: return wxT("LVM_SETITEMPOSITION32");
6987 case 0x1000 + 50: return wxT("LVM_GETSELECTEDCOUNT");
6988 case 0x1000 + 51: return wxT("LVM_GETITEMSPACING");
6989 case 0x1000 + 52: return wxT("LVM_GETISEARCHSTRINGA");
6990 case 0x1000 + 117: return wxT("LVM_GETISEARCHSTRINGW");
6991 case 0x1000 + 53: return wxT("LVM_SETICONSPACING");
6992 case 0x1000 + 54: return wxT("LVM_SETEXTENDEDLISTVIEWSTYLE");
6993 case 0x1000 + 55: return wxT("LVM_GETEXTENDEDLISTVIEWSTYLE");
6994 case 0x1000 + 56: return wxT("LVM_GETSUBITEMRECT");
6995 case 0x1000 + 57: return wxT("LVM_SUBITEMHITTEST");
6996 case 0x1000 + 58: return wxT("LVM_SETCOLUMNORDERARRAY");
6997 case 0x1000 + 59: return wxT("LVM_GETCOLUMNORDERARRAY");
6998 case 0x1000 + 60: return wxT("LVM_SETHOTITEM");
6999 case 0x1000 + 61: return wxT("LVM_GETHOTITEM");
7000 case 0x1000 + 62: return wxT("LVM_SETHOTCURSOR");
7001 case 0x1000 + 63: return wxT("LVM_GETHOTCURSOR");
7002 case 0x1000 + 64: return wxT("LVM_APPROXIMATEVIEWRECT");
7003 case 0x1000 + 65: return wxT("LVM_SETWORKAREA");
7006 case 0x1100 + 0: return wxT("TVM_INSERTITEMA");
7007 case 0x1100 + 50: return wxT("TVM_INSERTITEMW");
7008 case 0x1100 + 1: return wxT("TVM_DELETEITEM");
7009 case 0x1100 + 2: return wxT("TVM_EXPAND");
7010 case 0x1100 + 4: return wxT("TVM_GETITEMRECT");
7011 case 0x1100 + 5: return wxT("TVM_GETCOUNT");
7012 case 0x1100 + 6: return wxT("TVM_GETINDENT");
7013 case 0x1100 + 7: return wxT("TVM_SETINDENT");
7014 case 0x1100 + 8: return wxT("TVM_GETIMAGELIST");
7015 case 0x1100 + 9: return wxT("TVM_SETIMAGELIST");
7016 case 0x1100 + 10: return wxT("TVM_GETNEXTITEM");
7017 case 0x1100 + 11: return wxT("TVM_SELECTITEM");
7018 case 0x1100 + 12: return wxT("TVM_GETITEMA");
7019 case 0x1100 + 62: return wxT("TVM_GETITEMW");
7020 case 0x1100 + 13: return wxT("TVM_SETITEMA");
7021 case 0x1100 + 63: return wxT("TVM_SETITEMW");
7022 case 0x1100 + 14: return wxT("TVM_EDITLABELA");
7023 case 0x1100 + 65: return wxT("TVM_EDITLABELW");
7024 case 0x1100 + 15: return wxT("TVM_GETEDITCONTROL");
7025 case 0x1100 + 16: return wxT("TVM_GETVISIBLECOUNT");
7026 case 0x1100 + 17: return wxT("TVM_HITTEST");
7027 case 0x1100 + 18: return wxT("TVM_CREATEDRAGIMAGE");
7028 case 0x1100 + 19: return wxT("TVM_SORTCHILDREN");
7029 case 0x1100 + 20: return wxT("TVM_ENSUREVISIBLE");
7030 case 0x1100 + 21: return wxT("TVM_SORTCHILDRENCB");
7031 case 0x1100 + 22: return wxT("TVM_ENDEDITLABELNOW");
7032 case 0x1100 + 23: return wxT("TVM_GETISEARCHSTRINGA");
7033 case 0x1100 + 64: return wxT("TVM_GETISEARCHSTRINGW");
7034 case 0x1100 + 24: return wxT("TVM_SETTOOLTIPS");
7035 case 0x1100 + 25: return wxT("TVM_GETTOOLTIPS");
7038 case 0x1200 + 0: return wxT("HDM_GETITEMCOUNT");
7039 case 0x1200 + 1: return wxT("HDM_INSERTITEMA");
7040 case 0x1200 + 10: return wxT("HDM_INSERTITEMW");
7041 case 0x1200 + 2: return wxT("HDM_DELETEITEM");
7042 case 0x1200 + 3: return wxT("HDM_GETITEMA");
7043 case 0x1200 + 11: return wxT("HDM_GETITEMW");
7044 case 0x1200 + 4: return wxT("HDM_SETITEMA");
7045 case 0x1200 + 12: return wxT("HDM_SETITEMW");
7046 case 0x1200 + 5: return wxT("HDM_LAYOUT");
7047 case 0x1200 + 6: return wxT("HDM_HITTEST");
7048 case 0x1200 + 7: return wxT("HDM_GETITEMRECT");
7049 case 0x1200 + 8: return wxT("HDM_SETIMAGELIST");
7050 case 0x1200 + 9: return wxT("HDM_GETIMAGELIST");
7051 case 0x1200 + 15: return wxT("HDM_ORDERTOINDEX");
7052 case 0x1200 + 16: return wxT("HDM_CREATEDRAGIMAGE");
7053 case 0x1200 + 17: return wxT("HDM_GETORDERARRAY");
7054 case 0x1200 + 18: return wxT("HDM_SETORDERARRAY");
7055 case 0x1200 + 19: return wxT("HDM_SETHOTDIVIDER");
7058 case 0x1300 + 2: return wxT("TCM_GETIMAGELIST");
7059 case 0x1300 + 3: return wxT("TCM_SETIMAGELIST");
7060 case 0x1300 + 4: return wxT("TCM_GETITEMCOUNT");
7061 case 0x1300 + 5: return wxT("TCM_GETITEMA");
7062 case 0x1300 + 60: return wxT("TCM_GETITEMW");
7063 case 0x1300 + 6: return wxT("TCM_SETITEMA");
7064 case 0x1300 + 61: return wxT("TCM_SETITEMW");
7065 case 0x1300 + 7: return wxT("TCM_INSERTITEMA");
7066 case 0x1300 + 62: return wxT("TCM_INSERTITEMW");
7067 case 0x1300 + 8: return wxT("TCM_DELETEITEM");
7068 case 0x1300 + 9: return wxT("TCM_DELETEALLITEMS");
7069 case 0x1300 + 10: return wxT("TCM_GETITEMRECT");
7070 case 0x1300 + 11: return wxT("TCM_GETCURSEL");
7071 case 0x1300 + 12: return wxT("TCM_SETCURSEL");
7072 case 0x1300 + 13: return wxT("TCM_HITTEST");
7073 case 0x1300 + 14: return wxT("TCM_SETITEMEXTRA");
7074 case 0x1300 + 40: return wxT("TCM_ADJUSTRECT");
7075 case 0x1300 + 41: return wxT("TCM_SETITEMSIZE");
7076 case 0x1300 + 42: return wxT("TCM_REMOVEIMAGE");
7077 case 0x1300 + 43: return wxT("TCM_SETPADDING");
7078 case 0x1300 + 44: return wxT("TCM_GETROWCOUNT");
7079 case 0x1300 + 45: return wxT("TCM_GETTOOLTIPS");
7080 case 0x1300 + 46: return wxT("TCM_SETTOOLTIPS");
7081 case 0x1300 + 47: return wxT("TCM_GETCURFOCUS");
7082 case 0x1300 + 48: return wxT("TCM_SETCURFOCUS");
7083 case 0x1300 + 49: return wxT("TCM_SETMINTABWIDTH");
7084 case 0x1300 + 50: return wxT("TCM_DESELECTALL");
7087 case WM_USER
+1: return wxT("TB_ENABLEBUTTON");
7088 case WM_USER
+2: return wxT("TB_CHECKBUTTON");
7089 case WM_USER
+3: return wxT("TB_PRESSBUTTON");
7090 case WM_USER
+4: return wxT("TB_HIDEBUTTON");
7091 case WM_USER
+5: return wxT("TB_INDETERMINATE");
7092 case WM_USER
+9: return wxT("TB_ISBUTTONENABLED");
7093 case WM_USER
+10: return wxT("TB_ISBUTTONCHECKED");
7094 case WM_USER
+11: return wxT("TB_ISBUTTONPRESSED");
7095 case WM_USER
+12: return wxT("TB_ISBUTTONHIDDEN");
7096 case WM_USER
+13: return wxT("TB_ISBUTTONINDETERMINATE");
7097 case WM_USER
+17: return wxT("TB_SETSTATE");
7098 case WM_USER
+18: return wxT("TB_GETSTATE");
7099 case WM_USER
+19: return wxT("TB_ADDBITMAP");
7100 case WM_USER
+20: return wxT("TB_ADDBUTTONS");
7101 case WM_USER
+21: return wxT("TB_INSERTBUTTON");
7102 case WM_USER
+22: return wxT("TB_DELETEBUTTON");
7103 case WM_USER
+23: return wxT("TB_GETBUTTON");
7104 case WM_USER
+24: return wxT("TB_BUTTONCOUNT");
7105 case WM_USER
+25: return wxT("TB_COMMANDTOINDEX");
7106 case WM_USER
+26: return wxT("TB_SAVERESTOREA");
7107 case WM_USER
+76: return wxT("TB_SAVERESTOREW");
7108 case WM_USER
+27: return wxT("TB_CUSTOMIZE");
7109 case WM_USER
+28: return wxT("TB_ADDSTRINGA");
7110 case WM_USER
+77: return wxT("TB_ADDSTRINGW");
7111 case WM_USER
+29: return wxT("TB_GETITEMRECT");
7112 case WM_USER
+30: return wxT("TB_BUTTONSTRUCTSIZE");
7113 case WM_USER
+31: return wxT("TB_SETBUTTONSIZE");
7114 case WM_USER
+32: return wxT("TB_SETBITMAPSIZE");
7115 case WM_USER
+33: return wxT("TB_AUTOSIZE");
7116 case WM_USER
+35: return wxT("TB_GETTOOLTIPS");
7117 case WM_USER
+36: return wxT("TB_SETTOOLTIPS");
7118 case WM_USER
+37: return wxT("TB_SETPARENT");
7119 case WM_USER
+39: return wxT("TB_SETROWS");
7120 case WM_USER
+40: return wxT("TB_GETROWS");
7121 case WM_USER
+42: return wxT("TB_SETCMDID");
7122 case WM_USER
+43: return wxT("TB_CHANGEBITMAP");
7123 case WM_USER
+44: return wxT("TB_GETBITMAP");
7124 case WM_USER
+45: return wxT("TB_GETBUTTONTEXTA");
7125 case WM_USER
+75: return wxT("TB_GETBUTTONTEXTW");
7126 case WM_USER
+46: return wxT("TB_REPLACEBITMAP");
7127 case WM_USER
+47: return wxT("TB_SETINDENT");
7128 case WM_USER
+48: return wxT("TB_SETIMAGELIST");
7129 case WM_USER
+49: return wxT("TB_GETIMAGELIST");
7130 case WM_USER
+50: return wxT("TB_LOADIMAGES");
7131 case WM_USER
+51: return wxT("TB_GETRECT");
7132 case WM_USER
+52: return wxT("TB_SETHOTIMAGELIST");
7133 case WM_USER
+53: return wxT("TB_GETHOTIMAGELIST");
7134 case WM_USER
+54: return wxT("TB_SETDISABLEDIMAGELIST");
7135 case WM_USER
+55: return wxT("TB_GETDISABLEDIMAGELIST");
7136 case WM_USER
+56: return wxT("TB_SETSTYLE");
7137 case WM_USER
+57: return wxT("TB_GETSTYLE");
7138 case WM_USER
+58: return wxT("TB_GETBUTTONSIZE");
7139 case WM_USER
+59: return wxT("TB_SETBUTTONWIDTH");
7140 case WM_USER
+60: return wxT("TB_SETMAXTEXTROWS");
7141 case WM_USER
+61: return wxT("TB_GETTEXTROWS");
7142 case WM_USER
+41: return wxT("TB_GETBITMAPFLAGS");
7145 static wxString s_szBuf
;
7146 s_szBuf
.Printf(wxT("<unknown message = %d>"), message
);
7147 return s_szBuf
.c_str();
7150 #endif // wxDEBUG_LEVEL >= 2
7152 static TEXTMETRIC
wxGetTextMetrics(const wxWindowMSW
*win
)
7156 HWND hwnd
= GetHwndOf(win
);
7157 HDC hdc
= ::GetDC(hwnd
);
7159 #if !wxDIALOG_UNIT_COMPATIBILITY
7160 // and select the current font into it
7161 HFONT hfont
= GetHfontOf(win
->GetFont());
7164 hfont
= (HFONT
)::SelectObject(hdc
, hfont
);
7168 // finally retrieve the text metrics from it
7169 GetTextMetrics(hdc
, &tm
);
7171 #if !wxDIALOG_UNIT_COMPATIBILITY
7175 (void)::SelectObject(hdc
, hfont
);
7179 ::ReleaseDC(hwnd
, hdc
);
7184 // Find the wxWindow at the current mouse position, returning the mouse
7186 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
7188 pt
= wxGetMousePosition();
7189 return wxFindWindowAtPoint(pt
);
7192 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
7198 HWND hWnd
= ::WindowFromPoint(pt2
);
7200 return wxGetWindowFromHWND((WXHWND
)hWnd
);
7203 // Get the current mouse position.
7204 wxPoint
wxGetMousePosition()
7207 wxGetCursorPosMSW(&pt
);
7209 return wxPoint(pt
.x
, pt
.y
);
7214 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7215 static void WinCEUnregisterHotKey(int modifiers
, int id
)
7217 // Register hotkeys for the hardware buttons
7219 typedef BOOL (WINAPI
*UnregisterFunc1Proc
)(UINT
, UINT
);
7221 UnregisterFunc1Proc procUnregisterFunc
;
7222 hCoreDll
= LoadLibrary(wxT("coredll.dll"));
7225 procUnregisterFunc
= (UnregisterFunc1Proc
)GetProcAddress(hCoreDll
, wxT("UnregisterFunc1"));
7226 if (procUnregisterFunc
)
7227 procUnregisterFunc(modifiers
, id
);
7228 FreeLibrary(hCoreDll
);
7233 bool wxWindowMSW::RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
)
7235 UINT win_modifiers
=0;
7236 if ( modifiers
& wxMOD_ALT
)
7237 win_modifiers
|= MOD_ALT
;
7238 if ( modifiers
& wxMOD_SHIFT
)
7239 win_modifiers
|= MOD_SHIFT
;
7240 if ( modifiers
& wxMOD_CONTROL
)
7241 win_modifiers
|= MOD_CONTROL
;
7242 if ( modifiers
& wxMOD_WIN
)
7243 win_modifiers
|= MOD_WIN
;
7245 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7246 // Required for PPC and Smartphone hardware buttons
7247 if (keycode
>= WXK_SPECIAL1
&& keycode
<= WXK_SPECIAL20
)
7248 WinCEUnregisterHotKey(win_modifiers
, hotkeyId
);
7251 if ( !::RegisterHotKey(GetHwnd(), hotkeyId
, win_modifiers
, keycode
) )
7253 wxLogLastError(wxT("RegisterHotKey"));
7261 bool wxWindowMSW::UnregisterHotKey(int hotkeyId
)
7263 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7264 WinCEUnregisterHotKey(MOD_WIN
, hotkeyId
);
7267 if ( !::UnregisterHotKey(GetHwnd(), hotkeyId
) )
7269 wxLogLastError(wxT("UnregisterHotKey"));
7279 bool wxWindowMSW::HandleHotKey(WXWPARAM wParam
, WXLPARAM lParam
)
7281 int win_modifiers
= LOWORD(lParam
);
7283 wxKeyEvent
event(CreateKeyEvent(wxEVT_HOTKEY
, HIWORD(lParam
)));
7284 event
.SetId(wParam
);
7285 event
.m_shiftDown
= (win_modifiers
& MOD_SHIFT
) != 0;
7286 event
.m_controlDown
= (win_modifiers
& MOD_CONTROL
) != 0;
7287 event
.m_altDown
= (win_modifiers
& MOD_ALT
) != 0;
7288 event
.m_metaDown
= (win_modifiers
& MOD_WIN
) != 0;
7290 return HandleWindowEvent(event
);
7293 #endif // wxUSE_ACCEL
7295 #endif // wxUSE_HOTKEY
7297 // Not tested under WinCE
7300 // this class installs a message hook which really wakes up our idle processing
7301 // each time a WM_NULL is received (wxWakeUpIdle does this), even if we're
7302 // sitting inside a local modal loop (e.g. a menu is opened or scrollbar is
7303 // being dragged or even inside ::MessageBox()) and so don't control message
7304 // dispatching otherwise
7305 class wxIdleWakeUpModule
: public wxModule
7308 virtual bool OnInit()
7310 ms_hMsgHookProc
= ::SetWindowsHookEx
7313 &wxIdleWakeUpModule::MsgHookProc
,
7315 GetCurrentThreadId()
7318 if ( !ms_hMsgHookProc
)
7320 wxLogLastError(wxT("SetWindowsHookEx(WH_GETMESSAGE)"));
7328 virtual void OnExit()
7330 ::UnhookWindowsHookEx(wxIdleWakeUpModule::ms_hMsgHookProc
);
7333 static LRESULT CALLBACK
MsgHookProc(int nCode
, WPARAM wParam
, LPARAM lParam
)
7335 MSG
*msg
= (MSG
*)lParam
;
7337 // only process the message if it is actually going to be removed from
7338 // the message queue, this prevents that the same event from being
7339 // processed multiple times if now someone just called PeekMessage()
7340 if ( msg
->message
== WM_NULL
&& wParam
== PM_REMOVE
)
7342 wxTheApp
->ProcessPendingEvents();
7345 return CallNextHookEx(ms_hMsgHookProc
, nCode
, wParam
, lParam
);
7349 static HHOOK ms_hMsgHookProc
;
7351 DECLARE_DYNAMIC_CLASS(wxIdleWakeUpModule
)
7354 HHOOK
wxIdleWakeUpModule::ms_hMsgHookProc
= 0;
7356 IMPLEMENT_DYNAMIC_CLASS(wxIdleWakeUpModule
, wxModule
)
7358 #endif // __WXWINCE__
7363 static void wxAdjustZOrder(wxWindow
* parent
)
7365 if (parent
->IsKindOf(CLASSINFO(wxStaticBox
)))
7367 // Set the z-order correctly
7368 SetWindowPos((HWND
) parent
->GetHWND(), HWND_BOTTOM
, 0, 0, 0, 0, SWP_NOMOVE
|SWP_NOSIZE
);
7371 wxWindowList::compatibility_iterator current
= parent
->GetChildren().GetFirst();
7374 wxWindow
*childWin
= current
->GetData();
7375 wxAdjustZOrder(childWin
);
7376 current
= current
->GetNext();
7381 // We need to adjust the z-order of static boxes in WinCE, to
7382 // make 'contained' controls visible
7383 void wxWindowMSW::OnInitDialog( wxInitDialogEvent
& event
)
7386 wxAdjustZOrder(this);