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__
325 // On Windows CE, GetCursorPos can return an error, so use this function
327 bool GetCursorPosWinCE(POINT
* pt
)
329 if (!GetCursorPos(pt
))
331 DWORD pos
= GetMessagePos();
339 // ---------------------------------------------------------------------------
341 // ---------------------------------------------------------------------------
343 // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
345 #ifdef __WXUNIVERSAL__
346 IMPLEMENT_ABSTRACT_CLASS(wxWindowMSW
, wxWindowBase
)
347 #endif // __WXUNIVERSAL__
349 BEGIN_EVENT_TABLE(wxWindowMSW
, wxWindowBase
)
350 EVT_SYS_COLOUR_CHANGED(wxWindowMSW::OnSysColourChanged
)
352 EVT_INIT_DIALOG(wxWindowMSW::OnInitDialog
)
356 // ===========================================================================
358 // ===========================================================================
360 // ---------------------------------------------------------------------------
361 // wxWindow utility functions
362 // ---------------------------------------------------------------------------
364 // Find an item given the MS Windows id
365 wxWindow
*wxWindowMSW::FindItem(long id
) const
368 wxControl
*item
= wxDynamicCastThis(wxControl
);
371 // is it us or one of our "internal" children?
372 if ( item
->GetId() == id
373 #ifndef __WXUNIVERSAL__
374 || (item
->GetSubcontrols().Index(id
) != wxNOT_FOUND
)
375 #endif // __WXUNIVERSAL__
381 #endif // wxUSE_CONTROLS
383 wxWindowList::compatibility_iterator current
= GetChildren().GetFirst();
386 wxWindow
*childWin
= current
->GetData();
388 wxWindow
*wnd
= childWin
->FindItem(id
);
392 current
= current
->GetNext();
398 // Find an item given the MS Windows handle
399 wxWindow
*wxWindowMSW::FindItemByHWND(WXHWND hWnd
, bool controlOnly
) const
401 wxWindowList::compatibility_iterator current
= GetChildren().GetFirst();
404 wxWindow
*parent
= current
->GetData();
406 // Do a recursive search.
407 wxWindow
*wnd
= parent
->FindItemByHWND(hWnd
);
413 || parent
->IsKindOf(CLASSINFO(wxControl
))
414 #endif // wxUSE_CONTROLS
417 wxWindow
*item
= current
->GetData();
418 if ( item
->GetHWND() == hWnd
)
422 if ( item
->ContainsHWND(hWnd
) )
427 current
= current
->GetNext();
432 // Default command handler
433 bool wxWindowMSW::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD
WXUNUSED(id
))
438 // ----------------------------------------------------------------------------
439 // constructors and such
440 // ----------------------------------------------------------------------------
442 void wxWindowMSW::Init()
446 m_mouseInWindow
= false;
447 m_lastKeydownProcessed
= false;
454 #if wxUSE_DEFERRED_SIZING
456 m_pendingPosition
= wxDefaultPosition
;
457 m_pendingSize
= wxDefaultSize
;
458 #endif // wxUSE_DEFERRED_SIZING
461 m_contextMenuEnabled
= false;
466 wxWindowMSW::~wxWindowMSW()
470 #ifndef __WXUNIVERSAL__
471 // VS: make sure there's no wxFrame with last focus set to us:
472 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
474 wxTopLevelWindow
*frame
= wxDynamicCast(win
, wxTopLevelWindow
);
477 if ( frame
->GetLastFocus() == this )
479 frame
->SetLastFocus(NULL
);
482 // apparently sometimes we can end up with our grand parent
483 // pointing to us as well: this is surely a bug in focus handling
484 // code but it's not clear where it happens so for now just try to
485 // fix it here by not breaking out of the loop
489 #endif // __WXUNIVERSAL__
491 // VS: destroy children first and _then_ detach *this from its parent.
492 // If we did it the other way around, children wouldn't be able
493 // find their parent frame (see above).
498 // VZ: test temp removed to understand what really happens here
499 //if (::IsWindow(GetHwnd()))
501 if ( !::DestroyWindow(GetHwnd()) )
503 wxLogLastError(wxT("DestroyWindow"));
507 // remove hWnd <-> wxWindow association
508 wxRemoveHandleAssociation(this);
514 const wxChar
*wxWindowMSW::MSWGetRegisteredClassName()
516 return wxApp::GetRegisteredClassName(wxT("wxWindow"), COLOR_BTNFACE
);
519 // real construction (Init() must have been called before!)
520 bool wxWindowMSW::Create(wxWindow
*parent
,
525 const wxString
& name
)
527 wxCHECK_MSG( parent
, false, wxT("can't create wxWindow without parent") );
529 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
532 parent
->AddChild(this);
535 DWORD msflags
= MSWGetCreateWindowFlags(&exstyle
);
537 #ifdef __WXUNIVERSAL__
538 // no borders, we draw them ourselves
539 exstyle
&= ~(WS_EX_DLGMODALFRAME
|
543 msflags
&= ~WS_BORDER
;
544 #endif // wxUniversal
548 msflags
|= WS_VISIBLE
;
551 if ( !MSWCreate(MSWGetRegisteredClassName(),
552 NULL
, pos
, size
, msflags
, exstyle
) )
560 // ---------------------------------------------------------------------------
562 // ---------------------------------------------------------------------------
564 void wxWindowMSW::SetFocus()
566 HWND hWnd
= GetHwnd();
567 wxCHECK_RET( hWnd
, wxT("can't set focus to invalid window") );
569 #if !defined(__WXWINCE__)
573 if ( !::SetFocus(hWnd
) )
575 // was there really an error?
576 DWORD dwRes
= ::GetLastError();
579 HWND hwndFocus
= ::GetFocus();
580 if ( hwndFocus
!= hWnd
)
582 wxLogApiError(wxT("SetFocus"), dwRes
);
588 void wxWindowMSW::SetFocusFromKbd()
590 // when the focus is given to the control with DLGC_HASSETSEL style from
591 // keyboard its contents should be entirely selected: this is what
592 // ::IsDialogMessage() does and so we should do it as well to provide the
593 // same LNF as the native programs
594 if ( ::SendMessage(GetHwnd(), WM_GETDLGCODE
, 0, 0) & DLGC_HASSETSEL
)
596 ::SendMessage(GetHwnd(), EM_SETSEL
, 0, -1);
599 // do this after (maybe) setting the selection as like this when
600 // wxEVT_SET_FOCUS handler is called, the selection would have been already
601 // set correctly -- this may be important
602 wxWindowBase::SetFocusFromKbd();
605 // Get the window with the focus
606 wxWindow
*wxWindowBase::DoFindFocus()
608 HWND hWnd
= ::GetFocus();
611 return wxGetWindowFromHWND((WXHWND
)hWnd
);
617 void wxWindowMSW::DoEnable( bool enable
)
619 MSWEnableHWND(GetHwnd(), enable
);
622 bool wxWindowMSW::MSWEnableHWND(WXHWND hWnd
, bool enable
)
627 // If disabling focused control, we move focus to the next one, as if the
628 // user pressed Tab. That's because we can't keep focus on a disabled
629 // control, Tab-navigation would stop working then.
630 if ( !enable
&& ::GetFocus() == hWnd
)
633 return ::EnableWindow(hWnd
, (BOOL
)enable
) != 0;
636 bool wxWindowMSW::Show(bool show
)
638 if ( !wxWindowBase::Show(show
) )
641 HWND hWnd
= GetHwnd();
643 // we could be called before the underlying window is created (this is
644 // actually useful to prevent it from being initially shown), e.g.
646 // wxFoo *foo = new wxFoo;
648 // foo->Create(parent, ...);
650 // should work without errors
653 ::ShowWindow(hWnd
, show
? SW_SHOW
: SW_HIDE
);
658 // DoFreeze/DoThaw don't do anything if the window is not shown, so
659 // we have to call them from here now
670 wxWindowMSW::MSWShowWithEffect(bool show
,
674 if ( effect
== wxSHOW_EFFECT_NONE
)
677 if ( !wxWindowBase::Show(show
) )
680 typedef BOOL (WINAPI
*AnimateWindow_t
)(HWND
, DWORD
, DWORD
);
682 static AnimateWindow_t s_pfnAnimateWindow
= NULL
;
683 static bool s_initDone
= false;
686 wxDynamicLibrary
dllUser32(wxT("user32.dll"), wxDL_VERBATIM
| wxDL_QUIET
);
687 wxDL_INIT_FUNC(s_pfn
, AnimateWindow
, dllUser32
);
691 // notice that it's ok to unload user32.dll here as it won't be really
692 // unloaded, being still in use because we link to it statically too
695 if ( !s_pfnAnimateWindow
)
698 // Show() has a side effect of sending a WM_SIZE to the window, which helps
699 // ensuring that it's laid out correctly, but AnimateWindow() doesn't do
700 // this so send the event ourselves
703 // prepare to use AnimateWindow()
706 timeout
= 200; // this is the default animation timeout, per MSDN
708 DWORD dwFlags
= show
? 0 : AW_HIDE
;
712 case wxSHOW_EFFECT_ROLL_TO_LEFT
:
713 dwFlags
|= AW_HOR_NEGATIVE
;
716 case wxSHOW_EFFECT_ROLL_TO_RIGHT
:
717 dwFlags
|= AW_HOR_POSITIVE
;
720 case wxSHOW_EFFECT_ROLL_TO_TOP
:
721 dwFlags
|= AW_VER_NEGATIVE
;
724 case wxSHOW_EFFECT_ROLL_TO_BOTTOM
:
725 dwFlags
|= AW_VER_POSITIVE
;
728 case wxSHOW_EFFECT_SLIDE_TO_LEFT
:
729 dwFlags
|= AW_SLIDE
| AW_HOR_NEGATIVE
;
732 case wxSHOW_EFFECT_SLIDE_TO_RIGHT
:
733 dwFlags
|= AW_SLIDE
| AW_HOR_POSITIVE
;
736 case wxSHOW_EFFECT_SLIDE_TO_TOP
:
737 dwFlags
|= AW_SLIDE
| AW_VER_NEGATIVE
;
740 case wxSHOW_EFFECT_SLIDE_TO_BOTTOM
:
741 dwFlags
|= AW_SLIDE
| AW_VER_POSITIVE
;
744 case wxSHOW_EFFECT_BLEND
:
748 case wxSHOW_EFFECT_EXPAND
:
749 dwFlags
|= AW_CENTER
;
753 case wxSHOW_EFFECT_MAX
:
754 wxFAIL_MSG( wxT("invalid window show effect") );
758 wxFAIL_MSG( wxT("unknown window show effect") );
762 if ( !(*s_pfnAnimateWindow
)(GetHwnd(), timeout
, dwFlags
) )
764 wxLogLastError(wxT("AnimateWindow"));
772 // Raise the window to the top of the Z order
773 void wxWindowMSW::Raise()
775 wxBringWindowToTop(GetHwnd());
778 // Lower the window to the bottom of the Z order
779 void wxWindowMSW::Lower()
781 ::SetWindowPos(GetHwnd(), HWND_BOTTOM
, 0, 0, 0, 0,
782 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
785 void wxWindowMSW::DoCaptureMouse()
787 HWND hWnd
= GetHwnd();
794 void wxWindowMSW::DoReleaseMouse()
796 if ( !::ReleaseCapture() )
798 wxLogLastError(wxT("ReleaseCapture"));
802 /* static */ wxWindow
*wxWindowBase::GetCapture()
804 HWND hwnd
= ::GetCapture();
805 return hwnd
? wxFindWinFromHandle(hwnd
) : NULL
;
808 bool wxWindowMSW::SetFont(const wxFont
& font
)
810 if ( !wxWindowBase::SetFont(font
) )
816 HWND hWnd
= GetHwnd();
819 // note the use of GetFont() instead of m_font: our own font could have
820 // just been reset and in this case we need to change the font used by
821 // the native window to the default for this class, i.e. exactly what
823 WXHANDLE hFont
= GetFont().GetResourceHandle();
825 wxASSERT_MSG( hFont
, wxT("should have valid font") );
827 ::SendMessage(hWnd
, WM_SETFONT
, (WPARAM
)hFont
, MAKELPARAM(TRUE
, 0));
833 bool wxWindowMSW::SetCursor(const wxCursor
& cursor
)
835 if ( !wxWindowBase::SetCursor(cursor
) )
841 // don't "overwrite" busy cursor
845 if ( m_cursor
.IsOk() )
847 // normally we should change the cursor only if it's over this window
848 // but we should do it always if we capture the mouse currently
849 bool set
= HasCapture();
852 HWND hWnd
= GetHwnd();
856 ::GetCursorPosWinCE(&point
);
858 ::GetCursorPos(&point
);
861 RECT rect
= wxGetWindowRect(hWnd
);
863 set
= ::PtInRect(&rect
, point
) != 0;
868 ::SetCursor(GetHcursorOf(m_cursor
));
870 //else: will be set later when the mouse enters this window
872 else // Invalid cursor: this means reset to the default one.
874 // To revert to the correct cursor we need to find the window currently
875 // under the cursor and ask it to set its cursor itself as only it
878 if ( !::GetCursorPos(&pt
) )
880 wxLogLastError(wxT("GetCursorPos"));
884 const wxWindowMSW
* win
= wxFindWindowAtPoint(wxPoint(pt
.x
, pt
.y
));
888 ::SendMessage(GetHwndOf(win
), WM_SETCURSOR
,
889 (WPARAM
)GetHwndOf(win
),
890 MAKELPARAM(HTCLIENT
, WM_MOUSEMOVE
));
896 void wxWindowMSW::WarpPointer(int x
, int y
)
898 ClientToScreen(&x
, &y
);
900 if ( !::SetCursorPos(x
, y
) )
902 wxLogLastError(wxT("SetCursorPos"));
906 void wxWindowMSW::MSWUpdateUIState(int action
, int state
)
908 // WM_CHANGEUISTATE only appeared in Windows 2000 so it can do us no good
909 // to use it on older systems -- and could possibly do some harm
910 static int s_needToUpdate
= -1;
911 if ( s_needToUpdate
== -1 )
914 s_needToUpdate
= wxGetOsVersion(&verMaj
, &verMin
) == wxOS_WINDOWS_NT
&&
918 if ( s_needToUpdate
)
920 // we send WM_CHANGEUISTATE so if nothing needs changing then the system
921 // won't send WM_UPDATEUISTATE
922 ::SendMessage(GetHwnd(), WM_CHANGEUISTATE
, MAKEWPARAM(action
, state
), 0);
926 // ---------------------------------------------------------------------------
928 // ---------------------------------------------------------------------------
933 inline int GetScrollPosition(HWND hWnd
, int wOrient
)
935 #ifdef __WXMICROWIN__
936 return ::GetScrollPosWX(hWnd
, wOrient
);
938 WinStruct
<SCROLLINFO
> scrollInfo
;
939 scrollInfo
.cbSize
= sizeof(SCROLLINFO
);
940 scrollInfo
.fMask
= SIF_POS
;
941 ::GetScrollInfo(hWnd
, wOrient
, &scrollInfo
);
943 return scrollInfo
.nPos
;
948 inline UINT
WXOrientToSB(int orient
)
950 return orient
== wxHORIZONTAL
? SB_HORZ
: SB_VERT
;
953 } // anonymous namespace
955 int wxWindowMSW::GetScrollPos(int orient
) const
957 HWND hWnd
= GetHwnd();
958 wxCHECK_MSG( hWnd
, 0, wxT("no HWND in GetScrollPos") );
960 return GetScrollPosition(hWnd
, WXOrientToSB(orient
));
963 // This now returns the whole range, not just the number
964 // of positions that we can scroll.
965 int wxWindowMSW::GetScrollRange(int orient
) const
968 HWND hWnd
= GetHwnd();
971 WinStruct
<SCROLLINFO
> scrollInfo
;
972 scrollInfo
.fMask
= SIF_RANGE
;
973 if ( !::GetScrollInfo(hWnd
, WXOrientToSB(orient
), &scrollInfo
) )
975 // Most of the time this is not really an error, since the return
976 // value can also be zero when there is no scrollbar yet.
977 // wxLogLastError(wxT("GetScrollInfo"));
979 maxPos
= scrollInfo
.nMax
;
981 // undo "range - 1" done in SetScrollbar()
985 int wxWindowMSW::GetScrollThumb(int orient
) const
987 return orient
== wxHORIZONTAL
? m_xThumbSize
: m_yThumbSize
;
990 void wxWindowMSW::SetScrollPos(int orient
, int pos
, bool refresh
)
992 HWND hWnd
= GetHwnd();
993 wxCHECK_RET( hWnd
, wxT("SetScrollPos: no HWND") );
995 WinStruct
<SCROLLINFO
> info
;
999 info
.fMask
= SIF_POS
;
1000 if ( HasFlag(wxALWAYS_SHOW_SB
) )
1002 // disable scrollbar instead of removing it then
1003 info
.fMask
|= SIF_DISABLENOSCROLL
;
1006 ::SetScrollInfo(hWnd
, WXOrientToSB(orient
), &info
, refresh
);
1009 // New function that will replace some of the above.
1010 void wxWindowMSW::SetScrollbar(int orient
,
1016 // We have to set the variables here to make them valid in events
1017 // triggered by ::SetScrollInfo()
1018 *(orient
== wxHORIZONTAL
? &m_xThumbSize
: &m_yThumbSize
) = pageSize
;
1020 HWND hwnd
= GetHwnd();
1024 WinStruct
<SCROLLINFO
> info
;
1027 info
.nPage
= pageSize
;
1028 info
.nMin
= 0; // range is nMax - nMin + 1
1029 info
.nMax
= range
- 1; // as both nMax and nMax are inclusive
1032 // We normally also reenable scrollbar in case it had been previously
1033 // disabled by specifying SIF_DISABLENOSCROLL below but we should only
1034 // do this if it has valid range, otherwise it would be enabled but not
1036 if ( range
>= pageSize
)
1038 ::EnableScrollBar(hwnd
, WXOrientToSB(orient
), ESB_ENABLE_BOTH
);
1041 //else: leave all the fields to be 0
1043 info
.fMask
= SIF_RANGE
| SIF_PAGE
| SIF_POS
;
1044 if ( HasFlag(wxALWAYS_SHOW_SB
) || range
== -1 )
1046 // disable scrollbar instead of removing it then
1047 info
.fMask
|= SIF_DISABLENOSCROLL
;
1050 ::SetScrollInfo(hwnd
, WXOrientToSB(orient
), &info
, refresh
);
1053 void wxWindowMSW::ScrollWindow(int dx
, int dy
, const wxRect
*prect
)
1059 wxCopyRectToRECT(*prect
, rect
);
1069 // FIXME: is this the exact equivalent of the line below?
1070 ::ScrollWindowEx(GetHwnd(), dx
, dy
, pr
, pr
, 0, 0, SW_SCROLLCHILDREN
|SW_ERASE
|SW_INVALIDATE
);
1072 ::ScrollWindow(GetHwnd(), dx
, dy
, pr
, pr
);
1076 static bool ScrollVertically(HWND hwnd
, int kind
, int count
)
1078 int posStart
= GetScrollPosition(hwnd
, SB_VERT
);
1081 for ( int n
= 0; n
< count
; n
++ )
1083 ::SendMessage(hwnd
, WM_VSCROLL
, kind
, 0);
1085 int posNew
= GetScrollPosition(hwnd
, SB_VERT
);
1086 if ( posNew
== pos
)
1088 // don't bother to continue, we're already at top/bottom
1095 return pos
!= posStart
;
1098 bool wxWindowMSW::ScrollLines(int lines
)
1100 bool down
= lines
> 0;
1102 return ScrollVertically(GetHwnd(),
1103 down
? SB_LINEDOWN
: SB_LINEUP
,
1104 down
? lines
: -lines
);
1107 bool wxWindowMSW::ScrollPages(int pages
)
1109 bool down
= pages
> 0;
1111 return ScrollVertically(GetHwnd(),
1112 down
? SB_PAGEDOWN
: SB_PAGEUP
,
1113 down
? pages
: -pages
);
1116 // ----------------------------------------------------------------------------
1118 // ----------------------------------------------------------------------------
1120 void wxWindowMSW::SetLayoutDirection(wxLayoutDirection dir
)
1125 wxCHECK_RET( GetHwnd(),
1126 wxT("layout direction must be set after window creation") );
1128 LONG styleOld
= wxGetWindowExStyle(this);
1130 LONG styleNew
= styleOld
;
1133 case wxLayout_LeftToRight
:
1134 styleNew
&= ~WS_EX_LAYOUTRTL
;
1137 case wxLayout_RightToLeft
:
1138 styleNew
|= WS_EX_LAYOUTRTL
;
1142 wxFAIL_MSG(wxT("unsupported layout direction"));
1146 if ( styleNew
!= styleOld
)
1148 wxSetWindowExStyle(this, styleNew
);
1153 wxLayoutDirection
wxWindowMSW::GetLayoutDirection() const
1156 return wxLayout_Default
;
1158 wxCHECK_MSG( GetHwnd(), wxLayout_Default
, wxT("invalid window") );
1160 return wxHasWindowExStyle(this, WS_EX_LAYOUTRTL
) ? wxLayout_RightToLeft
1161 : wxLayout_LeftToRight
;
1166 wxWindowMSW::AdjustForLayoutDirection(wxCoord x
,
1167 wxCoord
WXUNUSED(width
),
1168 wxCoord
WXUNUSED(widthTotal
)) const
1170 // Win32 mirrors the coordinates of RTL windows automatically, so don't
1171 // redo it ourselves
1175 // ---------------------------------------------------------------------------
1177 // ---------------------------------------------------------------------------
1179 void wxWindowMSW::SubclassWin(WXHWND hWnd
)
1181 wxASSERT_MSG( !m_oldWndProc
, wxT("subclassing window twice?") );
1183 HWND hwnd
= (HWND
)hWnd
;
1184 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in SubclassWin") );
1188 wxAssociateWinWithHandle(hwnd
, this);
1190 m_oldWndProc
= (WXFARPROC
)wxGetWindowProc((HWND
)hWnd
);
1192 // we don't need to subclass the window of our own class (in the Windows
1193 // sense of the word)
1194 if ( !wxCheckWindowWndProc(hWnd
, (WXFARPROC
)wxWndProc
) )
1196 wxSetWindowProc(hwnd
, wxWndProc
);
1200 // don't bother restoring it either: this also makes it easy to
1201 // implement IsOfStandardClass() method which returns true for the
1202 // standard controls and false for the wxWidgets own windows as it can
1203 // simply check m_oldWndProc
1204 m_oldWndProc
= NULL
;
1207 // we're officially created now, send the event
1208 wxWindowCreateEvent
event((wxWindow
*)this);
1209 (void)HandleWindowEvent(event
);
1212 void wxWindowMSW::UnsubclassWin()
1214 wxRemoveHandleAssociation(this);
1216 // Restore old Window proc
1217 HWND hwnd
= GetHwnd();
1222 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in UnsubclassWin") );
1226 if ( !wxCheckWindowWndProc((WXHWND
)hwnd
, m_oldWndProc
) )
1228 wxSetWindowProc(hwnd
, (WNDPROC
)m_oldWndProc
);
1231 m_oldWndProc
= NULL
;
1236 void wxWindowMSW::AssociateHandle(WXWidget handle
)
1240 if ( !::DestroyWindow(GetHwnd()) )
1242 wxLogLastError(wxT("DestroyWindow"));
1246 WXHWND wxhwnd
= (WXHWND
)handle
;
1248 // this also calls SetHWND(wxhwnd)
1249 SubclassWin(wxhwnd
);
1252 void wxWindowMSW::DissociateHandle()
1254 // this also calls SetHWND(0) for us
1259 bool wxCheckWindowWndProc(WXHWND hWnd
,
1260 WXFARPROC
WXUNUSED(wndProc
))
1262 const wxString
str(wxGetWindowClass(hWnd
));
1264 // TODO: get rid of wxTLWHiddenParent special case (currently it's not
1265 // registered by wxApp but using ad hoc code in msw/toplevel.cpp);
1266 // there is also a hidden window class used by sockets &c
1267 return wxApp::IsRegisteredClassName(str
) || str
== wxT("wxTLWHiddenParent");
1270 // ----------------------------------------------------------------------------
1272 // ----------------------------------------------------------------------------
1274 void wxWindowMSW::SetWindowStyleFlag(long flags
)
1276 long flagsOld
= GetWindowStyleFlag();
1277 if ( flags
== flagsOld
)
1280 // update the internal variable
1281 wxWindowBase::SetWindowStyleFlag(flags
);
1283 // and the real window flags
1284 MSWUpdateStyle(flagsOld
, GetExtraStyle());
1287 void wxWindowMSW::SetExtraStyle(long exflags
)
1289 long exflagsOld
= GetExtraStyle();
1290 if ( exflags
== exflagsOld
)
1293 // update the internal variable
1294 wxWindowBase::SetExtraStyle(exflags
);
1296 // and the real window flags
1297 MSWUpdateStyle(GetWindowStyleFlag(), exflagsOld
);
1300 void wxWindowMSW::MSWUpdateStyle(long flagsOld
, long exflagsOld
)
1302 // now update the Windows style as well if needed - and if the window had
1303 // been already created
1307 // we may need to call SetWindowPos() when we change some styles
1308 bool callSWP
= false;
1311 long style
= MSWGetStyle(GetWindowStyleFlag(), &exstyle
);
1313 // this is quite a horrible hack but we need it because MSWGetStyle()
1314 // doesn't take exflags as parameter but uses GetExtraStyle() internally
1315 // and so we have to modify the window exflags temporarily to get the
1316 // correct exstyleOld
1317 long exflagsNew
= GetExtraStyle();
1318 wxWindowBase::SetExtraStyle(exflagsOld
);
1321 long styleOld
= MSWGetStyle(flagsOld
, &exstyleOld
);
1323 wxWindowBase::SetExtraStyle(exflagsNew
);
1326 if ( style
!= styleOld
)
1328 // some flags (e.g. WS_VISIBLE or WS_DISABLED) should not be changed by
1329 // this function so instead of simply setting the style to the new
1330 // value we clear the bits which were set in styleOld but are set in
1331 // the new one and set the ones which were not set before
1332 long styleReal
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1333 styleReal
&= ~styleOld
;
1336 ::SetWindowLong(GetHwnd(), GWL_STYLE
, styleReal
);
1338 // we need to call SetWindowPos() if any of the styles affecting the
1339 // frame appearance have changed
1340 callSWP
= ((styleOld
^ style
) & (WS_BORDER
|
1349 // and the extended style
1350 long exstyleReal
= wxGetWindowExStyle(this);
1352 if ( exstyle
!= exstyleOld
)
1354 exstyleReal
&= ~exstyleOld
;
1355 exstyleReal
|= exstyle
;
1357 wxSetWindowExStyle(this, exstyleReal
);
1359 // ex style changes don't take effect without calling SetWindowPos
1365 // we must call SetWindowPos() to flush the cached extended style and
1366 // also to make the change to wxSTAY_ON_TOP style take effect: just
1367 // setting the style simply doesn't work
1368 if ( !::SetWindowPos(GetHwnd(),
1369 exstyleReal
& WS_EX_TOPMOST
? HWND_TOPMOST
1372 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
|
1375 wxLogLastError(wxT("SetWindowPos"));
1380 wxBorder
wxWindowMSW::GetDefaultBorderForControl() const
1382 return wxBORDER_THEME
;
1385 wxBorder
wxWindowMSW::GetDefaultBorder() const
1387 return wxWindowBase::GetDefaultBorder();
1390 // Translate wxBORDER_THEME (and other border styles if necessary) to the value
1391 // that makes most sense for this Windows environment
1392 wxBorder
wxWindowMSW::TranslateBorder(wxBorder border
) const
1394 #if defined(__POCKETPC__) || defined(__SMARTPHONE__)
1395 if (border
== wxBORDER_THEME
|| border
== wxBORDER_SUNKEN
|| border
== wxBORDER_SIMPLE
)
1396 return wxBORDER_SIMPLE
;
1398 return wxBORDER_NONE
;
1401 if (border
== wxBORDER_THEME
)
1403 if (CanApplyThemeBorder())
1405 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
1407 return wxBORDER_THEME
;
1409 return wxBORDER_SUNKEN
;
1417 WXDWORD
wxWindowMSW::MSWGetStyle(long flags
, WXDWORD
*exstyle
) const
1419 // translate common wxWidgets styles to Windows ones
1421 // most of windows are child ones, those which are not (such as
1422 // wxTopLevelWindow) should remove WS_CHILD in their MSWGetStyle()
1423 WXDWORD style
= WS_CHILD
;
1425 // using this flag results in very significant reduction in flicker,
1426 // especially with controls inside the static boxes (as the interior of the
1427 // box is not redrawn twice), but sometimes results in redraw problems, so
1428 // optionally allow the old code to continue to use it provided a special
1429 // system option is turned on
1430 if ( !wxSystemOptions::GetOptionInt(wxT("msw.window.no-clip-children"))
1431 || (flags
& wxCLIP_CHILDREN
) )
1432 style
|= WS_CLIPCHILDREN
;
1434 // it doesn't seem useful to use WS_CLIPSIBLINGS here as we officially
1435 // don't support overlapping windows and it only makes sense for them and,
1436 // presumably, gives the system some extra work (to manage more clipping
1437 // regions), so avoid it alltogether
1440 if ( flags
& wxVSCROLL
)
1441 style
|= WS_VSCROLL
;
1443 if ( flags
& wxHSCROLL
)
1444 style
|= WS_HSCROLL
;
1446 const wxBorder border
= TranslateBorder(GetBorder(flags
));
1448 // After translation, border is now optimized for the specific version of Windows
1449 // and theme engine presence.
1451 // WS_BORDER is only required for wxBORDER_SIMPLE
1452 if ( border
== wxBORDER_SIMPLE
)
1455 // now deal with ext style if the caller wants it
1461 if ( flags
& wxTRANSPARENT_WINDOW
)
1462 *exstyle
|= WS_EX_TRANSPARENT
;
1468 case wxBORDER_DEFAULT
:
1469 wxFAIL_MSG( wxT("unknown border style") );
1473 case wxBORDER_SIMPLE
:
1474 case wxBORDER_THEME
:
1477 case wxBORDER_STATIC
:
1478 *exstyle
|= WS_EX_STATICEDGE
;
1481 case wxBORDER_RAISED
:
1482 *exstyle
|= WS_EX_DLGMODALFRAME
;
1485 case wxBORDER_SUNKEN
:
1486 *exstyle
|= WS_EX_CLIENTEDGE
;
1487 style
&= ~WS_BORDER
;
1490 // case wxBORDER_DOUBLE:
1491 // *exstyle |= WS_EX_DLGMODALFRAME;
1495 // wxUniv doesn't use Windows dialog navigation functions at all
1496 #if !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__)
1497 // to make the dialog navigation work with the nested panels we must
1498 // use this style (top level windows such as dialogs don't need it)
1499 if ( (flags
& wxTAB_TRAVERSAL
) && !IsTopLevel() )
1501 *exstyle
|= WS_EX_CONTROLPARENT
;
1503 #endif // __WXUNIVERSAL__
1509 // Setup background and foreground colours correctly
1510 void wxWindowMSW::SetupColours()
1513 SetBackgroundColour(GetParent()->GetBackgroundColour());
1516 bool wxWindowMSW::IsMouseInWindow() const
1518 // get the mouse position
1521 ::GetCursorPosWinCE(&pt
);
1523 ::GetCursorPos(&pt
);
1526 // find the window which currently has the cursor and go up the window
1527 // chain until we find this window - or exhaust it
1528 HWND hwnd
= ::WindowFromPoint(pt
);
1529 while ( hwnd
&& (hwnd
!= GetHwnd()) )
1530 hwnd
= ::GetParent(hwnd
);
1532 return hwnd
!= NULL
;
1535 void wxWindowMSW::OnInternalIdle()
1537 #ifndef HAVE_TRACKMOUSEEVENT
1538 // Check if we need to send a LEAVE event
1539 if ( m_mouseInWindow
)
1541 // note that we should generate the leave event whether the window has
1542 // or doesn't have mouse capture
1543 if ( !IsMouseInWindow() )
1545 GenerateMouseLeave();
1548 #endif // !HAVE_TRACKMOUSEEVENT
1550 wxWindowBase::OnInternalIdle();
1553 // Set this window to be the child of 'parent'.
1554 bool wxWindowMSW::Reparent(wxWindowBase
*parent
)
1556 if ( !wxWindowBase::Reparent(parent
) )
1559 HWND hWndChild
= GetHwnd();
1560 HWND hWndParent
= GetParent() ? GetWinHwnd(GetParent()) : (HWND
)0;
1562 ::SetParent(hWndChild
, hWndParent
);
1565 if ( wxHasWindowExStyle(this, WS_EX_CONTROLPARENT
) )
1567 EnsureParentHasControlParentStyle(GetParent());
1569 #endif // !__WXWINCE__
1574 static inline void SendSetRedraw(HWND hwnd
, bool on
)
1576 #ifndef __WXMICROWIN__
1577 ::SendMessage(hwnd
, WM_SETREDRAW
, (WPARAM
)on
, 0);
1581 void wxWindowMSW::DoFreeze()
1584 return; // no point in freezing hidden window
1586 SendSetRedraw(GetHwnd(), false);
1589 void wxWindowMSW::DoThaw()
1592 return; // hidden windows aren't frozen by DoFreeze
1594 SendSetRedraw(GetHwnd(), true);
1596 // we need to refresh everything or otherwise the invalidated area
1597 // is not going to be repainted
1601 void wxWindowMSW::Refresh(bool eraseBack
, const wxRect
*rect
)
1603 HWND hWnd
= GetHwnd();
1610 wxCopyRectToRECT(*rect
, mswRect
);
1618 // RedrawWindow not available on SmartPhone or eVC++ 3
1619 #if !defined(__SMARTPHONE__) && !(defined(_WIN32_WCE) && _WIN32_WCE < 400)
1620 UINT flags
= RDW_INVALIDATE
| RDW_ALLCHILDREN
;
1624 ::RedrawWindow(hWnd
, pRect
, NULL
, flags
);
1626 ::InvalidateRect(hWnd
, pRect
, eraseBack
);
1631 void wxWindowMSW::Update()
1633 if ( !::UpdateWindow(GetHwnd()) )
1635 wxLogLastError(wxT("UpdateWindow"));
1638 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1639 // just calling UpdateWindow() is not enough, what we did in our WM_PAINT
1640 // handler needs to be really drawn right now
1645 // ---------------------------------------------------------------------------
1647 // ---------------------------------------------------------------------------
1649 #if wxUSE_DRAG_AND_DROP || !defined(__WXWINCE__)
1653 // we need to lower the sibling static boxes so controls contained within can be
1655 static void AdjustStaticBoxZOrder(wxWindow
*parent
)
1657 // no sibling static boxes if we have no parent (ie TLW)
1661 for ( wxWindowList::compatibility_iterator node
= parent
->GetChildren().GetFirst();
1663 node
= node
->GetNext() )
1665 wxStaticBox
*statbox
= wxDynamicCast(node
->GetData(), wxStaticBox
);
1668 ::SetWindowPos(GetHwndOf(statbox
), HWND_BOTTOM
, 0, 0, 0, 0,
1669 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
1674 #else // !wxUSE_STATBOX
1676 static inline void AdjustStaticBoxZOrder(wxWindow
* WXUNUSED(parent
))
1680 #endif // wxUSE_STATBOX/!wxUSE_STATBOX
1682 #endif // drag and drop is used
1684 #if wxUSE_DRAG_AND_DROP
1685 void wxWindowMSW::SetDropTarget(wxDropTarget
*pDropTarget
)
1687 if ( m_dropTarget
!= 0 ) {
1688 m_dropTarget
->Revoke(m_hWnd
);
1689 delete m_dropTarget
;
1692 m_dropTarget
= pDropTarget
;
1693 if ( m_dropTarget
!= 0 )
1695 AdjustStaticBoxZOrder(GetParent());
1696 m_dropTarget
->Register(m_hWnd
);
1699 #endif // wxUSE_DRAG_AND_DROP
1701 // old-style file manager drag&drop support: we retain the old-style
1702 // DragAcceptFiles in parallel with SetDropTarget.
1703 void wxWindowMSW::DragAcceptFiles(bool WXUNUSED_IN_WINCE(accept
))
1706 HWND hWnd
= GetHwnd();
1709 AdjustStaticBoxZOrder(GetParent());
1710 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
1715 // ----------------------------------------------------------------------------
1717 // ----------------------------------------------------------------------------
1721 void wxWindowMSW::DoSetToolTip(wxToolTip
*tooltip
)
1723 wxWindowBase::DoSetToolTip(tooltip
);
1726 m_tooltip
->SetWindow((wxWindow
*)this);
1729 #endif // wxUSE_TOOLTIPS
1731 // ---------------------------------------------------------------------------
1732 // moving and resizing
1733 // ---------------------------------------------------------------------------
1735 bool wxWindowMSW::IsSizeDeferred() const
1737 #if wxUSE_DEFERRED_SIZING
1738 if ( m_pendingPosition
!= wxDefaultPosition
||
1739 m_pendingSize
!= wxDefaultSize
)
1741 #endif // wxUSE_DEFERRED_SIZING
1747 void wxWindowMSW::DoGetSize(int *x
, int *y
) const
1749 #if wxUSE_DEFERRED_SIZING
1750 // if SetSize() had been called at wx level but not realized at Windows
1751 // level yet (i.e. EndDeferWindowPos() not called), we still should return
1752 // the new and not the old position to the other wx code
1753 if ( m_pendingSize
!= wxDefaultSize
)
1756 *x
= m_pendingSize
.x
;
1758 *y
= m_pendingSize
.y
;
1760 else // use current size
1761 #endif // wxUSE_DEFERRED_SIZING
1763 RECT rect
= wxGetWindowRect(GetHwnd());
1766 *x
= rect
.right
- rect
.left
;
1768 *y
= rect
.bottom
- rect
.top
;
1772 // Get size *available for subwindows* i.e. excluding menu bar etc.
1773 void wxWindowMSW::DoGetClientSize(int *x
, int *y
) const
1775 #if wxUSE_DEFERRED_SIZING
1776 if ( m_pendingSize
!= wxDefaultSize
)
1778 // we need to calculate the client size corresponding to pending size
1780 // FIXME: Unfortunately this doesn't work correctly for the maximized
1781 // top level windows, the returned values are too small (e.g.
1782 // under Windows 7 on a 1600*1200 screen with task bar on the
1783 // right the pending size for a maximized window is 1538*1200
1784 // and WM_NCCALCSIZE returns 1528*1172 even though the correct
1785 // client size of such window is 1538*1182). No idea how to fix
1786 // it though, setting WS_MAXIMIZE in GWL_STYLE before calling
1787 // WM_NCCALCSIZE doesn't help and AdjustWindowRectEx() doesn't
1788 // work in this direction neither. So we just have to live with
1789 // the slightly wrong results and relayout the window when it
1790 // gets finally shown in its maximized state (see #11762).
1792 rect
.left
= m_pendingPosition
.x
;
1793 rect
.top
= m_pendingPosition
.y
;
1794 rect
.right
= rect
.left
+ m_pendingSize
.x
;
1795 rect
.bottom
= rect
.top
+ m_pendingSize
.y
;
1797 ::SendMessage(GetHwnd(), WM_NCCALCSIZE
, FALSE
, (LPARAM
)&rect
);
1800 *x
= rect
.right
- rect
.left
;
1802 *y
= rect
.bottom
- rect
.top
;
1805 #endif // wxUSE_DEFERRED_SIZING
1807 RECT rect
= wxGetClientRect(GetHwnd());
1815 // The size of the client window can't be negative but ::GetClientRect()
1816 // can return negative size for an extremely small (1x1) window with
1817 // borders so ensure that we correct it here as having negative sizes is
1818 // completely unexpected.
1825 void wxWindowMSW::DoGetPosition(int *x
, int *y
) const
1827 wxWindow
* const parent
= GetParent();
1830 #if wxUSE_DEFERRED_SIZING
1831 if ( m_pendingPosition
!= wxDefaultPosition
)
1833 pos
= m_pendingPosition
;
1835 else // use current position
1836 #endif // wxUSE_DEFERRED_SIZING
1838 RECT rect
= wxGetWindowRect(GetHwnd());
1841 point
.x
= rect
.left
;
1844 // we do the adjustments with respect to the parent only for the "real"
1845 // children, not for the dialogs/frames
1846 if ( !IsTopLevel() )
1848 if ( wxTheApp
->GetLayoutDirection() == wxLayout_RightToLeft
)
1850 // In RTL mode, we want the logical left x-coordinate,
1851 // which would be the physical right x-coordinate.
1852 point
.x
= rect
.right
;
1855 // Since we now have the absolute screen coords, if there's a
1856 // parent we must subtract its top left corner
1859 ::ScreenToClient(GetHwndOf(parent
), &point
);
1867 // we also must adjust by the client area offset: a control which is just
1868 // under a toolbar could be at (0, 30) in Windows but at (0, 0) in wx
1869 if ( parent
&& !IsTopLevel() )
1871 const wxPoint
pt(parent
->GetClientAreaOrigin());
1882 void wxWindowMSW::DoScreenToClient(int *x
, int *y
) const
1890 ::ScreenToClient(GetHwnd(), &pt
);
1898 void wxWindowMSW::DoClientToScreen(int *x
, int *y
) const
1906 ::ClientToScreen(GetHwnd(), &pt
);
1915 wxWindowMSW::DoMoveSibling(WXHWND hwnd
, int x
, int y
, int width
, int height
)
1917 #if wxUSE_DEFERRED_SIZING
1918 // if our parent had prepared a defer window handle for us, use it (unless
1919 // we are a top level window)
1920 wxWindowMSW
* const parent
= IsTopLevel() ? NULL
: GetParent();
1922 HDWP hdwp
= parent
? (HDWP
)parent
->m_hDWP
: NULL
;
1925 hdwp
= ::DeferWindowPos(hdwp
, (HWND
)hwnd
, NULL
, x
, y
, width
, height
,
1926 SWP_NOZORDER
| SWP_NOOWNERZORDER
| SWP_NOACTIVATE
);
1929 wxLogLastError(wxT("DeferWindowPos"));
1935 // hdwp must be updated as it may have been changed
1936 parent
->m_hDWP
= (WXHANDLE
)hdwp
;
1941 // did deferred move, remember new coordinates of the window as they're
1942 // different from what Windows would return for it
1946 // otherwise (or if deferring failed) move the window in place immediately
1947 #endif // wxUSE_DEFERRED_SIZING
1948 if ( !::MoveWindow((HWND
)hwnd
, x
, y
, width
, height
, IsShown()) )
1950 wxLogLastError(wxT("MoveWindow"));
1953 // if wxUSE_DEFERRED_SIZING, indicates that we didn't use deferred move,
1954 // ignored otherwise
1958 void wxWindowMSW::DoMoveWindow(int x
, int y
, int width
, int height
)
1960 // TODO: is this consistent with other platforms?
1961 // Still, negative width or height shouldn't be allowed
1967 if ( DoMoveSibling(m_hWnd
, x
, y
, width
, height
) )
1969 #if wxUSE_DEFERRED_SIZING
1970 m_pendingPosition
= wxPoint(x
, y
);
1971 m_pendingSize
= wxSize(width
, height
);
1973 else // window was moved immediately, without deferring it
1975 m_pendingPosition
= wxDefaultPosition
;
1976 m_pendingSize
= wxDefaultSize
;
1977 #endif // wxUSE_DEFERRED_SIZING
1981 // set the size of the window: if the dimensions are positive, just use them,
1982 // but if any of them is equal to -1, it means that we must find the value for
1983 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1984 // which case -1 is a valid value for x and y)
1986 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1987 // the width/height to best suit our contents, otherwise we reuse the current
1989 void wxWindowMSW::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1991 // get the current size and position...
1992 int currentX
, currentY
;
1993 int currentW
, currentH
;
1995 GetPosition(¤tX
, ¤tY
);
1996 GetSize(¤tW
, ¤tH
);
1998 // ... and don't do anything (avoiding flicker) if it's already ok unless
1999 // we're forced to resize the window
2000 if ( x
== currentX
&& y
== currentY
&&
2001 width
== currentW
&& height
== currentH
&&
2002 !(sizeFlags
& wxSIZE_FORCE
) )
2004 if (sizeFlags
& wxSIZE_FORCE_EVENT
)
2006 wxSizeEvent
event( wxSize(width
,height
), GetId() );
2007 event
.SetEventObject( this );
2008 HandleWindowEvent( event
);
2013 if ( x
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
2015 if ( y
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
2018 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
2020 wxSize size
= wxDefaultSize
;
2021 if ( width
== wxDefaultCoord
)
2023 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
2025 size
= GetBestSize();
2030 // just take the current one
2035 if ( height
== wxDefaultCoord
)
2037 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
2039 if ( size
.x
== wxDefaultCoord
)
2041 size
= GetBestSize();
2043 //else: already called GetBestSize() above
2049 // just take the current one
2054 DoMoveWindow(x
, y
, width
, height
);
2057 void wxWindowMSW::DoSetClientSize(int width
, int height
)
2059 // setting the client size is less obvious than it could have been
2060 // because in the result of changing the total size the window scrollbar
2061 // may [dis]appear and/or its menubar may [un]wrap (and AdjustWindowRect()
2062 // doesn't take neither into account) and so the client size will not be
2063 // correct as the difference between the total and client size changes --
2064 // so we keep changing it until we get it right
2066 // normally this loop shouldn't take more than 3 iterations (usually 1 but
2067 // if scrollbars [dis]appear as the result of the first call, then 2 and it
2068 // may become 3 if the window had 0 size originally and so we didn't
2069 // calculate the scrollbar correction correctly during the first iteration)
2070 // but just to be on the safe side we check for it instead of making it an
2071 // "infinite" loop (i.e. leaving break inside as the only way to get out)
2072 for ( int i
= 0; i
< 4; i
++ )
2075 ::GetClientRect(GetHwnd(), &rectClient
);
2077 // if the size is already ok, stop here (NB: rectClient.left = top = 0)
2078 if ( (rectClient
.right
== width
|| width
== wxDefaultCoord
) &&
2079 (rectClient
.bottom
== height
|| height
== wxDefaultCoord
) )
2084 // Find the difference between the entire window (title bar and all)
2085 // and the client area; add this to the new client size to move the
2088 ::GetWindowRect(GetHwnd(), &rectWin
);
2090 const int widthWin
= rectWin
.right
- rectWin
.left
,
2091 heightWin
= rectWin
.bottom
- rectWin
.top
;
2093 // MoveWindow positions the child windows relative to the parent, so
2094 // adjust if necessary
2095 if ( !IsTopLevel() )
2097 wxWindow
*parent
= GetParent();
2100 ::ScreenToClient(GetHwndOf(parent
), (POINT
*)&rectWin
);
2104 // don't call DoMoveWindow() because we want to move window immediately
2105 // and not defer it here as otherwise the value returned by
2106 // GetClient/WindowRect() wouldn't change as the window wouldn't be
2108 if ( !::MoveWindow(GetHwnd(),
2111 width
+ widthWin
- rectClient
.right
,
2112 height
+ heightWin
- rectClient
.bottom
,
2115 wxLogLastError(wxT("MoveWindow"));
2120 wxSize
wxWindowMSW::DoGetBorderSize() const
2123 switch ( GetBorder() )
2125 case wxBORDER_STATIC
:
2126 case wxBORDER_SIMPLE
:
2130 case wxBORDER_SUNKEN
:
2134 case wxBORDER_RAISED
:
2135 case wxBORDER_DOUBLE
:
2140 wxFAIL_MSG( wxT("unknown border style") );
2147 return 2*wxSize(border
, border
);
2150 // ---------------------------------------------------------------------------
2152 // ---------------------------------------------------------------------------
2154 int wxWindowMSW::GetCharHeight() const
2156 return wxGetTextMetrics(this).tmHeight
;
2159 int wxWindowMSW::GetCharWidth() const
2161 // +1 is needed because Windows apparently adds it when calculating the
2162 // dialog units size in pixels
2163 #if wxDIALOG_UNIT_COMPATIBILITY
2164 return wxGetTextMetrics(this).tmAveCharWidth
;
2166 return wxGetTextMetrics(this).tmAveCharWidth
+ 1;
2170 void wxWindowMSW::DoGetTextExtent(const wxString
& string
,
2173 int *externalLeading
,
2174 const wxFont
*fontToUse
) const
2176 wxASSERT_MSG( !fontToUse
|| fontToUse
->IsOk(),
2177 wxT("invalid font in GetTextExtent()") );
2181 hfontToUse
= GetHfontOf(*fontToUse
);
2183 hfontToUse
= GetHfontOf(GetFont());
2185 WindowHDC
hdc(GetHwnd());
2186 SelectInHDC
selectFont(hdc
, hfontToUse
);
2190 ::GetTextExtentPoint32(hdc
, string
.wx_str(), string
.length(), &sizeRect
);
2191 GetTextMetrics(hdc
, &tm
);
2198 *descent
= tm
.tmDescent
;
2199 if ( externalLeading
)
2200 *externalLeading
= tm
.tmExternalLeading
;
2203 // ---------------------------------------------------------------------------
2205 // ---------------------------------------------------------------------------
2207 #if wxUSE_MENUS_NATIVE
2209 // yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue
2210 // immediately, without waiting for the next event loop iteration
2212 // NB: this function should probably be made public later as it can almost
2213 // surely replace wxYield() elsewhere as well
2214 static void wxYieldForCommandsOnly()
2216 // peek all WM_COMMANDs (it will always return WM_QUIT too but we don't
2217 // want to process it here)
2219 while ( ::PeekMessage(&msg
, (HWND
)0, WM_COMMAND
, WM_COMMAND
, PM_REMOVE
) )
2221 if ( msg
.message
== WM_QUIT
)
2223 // if we retrieved a WM_QUIT, insert back into the message queue.
2224 ::PostQuitMessage(0);
2228 // luckily (as we don't have access to wxEventLoopImpl method from here
2229 // anyhow...) we don't need to pre process WM_COMMANDs so dispatch it
2231 ::TranslateMessage(&msg
);
2232 ::DispatchMessage(&msg
);
2236 bool wxWindowMSW::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
2241 if ( x
== wxDefaultCoord
&& y
== wxDefaultCoord
)
2243 pt
= wxGetMousePosition();
2247 pt
= ClientToScreen(wxPoint(x
, y
));
2250 #if defined(__WXWINCE__)
2251 static const UINT flags
= 0;
2252 #else // !__WXWINCE__
2253 UINT flags
= TPM_RIGHTBUTTON
;
2254 // NT4 doesn't support TPM_RECURSE and simply doesn't show the menu at all
2255 // when it's use, I'm not sure about Win95/98 but prefer to err on the safe
2256 // side and not to use it there neither -- modify the test if it does work
2258 if ( wxGetWinVersion() >= wxWinVersion_5
)
2260 // using TPM_RECURSE allows us to show a popup menu while another menu
2261 // is opened which can be useful and is supported by the other
2262 // platforms, so allow it under Windows too
2263 flags
|= TPM_RECURSE
;
2265 #endif // __WXWINCE__/!__WXWINCE__
2267 ::TrackPopupMenu(GetHmenuOf(menu
), flags
, pt
.x
, pt
.y
, 0, GetHwnd(), NULL
);
2269 // we need to do it right now as otherwise the events are never going to be
2270 // sent to wxCurrentPopupMenu from HandleCommand()
2272 // note that even eliminating (ugly) wxCurrentPopupMenu global wouldn't
2273 // help and we'd still need wxYieldForCommandsOnly() as the menu may be
2274 // destroyed as soon as we return (it can be a local variable in the caller
2275 // for example) and so we do need to process the event immediately
2276 wxYieldForCommandsOnly();
2281 #endif // wxUSE_MENUS_NATIVE
2283 // ===========================================================================
2284 // pre/post message processing
2285 // ===========================================================================
2287 WXLRESULT
wxWindowMSW::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
2291 rc
= ::CallWindowProc(CASTWNDPROC m_oldWndProc
, GetHwnd(), (UINT
) nMsg
, (WPARAM
) wParam
, (LPARAM
) lParam
);
2293 rc
= ::DefWindowProc(GetHwnd(), nMsg
, wParam
, lParam
);
2295 // Special hack used by wxTextEntry auto-completion only: this event is
2296 // sent after the normal keyboard processing so that its handler could use
2297 // the updated contents of the text control, after taking the key that was
2298 // pressed into account.
2299 if ( nMsg
== WM_CHAR
)
2301 wxKeyEvent
event(CreateCharEvent(wxEVT_AFTER_CHAR
, wParam
, lParam
));
2302 HandleWindowEvent(event
);
2308 bool wxWindowMSW::MSWProcessMessage(WXMSG
* pMsg
)
2310 // wxUniversal implements tab traversal itself
2311 #ifndef __WXUNIVERSAL__
2312 if ( m_hWnd
!= 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL
) )
2314 // intercept dialog navigation keys
2315 MSG
*msg
= (MSG
*)pMsg
;
2317 // here we try to do all the job which ::IsDialogMessage() usually does
2319 if ( msg
->message
== WM_KEYDOWN
)
2321 bool bCtrlDown
= wxIsCtrlDown();
2322 bool bShiftDown
= wxIsShiftDown();
2324 // WM_GETDLGCODE: ask the control if it wants the key for itself,
2325 // don't process it if it's the case (except for Ctrl-Tab/Enter
2326 // combinations which are always processed)
2327 LONG lDlgCode
= ::SendMessage(msg
->hwnd
, WM_GETDLGCODE
, 0, 0);
2329 // surprisingly, DLGC_WANTALLKEYS bit mask doesn't contain the
2330 // DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically,
2331 // it, of course, implies them
2332 if ( lDlgCode
& DLGC_WANTALLKEYS
)
2334 lDlgCode
|= DLGC_WANTTAB
| DLGC_WANTARROWS
;
2337 bool bForward
= true,
2338 bWindowChange
= false,
2341 // should we process this message specially?
2342 bool bProcess
= true;
2343 switch ( msg
->wParam
)
2346 if ( (lDlgCode
& DLGC_WANTTAB
) && !bCtrlDown
)
2348 // let the control have the TAB
2351 else // use it for navigation
2353 // Ctrl-Tab cycles thru notebook pages
2354 bWindowChange
= bCtrlDown
;
2355 bForward
= !bShiftDown
;
2362 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2370 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2379 // we treat PageUp/Dn as arrows because chances are that
2380 // a control which needs arrows also needs them for
2381 // navigation (e.g. wxTextCtrl, wxListCtrl, ...)
2382 if ( (lDlgCode
& DLGC_WANTARROWS
) && !bCtrlDown
)
2384 else // OTOH Ctrl-PageUp/Dn works as [Shift-]Ctrl-Tab
2385 bWindowChange
= true;
2391 // currently active button should get enter press even
2392 // if there is a default button elsewhere so check if
2393 // this window is a button first
2394 wxWindow
*btn
= NULL
;
2395 if ( lDlgCode
& DLGC_DEFPUSHBUTTON
)
2397 // let IsDialogMessage() handle this for all
2398 // buttons except the owner-drawn ones which it
2399 // just seems to ignore
2400 long style
= ::GetWindowLong(msg
->hwnd
, GWL_STYLE
);
2401 if ( (style
& BS_OWNERDRAW
) == BS_OWNERDRAW
)
2403 // emulate the button click
2404 btn
= wxFindWinFromHandle(msg
->hwnd
);
2407 else // not a button itself, do we have default button?
2409 // check if this window or any of its ancestors
2410 // wants the message for itself (we always reserve
2411 // Ctrl-Enter for dialog navigation though)
2412 wxWindow
*win
= this;
2415 // this will contain the dialog code of this
2416 // window and all of its parent windows in turn
2417 LONG lDlgCode2
= lDlgCode
;
2421 if ( lDlgCode2
& DLGC_WANTMESSAGE
)
2423 // as it wants to process Enter itself,
2424 // don't call IsDialogMessage() which
2429 // don't propagate keyboard messages beyond
2430 // the first top level window parent
2431 if ( win
->IsTopLevel() )
2434 win
= win
->GetParent();
2436 lDlgCode2
= ::SendMessage
2447 win
= wxGetTopLevelParent(win
);
2450 wxTopLevelWindow
* const
2451 tlw
= wxDynamicCast(win
, wxTopLevelWindow
);
2454 btn
= wxDynamicCast(tlw
->GetDefaultItem(),
2459 if ( btn
&& btn
->IsEnabled() )
2461 btn
->MSWCommand(BN_CLICKED
, 0 /* unused */);
2465 // This "Return" key press won't be actually used for
2466 // navigation so don't generate wxNavigationKeyEvent
2467 // for it but still pass it to IsDialogMessage() as it
2468 // may handle it in some other way (e.g. by playing the
2469 // default error sound).
2472 #endif // wxUSE_BUTTON
2475 // map Enter presses into button presses on PDAs
2476 wxJoystickEvent
event(wxEVT_JOY_BUTTON_DOWN
);
2477 event
.SetEventObject(this);
2478 if ( HandleWindowEvent(event
) )
2480 #endif // __WXWINCE__
2490 wxNavigationKeyEvent event
;
2491 event
.SetDirection(bForward
);
2492 event
.SetWindowChange(bWindowChange
);
2493 event
.SetFromTab(bFromTab
);
2494 event
.SetEventObject(this);
2496 if ( HandleWindowEvent(event
) )
2498 // as we don't call IsDialogMessage(), which would take of
2499 // this by default, we need to manually send this message
2500 // so that controls can change their UI state if needed
2501 MSWUpdateUIState(UIS_CLEAR
, UISF_HIDEFOCUS
);
2508 if ( ::IsDialogMessage(GetHwnd(), msg
) )
2510 // IsDialogMessage() did something...
2514 #endif // __WXUNIVERSAL__
2519 // relay mouse move events to the tooltip control
2520 MSG
*msg
= (MSG
*)pMsg
;
2521 if ( msg
->message
== WM_MOUSEMOVE
)
2522 wxToolTip::RelayEvent(pMsg
);
2524 #endif // wxUSE_TOOLTIPS
2529 bool wxWindowMSW::MSWTranslateMessage(WXMSG
* pMsg
)
2531 #if wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
2532 return m_acceleratorTable
.Translate(this, pMsg
);
2536 #endif // wxUSE_ACCEL
2539 bool wxWindowMSW::MSWShouldPreProcessMessage(WXMSG
* msg
)
2541 // all tests below have to deal with various bugs/misfeatures of
2542 // IsDialogMessage(): we have to prevent it from being called from our
2543 // MSWProcessMessage() in some situations
2545 // don't let IsDialogMessage() get VK_ESCAPE as it _always_ eats the
2546 // message even when there is no cancel button and when the message is
2547 // needed by the control itself: in particular, it prevents the tree in
2548 // place edit control from being closed with Escape in a dialog
2549 if ( msg
->message
== WM_KEYDOWN
&& msg
->wParam
== VK_ESCAPE
)
2554 // ::IsDialogMessage() is broken and may sometimes hang the application by
2555 // going into an infinite loop when it tries to find the control to give
2556 // focus to when Alt-<key> is pressed, so we try to detect [some of] the
2557 // situations when this may happen and not call it then
2558 if ( msg
->message
!= WM_SYSCHAR
)
2561 // assume we can call it by default
2562 bool canSafelyCallIsDlgMsg
= true;
2564 HWND hwndFocus
= ::GetFocus();
2566 // if the currently focused window itself has WS_EX_CONTROLPARENT style,
2567 // ::IsDialogMessage() will also enter an infinite loop, because it will
2568 // recursively check the child windows but not the window itself and so if
2569 // none of the children accepts focus it loops forever (as it only stops
2570 // when it gets back to the window it started from)
2572 // while it is very unusual that a window with WS_EX_CONTROLPARENT
2573 // style has the focus, it can happen. One such possibility is if
2574 // all windows are either toplevel, wxDialog, wxPanel or static
2575 // controls and no window can actually accept keyboard input.
2576 #if !defined(__WXWINCE__)
2577 if ( ::GetWindowLong(hwndFocus
, GWL_EXSTYLE
) & WS_EX_CONTROLPARENT
)
2579 // pessimistic by default
2580 canSafelyCallIsDlgMsg
= false;
2581 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2583 node
= node
->GetNext() )
2585 wxWindow
* const win
= node
->GetData();
2586 if ( win
->CanAcceptFocus() &&
2587 !wxHasWindowExStyle(win
, WS_EX_CONTROLPARENT
) )
2589 // it shouldn't hang...
2590 canSafelyCallIsDlgMsg
= true;
2596 #endif // !__WXWINCE__
2598 if ( canSafelyCallIsDlgMsg
)
2600 // ::IsDialogMessage() can enter in an infinite loop when the
2601 // currently focused window is disabled or hidden and its
2602 // parent has WS_EX_CONTROLPARENT style, so don't call it in
2606 if ( !::IsWindowEnabled(hwndFocus
) ||
2607 !::IsWindowVisible(hwndFocus
) )
2609 // it would enter an infinite loop if we do this!
2610 canSafelyCallIsDlgMsg
= false;
2615 if ( !(::GetWindowLong(hwndFocus
, GWL_STYLE
) & WS_CHILD
) )
2617 // it's a top level window, don't go further -- e.g. even
2618 // if the parent of a dialog is disabled, this doesn't
2619 // break navigation inside the dialog
2623 hwndFocus
= ::GetParent(hwndFocus
);
2627 return canSafelyCallIsDlgMsg
;
2630 // ---------------------------------------------------------------------------
2631 // message params unpackers
2632 // ---------------------------------------------------------------------------
2634 void wxWindowMSW::UnpackCommand(WXWPARAM wParam
, WXLPARAM lParam
,
2635 WORD
*id
, WXHWND
*hwnd
, WORD
*cmd
)
2637 *id
= LOWORD(wParam
);
2638 *hwnd
= (WXHWND
)lParam
;
2639 *cmd
= HIWORD(wParam
);
2642 void wxWindowMSW::UnpackActivate(WXWPARAM wParam
, WXLPARAM lParam
,
2643 WXWORD
*state
, WXWORD
*minimized
, WXHWND
*hwnd
)
2645 *state
= LOWORD(wParam
);
2646 *minimized
= HIWORD(wParam
);
2647 *hwnd
= (WXHWND
)lParam
;
2650 void wxWindowMSW::UnpackScroll(WXWPARAM wParam
, WXLPARAM lParam
,
2651 WXWORD
*code
, WXWORD
*pos
, WXHWND
*hwnd
)
2653 *code
= LOWORD(wParam
);
2654 *pos
= HIWORD(wParam
);
2655 *hwnd
= (WXHWND
)lParam
;
2658 void wxWindowMSW::UnpackCtlColor(WXWPARAM wParam
, WXLPARAM lParam
,
2659 WXHDC
*hdc
, WXHWND
*hwnd
)
2661 *hwnd
= (WXHWND
)lParam
;
2662 *hdc
= (WXHDC
)wParam
;
2665 void wxWindowMSW::UnpackMenuSelect(WXWPARAM wParam
, WXLPARAM lParam
,
2666 WXWORD
*item
, WXWORD
*flags
, WXHMENU
*hmenu
)
2668 *item
= (WXWORD
)wParam
;
2669 *flags
= HIWORD(wParam
);
2670 *hmenu
= (WXHMENU
)lParam
;
2673 // ---------------------------------------------------------------------------
2674 // Main wxWidgets window proc and the window proc for wxWindow
2675 // ---------------------------------------------------------------------------
2677 // Hook for new window just as it's being created, when the window isn't yet
2678 // associated with the handle
2679 static wxWindowMSW
*gs_winBeingCreated
= NULL
;
2681 // implementation of wxWindowCreationHook class: it just sets gs_winBeingCreated to the
2682 // window being created and insures that it's always unset back later
2683 wxWindowCreationHook::wxWindowCreationHook(wxWindowMSW
*winBeingCreated
)
2685 gs_winBeingCreated
= winBeingCreated
;
2688 wxWindowCreationHook::~wxWindowCreationHook()
2690 gs_winBeingCreated
= NULL
;
2694 LRESULT WXDLLEXPORT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
2696 // trace all messages: useful for the debugging but noticeably slows down
2697 // the code so don't do it by default
2698 #if wxDEBUG_LEVEL >= 2
2699 // notice that we cast wParam and lParam to long to avoid mismatch with
2700 // format specifiers in 64 bit builds where they are both int64 quantities
2702 // casting like this loses information, of course, but it shouldn't matter
2703 // much for this diagnostic code and it keeps the code simple
2704 wxLogTrace("winmsg",
2705 wxT("Processing %s(hWnd=%p, wParam=%08lx, lParam=%08lx)"),
2706 wxGetMessageName(message
), hWnd
, (long)wParam
, (long)lParam
);
2707 #endif // wxDEBUG_LEVEL >= 2
2709 wxWindowMSW
*wnd
= wxFindWinFromHandle(hWnd
);
2711 // when we get the first message for the HWND we just created, we associate
2712 // it with wxWindow stored in gs_winBeingCreated
2713 if ( !wnd
&& gs_winBeingCreated
)
2715 wxAssociateWinWithHandle(hWnd
, gs_winBeingCreated
);
2716 wnd
= gs_winBeingCreated
;
2717 gs_winBeingCreated
= NULL
;
2718 wnd
->SetHWND((WXHWND
)hWnd
);
2723 if ( wnd
&& wxGUIEventLoop::AllowProcessing(wnd
) )
2724 rc
= wnd
->MSWWindowProc(message
, wParam
, lParam
);
2726 rc
= ::DefWindowProc(hWnd
, message
, wParam
, lParam
);
2732 wxWindowMSW::MSWHandleMessage(WXLRESULT
*result
,
2737 // did we process the message?
2738 bool processed
= false;
2748 // for most messages we should return 0 when we do process the message
2756 processed
= HandleCreate((WXLPCREATESTRUCT
)lParam
, &mayCreate
);
2759 // return 0 to allow window creation
2760 rc
.result
= mayCreate
? 0 : -1;
2766 // never set processed to true and *always* pass WM_DESTROY to
2767 // DefWindowProc() as Windows may do some internal cleanup when
2768 // processing it and failing to pass the message along may cause
2769 // memory and resource leaks!
2770 (void)HandleDestroy();
2774 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
2778 processed
= HandleMove(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
2781 #if !defined(__WXWINCE__)
2784 LPRECT pRect
= (LPRECT
)lParam
;
2786 rc
.SetLeft(pRect
->left
);
2787 rc
.SetTop(pRect
->top
);
2788 rc
.SetRight(pRect
->right
);
2789 rc
.SetBottom(pRect
->bottom
);
2790 processed
= HandleMoving(rc
);
2792 pRect
->left
= rc
.GetLeft();
2793 pRect
->top
= rc
.GetTop();
2794 pRect
->right
= rc
.GetRight();
2795 pRect
->bottom
= rc
.GetBottom();
2800 case WM_ENTERSIZEMOVE
:
2802 processed
= HandleEnterSizeMove();
2806 case WM_EXITSIZEMOVE
:
2808 processed
= HandleExitSizeMove();
2814 LPRECT pRect
= (LPRECT
)lParam
;
2816 rc
.SetLeft(pRect
->left
);
2817 rc
.SetTop(pRect
->top
);
2818 rc
.SetRight(pRect
->right
);
2819 rc
.SetBottom(pRect
->bottom
);
2820 processed
= HandleSizing(rc
);
2822 pRect
->left
= rc
.GetLeft();
2823 pRect
->top
= rc
.GetTop();
2824 pRect
->right
= rc
.GetRight();
2825 pRect
->bottom
= rc
.GetBottom();
2829 #endif // !__WXWINCE__
2831 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
2832 case WM_ACTIVATEAPP
:
2833 // This implicitly sends a wxEVT_ACTIVATE_APP event
2834 wxTheApp
->SetActive(wParam
!= 0, FindFocus());
2840 WXWORD state
, minimized
;
2842 UnpackActivate(wParam
, lParam
, &state
, &minimized
, &hwnd
);
2844 processed
= HandleActivate(state
, minimized
!= 0, (WXHWND
)hwnd
);
2849 processed
= HandleSetFocus((WXHWND
)wParam
);
2853 processed
= HandleKillFocus((WXHWND
)wParam
);
2856 case WM_PRINTCLIENT
:
2857 processed
= HandlePrintClient((WXHDC
)wParam
);
2863 wxPaintDCEx
dc((wxWindow
*)this, (WXHDC
)wParam
);
2865 processed
= HandlePaint();
2869 processed
= HandlePaint();
2874 #ifdef __WXUNIVERSAL__
2875 // Universal uses its own wxFrame/wxDialog, so we don't receive
2876 // close events unless we have this.
2878 #endif // __WXUNIVERSAL__
2880 // don't let the DefWindowProc() destroy our window - we'll do it
2881 // ourselves in ~wxWindow
2887 processed
= HandleShow(wParam
!= 0, (int)lParam
);
2891 processed
= HandleMouseMove(GET_X_LPARAM(lParam
),
2892 GET_Y_LPARAM(lParam
),
2896 #ifdef HAVE_TRACKMOUSEEVENT
2898 // filter out excess WM_MOUSELEAVE events sent after PopupMenu()
2900 if ( m_mouseInWindow
)
2902 GenerateMouseLeave();
2905 // always pass processed back as false, this allows the window
2906 // manager to process the message too. This is needed to
2907 // ensure windows XP themes work properly as the mouse moves
2908 // over widgets like buttons. So don't set processed to true here.
2910 #endif // HAVE_TRACKMOUSEEVENT
2912 #if wxUSE_MOUSEWHEEL
2914 processed
= HandleMouseWheel(wParam
, lParam
);
2918 case WM_LBUTTONDOWN
:
2920 case WM_LBUTTONDBLCLK
:
2921 case WM_RBUTTONDOWN
:
2923 case WM_RBUTTONDBLCLK
:
2924 case WM_MBUTTONDOWN
:
2926 case WM_MBUTTONDBLCLK
:
2927 #ifdef wxHAS_XBUTTON
2928 case WM_XBUTTONDOWN
:
2930 case WM_XBUTTONDBLCLK
:
2931 #endif // wxHAS_XBUTTON
2933 #ifdef __WXMICROWIN__
2934 // MicroWindows seems to ignore the fact that a window is
2935 // disabled. So catch mouse events and throw them away if
2937 wxWindowMSW
* win
= this;
2940 if (!win
->IsEnabled())
2946 win
= win
->GetParent();
2947 if ( !win
|| win
->IsTopLevel() )
2954 #endif // __WXMICROWIN__
2955 int x
= GET_X_LPARAM(lParam
),
2956 y
= GET_Y_LPARAM(lParam
);
2959 // redirect the event to a static control if necessary by
2960 // finding one under mouse because under CE the static controls
2961 // don't generate mouse events (even with SS_NOTIFY)
2963 if ( GetCapture() == this )
2965 // but don't do it if the mouse is captured by this window
2966 // because then it should really get this event itself
2971 win
= FindWindowForMouseEvent(this, &x
, &y
);
2973 // this should never happen
2974 wxCHECK_MSG( win
, 0,
2975 wxT("FindWindowForMouseEvent() returned NULL") );
2978 if (IsContextMenuEnabled() && message
== WM_LBUTTONDOWN
)
2980 SHRGINFO shrgi
= {0};
2982 shrgi
.cbSize
= sizeof(SHRGINFO
);
2983 shrgi
.hwndClient
= (HWND
) GetHWND();
2987 shrgi
.dwFlags
= SHRG_RETURNCMD
;
2988 // shrgi.dwFlags = SHRG_NOTIFYPARENT;
2990 if (GN_CONTEXTMENU
== ::SHRecognizeGesture(&shrgi
))
2993 pt
= ClientToScreen(pt
);
2995 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
, GetId(), pt
);
2997 evtCtx
.SetEventObject(this);
2998 if (HandleWindowEvent(evtCtx
))
3007 #else // !__WXWINCE__
3008 wxWindowMSW
*win
= this;
3009 #endif // __WXWINCE__/!__WXWINCE__
3011 processed
= win
->HandleMouseEvent(message
, x
, y
, wParam
);
3013 // if the app didn't eat the event, handle it in the default
3014 // way, that is by giving this window the focus
3017 // for the standard classes their WndProc sets the focus to
3018 // them anyhow and doing it from here results in some weird
3019 // problems, so don't do it for them (unnecessary anyhow)
3020 if ( !win
->IsOfStandardClass() )
3022 if ( message
== WM_LBUTTONDOWN
&& win
->IsFocusable() )
3034 case MM_JOY1BUTTONDOWN
:
3035 case MM_JOY2BUTTONDOWN
:
3036 case MM_JOY1BUTTONUP
:
3037 case MM_JOY2BUTTONUP
:
3038 processed
= HandleJoystickEvent(message
,
3039 GET_X_LPARAM(lParam
),
3040 GET_Y_LPARAM(lParam
),
3043 #endif // __WXMICROWIN__
3049 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
3051 processed
= HandleCommand(id
, cmd
, hwnd
);
3056 processed
= HandleNotify((int)wParam
, lParam
, &rc
.result
);
3059 // we only need to reply to WM_NOTIFYFORMAT manually when using MSLU,
3060 // otherwise DefWindowProc() does it perfectly fine for us, but MSLU
3061 // apparently doesn't always behave properly and needs some help
3062 #if wxUSE_UNICODE_MSLU && defined(NF_QUERY)
3063 case WM_NOTIFYFORMAT
:
3064 if ( lParam
== NF_QUERY
)
3067 rc
.result
= NFR_UNICODE
;
3070 #endif // wxUSE_UNICODE_MSLU
3072 // for these messages we must return true if process the message
3075 processed
= MSWOnDrawItem(wParam
, (WXDRAWITEMSTRUCT
*)lParam
);
3080 case WM_MEASUREITEM
:
3081 processed
= MSWOnMeasureItem(wParam
, (WXMEASUREITEMSTRUCT
*)lParam
);
3085 #endif // defined(WM_DRAWITEM)
3088 if ( !IsOfStandardClass() || HasFlag(wxWANTS_CHARS
) )
3090 // we always want to get the char events
3091 rc
.result
= DLGC_WANTCHARS
;
3093 if ( HasFlag(wxWANTS_CHARS
) )
3095 // in fact, we want everything
3096 rc
.result
|= DLGC_WANTARROWS
|
3103 //else: get the dlg code from the DefWindowProc()
3108 // Generate the key down event in any case.
3109 m_lastKeydownProcessed
= HandleKeyDown((WORD
) wParam
, lParam
);
3110 if ( m_lastKeydownProcessed
)
3112 // If it was processed by an event handler, we stop here,
3113 // notably we intentionally don't generate char event then.
3116 else // key down event not handled
3118 // Examine the event to decide whether we need to generate a
3119 // char event for it ourselves or let Windows do it. Window
3120 // mostly only does it for the keys which produce printable
3121 // characters (although there are exceptions, e.g. VK_ESCAPE or
3122 // VK_BACK (but not VK_DELETE)) while we do it for all keys
3123 // except the modifier ones (the wisdom of this is debatable
3124 // but by now this decision is enshrined forever due to
3125 // backwards compatibility).
3128 // No wxEVT_CHAR events are generated for these keys at all.
3136 // Windows will send us WM_CHAR for these ones so we'll
3137 // generate wxEVT_CHAR for them later when we get it.
3172 // special case of VK_APPS: treat it the same as right mouse
3173 // click because both usually pop up a context menu
3175 processed
= HandleMouseEvent(WM_RBUTTONDOWN
, -1, -1, 0);
3180 if ( (wParam
>= '0' && wParam
<= '9') ||
3181 (wParam
>= 'A' && wParam
<= 'Z') )
3183 // We'll get WM_CHAR for those later too.
3187 // But for the rest we won't get WM_CHAR later so we do
3188 // need to generate the event right now.
3189 wxKeyEvent
event(wxEVT_CHAR
);
3190 InitAnyKeyEvent(event
, wParam
, lParam
);
3192 // Set the "extended" bit in lParam because we want to
3193 // generate CHAR events with WXK_HOME and not
3194 // WXK_NUMPAD_HOME even if the "Home" key on numpad was
3196 event
.m_keyCode
= wxMSWKeyboard::VKToWX
3199 lParam
| (KF_EXTENDED
<< 16)
3202 // Don't produce events without any valid character
3203 // code (even if this shouldn't normally happen...).
3204 if ( event
.m_keyCode
!= WXK_NONE
)
3205 processed
= HandleWindowEvent(event
);
3208 if (message
== WM_SYSKEYDOWN
) // Let Windows still handle the SYSKEYs
3215 // special case of VK_APPS: treat it the same as right mouse button
3216 if ( wParam
== VK_APPS
)
3218 processed
= HandleMouseEvent(WM_RBUTTONUP
, -1, -1, 0);
3223 processed
= HandleKeyUp((WORD
) wParam
, lParam
);
3228 case WM_CHAR
: // Always an ASCII character
3229 if ( m_lastKeydownProcessed
)
3231 // The key was handled in the EVT_KEY_DOWN and handling
3232 // a key in an EVT_KEY_DOWN handler is meant, by
3233 // design, to prevent EVT_CHARs from happening
3234 m_lastKeydownProcessed
= false;
3239 processed
= HandleChar((WORD
)wParam
, lParam
);
3243 case WM_IME_STARTCOMPOSITION
:
3244 // IME popup needs Escape as it should undo the changes in its
3245 // entry window instead of e.g. closing the dialog for which the
3246 // IME is used (and losing all the changes in the IME window).
3247 gs_modalEntryWindowCount
++;
3250 case WM_IME_ENDCOMPOSITION
:
3251 gs_modalEntryWindowCount
--;
3256 processed
= HandleHotKey((WORD
)wParam
, lParam
);
3258 #endif // wxUSE_HOTKEY
3263 processed
= HandleClipboardEvent(message
);
3271 UnpackScroll(wParam
, lParam
, &code
, &pos
, &hwnd
);
3273 processed
= MSWOnScroll(message
== WM_HSCROLL
? wxHORIZONTAL
3279 // CTLCOLOR messages are sent by children to query the parent for their
3281 #ifndef __WXMICROWIN__
3282 case WM_CTLCOLORMSGBOX
:
3283 case WM_CTLCOLOREDIT
:
3284 case WM_CTLCOLORLISTBOX
:
3285 case WM_CTLCOLORBTN
:
3286 case WM_CTLCOLORDLG
:
3287 case WM_CTLCOLORSCROLLBAR
:
3288 case WM_CTLCOLORSTATIC
:
3292 UnpackCtlColor(wParam
, lParam
, &hdc
, &hwnd
);
3294 processed
= HandleCtlColor(&rc
.hBrush
, (WXHDC
)hdc
, (WXHWND
)hwnd
);
3297 #endif // !__WXMICROWIN__
3299 case WM_SYSCOLORCHANGE
:
3300 // the return value for this message is ignored
3301 processed
= HandleSysColorChange();
3304 #if !defined(__WXWINCE__)
3305 case WM_DISPLAYCHANGE
:
3306 processed
= HandleDisplayChange();
3310 case WM_PALETTECHANGED
:
3311 processed
= HandlePaletteChanged((WXHWND
)wParam
);
3314 case WM_CAPTURECHANGED
:
3315 processed
= HandleCaptureChanged((WXHWND
)lParam
);
3318 case WM_SETTINGCHANGE
:
3319 processed
= HandleSettingChange(wParam
, lParam
);
3322 case WM_QUERYNEWPALETTE
:
3323 processed
= HandleQueryNewPalette();
3328 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
3329 // check if an override was configured for this window
3330 EraseBgHooks::const_iterator it
= gs_eraseBgHooks
.find(this);
3331 if ( it
!= gs_eraseBgHooks
.end() )
3332 processed
= it
->second
->MSWEraseBgHook((WXHDC
)wParam
);
3334 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
3335 processed
= HandleEraseBkgnd((WXHDC
)wParam
);
3340 // we processed the message, i.e. erased the background
3345 #if !defined(__WXWINCE__)
3347 processed
= HandleDropFiles(wParam
);
3352 processed
= HandleInitDialog((WXHWND
)wParam
);
3356 // we never set focus from here
3361 #if !defined(__WXWINCE__)
3362 case WM_QUERYENDSESSION
:
3363 processed
= HandleQueryEndSession(lParam
, &rc
.allow
);
3367 processed
= HandleEndSession(wParam
!= 0, lParam
);
3370 case WM_GETMINMAXINFO
:
3371 processed
= HandleGetMinMaxInfo((MINMAXINFO
*)lParam
);
3376 processed
= HandleSetCursor((WXHWND
)wParam
,
3377 LOWORD(lParam
), // hit test
3378 HIWORD(lParam
)); // mouse msg
3382 // returning TRUE stops the DefWindowProc() from further
3383 // processing this message - exactly what we need because we've
3384 // just set the cursor.
3389 #if wxUSE_ACCESSIBILITY
3392 //WPARAM dwFlags = (WPARAM) (DWORD) wParam;
3393 LPARAM dwObjId
= (LPARAM
) (DWORD
) lParam
;
3395 if (dwObjId
== (LPARAM
)OBJID_CLIENT
&& GetOrCreateAccessible())
3397 return LresultFromObject(IID_IAccessible
, wParam
, (IUnknown
*) GetAccessible()->GetIAccessible());
3403 #if defined(WM_HELP)
3406 // by default, WM_HELP is propagated by DefWindowProc() upwards
3407 // to the window parent but as we do it ourselves already
3408 // (wxHelpEvent is derived from wxCommandEvent), we don't want
3409 // to get the other events if we process this message at all
3412 // WM_HELP doesn't use lParam under CE
3414 HELPINFO
* info
= (HELPINFO
*) lParam
;
3415 if ( info
->iContextType
== HELPINFO_WINDOW
)
3417 #endif // !__WXWINCE__
3418 wxHelpEvent helpEvent
3423 wxGetMousePosition() // what else?
3425 wxPoint(info
->MousePos
.x
, info
->MousePos
.y
)
3429 helpEvent
.SetEventObject(this);
3430 HandleWindowEvent(helpEvent
);
3433 else if ( info
->iContextType
== HELPINFO_MENUITEM
)
3435 wxHelpEvent
helpEvent(wxEVT_HELP
, info
->iCtrlId
);
3436 helpEvent
.SetEventObject(this);
3437 HandleWindowEvent(helpEvent
);
3440 else // unknown help event?
3444 #endif // !__WXWINCE__
3449 #if !defined(__WXWINCE__)
3450 case WM_CONTEXTMENU
:
3452 // we don't convert from screen to client coordinates as
3453 // the event may be handled by a parent window
3454 wxPoint
pt(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
3456 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
, GetId(), pt
);
3458 // we could have got an event from our child, reflect it back
3459 // to it if this is the case
3460 wxWindowMSW
*win
= NULL
;
3461 WXHWND hWnd
= (WXHWND
)wParam
;
3462 if ( hWnd
!= m_hWnd
)
3464 win
= FindItemByHWND(hWnd
);
3470 evtCtx
.SetEventObject(win
);
3471 processed
= win
->HandleWindowEvent(evtCtx
);
3478 // we're only interested in our own menus, not MF_SYSMENU
3479 if ( HIWORD(wParam
) == MF_POPUP
)
3481 // handle menu chars for ownerdrawn menu items
3482 int i
= HandleMenuChar(toupper(LOWORD(wParam
)), lParam
);
3483 if ( i
!= wxNOT_FOUND
)
3485 rc
.result
= MAKELRESULT(i
, MNC_EXECUTE
);
3490 #endif // wxUSE_MENUS
3493 case WM_POWERBROADCAST
:
3496 processed
= HandlePower(wParam
, lParam
, &vetoed
);
3497 rc
.result
= processed
&& vetoed
? BROADCAST_QUERY_DENY
: TRUE
;
3500 #endif // __WXWINCE__
3503 // If we want the default themed border then we need to draw it ourselves
3506 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
3507 const wxBorder border
= TranslateBorder(GetBorder());
3508 if (theme
&& border
== wxBORDER_THEME
)
3510 // first ask the widget to calculate the border size
3511 rc
.result
= MSWDefWindowProc(message
, wParam
, lParam
);
3514 // now alter the client size making room for drawing a
3517 NCCALCSIZE_PARAMS
*csparam
= NULL
;
3520 csparam
= (NCCALCSIZE_PARAMS
*)lParam
;
3521 rect
= &csparam
->rgrc
[0];
3525 rect
= (RECT
*)lParam
;
3528 wxUxThemeHandle
hTheme((const wxWindow
*)this, L
"EDIT");
3529 RECT rcClient
= { 0, 0, 0, 0 };
3530 wxClientDC
dc((wxWindow
*)this);
3531 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
3533 if ( theme
->GetThemeBackgroundContentRect
3540 &rcClient
) == S_OK
)
3542 InflateRect(&rcClient
, -1, -1);
3544 csparam
->rgrc
[0] = rcClient
;
3546 *((RECT
*)lParam
) = rcClient
;
3548 // WVR_REDRAW triggers a bug whereby child windows are moved up and left,
3550 // rc.result = WVR_REDRAW;
3558 wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
3559 const wxBorder border
= TranslateBorder(GetBorder());
3560 if (theme
&& border
== wxBORDER_THEME
)
3562 // first ask the widget to paint its non-client area, such as scrollbars, etc.
3563 rc
.result
= MSWDefWindowProc(message
, wParam
, lParam
);
3566 wxUxThemeHandle
hTheme((const wxWindow
*)this, L
"EDIT");
3567 wxWindowDC
dc((wxWindow
*)this);
3568 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
3570 // Clip the DC so that you only draw on the non-client area
3572 wxCopyRectToRECT(GetSize(), rcBorder
);
3575 theme
->GetThemeBackgroundContentRect(
3576 hTheme
, GetHdcOf(*impl
), EP_EDITTEXT
, ETS_NORMAL
, &rcBorder
, &rcClient
);
3577 InflateRect(&rcClient
, -1, -1);
3579 ::ExcludeClipRect(GetHdcOf(*impl
), rcClient
.left
, rcClient
.top
,
3580 rcClient
.right
, rcClient
.bottom
);
3582 // Make sure the background is in a proper state
3583 if (theme
->IsThemeBackgroundPartiallyTransparent(hTheme
, EP_EDITTEXT
, ETS_NORMAL
))
3585 theme
->DrawThemeParentBackground(GetHwnd(), GetHdcOf(*impl
), &rcBorder
);
3591 nState
= ETS_DISABLED
;
3592 // should we check this?
3593 //else if ( ::GetWindowLong(GetHwnd(), GWL_STYLE) & ES_READONLY)
3594 // nState = ETS_READONLY;
3596 nState
= ETS_NORMAL
;
3597 theme
->DrawThemeBackground(hTheme
, GetHdcOf(*impl
), EP_EDITTEXT
, nState
, &rcBorder
, NULL
);
3602 #endif // wxUSE_UXTHEME
3605 // try a custom message handler
3606 const MSWMessageHandlers::const_iterator
3607 i
= gs_messageHandlers
.find(message
);
3608 if ( i
!= gs_messageHandlers
.end() )
3610 processed
= (*i
->second
)(this, message
, wParam
, lParam
);
3617 *result
= rc
.result
;
3622 WXLRESULT
wxWindowMSW::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
3625 if ( !MSWHandleMessage(&result
, message
, wParam
, lParam
) )
3627 #if wxDEBUG_LEVEL >= 2
3628 wxLogTrace("winmsg", wxT("Forwarding %s to DefWindowProc."),
3629 wxGetMessageName(message
));
3630 #endif // wxDEBUG_LEVEL >= 2
3631 result
= MSWDefWindowProc(message
, wParam
, lParam
);
3637 // ----------------------------------------------------------------------------
3638 // wxWindow <-> HWND map
3639 // ----------------------------------------------------------------------------
3641 wxWindow
*wxFindWinFromHandle(HWND hwnd
)
3643 WindowHandles::const_iterator i
= gs_windowHandles
.find(hwnd
);
3644 return i
== gs_windowHandles
.end() ? NULL
: i
->second
;
3647 void wxAssociateWinWithHandle(HWND hwnd
, wxWindowMSW
*win
)
3649 // adding NULL hwnd is (first) surely a result of an error and
3650 // (secondly) breaks menu command processing
3651 wxCHECK_RET( hwnd
!= (HWND
)NULL
,
3652 wxT("attempt to add a NULL hwnd to window list ignored") );
3655 WindowHandles::const_iterator i
= gs_windowHandles
.find(hwnd
);
3656 if ( i
!= gs_windowHandles
.end() )
3658 if ( i
->second
!= win
)
3662 wxT("HWND %p already associated with another window (%s)"),
3663 hwnd
, win
->GetClassInfo()->GetClassName()
3667 //else: this actually happens currently because we associate the window
3668 // with its HWND during creation (if we create it) and also when
3669 // SubclassWin() is called later, this is ok
3671 #endif // wxDEBUG_LEVEL
3673 gs_windowHandles
[hwnd
] = (wxWindow
*)win
;
3676 void wxRemoveHandleAssociation(wxWindowMSW
*win
)
3678 gs_windowHandles
.erase(GetHwndOf(win
));
3681 // ----------------------------------------------------------------------------
3682 // various MSW speciic class dependent functions
3683 // ----------------------------------------------------------------------------
3685 // Default destroyer - override if you destroy it in some other way
3686 // (e.g. with MDI child windows)
3687 void wxWindowMSW::MSWDestroyWindow()
3691 void wxWindowMSW::MSWGetCreateWindowCoords(const wxPoint
& pos
,
3694 int& w
, int& h
) const
3696 // CW_USEDEFAULT can't be used for child windows so just position them at
3697 // the origin by default
3698 x
= pos
.x
== wxDefaultCoord
? 0 : pos
.x
;
3699 y
= pos
.y
== wxDefaultCoord
? 0 : pos
.y
;
3701 AdjustForParentClientOrigin(x
, y
);
3703 // We don't have any clearly good choice for the size by default neither
3704 // but we must use something non-zero.
3705 w
= WidthDefault(size
.x
);
3706 h
= HeightDefault(size
.y
);
3709 NB: there used to be some code here which set the initial size of the
3710 window to the client size of the parent if no explicit size was
3711 specified. This was wrong because wxWidgets programs often assume
3712 that they get a WM_SIZE (EVT_SIZE) upon creation, however this broke
3713 it. To see why, you should understand that Windows sends WM_SIZE from
3714 inside ::CreateWindow() anyhow. However, ::CreateWindow() is called
3715 from some base class ctor and so this WM_SIZE is not processed in the
3716 real class' OnSize() (because it's not fully constructed yet and the
3717 event goes to some base class OnSize() instead). So the WM_SIZE we
3718 rely on is the one sent when the parent frame resizes its children
3719 but here is the problem: if the child already has just the right
3720 size, nothing will happen as both wxWidgets and Windows check for
3721 this and ignore any attempts to change the window size to the size it
3722 already has - so no WM_SIZE would be sent.
3726 WXHWND
wxWindowMSW::MSWGetParent() const
3728 return m_parent
? m_parent
->GetHWND() : WXHWND(NULL
);
3731 bool wxWindowMSW::MSWCreate(const wxChar
*wclass
,
3732 const wxChar
*title
,
3736 WXDWORD extendedStyle
)
3738 // check a common bug in the user code: if the window is created with a
3739 // non-default ctor and Create() is called too, we'd create 2 HWND for a
3740 // single wxWindow object and this results in all sorts of trouble,
3741 // especially for wxTLWs
3742 wxCHECK_MSG( !m_hWnd
, true, "window can't be recreated" );
3744 // this can happen if this function is called using the return value of
3745 // wxApp::GetRegisteredClassName() which failed
3746 wxCHECK_MSG( wclass
, false, "failed to register window class?" );
3749 // choose the position/size for the new window
3751 (void)MSWGetCreateWindowCoords(pos
, size
, x
, y
, w
, h
);
3753 // controlId is menu handle for the top level windows, so set it to 0
3754 // unless we're creating a child window
3755 int controlId
= style
& WS_CHILD
? GetId() : 0;
3757 // for each class "Foo" we have we also have "FooNR" ("no repaint") class
3758 // which is the same but without CS_[HV]REDRAW class styles so using it
3759 // ensures that the window is not fully repainted on each resize
3760 wxString
className(wclass
);
3761 if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE
) )
3763 className
+= wxApp::GetNoRedrawClassSuffix();
3766 // do create the window
3767 wxWindowCreationHook
hook(this);
3769 m_hWnd
= (WXHWND
)::CreateWindowEx
3773 title
? title
: m_windowName
.wx_str(),
3776 (HWND
)MSWGetParent(),
3777 (HMENU
)wxUIntToPtr(controlId
),
3779 NULL
// no extra data
3784 wxLogSysError(_("Can't create window of class %s"), className
.c_str());
3789 SubclassWin(m_hWnd
);
3794 // ===========================================================================
3795 // MSW message handlers
3796 // ===========================================================================
3798 // ---------------------------------------------------------------------------
3800 // ---------------------------------------------------------------------------
3802 bool wxWindowMSW::HandleNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
3804 #ifndef __WXMICROWIN__
3805 LPNMHDR hdr
= (LPNMHDR
)lParam
;
3806 HWND hWnd
= hdr
->hwndFrom
;
3807 wxWindow
*win
= wxFindWinFromHandle(hWnd
);
3809 // if the control is one of our windows, let it handle the message itself
3812 return win
->MSWOnNotify(idCtrl
, lParam
, result
);
3815 // VZ: why did we do it? normally this is unnecessary and, besides, it
3816 // breaks the message processing for the toolbars because the tooltip
3817 // notifications were being forwarded to the toolbar child controls
3818 // (if it had any) before being passed to the toolbar itself, so in my
3819 // example the tooltip for the combobox was always shown instead of the
3820 // correct button tooltips
3822 // try all our children
3823 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3826 wxWindow
*child
= node
->GetData();
3827 if ( child
->MSWOnNotify(idCtrl
, lParam
, result
) )
3832 node
= node
->GetNext();
3836 // by default, handle it ourselves
3837 return MSWOnNotify(idCtrl
, lParam
, result
);
3838 #else // __WXMICROWIN__
3845 bool wxWindowMSW::HandleTooltipNotify(WXUINT code
,
3847 const wxString
& ttip
)
3849 // I don't know why it happens, but the versions of comctl32.dll starting
3850 // from 4.70 sometimes send TTN_NEEDTEXTW even to ANSI programs (normally,
3851 // this message is supposed to be sent to Unicode programs only) -- hence
3852 // we need to handle it as well, otherwise no tooltips will be shown in
3855 if ( !(code
== (WXUINT
) TTN_NEEDTEXTA
|| code
== (WXUINT
) TTN_NEEDTEXTW
)
3858 // not a tooltip message or no tooltip to show anyhow
3863 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
3865 // We don't want to use the szText buffer because it has a limit of 80
3866 // bytes and this is not enough, especially for Unicode build where it
3867 // limits the tooltip string length to only 40 characters
3869 // The best would be, of course, to not impose any length limitations at
3870 // all but then the buffer would have to be dynamic and someone would have
3871 // to free it and we don't have the tooltip owner object here any more, so
3872 // for now use our own static buffer with a higher fixed max length.
3874 // Note that using a static buffer should not be a problem as only a single
3875 // tooltip can be shown at the same time anyhow.
3877 if ( code
== (WXUINT
) TTN_NEEDTEXTW
)
3879 // We need to convert tooltip from multi byte to Unicode on the fly.
3880 static wchar_t buf
[513];
3882 // Truncate tooltip length if needed as otherwise we might not have
3883 // enough space for it in the buffer and MultiByteToWideChar() would
3885 size_t tipLength
= wxMin(ttip
.length(), WXSIZEOF(buf
) - 1);
3887 // Convert to WideChar without adding the NULL character. The NULL
3888 // character is added afterwards (this is more efficient).
3889 int len
= ::MultiByteToWideChar
3901 wxLogLastError(wxT("MultiByteToWideChar()"));
3905 ttText
->lpszText
= (LPSTR
) buf
;
3907 else // TTN_NEEDTEXTA
3908 #endif // !wxUSE_UNICODE
3910 // we get here if we got TTN_NEEDTEXTA (only happens in ANSI build) or
3911 // if we got TTN_NEEDTEXTW in Unicode build: in this case we just have
3912 // to copy the string we have into the buffer
3913 static wxChar buf
[513];
3914 wxStrlcpy(buf
, ttip
.c_str(), WXSIZEOF(buf
));
3915 ttText
->lpszText
= buf
;
3921 #endif // wxUSE_TOOLTIPS
3923 bool wxWindowMSW::MSWOnNotify(int WXUNUSED(idCtrl
),
3925 WXLPARAM
* WXUNUSED(result
))
3930 NMHDR
* hdr
= (NMHDR
*)lParam
;
3931 if ( HandleTooltipNotify(hdr
->code
, lParam
, m_tooltip
->GetTip()))
3938 wxUnusedVar(lParam
);
3939 #endif // wxUSE_TOOLTIPS
3944 // ---------------------------------------------------------------------------
3945 // end session messages
3946 // ---------------------------------------------------------------------------
3948 bool wxWindowMSW::HandleQueryEndSession(long logOff
, bool *mayEnd
)
3950 #ifdef ENDSESSION_LOGOFF
3951 wxCloseEvent
event(wxEVT_QUERY_END_SESSION
, wxID_ANY
);
3952 event
.SetEventObject(wxTheApp
);
3953 event
.SetCanVeto(true);
3954 event
.SetLoggingOff(logOff
== (long)ENDSESSION_LOGOFF
);
3956 bool rc
= wxTheApp
->ProcessEvent(event
);
3960 // we may end only if the app didn't veto session closing (double
3962 *mayEnd
= !event
.GetVeto();
3967 wxUnusedVar(logOff
);
3968 wxUnusedVar(mayEnd
);
3973 bool wxWindowMSW::HandleEndSession(bool endSession
, long logOff
)
3975 #ifdef ENDSESSION_LOGOFF
3976 // do nothing if the session isn't ending
3981 if ( (this != wxTheApp
->GetTopWindow()) )
3984 wxCloseEvent
event(wxEVT_END_SESSION
, wxID_ANY
);
3985 event
.SetEventObject(wxTheApp
);
3986 event
.SetCanVeto(false);
3987 event
.SetLoggingOff((logOff
& ENDSESSION_LOGOFF
) != 0);
3989 return wxTheApp
->ProcessEvent(event
);
3991 wxUnusedVar(endSession
);
3992 wxUnusedVar(logOff
);
3997 // ---------------------------------------------------------------------------
3998 // window creation/destruction
3999 // ---------------------------------------------------------------------------
4001 bool wxWindowMSW::HandleCreate(WXLPCREATESTRUCT
WXUNUSED_IN_WINCE(cs
),
4004 // VZ: why is this commented out for WinCE? If it doesn't support
4005 // WS_EX_CONTROLPARENT at all it should be somehow handled globally,
4006 // not with multiple #ifdef's!
4008 if ( ((CREATESTRUCT
*)cs
)->dwExStyle
& WS_EX_CONTROLPARENT
)
4009 EnsureParentHasControlParentStyle(GetParent());
4010 #endif // !__WXWINCE__
4017 bool wxWindowMSW::HandleDestroy()
4019 // delete our drop target if we've got one
4020 #if wxUSE_DRAG_AND_DROP
4021 if ( m_dropTarget
!= NULL
)
4023 m_dropTarget
->Revoke(m_hWnd
);
4025 wxDELETE(m_dropTarget
);
4027 #endif // wxUSE_DRAG_AND_DROP
4029 // WM_DESTROY handled
4033 // ---------------------------------------------------------------------------
4035 // ---------------------------------------------------------------------------
4037 bool wxWindowMSW::HandleActivate(int state
,
4038 bool WXUNUSED(minimized
),
4039 WXHWND
WXUNUSED(activate
))
4041 wxActivateEvent
event(wxEVT_ACTIVATE
,
4042 (state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
),
4044 event
.SetEventObject(this);
4046 return HandleWindowEvent(event
);
4049 bool wxWindowMSW::HandleSetFocus(WXHWND hwnd
)
4051 // Strangly enough, some controls get set focus events when they are being
4052 // deleted, even if they already had focus before.
4053 if ( m_isBeingDeleted
)
4058 // notify the parent keeping track of focus for the kbd navigation
4059 // purposes that we got it
4060 wxChildFocusEvent
eventFocus((wxWindow
*)this);
4061 (void)HandleWindowEvent(eventFocus
);
4067 m_caret
->OnSetFocus();
4069 #endif // wxUSE_CARET
4071 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
4072 event
.SetEventObject(this);
4074 // wxFindWinFromHandle() may return NULL, it is ok
4075 event
.SetWindow(wxFindWinFromHandle(hwnd
));
4077 return HandleWindowEvent(event
);
4080 bool wxWindowMSW::HandleKillFocus(WXHWND hwnd
)
4086 m_caret
->OnKillFocus();
4088 #endif // wxUSE_CARET
4090 // Don't send the event when in the process of being deleted. This can
4091 // only cause problems if the event handler tries to access the object.
4092 if ( m_isBeingDeleted
)
4097 wxFocusEvent
event(wxEVT_KILL_FOCUS
, m_windowId
);
4098 event
.SetEventObject(this);
4100 // wxFindWinFromHandle() may return NULL, it is ok
4101 event
.SetWindow(wxFindWinFromHandle(hwnd
));
4103 return HandleWindowEvent(event
);
4106 // ---------------------------------------------------------------------------
4108 // ---------------------------------------------------------------------------
4110 void wxWindowMSW::SetLabel( const wxString
& label
)
4112 SetWindowText(GetHwnd(), label
.c_str());
4115 wxString
wxWindowMSW::GetLabel() const
4117 return wxGetWindowText(GetHWND());
4120 // ---------------------------------------------------------------------------
4122 // ---------------------------------------------------------------------------
4124 bool wxWindowMSW::HandleShow(bool show
, int WXUNUSED(status
))
4126 wxShowEvent
event(GetId(), show
);
4127 event
.SetEventObject(this);
4129 return HandleWindowEvent(event
);
4132 bool wxWindowMSW::HandleInitDialog(WXHWND
WXUNUSED(hWndFocus
))
4134 wxInitDialogEvent
event(GetId());
4135 event
.SetEventObject(this);
4137 return HandleWindowEvent(event
);
4140 bool wxWindowMSW::HandleDropFiles(WXWPARAM wParam
)
4142 #if defined (__WXMICROWIN__) || defined(__WXWINCE__)
4143 wxUnusedVar(wParam
);
4145 #else // __WXMICROWIN__
4146 HDROP hFilesInfo
= (HDROP
) wParam
;
4148 // Get the total number of files dropped
4149 UINT gwFilesDropped
= ::DragQueryFile
4157 wxString
*files
= new wxString
[gwFilesDropped
];
4158 for ( UINT wIndex
= 0; wIndex
< gwFilesDropped
; wIndex
++ )
4160 // first get the needed buffer length (+1 for terminating NUL)
4161 size_t len
= ::DragQueryFile(hFilesInfo
, wIndex
, NULL
, 0) + 1;
4163 // and now get the file name
4164 ::DragQueryFile(hFilesInfo
, wIndex
,
4165 wxStringBuffer(files
[wIndex
], len
), len
);
4168 wxDropFilesEvent
event(wxEVT_DROP_FILES
, gwFilesDropped
, files
);
4169 event
.SetEventObject(this);
4172 DragQueryPoint(hFilesInfo
, (LPPOINT
) &dropPoint
);
4173 event
.m_pos
.x
= dropPoint
.x
;
4174 event
.m_pos
.y
= dropPoint
.y
;
4176 DragFinish(hFilesInfo
);
4178 return HandleWindowEvent(event
);
4183 bool wxWindowMSW::HandleSetCursor(WXHWND
WXUNUSED(hWnd
),
4185 int WXUNUSED(mouseMsg
))
4187 #ifndef __WXMICROWIN__
4188 // the logic is as follows:
4189 // 0. if we're busy, set the busy cursor (even for non client elements)
4190 // 1. don't set custom cursor for non client area of enabled windows
4191 // 2. ask user EVT_SET_CURSOR handler for the cursor
4192 // 3. if still no cursor but we're in a TLW, set the global cursor
4194 HCURSOR hcursor
= 0;
4197 hcursor
= wxGetCurrentBusyCursor();
4201 if ( nHitTest
!= HTCLIENT
)
4204 // first ask the user code - it may wish to set the cursor in some very
4205 // specific way (for example, depending on the current position)
4208 if ( !::GetCursorPosWinCE(&pt
))
4210 if ( !::GetCursorPos(&pt
) )
4213 wxLogLastError(wxT("GetCursorPos"));
4218 ScreenToClient(&x
, &y
);
4219 wxSetCursorEvent
event(x
, y
);
4220 event
.SetId(GetId());
4221 event
.SetEventObject(this);
4223 bool processedEvtSetCursor
= HandleWindowEvent(event
);
4224 if ( processedEvtSetCursor
&& event
.HasCursor() )
4226 hcursor
= GetHcursorOf(event
.GetCursor());
4231 // the test for processedEvtSetCursor is here to prevent using
4232 // m_cursor if the user code caught EVT_SET_CURSOR() and returned
4233 // nothing from it - this is a way to say that our cursor shouldn't
4234 // be used for this point
4235 if ( !processedEvtSetCursor
&& m_cursor
.IsOk() )
4237 hcursor
= GetHcursorOf(m_cursor
);
4240 if ( !hcursor
&& !GetParent() )
4242 const wxCursor
*cursor
= wxGetGlobalCursor();
4243 if ( cursor
&& cursor
->IsOk() )
4245 hcursor
= GetHcursorOf(*cursor
);
4254 ::SetCursor(hcursor
);
4256 // cursor set, stop here
4259 #endif // __WXMICROWIN__
4261 // pass up the window chain
4265 bool wxWindowMSW::HandlePower(WXWPARAM
WXUNUSED_IN_WINCE(wParam
),
4266 WXLPARAM
WXUNUSED(lParam
),
4267 bool *WXUNUSED_IN_WINCE(vetoed
))
4273 wxEventType evtType
;
4276 case PBT_APMQUERYSUSPEND
:
4277 evtType
= wxEVT_POWER_SUSPENDING
;
4280 case PBT_APMQUERYSUSPENDFAILED
:
4281 evtType
= wxEVT_POWER_SUSPEND_CANCEL
;
4284 case PBT_APMSUSPEND
:
4285 evtType
= wxEVT_POWER_SUSPENDED
;
4288 case PBT_APMRESUMESUSPEND
:
4289 evtType
= wxEVT_POWER_RESUME
;
4293 wxLogDebug(wxT("Unknown WM_POWERBROADCAST(%d) event"), wParam
);
4296 // these messages are currently not mapped to wx events
4297 case PBT_APMQUERYSTANDBY
:
4298 case PBT_APMQUERYSTANDBYFAILED
:
4299 case PBT_APMSTANDBY
:
4300 case PBT_APMRESUMESTANDBY
:
4301 case PBT_APMBATTERYLOW
:
4302 case PBT_APMPOWERSTATUSCHANGE
:
4303 case PBT_APMOEMEVENT
:
4304 case PBT_APMRESUMECRITICAL
:
4305 #ifdef PBT_APMRESUMEAUTOMATIC
4306 case PBT_APMRESUMEAUTOMATIC
:
4308 evtType
= wxEVT_NULL
;
4312 // don't handle unknown messages
4313 if ( evtType
== wxEVT_NULL
)
4316 // TODO: notify about PBTF_APMRESUMEFROMFAILURE in case of resume events?
4318 wxPowerEvent
event(evtType
);
4319 if ( !HandleWindowEvent(event
) )
4322 *vetoed
= event
.IsVetoed();
4328 bool wxWindowMSW::IsDoubleBuffered() const
4330 for ( const wxWindowMSW
*win
= this; win
; win
= win
->GetParent() )
4332 if ( wxHasWindowExStyle(win
, WS_EX_COMPOSITED
) )
4335 if ( win
->IsTopLevel() )
4342 void wxWindowMSW::SetDoubleBuffered(bool on
)
4344 // Get the current extended style bits
4345 long exstyle
= wxGetWindowExStyle(this);
4347 // Twiddle the bit as needed
4349 exstyle
|= WS_EX_COMPOSITED
;
4351 exstyle
&= ~WS_EX_COMPOSITED
;
4354 wxSetWindowExStyle(this, exstyle
);
4357 // ---------------------------------------------------------------------------
4358 // owner drawn stuff
4359 // ---------------------------------------------------------------------------
4361 #if (wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE) || \
4362 (wxUSE_CONTROLS && !defined(__WXUNIVERSAL__))
4363 #define WXUNUSED_UNLESS_ODRAWN(param) param
4365 #define WXUNUSED_UNLESS_ODRAWN(param)
4369 wxWindowMSW::MSWOnDrawItem(int WXUNUSED_UNLESS_ODRAWN(id
),
4370 WXDRAWITEMSTRUCT
* WXUNUSED_UNLESS_ODRAWN(itemStruct
))
4372 #if wxUSE_OWNER_DRAWN
4374 #if wxUSE_MENUS_NATIVE
4375 // is it a menu item?
4376 DRAWITEMSTRUCT
*pDrawStruct
= (DRAWITEMSTRUCT
*)itemStruct
;
4377 if ( id
== 0 && pDrawStruct
->CtlType
== ODT_MENU
)
4379 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pDrawStruct
->itemData
);
4381 // see comment before the same test in MSWOnMeasureItem() below
4385 wxCHECK_MSG( wxDynamicCast(pMenuItem
, wxMenuItem
),
4386 false, wxT("MSWOnDrawItem: bad wxMenuItem pointer") );
4388 // prepare to call OnDrawItem(): notice using of wxDCTemp to prevent
4389 // the DC from being released
4390 wxDCTemp
dc((WXHDC
)pDrawStruct
->hDC
);
4391 wxRect
rect(pDrawStruct
->rcItem
.left
, pDrawStruct
->rcItem
.top
,
4392 pDrawStruct
->rcItem
.right
- pDrawStruct
->rcItem
.left
,
4393 pDrawStruct
->rcItem
.bottom
- pDrawStruct
->rcItem
.top
);
4395 return pMenuItem
->OnDrawItem
4399 (wxOwnerDrawn::wxODAction
)pDrawStruct
->itemAction
,
4400 (wxOwnerDrawn::wxODStatus
)pDrawStruct
->itemState
4403 #endif // wxUSE_MENUS_NATIVE
4405 #endif // USE_OWNER_DRAWN
4407 #if wxUSE_CONTROLS && !defined(__WXUNIVERSAL__)
4409 #if wxUSE_OWNER_DRAWN
4410 wxControl
*item
= wxDynamicCast(FindItem(id
), wxControl
);
4411 #else // !wxUSE_OWNER_DRAWN
4412 // we may still have owner-drawn buttons internally because we have to make
4413 // them owner-drawn to support colour change
4416 wxDynamicCast(FindItem(id
), wxButton
)
4421 #endif // USE_OWNER_DRAWN
4425 return item
->MSWOnDraw(itemStruct
);
4428 #endif // wxUSE_CONTROLS
4434 wxWindowMSW::MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*itemStruct
)
4436 #if wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
4437 // is it a menu item?
4438 MEASUREITEMSTRUCT
*pMeasureStruct
= (MEASUREITEMSTRUCT
*)itemStruct
;
4439 if ( id
== 0 && pMeasureStruct
->CtlType
== ODT_MENU
)
4441 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pMeasureStruct
->itemData
);
4443 // according to Carsten Fuchs the pointer may be NULL under XP if an
4444 // MDI child frame is initially maximized, see this for more info:
4445 // http://article.gmane.org/gmane.comp.lib.wxwidgets.general/27745
4447 // so silently ignore it instead of asserting
4451 wxCHECK_MSG( wxDynamicCast(pMenuItem
, wxMenuItem
),
4452 false, wxT("MSWOnMeasureItem: bad wxMenuItem pointer") );
4455 bool rc
= pMenuItem
->OnMeasureItem(&w
, &h
);
4457 pMeasureStruct
->itemWidth
= w
;
4458 pMeasureStruct
->itemHeight
= h
;
4463 wxControl
*item
= wxDynamicCast(FindItem(id
), wxControl
);
4466 return item
->MSWOnMeasure(itemStruct
);
4470 wxUnusedVar(itemStruct
);
4471 #endif // wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
4476 // ---------------------------------------------------------------------------
4477 // colours and palettes
4478 // ---------------------------------------------------------------------------
4480 bool wxWindowMSW::HandleSysColorChange()
4482 wxSysColourChangedEvent event
;
4483 event
.SetEventObject(this);
4485 (void)HandleWindowEvent(event
);
4487 // always let the system carry on the default processing to allow the
4488 // native controls to react to the colours update
4492 bool wxWindowMSW::HandleDisplayChange()
4494 wxDisplayChangedEvent event
;
4495 event
.SetEventObject(this);
4497 return HandleWindowEvent(event
);
4500 #ifndef __WXMICROWIN__
4502 bool wxWindowMSW::HandleCtlColor(WXHBRUSH
*brush
, WXHDC hDC
, WXHWND hWnd
)
4504 #if !wxUSE_CONTROLS || defined(__WXUNIVERSAL__)
4508 wxControl
*item
= wxDynamicCast(FindItemByHWND(hWnd
, true), wxControl
);
4511 *brush
= item
->MSWControlColor(hDC
, hWnd
);
4513 #endif // wxUSE_CONTROLS
4516 return *brush
!= NULL
;
4519 #endif // __WXMICROWIN__
4521 bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange
)
4524 // same as below except we don't respond to our own messages
4525 if ( hWndPalChange
!= GetHWND() )
4527 // check to see if we our our parents have a custom palette
4528 wxWindowMSW
*win
= this;
4529 while ( win
&& !win
->HasCustomPalette() )
4531 win
= win
->GetParent();
4534 if ( win
&& win
->HasCustomPalette() )
4536 // realize the palette to see whether redrawing is needed
4537 HDC hdc
= ::GetDC((HWND
) hWndPalChange
);
4538 win
->m_palette
.SetHPALETTE((WXHPALETTE
)
4539 ::SelectPalette(hdc
, GetHpaletteOf(win
->m_palette
), FALSE
));
4541 int result
= ::RealizePalette(hdc
);
4543 // restore the palette (before releasing the DC)
4544 win
->m_palette
.SetHPALETTE((WXHPALETTE
)
4545 ::SelectPalette(hdc
, GetHpaletteOf(win
->m_palette
), FALSE
));
4546 ::RealizePalette(hdc
);
4547 ::ReleaseDC((HWND
) hWndPalChange
, hdc
);
4549 // now check for the need to redraw
4551 ::InvalidateRect((HWND
) hWndPalChange
, NULL
, TRUE
);
4555 #endif // wxUSE_PALETTE
4557 wxPaletteChangedEvent
event(GetId());
4558 event
.SetEventObject(this);
4559 event
.SetChangedWindow(wxFindWinFromHandle(hWndPalChange
));
4561 return HandleWindowEvent(event
);
4564 bool wxWindowMSW::HandleCaptureChanged(WXHWND hWndGainedCapture
)
4566 // notify windows on the capture stack about lost capture
4567 // (see http://sourceforge.net/tracker/index.php?func=detail&aid=1153662&group_id=9863&atid=109863):
4568 wxWindowBase::NotifyCaptureLost();
4570 wxWindow
*win
= wxFindWinFromHandle(hWndGainedCapture
);
4571 wxMouseCaptureChangedEvent
event(GetId(), win
);
4572 event
.SetEventObject(this);
4573 return HandleWindowEvent(event
);
4576 bool wxWindowMSW::HandleSettingChange(WXWPARAM wParam
, WXLPARAM lParam
)
4578 // despite MSDN saying "(This message cannot be sent directly to a window.)"
4579 // we need to send this to child windows (it is only sent to top-level
4580 // windows) so {list,tree}ctrls can adjust their font size if necessary
4581 // this is exactly how explorer does it to enable the font size changes
4583 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
4586 // top-level windows already get this message from the system
4587 wxWindow
*win
= node
->GetData();
4588 if ( !win
->IsTopLevel() )
4590 ::SendMessage(GetHwndOf(win
), WM_SETTINGCHANGE
, wParam
, lParam
);
4593 node
= node
->GetNext();
4596 // let the system handle it
4600 bool wxWindowMSW::HandleQueryNewPalette()
4604 // check to see if we our our parents have a custom palette
4605 wxWindowMSW
*win
= this;
4606 while (!win
->HasCustomPalette() && win
->GetParent()) win
= win
->GetParent();
4607 if (win
->HasCustomPalette()) {
4608 /* realize the palette to see whether redrawing is needed */
4609 HDC hdc
= ::GetDC((HWND
) GetHWND());
4610 win
->m_palette
.SetHPALETTE( (WXHPALETTE
)
4611 ::SelectPalette(hdc
, (HPALETTE
) win
->m_palette
.GetHPALETTE(), FALSE
) );
4613 int result
= ::RealizePalette(hdc
);
4614 /* restore the palette (before releasing the DC) */
4615 win
->m_palette
.SetHPALETTE( (WXHPALETTE
)
4616 ::SelectPalette(hdc
, (HPALETTE
) win
->m_palette
.GetHPALETTE(), TRUE
) );
4617 ::RealizePalette(hdc
);
4618 ::ReleaseDC((HWND
) GetHWND(), hdc
);
4619 /* now check for the need to redraw */
4621 ::InvalidateRect((HWND
) GetHWND(), NULL
, TRUE
);
4623 #endif // wxUSE_PALETTE
4625 wxQueryNewPaletteEvent
event(GetId());
4626 event
.SetEventObject(this);
4628 return HandleWindowEvent(event
) && event
.GetPaletteRealized();
4631 // Responds to colour changes: passes event on to children.
4632 void wxWindowMSW::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
4634 // the top level window also reset the standard colour map as it might have
4635 // changed (there is no need to do it for the non top level windows as we
4636 // only have to do it once)
4640 gs_hasStdCmap
= false;
4642 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
4645 // Only propagate to non-top-level windows because Windows already
4646 // sends this event to all top-level ones
4647 wxWindow
*win
= node
->GetData();
4648 if ( !win
->IsTopLevel() )
4650 // we need to send the real WM_SYSCOLORCHANGE and not just trigger
4651 // EVT_SYS_COLOUR_CHANGED call because the latter wouldn't work for
4652 // the standard controls
4653 ::SendMessage(GetHwndOf(win
), WM_SYSCOLORCHANGE
, 0, 0);
4656 node
= node
->GetNext();
4660 extern wxCOLORMAP
*wxGetStdColourMap()
4662 static COLORREF s_stdColours
[wxSTD_COL_MAX
];
4663 static wxCOLORMAP s_cmap
[wxSTD_COL_MAX
];
4665 if ( !gs_hasStdCmap
)
4667 static bool s_coloursInit
= false;
4669 if ( !s_coloursInit
)
4671 // When a bitmap is loaded, the RGB values can change (apparently
4672 // because Windows adjusts them to care for the old programs always
4673 // using 0xc0c0c0 while the transparent colour for the new Windows
4674 // versions is different). But we do this adjustment ourselves so
4675 // we want to avoid Windows' "help" and for this we need to have a
4676 // reference bitmap which can tell us what the RGB values change
4678 wxLogNull logNo
; // suppress error if we couldn't load the bitmap
4679 wxBitmap
stdColourBitmap(wxT("wxBITMAP_STD_COLOURS"));
4680 if ( stdColourBitmap
.IsOk() )
4682 // the pixels in the bitmap must correspond to wxSTD_COL_XXX!
4683 wxASSERT_MSG( stdColourBitmap
.GetWidth() == wxSTD_COL_MAX
,
4684 wxT("forgot to update wxBITMAP_STD_COLOURS!") );
4687 memDC
.SelectObject(stdColourBitmap
);
4690 for ( size_t i
= 0; i
< WXSIZEOF(s_stdColours
); i
++ )
4692 memDC
.GetPixel(i
, 0, &colour
);
4693 s_stdColours
[i
] = wxColourToRGB(colour
);
4696 else // wxBITMAP_STD_COLOURS couldn't be loaded
4698 s_stdColours
[0] = RGB(000,000,000); // black
4699 s_stdColours
[1] = RGB(128,128,128); // dark grey
4700 s_stdColours
[2] = RGB(192,192,192); // light grey
4701 s_stdColours
[3] = RGB(255,255,255); // white
4702 //s_stdColours[4] = RGB(000,000,255); // blue
4703 //s_stdColours[5] = RGB(255,000,255); // magenta
4706 s_coloursInit
= true;
4709 gs_hasStdCmap
= true;
4711 // create the colour map
4712 #define INIT_CMAP_ENTRY(col) \
4713 s_cmap[wxSTD_COL_##col].from = s_stdColours[wxSTD_COL_##col]; \
4714 s_cmap[wxSTD_COL_##col].to = ::GetSysColor(COLOR_##col)
4716 INIT_CMAP_ENTRY(BTNTEXT
);
4717 INIT_CMAP_ENTRY(BTNSHADOW
);
4718 INIT_CMAP_ENTRY(BTNFACE
);
4719 INIT_CMAP_ENTRY(BTNHIGHLIGHT
);
4721 #undef INIT_CMAP_ENTRY
4727 #if wxUSE_UXTHEME && !defined(TMT_FILLCOLOR)
4728 #define TMT_FILLCOLOR 3802
4729 #define TMT_TEXTCOLOR 3803
4730 #define TMT_BORDERCOLOR 3801
4733 wxColour
wxWindowMSW::MSWGetThemeColour(const wchar_t *themeName
,
4736 MSWThemeColour themeColour
,
4737 wxSystemColour fallback
) const
4740 const wxUxThemeEngine
* theme
= wxUxThemeEngine::GetIfActive();
4743 int themeProperty
= 0;
4745 // TODO: Convert this into a table? Sure would be faster.
4746 switch ( themeColour
)
4748 case ThemeColourBackground
:
4749 themeProperty
= TMT_FILLCOLOR
;
4751 case ThemeColourText
:
4752 themeProperty
= TMT_TEXTCOLOR
;
4754 case ThemeColourBorder
:
4755 themeProperty
= TMT_BORDERCOLOR
;
4758 wxFAIL_MSG(wxT("unsupported theme colour"));
4761 wxUxThemeHandle
hTheme((const wxWindow
*)this, themeName
);
4763 HRESULT hr
= theme
->GetThemeColor
4772 if ( SUCCEEDED(hr
) )
4773 return wxRGBToColour(col
);
4777 "GetThemeColor(%s, %i, %i, %i)",
4778 themeName
, themePart
, themeState
, themeProperty
),
4782 wxUnusedVar(themeName
);
4783 wxUnusedVar(themePart
);
4784 wxUnusedVar(themeState
);
4785 wxUnusedVar(themeColour
);
4787 return wxSystemSettings::GetColour(fallback
);
4790 // ---------------------------------------------------------------------------
4792 // ---------------------------------------------------------------------------
4794 // this variable is used to check that a paint event handler which processed
4795 // the event did create a wxPaintDC inside its code and called BeginPaint() to
4796 // validate the invalidated window area as otherwise we'd keep getting an
4797 // endless stream of WM_PAINT messages for this window resulting in a lot of
4798 // difficult to debug problems (e.g. impossibility to repaint other windows,
4799 // lack of timer and idle events and so on)
4800 extern bool wxDidCreatePaintDC
;
4801 bool wxDidCreatePaintDC
= false;
4803 bool wxWindowMSW::HandlePaint()
4805 HRGN hRegion
= ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
4808 wxLogLastError(wxT("CreateRectRgn"));
4810 if ( ::GetUpdateRgn(GetHwnd(), hRegion
, FALSE
) == ERROR
)
4812 wxLogLastError(wxT("GetUpdateRgn"));
4815 m_updateRegion
= wxRegion((WXHRGN
) hRegion
);
4817 wxDidCreatePaintDC
= false;
4819 wxPaintEvent
event(m_windowId
);
4820 event
.SetEventObject(this);
4822 bool processed
= HandleWindowEvent(event
);
4824 if ( processed
&& !wxDidCreatePaintDC
)
4826 // do call MSWDefWindowProc() to validate the update region to avoid
4827 // the problems mentioned above
4831 // note that we must generate NC event after the normal one as otherwise
4832 // BeginPaint() will happily overwrite our decorations with the background
4834 wxNcPaintEvent
eventNc(m_windowId
);
4835 eventNc
.SetEventObject(this);
4836 HandleWindowEvent(eventNc
);
4838 // don't keep an HRGN we don't need any longer (GetUpdateRegion() can only
4839 // be called from inside the event handlers called above)
4840 m_updateRegion
.Clear();
4845 // Can be called from an application's OnPaint handler
4846 void wxWindowMSW::OnPaint(wxPaintEvent
& event
)
4848 #ifdef __WXUNIVERSAL__
4851 HDC hDC
= (HDC
) wxPaintDCImpl::FindDCInCache((wxWindow
*) event
.GetEventObject());
4854 MSWDefWindowProc(WM_PAINT
, (WPARAM
) hDC
, 0);
4859 bool wxWindowMSW::HandleEraseBkgnd(WXHDC hdc
)
4861 switch ( GetBackgroundStyle() )
4863 case wxBG_STYLE_ERASE
:
4864 case wxBG_STYLE_COLOUR
:
4865 // we need to generate an erase background event
4867 wxDCTemp
dc(hdc
, GetClientSize());
4868 wxDCTempImpl
*impl
= (wxDCTempImpl
*) dc
.GetImpl();
4871 impl
->SetWindow((wxWindow
*)this);
4873 wxEraseEvent
event(m_windowId
, &dc
);
4874 event
.SetEventObject(this);
4875 bool rc
= HandleWindowEvent(event
);
4877 // must be called manually as ~wxDC doesn't do anything for
4879 impl
->SelectOldObjects(hdc
);
4883 // background erased by the user-defined handler
4889 case wxBG_STYLE_SYSTEM
:
4890 if ( !DoEraseBackground(hdc
) )
4892 // let the default processing to take place if we didn't erase
4893 // the background ourselves
4898 case wxBG_STYLE_PAINT
:
4899 case wxBG_STYLE_TRANSPARENT
:
4900 // no need to do anything here at all, background will be entirely
4901 // redrawn in WM_PAINT handler
4905 wxFAIL_MSG( "unknown background style" );
4911 #ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
4913 bool wxWindowMSW::MSWHasEraseBgHook() const
4915 return gs_eraseBgHooks
.find(const_cast<wxWindowMSW
*>(this))
4916 != gs_eraseBgHooks
.end();
4919 void wxWindowMSW::MSWSetEraseBgHook(wxWindow
*child
)
4923 if ( !gs_eraseBgHooks
.insert(
4924 EraseBgHooks::value_type(this, child
)).second
)
4926 wxFAIL_MSG( wxT("Setting erase background hook twice?") );
4929 else // reset the hook
4931 if ( gs_eraseBgHooks
.erase(this) != 1 )
4933 wxFAIL_MSG( wxT("Resetting erase background which was not set?") );
4938 #endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
4940 bool wxWindowMSW::DoEraseBackground(WXHDC hDC
)
4942 HBRUSH hbr
= (HBRUSH
)MSWGetBgBrush(hDC
);
4946 // erase just the client area of the window, this is important for the
4947 // frames to avoid drawing over the toolbar part of the window (you might
4948 // think using WS_CLIPCHILDREN would prevent this from happening, but it
4951 wxCopyRectToRECT(GetClientRect(), rc
);
4952 ::FillRect((HDC
)hDC
, &rc
, hbr
);
4958 wxWindowMSW::MSWGetBgBrushForChild(WXHDC hDC
, wxWindowMSW
*child
)
4960 // Test for the custom background brush first.
4961 WXHBRUSH hbrush
= MSWGetCustomBgBrush();
4964 // We assume that this is either a stipple or hatched brush and not a
4965 // solid one as otherwise it would have been enough to set the
4966 // background colour and such brushes need to be positioned correctly
4967 // in order to align when different windows are painted, so do it here.
4969 ::GetWindowRect(GetHwndOf(child
), &rc
);
4971 ::MapWindowPoints(NULL
, GetHwnd(), (POINT
*)&rc
, 1);
4973 if ( !::SetBrushOrgEx((HDC
)hDC
, -rc
.left
, -rc
.top
, NULL
) )
4975 wxLogLastError(wxT("SetBrushOrgEx(bg brush)"));
4981 // Otherwise see if we have a custom background colour.
4985 brush
= wxTheBrushList
->FindOrCreateBrush(GetBackgroundColour());
4987 return (WXHBRUSH
)GetHbrushOf(*brush
);
4993 WXHBRUSH
wxWindowMSW::MSWGetBgBrush(WXHDC hDC
)
4995 // Use the special wxWindowBeingErased variable if it is set as the child
4997 wxWindowMSW
* const child
=
4999 wxWindowBeingErased
? wxWindowBeingErased
:
5003 for ( wxWindowMSW
*win
= this; win
; win
= win
->GetParent() )
5005 WXHBRUSH hBrush
= win
->MSWGetBgBrushForChild(hDC
, child
);
5009 // don't use the parent background if we're not transparent
5010 if ( !win
->HasTransparentBackground() )
5013 // background is not inherited beyond top level windows
5014 if ( win
->IsTopLevel() )
5021 bool wxWindowMSW::HandlePrintClient(WXHDC hDC
)
5023 // we receive this message when DrawThemeParentBackground() is
5024 // called from def window proc of several controls under XP and we
5025 // must draw properly themed background here
5027 // note that naively I'd expect filling the client rect with the
5028 // brush returned by MSWGetBgBrush() work -- but for some reason it
5029 // doesn't and we have to call parents MSWPrintChild() which is
5030 // supposed to call DrawThemeBackground() with appropriate params
5032 // also note that in this case lParam == PRF_CLIENT but we're
5033 // clearly expected to paint the background and nothing else!
5035 if ( IsTopLevel() || InheritsBackgroundColour() )
5038 // sometimes we don't want the parent to handle it at all, instead
5039 // return whatever value this window wants
5040 if ( !MSWShouldPropagatePrintChild() )
5041 return MSWPrintChild(hDC
, (wxWindow
*)this);
5043 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
5045 if ( win
->MSWPrintChild(hDC
, (wxWindow
*)this) )
5048 if ( win
->IsTopLevel() || win
->InheritsBackgroundColour() )
5055 // ---------------------------------------------------------------------------
5056 // moving and resizing
5057 // ---------------------------------------------------------------------------
5059 bool wxWindowMSW::HandleMinimize()
5061 wxIconizeEvent
event(m_windowId
);
5062 event
.SetEventObject(this);
5064 return HandleWindowEvent(event
);
5067 bool wxWindowMSW::HandleMaximize()
5069 wxMaximizeEvent
event(m_windowId
);
5070 event
.SetEventObject(this);
5072 return HandleWindowEvent(event
);
5075 bool wxWindowMSW::HandleMove(int x
, int y
)
5078 wxMoveEvent
event(point
, m_windowId
);
5079 event
.SetEventObject(this);
5081 return HandleWindowEvent(event
);
5084 bool wxWindowMSW::HandleMoving(wxRect
& rect
)
5086 wxMoveEvent
event(rect
, m_windowId
);
5087 event
.SetEventObject(this);
5089 bool rc
= HandleWindowEvent(event
);
5091 rect
= event
.GetRect();
5095 bool wxWindowMSW::HandleEnterSizeMove()
5097 wxMoveEvent
event(wxPoint(0,0), m_windowId
);
5098 event
.SetEventType(wxEVT_MOVE_START
);
5099 event
.SetEventObject(this);
5101 return HandleWindowEvent(event
);
5104 bool wxWindowMSW::HandleExitSizeMove()
5106 wxMoveEvent
event(wxPoint(0,0), m_windowId
);
5107 event
.SetEventType(wxEVT_MOVE_END
);
5108 event
.SetEventObject(this);
5110 return HandleWindowEvent(event
);
5113 bool wxWindowMSW::HandleSize(int WXUNUSED(w
), int WXUNUSED(h
), WXUINT wParam
)
5115 #if wxUSE_DEFERRED_SIZING
5116 // when we resize this window, its children are probably going to be
5117 // repositioned as well, prepare to use DeferWindowPos() for them
5118 int numChildren
= 0;
5119 for ( HWND child
= ::GetWindow(GetHwndOf(this), GW_CHILD
);
5121 child
= ::GetWindow(child
, GW_HWNDNEXT
) )
5126 // Protect against valid m_hDWP being overwritten
5127 bool useDefer
= false;
5129 if ( numChildren
> 1 )
5133 m_hDWP
= (WXHANDLE
)::BeginDeferWindowPos(numChildren
);
5136 wxLogLastError(wxT("BeginDeferWindowPos"));
5142 #endif // wxUSE_DEFERRED_SIZING
5144 // update this window size
5145 bool processed
= false;
5149 wxFAIL_MSG( wxT("unexpected WM_SIZE parameter") );
5150 // fall through nevertheless
5154 // we're not interested in these messages at all
5157 case SIZE_MINIMIZED
:
5158 processed
= HandleMinimize();
5161 case SIZE_MAXIMIZED
:
5162 /* processed = */ HandleMaximize();
5163 // fall through to send a normal size event as well
5166 // don't use w and h parameters as they specify the client size
5167 // while according to the docs EVT_SIZE handler is supposed to
5168 // receive the total size
5169 wxSizeEvent
event(GetSize(), m_windowId
);
5170 event
.SetEventObject(this);
5172 processed
= HandleWindowEvent(event
);
5175 #if wxUSE_DEFERRED_SIZING
5176 // and finally change the positions of all child windows at once
5177 if ( useDefer
&& m_hDWP
)
5179 // reset m_hDWP to NULL so that child windows don't try to use our
5180 // m_hDWP after we call EndDeferWindowPos() on it (this shouldn't
5181 // happen anyhow normally but who knows what weird flow of control we
5182 // may have depending on what the users EVT_SIZE handler does...)
5183 HDWP hDWP
= (HDWP
)m_hDWP
;
5186 // do put all child controls in place at once
5187 if ( !::EndDeferWindowPos(hDWP
) )
5189 wxLogLastError(wxT("EndDeferWindowPos"));
5192 // Reset our children's pending pos/size values.
5193 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
5195 node
= node
->GetNext() )
5197 wxWindowMSW
* const child
= node
->GetData();
5198 child
->MSWEndDeferWindowPos();
5201 #endif // wxUSE_DEFERRED_SIZING
5206 bool wxWindowMSW::HandleSizing(wxRect
& rect
)
5208 wxSizeEvent
event(rect
, m_windowId
);
5209 event
.SetEventObject(this);
5211 bool rc
= HandleWindowEvent(event
);
5213 rect
= event
.GetRect();
5217 bool wxWindowMSW::HandleGetMinMaxInfo(void *WXUNUSED_IN_WINCE(mmInfo
))
5222 MINMAXINFO
*info
= (MINMAXINFO
*)mmInfo
;
5226 int minWidth
= GetMinWidth(),
5227 minHeight
= GetMinHeight(),
5228 maxWidth
= GetMaxWidth(),
5229 maxHeight
= GetMaxHeight();
5231 if ( minWidth
!= wxDefaultCoord
)
5233 info
->ptMinTrackSize
.x
= minWidth
;
5237 if ( minHeight
!= wxDefaultCoord
)
5239 info
->ptMinTrackSize
.y
= minHeight
;
5243 if ( maxWidth
!= wxDefaultCoord
)
5245 info
->ptMaxTrackSize
.x
= maxWidth
;
5249 if ( maxHeight
!= wxDefaultCoord
)
5251 info
->ptMaxTrackSize
.y
= maxHeight
;
5259 // ---------------------------------------------------------------------------
5261 // ---------------------------------------------------------------------------
5263 bool wxWindowMSW::HandleCommand(WXWORD id_
, WXWORD cmd
, WXHWND control
)
5265 // sign extend to int from short before comparing with the other int ids
5266 int id
= (signed short)id_
;
5268 #if wxUSE_MENUS_NATIVE
5269 if ( !cmd
&& wxCurrentPopupMenu
)
5271 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
5272 wxCurrentPopupMenu
= NULL
;
5274 return popupMenu
->MSWCommand(cmd
, id
);
5276 #endif // wxUSE_MENUS_NATIVE
5278 wxWindow
*win
= NULL
;
5280 // first try to find it from HWND - this works even with the broken
5281 // programs using the same ids for different controls
5284 win
= wxFindWinFromHandle(control
);
5295 return win
->MSWCommand(cmd
, id
);
5298 // the messages sent from the in-place edit control used by the treectrl
5299 // for label editing have id == 0, but they should _not_ be treated as menu
5300 // messages (they are EN_XXX ones, in fact) so don't translate anything
5301 // coming from a control to wxEVT_COMMAND_MENU_SELECTED
5304 wxCommandEvent
event(wxEVT_COMMAND_MENU_SELECTED
, id
);
5305 event
.SetEventObject(this);
5308 return HandleWindowEvent(event
);
5312 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
5313 // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND
5314 // notifications to its parent which we want to reflect back to
5316 wxSpinCtrl
*spin
= wxSpinCtrl::GetSpinForTextCtrl(control
);
5317 if ( spin
&& spin
->ProcessTextCommand(cmd
, id
) )
5319 #endif // wxUSE_SPINCTRL
5321 #if wxUSE_CHOICE && defined(__SMARTPHONE__)
5322 // the listbox ctrl which is logically part of wxChoice sends WM_COMMAND
5323 // notifications to its parent which we want to reflect back to
5325 wxChoice
*choice
= wxChoice::GetChoiceForListBox(control
);
5326 if ( choice
&& choice
->MSWCommand(cmd
, id
) )
5334 // ---------------------------------------------------------------------------
5336 // ---------------------------------------------------------------------------
5338 void wxWindowMSW::InitMouseEvent(wxMouseEvent
& event
,
5342 // our client coords are not quite the same as Windows ones
5343 wxPoint pt
= GetClientAreaOrigin();
5344 event
.m_x
= x
- pt
.x
;
5345 event
.m_y
= y
- pt
.y
;
5347 event
.m_shiftDown
= (flags
& MK_SHIFT
) != 0;
5348 event
.m_controlDown
= (flags
& MK_CONTROL
) != 0;
5349 event
.m_leftDown
= (flags
& MK_LBUTTON
) != 0;
5350 event
.m_middleDown
= (flags
& MK_MBUTTON
) != 0;
5351 event
.m_rightDown
= (flags
& MK_RBUTTON
) != 0;
5352 #ifdef wxHAS_XBUTTON
5353 event
.m_aux1Down
= (flags
& MK_XBUTTON1
) != 0;
5354 event
.m_aux2Down
= (flags
& MK_XBUTTON2
) != 0;
5355 #endif // wxHAS_XBUTTON
5356 event
.m_altDown
= ::wxIsAltDown();
5359 event
.SetTimestamp(::GetMessageTime());
5362 event
.SetEventObject(this);
5363 event
.SetId(GetId());
5365 #if wxUSE_MOUSEEVENT_HACK
5366 gs_lastMouseEvent
.pos
= ClientToScreen(wxPoint(x
, y
));
5367 gs_lastMouseEvent
.type
= event
.GetEventType();
5368 #endif // wxUSE_MOUSEEVENT_HACK
5372 // Windows doesn't send the mouse events to the static controls (which are
5373 // transparent in the sense that their WM_NCHITTEST handler returns
5374 // HTTRANSPARENT) at all but we want all controls to receive the mouse events
5375 // and so we manually check if we don't have a child window under mouse and if
5376 // we do, send the event to it instead of the window Windows had sent WM_XXX
5379 // Notice that this is not done for the mouse move events because this could
5380 // (would?) be too slow, but only for clicks which means that the static texts
5381 // still don't get move, enter nor leave events.
5382 static wxWindowMSW
*FindWindowForMouseEvent(wxWindowMSW
*win
, int *x
, int *y
)
5384 wxCHECK_MSG( x
&& y
, win
, wxT("NULL pointer in FindWindowForMouseEvent") );
5386 // first try to find a non transparent child: this allows us to send events
5387 // to a static text which is inside a static box, for example
5388 POINT pt
= { *x
, *y
};
5389 HWND hwnd
= GetHwndOf(win
),
5393 hwndUnderMouse
= ::ChildWindowFromPoint
5399 hwndUnderMouse
= ::ChildWindowFromPointEx
5409 if ( !hwndUnderMouse
|| hwndUnderMouse
== hwnd
)
5411 // now try any child window at all
5412 hwndUnderMouse
= ::ChildWindowFromPoint(hwnd
, pt
);
5415 // check that we have a child window which is susceptible to receive mouse
5416 // events: for this it must be shown and enabled
5417 if ( hwndUnderMouse
&&
5418 hwndUnderMouse
!= hwnd
&&
5419 ::IsWindowVisible(hwndUnderMouse
) &&
5420 ::IsWindowEnabled(hwndUnderMouse
) )
5422 wxWindow
*winUnderMouse
= wxFindWinFromHandle(hwndUnderMouse
);
5423 if ( winUnderMouse
)
5425 // translate the mouse coords to the other window coords
5426 win
->ClientToScreen(x
, y
);
5427 winUnderMouse
->ScreenToClient(x
, y
);
5429 win
= winUnderMouse
;
5435 #endif // __WXWINCE__
5437 bool wxWindowMSW::HandleMouseEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
5439 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
5440 // WM_MOUSELAST, so it's enough to subtract WM_MOUSEMOVE == WM_MOUSEFIRST
5441 // from the message id and take the value in the table to get wxWin event
5443 static const wxEventType eventsMouse
[] =
5454 wxEVT_MIDDLE_DCLICK
,
5455 0, // this one is for wxEVT_MOTION which is not used here
5464 #ifdef wxHAS_XBUTTON
5465 // the same messages are used for both auxillary mouse buttons so we need
5466 // to adjust the index manually
5469 case WM_XBUTTONDOWN
:
5471 case WM_XBUTTONDBLCLK
:
5472 if ( flags
& MK_XBUTTON2
)
5473 msg
+= wxEVT_AUX2_DOWN
- wxEVT_AUX1_DOWN
;
5475 #endif // wxHAS_XBUTTON
5477 wxMouseEvent
event(eventsMouse
[msg
- WM_MOUSEMOVE
]);
5478 InitMouseEvent(event
, x
, y
, flags
);
5480 return HandleWindowEvent(event
);
5483 bool wxWindowMSW::HandleMouseMove(int x
, int y
, WXUINT flags
)
5485 if ( !m_mouseInWindow
)
5487 // it would be wrong to assume that just because we get a mouse move
5488 // event that the mouse is inside the window: although this is usually
5489 // true, it is not if we had captured the mouse, so we need to check
5490 // the mouse coordinates here
5491 if ( !HasCapture() || IsMouseInWindow() )
5493 // Generate an ENTER event
5494 m_mouseInWindow
= true;
5496 #ifdef HAVE_TRACKMOUSEEVENT
5497 typedef BOOL (WINAPI
*_TrackMouseEvent_t
)(LPTRACKMOUSEEVENT
);
5499 static const _TrackMouseEvent_t
5500 s_pfn_TrackMouseEvent
= _TrackMouseEvent
;
5501 #else // !__WXWINCE__
5502 static _TrackMouseEvent_t s_pfn_TrackMouseEvent
;
5503 static bool s_initDone
= false;
5506 // see comment in wxApp::GetComCtl32Version() explaining the
5507 // use of wxLoadedDLL
5508 wxLoadedDLL
dllComCtl32(wxT("comctl32.dll"));
5509 if ( dllComCtl32
.IsLoaded() )
5511 s_pfn_TrackMouseEvent
= (_TrackMouseEvent_t
)
5512 dllComCtl32
.RawGetSymbol(wxT("_TrackMouseEvent"));
5518 if ( s_pfn_TrackMouseEvent
)
5519 #endif // __WXWINCE__/!__WXWINCE__
5521 WinStruct
<TRACKMOUSEEVENT
> trackinfo
;
5523 trackinfo
.dwFlags
= TME_LEAVE
;
5524 trackinfo
.hwndTrack
= GetHwnd();
5526 (*s_pfn_TrackMouseEvent
)(&trackinfo
);
5528 #endif // HAVE_TRACKMOUSEEVENT
5530 wxMouseEvent
event(wxEVT_ENTER_WINDOW
);
5531 InitMouseEvent(event
, x
, y
, flags
);
5533 (void)HandleWindowEvent(event
);
5536 #ifdef HAVE_TRACKMOUSEEVENT
5537 else // mouse not in window
5539 // Check if we need to send a LEAVE event
5540 // Windows doesn't send WM_MOUSELEAVE if the mouse has been captured so
5541 // send it here if we are using native mouse leave tracking
5542 if ( HasCapture() && !IsMouseInWindow() )
5544 GenerateMouseLeave();
5547 #endif // HAVE_TRACKMOUSEEVENT
5549 #if wxUSE_MOUSEEVENT_HACK
5550 // Windows often generates mouse events even if mouse position hasn't
5551 // changed (http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/66576)
5553 // Filter this out as it can result in unexpected behaviour compared to
5555 if ( gs_lastMouseEvent
.type
== wxEVT_RIGHT_DOWN
||
5556 gs_lastMouseEvent
.type
== wxEVT_LEFT_DOWN
||
5557 gs_lastMouseEvent
.type
== wxEVT_MIDDLE_DOWN
||
5558 gs_lastMouseEvent
.type
== wxEVT_MOTION
)
5560 if ( ClientToScreen(wxPoint(x
, y
)) == gs_lastMouseEvent
.pos
)
5562 gs_lastMouseEvent
.type
= wxEVT_MOTION
;
5567 #endif // wxUSE_MOUSEEVENT_HACK
5569 return HandleMouseEvent(WM_MOUSEMOVE
, x
, y
, flags
);
5573 bool wxWindowMSW::HandleMouseWheel(WXWPARAM wParam
, WXLPARAM lParam
)
5575 #if wxUSE_MOUSEWHEEL
5576 // notice that WM_MOUSEWHEEL position is in screen coords (as it's
5577 // forwarded up to the parent by DefWindowProc()) and not in the client
5578 // ones as all the other messages, translate them to the client coords for
5581 pt
= ScreenToClient(wxPoint(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
)));
5582 wxMouseEvent
event(wxEVT_MOUSEWHEEL
);
5583 InitMouseEvent(event
, pt
.x
, pt
.y
, LOWORD(wParam
));
5584 event
.m_wheelRotation
= (short)HIWORD(wParam
);
5585 event
.m_wheelDelta
= WHEEL_DELTA
;
5587 static int s_linesPerRotation
= -1;
5588 if ( s_linesPerRotation
== -1 )
5590 if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES
, 0,
5591 &s_linesPerRotation
, 0))
5593 // this is not supposed to happen
5594 wxLogLastError(wxT("SystemParametersInfo(GETWHEELSCROLLLINES)"));
5596 // the default is 3, so use it if SystemParametersInfo() failed
5597 s_linesPerRotation
= 3;
5601 event
.m_linesPerAction
= s_linesPerRotation
;
5602 return HandleWindowEvent(event
);
5604 #else // !wxUSE_MOUSEWHEEL
5605 wxUnusedVar(wParam
);
5606 wxUnusedVar(lParam
);
5609 #endif // wxUSE_MOUSEWHEEL/!wxUSE_MOUSEWHEEL
5612 void wxWindowMSW::GenerateMouseLeave()
5614 m_mouseInWindow
= false;
5617 if ( wxIsShiftDown() )
5619 if ( wxIsCtrlDown() )
5620 state
|= MK_CONTROL
;
5622 // Only the high-order bit should be tested
5623 if ( GetKeyState( VK_LBUTTON
) & (1<<15) )
5624 state
|= MK_LBUTTON
;
5625 if ( GetKeyState( VK_MBUTTON
) & (1<<15) )
5626 state
|= MK_MBUTTON
;
5627 if ( GetKeyState( VK_RBUTTON
) & (1<<15) )
5628 state
|= MK_RBUTTON
;
5632 if ( !::GetCursorPosWinCE(&pt
) )
5634 if ( !::GetCursorPos(&pt
) )
5637 wxLogLastError(wxT("GetCursorPos"));
5640 // we need to have client coordinates here for symmetry with
5641 // wxEVT_ENTER_WINDOW
5642 RECT rect
= wxGetWindowRect(GetHwnd());
5646 wxMouseEvent
event(wxEVT_LEAVE_WINDOW
);
5647 InitMouseEvent(event
, pt
.x
, pt
.y
, state
);
5649 (void)HandleWindowEvent(event
);
5652 // ---------------------------------------------------------------------------
5653 // keyboard handling
5654 // ---------------------------------------------------------------------------
5659 // Implementation of InitAnyKeyEvent() which can also be used when there is no
5660 // associated window: this can happen for the wxEVT_CHAR_HOOK events created by
5661 // the global keyboard hook (e.g. the event might have happened in a non-wx
5664 MSWInitAnyKeyEvent(wxKeyEvent
& event
,
5667 const wxWindowBase
*win
/* may be NULL */)
5671 event
.SetId(win
->GetId());
5672 event
.SetEventObject(const_cast<wxWindowBase
*>(win
));
5674 else // No associated window.
5676 // Use wxID_ANY for compatibility with the old code even if wxID_NONE
5677 // would arguably make more sense.
5678 event
.SetId(wxID_ANY
);
5681 event
.m_shiftDown
= wxIsShiftDown();
5682 event
.m_controlDown
= wxIsCtrlDown();
5683 event
.m_altDown
= (HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
;
5685 event
.m_rawCode
= (wxUint32
) wParam
;
5686 event
.m_rawFlags
= (wxUint32
) lParam
;
5688 event
.SetTimestamp(::GetMessageTime());
5691 // Event coordinates must be in window client coordinates system which
5692 // doesn't make sense if there is no window.
5694 // We could use screen coordinates for such events but this would make the
5695 // logic of the event handlers more complicated: you'd need to test for the
5696 // event object and interpret the coordinates differently according to
5697 // whether it's NULL or not so unless somebody really asks for this let's
5698 // just avoid the issue.
5701 const wxPoint mousePos
= win
->ScreenToClient(wxGetMousePosition());
5702 event
.m_x
= mousePos
.x
;
5703 event
.m_y
= mousePos
.y
;
5707 } // anonymous namespace
5710 wxWindowMSW::InitAnyKeyEvent(wxKeyEvent
& event
,
5712 WXLPARAM lParam
) const
5714 MSWInitAnyKeyEvent(event
, wParam
, lParam
, this);
5718 wxWindowMSW::CreateKeyEvent(wxEventType evType
,
5720 WXLPARAM lParam
) const
5722 // Catch any attempts to use this with WM_CHAR, it wouldn't work because
5723 // wParam is supposed to be a virtual key and not a character here.
5724 wxASSERT_MSG( evType
!= wxEVT_CHAR
&& evType
!= wxEVT_CHAR_HOOK
,
5725 "CreateKeyEvent() can't be used for char events" );
5727 wxKeyEvent
event(evType
);
5728 InitAnyKeyEvent(event
, wParam
, lParam
);
5730 event
.m_keyCode
= wxMSWKeyboard::VKToWX
5736 #endif // wxUSE_UNICODE
5743 wxWindowMSW::CreateCharEvent(wxEventType evType
,
5745 WXLPARAM lParam
) const
5747 wxKeyEvent
event(evType
);
5748 InitAnyKeyEvent(event
, wParam
, lParam
);
5751 // TODO: wParam uses UTF-16 so this is incorrect for characters outside of
5752 // the BMP, we should use WM_UNICHAR to handle them.
5753 event
.m_uniChar
= wParam
;
5754 #endif // wxUSE_UNICODE
5756 // Set non-Unicode key code too for compatibility if possible.
5757 if ( wParam
< 0x80 )
5759 // It's an ASCII character, no need to translate it.
5760 event
.m_keyCode
= wParam
;
5764 // Check if this key can be represented (as a single character) in the
5766 const wchar_t wc
= wParam
;
5768 if ( wxConvLibc
.FromWChar(&ch
, 1, &wc
, 1) != wxCONV_FAILED
)
5770 // For compatibility continue to provide the key code in this field
5771 // even though using GetUnicodeKey() is recommended now.
5772 event
.m_keyCode
= static_cast<unsigned char>(ch
);
5774 //else: Key can't be represented in the current locale, leave m_keyCode
5775 // as WXK_NONE and use GetUnicodeKey() to access the character.
5778 // the alphanumeric keys produced by pressing AltGr+something on European
5779 // keyboards have both Ctrl and Alt modifiers which may confuse the user
5780 // code as, normally, keys with Ctrl and/or Alt don't result in anything
5781 // alphanumeric, so pretend that there are no modifiers at all (the
5782 // KEY_DOWN event would still have the correct modifiers if they're really
5784 if ( event
.m_controlDown
&& event
.m_altDown
&&
5785 (event
.m_keyCode
>= 32 && event
.m_keyCode
< 256) )
5787 event
.m_controlDown
=
5788 event
.m_altDown
= false;
5794 // isASCII is true only when we're called from WM_CHAR handler and not from
5796 bool wxWindowMSW::HandleChar(WXWPARAM wParam
, WXLPARAM lParam
)
5798 wxKeyEvent
event(CreateCharEvent(wxEVT_CHAR
, wParam
, lParam
));
5799 return HandleWindowEvent(event
);
5802 bool wxWindowMSW::HandleKeyDown(WXWPARAM wParam
, WXLPARAM lParam
)
5804 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_DOWN
, wParam
, lParam
));
5805 return HandleWindowEvent(event
);
5808 bool wxWindowMSW::HandleKeyUp(WXWPARAM wParam
, WXLPARAM lParam
)
5810 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_UP
, wParam
, lParam
));
5811 return HandleWindowEvent(event
);
5815 int wxWindowMSW::HandleMenuChar(int WXUNUSED_IN_WINCE(chAccel
),
5816 WXLPARAM
WXUNUSED_IN_WINCE(lParam
))
5818 // FIXME: implement GetMenuItemCount for WinCE, possibly
5819 // in terms of GetMenuItemInfo
5821 const HMENU hmenu
= (HMENU
)lParam
;
5825 mii
.cbSize
= sizeof(MENUITEMINFO
);
5827 // we could use MIIM_FTYPE here as we only need to know if the item is
5828 // ownerdrawn or not and not dwTypeData which MIIM_TYPE also returns, but
5829 // MIIM_FTYPE is not supported under Win95
5830 mii
.fMask
= MIIM_TYPE
| MIIM_DATA
;
5832 // find if we have this letter in any owner drawn item
5833 const int count
= ::GetMenuItemCount(hmenu
);
5834 for ( int i
= 0; i
< count
; i
++ )
5836 // previous loop iteration could modify it, reset it back before
5837 // calling GetMenuItemInfo() to prevent it from overflowing dwTypeData
5840 if ( ::GetMenuItemInfo(hmenu
, i
, TRUE
, &mii
) )
5842 if ( mii
.fType
== MFT_OWNERDRAW
)
5844 // dwItemData member of the MENUITEMINFO is a
5845 // pointer to the associated wxMenuItem -- see the
5846 // menu creation code
5847 wxMenuItem
*item
= (wxMenuItem
*)mii
.dwItemData
;
5849 const wxString
label(item
->GetItemLabel());
5850 const wxChar
*p
= wxStrchr(label
.wx_str(), wxT('&'));
5853 if ( *p
== wxT('&') )
5855 // this is not the accel char, find the real one
5856 p
= wxStrchr(p
+ 1, wxT('&'));
5858 else // got the accel char
5860 // FIXME-UNICODE: this comparison doesn't risk to work
5861 // for non ASCII accelerator characters I'm afraid, but
5863 if ( (wchar_t)wxToupper(*p
) == (wchar_t)chAccel
)
5869 // this one doesn't match
5876 else // failed to get the menu text?
5878 // it's not fatal, so don't show error, but still log it
5879 wxLogLastError(wxT("GetMenuItemInfo"));
5886 #endif // wxUSE_MENUS
5888 bool wxWindowMSW::HandleClipboardEvent(WXUINT nMsg
)
5890 const wxEventType type
= nMsg
== WM_CUT
? wxEVT_COMMAND_TEXT_CUT
5891 : nMsg
== WM_COPY
? wxEVT_COMMAND_TEXT_COPY
5892 : /* nMsg == WM_PASTE */ wxEVT_COMMAND_TEXT_PASTE
;
5893 wxClipboardTextEvent
evt(type
, GetId());
5895 evt
.SetEventObject(this);
5897 return HandleWindowEvent(evt
);
5900 // ---------------------------------------------------------------------------
5902 // ---------------------------------------------------------------------------
5904 bool wxWindowMSW::HandleJoystickEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
5908 if ( flags
& JOY_BUTTON1CHG
)
5909 change
= wxJOY_BUTTON1
;
5910 if ( flags
& JOY_BUTTON2CHG
)
5911 change
= wxJOY_BUTTON2
;
5912 if ( flags
& JOY_BUTTON3CHG
)
5913 change
= wxJOY_BUTTON3
;
5914 if ( flags
& JOY_BUTTON4CHG
)
5915 change
= wxJOY_BUTTON4
;
5918 if ( flags
& JOY_BUTTON1
)
5919 buttons
|= wxJOY_BUTTON1
;
5920 if ( flags
& JOY_BUTTON2
)
5921 buttons
|= wxJOY_BUTTON2
;
5922 if ( flags
& JOY_BUTTON3
)
5923 buttons
|= wxJOY_BUTTON3
;
5924 if ( flags
& JOY_BUTTON4
)
5925 buttons
|= wxJOY_BUTTON4
;
5927 // the event ids aren't consecutive so we can't use table based lookup
5929 wxEventType eventType
;
5934 eventType
= wxEVT_JOY_MOVE
;
5939 eventType
= wxEVT_JOY_MOVE
;
5944 eventType
= wxEVT_JOY_ZMOVE
;
5949 eventType
= wxEVT_JOY_ZMOVE
;
5952 case MM_JOY1BUTTONDOWN
:
5954 eventType
= wxEVT_JOY_BUTTON_DOWN
;
5957 case MM_JOY2BUTTONDOWN
:
5959 eventType
= wxEVT_JOY_BUTTON_DOWN
;
5962 case MM_JOY1BUTTONUP
:
5964 eventType
= wxEVT_JOY_BUTTON_UP
;
5967 case MM_JOY2BUTTONUP
:
5969 eventType
= wxEVT_JOY_BUTTON_UP
;
5973 wxFAIL_MSG(wxT("no such joystick event"));
5978 wxJoystickEvent
event(eventType
, buttons
, joystick
, change
);
5979 event
.SetPosition(wxPoint(x
, y
));
5980 event
.SetEventObject(this);
5982 return HandleWindowEvent(event
);
5992 // ---------------------------------------------------------------------------
5994 // ---------------------------------------------------------------------------
5996 bool wxWindowMSW::MSWOnScroll(int orientation
, WXWORD wParam
,
5997 WXWORD pos
, WXHWND control
)
5999 if ( control
&& control
!= m_hWnd
) // Prevent infinite recursion
6001 wxWindow
*child
= wxFindWinFromHandle(control
);
6003 return child
->MSWOnScroll(orientation
, wParam
, pos
, control
);
6006 wxScrollWinEvent event
;
6007 event
.SetPosition(pos
);
6008 event
.SetOrientation(orientation
);
6009 event
.SetEventObject(this);
6014 event
.SetEventType(wxEVT_SCROLLWIN_TOP
);
6018 event
.SetEventType(wxEVT_SCROLLWIN_BOTTOM
);
6022 event
.SetEventType(wxEVT_SCROLLWIN_LINEUP
);
6026 event
.SetEventType(wxEVT_SCROLLWIN_LINEDOWN
);
6030 event
.SetEventType(wxEVT_SCROLLWIN_PAGEUP
);
6034 event
.SetEventType(wxEVT_SCROLLWIN_PAGEDOWN
);
6037 case SB_THUMBPOSITION
:
6039 // under Win32, the scrollbar range and position are 32 bit integers,
6040 // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must
6041 // explicitly query the scrollbar for the correct position (this must
6042 // be done only for these two SB_ events as they are the only one
6043 // carrying the scrollbar position)
6045 WinStruct
<SCROLLINFO
> scrollInfo
;
6046 scrollInfo
.fMask
= SIF_TRACKPOS
;
6048 if ( !::GetScrollInfo(GetHwnd(),
6049 WXOrientToSB(orientation
),
6052 // Not necessarily an error, if there are no scrollbars yet.
6053 // wxLogLastError(wxT("GetScrollInfo"));
6056 event
.SetPosition(scrollInfo
.nTrackPos
);
6059 event
.SetEventType( wParam
== SB_THUMBPOSITION
6060 ? wxEVT_SCROLLWIN_THUMBRELEASE
6061 : wxEVT_SCROLLWIN_THUMBTRACK
);
6068 return HandleWindowEvent(event
);
6071 // ----------------------------------------------------------------------------
6072 // custom message handlers
6073 // ----------------------------------------------------------------------------
6076 wxWindowMSW::MSWRegisterMessageHandler(int msg
, MSWMessageHandler handler
)
6078 wxCHECK_MSG( gs_messageHandlers
.find(msg
) == gs_messageHandlers
.end(),
6079 false, wxT("registering handler for the same message twice") );
6081 gs_messageHandlers
[msg
] = handler
;
6086 wxWindowMSW::MSWUnregisterMessageHandler(int msg
, MSWMessageHandler handler
)
6088 const MSWMessageHandlers::iterator i
= gs_messageHandlers
.find(msg
);
6089 wxCHECK_RET( i
!= gs_messageHandlers
.end() && i
->second
== handler
,
6090 wxT("unregistering non-registered handler?") );
6092 gs_messageHandlers
.erase(i
);
6095 // ===========================================================================
6097 // ===========================================================================
6099 void wxGetCharSize(WXHWND wnd
, int *x
, int *y
, const wxFont
& the_font
)
6102 HDC dc
= ::GetDC((HWND
) wnd
);
6105 // the_font.UseResource();
6106 // the_font.RealizeResource();
6107 HFONT fnt
= (HFONT
)the_font
.GetResourceHandle(); // const_cast
6109 was
= (HFONT
) SelectObject(dc
,fnt
);
6111 GetTextMetrics(dc
, &tm
);
6114 SelectObject(dc
,was
);
6116 ReleaseDC((HWND
)wnd
, dc
);
6119 *x
= tm
.tmAveCharWidth
;
6121 *y
= tm
.tmHeight
+ tm
.tmExternalLeading
;
6123 // the_font.ReleaseResource();
6126 // ----------------------------------------------------------------------------
6128 // ----------------------------------------------------------------------------
6130 namespace wxMSWKeyboard
6136 // use the "extended" bit of lParam to distinguish extended keys from normal
6137 // keys as the same virtual key code is sent for both by Windows
6139 int ChooseNormalOrExtended(int lParam
, int keyNormal
, int keyExtended
)
6141 // except that if lParam is 0, it means we don't have real lParam from
6142 // WM_KEYDOWN but are just translating just a VK constant (e.g. done from
6143 // msw/treectrl.cpp when processing TVN_KEYDOWN) -- then assume this is a
6144 // non-numpad (hence extended) key as this is a more common case
6145 return !lParam
|| (HIWORD(lParam
) & KF_EXTENDED
) ? keyExtended
: keyNormal
;
6148 // this array contains the Windows virtual key codes which map one to one to
6149 // WXK_xxx constants and is used in wxMSWKeyboard::VKToWX/WXToVK() below
6151 // note that keys having a normal and numpad version (e.g. WXK_HOME and
6152 // WXK_NUMPAD_HOME) are not included in this table as the mapping is not 1-to-1
6153 const struct wxKeyMapping
6157 } gs_specialKeys
[] =
6159 { VK_CANCEL
, WXK_CANCEL
},
6160 { VK_BACK
, WXK_BACK
},
6161 { VK_TAB
, WXK_TAB
},
6162 { VK_CLEAR
, WXK_CLEAR
},
6163 { VK_SHIFT
, WXK_SHIFT
},
6164 { VK_CONTROL
, WXK_CONTROL
},
6165 { VK_MENU
, WXK_ALT
},
6166 { VK_PAUSE
, WXK_PAUSE
},
6167 { VK_CAPITAL
, WXK_CAPITAL
},
6168 { VK_SPACE
, WXK_SPACE
},
6169 { VK_ESCAPE
, WXK_ESCAPE
},
6170 { VK_SELECT
, WXK_SELECT
},
6171 { VK_PRINT
, WXK_PRINT
},
6172 { VK_EXECUTE
, WXK_EXECUTE
},
6173 { VK_SNAPSHOT
, WXK_SNAPSHOT
},
6174 { VK_HELP
, WXK_HELP
},
6176 { VK_NUMPAD0
, WXK_NUMPAD0
},
6177 { VK_NUMPAD1
, WXK_NUMPAD1
},
6178 { VK_NUMPAD2
, WXK_NUMPAD2
},
6179 { VK_NUMPAD3
, WXK_NUMPAD3
},
6180 { VK_NUMPAD4
, WXK_NUMPAD4
},
6181 { VK_NUMPAD5
, WXK_NUMPAD5
},
6182 { VK_NUMPAD6
, WXK_NUMPAD6
},
6183 { VK_NUMPAD7
, WXK_NUMPAD7
},
6184 { VK_NUMPAD8
, WXK_NUMPAD8
},
6185 { VK_NUMPAD9
, WXK_NUMPAD9
},
6186 { VK_MULTIPLY
, WXK_NUMPAD_MULTIPLY
},
6187 { VK_ADD
, WXK_NUMPAD_ADD
},
6188 { VK_SUBTRACT
, WXK_NUMPAD_SUBTRACT
},
6189 { VK_DECIMAL
, WXK_NUMPAD_DECIMAL
},
6190 { VK_DIVIDE
, WXK_NUMPAD_DIVIDE
},
6201 { VK_F10
, WXK_F10
},
6202 { VK_F11
, WXK_F11
},
6203 { VK_F12
, WXK_F12
},
6204 { VK_F13
, WXK_F13
},
6205 { VK_F14
, WXK_F14
},
6206 { VK_F15
, WXK_F15
},
6207 { VK_F16
, WXK_F16
},
6208 { VK_F17
, WXK_F17
},
6209 { VK_F18
, WXK_F18
},
6210 { VK_F19
, WXK_F19
},
6211 { VK_F20
, WXK_F20
},
6212 { VK_F21
, WXK_F21
},
6213 { VK_F22
, WXK_F22
},
6214 { VK_F23
, WXK_F23
},
6215 { VK_F24
, WXK_F24
},
6217 { VK_NUMLOCK
, WXK_NUMLOCK
},
6218 { VK_SCROLL
, WXK_SCROLL
},
6221 { VK_LWIN
, WXK_WINDOWS_LEFT
},
6222 { VK_RWIN
, WXK_WINDOWS_RIGHT
},
6223 { VK_APPS
, WXK_WINDOWS_MENU
},
6224 #endif // VK_APPS defined
6227 } // anonymous namespace
6229 int VKToWX(WXWORD vk
, WXLPARAM lParam
, wchar_t *uc
)
6233 // check the table first
6234 for ( size_t n
= 0; n
< WXSIZEOF(gs_specialKeys
); n
++ )
6236 if ( gs_specialKeys
[n
].vk
== vk
)
6238 wxk
= gs_specialKeys
[n
].wxk
;
6239 if ( wxk
< WXK_START
)
6241 // Unicode code for this key is the same as its ASCII code.
6250 // keys requiring special handling
6264 // MapVirtualKey() returns 0 if it fails to convert the virtual
6265 // key which nicely corresponds to our WXK_NONE.
6266 wxk
= ::MapVirtualKey(vk
, MAPVK_VK_TO_CHAR
);
6268 if ( HIWORD(wxk
) & 0x8000 )
6270 // It's a dead key and we don't return anything at all for them
6271 // as we simply don't have any way to indicate the difference
6272 // between e.g. a normal "'" and "'" as a dead key -- and
6273 // generating the same events for them just doesn't seem like a
6278 // In any case return this as a Unicode character value.
6282 // For compatibility with the old non-Unicode code we continue
6283 // returning key codes for Latin-1 characters directly
6284 // (normally it would really only make sense to do it for the
6285 // ASCII characters, not Latin-1 ones).
6288 // But for anything beyond this we can only return the key
6289 // value as a real Unicode character, not a wxKeyCode
6290 // because this enum values clash with Unicode characters
6291 // (e.g. WXK_LBUTTON also happens to be U+012C a.k.a.
6292 // "LATIN CAPITAL LETTER I WITH BREVE").
6297 // handle extended keys
6299 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_PAGEUP
, WXK_PAGEUP
);
6303 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_PAGEDOWN
, WXK_PAGEDOWN
);
6307 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_END
, WXK_END
);
6311 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_HOME
, WXK_HOME
);
6315 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_LEFT
, WXK_LEFT
);
6319 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_UP
, WXK_UP
);
6323 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_RIGHT
, WXK_RIGHT
);
6327 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_DOWN
, WXK_DOWN
);
6331 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_INSERT
, WXK_INSERT
);
6335 wxk
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_DELETE
, WXK_DELETE
);
6339 // don't use ChooseNormalOrExtended() here as the keys are reversed
6340 // here: numpad enter is the extended one
6341 wxk
= HIWORD(lParam
) & KF_EXTENDED
? WXK_NUMPAD_ENTER
: WXK_RETURN
;
6345 if ( (vk
>= '0' && vk
<= '9') || (vk
>= 'A' && vk
<= 'Z') )
6347 // A simple alphanumeric key and the values of them coincide in
6348 // Windows and wx for both ASCII and Unicode codes.
6351 else // Something we simply don't know about at all.
6363 WXWORD
WXToVK(int wxk
, bool *isExtended
)
6365 // check the table first
6366 for ( size_t n
= 0; n
< WXSIZEOF(gs_specialKeys
); n
++ )
6368 if ( gs_specialKeys
[n
].wxk
== wxk
)
6370 // All extended keys (i.e. non-numpad versions of the keys that
6371 // exist both in the numpad and outside of it) are dealt with
6374 *isExtended
= false;
6376 return gs_specialKeys
[n
].vk
;
6380 // and then check for special keys not included in the table
6381 bool extended
= false;
6387 case WXK_NUMPAD_PAGEUP
:
6393 case WXK_NUMPAD_PAGEDOWN
:
6399 case WXK_NUMPAD_END
:
6405 case WXK_NUMPAD_HOME
:
6411 case WXK_NUMPAD_LEFT
:
6423 case WXK_NUMPAD_RIGHT
:
6429 case WXK_NUMPAD_DOWN
:
6435 case WXK_NUMPAD_INSERT
:
6441 case WXK_NUMPAD_DELETE
:
6446 // no VkKeyScan() under CE unfortunately, we need to test how does
6447 // it handle OEM keys
6449 // check to see if its one of the OEM key codes.
6450 BYTE vks
= LOBYTE(VkKeyScan(wxk
));
6456 #endif // !__WXWINCE__
6463 *isExtended
= extended
;
6468 } // namespace wxMSWKeyboard
6470 // small helper for wxGetKeyState() and wxGetMouseState()
6471 static inline bool wxIsKeyDown(WXWORD vk
)
6473 // SM_SWAPBUTTON is not available under CE, so don't swap buttons there
6474 #ifdef SM_SWAPBUTTON
6475 if ( vk
== VK_LBUTTON
|| vk
== VK_RBUTTON
)
6477 if ( ::GetSystemMetrics(SM_SWAPBUTTON
) )
6479 if ( vk
== VK_LBUTTON
)
6481 else // vk == VK_RBUTTON
6485 #endif // SM_SWAPBUTTON
6487 // the low order bit indicates whether the key was pressed since the last
6488 // call and the high order one indicates whether it is down right now and
6489 // we only want that one
6490 return (GetAsyncKeyState(vk
) & (1<<15)) != 0;
6493 bool wxGetKeyState(wxKeyCode key
)
6495 // although this does work under Windows, it is not supported under other
6496 // platforms so don't allow it, you must use wxGetMouseState() instead
6497 wxASSERT_MSG( key
!= VK_LBUTTON
&&
6498 key
!= VK_RBUTTON
&&
6500 wxT("can't use wxGetKeyState() for mouse buttons") );
6502 const WXWORD vk
= wxMSWKeyboard::WXToVK(key
);
6504 // if the requested key is a LED key, return true if the led is pressed
6505 if ( key
== WXK_NUMLOCK
|| key
== WXK_CAPITAL
|| key
== WXK_SCROLL
)
6507 // low order bit means LED is highlighted and high order one means the
6508 // key is down; for compatibility with the other ports return true if
6509 // either one is set
6510 return GetKeyState(vk
) != 0;
6515 return wxIsKeyDown(vk
);
6520 wxMouseState
wxGetMouseState()
6524 GetCursorPos( &pt
);
6528 ms
.SetLeftDown(wxIsKeyDown(VK_LBUTTON
));
6529 ms
.SetMiddleDown(wxIsKeyDown(VK_MBUTTON
));
6530 ms
.SetRightDown(wxIsKeyDown(VK_RBUTTON
));
6531 #ifdef wxHAS_XBUTTON
6532 ms
.SetAux1Down(wxIsKeyDown(VK_XBUTTON1
));
6533 ms
.SetAux2Down(wxIsKeyDown(VK_XBUTTON2
));
6534 #endif // wxHAS_XBUTTON
6536 ms
.SetControlDown(wxIsCtrlDown ());
6537 ms
.SetShiftDown (wxIsShiftDown());
6538 ms
.SetAltDown (wxIsAltDown ());
6539 // ms.SetMetaDown();
6545 wxWindow
*wxGetActiveWindow()
6547 HWND hWnd
= GetActiveWindow();
6550 return wxFindWinFromHandle(hWnd
);
6555 extern wxWindow
*wxGetWindowFromHWND(WXHWND hWnd
)
6557 HWND hwnd
= (HWND
)hWnd
;
6559 // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set
6560 // by code in msw/radiobox.cpp), for all the others we just search up the
6562 wxWindow
*win
= NULL
;
6565 win
= wxFindWinFromHandle(hwnd
);
6568 #if wxUSE_RADIOBOX && !defined(__WXUNIVERSAL__)
6569 // native radiobuttons return DLGC_RADIOBUTTON here and for any
6570 // wxWindow class which overrides WM_GETDLGCODE processing to
6571 // do it as well, win would be already non NULL
6572 if ( ::SendMessage(hwnd
, WM_GETDLGCODE
, 0, 0) & DLGC_RADIOBUTTON
)
6574 win
= wxRadioBox::GetFromRadioButtonHWND(hwnd
);
6576 //else: it's a wxRadioButton, not a radiobutton from wxRadioBox
6577 #endif // wxUSE_RADIOBOX
6579 // spin control text buddy window should be mapped to spin ctrl
6580 // itself so try it too
6581 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
6584 win
= wxSpinCtrl::GetSpinForTextCtrl((WXHWND
)hwnd
);
6586 #endif // wxUSE_SPINCTRL
6590 while ( hwnd
&& !win
)
6592 // this is a really ugly hack needed to avoid mistakenly returning the
6593 // parent frame wxWindow for the find/replace modeless dialog HWND -
6594 // this, in turn, is needed to call IsDialogMessage() from
6595 // wxApp::ProcessMessage() as for this we must return NULL from here
6597 // FIXME: this is clearly not the best way to do it but I think we'll
6598 // need to change HWND <-> wxWindow code more heavily than I can
6599 // do it now to fix it
6600 #ifndef __WXMICROWIN__
6601 if ( ::GetWindow(hwnd
, GW_OWNER
) )
6603 // it's a dialog box, don't go upwards
6608 hwnd
= ::GetParent(hwnd
);
6609 win
= wxFindWinFromHandle(hwnd
);
6615 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
6617 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
6618 // in active frames and dialogs, regardless of where the focus is.
6619 static HHOOK wxTheKeyboardHook
= 0;
6622 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
)
6624 DWORD hiWord
= HIWORD(lParam
);
6625 if ( nCode
!= HC_NOREMOVE
&& ((hiWord
& KF_UP
) == 0) )
6628 int id
= wxMSWKeyboard::VKToWX(wParam
, lParam
, &uc
);
6630 // Don't intercept keyboard entry (notably Escape) if a modal window
6631 // (not managed by wx, e.g. IME one) is currently opened as more often
6632 // than not it needs all the keys for itself.
6634 // Also don't catch it if a window currently captures the mouse as
6635 // Escape is normally used to release the mouse capture and if you
6636 // really need to catch all the keys in the window that has mouse
6637 // capture it can be easily done in its own EVT_CHAR handler as it is
6638 // certain to have focus while it has the capture.
6639 if ( !gs_modalEntryWindowCount
&& !::GetCapture() )
6643 || static_cast<int>(uc
) != WXK_NONE
6644 #endif // wxUSE_UNICODE
6647 const wxWindow
* const win
= wxGetActiveWindow();
6649 wxKeyEvent
event(wxEVT_CHAR_HOOK
);
6650 MSWInitAnyKeyEvent(event
, wParam
, lParam
, win
);
6652 event
.m_keyCode
= id
;
6654 event
.m_uniChar
= uc
;
6655 #endif // wxUSE_UNICODE
6657 wxEvtHandler
* const handler
= win
? win
->GetEventHandler()
6660 if ( handler
&& handler
->ProcessEvent(event
) )
6669 return (int)CallNextHookEx(wxTheKeyboardHook
, nCode
, wParam
, lParam
);
6672 void wxSetKeyboardHook(bool doIt
)
6676 wxTheKeyboardHook
= ::SetWindowsHookEx
6679 (HOOKPROC
)wxKeyboardHook
,
6680 NULL
, // must be NULL for process hook
6681 ::GetCurrentThreadId()
6683 if ( !wxTheKeyboardHook
)
6685 wxLogLastError(wxT("SetWindowsHookEx(wxKeyboardHook)"));
6690 if ( wxTheKeyboardHook
)
6691 ::UnhookWindowsHookEx(wxTheKeyboardHook
);
6695 #endif // !__WXMICROWIN__
6697 #if wxDEBUG_LEVEL >= 2
6698 const wxChar
*wxGetMessageName(int message
)
6702 case 0x0000: return wxT("WM_NULL");
6703 case 0x0001: return wxT("WM_CREATE");
6704 case 0x0002: return wxT("WM_DESTROY");
6705 case 0x0003: return wxT("WM_MOVE");
6706 case 0x0005: return wxT("WM_SIZE");
6707 case 0x0006: return wxT("WM_ACTIVATE");
6708 case 0x0007: return wxT("WM_SETFOCUS");
6709 case 0x0008: return wxT("WM_KILLFOCUS");
6710 case 0x000A: return wxT("WM_ENABLE");
6711 case 0x000B: return wxT("WM_SETREDRAW");
6712 case 0x000C: return wxT("WM_SETTEXT");
6713 case 0x000D: return wxT("WM_GETTEXT");
6714 case 0x000E: return wxT("WM_GETTEXTLENGTH");
6715 case 0x000F: return wxT("WM_PAINT");
6716 case 0x0010: return wxT("WM_CLOSE");
6717 case 0x0011: return wxT("WM_QUERYENDSESSION");
6718 case 0x0012: return wxT("WM_QUIT");
6719 case 0x0013: return wxT("WM_QUERYOPEN");
6720 case 0x0014: return wxT("WM_ERASEBKGND");
6721 case 0x0015: return wxT("WM_SYSCOLORCHANGE");
6722 case 0x0016: return wxT("WM_ENDSESSION");
6723 case 0x0017: return wxT("WM_SYSTEMERROR");
6724 case 0x0018: return wxT("WM_SHOWWINDOW");
6725 case 0x0019: return wxT("WM_CTLCOLOR");
6726 case 0x001A: return wxT("WM_WININICHANGE");
6727 case 0x001B: return wxT("WM_DEVMODECHANGE");
6728 case 0x001C: return wxT("WM_ACTIVATEAPP");
6729 case 0x001D: return wxT("WM_FONTCHANGE");
6730 case 0x001E: return wxT("WM_TIMECHANGE");
6731 case 0x001F: return wxT("WM_CANCELMODE");
6732 case 0x0020: return wxT("WM_SETCURSOR");
6733 case 0x0021: return wxT("WM_MOUSEACTIVATE");
6734 case 0x0022: return wxT("WM_CHILDACTIVATE");
6735 case 0x0023: return wxT("WM_QUEUESYNC");
6736 case 0x0024: return wxT("WM_GETMINMAXINFO");
6737 case 0x0026: return wxT("WM_PAINTICON");
6738 case 0x0027: return wxT("WM_ICONERASEBKGND");
6739 case 0x0028: return wxT("WM_NEXTDLGCTL");
6740 case 0x002A: return wxT("WM_SPOOLERSTATUS");
6741 case 0x002B: return wxT("WM_DRAWITEM");
6742 case 0x002C: return wxT("WM_MEASUREITEM");
6743 case 0x002D: return wxT("WM_DELETEITEM");
6744 case 0x002E: return wxT("WM_VKEYTOITEM");
6745 case 0x002F: return wxT("WM_CHARTOITEM");
6746 case 0x0030: return wxT("WM_SETFONT");
6747 case 0x0031: return wxT("WM_GETFONT");
6748 case 0x0037: return wxT("WM_QUERYDRAGICON");
6749 case 0x0039: return wxT("WM_COMPAREITEM");
6750 case 0x0041: return wxT("WM_COMPACTING");
6751 case 0x0044: return wxT("WM_COMMNOTIFY");
6752 case 0x0046: return wxT("WM_WINDOWPOSCHANGING");
6753 case 0x0047: return wxT("WM_WINDOWPOSCHANGED");
6754 case 0x0048: return wxT("WM_POWER");
6756 case 0x004A: return wxT("WM_COPYDATA");
6757 case 0x004B: return wxT("WM_CANCELJOURNAL");
6758 case 0x004E: return wxT("WM_NOTIFY");
6759 case 0x0050: return wxT("WM_INPUTLANGCHANGEREQUEST");
6760 case 0x0051: return wxT("WM_INPUTLANGCHANGE");
6761 case 0x0052: return wxT("WM_TCARD");
6762 case 0x0053: return wxT("WM_HELP");
6763 case 0x0054: return wxT("WM_USERCHANGED");
6764 case 0x0055: return wxT("WM_NOTIFYFORMAT");
6765 case 0x007B: return wxT("WM_CONTEXTMENU");
6766 case 0x007C: return wxT("WM_STYLECHANGING");
6767 case 0x007D: return wxT("WM_STYLECHANGED");
6768 case 0x007E: return wxT("WM_DISPLAYCHANGE");
6769 case 0x007F: return wxT("WM_GETICON");
6770 case 0x0080: return wxT("WM_SETICON");
6772 case 0x0081: return wxT("WM_NCCREATE");
6773 case 0x0082: return wxT("WM_NCDESTROY");
6774 case 0x0083: return wxT("WM_NCCALCSIZE");
6775 case 0x0084: return wxT("WM_NCHITTEST");
6776 case 0x0085: return wxT("WM_NCPAINT");
6777 case 0x0086: return wxT("WM_NCACTIVATE");
6778 case 0x0087: return wxT("WM_GETDLGCODE");
6779 case 0x00A0: return wxT("WM_NCMOUSEMOVE");
6780 case 0x00A1: return wxT("WM_NCLBUTTONDOWN");
6781 case 0x00A2: return wxT("WM_NCLBUTTONUP");
6782 case 0x00A3: return wxT("WM_NCLBUTTONDBLCLK");
6783 case 0x00A4: return wxT("WM_NCRBUTTONDOWN");
6784 case 0x00A5: return wxT("WM_NCRBUTTONUP");
6785 case 0x00A6: return wxT("WM_NCRBUTTONDBLCLK");
6786 case 0x00A7: return wxT("WM_NCMBUTTONDOWN");
6787 case 0x00A8: return wxT("WM_NCMBUTTONUP");
6788 case 0x00A9: return wxT("WM_NCMBUTTONDBLCLK");
6790 case 0x00B0: return wxT("EM_GETSEL");
6791 case 0x00B1: return wxT("EM_SETSEL");
6792 case 0x00B2: return wxT("EM_GETRECT");
6793 case 0x00B3: return wxT("EM_SETRECT");
6794 case 0x00B4: return wxT("EM_SETRECTNP");
6795 case 0x00B5: return wxT("EM_SCROLL");
6796 case 0x00B6: return wxT("EM_LINESCROLL");
6797 case 0x00B7: return wxT("EM_SCROLLCARET");
6798 case 0x00B8: return wxT("EM_GETMODIFY");
6799 case 0x00B9: return wxT("EM_SETMODIFY");
6800 case 0x00BA: return wxT("EM_GETLINECOUNT");
6801 case 0x00BB: return wxT("EM_LINEINDEX");
6802 case 0x00BC: return wxT("EM_SETHANDLE");
6803 case 0x00BD: return wxT("EM_GETHANDLE");
6804 case 0x00BE: return wxT("EM_GETTHUMB");
6805 case 0x00C1: return wxT("EM_LINELENGTH");
6806 case 0x00C2: return wxT("EM_REPLACESEL");
6807 case 0x00C4: return wxT("EM_GETLINE");
6808 case 0x00C5: return wxT("EM_LIMITTEXT/EM_SETLIMITTEXT"); /* ;win40 Name change */
6809 case 0x00C6: return wxT("EM_CANUNDO");
6810 case 0x00C7: return wxT("EM_UNDO");
6811 case 0x00C8: return wxT("EM_FMTLINES");
6812 case 0x00C9: return wxT("EM_LINEFROMCHAR");
6813 case 0x00CB: return wxT("EM_SETTABSTOPS");
6814 case 0x00CC: return wxT("EM_SETPASSWORDCHAR");
6815 case 0x00CD: return wxT("EM_EMPTYUNDOBUFFER");
6816 case 0x00CE: return wxT("EM_GETFIRSTVISIBLELINE");
6817 case 0x00CF: return wxT("EM_SETREADONLY");
6818 case 0x00D0: return wxT("EM_SETWORDBREAKPROC");
6819 case 0x00D1: return wxT("EM_GETWORDBREAKPROC");
6820 case 0x00D2: return wxT("EM_GETPASSWORDCHAR");
6821 case 0x00D3: return wxT("EM_SETMARGINS");
6822 case 0x00D4: return wxT("EM_GETMARGINS");
6823 case 0x00D5: return wxT("EM_GETLIMITTEXT");
6824 case 0x00D6: return wxT("EM_POSFROMCHAR");
6825 case 0x00D7: return wxT("EM_CHARFROMPOS");
6826 case 0x00D8: return wxT("EM_SETIMESTATUS");
6827 case 0x00D9: return wxT("EM_GETIMESTATUS");
6829 case 0x0100: return wxT("WM_KEYDOWN");
6830 case 0x0101: return wxT("WM_KEYUP");
6831 case 0x0102: return wxT("WM_CHAR");
6832 case 0x0103: return wxT("WM_DEADCHAR");
6833 case 0x0104: return wxT("WM_SYSKEYDOWN");
6834 case 0x0105: return wxT("WM_SYSKEYUP");
6835 case 0x0106: return wxT("WM_SYSCHAR");
6836 case 0x0107: return wxT("WM_SYSDEADCHAR");
6837 case 0x0108: return wxT("WM_KEYLAST");
6839 case 0x010D: return wxT("WM_IME_STARTCOMPOSITION");
6840 case 0x010E: return wxT("WM_IME_ENDCOMPOSITION");
6841 case 0x010F: return wxT("WM_IME_COMPOSITION");
6843 case 0x0110: return wxT("WM_INITDIALOG");
6844 case 0x0111: return wxT("WM_COMMAND");
6845 case 0x0112: return wxT("WM_SYSCOMMAND");
6846 case 0x0113: return wxT("WM_TIMER");
6847 case 0x0114: return wxT("WM_HSCROLL");
6848 case 0x0115: return wxT("WM_VSCROLL");
6849 case 0x0116: return wxT("WM_INITMENU");
6850 case 0x0117: return wxT("WM_INITMENUPOPUP");
6851 case 0x011F: return wxT("WM_MENUSELECT");
6852 case 0x0120: return wxT("WM_MENUCHAR");
6853 case 0x0121: return wxT("WM_ENTERIDLE");
6855 case 0x0127: return wxT("WM_CHANGEUISTATE");
6856 case 0x0128: return wxT("WM_UPDATEUISTATE");
6857 case 0x0129: return wxT("WM_QUERYUISTATE");
6859 case 0x0132: return wxT("WM_CTLCOLORMSGBOX");
6860 case 0x0133: return wxT("WM_CTLCOLOREDIT");
6861 case 0x0134: return wxT("WM_CTLCOLORLISTBOX");
6862 case 0x0135: return wxT("WM_CTLCOLORBTN");
6863 case 0x0136: return wxT("WM_CTLCOLORDLG");
6864 case 0x0137: return wxT("WM_CTLCOLORSCROLLBAR");
6865 case 0x0138: return wxT("WM_CTLCOLORSTATIC");
6866 case 0x01E1: return wxT("MN_GETHMENU");
6868 case 0x0200: return wxT("WM_MOUSEMOVE");
6869 case 0x0201: return wxT("WM_LBUTTONDOWN");
6870 case 0x0202: return wxT("WM_LBUTTONUP");
6871 case 0x0203: return wxT("WM_LBUTTONDBLCLK");
6872 case 0x0204: return wxT("WM_RBUTTONDOWN");
6873 case 0x0205: return wxT("WM_RBUTTONUP");
6874 case 0x0206: return wxT("WM_RBUTTONDBLCLK");
6875 case 0x0207: return wxT("WM_MBUTTONDOWN");
6876 case 0x0208: return wxT("WM_MBUTTONUP");
6877 case 0x0209: return wxT("WM_MBUTTONDBLCLK");
6878 case 0x020A: return wxT("WM_MOUSEWHEEL");
6879 case 0x020B: return wxT("WM_XBUTTONDOWN");
6880 case 0x020C: return wxT("WM_XBUTTONUP");
6881 case 0x020D: return wxT("WM_XBUTTONDBLCLK");
6882 case 0x0210: return wxT("WM_PARENTNOTIFY");
6883 case 0x0211: return wxT("WM_ENTERMENULOOP");
6884 case 0x0212: return wxT("WM_EXITMENULOOP");
6886 case 0x0213: return wxT("WM_NEXTMENU");
6887 case 0x0214: return wxT("WM_SIZING");
6888 case 0x0215: return wxT("WM_CAPTURECHANGED");
6889 case 0x0216: return wxT("WM_MOVING");
6890 case 0x0218: return wxT("WM_POWERBROADCAST");
6891 case 0x0219: return wxT("WM_DEVICECHANGE");
6893 case 0x0220: return wxT("WM_MDICREATE");
6894 case 0x0221: return wxT("WM_MDIDESTROY");
6895 case 0x0222: return wxT("WM_MDIACTIVATE");
6896 case 0x0223: return wxT("WM_MDIRESTORE");
6897 case 0x0224: return wxT("WM_MDINEXT");
6898 case 0x0225: return wxT("WM_MDIMAXIMIZE");
6899 case 0x0226: return wxT("WM_MDITILE");
6900 case 0x0227: return wxT("WM_MDICASCADE");
6901 case 0x0228: return wxT("WM_MDIICONARRANGE");
6902 case 0x0229: return wxT("WM_MDIGETACTIVE");
6903 case 0x0230: return wxT("WM_MDISETMENU");
6904 case 0x0233: return wxT("WM_DROPFILES");
6906 case 0x0281: return wxT("WM_IME_SETCONTEXT");
6907 case 0x0282: return wxT("WM_IME_NOTIFY");
6908 case 0x0283: return wxT("WM_IME_CONTROL");
6909 case 0x0284: return wxT("WM_IME_COMPOSITIONFULL");
6910 case 0x0285: return wxT("WM_IME_SELECT");
6911 case 0x0286: return wxT("WM_IME_CHAR");
6912 case 0x0290: return wxT("WM_IME_KEYDOWN");
6913 case 0x0291: return wxT("WM_IME_KEYUP");
6915 case 0x02A0: return wxT("WM_NCMOUSEHOVER");
6916 case 0x02A1: return wxT("WM_MOUSEHOVER");
6917 case 0x02A2: return wxT("WM_NCMOUSELEAVE");
6918 case 0x02A3: return wxT("WM_MOUSELEAVE");
6920 case 0x0300: return wxT("WM_CUT");
6921 case 0x0301: return wxT("WM_COPY");
6922 case 0x0302: return wxT("WM_PASTE");
6923 case 0x0303: return wxT("WM_CLEAR");
6924 case 0x0304: return wxT("WM_UNDO");
6925 case 0x0305: return wxT("WM_RENDERFORMAT");
6926 case 0x0306: return wxT("WM_RENDERALLFORMATS");
6927 case 0x0307: return wxT("WM_DESTROYCLIPBOARD");
6928 case 0x0308: return wxT("WM_DRAWCLIPBOARD");
6929 case 0x0309: return wxT("WM_PAINTCLIPBOARD");
6930 case 0x030A: return wxT("WM_VSCROLLCLIPBOARD");
6931 case 0x030B: return wxT("WM_SIZECLIPBOARD");
6932 case 0x030C: return wxT("WM_ASKCBFORMATNAME");
6933 case 0x030D: return wxT("WM_CHANGECBCHAIN");
6934 case 0x030E: return wxT("WM_HSCROLLCLIPBOARD");
6935 case 0x030F: return wxT("WM_QUERYNEWPALETTE");
6936 case 0x0310: return wxT("WM_PALETTEISCHANGING");
6937 case 0x0311: return wxT("WM_PALETTECHANGED");
6938 case 0x0312: return wxT("WM_HOTKEY");
6940 case 0x0317: return wxT("WM_PRINT");
6941 case 0x0318: return wxT("WM_PRINTCLIENT");
6943 // common controls messages - although they're not strictly speaking
6944 // standard, it's nice to decode them nevertheless
6947 case 0x1000 + 0: return wxT("LVM_GETBKCOLOR");
6948 case 0x1000 + 1: return wxT("LVM_SETBKCOLOR");
6949 case 0x1000 + 2: return wxT("LVM_GETIMAGELIST");
6950 case 0x1000 + 3: return wxT("LVM_SETIMAGELIST");
6951 case 0x1000 + 4: return wxT("LVM_GETITEMCOUNT");
6952 case 0x1000 + 5: return wxT("LVM_GETITEMA");
6953 case 0x1000 + 75: return wxT("LVM_GETITEMW");
6954 case 0x1000 + 6: return wxT("LVM_SETITEMA");
6955 case 0x1000 + 76: return wxT("LVM_SETITEMW");
6956 case 0x1000 + 7: return wxT("LVM_INSERTITEMA");
6957 case 0x1000 + 77: return wxT("LVM_INSERTITEMW");
6958 case 0x1000 + 8: return wxT("LVM_DELETEITEM");
6959 case 0x1000 + 9: return wxT("LVM_DELETEALLITEMS");
6960 case 0x1000 + 10: return wxT("LVM_GETCALLBACKMASK");
6961 case 0x1000 + 11: return wxT("LVM_SETCALLBACKMASK");
6962 case 0x1000 + 12: return wxT("LVM_GETNEXTITEM");
6963 case 0x1000 + 13: return wxT("LVM_FINDITEMA");
6964 case 0x1000 + 83: return wxT("LVM_FINDITEMW");
6965 case 0x1000 + 14: return wxT("LVM_GETITEMRECT");
6966 case 0x1000 + 15: return wxT("LVM_SETITEMPOSITION");
6967 case 0x1000 + 16: return wxT("LVM_GETITEMPOSITION");
6968 case 0x1000 + 17: return wxT("LVM_GETSTRINGWIDTHA");
6969 case 0x1000 + 87: return wxT("LVM_GETSTRINGWIDTHW");
6970 case 0x1000 + 18: return wxT("LVM_HITTEST");
6971 case 0x1000 + 19: return wxT("LVM_ENSUREVISIBLE");
6972 case 0x1000 + 20: return wxT("LVM_SCROLL");
6973 case 0x1000 + 21: return wxT("LVM_REDRAWITEMS");
6974 case 0x1000 + 22: return wxT("LVM_ARRANGE");
6975 case 0x1000 + 23: return wxT("LVM_EDITLABELA");
6976 case 0x1000 + 118: return wxT("LVM_EDITLABELW");
6977 case 0x1000 + 24: return wxT("LVM_GETEDITCONTROL");
6978 case 0x1000 + 25: return wxT("LVM_GETCOLUMNA");
6979 case 0x1000 + 95: return wxT("LVM_GETCOLUMNW");
6980 case 0x1000 + 26: return wxT("LVM_SETCOLUMNA");
6981 case 0x1000 + 96: return wxT("LVM_SETCOLUMNW");
6982 case 0x1000 + 27: return wxT("LVM_INSERTCOLUMNA");
6983 case 0x1000 + 97: return wxT("LVM_INSERTCOLUMNW");
6984 case 0x1000 + 28: return wxT("LVM_DELETECOLUMN");
6985 case 0x1000 + 29: return wxT("LVM_GETCOLUMNWIDTH");
6986 case 0x1000 + 30: return wxT("LVM_SETCOLUMNWIDTH");
6987 case 0x1000 + 31: return wxT("LVM_GETHEADER");
6988 case 0x1000 + 33: return wxT("LVM_CREATEDRAGIMAGE");
6989 case 0x1000 + 34: return wxT("LVM_GETVIEWRECT");
6990 case 0x1000 + 35: return wxT("LVM_GETTEXTCOLOR");
6991 case 0x1000 + 36: return wxT("LVM_SETTEXTCOLOR");
6992 case 0x1000 + 37: return wxT("LVM_GETTEXTBKCOLOR");
6993 case 0x1000 + 38: return wxT("LVM_SETTEXTBKCOLOR");
6994 case 0x1000 + 39: return wxT("LVM_GETTOPINDEX");
6995 case 0x1000 + 40: return wxT("LVM_GETCOUNTPERPAGE");
6996 case 0x1000 + 41: return wxT("LVM_GETORIGIN");
6997 case 0x1000 + 42: return wxT("LVM_UPDATE");
6998 case 0x1000 + 43: return wxT("LVM_SETITEMSTATE");
6999 case 0x1000 + 44: return wxT("LVM_GETITEMSTATE");
7000 case 0x1000 + 45: return wxT("LVM_GETITEMTEXTA");
7001 case 0x1000 + 115: return wxT("LVM_GETITEMTEXTW");
7002 case 0x1000 + 46: return wxT("LVM_SETITEMTEXTA");
7003 case 0x1000 + 116: return wxT("LVM_SETITEMTEXTW");
7004 case 0x1000 + 47: return wxT("LVM_SETITEMCOUNT");
7005 case 0x1000 + 48: return wxT("LVM_SORTITEMS");
7006 case 0x1000 + 49: return wxT("LVM_SETITEMPOSITION32");
7007 case 0x1000 + 50: return wxT("LVM_GETSELECTEDCOUNT");
7008 case 0x1000 + 51: return wxT("LVM_GETITEMSPACING");
7009 case 0x1000 + 52: return wxT("LVM_GETISEARCHSTRINGA");
7010 case 0x1000 + 117: return wxT("LVM_GETISEARCHSTRINGW");
7011 case 0x1000 + 53: return wxT("LVM_SETICONSPACING");
7012 case 0x1000 + 54: return wxT("LVM_SETEXTENDEDLISTVIEWSTYLE");
7013 case 0x1000 + 55: return wxT("LVM_GETEXTENDEDLISTVIEWSTYLE");
7014 case 0x1000 + 56: return wxT("LVM_GETSUBITEMRECT");
7015 case 0x1000 + 57: return wxT("LVM_SUBITEMHITTEST");
7016 case 0x1000 + 58: return wxT("LVM_SETCOLUMNORDERARRAY");
7017 case 0x1000 + 59: return wxT("LVM_GETCOLUMNORDERARRAY");
7018 case 0x1000 + 60: return wxT("LVM_SETHOTITEM");
7019 case 0x1000 + 61: return wxT("LVM_GETHOTITEM");
7020 case 0x1000 + 62: return wxT("LVM_SETHOTCURSOR");
7021 case 0x1000 + 63: return wxT("LVM_GETHOTCURSOR");
7022 case 0x1000 + 64: return wxT("LVM_APPROXIMATEVIEWRECT");
7023 case 0x1000 + 65: return wxT("LVM_SETWORKAREA");
7026 case 0x1100 + 0: return wxT("TVM_INSERTITEMA");
7027 case 0x1100 + 50: return wxT("TVM_INSERTITEMW");
7028 case 0x1100 + 1: return wxT("TVM_DELETEITEM");
7029 case 0x1100 + 2: return wxT("TVM_EXPAND");
7030 case 0x1100 + 4: return wxT("TVM_GETITEMRECT");
7031 case 0x1100 + 5: return wxT("TVM_GETCOUNT");
7032 case 0x1100 + 6: return wxT("TVM_GETINDENT");
7033 case 0x1100 + 7: return wxT("TVM_SETINDENT");
7034 case 0x1100 + 8: return wxT("TVM_GETIMAGELIST");
7035 case 0x1100 + 9: return wxT("TVM_SETIMAGELIST");
7036 case 0x1100 + 10: return wxT("TVM_GETNEXTITEM");
7037 case 0x1100 + 11: return wxT("TVM_SELECTITEM");
7038 case 0x1100 + 12: return wxT("TVM_GETITEMA");
7039 case 0x1100 + 62: return wxT("TVM_GETITEMW");
7040 case 0x1100 + 13: return wxT("TVM_SETITEMA");
7041 case 0x1100 + 63: return wxT("TVM_SETITEMW");
7042 case 0x1100 + 14: return wxT("TVM_EDITLABELA");
7043 case 0x1100 + 65: return wxT("TVM_EDITLABELW");
7044 case 0x1100 + 15: return wxT("TVM_GETEDITCONTROL");
7045 case 0x1100 + 16: return wxT("TVM_GETVISIBLECOUNT");
7046 case 0x1100 + 17: return wxT("TVM_HITTEST");
7047 case 0x1100 + 18: return wxT("TVM_CREATEDRAGIMAGE");
7048 case 0x1100 + 19: return wxT("TVM_SORTCHILDREN");
7049 case 0x1100 + 20: return wxT("TVM_ENSUREVISIBLE");
7050 case 0x1100 + 21: return wxT("TVM_SORTCHILDRENCB");
7051 case 0x1100 + 22: return wxT("TVM_ENDEDITLABELNOW");
7052 case 0x1100 + 23: return wxT("TVM_GETISEARCHSTRINGA");
7053 case 0x1100 + 64: return wxT("TVM_GETISEARCHSTRINGW");
7054 case 0x1100 + 24: return wxT("TVM_SETTOOLTIPS");
7055 case 0x1100 + 25: return wxT("TVM_GETTOOLTIPS");
7058 case 0x1200 + 0: return wxT("HDM_GETITEMCOUNT");
7059 case 0x1200 + 1: return wxT("HDM_INSERTITEMA");
7060 case 0x1200 + 10: return wxT("HDM_INSERTITEMW");
7061 case 0x1200 + 2: return wxT("HDM_DELETEITEM");
7062 case 0x1200 + 3: return wxT("HDM_GETITEMA");
7063 case 0x1200 + 11: return wxT("HDM_GETITEMW");
7064 case 0x1200 + 4: return wxT("HDM_SETITEMA");
7065 case 0x1200 + 12: return wxT("HDM_SETITEMW");
7066 case 0x1200 + 5: return wxT("HDM_LAYOUT");
7067 case 0x1200 + 6: return wxT("HDM_HITTEST");
7068 case 0x1200 + 7: return wxT("HDM_GETITEMRECT");
7069 case 0x1200 + 8: return wxT("HDM_SETIMAGELIST");
7070 case 0x1200 + 9: return wxT("HDM_GETIMAGELIST");
7071 case 0x1200 + 15: return wxT("HDM_ORDERTOINDEX");
7072 case 0x1200 + 16: return wxT("HDM_CREATEDRAGIMAGE");
7073 case 0x1200 + 17: return wxT("HDM_GETORDERARRAY");
7074 case 0x1200 + 18: return wxT("HDM_SETORDERARRAY");
7075 case 0x1200 + 19: return wxT("HDM_SETHOTDIVIDER");
7078 case 0x1300 + 2: return wxT("TCM_GETIMAGELIST");
7079 case 0x1300 + 3: return wxT("TCM_SETIMAGELIST");
7080 case 0x1300 + 4: return wxT("TCM_GETITEMCOUNT");
7081 case 0x1300 + 5: return wxT("TCM_GETITEMA");
7082 case 0x1300 + 60: return wxT("TCM_GETITEMW");
7083 case 0x1300 + 6: return wxT("TCM_SETITEMA");
7084 case 0x1300 + 61: return wxT("TCM_SETITEMW");
7085 case 0x1300 + 7: return wxT("TCM_INSERTITEMA");
7086 case 0x1300 + 62: return wxT("TCM_INSERTITEMW");
7087 case 0x1300 + 8: return wxT("TCM_DELETEITEM");
7088 case 0x1300 + 9: return wxT("TCM_DELETEALLITEMS");
7089 case 0x1300 + 10: return wxT("TCM_GETITEMRECT");
7090 case 0x1300 + 11: return wxT("TCM_GETCURSEL");
7091 case 0x1300 + 12: return wxT("TCM_SETCURSEL");
7092 case 0x1300 + 13: return wxT("TCM_HITTEST");
7093 case 0x1300 + 14: return wxT("TCM_SETITEMEXTRA");
7094 case 0x1300 + 40: return wxT("TCM_ADJUSTRECT");
7095 case 0x1300 + 41: return wxT("TCM_SETITEMSIZE");
7096 case 0x1300 + 42: return wxT("TCM_REMOVEIMAGE");
7097 case 0x1300 + 43: return wxT("TCM_SETPADDING");
7098 case 0x1300 + 44: return wxT("TCM_GETROWCOUNT");
7099 case 0x1300 + 45: return wxT("TCM_GETTOOLTIPS");
7100 case 0x1300 + 46: return wxT("TCM_SETTOOLTIPS");
7101 case 0x1300 + 47: return wxT("TCM_GETCURFOCUS");
7102 case 0x1300 + 48: return wxT("TCM_SETCURFOCUS");
7103 case 0x1300 + 49: return wxT("TCM_SETMINTABWIDTH");
7104 case 0x1300 + 50: return wxT("TCM_DESELECTALL");
7107 case WM_USER
+1: return wxT("TB_ENABLEBUTTON");
7108 case WM_USER
+2: return wxT("TB_CHECKBUTTON");
7109 case WM_USER
+3: return wxT("TB_PRESSBUTTON");
7110 case WM_USER
+4: return wxT("TB_HIDEBUTTON");
7111 case WM_USER
+5: return wxT("TB_INDETERMINATE");
7112 case WM_USER
+9: return wxT("TB_ISBUTTONENABLED");
7113 case WM_USER
+10: return wxT("TB_ISBUTTONCHECKED");
7114 case WM_USER
+11: return wxT("TB_ISBUTTONPRESSED");
7115 case WM_USER
+12: return wxT("TB_ISBUTTONHIDDEN");
7116 case WM_USER
+13: return wxT("TB_ISBUTTONINDETERMINATE");
7117 case WM_USER
+17: return wxT("TB_SETSTATE");
7118 case WM_USER
+18: return wxT("TB_GETSTATE");
7119 case WM_USER
+19: return wxT("TB_ADDBITMAP");
7120 case WM_USER
+20: return wxT("TB_ADDBUTTONS");
7121 case WM_USER
+21: return wxT("TB_INSERTBUTTON");
7122 case WM_USER
+22: return wxT("TB_DELETEBUTTON");
7123 case WM_USER
+23: return wxT("TB_GETBUTTON");
7124 case WM_USER
+24: return wxT("TB_BUTTONCOUNT");
7125 case WM_USER
+25: return wxT("TB_COMMANDTOINDEX");
7126 case WM_USER
+26: return wxT("TB_SAVERESTOREA");
7127 case WM_USER
+76: return wxT("TB_SAVERESTOREW");
7128 case WM_USER
+27: return wxT("TB_CUSTOMIZE");
7129 case WM_USER
+28: return wxT("TB_ADDSTRINGA");
7130 case WM_USER
+77: return wxT("TB_ADDSTRINGW");
7131 case WM_USER
+29: return wxT("TB_GETITEMRECT");
7132 case WM_USER
+30: return wxT("TB_BUTTONSTRUCTSIZE");
7133 case WM_USER
+31: return wxT("TB_SETBUTTONSIZE");
7134 case WM_USER
+32: return wxT("TB_SETBITMAPSIZE");
7135 case WM_USER
+33: return wxT("TB_AUTOSIZE");
7136 case WM_USER
+35: return wxT("TB_GETTOOLTIPS");
7137 case WM_USER
+36: return wxT("TB_SETTOOLTIPS");
7138 case WM_USER
+37: return wxT("TB_SETPARENT");
7139 case WM_USER
+39: return wxT("TB_SETROWS");
7140 case WM_USER
+40: return wxT("TB_GETROWS");
7141 case WM_USER
+42: return wxT("TB_SETCMDID");
7142 case WM_USER
+43: return wxT("TB_CHANGEBITMAP");
7143 case WM_USER
+44: return wxT("TB_GETBITMAP");
7144 case WM_USER
+45: return wxT("TB_GETBUTTONTEXTA");
7145 case WM_USER
+75: return wxT("TB_GETBUTTONTEXTW");
7146 case WM_USER
+46: return wxT("TB_REPLACEBITMAP");
7147 case WM_USER
+47: return wxT("TB_SETINDENT");
7148 case WM_USER
+48: return wxT("TB_SETIMAGELIST");
7149 case WM_USER
+49: return wxT("TB_GETIMAGELIST");
7150 case WM_USER
+50: return wxT("TB_LOADIMAGES");
7151 case WM_USER
+51: return wxT("TB_GETRECT");
7152 case WM_USER
+52: return wxT("TB_SETHOTIMAGELIST");
7153 case WM_USER
+53: return wxT("TB_GETHOTIMAGELIST");
7154 case WM_USER
+54: return wxT("TB_SETDISABLEDIMAGELIST");
7155 case WM_USER
+55: return wxT("TB_GETDISABLEDIMAGELIST");
7156 case WM_USER
+56: return wxT("TB_SETSTYLE");
7157 case WM_USER
+57: return wxT("TB_GETSTYLE");
7158 case WM_USER
+58: return wxT("TB_GETBUTTONSIZE");
7159 case WM_USER
+59: return wxT("TB_SETBUTTONWIDTH");
7160 case WM_USER
+60: return wxT("TB_SETMAXTEXTROWS");
7161 case WM_USER
+61: return wxT("TB_GETTEXTROWS");
7162 case WM_USER
+41: return wxT("TB_GETBITMAPFLAGS");
7165 static wxString s_szBuf
;
7166 s_szBuf
.Printf(wxT("<unknown message = %d>"), message
);
7167 return s_szBuf
.c_str();
7170 #endif // wxDEBUG_LEVEL >= 2
7172 static TEXTMETRIC
wxGetTextMetrics(const wxWindowMSW
*win
)
7176 HWND hwnd
= GetHwndOf(win
);
7177 HDC hdc
= ::GetDC(hwnd
);
7179 #if !wxDIALOG_UNIT_COMPATIBILITY
7180 // and select the current font into it
7181 HFONT hfont
= GetHfontOf(win
->GetFont());
7184 hfont
= (HFONT
)::SelectObject(hdc
, hfont
);
7188 // finally retrieve the text metrics from it
7189 GetTextMetrics(hdc
, &tm
);
7191 #if !wxDIALOG_UNIT_COMPATIBILITY
7195 (void)::SelectObject(hdc
, hfont
);
7199 ::ReleaseDC(hwnd
, hdc
);
7204 // Find the wxWindow at the current mouse position, returning the mouse
7206 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
7208 pt
= wxGetMousePosition();
7209 return wxFindWindowAtPoint(pt
);
7212 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
7218 HWND hWnd
= ::WindowFromPoint(pt2
);
7220 return wxGetWindowFromHWND((WXHWND
)hWnd
);
7223 // Get the current mouse position.
7224 wxPoint
wxGetMousePosition()
7228 GetCursorPosWinCE(&pt
);
7230 GetCursorPos( & pt
);
7233 return wxPoint(pt
.x
, pt
.y
);
7238 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7239 static void WinCEUnregisterHotKey(int modifiers
, int id
)
7241 // Register hotkeys for the hardware buttons
7243 typedef BOOL (WINAPI
*UnregisterFunc1Proc
)(UINT
, UINT
);
7245 UnregisterFunc1Proc procUnregisterFunc
;
7246 hCoreDll
= LoadLibrary(wxT("coredll.dll"));
7249 procUnregisterFunc
= (UnregisterFunc1Proc
)GetProcAddress(hCoreDll
, wxT("UnregisterFunc1"));
7250 if (procUnregisterFunc
)
7251 procUnregisterFunc(modifiers
, id
);
7252 FreeLibrary(hCoreDll
);
7257 bool wxWindowMSW::RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
)
7259 UINT win_modifiers
=0;
7260 if ( modifiers
& wxMOD_ALT
)
7261 win_modifiers
|= MOD_ALT
;
7262 if ( modifiers
& wxMOD_SHIFT
)
7263 win_modifiers
|= MOD_SHIFT
;
7264 if ( modifiers
& wxMOD_CONTROL
)
7265 win_modifiers
|= MOD_CONTROL
;
7266 if ( modifiers
& wxMOD_WIN
)
7267 win_modifiers
|= MOD_WIN
;
7269 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7270 // Required for PPC and Smartphone hardware buttons
7271 if (keycode
>= WXK_SPECIAL1
&& keycode
<= WXK_SPECIAL20
)
7272 WinCEUnregisterHotKey(win_modifiers
, hotkeyId
);
7275 if ( !::RegisterHotKey(GetHwnd(), hotkeyId
, win_modifiers
, keycode
) )
7277 wxLogLastError(wxT("RegisterHotKey"));
7285 bool wxWindowMSW::UnregisterHotKey(int hotkeyId
)
7287 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7288 WinCEUnregisterHotKey(MOD_WIN
, hotkeyId
);
7291 if ( !::UnregisterHotKey(GetHwnd(), hotkeyId
) )
7293 wxLogLastError(wxT("UnregisterHotKey"));
7303 bool wxWindowMSW::HandleHotKey(WXWPARAM wParam
, WXLPARAM lParam
)
7305 int win_modifiers
= LOWORD(lParam
);
7307 wxKeyEvent
event(CreateKeyEvent(wxEVT_HOTKEY
, HIWORD(lParam
)));
7308 event
.SetId(wParam
);
7309 event
.m_shiftDown
= (win_modifiers
& MOD_SHIFT
) != 0;
7310 event
.m_controlDown
= (win_modifiers
& MOD_CONTROL
) != 0;
7311 event
.m_altDown
= (win_modifiers
& MOD_ALT
) != 0;
7312 event
.m_metaDown
= (win_modifiers
& MOD_WIN
) != 0;
7314 return HandleWindowEvent(event
);
7317 #endif // wxUSE_ACCEL
7319 #endif // wxUSE_HOTKEY
7321 // Not tested under WinCE
7324 // this class installs a message hook which really wakes up our idle processing
7325 // each time a WM_NULL is received (wxWakeUpIdle does this), even if we're
7326 // sitting inside a local modal loop (e.g. a menu is opened or scrollbar is
7327 // being dragged or even inside ::MessageBox()) and so don't control message
7328 // dispatching otherwise
7329 class wxIdleWakeUpModule
: public wxModule
7332 virtual bool OnInit()
7334 ms_hMsgHookProc
= ::SetWindowsHookEx
7337 &wxIdleWakeUpModule::MsgHookProc
,
7339 GetCurrentThreadId()
7342 if ( !ms_hMsgHookProc
)
7344 wxLogLastError(wxT("SetWindowsHookEx(WH_GETMESSAGE)"));
7352 virtual void OnExit()
7354 ::UnhookWindowsHookEx(wxIdleWakeUpModule::ms_hMsgHookProc
);
7357 static LRESULT CALLBACK
MsgHookProc(int nCode
, WPARAM wParam
, LPARAM lParam
)
7359 MSG
*msg
= (MSG
*)lParam
;
7361 // only process the message if it is actually going to be removed from
7362 // the message queue, this prevents that the same event from being
7363 // processed multiple times if now someone just called PeekMessage()
7364 if ( msg
->message
== WM_NULL
&& wParam
== PM_REMOVE
)
7366 wxTheApp
->ProcessPendingEvents();
7369 return CallNextHookEx(ms_hMsgHookProc
, nCode
, wParam
, lParam
);
7373 static HHOOK ms_hMsgHookProc
;
7375 DECLARE_DYNAMIC_CLASS(wxIdleWakeUpModule
)
7378 HHOOK
wxIdleWakeUpModule::ms_hMsgHookProc
= 0;
7380 IMPLEMENT_DYNAMIC_CLASS(wxIdleWakeUpModule
, wxModule
)
7382 #endif // __WXWINCE__
7387 static void wxAdjustZOrder(wxWindow
* parent
)
7389 if (parent
->IsKindOf(CLASSINFO(wxStaticBox
)))
7391 // Set the z-order correctly
7392 SetWindowPos((HWND
) parent
->GetHWND(), HWND_BOTTOM
, 0, 0, 0, 0, SWP_NOMOVE
|SWP_NOSIZE
);
7395 wxWindowList::compatibility_iterator current
= parent
->GetChildren().GetFirst();
7398 wxWindow
*childWin
= current
->GetData();
7399 wxAdjustZOrder(childWin
);
7400 current
= current
->GetNext();
7405 // We need to adjust the z-order of static boxes in WinCE, to
7406 // make 'contained' controls visible
7407 void wxWindowMSW::OnInitDialog( wxInitDialogEvent
& event
)
7410 wxAdjustZOrder(this);