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"
34 #include "wx/dcclient.h"
35 #include "wx/dcmemory.h"
38 #include "wx/layout.h"
39 #include "wx/dialog.h"
41 #include "wx/listbox.h"
42 #include "wx/button.h"
43 #include "wx/msgdlg.h"
44 #include "wx/settings.h"
45 #include "wx/statbox.h"
49 #include "wx/textctrl.h"
52 #if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__)
53 #include "wx/ownerdrw.h"
56 #include "wx/evtloop.h"
57 #include "wx/module.h"
59 #include "wx/sysopt.h"
61 #if wxUSE_DRAG_AND_DROP
65 #if wxUSE_ACCESSIBILITY
66 #include "wx/access.h"
70 #define WM_GETOBJECT 0x003D
73 #define OBJID_CLIENT 0xFFFFFFFC
77 #include "wx/menuitem.h"
79 #include "wx/msw/private.h"
82 #include "wx/tooltip.h"
90 #include "wx/spinctrl.h"
91 #endif // wxUSE_SPINCTRL
93 #include "wx/notebook.h"
94 #include "wx/listctrl.h"
98 #if (!defined(__GNUWIN32_OLD__) && !defined(__WXMICROWIN__) /* && !defined(__WXWINCE__) */ ) || defined(__CYGWIN10__)
100 #include <mmsystem.h>
104 #include <windowsx.h>
107 // include <commctrl.h> "properly"
108 #include "wx/msw/wrapcctl.h"
114 #include "wx/msw/missing.h"
116 #if defined(__WXWINCE__)
117 #include "wx/msw/wince/missing.h"
120 #include <shellapi.h>
122 #include <aygshell.h>
126 #if defined(TME_LEAVE) && defined(WM_MOUSELEAVE)
127 #define HAVE_TRACKMOUSEEVENT
128 #endif // everything needed for TrackMouseEvent()
130 // if this is set to 1, we use deferred window sizing to reduce flicker when
131 // resizing complicated window hierarchies, but this can in theory result in
132 // different behaviour than the old code so we keep the possibility to use it
133 // by setting this to 0 (in the future this should be removed completely)
135 #define USE_DEFERRED_SIZING 0
137 #define USE_DEFERRED_SIZING 1
140 // set this to 1 to filter out duplicate mouse events, e.g. mouse move events
141 // when mouse position didnd't change
143 #define wxUSE_MOUSEEVENT_HACK 0
145 #define wxUSE_MOUSEEVENT_HACK 1
148 // ---------------------------------------------------------------------------
150 // ---------------------------------------------------------------------------
152 #if wxUSE_MENUS_NATIVE
153 wxMenu
*wxCurrentPopupMenu
= NULL
;
154 #endif // wxUSE_MENUS_NATIVE
157 extern wxChar
*wxCanvasClassName
;
159 extern const wxChar
*wxCanvasClassName
;
162 // true if we had already created the std colour map, used by
163 // wxGetStdColourMap() and wxWindow::OnSysColourChanged() (FIXME-MT)
164 static bool gs_hasStdCmap
= false;
166 // last mouse event information we need to filter out the duplicates
167 #if wxUSE_MOUSEEVENT_HACK
168 static struct MouseEventInfoDummy
170 // mouse position (in screen coordinates)
173 // last mouse event type
176 #endif // wxUSE_MOUSEEVENT_HACK
178 // ---------------------------------------------------------------------------
180 // ---------------------------------------------------------------------------
182 // the window proc for all our windows
183 LRESULT WXDLLEXPORT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
,
184 WPARAM wParam
, LPARAM lParam
);
188 const wxChar
*wxGetMessageName(int message
);
191 void wxRemoveHandleAssociation(wxWindowMSW
*win
);
192 extern void wxAssociateWinWithHandle(HWND hWnd
, wxWindowMSW
*win
);
193 wxWindow
*wxFindWinFromHandle(WXHWND hWnd
);
195 // get the text metrics for the current font
196 static TEXTMETRIC
wxGetTextMetrics(const wxWindowMSW
*win
);
199 // find the window for the mouse event at the specified position
200 static wxWindowMSW
*FindWindowForMouseEvent(wxWindowMSW
*win
, int *x
, int *y
);
201 #endif // __WXWINCE__
203 // wrapper around BringWindowToTop() API
204 static inline void wxBringWindowToTop(HWND hwnd
)
206 #ifdef __WXMICROWIN__
207 // It seems that MicroWindows brings the _parent_ of the window to the top,
208 // which can be the wrong one.
210 // activate (set focus to) specified window
214 // raise top level parent to top of z order
215 if (!::SetWindowPos(hwnd
, HWND_TOP
, 0, 0, 0, 0, SWP_NOMOVE
| SWP_NOSIZE
))
217 wxLogLastError(_T("SetWindowPos"));
223 // ensure that all our parent windows have WS_EX_CONTROLPARENT style
224 static void EnsureParentHasControlParentStyle(wxWindow
*parent
)
227 If we have WS_EX_CONTROLPARENT flag we absolutely *must* set it for our
228 parent as well as otherwise several Win32 functions using
229 GetNextDlgTabItem() to iterate over all controls such as
230 IsDialogMessage() or DefDlgProc() would enter an infinite loop: indeed,
231 all of them iterate over all the controls starting from the currently
232 focused one and stop iterating when they get back to the focus but
233 unless all parents have WS_EX_CONTROLPARENT bit set, they would never
234 get back to the initial (focused) window: as we do have this style,
235 GetNextDlgTabItem() will leave this window and continue in its parent,
236 but if the parent doesn't have it, it wouldn't recurse inside it later
237 on and so wouldn't have a chance of getting back to this window either.
239 while ( parent
&& !parent
->IsTopLevel() )
241 LONG exStyle
= ::GetWindowLong(GetHwndOf(parent
), GWL_EXSTYLE
);
242 if ( !(exStyle
& WS_EX_CONTROLPARENT
) )
244 // force the parent to have this style
245 ::SetWindowLong(GetHwndOf(parent
), GWL_EXSTYLE
,
246 exStyle
| WS_EX_CONTROLPARENT
);
249 parent
= parent
->GetParent();
253 #endif // !__WXWINCE__
256 // On Windows CE, GetCursorPos can return an error, so use this function
258 bool GetCursorPosWinCE(POINT
* pt
)
260 if (!GetCursorPos(pt
))
262 DWORD pos
= GetMessagePos();
270 // ---------------------------------------------------------------------------
272 // ---------------------------------------------------------------------------
274 // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
276 #ifdef __WXUNIVERSAL__
277 IMPLEMENT_ABSTRACT_CLASS(wxWindowMSW
, wxWindowBase
)
279 #if wxUSE_EXTENDED_RTTI
281 // windows that are created from a parent window during its Create method, eg. spin controls in a calendar controls
282 // must never been streamed out separately otherwise chaos occurs. Right now easiest is to test for negative ids, as
283 // windows with negative ids never can be recreated anyway
285 bool wxWindowStreamingCallback( const wxObject
*object
, wxWriter
* , wxPersister
* , wxxVariantArray
& )
287 const wxWindow
* win
= dynamic_cast<const wxWindow
*>(object
) ;
288 if ( win
&& win
->GetId() < 0 )
293 IMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK(wxWindow
, wxWindowBase
,"wx/window.h", wxWindowStreamingCallback
)
295 // make wxWindowList known before the property is used
297 wxCOLLECTION_TYPE_INFO( wxWindow
* , wxWindowList
) ;
299 template<> void wxCollectionToVariantArray( wxWindowList
const &theList
, wxxVariantArray
&value
)
301 wxListCollectionToVariantArray
<wxWindowList::compatibility_iterator
>( theList
, value
) ;
304 WX_DEFINE_FLAGS( wxWindowStyle
)
306 wxBEGIN_FLAGS( wxWindowStyle
)
307 // new style border flags, we put them first to
308 // use them for streaming out
310 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
311 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
312 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
313 wxFLAGS_MEMBER(wxBORDER_RAISED
)
314 wxFLAGS_MEMBER(wxBORDER_STATIC
)
315 wxFLAGS_MEMBER(wxBORDER_NONE
)
317 // old style border flags
318 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
319 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
320 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
321 wxFLAGS_MEMBER(wxRAISED_BORDER
)
322 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
323 wxFLAGS_MEMBER(wxBORDER
)
325 // standard window styles
326 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
327 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
328 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
329 wxFLAGS_MEMBER(wxWANTS_CHARS
)
330 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
331 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
332 wxFLAGS_MEMBER(wxVSCROLL
)
333 wxFLAGS_MEMBER(wxHSCROLL
)
335 wxEND_FLAGS( wxWindowStyle
)
337 wxBEGIN_PROPERTIES_TABLE(wxWindow
)
338 wxEVENT_PROPERTY( Close
, wxEVT_CLOSE_WINDOW
, wxCloseEvent
)
339 wxEVENT_PROPERTY( Create
, wxEVT_CREATE
, wxWindowCreateEvent
)
340 wxEVENT_PROPERTY( Destroy
, wxEVT_DESTROY
, wxWindowDestroyEvent
)
341 // Always constructor Properties first
343 wxREADONLY_PROPERTY( Parent
,wxWindow
*, GetParent
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
344 wxPROPERTY( Id
,wxWindowID
, SetId
, GetId
, -1 /*wxID_ANY*/ , 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
345 wxPROPERTY( Position
,wxPoint
, SetPosition
, GetPosition
, wxDefaultPosition
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // pos
346 wxPROPERTY( Size
,wxSize
, SetSize
, GetSize
, wxDefaultSize
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // size
347 wxPROPERTY( WindowStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
349 // Then all relations of the object graph
351 wxREADONLY_PROPERTY_COLLECTION( Children
, wxWindowList
, wxWindowBase
* , GetWindowChildren
, wxPROP_OBJECT_GRAPH
/*flags*/ , wxT("Helpstring") , wxT("group"))
353 // and finally all other properties
355 wxPROPERTY( ExtraStyle
, long , SetExtraStyle
, GetExtraStyle
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // extstyle
356 wxPROPERTY( BackgroundColour
, wxColour
, SetBackgroundColour
, GetBackgroundColour
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // bg
357 wxPROPERTY( ForegroundColour
, wxColour
, SetForegroundColour
, GetForegroundColour
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // fg
358 wxPROPERTY( Enabled
, bool , Enable
, IsEnabled
, wxxVariant((bool)true) , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
359 wxPROPERTY( Shown
, bool , Show
, IsShown
, wxxVariant((bool)true) , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
361 // possible property candidates (not in xrc) or not valid in all subclasses
362 wxPROPERTY( Title
,wxString
, SetTitle
, GetTitle
, wxEmptyString
)
363 wxPROPERTY( Font
, wxFont
, SetFont
, GetWindowFont
, )
364 wxPROPERTY( Label
,wxString
, SetLabel
, GetLabel
, wxEmptyString
)
365 // MaxHeight, Width , MinHeight , Width
366 // TODO switch label to control and title to toplevels
368 wxPROPERTY( ThemeEnabled
, bool , SetThemeEnabled
, GetThemeEnabled
, )
369 //wxPROPERTY( Cursor , wxCursor , SetCursor , GetCursor , )
370 // wxPROPERTY( ToolTip , wxString , SetToolTip , GetToolTipText , )
371 wxPROPERTY( AutoLayout
, bool , SetAutoLayout
, GetAutoLayout
, )
376 wxEND_PROPERTIES_TABLE()
378 wxBEGIN_HANDLERS_TABLE(wxWindow
)
379 wxEND_HANDLERS_TABLE()
381 wxCONSTRUCTOR_DUMMY(wxWindow
)
384 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
)
386 #endif // __WXUNIVERSAL__/__WXMSW__
388 BEGIN_EVENT_TABLE(wxWindowMSW
, wxWindowBase
)
389 EVT_SYS_COLOUR_CHANGED(wxWindowMSW::OnSysColourChanged
)
390 EVT_ERASE_BACKGROUND(wxWindowMSW::OnEraseBackground
)
392 EVT_INIT_DIALOG(wxWindowMSW::OnInitDialog
)
396 // ===========================================================================
398 // ===========================================================================
400 // ---------------------------------------------------------------------------
401 // wxWindow utility functions
402 // ---------------------------------------------------------------------------
404 // Find an item given the MS Windows id
405 wxWindow
*wxWindowMSW::FindItem(long id
) const
408 wxControl
*item
= wxDynamicCastThis(wxControl
);
411 // is it us or one of our "internal" children?
412 if ( item
->GetId() == id
413 #ifndef __WXUNIVERSAL__
414 || (item
->GetSubcontrols().Index(id
) != wxNOT_FOUND
)
415 #endif // __WXUNIVERSAL__
421 #endif // wxUSE_CONTROLS
423 wxWindowList::compatibility_iterator current
= GetChildren().GetFirst();
426 wxWindow
*childWin
= current
->GetData();
428 wxWindow
*wnd
= childWin
->FindItem(id
);
432 current
= current
->GetNext();
438 // Find an item given the MS Windows handle
439 wxWindow
*wxWindowMSW::FindItemByHWND(WXHWND hWnd
, bool controlOnly
) const
441 wxWindowList::compatibility_iterator current
= GetChildren().GetFirst();
444 wxWindow
*parent
= current
->GetData();
446 // Do a recursive search.
447 wxWindow
*wnd
= parent
->FindItemByHWND(hWnd
);
453 || parent
->IsKindOf(CLASSINFO(wxControl
))
454 #endif // wxUSE_CONTROLS
457 wxWindow
*item
= current
->GetData();
458 if ( item
->GetHWND() == hWnd
)
462 if ( item
->ContainsHWND(hWnd
) )
467 current
= current
->GetNext();
472 // Default command handler
473 bool wxWindowMSW::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD
WXUNUSED(id
))
478 // ----------------------------------------------------------------------------
479 // constructors and such
480 // ----------------------------------------------------------------------------
482 void wxWindowMSW::Init()
485 m_isBeingDeleted
= false;
487 m_mouseInWindow
= false;
488 m_lastKeydownProcessed
= false;
490 m_childrenDisabled
= NULL
;
499 m_pendingPosition
= wxDefaultPosition
;
500 m_pendingSize
= wxDefaultSize
;
503 m_contextMenuEnabled
= false;
508 wxWindowMSW::~wxWindowMSW()
510 m_isBeingDeleted
= true;
512 #ifndef __WXUNIVERSAL__
513 // VS: make sure there's no wxFrame with last focus set to us:
514 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
516 wxTopLevelWindow
*frame
= wxDynamicCast(win
, wxTopLevelWindow
);
519 if ( frame
->GetLastFocus() == this )
521 frame
->SetLastFocus(NULL
);
524 // apparently sometimes we can end up with our grand parent
525 // pointing to us as well: this is surely a bug in focus handling
526 // code but it's not clear where it happens so for now just try to
527 // fix it here by not breaking out of the loop
531 #endif // __WXUNIVERSAL__
533 // VS: destroy children first and _then_ detach *this from its parent.
534 // If we did it the other way around, children wouldn't be able
535 // find their parent frame (see above).
540 // VZ: test temp removed to understand what really happens here
541 //if (::IsWindow(GetHwnd()))
543 if ( !::DestroyWindow(GetHwnd()) )
544 wxLogLastError(wxT("DestroyWindow"));
547 // remove hWnd <-> wxWindow association
548 wxRemoveHandleAssociation(this);
551 delete m_childrenDisabled
;
555 // real construction (Init() must have been called before!)
556 bool wxWindowMSW::Create(wxWindow
*parent
,
561 const wxString
& name
)
563 wxCHECK_MSG( parent
, false, wxT("can't create wxWindow without parent") );
565 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
568 parent
->AddChild(this);
571 DWORD msflags
= MSWGetCreateWindowFlags(&exstyle
);
573 #ifdef __WXUNIVERSAL__
574 // no borders, we draw them ourselves
575 exstyle
&= ~(WS_EX_DLGMODALFRAME
|
579 msflags
&= ~WS_BORDER
;
580 #endif // wxUniversal
584 msflags
|= WS_VISIBLE
;
587 if ( !MSWCreate(wxCanvasClassName
, NULL
, pos
, size
, msflags
, exstyle
) )
595 // ---------------------------------------------------------------------------
597 // ---------------------------------------------------------------------------
599 void wxWindowMSW::SetFocus()
601 HWND hWnd
= GetHwnd();
602 wxCHECK_RET( hWnd
, _T("can't set focus to invalid window") );
604 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
608 if ( !::SetFocus(hWnd
) )
610 #if defined(__WXDEBUG__) && !defined(__WXMICROWIN__)
611 // was there really an error?
612 DWORD dwRes
= ::GetLastError();
615 HWND hwndFocus
= ::GetFocus();
616 if ( hwndFocus
!= hWnd
)
618 wxLogApiError(_T("SetFocus"), dwRes
);
625 void wxWindowMSW::SetFocusFromKbd()
627 // when the focus is given to the control with DLGC_HASSETSEL style from
628 // keyboard its contents should be entirely selected: this is what
629 // ::IsDialogMessage() does and so we should do it as well to provide the
630 // same LNF as the native programs
631 if ( ::SendMessage(GetHwnd(), WM_GETDLGCODE
, 0, 0) & DLGC_HASSETSEL
)
633 ::SendMessage(GetHwnd(), EM_SETSEL
, 0, -1);
636 // do this after (maybe) setting the selection as like this when
637 // wxEVT_SET_FOCUS handler is called, the selection would have been already
638 // set correctly -- this may be important
639 wxWindowBase::SetFocusFromKbd();
642 // Get the window with the focus
643 wxWindow
*wxWindowBase::DoFindFocus()
645 HWND hWnd
= ::GetFocus();
648 return wxGetWindowFromHWND((WXHWND
)hWnd
);
654 bool wxWindowMSW::Enable(bool enable
)
656 if ( !wxWindowBase::Enable(enable
) )
659 HWND hWnd
= GetHwnd();
661 ::EnableWindow(hWnd
, (BOOL
)enable
);
663 // the logic below doesn't apply to the top level windows -- otherwise
664 // showing a modal dialog would result in total greying out (and ungreying
665 // out later) of everything which would be really ugly
669 // when the parent is disabled, all of its children should be disabled as
670 // well but when it is enabled back, only those of the children which
671 // hadn't been already disabled in the beginning should be enabled again,
672 // so we have to keep the list of those children
673 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
675 node
= node
->GetNext() )
677 wxWindow
*child
= node
->GetData();
678 if ( child
->IsTopLevel() )
680 // the logic below doesn't apply to top level children
686 // re-enable the child unless it had been disabled before us
687 if ( !m_childrenDisabled
|| !m_childrenDisabled
->Find(child
) )
690 else // we're being disabled
692 if ( child
->IsEnabled() )
694 // disable it as children shouldn't stay enabled while the
698 else // child already disabled, remember it
700 // have we created the list of disabled children already?
701 if ( !m_childrenDisabled
)
702 m_childrenDisabled
= new wxWindowList
;
704 m_childrenDisabled
->Append(child
);
709 if ( enable
&& m_childrenDisabled
)
711 // we don't need this list any more, don't keep unused memory
712 delete m_childrenDisabled
;
713 m_childrenDisabled
= NULL
;
719 bool wxWindowMSW::Show(bool show
)
721 if ( !wxWindowBase::Show(show
) )
724 HWND hWnd
= GetHwnd();
726 // we could be called before the underlying window is created (this is
727 // actually useful to prevent it from being initially shown), e.g.
729 // wxFoo *foo = new wxFoo;
731 // foo->Create(parent, ...);
733 // should work without errors
736 ::ShowWindow(hWnd
, show
? SW_SHOW
: SW_HIDE
);
742 // Raise the window to the top of the Z order
743 void wxWindowMSW::Raise()
745 wxBringWindowToTop(GetHwnd());
748 // Lower the window to the bottom of the Z order
749 void wxWindowMSW::Lower()
751 ::SetWindowPos(GetHwnd(), HWND_BOTTOM
, 0, 0, 0, 0,
752 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
755 void wxWindowMSW::DoCaptureMouse()
757 HWND hWnd
= GetHwnd();
764 void wxWindowMSW::DoReleaseMouse()
766 if ( !::ReleaseCapture() )
768 wxLogLastError(_T("ReleaseCapture"));
772 /* static */ wxWindow
*wxWindowBase::GetCapture()
774 HWND hwnd
= ::GetCapture();
775 return hwnd
? wxFindWinFromHandle((WXHWND
)hwnd
) : (wxWindow
*)NULL
;
778 bool wxWindowMSW::SetFont(const wxFont
& font
)
780 if ( !wxWindowBase::SetFont(font
) )
786 HWND hWnd
= GetHwnd();
789 WXHANDLE hFont
= m_font
.GetResourceHandle();
791 wxASSERT_MSG( hFont
, wxT("should have valid font") );
793 ::SendMessage(hWnd
, WM_SETFONT
, (WPARAM
)hFont
, MAKELPARAM(TRUE
, 0));
798 bool wxWindowMSW::SetCursor(const wxCursor
& cursor
)
800 if ( !wxWindowBase::SetCursor(cursor
) )
806 // don't "overwrite" busy cursor
807 if ( m_cursor
.Ok() && !wxIsBusy() )
809 ::SetCursor(GetHcursorOf(m_cursor
));
815 void wxWindowMSW::WarpPointer(int x
, int y
)
817 ClientToScreen(&x
, &y
);
819 if ( !::SetCursorPos(x
, y
) )
821 wxLogLastError(_T("SetCursorPos"));
825 void wxWindowMSW::MSWUpdateUIState(int action
, int state
)
827 // WM_CHANGEUISTATE only appeared in Windows 2000 so it can do us no good
828 // to use it on older systems -- and could possibly do some harm
829 static int s_needToUpdate
= -1;
830 if ( s_needToUpdate
== -1 )
833 s_needToUpdate
= wxGetOsVersion(&verMaj
, &verMin
) == wxWINDOWS_NT
&&
837 if ( s_needToUpdate
)
839 // we send WM_CHANGEUISTATE so if nothing needs changing then the system
840 // won't send WM_UPDATEUISTATE
841 ::SendMessage(GetHwnd(), WM_CHANGEUISTATE
, MAKEWPARAM(action
, state
), 0);
845 // ---------------------------------------------------------------------------
847 // ---------------------------------------------------------------------------
849 inline int GetScrollPosition(HWND hWnd
, int wOrient
)
851 #ifdef __WXMICROWIN__
852 return ::GetScrollPosWX(hWnd
, wOrient
);
854 WinStruct
<SCROLLINFO
> scrollInfo
;
855 scrollInfo
.cbSize
= sizeof(SCROLLINFO
);
856 scrollInfo
.fMask
= SIF_POS
;
857 ::GetScrollInfo(hWnd
, wOrient
, &scrollInfo
);
859 return scrollInfo
.nPos
;
864 int wxWindowMSW::GetScrollPos(int orient
) const
866 HWND hWnd
= GetHwnd();
867 wxCHECK_MSG( hWnd
, 0, _T("no HWND in GetScrollPos") );
869 return GetScrollPosition(hWnd
, orient
== wxHORIZONTAL
? SB_HORZ
: SB_VERT
);
872 // This now returns the whole range, not just the number
873 // of positions that we can scroll.
874 int wxWindowMSW::GetScrollRange(int orient
) const
877 HWND hWnd
= GetHwnd();
881 ::GetScrollRange(hWnd
, orient
== wxHORIZONTAL
? SB_HORZ
: SB_VERT
,
884 WinStruct
<SCROLLINFO
> scrollInfo
;
885 scrollInfo
.fMask
= SIF_RANGE
;
886 if ( !::GetScrollInfo(hWnd
,
887 orient
== wxHORIZONTAL
? SB_HORZ
: SB_VERT
,
890 // Most of the time this is not really an error, since the return
891 // value can also be zero when there is no scrollbar yet.
892 // wxLogLastError(_T("GetScrollInfo"));
894 maxPos
= scrollInfo
.nMax
;
896 // undo "range - 1" done in SetScrollbar()
900 int wxWindowMSW::GetScrollThumb(int orient
) const
902 return orient
== wxHORIZONTAL
? m_xThumbSize
: m_yThumbSize
;
905 void wxWindowMSW::SetScrollPos(int orient
, int pos
, bool refresh
)
907 HWND hWnd
= GetHwnd();
908 wxCHECK_RET( hWnd
, _T("SetScrollPos: no HWND") );
910 WinStruct
<SCROLLINFO
> info
;
914 info
.fMask
= SIF_POS
;
915 if ( HasFlag(wxALWAYS_SHOW_SB
) )
917 // disable scrollbar instead of removing it then
918 info
.fMask
|= SIF_DISABLENOSCROLL
;
921 ::SetScrollInfo(hWnd
, orient
== wxHORIZONTAL
? SB_HORZ
: SB_VERT
,
925 // New function that will replace some of the above.
926 void wxWindowMSW::SetScrollbar(int orient
,
932 WinStruct
<SCROLLINFO
> info
;
933 info
.nPage
= pageSize
;
934 info
.nMin
= 0; // range is nMax - nMin + 1
935 info
.nMax
= range
- 1; // as both nMax and nMax are inclusive
937 info
.fMask
= SIF_RANGE
| SIF_PAGE
| SIF_POS
;
938 if ( HasFlag(wxALWAYS_SHOW_SB
) )
940 // disable scrollbar instead of removing it then
941 info
.fMask
|= SIF_DISABLENOSCROLL
;
944 HWND hWnd
= GetHwnd();
947 // We have to set the variables here to make them valid in events
948 // triggered by ::SetScrollInfo()
949 *(orient
== wxHORIZONTAL
? &m_xThumbSize
: &m_yThumbSize
) = pageSize
;
951 ::SetScrollInfo(hWnd
, orient
== wxHORIZONTAL
? SB_HORZ
: SB_VERT
,
956 void wxWindowMSW::ScrollWindow(int dx
, int dy
, const wxRect
*prect
)
962 rect
.left
= prect
->x
;
964 rect
.right
= prect
->x
+ prect
->width
;
965 rect
.bottom
= prect
->y
+ prect
->height
;
975 // FIXME: is this the exact equivalent of the line below?
976 ::ScrollWindowEx(GetHwnd(), dx
, dy
, pr
, pr
, 0, 0, SW_SCROLLCHILDREN
|SW_ERASE
|SW_INVALIDATE
);
978 ::ScrollWindow(GetHwnd(), dx
, dy
, pr
, pr
);
982 static bool ScrollVertically(HWND hwnd
, int kind
, int count
)
984 int posStart
= GetScrollPosition(hwnd
, SB_VERT
);
987 for ( int n
= 0; n
< count
; n
++ )
989 ::SendMessage(hwnd
, WM_VSCROLL
, kind
, 0);
991 int posNew
= GetScrollPosition(hwnd
, SB_VERT
);
994 // don't bother to continue, we're already at top/bottom
1001 return pos
!= posStart
;
1004 bool wxWindowMSW::ScrollLines(int lines
)
1006 bool down
= lines
> 0;
1008 return ScrollVertically(GetHwnd(),
1009 down
? SB_LINEDOWN
: SB_LINEUP
,
1010 down
? lines
: -lines
);
1013 bool wxWindowMSW::ScrollPages(int pages
)
1015 bool down
= pages
> 0;
1017 return ScrollVertically(GetHwnd(),
1018 down
? SB_PAGEDOWN
: SB_PAGEUP
,
1019 down
? pages
: -pages
);
1022 // ---------------------------------------------------------------------------
1024 // ---------------------------------------------------------------------------
1026 void wxWindowMSW::SubclassWin(WXHWND hWnd
)
1028 wxASSERT_MSG( !m_oldWndProc
, wxT("subclassing window twice?") );
1030 HWND hwnd
= (HWND
)hWnd
;
1031 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in SubclassWin") );
1033 wxAssociateWinWithHandle(hwnd
, this);
1035 m_oldWndProc
= (WXFARPROC
)wxGetWindowProc((HWND
)hWnd
);
1037 // we don't need to subclass the window of our own class (in the Windows
1038 // sense of the word)
1039 if ( !wxCheckWindowWndProc(hWnd
, (WXFARPROC
)wxWndProc
) )
1041 wxSetWindowProc(hwnd
, wxWndProc
);
1045 // don't bother restoring it either: this also makes it easy to
1046 // implement IsOfStandardClass() method which returns true for the
1047 // standard controls and false for the wxWidgets own windows as it can
1048 // simply check m_oldWndProc
1049 m_oldWndProc
= NULL
;
1052 // we're officially created now, send the event
1053 wxWindowCreateEvent
event((wxWindow
*)this);
1054 (void)GetEventHandler()->ProcessEvent(event
);
1057 void wxWindowMSW::UnsubclassWin()
1059 wxRemoveHandleAssociation(this);
1061 // Restore old Window proc
1062 HWND hwnd
= GetHwnd();
1067 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in UnsubclassWin") );
1071 if ( !wxCheckWindowWndProc((WXHWND
)hwnd
, m_oldWndProc
) )
1073 wxSetWindowProc(hwnd
, (WNDPROC
)m_oldWndProc
);
1076 m_oldWndProc
= NULL
;
1081 void wxWindowMSW::AssociateHandle(WXWidget handle
)
1085 if ( !::DestroyWindow(GetHwnd()) )
1086 wxLogLastError(wxT("DestroyWindow"));
1089 WXHWND wxhwnd
= (WXHWND
)handle
;
1092 SubclassWin(wxhwnd
);
1095 void wxWindowMSW::DissociateHandle()
1097 // this also calls SetHWND(0) for us
1102 bool wxCheckWindowWndProc(WXHWND hWnd
,
1103 WXFARPROC
WXUNUSED(wndProc
))
1105 // TODO: This list of window class names should be factored out so they can be
1106 // managed in one place and then accessed from here and other places, such as
1107 // wxApp::RegisterWindowClasses() and wxApp::UnregisterWindowClasses()
1110 extern wxChar
*wxCanvasClassName
;
1111 extern wxChar
*wxCanvasClassNameNR
;
1113 extern const wxChar
*wxCanvasClassName
;
1114 extern const wxChar
*wxCanvasClassNameNR
;
1116 extern const wxChar
*wxMDIFrameClassName
;
1117 extern const wxChar
*wxMDIFrameClassNameNoRedraw
;
1118 extern const wxChar
*wxMDIChildFrameClassName
;
1119 extern const wxChar
*wxMDIChildFrameClassNameNoRedraw
;
1120 wxString
str(wxGetWindowClass(hWnd
));
1121 if (str
== wxCanvasClassName
||
1122 str
== wxCanvasClassNameNR
||
1124 str
== _T("wxGLCanvasClass") ||
1125 str
== _T("wxGLCanvasClassNR") ||
1126 #endif // wxUSE_GLCANVAS
1127 str
== wxMDIFrameClassName
||
1128 str
== wxMDIFrameClassNameNoRedraw
||
1129 str
== wxMDIChildFrameClassName
||
1130 str
== wxMDIChildFrameClassNameNoRedraw
||
1131 str
== _T("wxTLWHiddenParent"))
1132 return true; // Effectively means don't subclass
1137 // ----------------------------------------------------------------------------
1139 // ----------------------------------------------------------------------------
1141 void wxWindowMSW::SetWindowStyleFlag(long flags
)
1143 long flagsOld
= GetWindowStyleFlag();
1144 if ( flags
== flagsOld
)
1147 // update the internal variable
1148 wxWindowBase::SetWindowStyleFlag(flags
);
1150 // now update the Windows style as well if needed - and if the window had
1151 // been already created
1155 // we may need to call SetWindowPos() when we change some styles
1156 bool callSWP
= false;
1158 WXDWORD exstyle
, exstyleOld
;
1159 long style
= MSWGetStyle(flags
, &exstyle
),
1160 styleOld
= MSWGetStyle(flagsOld
, &exstyleOld
);
1162 if ( style
!= styleOld
)
1164 // some flags (e.g. WS_VISIBLE or WS_DISABLED) should not be changed by
1165 // this function so instead of simply setting the style to the new
1166 // value we clear the bits which were set in styleOld but are set in
1167 // the new one and set the ones which were not set before
1168 long styleReal
= ::GetWindowLong(GetHwnd(), GWL_STYLE
);
1169 styleReal
&= ~styleOld
;
1172 ::SetWindowLong(GetHwnd(), GWL_STYLE
, styleReal
);
1174 // If any of the style changes changed any of the frame styles:
1175 // MSDN: SetWindowLong:
1176 // Certain window data is cached, so changes you make using
1177 // SetWindowLong will not take effect until you call the
1178 // SetWindowPos function. Specifically, if you change any of
1179 // the frame styles, you must call SetWindowPos with the
1180 // SWP_FRAMECHANGED flag for the cache to be updated properly.
1182 callSWP
= ((styleOld
^ style
) & (WS_BORDER
|
1191 // and the extended style
1192 long exstyleReal
= ::GetWindowLong(GetHwnd(), GWL_EXSTYLE
);
1194 if ( exstyle
!= exstyleOld
)
1196 exstyleReal
&= ~exstyleOld
;
1197 exstyleReal
|= exstyle
;
1199 ::SetWindowLong(GetHwnd(), GWL_EXSTYLE
, exstyleReal
);
1201 // ex style changes don't take effect without calling SetWindowPos
1207 // we must call SetWindowPos() to flush the cached extended style and
1208 // also to make the change to wxSTAY_ON_TOP style take effect: just
1209 // setting the style simply doesn't work
1210 if ( !::SetWindowPos(GetHwnd(),
1211 exstyleReal
& WS_EX_TOPMOST
? HWND_TOPMOST
1214 SWP_NOMOVE
| SWP_NOSIZE
| SWP_FRAMECHANGED
) )
1216 wxLogLastError(_T("SetWindowPos"));
1221 WXDWORD
wxWindowMSW::MSWGetStyle(long flags
, WXDWORD
*exstyle
) const
1223 // translate common wxWidgets styles to Windows ones
1225 // most of windows are child ones, those which are not (such as
1226 // wxTopLevelWindow) should remove WS_CHILD in their MSWGetStyle()
1227 WXDWORD style
= WS_CHILD
;
1229 // using this flag results in very significant reduction in flicker,
1230 // especially with controls inside the static boxes (as the interior of the
1231 // box is not redrawn twice), but sometimes results in redraw problems, so
1232 // optionally allow the old code to continue to use it provided a special
1233 // system option is turned on
1234 if ( !wxSystemOptions::GetOptionInt(wxT("msw.window.no-clip-children"))
1235 || (flags
& wxCLIP_CHILDREN
) )
1236 style
|= WS_CLIPCHILDREN
;
1238 // it doesn't seem useful to use WS_CLIPSIBLINGS here as we officially
1239 // don't support overlapping windows and it only makes sense for them and,
1240 // presumably, gives the system some extra work (to manage more clipping
1241 // regions), so avoid it alltogether
1244 if ( flags
& wxVSCROLL
)
1245 style
|= WS_VSCROLL
;
1247 if ( flags
& wxHSCROLL
)
1248 style
|= WS_HSCROLL
;
1250 const wxBorder border
= GetBorder(flags
);
1252 // WS_BORDER is only required for wxBORDER_SIMPLE
1253 if ( border
== wxBORDER_SIMPLE
)
1256 // now deal with ext style if the caller wants it
1262 if ( flags
& wxTRANSPARENT_WINDOW
)
1263 *exstyle
|= WS_EX_TRANSPARENT
;
1269 case wxBORDER_DEFAULT
:
1270 wxFAIL_MSG( _T("unknown border style") );
1274 case wxBORDER_SIMPLE
:
1277 case wxBORDER_STATIC
:
1278 *exstyle
|= WS_EX_STATICEDGE
;
1281 case wxBORDER_RAISED
:
1282 *exstyle
|= WS_EX_DLGMODALFRAME
;
1285 case wxBORDER_SUNKEN
:
1286 *exstyle
|= WS_EX_CLIENTEDGE
;
1287 style
&= ~WS_BORDER
;
1290 case wxBORDER_DOUBLE
:
1291 *exstyle
|= WS_EX_DLGMODALFRAME
;
1295 // wxUniv doesn't use Windows dialog navigation functions at all
1296 #if !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__)
1297 // to make the dialog navigation work with the nested panels we must
1298 // use this style (top level windows such as dialogs don't need it)
1299 if ( (flags
& wxTAB_TRAVERSAL
) && !IsTopLevel() )
1301 *exstyle
|= WS_EX_CONTROLPARENT
;
1303 #endif // __WXUNIVERSAL__
1309 // Setup background and foreground colours correctly
1310 void wxWindowMSW::SetupColours()
1313 SetBackgroundColour(GetParent()->GetBackgroundColour());
1316 bool wxWindowMSW::IsMouseInWindow() const
1318 // get the mouse position
1321 ::GetCursorPosWinCE(&pt
);
1323 ::GetCursorPos(&pt
);
1326 // find the window which currently has the cursor and go up the window
1327 // chain until we find this window - or exhaust it
1328 HWND hwnd
= ::WindowFromPoint(pt
);
1329 while ( hwnd
&& (hwnd
!= GetHwnd()) )
1330 hwnd
= ::GetParent(hwnd
);
1332 return hwnd
!= NULL
;
1335 void wxWindowMSW::OnInternalIdle()
1337 #ifndef HAVE_TRACKMOUSEEVENT
1338 // Check if we need to send a LEAVE event
1339 if ( m_mouseInWindow
)
1341 // note that we should generate the leave event whether the window has
1342 // or doesn't have mouse capture
1343 if ( !IsMouseInWindow() )
1345 GenerateMouseLeave();
1348 #endif // !HAVE_TRACKMOUSEEVENT
1350 if (wxUpdateUIEvent::CanUpdate(this))
1351 UpdateWindowUI(wxUPDATE_UI_FROMIDLE
);
1354 // Set this window to be the child of 'parent'.
1355 bool wxWindowMSW::Reparent(wxWindowBase
*parent
)
1357 if ( !wxWindowBase::Reparent(parent
) )
1360 HWND hWndChild
= GetHwnd();
1361 HWND hWndParent
= GetParent() ? GetWinHwnd(GetParent()) : (HWND
)0;
1363 ::SetParent(hWndChild
, hWndParent
);
1366 if ( ::GetWindowLong(hWndChild
, GWL_EXSTYLE
) & WS_EX_CONTROLPARENT
)
1368 EnsureParentHasControlParentStyle(GetParent());
1370 #endif // !__WXWINCE__
1375 static inline void SendSetRedraw(HWND hwnd
, bool on
)
1377 #ifndef __WXMICROWIN__
1378 ::SendMessage(hwnd
, WM_SETREDRAW
, (WPARAM
)on
, 0);
1382 void wxWindowMSW::Freeze()
1384 if ( !m_frozenness
++ )
1387 SendSetRedraw(GetHwnd(), false);
1391 void wxWindowMSW::Thaw()
1393 wxASSERT_MSG( m_frozenness
> 0, _T("Thaw() without matching Freeze()") );
1395 if ( --m_frozenness
== 0 )
1399 SendSetRedraw(GetHwnd(), true);
1401 // we need to refresh everything or otherwise the invalidated area
1402 // is not going to be repainted
1408 void wxWindowMSW::Refresh(bool eraseBack
, const wxRect
*rect
)
1410 HWND hWnd
= GetHwnd();
1417 mswRect
.left
= rect
->x
;
1418 mswRect
.top
= rect
->y
;
1419 mswRect
.right
= rect
->x
+ rect
->width
;
1420 mswRect
.bottom
= rect
->y
+ rect
->height
;
1429 // RedrawWindow not available on SmartPhone or eVC++ 3
1430 #if !defined(__SMARTPHONE__) && !(defined(_WIN32_WCE) && _WIN32_WCE < 400)
1431 UINT flags
= RDW_INVALIDATE
| RDW_ALLCHILDREN
;
1435 ::RedrawWindow(hWnd
, pRect
, NULL
, flags
);
1437 ::InvalidateRect(hWnd
, pRect
, eraseBack
);
1442 void wxWindowMSW::Update()
1444 if ( !::UpdateWindow(GetHwnd()) )
1446 wxLogLastError(_T("UpdateWindow"));
1449 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1450 // just calling UpdateWindow() is not enough, what we did in our WM_PAINT
1451 // handler needs to be really drawn right now
1456 // ---------------------------------------------------------------------------
1458 // ---------------------------------------------------------------------------
1460 // we need to lower the sibling static boxes so controls contained within can be
1462 static inline void AdjustStaticBoxZOrder(wxWindow
*parent
)
1464 // no sibling static boxes if we have no parent (ie TLW)
1468 for ( wxWindowList::compatibility_iterator node
= parent
->GetChildren().GetFirst();
1470 node
= node
->GetNext() )
1472 wxStaticBox
*statbox
= wxDynamicCast(node
->GetData(), wxStaticBox
);
1475 ::SetWindowPos(GetHwndOf(statbox
), HWND_BOTTOM
, 0, 0, 0, 0,
1476 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
1481 #if wxUSE_DRAG_AND_DROP
1482 void wxWindowMSW::SetDropTarget(wxDropTarget
*pDropTarget
)
1484 if ( m_dropTarget
!= 0 ) {
1485 m_dropTarget
->Revoke(m_hWnd
);
1486 delete m_dropTarget
;
1489 m_dropTarget
= pDropTarget
;
1490 if ( m_dropTarget
!= 0 )
1492 AdjustStaticBoxZOrder(GetParent());
1493 m_dropTarget
->Register(m_hWnd
);
1496 #endif // wxUSE_DRAG_AND_DROP
1498 // old-style file manager drag&drop support: we retain the old-style
1499 // DragAcceptFiles in parallel with SetDropTarget.
1500 void wxWindowMSW::DragAcceptFiles(bool WXUNUSED_IN_WINCE(accept
))
1503 HWND hWnd
= GetHwnd();
1506 AdjustStaticBoxZOrder(GetParent());
1507 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
1512 // ----------------------------------------------------------------------------
1514 // ----------------------------------------------------------------------------
1518 void wxWindowMSW::DoSetToolTip(wxToolTip
*tooltip
)
1520 wxWindowBase::DoSetToolTip(tooltip
);
1523 m_tooltip
->SetWindow((wxWindow
*)this);
1526 #endif // wxUSE_TOOLTIPS
1528 // ---------------------------------------------------------------------------
1529 // moving and resizing
1530 // ---------------------------------------------------------------------------
1532 bool wxWindowMSW::IsSizeDeferred() const
1534 #if USE_DEFERRED_SIZING
1535 if ( m_pendingPosition
!= wxDefaultPosition
||
1536 m_pendingSize
!= wxDefaultSize
)
1538 #endif // USE_DEFERRED_SIZING
1544 void wxWindowMSW::DoGetSize(int *x
, int *y
) const
1546 // if SetSize() had been called at wx level but not realized at Windows
1547 // level yet (i.e. EndDeferWindowPos() not called), we still should return
1548 // the new and not the old position to the other wx code
1549 if ( m_pendingSize
!= wxDefaultSize
)
1552 *x
= m_pendingSize
.x
;
1554 *y
= m_pendingSize
.y
;
1556 else // use current size
1558 RECT rect
= wxGetWindowRect(GetHwnd());
1561 *x
= rect
.right
- rect
.left
;
1563 *y
= rect
.bottom
- rect
.top
;
1567 // Get size *available for subwindows* i.e. excluding menu bar etc.
1568 void wxWindowMSW::DoGetClientSize(int *x
, int *y
) const
1570 #if USE_DEFERRED_SIZING
1571 if ( IsTopLevel() || m_pendingSize
== wxDefaultSize
)
1573 { // top level windows resizing is never deferred, so we can safely use
1574 // the current size here
1575 RECT rect
= wxGetClientRect(GetHwnd());
1582 #if USE_DEFERRED_SIZING
1583 else // non top level and using deferred sizing
1585 // we need to calculate the *pending* client size here
1587 rect
.left
= m_pendingPosition
.x
;
1588 rect
.top
= m_pendingPosition
.y
;
1589 rect
.right
= rect
.left
+ m_pendingSize
.x
;
1590 rect
.bottom
= rect
.top
+ m_pendingSize
.y
;
1592 ::SendMessage(GetHwnd(), WM_NCCALCSIZE
, FALSE
, (LPARAM
)&rect
);
1595 *x
= rect
.right
- rect
.left
;
1597 *y
= rect
.bottom
- rect
.top
;
1602 void wxWindowMSW::DoGetPosition(int *x
, int *y
) const
1604 wxWindow
* const parent
= GetParent();
1607 if ( m_pendingPosition
!= wxDefaultPosition
)
1609 pos
= m_pendingPosition
;
1611 else // use current position
1613 RECT rect
= wxGetWindowRect(GetHwnd());
1616 point
.x
= rect
.left
;
1619 // we do the adjustments with respect to the parent only for the "real"
1620 // children, not for the dialogs/frames
1621 if ( !IsTopLevel() )
1623 // Since we now have the absolute screen coords, if there's a
1624 // parent we must subtract its top left corner
1627 ::ScreenToClient(GetHwndOf(parent
), &point
);
1635 // we also must adjust by the client area offset: a control which is just
1636 // under a toolbar could be at (0, 30) in Windows but at (0, 0) in wx
1637 if ( parent
&& !IsTopLevel() )
1639 const wxPoint
pt(parent
->GetClientAreaOrigin());
1650 void wxWindowMSW::DoScreenToClient(int *x
, int *y
) const
1658 ::ScreenToClient(GetHwnd(), &pt
);
1666 void wxWindowMSW::DoClientToScreen(int *x
, int *y
) const
1674 ::ClientToScreen(GetHwnd(), &pt
);
1683 wxWindowMSW::DoMoveSibling(WXHWND hwnd
, int x
, int y
, int width
, int height
)
1685 #if USE_DEFERRED_SIZING
1686 // if our parent had prepared a defer window handle for us, use it (unless
1687 // we are a top level window)
1688 wxWindowMSW
* const parent
= IsTopLevel() ? NULL
: GetParent();
1690 HDWP hdwp
= parent
? (HDWP
)parent
->m_hDWP
: NULL
;
1693 hdwp
= ::DeferWindowPos(hdwp
, (HWND
)hwnd
, NULL
, x
, y
, width
, height
,
1694 SWP_NOZORDER
| SWP_NOOWNERZORDER
| SWP_NOACTIVATE
);
1697 wxLogLastError(_T("DeferWindowPos"));
1703 // hdwp must be updated as it may have been changed
1704 parent
->m_hDWP
= (WXHANDLE
)hdwp
;
1709 // did deferred move, remember new coordinates of the window as they're
1710 // different from what Windows would return for it
1714 // otherwise (or if deferring failed) move the window in place immediately
1715 #endif // USE_DEFERRED_SIZING
1716 if ( !::MoveWindow((HWND
)hwnd
, x
, y
, width
, height
, IsShown()) )
1718 wxLogLastError(wxT("MoveWindow"));
1721 // if USE_DEFERRED_SIZING, indicates that we didn't use deferred move,
1722 // ignored otherwise
1726 void wxWindowMSW::DoMoveWindow(int x
, int y
, int width
, int height
)
1728 // TODO: is this consistent with other platforms?
1729 // Still, negative width or height shouldn't be allowed
1735 if ( DoMoveSibling(m_hWnd
, x
, y
, width
, height
) )
1737 #if USE_DEFERRED_SIZING
1738 m_pendingPosition
= wxPoint(x
, y
);
1739 m_pendingSize
= wxSize(width
, height
);
1740 #endif // USE_DEFERRED_SIZING
1744 // set the size of the window: if the dimensions are positive, just use them,
1745 // but if any of them is equal to -1, it means that we must find the value for
1746 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1747 // which case -1 is a valid value for x and y)
1749 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1750 // the width/height to best suit our contents, otherwise we reuse the current
1752 void wxWindowMSW::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1754 // get the current size and position...
1755 int currentX
, currentY
;
1756 int currentW
, currentH
;
1758 GetPosition(¤tX
, ¤tY
);
1759 GetSize(¤tW
, ¤tH
);
1761 // ... and don't do anything (avoiding flicker) if it's already ok unless
1762 // we're forced to resize the window
1763 if ( x
== currentX
&& y
== currentY
&&
1764 width
== currentW
&& height
== currentH
&&
1765 !(sizeFlags
& wxSIZE_FORCE
) )
1770 if ( x
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1772 if ( y
== wxDefaultCoord
&& !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1775 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
1777 wxSize size
= wxDefaultSize
;
1778 if ( width
== wxDefaultCoord
)
1780 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
1782 size
= DoGetBestSize();
1787 // just take the current one
1792 if ( height
== wxDefaultCoord
)
1794 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
1796 if ( size
.x
== wxDefaultCoord
)
1798 size
= DoGetBestSize();
1800 //else: already called DoGetBestSize() above
1806 // just take the current one
1811 DoMoveWindow(x
, y
, width
, height
);
1814 void wxWindowMSW::DoSetClientSize(int width
, int height
)
1816 // setting the client size is less obvious than it could have been
1817 // because in the result of changing the total size the window scrollbar
1818 // may [dis]appear and/or its menubar may [un]wrap (and AdjustWindowRect()
1819 // doesn't take neither into account) and so the client size will not be
1820 // correct as the difference between the total and client size changes --
1821 // so we keep changing it until we get it right
1823 // normally this loop shouldn't take more than 3 iterations (usually 1 but
1824 // if scrollbars [dis]appear as the result of the first call, then 2 and it
1825 // may become 3 if the window had 0 size originally and so we didn't
1826 // calculate the scrollbar correction correctly during the first iteration)
1827 // but just to be on the safe side we check for it instead of making it an
1828 // "infinite" loop (i.e. leaving break inside as the only way to get out)
1829 for ( int i
= 0; i
< 4; i
++ )
1832 ::GetClientRect(GetHwnd(), &rectClient
);
1834 // if the size is already ok, stop here (NB: rectClient.left = top = 0)
1835 if ( (rectClient
.right
== width
|| width
== wxDefaultCoord
) &&
1836 (rectClient
.bottom
== height
|| height
== wxDefaultCoord
) )
1841 // Find the difference between the entire window (title bar and all)
1842 // and the client area; add this to the new client size to move the
1845 ::GetWindowRect(GetHwnd(), &rectWin
);
1847 const int widthWin
= rectWin
.right
- rectWin
.left
,
1848 heightWin
= rectWin
.bottom
- rectWin
.top
;
1850 // MoveWindow positions the child windows relative to the parent, so
1851 // adjust if necessary
1852 if ( !IsTopLevel() )
1854 wxWindow
*parent
= GetParent();
1857 ::ScreenToClient(GetHwndOf(parent
), (POINT
*)&rectWin
);
1861 // don't call DoMoveWindow() because we want to move window immediately
1862 // and not defer it here as otherwise the value returned by
1863 // GetClient/WindowRect() wouldn't change as the window wouldn't be
1865 if ( !::MoveWindow(GetHwnd(),
1868 width
+ widthWin
- rectClient
.right
,
1869 height
+ heightWin
- rectClient
.bottom
,
1872 wxLogLastError(_T("MoveWindow"));
1877 // ---------------------------------------------------------------------------
1879 // ---------------------------------------------------------------------------
1881 int wxWindowMSW::GetCharHeight() const
1883 return wxGetTextMetrics(this).tmHeight
;
1886 int wxWindowMSW::GetCharWidth() const
1888 // +1 is needed because Windows apparently adds it when calculating the
1889 // dialog units size in pixels
1890 #if wxDIALOG_UNIT_COMPATIBILITY
1891 return wxGetTextMetrics(this).tmAveCharWidth
;
1893 return wxGetTextMetrics(this).tmAveCharWidth
+ 1;
1897 void wxWindowMSW::GetTextExtent(const wxString
& string
,
1899 int *descent
, int *externalLeading
,
1900 const wxFont
*theFont
) const
1902 wxASSERT_MSG( !theFont
|| theFont
->Ok(),
1903 _T("invalid font in GetTextExtent()") );
1907 fontToUse
= *theFont
;
1909 fontToUse
= GetFont();
1911 WindowHDC
hdc(GetHwnd());
1912 SelectInHDC
selectFont(hdc
, GetHfontOf(fontToUse
));
1916 ::GetTextExtentPoint32(hdc
, string
, string
.length(), &sizeRect
);
1917 GetTextMetrics(hdc
, &tm
);
1924 *descent
= tm
.tmDescent
;
1925 if ( externalLeading
)
1926 *externalLeading
= tm
.tmExternalLeading
;
1929 // ---------------------------------------------------------------------------
1931 // ---------------------------------------------------------------------------
1933 #if wxUSE_MENUS_NATIVE
1935 // yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue
1936 // immediately, without waiting for the next event loop iteration
1938 // NB: this function should probably be made public later as it can almost
1939 // surely replace wxYield() elsewhere as well
1940 static void wxYieldForCommandsOnly()
1942 // peek all WM_COMMANDs (it will always return WM_QUIT too but we don't
1943 // want to process it here)
1945 while ( ::PeekMessage(&msg
, (HWND
)0, WM_COMMAND
, WM_COMMAND
, PM_REMOVE
) )
1947 if ( msg
.message
== WM_QUIT
)
1949 // if we retrieved a WM_QUIT, insert back into the message queue.
1950 ::PostQuitMessage(0);
1954 // luckily (as we don't have access to wxEventLoopImpl method from here
1955 // anyhow...) we don't need to pre process WM_COMMANDs so dispatch it
1957 ::TranslateMessage(&msg
);
1958 ::DispatchMessage(&msg
);
1962 bool wxWindowMSW::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
1964 menu
->SetInvokingWindow(this);
1967 if ( x
== wxDefaultCoord
&& y
== wxDefaultCoord
)
1969 wxPoint mouse
= ScreenToClient(wxGetMousePosition());
1970 x
= mouse
.x
; y
= mouse
.y
;
1973 HWND hWnd
= GetHwnd();
1974 HMENU hMenu
= GetHmenuOf(menu
);
1978 ::ClientToScreen(hWnd
, &point
);
1979 wxCurrentPopupMenu
= menu
;
1980 #if defined(__WXWINCE__)
1983 UINT flags
= TPM_RIGHTBUTTON
| TPM_RECURSE
;
1985 ::TrackPopupMenu(hMenu
, flags
, point
.x
, point
.y
, 0, hWnd
, NULL
);
1987 // we need to do it right now as otherwise the events are never going to be
1988 // sent to wxCurrentPopupMenu from HandleCommand()
1990 // note that even eliminating (ugly) wxCurrentPopupMenu global wouldn't
1991 // help and we'd still need wxYieldForCommandsOnly() as the menu may be
1992 // destroyed as soon as we return (it can be a local variable in the caller
1993 // for example) and so we do need to process the event immediately
1994 wxYieldForCommandsOnly();
1996 wxCurrentPopupMenu
= NULL
;
1998 menu
->SetInvokingWindow(NULL
);
2003 #endif // wxUSE_MENUS_NATIVE
2005 // ===========================================================================
2006 // pre/post message processing
2007 // ===========================================================================
2009 WXLRESULT
wxWindowMSW::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
2012 return ::CallWindowProc(CASTWNDPROC m_oldWndProc
, GetHwnd(), (UINT
) nMsg
, (WPARAM
) wParam
, (LPARAM
) lParam
);
2014 return ::DefWindowProc(GetHwnd(), nMsg
, wParam
, lParam
);
2017 bool wxWindowMSW::MSWProcessMessage(WXMSG
* pMsg
)
2019 // wxUniversal implements tab traversal itself
2020 #ifndef __WXUNIVERSAL__
2021 if ( m_hWnd
!= 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL
) )
2023 // intercept dialog navigation keys
2024 MSG
*msg
= (MSG
*)pMsg
;
2026 // here we try to do all the job which ::IsDialogMessage() usually does
2028 if ( msg
->message
== WM_KEYDOWN
)
2030 bool bCtrlDown
= wxIsCtrlDown();
2031 bool bShiftDown
= wxIsShiftDown();
2033 // WM_GETDLGCODE: ask the control if it wants the key for itself,
2034 // don't process it if it's the case (except for Ctrl-Tab/Enter
2035 // combinations which are always processed)
2039 lDlgCode
= ::SendMessage(msg
->hwnd
, WM_GETDLGCODE
, 0, 0);
2041 // surprizingly, DLGC_WANTALLKEYS bit mask doesn't contain the
2042 // DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically,
2043 // it, of course, implies them
2044 if ( lDlgCode
& DLGC_WANTALLKEYS
)
2046 lDlgCode
|= DLGC_WANTTAB
| DLGC_WANTARROWS
;
2050 bool bForward
= true,
2051 bWindowChange
= false,
2054 // should we process this message specially?
2055 bool bProcess
= true;
2056 switch ( msg
->wParam
)
2059 if ( lDlgCode
& DLGC_WANTTAB
) {
2063 // Ctrl-Tab cycles thru notebook pages
2064 bWindowChange
= bCtrlDown
;
2065 bForward
= !bShiftDown
;
2072 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2080 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2086 if ( (lDlgCode
& DLGC_WANTMESSAGE
) && !bCtrlDown
)
2088 // control wants to process Enter itself, don't
2089 // call IsDialogMessage() which would interpret
2094 // currently active button should get enter press even
2095 // if there is a default button elsewhere
2096 if ( lDlgCode
& DLGC_DEFPUSHBUTTON
)
2098 // let IsDialogMessage() handle this for all
2099 // buttons except the owner-drawn ones which it
2100 // just seems to ignore
2101 long style
= ::GetWindowLong(msg
->hwnd
, GWL_STYLE
);
2102 if ( (style
& BS_OWNERDRAW
) == BS_OWNERDRAW
)
2104 // emulate the button click
2106 btn
= wxFindWinFromHandle((WXHWND
)msg
->hwnd
);
2108 btn
->MSWCommand(BN_CLICKED
, 0 /* unused */);
2113 else // not a button itself
2116 wxButton
*btn
= wxDynamicCast(GetDefaultItem(),
2118 if ( btn
&& btn
->IsEnabled() )
2120 // if we do have a default button, do press it
2121 btn
->MSWCommand(BN_CLICKED
, 0 /* unused */);
2125 else // no default button
2126 #endif // wxUSE_BUTTON
2129 wxJoystickEvent
event(wxEVT_JOY_BUTTON_DOWN
);
2130 event
.SetEventObject(this);
2131 if(GetEventHandler()->ProcessEvent(event
))
2134 // this is a quick and dirty test for a text
2136 if ( !(lDlgCode
& DLGC_HASSETSEL
) )
2138 // don't process Enter, the control might
2139 // need it for itself and don't let
2140 // ::IsDialogMessage() have it as it can
2141 // eat the Enter events sometimes
2144 else if (!IsTopLevel())
2146 // if not a top level window, let parent
2150 //else: treat Enter as TAB: pass to the next
2151 // control as this is the best thing to do
2152 // if the text doesn't handle Enter itself
2164 wxNavigationKeyEvent event
;
2165 event
.SetDirection(bForward
);
2166 event
.SetWindowChange(bWindowChange
);
2167 event
.SetFromTab(bFromTab
);
2168 event
.SetEventObject(this);
2170 if ( GetEventHandler()->ProcessEvent(event
) )
2172 // as we don't call IsDialogMessage(), which would take of
2173 // this by default, we need to manually send this message
2174 // so that controls can change their UI state if needed
2175 MSWUpdateUIState(UIS_CLEAR
, UISF_HIDEFOCUS
);
2182 // don't let IsDialogMessage() get VK_ESCAPE as it _always_ eats the
2183 // message even when there is no cancel button and when the message is
2184 // needed by the control itself: in particular, it prevents the tree in
2185 // place edit control from being closed with Escape in a dialog
2186 if ( msg
->message
!= WM_KEYDOWN
|| msg
->wParam
!= VK_ESCAPE
)
2188 // ::IsDialogMessage() is broken and may sometimes hang the
2189 // application by going into an infinite loop, so we try to detect
2190 // [some of] the situations when this may happen and not call it
2193 // assume we can call it by default
2194 bool canSafelyCallIsDlgMsg
= true;
2196 HWND hwndFocus
= ::GetFocus();
2198 // if the currently focused window itself has WS_EX_CONTROLPARENT style, ::IsDialogMessage() will also enter
2199 // an infinite loop, because it will recursively check the child
2200 // windows but not the window itself and so if none of the children
2201 // accepts focus it loops forever (as it only stops when it gets
2202 // back to the window it started from)
2204 // while it is very unusual that a window with WS_EX_CONTROLPARENT
2205 // style has the focus, it can happen. One such possibility is if
2206 // all windows are either toplevel, wxDialog, wxPanel or static
2207 // controls and no window can actually accept keyboard input.
2208 #if !defined(__WXWINCE__)
2209 if ( ::GetWindowLong(hwndFocus
, GWL_EXSTYLE
) & WS_EX_CONTROLPARENT
)
2211 // pessimistic by default
2212 canSafelyCallIsDlgMsg
= false;
2213 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
2215 node
= node
->GetNext() )
2217 wxWindow
* const win
= node
->GetData();
2218 if ( win
->AcceptsFocus() &&
2219 !(::GetWindowLong(GetHwndOf(win
), GWL_EXSTYLE
) &
2220 WS_EX_CONTROLPARENT
) )
2222 // it shouldn't hang...
2223 canSafelyCallIsDlgMsg
= true;
2229 #endif // !__WXWINCE__
2231 if ( canSafelyCallIsDlgMsg
)
2233 // ::IsDialogMessage() can enter in an infinite loop when the
2234 // currently focused window is disabled or hidden and its
2235 // parent has WS_EX_CONTROLPARENT style, so don't call it in
2239 if ( !::IsWindowEnabled(hwndFocus
) ||
2240 !::IsWindowVisible(hwndFocus
) )
2242 // it would enter an infinite loop if we do this!
2243 canSafelyCallIsDlgMsg
= false;
2248 if ( !(::GetWindowLong(hwndFocus
, GWL_STYLE
) & WS_CHILD
) )
2250 // it's a top level window, don't go further -- e.g. even
2251 // if the parent of a dialog is disabled, this doesn't
2252 // break navigation inside the dialog
2256 hwndFocus
= ::GetParent(hwndFocus
);
2260 // let IsDialogMessage() have the message if it's safe to call it
2261 if ( canSafelyCallIsDlgMsg
&& ::IsDialogMessage(GetHwnd(), msg
) )
2263 // IsDialogMessage() did something...
2268 #endif // __WXUNIVERSAL__
2273 // relay mouse move events to the tooltip control
2274 MSG
*msg
= (MSG
*)pMsg
;
2275 if ( msg
->message
== WM_MOUSEMOVE
)
2276 wxToolTip::RelayEvent(pMsg
);
2278 #endif // wxUSE_TOOLTIPS
2283 bool wxWindowMSW::MSWTranslateMessage(WXMSG
* pMsg
)
2285 #if wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
2286 return m_acceleratorTable
.Translate(this, pMsg
);
2290 #endif // wxUSE_ACCEL
2293 bool wxWindowMSW::MSWShouldPreProcessMessage(WXMSG
* WXUNUSED(pMsg
))
2295 // preprocess all messages by default
2299 // ---------------------------------------------------------------------------
2300 // message params unpackers
2301 // ---------------------------------------------------------------------------
2303 void wxWindowMSW::UnpackCommand(WXWPARAM wParam
, WXLPARAM lParam
,
2304 WORD
*id
, WXHWND
*hwnd
, WORD
*cmd
)
2306 *id
= LOWORD(wParam
);
2307 *hwnd
= (WXHWND
)lParam
;
2308 *cmd
= HIWORD(wParam
);
2311 void wxWindowMSW::UnpackActivate(WXWPARAM wParam
, WXLPARAM lParam
,
2312 WXWORD
*state
, WXWORD
*minimized
, WXHWND
*hwnd
)
2314 *state
= LOWORD(wParam
);
2315 *minimized
= HIWORD(wParam
);
2316 *hwnd
= (WXHWND
)lParam
;
2319 void wxWindowMSW::UnpackScroll(WXWPARAM wParam
, WXLPARAM lParam
,
2320 WXWORD
*code
, WXWORD
*pos
, WXHWND
*hwnd
)
2322 *code
= LOWORD(wParam
);
2323 *pos
= HIWORD(wParam
);
2324 *hwnd
= (WXHWND
)lParam
;
2327 void wxWindowMSW::UnpackCtlColor(WXWPARAM wParam
, WXLPARAM lParam
,
2328 WXHDC
*hdc
, WXHWND
*hwnd
)
2330 *hwnd
= (WXHWND
)lParam
;
2331 *hdc
= (WXHDC
)wParam
;
2334 void wxWindowMSW::UnpackMenuSelect(WXWPARAM wParam
, WXLPARAM lParam
,
2335 WXWORD
*item
, WXWORD
*flags
, WXHMENU
*hmenu
)
2337 *item
= (WXWORD
)wParam
;
2338 *flags
= HIWORD(wParam
);
2339 *hmenu
= (WXHMENU
)lParam
;
2342 // ---------------------------------------------------------------------------
2343 // Main wxWidgets window proc and the window proc for wxWindow
2344 // ---------------------------------------------------------------------------
2346 // Hook for new window just as it's being created, when the window isn't yet
2347 // associated with the handle
2348 static wxWindowMSW
*gs_winBeingCreated
= NULL
;
2350 // implementation of wxWindowCreationHook class: it just sets gs_winBeingCreated to the
2351 // window being created and insures that it's always unset back later
2352 wxWindowCreationHook::wxWindowCreationHook(wxWindowMSW
*winBeingCreated
)
2354 gs_winBeingCreated
= winBeingCreated
;
2357 wxWindowCreationHook::~wxWindowCreationHook()
2359 gs_winBeingCreated
= NULL
;
2363 LRESULT WXDLLEXPORT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
2365 // trace all messages - useful for the debugging
2367 wxLogTrace(wxTraceMessages
,
2368 wxT("Processing %s(hWnd=%08lx, wParam=%8lx, lParam=%8lx)"),
2369 wxGetMessageName(message
), (long)hWnd
, (long)wParam
, lParam
);
2370 #endif // __WXDEBUG__
2372 wxWindowMSW
*wnd
= wxFindWinFromHandle((WXHWND
) hWnd
);
2374 // when we get the first message for the HWND we just created, we associate
2375 // it with wxWindow stored in gs_winBeingCreated
2376 if ( !wnd
&& gs_winBeingCreated
)
2378 wxAssociateWinWithHandle(hWnd
, gs_winBeingCreated
);
2379 wnd
= gs_winBeingCreated
;
2380 gs_winBeingCreated
= NULL
;
2381 wnd
->SetHWND((WXHWND
)hWnd
);
2386 if ( wnd
&& wxEventLoop::AllowProcessing(wnd
) )
2387 rc
= wnd
->MSWWindowProc(message
, wParam
, lParam
);
2389 rc
= ::DefWindowProc(hWnd
, message
, wParam
, lParam
);
2394 WXLRESULT
wxWindowMSW::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
2396 // did we process the message?
2397 bool processed
= false;
2407 // for most messages we should return 0 when we do process the message
2415 processed
= HandleCreate((WXLPCREATESTRUCT
)lParam
, &mayCreate
);
2418 // return 0 to allow window creation
2419 rc
.result
= mayCreate
? 0 : -1;
2425 // never set processed to true and *always* pass WM_DESTROY to
2426 // DefWindowProc() as Windows may do some internal cleanup when
2427 // processing it and failing to pass the message along may cause
2428 // memory and resource leaks!
2429 (void)HandleDestroy();
2433 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
2437 processed
= HandleMove(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
2440 #if !defined(__WXWINCE__)
2443 LPRECT pRect
= (LPRECT
)lParam
;
2445 rc
.SetLeft(pRect
->left
);
2446 rc
.SetTop(pRect
->top
);
2447 rc
.SetRight(pRect
->right
);
2448 rc
.SetBottom(pRect
->bottom
);
2449 processed
= HandleMoving(rc
);
2451 pRect
->left
= rc
.GetLeft();
2452 pRect
->top
= rc
.GetTop();
2453 pRect
->right
= rc
.GetRight();
2454 pRect
->bottom
= rc
.GetBottom();
2461 LPRECT pRect
= (LPRECT
)lParam
;
2463 rc
.SetLeft(pRect
->left
);
2464 rc
.SetTop(pRect
->top
);
2465 rc
.SetRight(pRect
->right
);
2466 rc
.SetBottom(pRect
->bottom
);
2467 processed
= HandleSizing(rc
);
2469 pRect
->left
= rc
.GetLeft();
2470 pRect
->top
= rc
.GetTop();
2471 pRect
->right
= rc
.GetRight();
2472 pRect
->bottom
= rc
.GetBottom();
2476 #endif // !__WXWINCE__
2478 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
2479 case WM_ACTIVATEAPP
:
2480 // This implicitly sends a wxEVT_ACTIVATE_APP event
2481 wxTheApp
->SetActive(wParam
!= 0, FindFocus());
2487 WXWORD state
, minimized
;
2489 UnpackActivate(wParam
, lParam
, &state
, &minimized
, &hwnd
);
2491 processed
= HandleActivate(state
, minimized
!= 0, (WXHWND
)hwnd
);
2496 processed
= HandleSetFocus((WXHWND
)(HWND
)wParam
);
2500 processed
= HandleKillFocus((WXHWND
)(HWND
)wParam
);
2503 case WM_PRINTCLIENT
:
2504 processed
= HandlePrintClient((WXHDC
)wParam
);
2510 wxPaintDCEx
dc((wxWindow
*)this, (WXHDC
)wParam
);
2512 processed
= HandlePaint();
2516 processed
= HandlePaint();
2521 #ifdef __WXUNIVERSAL__
2522 // Universal uses its own wxFrame/wxDialog, so we don't receive
2523 // close events unless we have this.
2525 #endif // __WXUNIVERSAL__
2527 // don't let the DefWindowProc() destroy our window - we'll do it
2528 // ourselves in ~wxWindow
2534 processed
= HandleShow(wParam
!= 0, (int)lParam
);
2538 processed
= HandleMouseMove(GET_X_LPARAM(lParam
),
2539 GET_Y_LPARAM(lParam
),
2543 #ifdef HAVE_TRACKMOUSEEVENT
2545 // filter out excess WM_MOUSELEAVE events sent after PopupMenu() (on XP at least)
2546 if ( m_mouseInWindow
)
2548 GenerateMouseLeave();
2551 // always pass processed back as false, this allows the window
2552 // manager to process the message too. This is needed to
2553 // ensure windows XP themes work properly as the mouse moves
2554 // over widgets like buttons. So don't set processed to true here.
2556 #endif // HAVE_TRACKMOUSEEVENT
2558 #if wxUSE_MOUSEWHEEL
2560 processed
= HandleMouseWheel(wParam
, lParam
);
2564 case WM_LBUTTONDOWN
:
2566 case WM_LBUTTONDBLCLK
:
2567 case WM_RBUTTONDOWN
:
2569 case WM_RBUTTONDBLCLK
:
2570 case WM_MBUTTONDOWN
:
2572 case WM_MBUTTONDBLCLK
:
2574 #ifdef __WXMICROWIN__
2575 // MicroWindows seems to ignore the fact that a window is
2576 // disabled. So catch mouse events and throw them away if
2578 wxWindowMSW
* win
= this;
2581 if (!win
->IsEnabled())
2587 win
= win
->GetParent();
2588 if ( !win
|| win
->IsTopLevel() )
2595 #endif // __WXMICROWIN__
2596 int x
= GET_X_LPARAM(lParam
),
2597 y
= GET_Y_LPARAM(lParam
);
2600 // redirect the event to a static control if necessary by
2601 // finding one under mouse because under CE the static controls
2602 // don't generate mouse events (even with SS_NOTIFY)
2604 if ( GetCapture() == this )
2606 // but don't do it if the mouse is captured by this window
2607 // because then it should really get this event itself
2612 win
= FindWindowForMouseEvent(this, &x
, &y
);
2614 // this should never happen
2615 wxCHECK_MSG( win
, 0,
2616 _T("FindWindowForMouseEvent() returned NULL") );
2619 if (IsContextMenuEnabled() && message
== WM_LBUTTONDOWN
)
2621 SHRGINFO shrgi
= {0};
2623 shrgi
.cbSize
= sizeof(SHRGINFO
);
2624 shrgi
.hwndClient
= (HWND
) GetHWND();
2628 shrgi
.dwFlags
= SHRG_RETURNCMD
;
2629 // shrgi.dwFlags = SHRG_NOTIFYPARENT;
2631 if (GN_CONTEXTMENU
== ::SHRecognizeGesture(&shrgi
))
2634 pt
= ClientToScreen(pt
);
2636 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
, GetId(), pt
);
2638 evtCtx
.SetEventObject(this);
2639 if (GetEventHandler()->ProcessEvent(evtCtx
))
2648 #else // !__WXWINCE__
2649 wxWindowMSW
*win
= this;
2650 #endif // __WXWINCE__/!__WXWINCE__
2652 processed
= win
->HandleMouseEvent(message
, x
, y
, wParam
);
2654 // if the app didn't eat the event, handle it in the default
2655 // way, that is by giving this window the focus
2658 // for the standard classes their WndProc sets the focus to
2659 // them anyhow and doing it from here results in some weird
2660 // problems, so don't do it for them (unnecessary anyhow)
2661 if ( !win
->IsOfStandardClass() )
2663 if ( message
== WM_LBUTTONDOWN
&& win
->AcceptsFocus() )
2675 case MM_JOY1BUTTONDOWN
:
2676 case MM_JOY2BUTTONDOWN
:
2677 case MM_JOY1BUTTONUP
:
2678 case MM_JOY2BUTTONUP
:
2679 processed
= HandleJoystickEvent(message
,
2680 GET_X_LPARAM(lParam
),
2681 GET_Y_LPARAM(lParam
),
2684 #endif // __WXMICROWIN__
2690 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
2692 processed
= HandleCommand(id
, cmd
, hwnd
);
2697 processed
= HandleNotify((int)wParam
, lParam
, &rc
.result
);
2700 // we only need to reply to WM_NOTIFYFORMAT manually when using MSLU,
2701 // otherwise DefWindowProc() does it perfectly fine for us, but MSLU
2702 // apparently doesn't always behave properly and needs some help
2703 #if wxUSE_UNICODE_MSLU && defined(NF_QUERY)
2704 case WM_NOTIFYFORMAT
:
2705 if ( lParam
== NF_QUERY
)
2708 rc
.result
= NFR_UNICODE
;
2711 #endif // wxUSE_UNICODE_MSLU
2713 // for these messages we must return true if process the message
2716 case WM_MEASUREITEM
:
2718 int idCtrl
= (UINT
)wParam
;
2719 if ( message
== WM_DRAWITEM
)
2721 processed
= MSWOnDrawItem(idCtrl
,
2722 (WXDRAWITEMSTRUCT
*)lParam
);
2726 processed
= MSWOnMeasureItem(idCtrl
,
2727 (WXMEASUREITEMSTRUCT
*)lParam
);
2734 #endif // defined(WM_DRAWITEM)
2737 if ( !IsOfStandardClass() )
2739 // we always want to get the char events
2740 rc
.result
= DLGC_WANTCHARS
;
2742 if ( GetWindowStyleFlag() & wxWANTS_CHARS
)
2744 // in fact, we want everything
2745 rc
.result
|= DLGC_WANTARROWS
|
2752 //else: get the dlg code from the DefWindowProc()
2757 // If this has been processed by an event handler, return 0 now
2758 // (we've handled it).
2759 m_lastKeydownProcessed
= HandleKeyDown((WORD
) wParam
, lParam
);
2760 if ( m_lastKeydownProcessed
)
2769 // we consider these messages "not interesting" to OnChar, so
2770 // just don't do anything more with them
2780 // avoid duplicate messages to OnChar for these ASCII keys:
2781 // they will be translated by TranslateMessage() and received
2813 // but set processed to false, not true to still pass them
2814 // to the control's default window proc - otherwise
2815 // built-in keyboard handling won't work
2820 // special case of VK_APPS: treat it the same as right mouse
2821 // click because both usually pop up a context menu
2823 processed
= HandleMouseEvent(WM_RBUTTONDOWN
, -1, -1, 0);
2828 // do generate a CHAR event
2829 processed
= HandleChar((WORD
)wParam
, lParam
);
2832 if (message
== WM_SYSKEYDOWN
) // Let Windows still handle the SYSKEYs
2839 // special case of VK_APPS: treat it the same as right mouse button
2840 if ( wParam
== VK_APPS
)
2842 processed
= HandleMouseEvent(WM_RBUTTONUP
, -1, -1, 0);
2847 processed
= HandleKeyUp((WORD
) wParam
, lParam
);
2852 case WM_CHAR
: // Always an ASCII character
2853 if ( m_lastKeydownProcessed
)
2855 // The key was handled in the EVT_KEY_DOWN and handling
2856 // a key in an EVT_KEY_DOWN handler is meant, by
2857 // design, to prevent EVT_CHARs from happening
2858 m_lastKeydownProcessed
= false;
2863 processed
= HandleChar((WORD
)wParam
, lParam
, true);
2869 processed
= HandleHotKey((WORD
)wParam
, lParam
);
2871 #endif // wxUSE_HOTKEY
2878 UnpackScroll(wParam
, lParam
, &code
, &pos
, &hwnd
);
2880 processed
= MSWOnScroll(message
== WM_HSCROLL
? wxHORIZONTAL
2886 // CTLCOLOR messages are sent by children to query the parent for their
2888 #ifndef __WXMICROWIN__
2889 case WM_CTLCOLORMSGBOX
:
2890 case WM_CTLCOLOREDIT
:
2891 case WM_CTLCOLORLISTBOX
:
2892 case WM_CTLCOLORBTN
:
2893 case WM_CTLCOLORDLG
:
2894 case WM_CTLCOLORSCROLLBAR
:
2895 case WM_CTLCOLORSTATIC
:
2899 UnpackCtlColor(wParam
, lParam
, &hdc
, &hwnd
);
2901 processed
= HandleCtlColor(&rc
.hBrush
, (WXHDC
)hdc
, (WXHWND
)hwnd
);
2904 #endif // !__WXMICROWIN__
2906 case WM_SYSCOLORCHANGE
:
2907 // the return value for this message is ignored
2908 processed
= HandleSysColorChange();
2911 #if !defined(__WXWINCE__)
2912 case WM_DISPLAYCHANGE
:
2913 processed
= HandleDisplayChange();
2917 case WM_PALETTECHANGED
:
2918 processed
= HandlePaletteChanged((WXHWND
) (HWND
) wParam
);
2921 case WM_CAPTURECHANGED
:
2922 processed
= HandleCaptureChanged((WXHWND
) (HWND
) lParam
);
2925 case WM_SETTINGCHANGE
:
2926 processed
= HandleSettingChange(wParam
, lParam
);
2929 case WM_QUERYNEWPALETTE
:
2930 processed
= HandleQueryNewPalette();
2934 processed
= HandleEraseBkgnd((WXHDC
)(HDC
)wParam
);
2937 // we processed the message, i.e. erased the background
2942 #if !defined(__WXWINCE__)
2944 processed
= HandleDropFiles(wParam
);
2949 processed
= HandleInitDialog((WXHWND
)(HWND
)wParam
);
2953 // we never set focus from here
2958 #if !defined(__WXWINCE__)
2959 case WM_QUERYENDSESSION
:
2960 processed
= HandleQueryEndSession(lParam
, &rc
.allow
);
2964 processed
= HandleEndSession(wParam
!= 0, lParam
);
2967 case WM_GETMINMAXINFO
:
2968 processed
= HandleGetMinMaxInfo((MINMAXINFO
*)lParam
);
2973 processed
= HandleSetCursor((WXHWND
)(HWND
)wParam
,
2974 LOWORD(lParam
), // hit test
2975 HIWORD(lParam
)); // mouse msg
2979 // returning TRUE stops the DefWindowProc() from further
2980 // processing this message - exactly what we need because we've
2981 // just set the cursor.
2986 #if wxUSE_ACCESSIBILITY
2989 //WPARAM dwFlags = (WPARAM) (DWORD) wParam;
2990 LPARAM dwObjId
= (LPARAM
) (DWORD
) lParam
;
2992 if (dwObjId
== (LPARAM
)OBJID_CLIENT
&& GetOrCreateAccessible())
2994 return LresultFromObject(IID_IAccessible
, wParam
, (IUnknown
*) GetAccessible()->GetIAccessible());
3000 #if defined(WM_HELP)
3003 // HELPINFO doesn't seem to be supported on WinCE.
3005 HELPINFO
* info
= (HELPINFO
*) lParam
;
3006 // Don't yet process menu help events, just windows
3007 if (info
->iContextType
== HELPINFO_WINDOW
)
3010 wxWindowMSW
* subjectOfHelp
= this;
3011 bool eventProcessed
= false;
3012 while (subjectOfHelp
&& !eventProcessed
)
3014 wxHelpEvent
helpEvent(wxEVT_HELP
,
3015 subjectOfHelp
->GetId(),
3019 wxPoint(info
->MousePos
.x
, info
->MousePos
.y
)
3023 helpEvent
.SetEventObject(this);
3025 GetEventHandler()->ProcessEvent(helpEvent
);
3027 // Go up the window hierarchy until the event is
3029 subjectOfHelp
= subjectOfHelp
->GetParent();
3032 processed
= eventProcessed
;
3035 else if (info
->iContextType
== HELPINFO_MENUITEM
)
3037 wxHelpEvent
helpEvent(wxEVT_HELP
, info
->iCtrlId
);
3038 helpEvent
.SetEventObject(this);
3039 processed
= GetEventHandler()->ProcessEvent(helpEvent
);
3042 //else: processed is already false
3048 #if !defined(__WXWINCE__)
3049 case WM_CONTEXTMENU
:
3051 // we don't convert from screen to client coordinates as
3052 // the event may be handled by a parent window
3053 wxPoint
pt(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
3055 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
, GetId(), pt
);
3057 // we could have got an event from our child, reflect it back
3058 // to it if this is the case
3059 wxWindowMSW
*win
= NULL
;
3060 if ( (WXHWND
)wParam
!= m_hWnd
)
3062 win
= FindItemByHWND((WXHWND
)wParam
);
3068 evtCtx
.SetEventObject(win
);
3069 processed
= win
->GetEventHandler()->ProcessEvent(evtCtx
);
3075 // we're only interested in our own menus, not MF_SYSMENU
3076 if ( HIWORD(wParam
) == MF_POPUP
)
3078 // handle menu chars for ownerdrawn menu items
3079 int i
= HandleMenuChar(toupper(LOWORD(wParam
)), lParam
);
3080 if ( i
!= wxNOT_FOUND
)
3082 rc
.result
= MAKELRESULT(i
, MNC_EXECUTE
);
3089 case WM_POWERBROADCAST
:
3092 processed
= HandlePower(wParam
, lParam
, &vetoed
);
3093 rc
.result
= processed
&& vetoed
? BROADCAST_QUERY_DENY
: TRUE
;
3096 #endif // __WXWINCE__
3102 wxLogTrace(wxTraceMessages
, wxT("Forwarding %s to DefWindowProc."),
3103 wxGetMessageName(message
));
3104 #endif // __WXDEBUG__
3105 rc
.result
= MSWDefWindowProc(message
, wParam
, lParam
);
3111 // ----------------------------------------------------------------------------
3112 // wxWindow <-> HWND map
3113 // ----------------------------------------------------------------------------
3115 wxWinHashTable
*wxWinHandleHash
= NULL
;
3117 wxWindow
*wxFindWinFromHandle(WXHWND hWnd
)
3119 return (wxWindow
*)wxWinHandleHash
->Get((long)hWnd
);
3122 void wxAssociateWinWithHandle(HWND hWnd
, wxWindowMSW
*win
)
3124 // adding NULL hWnd is (first) surely a result of an error and
3125 // (secondly) breaks menu command processing
3126 wxCHECK_RET( hWnd
!= (HWND
)NULL
,
3127 wxT("attempt to add a NULL hWnd to window list ignored") );
3129 wxWindow
*oldWin
= wxFindWinFromHandle((WXHWND
) hWnd
);
3131 if ( oldWin
&& (oldWin
!= win
) )
3133 wxLogDebug(wxT("HWND %X already associated with another window (%s)"),
3134 (int) hWnd
, win
->GetClassInfo()->GetClassName());
3137 #endif // __WXDEBUG__
3140 wxWinHandleHash
->Put((long)hWnd
, (wxWindow
*)win
);
3144 void wxRemoveHandleAssociation(wxWindowMSW
*win
)
3146 wxWinHandleHash
->Delete((long)win
->GetHWND());
3149 // ----------------------------------------------------------------------------
3150 // various MSW speciic class dependent functions
3151 // ----------------------------------------------------------------------------
3153 // Default destroyer - override if you destroy it in some other way
3154 // (e.g. with MDI child windows)
3155 void wxWindowMSW::MSWDestroyWindow()
3159 bool wxWindowMSW::MSWGetCreateWindowCoords(const wxPoint
& pos
,
3162 int& w
, int& h
) const
3164 // yes, those are just some arbitrary hardcoded numbers
3165 static const int DEFAULT_Y
= 200;
3167 bool nonDefault
= false;
3169 if ( pos
.x
== wxDefaultCoord
)
3171 // if x is set to CW_USEDEFAULT, y parameter is ignored anyhow so we
3172 // can just as well set it to CW_USEDEFAULT as well
3178 // OTOH, if x is not set to CW_USEDEFAULT, y shouldn't be set to it
3179 // neither because it is not handled as a special value by Windows then
3180 // and so we have to choose some default value for it
3182 y
= pos
.y
== wxDefaultCoord
? DEFAULT_Y
: pos
.y
;
3188 NB: there used to be some code here which set the initial size of the
3189 window to the client size of the parent if no explicit size was
3190 specified. This was wrong because wxWidgets programs often assume
3191 that they get a WM_SIZE (EVT_SIZE) upon creation, however this broke
3192 it. To see why, you should understand that Windows sends WM_SIZE from
3193 inside ::CreateWindow() anyhow. However, ::CreateWindow() is called
3194 from some base class ctor and so this WM_SIZE is not processed in the
3195 real class' OnSize() (because it's not fully constructed yet and the
3196 event goes to some base class OnSize() instead). So the WM_SIZE we
3197 rely on is the one sent when the parent frame resizes its children
3198 but here is the problem: if the child already has just the right
3199 size, nothing will happen as both wxWidgets and Windows check for
3200 this and ignore any attempts to change the window size to the size it
3201 already has - so no WM_SIZE would be sent.
3205 // we don't use CW_USEDEFAULT here for several reasons:
3207 // 1. it results in huge frames on modern screens (1000*800 is not
3208 // uncommon on my 1280*1024 screen) which is way too big for a half
3209 // empty frame of most of wxWidgets samples for example)
3211 // 2. it is buggy for frames with wxFRAME_TOOL_WINDOW style for which
3212 // the default is for whatever reason 8*8 which breaks client <->
3213 // window size calculations (it would be nice if it didn't, but it
3214 // does and the simplest way to fix it seemed to change the broken
3215 // default size anyhow)
3217 // 3. there is just no advantage in doing it: with x and y it is
3218 // possible that [future versions of] Windows position the new top
3219 // level window in some smart way which we can't do, but we can
3220 // guess a reasonably good size for a new window just as well
3223 // However, on PocketPC devices, we must use the default
3224 // size if possible.
3226 if (size
.x
== wxDefaultCoord
)
3230 if (size
.y
== wxDefaultCoord
)
3235 if ( size
.x
== wxDefaultCoord
|| size
.y
== wxDefaultCoord
)
3239 w
= WidthDefault(size
.x
);
3240 h
= HeightDefault(size
.y
);
3243 AdjustForParentClientOrigin(x
, y
);
3248 WXHWND
wxWindowMSW::MSWGetParent() const
3250 return m_parent
? m_parent
->GetHWND() : WXHWND(NULL
);
3253 bool wxWindowMSW::MSWCreate(const wxChar
*wclass
,
3254 const wxChar
*title
,
3258 WXDWORD extendedStyle
)
3260 // choose the position/size for the new window
3262 (void)MSWGetCreateWindowCoords(pos
, size
, x
, y
, w
, h
);
3264 // controlId is menu handle for the top level windows, so set it to 0
3265 // unless we're creating a child window
3266 int controlId
= style
& WS_CHILD
? GetId() : 0;
3268 // for each class "Foo" we have we also have "FooNR" ("no repaint") class
3269 // which is the same but without CS_[HV]REDRAW class styles so using it
3270 // ensures that the window is not fully repainted on each resize
3271 wxString
className(wclass
);
3272 if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE
) )
3274 className
+= wxT("NR");
3277 // do create the window
3278 wxWindowCreationHook
hook(this);
3280 m_hWnd
= (WXHWND
)::CreateWindowEx
3284 title
? title
: m_windowName
.c_str(),
3287 (HWND
)MSWGetParent(),
3290 NULL
// no extra data
3295 wxLogSysError(_("Can't create window of class %s"), className
.c_str());
3300 SubclassWin(m_hWnd
);
3305 // ===========================================================================
3306 // MSW message handlers
3307 // ===========================================================================
3309 // ---------------------------------------------------------------------------
3311 // ---------------------------------------------------------------------------
3313 bool wxWindowMSW::HandleNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
3315 #ifndef __WXMICROWIN__
3316 LPNMHDR hdr
= (LPNMHDR
)lParam
;
3317 HWND hWnd
= hdr
->hwndFrom
;
3318 wxWindow
*win
= wxFindWinFromHandle((WXHWND
)hWnd
);
3320 // if the control is one of our windows, let it handle the message itself
3323 return win
->MSWOnNotify(idCtrl
, lParam
, result
);
3326 // VZ: why did we do it? normally this is unnecessary and, besides, it
3327 // breaks the message processing for the toolbars because the tooltip
3328 // notifications were being forwarded to the toolbar child controls
3329 // (if it had any) before being passed to the toolbar itself, so in my
3330 // example the tooltip for the combobox was always shown instead of the
3331 // correct button tooltips
3333 // try all our children
3334 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
3337 wxWindow
*child
= node
->GetData();
3338 if ( child
->MSWOnNotify(idCtrl
, lParam
, result
) )
3343 node
= node
->GetNext();
3347 // by default, handle it ourselves
3348 return MSWOnNotify(idCtrl
, lParam
, result
);
3349 #else // __WXMICROWIN__
3356 bool wxWindowMSW::HandleTooltipNotify(WXUINT code
,
3358 const wxString
& ttip
)
3360 // I don't know why it happens, but the versions of comctl32.dll starting
3361 // from 4.70 sometimes send TTN_NEEDTEXTW even to ANSI programs (normally,
3362 // this message is supposed to be sent to Unicode programs only) -- hence
3363 // we need to handle it as well, otherwise no tooltips will be shown in
3366 if ( !(code
== (WXUINT
) TTN_NEEDTEXTA
|| code
== (WXUINT
) TTN_NEEDTEXTW
)
3369 // not a tooltip message or no tooltip to show anyhow
3374 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
3376 // We don't want to use the szText buffer because it has a limit of 80
3377 // bytes and this is not enough, especially for Unicode build where it
3378 // limits the tooltip string length to only 40 characters
3380 // The best would be, of course, to not impose any length limitations at
3381 // all but then the buffer would have to be dynamic and someone would have
3382 // to free it and we don't have the tooltip owner object here any more, so
3383 // for now use our own static buffer with a higher fixed max length.
3385 // Note that using a static buffer should not be a problem as only a single
3386 // tooltip can be shown at the same time anyhow.
3388 if ( code
== (WXUINT
) TTN_NEEDTEXTW
)
3390 // We need to convert tooltip from multi byte to Unicode on the fly.
3391 static wchar_t buf
[513];
3393 // Truncate tooltip length if needed as otherwise we might not have
3394 // enough space for it in the buffer and MultiByteToWideChar() would
3396 size_t tipLength
= wxMin(ttip
.length(), WXSIZEOF(buf
) - 1);
3398 // Convert to WideChar without adding the NULL character. The NULL
3399 // character is added afterwards (this is more efficient).
3400 int len
= ::MultiByteToWideChar
3412 wxLogLastError(_T("MultiByteToWideChar()"));
3416 ttText
->lpszText
= (LPSTR
) buf
;
3418 else // TTN_NEEDTEXTA
3419 #endif // !wxUSE_UNICODE
3421 // we get here if we got TTN_NEEDTEXTA (only happens in ANSI build) or
3422 // if we got TTN_NEEDTEXTW in Unicode build: in this case we just have
3423 // to copy the string we have into the buffer
3424 static wxChar buf
[513];
3425 wxStrncpy(buf
, ttip
.c_str(), WXSIZEOF(buf
) - 1);
3426 buf
[WXSIZEOF(buf
) - 1] = _T('\0');
3427 ttText
->lpszText
= buf
;
3433 #endif // wxUSE_TOOLTIPS
3435 bool wxWindowMSW::MSWOnNotify(int WXUNUSED(idCtrl
),
3437 WXLPARAM
* WXUNUSED(result
))
3442 NMHDR
* hdr
= (NMHDR
*)lParam
;
3443 if ( HandleTooltipNotify(hdr
->code
, lParam
, m_tooltip
->GetTip()))
3450 wxUnusedVar(lParam
);
3451 #endif // wxUSE_TOOLTIPS
3456 // ---------------------------------------------------------------------------
3457 // end session messages
3458 // ---------------------------------------------------------------------------
3460 bool wxWindowMSW::HandleQueryEndSession(long logOff
, bool *mayEnd
)
3462 #ifdef ENDSESSION_LOGOFF
3463 wxCloseEvent
event(wxEVT_QUERY_END_SESSION
, wxID_ANY
);
3464 event
.SetEventObject(wxTheApp
);
3465 event
.SetCanVeto(true);
3466 event
.SetLoggingOff(logOff
== (long)ENDSESSION_LOGOFF
);
3468 bool rc
= wxTheApp
->ProcessEvent(event
);
3472 // we may end only if the app didn't veto session closing (double
3474 *mayEnd
= !event
.GetVeto();
3479 wxUnusedVar(logOff
);
3480 wxUnusedVar(mayEnd
);
3485 bool wxWindowMSW::HandleEndSession(bool endSession
, long logOff
)
3487 #ifdef ENDSESSION_LOGOFF
3488 // do nothing if the session isn't ending
3493 if ( (this != wxTheApp
->GetTopWindow()) )
3496 wxCloseEvent
event(wxEVT_END_SESSION
, wxID_ANY
);
3497 event
.SetEventObject(wxTheApp
);
3498 event
.SetCanVeto(false);
3499 event
.SetLoggingOff( (logOff
== (long)ENDSESSION_LOGOFF
) );
3501 return wxTheApp
->ProcessEvent(event
);
3503 wxUnusedVar(endSession
);
3504 wxUnusedVar(logOff
);
3509 // ---------------------------------------------------------------------------
3510 // window creation/destruction
3511 // ---------------------------------------------------------------------------
3513 bool wxWindowMSW::HandleCreate(WXLPCREATESTRUCT
WXUNUSED_IN_WINCE(cs
),
3516 // VZ: why is this commented out for WinCE? If it doesn't support
3517 // WS_EX_CONTROLPARENT at all it should be somehow handled globally,
3518 // not with multiple #ifdef's!
3520 if ( ((CREATESTRUCT
*)cs
)->dwExStyle
& WS_EX_CONTROLPARENT
)
3521 EnsureParentHasControlParentStyle(GetParent());
3522 #endif // !__WXWINCE__
3529 bool wxWindowMSW::HandleDestroy()
3533 // delete our drop target if we've got one
3534 #if wxUSE_DRAG_AND_DROP
3535 if ( m_dropTarget
!= NULL
)
3537 m_dropTarget
->Revoke(m_hWnd
);
3539 delete m_dropTarget
;
3540 m_dropTarget
= NULL
;
3542 #endif // wxUSE_DRAG_AND_DROP
3544 // WM_DESTROY handled
3548 // ---------------------------------------------------------------------------
3550 // ---------------------------------------------------------------------------
3552 bool wxWindowMSW::HandleActivate(int state
,
3553 bool WXUNUSED(minimized
),
3554 WXHWND
WXUNUSED(activate
))
3556 wxActivateEvent
event(wxEVT_ACTIVATE
,
3557 (state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
),
3559 event
.SetEventObject(this);
3561 return GetEventHandler()->ProcessEvent(event
);
3564 bool wxWindowMSW::HandleSetFocus(WXHWND hwnd
)
3566 // Strangly enough, some controls get set focus events when they are being
3567 // deleted, even if they already had focus before.
3568 if ( m_isBeingDeleted
)
3573 // notify the parent keeping track of focus for the kbd navigation
3574 // purposes that we got it
3575 wxChildFocusEvent
eventFocus((wxWindow
*)this);
3576 (void)GetEventHandler()->ProcessEvent(eventFocus
);
3582 m_caret
->OnSetFocus();
3584 #endif // wxUSE_CARET
3587 // If it's a wxTextCtrl don't send the event as it will be done
3588 // after the control gets to process it from EN_FOCUS handler
3589 if ( wxDynamicCastThis(wxTextCtrl
) )
3593 #endif // wxUSE_TEXTCTRL
3595 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
3596 event
.SetEventObject(this);
3598 // wxFindWinFromHandle() may return NULL, it is ok
3599 event
.SetWindow(wxFindWinFromHandle(hwnd
));
3601 return GetEventHandler()->ProcessEvent(event
);
3604 bool wxWindowMSW::HandleKillFocus(WXHWND hwnd
)
3610 m_caret
->OnKillFocus();
3612 #endif // wxUSE_CARET
3615 // If it's a wxTextCtrl don't send the event as it will be done
3616 // after the control gets to process it.
3617 wxTextCtrl
*ctrl
= wxDynamicCastThis(wxTextCtrl
);
3624 // Don't send the event when in the process of being deleted. This can
3625 // only cause problems if the event handler tries to access the object.
3626 if ( m_isBeingDeleted
)
3631 wxFocusEvent
event(wxEVT_KILL_FOCUS
, m_windowId
);
3632 event
.SetEventObject(this);
3634 // wxFindWinFromHandle() may return NULL, it is ok
3635 event
.SetWindow(wxFindWinFromHandle(hwnd
));
3637 return GetEventHandler()->ProcessEvent(event
);
3640 // ---------------------------------------------------------------------------
3642 // ---------------------------------------------------------------------------
3644 void wxWindowMSW::SetLabel( const wxString
& label
)
3646 SetWindowText(GetHwnd(), label
.c_str());
3649 wxString
wxWindowMSW::GetLabel() const
3651 return wxGetWindowText(GetHWND());
3654 // ---------------------------------------------------------------------------
3656 // ---------------------------------------------------------------------------
3658 bool wxWindowMSW::HandleShow(bool show
, int WXUNUSED(status
))
3660 wxShowEvent
event(GetId(), show
);
3661 event
.SetEventObject(this);
3663 return GetEventHandler()->ProcessEvent(event
);
3666 bool wxWindowMSW::HandleInitDialog(WXHWND
WXUNUSED(hWndFocus
))
3668 wxInitDialogEvent
event(GetId());
3669 event
.SetEventObject(this);
3671 return GetEventHandler()->ProcessEvent(event
);
3674 bool wxWindowMSW::HandleDropFiles(WXWPARAM wParam
)
3676 #if defined (__WXMICROWIN__) || defined(__WXWINCE__)
3677 wxUnusedVar(wParam
);
3679 #else // __WXMICROWIN__
3680 HDROP hFilesInfo
= (HDROP
) wParam
;
3682 // Get the total number of files dropped
3683 UINT gwFilesDropped
= ::DragQueryFile
3691 wxString
*files
= new wxString
[gwFilesDropped
];
3692 for ( UINT wIndex
= 0; wIndex
< gwFilesDropped
; wIndex
++ )
3694 // first get the needed buffer length (+1 for terminating NUL)
3695 size_t len
= ::DragQueryFile(hFilesInfo
, wIndex
, NULL
, 0) + 1;
3697 // and now get the file name
3698 ::DragQueryFile(hFilesInfo
, wIndex
,
3699 wxStringBuffer(files
[wIndex
], len
), len
);
3701 DragFinish (hFilesInfo
);
3703 wxDropFilesEvent
event(wxEVT_DROP_FILES
, gwFilesDropped
, files
);
3704 event
.SetEventObject(this);
3707 DragQueryPoint(hFilesInfo
, (LPPOINT
) &dropPoint
);
3708 event
.m_pos
.x
= dropPoint
.x
;
3709 event
.m_pos
.y
= dropPoint
.y
;
3711 return GetEventHandler()->ProcessEvent(event
);
3716 bool wxWindowMSW::HandleSetCursor(WXHWND
WXUNUSED(hWnd
),
3718 int WXUNUSED(mouseMsg
))
3720 #ifndef __WXMICROWIN__
3721 // the logic is as follows:
3722 // -1. don't set cursor for non client area, including but not limited to
3723 // the title bar, scrollbars, &c
3724 // 0. allow the user to override default behaviour by using EVT_SET_CURSOR
3725 // 1. if we have the cursor set it unless wxIsBusy()
3726 // 2. if we're a top level window, set some cursor anyhow
3727 // 3. if wxIsBusy(), set the busy cursor, otherwise the global one
3729 if ( nHitTest
!= HTCLIENT
)
3734 HCURSOR hcursor
= 0;
3736 // first ask the user code - it may wish to set the cursor in some very
3737 // specific way (for example, depending on the current position)
3740 if ( !::GetCursorPosWinCE(&pt
))
3742 if ( !::GetCursorPos(&pt
) )
3745 wxLogLastError(wxT("GetCursorPos"));
3750 ScreenToClient(&x
, &y
);
3751 wxSetCursorEvent
event(x
, y
);
3753 bool processedEvtSetCursor
= GetEventHandler()->ProcessEvent(event
);
3754 if ( processedEvtSetCursor
&& event
.HasCursor() )
3756 hcursor
= GetHcursorOf(event
.GetCursor());
3761 bool isBusy
= wxIsBusy();
3763 // the test for processedEvtSetCursor is here to prevent using m_cursor
3764 // if the user code caught EVT_SET_CURSOR() and returned nothing from
3765 // it - this is a way to say that our cursor shouldn't be used for this
3767 if ( !processedEvtSetCursor
&& m_cursor
.Ok() )
3769 hcursor
= GetHcursorOf(m_cursor
);
3776 hcursor
= wxGetCurrentBusyCursor();
3778 else if ( !hcursor
)
3780 const wxCursor
*cursor
= wxGetGlobalCursor();
3781 if ( cursor
&& cursor
->Ok() )
3783 hcursor
= GetHcursorOf(*cursor
);
3791 // wxLogDebug("HandleSetCursor: Setting cursor %ld", (long) hcursor);
3793 ::SetCursor(hcursor
);
3795 // cursor set, stop here
3798 #endif // __WXMICROWIN__
3800 // pass up the window chain
3804 bool wxWindowMSW::HandlePower(WXWPARAM
WXUNUSED_IN_WINCE(wParam
),
3805 WXLPARAM
WXUNUSED(lParam
),
3806 bool *WXUNUSED_IN_WINCE(vetoed
))
3812 wxEventType evtType
;
3815 case PBT_APMQUERYSUSPEND
:
3816 evtType
= wxEVT_POWER_SUSPENDING
;
3819 case PBT_APMQUERYSUSPENDFAILED
:
3820 evtType
= wxEVT_POWER_SUSPEND_CANCEL
;
3823 case PBT_APMSUSPEND
:
3824 evtType
= wxEVT_POWER_SUSPENDED
;
3827 case PBT_APMRESUMESUSPEND
:
3828 #ifdef PBT_APMRESUMEAUTOMATIC
3829 case PBT_APMRESUMEAUTOMATIC
:
3831 evtType
= wxEVT_POWER_RESUME
;
3835 wxLogDebug(_T("Unknown WM_POWERBROADCAST(%d) event"), wParam
);
3838 // these messages are currently not mapped to wx events
3839 case PBT_APMQUERYSTANDBY
:
3840 case PBT_APMQUERYSTANDBYFAILED
:
3841 case PBT_APMSTANDBY
:
3842 case PBT_APMRESUMESTANDBY
:
3843 case PBT_APMBATTERYLOW
:
3844 case PBT_APMPOWERSTATUSCHANGE
:
3845 case PBT_APMOEMEVENT
:
3846 case PBT_APMRESUMECRITICAL
:
3847 evtType
= wxEVT_NULL
;
3851 // don't handle unknown messages
3852 if ( evtType
== wxEVT_NULL
)
3855 // TODO: notify about PBTF_APMRESUMEFROMFAILURE in case of resume events?
3857 wxPowerEvent
event(evtType
);
3858 if ( !GetEventHandler()->ProcessEvent(event
) )
3861 *vetoed
= event
.IsVetoed();
3867 // ---------------------------------------------------------------------------
3868 // owner drawn stuff
3869 // ---------------------------------------------------------------------------
3871 #if (wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE) || \
3872 (wxUSE_CONTROLS && !defined(__WXUNIVERSAL__))
3873 #define WXUNUSED_UNLESS_ODRAWN(param) param
3875 #define WXUNUSED_UNLESS_ODRAWN(param)
3879 wxWindowMSW::MSWOnDrawItem(int WXUNUSED_UNLESS_ODRAWN(id
),
3880 WXDRAWITEMSTRUCT
* WXUNUSED_UNLESS_ODRAWN(itemStruct
))
3882 #if wxUSE_OWNER_DRAWN
3884 #if wxUSE_MENUS_NATIVE
3885 // is it a menu item?
3886 DRAWITEMSTRUCT
*pDrawStruct
= (DRAWITEMSTRUCT
*)itemStruct
;
3887 if ( id
== 0 && pDrawStruct
->CtlType
== ODT_MENU
)
3889 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pDrawStruct
->itemData
);
3891 // see comment before the same test in MSWOnMeasureItem() below
3895 wxCHECK_MSG( wxDynamicCast(pMenuItem
, wxMenuItem
),
3896 false, _T("MSWOnDrawItem: bad wxMenuItem pointer") );
3898 // prepare to call OnDrawItem(): notice using of wxDCTemp to prevent
3899 // the DC from being released
3900 wxDCTemp
dc((WXHDC
)pDrawStruct
->hDC
);
3901 wxRect
rect(pDrawStruct
->rcItem
.left
, pDrawStruct
->rcItem
.top
,
3902 pDrawStruct
->rcItem
.right
- pDrawStruct
->rcItem
.left
,
3903 pDrawStruct
->rcItem
.bottom
- pDrawStruct
->rcItem
.top
);
3905 return pMenuItem
->OnDrawItem
3909 (wxOwnerDrawn::wxODAction
)pDrawStruct
->itemAction
,
3910 (wxOwnerDrawn::wxODStatus
)pDrawStruct
->itemState
3913 #endif // wxUSE_MENUS_NATIVE
3915 #endif // USE_OWNER_DRAWN
3917 #if wxUSE_CONTROLS && !defined(__WXUNIVERSAL__)
3919 #if wxUSE_OWNER_DRAWN
3920 wxControl
*item
= wxDynamicCast(FindItem(id
), wxControl
);
3921 #else // !wxUSE_OWNER_DRAWN
3922 // we may still have owner-drawn buttons internally because we have to make
3923 // them owner-drawn to support colour change
3926 wxDynamicCast(FindItem(id
), wxButton
)
3931 #endif // USE_OWNER_DRAWN
3935 return item
->MSWOnDraw(itemStruct
);
3938 #endif // wxUSE_CONTROLS
3944 wxWindowMSW::MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*itemStruct
)
3946 #if wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
3947 // is it a menu item?
3948 MEASUREITEMSTRUCT
*pMeasureStruct
= (MEASUREITEMSTRUCT
*)itemStruct
;
3949 if ( id
== 0 && pMeasureStruct
->CtlType
== ODT_MENU
)
3951 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pMeasureStruct
->itemData
);
3953 // according to Carsten Fuchs the pointer may be NULL under XP if an
3954 // MDI child frame is initially maximized, see this for more info:
3955 // http://article.gmane.org/gmane.comp.lib.wxwidgets.general/27745
3957 // so silently ignore it instead of asserting
3961 wxCHECK_MSG( wxDynamicCast(pMenuItem
, wxMenuItem
),
3962 false, _T("MSWOnMeasureItem: bad wxMenuItem pointer") );
3965 bool rc
= pMenuItem
->OnMeasureItem(&w
, &h
);
3967 pMeasureStruct
->itemWidth
= w
;
3968 pMeasureStruct
->itemHeight
= h
;
3973 wxControl
*item
= wxDynamicCast(FindItem(id
), wxControl
);
3976 return item
->MSWOnMeasure(itemStruct
);
3980 wxUnusedVar(itemStruct
);
3981 #endif // wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
3986 // ---------------------------------------------------------------------------
3987 // colours and palettes
3988 // ---------------------------------------------------------------------------
3990 bool wxWindowMSW::HandleSysColorChange()
3992 wxSysColourChangedEvent event
;
3993 event
.SetEventObject(this);
3995 (void)GetEventHandler()->ProcessEvent(event
);
3997 // always let the system carry on the default processing to allow the
3998 // native controls to react to the colours update
4002 bool wxWindowMSW::HandleDisplayChange()
4004 wxDisplayChangedEvent event
;
4005 event
.SetEventObject(this);
4007 return GetEventHandler()->ProcessEvent(event
);
4010 #ifndef __WXMICROWIN__
4012 bool wxWindowMSW::HandleCtlColor(WXHBRUSH
*brush
, WXHDC hDC
, WXHWND hWnd
)
4014 #if !wxUSE_CONTROLS || defined(__WXUNIVERSAL__)
4018 wxControl
*item
= wxDynamicCast(FindItemByHWND(hWnd
, true), wxControl
);
4021 *brush
= item
->MSWControlColor(hDC
, hWnd
);
4023 #endif // wxUSE_CONTROLS
4026 return *brush
!= NULL
;
4029 #endif // __WXMICROWIN__
4031 bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange
)
4034 // same as below except we don't respond to our own messages
4035 if ( hWndPalChange
!= GetHWND() )
4037 // check to see if we our our parents have a custom palette
4038 wxWindowMSW
*win
= this;
4039 while ( win
&& !win
->HasCustomPalette() )
4041 win
= win
->GetParent();
4044 if ( win
&& win
->HasCustomPalette() )
4046 // realize the palette to see whether redrawing is needed
4047 HDC hdc
= ::GetDC((HWND
) hWndPalChange
);
4048 win
->m_palette
.SetHPALETTE((WXHPALETTE
)
4049 ::SelectPalette(hdc
, GetHpaletteOf(win
->m_palette
), FALSE
));
4051 int result
= ::RealizePalette(hdc
);
4053 // restore the palette (before releasing the DC)
4054 win
->m_palette
.SetHPALETTE((WXHPALETTE
)
4055 ::SelectPalette(hdc
, GetHpaletteOf(win
->m_palette
), FALSE
));
4056 ::RealizePalette(hdc
);
4057 ::ReleaseDC((HWND
) hWndPalChange
, hdc
);
4059 // now check for the need to redraw
4061 ::InvalidateRect((HWND
) hWndPalChange
, NULL
, TRUE
);
4065 #endif // wxUSE_PALETTE
4067 wxPaletteChangedEvent
event(GetId());
4068 event
.SetEventObject(this);
4069 event
.SetChangedWindow(wxFindWinFromHandle(hWndPalChange
));
4071 return GetEventHandler()->ProcessEvent(event
);
4074 bool wxWindowMSW::HandleCaptureChanged(WXHWND hWndGainedCapture
)
4076 wxMouseCaptureChangedEvent
event(GetId(), wxFindWinFromHandle(hWndGainedCapture
));
4077 event
.SetEventObject(this);
4079 return GetEventHandler()->ProcessEvent(event
);
4082 bool wxWindowMSW::HandleSettingChange(WXWPARAM wParam
, WXLPARAM lParam
)
4084 // despite MSDN saying "(This message cannot be sent directly to a window.)"
4085 // we need to send this to child windows (it is only sent to top-level
4086 // windows) so {list,tree}ctrls can adjust their font size if necessary
4087 // this is exactly how explorer does it to enable the font size changes
4089 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
4092 // top-level windows already get this message from the system
4093 wxWindow
*win
= node
->GetData();
4094 if ( !win
->IsTopLevel() )
4096 ::SendMessage(GetHwndOf(win
), WM_SETTINGCHANGE
, wParam
, lParam
);
4099 node
= node
->GetNext();
4102 // let the system handle it
4106 bool wxWindowMSW::HandleQueryNewPalette()
4110 // check to see if we our our parents have a custom palette
4111 wxWindowMSW
*win
= this;
4112 while (!win
->HasCustomPalette() && win
->GetParent()) win
= win
->GetParent();
4113 if (win
->HasCustomPalette()) {
4114 /* realize the palette to see whether redrawing is needed */
4115 HDC hdc
= ::GetDC((HWND
) GetHWND());
4116 win
->m_palette
.SetHPALETTE( (WXHPALETTE
)
4117 ::SelectPalette(hdc
, (HPALETTE
) win
->m_palette
.GetHPALETTE(), FALSE
) );
4119 int result
= ::RealizePalette(hdc
);
4120 /* restore the palette (before releasing the DC) */
4121 win
->m_palette
.SetHPALETTE( (WXHPALETTE
)
4122 ::SelectPalette(hdc
, (HPALETTE
) win
->m_palette
.GetHPALETTE(), TRUE
) );
4123 ::RealizePalette(hdc
);
4124 ::ReleaseDC((HWND
) GetHWND(), hdc
);
4125 /* now check for the need to redraw */
4127 ::InvalidateRect((HWND
) GetHWND(), NULL
, TRUE
);
4129 #endif // wxUSE_PALETTE
4131 wxQueryNewPaletteEvent
event(GetId());
4132 event
.SetEventObject(this);
4134 return GetEventHandler()->ProcessEvent(event
) && event
.GetPaletteRealized();
4137 // Responds to colour changes: passes event on to children.
4138 void wxWindowMSW::OnSysColourChanged(wxSysColourChangedEvent
& WXUNUSED(event
))
4140 // the top level window also reset the standard colour map as it might have
4141 // changed (there is no need to do it for the non top level windows as we
4142 // only have to do it once)
4146 gs_hasStdCmap
= false;
4148 wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
4151 // Only propagate to non-top-level windows because Windows already
4152 // sends this event to all top-level ones
4153 wxWindow
*win
= node
->GetData();
4154 if ( !win
->IsTopLevel() )
4156 // we need to send the real WM_SYSCOLORCHANGE and not just trigger
4157 // EVT_SYS_COLOUR_CHANGED call because the latter wouldn't work for
4158 // the standard controls
4159 ::SendMessage(GetHwndOf(win
), WM_SYSCOLORCHANGE
, 0, 0);
4162 node
= node
->GetNext();
4166 extern wxCOLORMAP
*wxGetStdColourMap()
4168 static COLORREF s_stdColours
[wxSTD_COL_MAX
];
4169 static wxCOLORMAP s_cmap
[wxSTD_COL_MAX
];
4171 if ( !gs_hasStdCmap
)
4173 static bool s_coloursInit
= false;
4175 if ( !s_coloursInit
)
4177 // When a bitmap is loaded, the RGB values can change (apparently
4178 // because Windows adjusts them to care for the old programs always
4179 // using 0xc0c0c0 while the transparent colour for the new Windows
4180 // versions is different). But we do this adjustment ourselves so
4181 // we want to avoid Windows' "help" and for this we need to have a
4182 // reference bitmap which can tell us what the RGB values change
4184 wxLogNull logNo
; // suppress error if we couldn't load the bitmap
4185 wxBitmap
stdColourBitmap(_T("wxBITMAP_STD_COLOURS"));
4186 if ( stdColourBitmap
.Ok() )
4188 // the pixels in the bitmap must correspond to wxSTD_COL_XXX!
4189 wxASSERT_MSG( stdColourBitmap
.GetWidth() == wxSTD_COL_MAX
,
4190 _T("forgot to update wxBITMAP_STD_COLOURS!") );
4193 memDC
.SelectObject(stdColourBitmap
);
4196 for ( size_t i
= 0; i
< WXSIZEOF(s_stdColours
); i
++ )
4198 memDC
.GetPixel(i
, 0, &colour
);
4199 s_stdColours
[i
] = wxColourToRGB(colour
);
4202 else // wxBITMAP_STD_COLOURS couldn't be loaded
4204 s_stdColours
[0] = RGB(000,000,000); // black
4205 s_stdColours
[1] = RGB(128,128,128); // dark grey
4206 s_stdColours
[2] = RGB(192,192,192); // light grey
4207 s_stdColours
[3] = RGB(255,255,255); // white
4208 //s_stdColours[4] = RGB(000,000,255); // blue
4209 //s_stdColours[5] = RGB(255,000,255); // magenta
4212 s_coloursInit
= true;
4215 gs_hasStdCmap
= true;
4217 // create the colour map
4218 #define INIT_CMAP_ENTRY(col) \
4219 s_cmap[wxSTD_COL_##col].from = s_stdColours[wxSTD_COL_##col]; \
4220 s_cmap[wxSTD_COL_##col].to = ::GetSysColor(COLOR_##col)
4222 INIT_CMAP_ENTRY(BTNTEXT
);
4223 INIT_CMAP_ENTRY(BTNSHADOW
);
4224 INIT_CMAP_ENTRY(BTNFACE
);
4225 INIT_CMAP_ENTRY(BTNHIGHLIGHT
);
4227 #undef INIT_CMAP_ENTRY
4233 // ---------------------------------------------------------------------------
4235 // ---------------------------------------------------------------------------
4237 bool wxWindowMSW::HandlePaint()
4239 HRGN hRegion
= ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
4241 wxLogLastError(wxT("CreateRectRgn"));
4242 if ( ::GetUpdateRgn(GetHwnd(), hRegion
, FALSE
) == ERROR
)
4243 wxLogLastError(wxT("GetUpdateRgn"));
4245 m_updateRegion
= wxRegion((WXHRGN
) hRegion
);
4247 wxPaintEvent
event(m_windowId
);
4248 event
.SetEventObject(this);
4250 bool processed
= GetEventHandler()->ProcessEvent(event
);
4252 // note that we must generate NC event after the normal one as otherwise
4253 // BeginPaint() will happily overwrite our decorations with the background
4255 wxNcPaintEvent
eventNc(m_windowId
);
4256 eventNc
.SetEventObject(this);
4257 GetEventHandler()->ProcessEvent(eventNc
);
4262 // Can be called from an application's OnPaint handler
4263 void wxWindowMSW::OnPaint(wxPaintEvent
& event
)
4265 #ifdef __WXUNIVERSAL__
4268 HDC hDC
= (HDC
) wxPaintDC::FindDCInCache((wxWindow
*) event
.GetEventObject());
4271 MSWDefWindowProc(WM_PAINT
, (WPARAM
) hDC
, 0);
4276 bool wxWindowMSW::HandleEraseBkgnd(WXHDC hdc
)
4281 dc
.SetWindow((wxWindow
*)this);
4283 wxEraseEvent
event(m_windowId
, &dc
);
4284 event
.SetEventObject(this);
4285 bool rc
= GetEventHandler()->ProcessEvent(event
);
4287 // must be called manually as ~wxDC doesn't do anything for wxDCTemp
4288 dc
.SelectOldObjects(hdc
);
4293 void wxWindowMSW::OnEraseBackground(wxEraseEvent
& event
)
4295 // standard non top level controls (i.e. except the dialogs) always erase
4296 // their background themselves in HandleCtlColor() or have some control-
4297 // specific ways to set the colours (common controls)
4298 if ( IsOfStandardClass() && !IsTopLevel() )
4304 if ( GetBackgroundStyle() == wxBG_STYLE_CUSTOM
)
4306 // don't skip the event here, custom background means that the app
4307 // is drawing it itself in its OnPaint(), so don't draw it at all
4308 // now to avoid flicker
4313 // do default background painting
4314 if ( !DoEraseBackground(GetHdcOf(*event
.GetDC())) )
4316 // let the system paint the background
4321 bool wxWindowMSW::DoEraseBackground(WXHDC hDC
)
4323 HBRUSH hbr
= (HBRUSH
)MSWGetBgBrush(hDC
);
4327 wxFillRect(GetHwnd(), (HDC
)hDC
, hbr
);
4333 wxWindowMSW::MSWGetBgBrushForChild(WXHDC
WXUNUSED(hDC
), WXHWND hWnd
)
4337 // our background colour applies to:
4338 // 1. this window itself, always
4339 // 2. all children unless the colour is "not inheritable"
4340 // 3. even if it is not inheritable, our immediate transparent
4341 // children should still inherit it -- but not any transparent
4342 // children because it would look wrong if a child of non
4343 // transparent child would show our bg colour when the child itself
4345 wxWindow
*win
= wxFindWinFromHandle(hWnd
);
4348 (win
&& win
->HasTransparentBackground() &&
4349 win
->GetParent() == this) )
4351 // draw children with the same colour as the parent
4353 brush
= wxTheBrushList
->FindOrCreateBrush(GetBackgroundColour());
4355 return (WXHBRUSH
)GetHbrushOf(*brush
);
4362 WXHBRUSH
wxWindowMSW::MSWGetBgBrush(WXHDC hDC
, WXHWND hWndToPaint
)
4365 hWndToPaint
= GetHWND();
4367 for ( wxWindowMSW
*win
= this; win
; win
= win
->GetParent() )
4369 WXHBRUSH hBrush
= win
->MSWGetBgBrushForChild(hDC
, hWndToPaint
);
4373 // background is not inherited beyond top level windows
4374 if ( win
->IsTopLevel() )
4381 bool wxWindowMSW::HandlePrintClient(WXHDC hDC
)
4383 // we receive this message when DrawThemeParentBackground() is
4384 // called from def window proc of several controls under XP and we
4385 // must draw properly themed background here
4387 // note that naively I'd expect filling the client rect with the
4388 // brush returned by MSWGetBgBrush() work -- but for some reason it
4389 // doesn't and we have to call parents MSWPrintChild() which is
4390 // supposed to call DrawThemeBackground() with appropriate params
4392 // also note that in this case lParam == PRF_CLIENT but we're
4393 // clearly expected to paint the background and nothing else!
4395 if ( IsTopLevel() || InheritsBackgroundColour() )
4398 // sometimes we don't want the parent to handle it at all, instead
4399 // return whatever value this window wants
4400 if ( !MSWShouldPropagatePrintChild() )
4401 return MSWPrintChild(hDC
, (wxWindow
*)this);
4403 for ( wxWindow
*win
= GetParent(); win
; win
= win
->GetParent() )
4405 if ( win
->MSWPrintChild(hDC
, (wxWindow
*)this) )
4408 if ( win
->IsTopLevel() || win
->InheritsBackgroundColour() )
4415 // ---------------------------------------------------------------------------
4416 // moving and resizing
4417 // ---------------------------------------------------------------------------
4419 bool wxWindowMSW::HandleMinimize()
4421 wxIconizeEvent
event(m_windowId
);
4422 event
.SetEventObject(this);
4424 return GetEventHandler()->ProcessEvent(event
);
4427 bool wxWindowMSW::HandleMaximize()
4429 wxMaximizeEvent
event(m_windowId
);
4430 event
.SetEventObject(this);
4432 return GetEventHandler()->ProcessEvent(event
);
4435 bool wxWindowMSW::HandleMove(int x
, int y
)
4438 wxMoveEvent
event(point
, m_windowId
);
4439 event
.SetEventObject(this);
4441 return GetEventHandler()->ProcessEvent(event
);
4444 bool wxWindowMSW::HandleMoving(wxRect
& rect
)
4446 wxMoveEvent
event(rect
, m_windowId
);
4447 event
.SetEventObject(this);
4449 bool rc
= GetEventHandler()->ProcessEvent(event
);
4451 rect
= event
.GetRect();
4455 bool wxWindowMSW::HandleSize(int WXUNUSED(w
), int WXUNUSED(h
), WXUINT wParam
)
4457 #if USE_DEFERRED_SIZING
4458 // when we resize this window, its children are probably going to be
4459 // repositioned as well, prepare to use DeferWindowPos() for them
4460 int numChildren
= 0;
4461 for ( HWND child
= ::GetWindow(GetHwndOf(this), GW_CHILD
);
4463 child
= ::GetWindow(child
, GW_HWNDNEXT
) )
4468 // Protect against valid m_hDWP being overwritten
4469 bool useDefer
= false;
4471 if ( numChildren
> 1 )
4475 m_hDWP
= (WXHANDLE
)::BeginDeferWindowPos(numChildren
);
4478 wxLogLastError(_T("BeginDeferWindowPos"));
4484 #endif // USE_DEFERRED_SIZING
4486 // update this window size
4487 bool processed
= false;
4491 wxFAIL_MSG( _T("unexpected WM_SIZE parameter") );
4492 // fall through nevertheless
4496 // we're not interested in these messages at all
4499 case SIZE_MINIMIZED
:
4500 processed
= HandleMinimize();
4503 case SIZE_MAXIMIZED
:
4504 /* processed = */ HandleMaximize();
4505 // fall through to send a normal size event as well
4508 // don't use w and h parameters as they specify the client size
4509 // while according to the docs EVT_SIZE handler is supposed to
4510 // receive the total size
4511 wxSizeEvent
event(GetSize(), m_windowId
);
4512 event
.SetEventObject(this);
4514 processed
= GetEventHandler()->ProcessEvent(event
);
4517 #if USE_DEFERRED_SIZING
4518 // and finally change the positions of all child windows at once
4519 if ( useDefer
&& m_hDWP
)
4521 // reset m_hDWP to NULL so that child windows don't try to use our
4522 // m_hDWP after we call EndDeferWindowPos() on it (this shouldn't
4523 // happen anyhow normally but who knows what weird flow of control we
4524 // may have depending on what the users EVT_SIZE handler does...)
4525 HDWP hDWP
= (HDWP
)m_hDWP
;
4528 // do put all child controls in place at once
4529 if ( !::EndDeferWindowPos(hDWP
) )
4531 wxLogLastError(_T("EndDeferWindowPos"));
4534 // Reset our children's pending pos/size values.
4535 for ( wxWindowList::compatibility_iterator node
= GetChildren().GetFirst();
4537 node
= node
->GetNext() )
4539 wxWindowMSW
*child
= node
->GetData();
4540 child
->m_pendingPosition
= wxDefaultPosition
;
4541 child
->m_pendingSize
= wxDefaultSize
;
4544 #endif // USE_DEFERRED_SIZING
4549 bool wxWindowMSW::HandleSizing(wxRect
& rect
)
4551 wxSizeEvent
event(rect
, m_windowId
);
4552 event
.SetEventObject(this);
4554 bool rc
= GetEventHandler()->ProcessEvent(event
);
4556 rect
= event
.GetRect();
4560 bool wxWindowMSW::HandleGetMinMaxInfo(void *WXUNUSED_IN_WINCE(mmInfo
))
4565 MINMAXINFO
*info
= (MINMAXINFO
*)mmInfo
;
4569 int minWidth
= GetMinWidth(),
4570 minHeight
= GetMinHeight(),
4571 maxWidth
= GetMaxWidth(),
4572 maxHeight
= GetMaxHeight();
4574 if ( minWidth
!= wxDefaultCoord
)
4576 info
->ptMinTrackSize
.x
= minWidth
;
4580 if ( minHeight
!= wxDefaultCoord
)
4582 info
->ptMinTrackSize
.y
= minHeight
;
4586 if ( maxWidth
!= wxDefaultCoord
)
4588 info
->ptMaxTrackSize
.x
= maxWidth
;
4592 if ( maxHeight
!= wxDefaultCoord
)
4594 info
->ptMaxTrackSize
.y
= maxHeight
;
4602 // ---------------------------------------------------------------------------
4604 // ---------------------------------------------------------------------------
4606 bool wxWindowMSW::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
4608 #if wxUSE_MENUS_NATIVE
4609 if ( !cmd
&& wxCurrentPopupMenu
)
4611 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
4612 wxCurrentPopupMenu
= NULL
;
4614 return popupMenu
->MSWCommand(cmd
, id
);
4616 #endif // wxUSE_MENUS_NATIVE
4618 wxWindow
*win
= NULL
;
4620 // first try to find it from HWND - this works even with the broken
4621 // programs using the same ids for different controls
4624 win
= wxFindWinFromHandle(control
);
4630 // must cast to a signed type before comparing with other ids!
4631 win
= FindItem((signed short)id
);
4636 return win
->MSWCommand(cmd
, id
);
4639 // the messages sent from the in-place edit control used by the treectrl
4640 // for label editing have id == 0, but they should _not_ be treated as menu
4641 // messages (they are EN_XXX ones, in fact) so don't translate anything
4642 // coming from a control to wxEVT_COMMAND_MENU_SELECTED
4645 // If no child window, it may be an accelerator, e.g. for a popup menu
4648 wxCommandEvent
event(wxEVT_COMMAND_MENU_SELECTED
);
4649 event
.SetEventObject(this);
4653 return GetEventHandler()->ProcessEvent(event
);
4657 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
4658 // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND
4659 // notifications to its parent which we want to reflect back to
4661 wxSpinCtrl
*spin
= wxSpinCtrl::GetSpinForTextCtrl(control
);
4662 if ( spin
&& spin
->ProcessTextCommand(cmd
, id
) )
4664 #endif // wxUSE_SPINCTRL
4666 #if wxUSE_CHOICE && defined(__SMARTPHONE__)
4667 // the listbox ctrl which is logically part of wxChoice sends WM_COMMAND
4668 // notifications to its parent which we want to reflect back to
4670 wxChoice
*choice
= wxChoice::GetChoiceForListBox(control
);
4671 if ( choice
&& choice
->MSWCommand(cmd
, id
) )
4679 // ---------------------------------------------------------------------------
4681 // ---------------------------------------------------------------------------
4683 void wxWindowMSW::InitMouseEvent(wxMouseEvent
& event
,
4687 // our client coords are not quite the same as Windows ones
4688 wxPoint pt
= GetClientAreaOrigin();
4689 event
.m_x
= x
- pt
.x
;
4690 event
.m_y
= y
- pt
.y
;
4692 event
.m_shiftDown
= (flags
& MK_SHIFT
) != 0;
4693 event
.m_controlDown
= (flags
& MK_CONTROL
) != 0;
4694 event
.m_leftDown
= (flags
& MK_LBUTTON
) != 0;
4695 event
.m_middleDown
= (flags
& MK_MBUTTON
) != 0;
4696 event
.m_rightDown
= (flags
& MK_RBUTTON
) != 0;
4697 event
.m_altDown
= ::GetKeyState(VK_MENU
) < 0;
4700 event
.SetTimestamp(::GetMessageTime());
4703 event
.SetEventObject(this);
4704 event
.SetId(GetId());
4706 #if wxUSE_MOUSEEVENT_HACK
4707 gs_lastMouseEvent
.pos
= ClientToScreen(wxPoint(x
, y
));
4708 gs_lastMouseEvent
.type
= event
.GetEventType();
4709 #endif // wxUSE_MOUSEEVENT_HACK
4713 // Windows doesn't send the mouse events to the static controls (which are
4714 // transparent in the sense that their WM_NCHITTEST handler returns
4715 // HTTRANSPARENT) at all but we want all controls to receive the mouse events
4716 // and so we manually check if we don't have a child window under mouse and if
4717 // we do, send the event to it instead of the window Windows had sent WM_XXX
4720 // Notice that this is not done for the mouse move events because this could
4721 // (would?) be too slow, but only for clicks which means that the static texts
4722 // still don't get move, enter nor leave events.
4723 static wxWindowMSW
*FindWindowForMouseEvent(wxWindowMSW
*win
, int *x
, int *y
)
4725 wxCHECK_MSG( x
&& y
, win
, _T("NULL pointer in FindWindowForMouseEvent") );
4727 // first try to find a non transparent child: this allows us to send events
4728 // to a static text which is inside a static box, for example
4729 POINT pt
= { *x
, *y
};
4730 HWND hwnd
= GetHwndOf(win
),
4734 hwndUnderMouse
= ::ChildWindowFromPoint
4740 hwndUnderMouse
= ::ChildWindowFromPointEx
4750 if ( !hwndUnderMouse
|| hwndUnderMouse
== hwnd
)
4752 // now try any child window at all
4753 hwndUnderMouse
= ::ChildWindowFromPoint(hwnd
, pt
);
4756 // check that we have a child window which is susceptible to receive mouse
4757 // events: for this it must be shown and enabled
4758 if ( hwndUnderMouse
&&
4759 hwndUnderMouse
!= hwnd
&&
4760 ::IsWindowVisible(hwndUnderMouse
) &&
4761 ::IsWindowEnabled(hwndUnderMouse
) )
4763 wxWindow
*winUnderMouse
= wxFindWinFromHandle((WXHWND
)hwndUnderMouse
);
4764 if ( winUnderMouse
)
4766 // translate the mouse coords to the other window coords
4767 win
->ClientToScreen(x
, y
);
4768 winUnderMouse
->ScreenToClient(x
, y
);
4770 win
= winUnderMouse
;
4776 #endif // __WXWINCE__
4778 bool wxWindowMSW::HandleMouseEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
4780 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
4781 // WM_MOUSELAST, so it's enough to subtract WM_MOUSEMOVE == WM_MOUSEFIRST
4782 // from the message id and take the value in the table to get wxWin event
4784 static const wxEventType eventsMouse
[] =
4798 wxMouseEvent
event(eventsMouse
[msg
- WM_MOUSEMOVE
]);
4799 InitMouseEvent(event
, x
, y
, flags
);
4801 return GetEventHandler()->ProcessEvent(event
);
4804 bool wxWindowMSW::HandleMouseMove(int x
, int y
, WXUINT flags
)
4806 if ( !m_mouseInWindow
)
4808 // it would be wrong to assume that just because we get a mouse move
4809 // event that the mouse is inside the window: although this is usually
4810 // true, it is not if we had captured the mouse, so we need to check
4811 // the mouse coordinates here
4812 if ( !HasCapture() || IsMouseInWindow() )
4814 // Generate an ENTER event
4815 m_mouseInWindow
= true;
4817 #ifdef HAVE_TRACKMOUSEEVENT
4818 WinStruct
<TRACKMOUSEEVENT
> trackinfo
;
4820 trackinfo
.dwFlags
= TME_LEAVE
;
4821 trackinfo
.hwndTrack
= GetHwnd();
4823 // Use the commctrl.h _TrackMouseEvent(), which will call the real
4824 // TrackMouseEvent() if available or emulate it
4825 _TrackMouseEvent(&trackinfo
);
4826 #endif // HAVE_TRACKMOUSEEVENT
4828 wxMouseEvent
event(wxEVT_ENTER_WINDOW
);
4829 InitMouseEvent(event
, x
, y
, flags
);
4831 (void)GetEventHandler()->ProcessEvent(event
);
4834 #ifdef HAVE_TRACKMOUSEEVENT
4837 // Check if we need to send a LEAVE event
4838 // Windows doesn't send WM_MOUSELEAVE if the mouse has been captured so
4839 // send it here if we are using native mouse leave tracking
4840 if ( HasCapture() && !IsMouseInWindow() )
4842 GenerateMouseLeave();
4845 #endif // HAVE_TRACKMOUSEEVENT
4847 #if wxUSE_MOUSEEVENT_HACK
4848 // Windows often generates mouse events even if mouse position hasn't
4849 // changed (http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/66576)
4851 // Filter this out as it can result in unexpected behaviour compared to
4853 if ( gs_lastMouseEvent
.type
== wxEVT_RIGHT_DOWN
||
4854 gs_lastMouseEvent
.type
== wxEVT_LEFT_DOWN
||
4855 gs_lastMouseEvent
.type
== wxEVT_MIDDLE_DOWN
||
4856 gs_lastMouseEvent
.type
== wxEVT_MOTION
)
4858 if ( ClientToScreen(wxPoint(x
, y
)) == gs_lastMouseEvent
.pos
)
4860 gs_lastMouseEvent
.type
= wxEVT_MOTION
;
4865 #endif // wxUSE_MOUSEEVENT_HACK
4867 return HandleMouseEvent(WM_MOUSEMOVE
, x
, y
, flags
);
4871 bool wxWindowMSW::HandleMouseWheel(WXWPARAM wParam
, WXLPARAM lParam
)
4873 #if wxUSE_MOUSEWHEEL
4874 // notice that WM_MOUSEWHEEL position is in screen coords (as it's
4875 // forwarded up to the parent by DefWindowProc()) and not in the client
4876 // ones as all the other messages, translate them to the client coords for
4879 pt
= ScreenToClient(wxPoint(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
)));
4880 wxMouseEvent
event(wxEVT_MOUSEWHEEL
);
4881 InitMouseEvent(event
, pt
.x
, pt
.y
, LOWORD(wParam
));
4882 event
.m_wheelRotation
= (short)HIWORD(wParam
);
4883 event
.m_wheelDelta
= WHEEL_DELTA
;
4885 static int s_linesPerRotation
= -1;
4886 if ( s_linesPerRotation
== -1 )
4888 if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES
, 0,
4889 &s_linesPerRotation
, 0))
4891 // this is not supposed to happen
4892 wxLogLastError(_T("SystemParametersInfo(GETWHEELSCROLLLINES)"));
4894 // the default is 3, so use it if SystemParametersInfo() failed
4895 s_linesPerRotation
= 3;
4899 event
.m_linesPerAction
= s_linesPerRotation
;
4900 return GetEventHandler()->ProcessEvent(event
);
4902 #else // !wxUSE_MOUSEWHEEL
4903 wxUnusedVar(wParam
);
4904 wxUnusedVar(lParam
);
4907 #endif // wxUSE_MOUSEWHEEL/!wxUSE_MOUSEWHEEL
4910 void wxWindowMSW::GenerateMouseLeave()
4912 m_mouseInWindow
= false;
4915 if ( wxIsShiftDown() )
4917 if ( wxIsCtrlDown() )
4918 state
|= MK_CONTROL
;
4920 // Only the high-order bit should be tested
4921 if ( GetKeyState( VK_LBUTTON
) & (1<<15) )
4922 state
|= MK_LBUTTON
;
4923 if ( GetKeyState( VK_MBUTTON
) & (1<<15) )
4924 state
|= MK_MBUTTON
;
4925 if ( GetKeyState( VK_RBUTTON
) & (1<<15) )
4926 state
|= MK_RBUTTON
;
4930 if ( !::GetCursorPosWinCE(&pt
) )
4932 if ( !::GetCursorPos(&pt
) )
4935 wxLogLastError(_T("GetCursorPos"));
4938 // we need to have client coordinates here for symmetry with
4939 // wxEVT_ENTER_WINDOW
4940 RECT rect
= wxGetWindowRect(GetHwnd());
4944 wxMouseEvent
event(wxEVT_LEAVE_WINDOW
);
4945 InitMouseEvent(event
, pt
.x
, pt
.y
, state
);
4947 (void)GetEventHandler()->ProcessEvent(event
);
4950 // ---------------------------------------------------------------------------
4951 // keyboard handling
4952 // ---------------------------------------------------------------------------
4954 // create the key event of the given type for the given key - used by
4955 // HandleChar and HandleKeyDown/Up
4956 wxKeyEvent
wxWindowMSW::CreateKeyEvent(wxEventType evType
,
4959 WXWPARAM wParam
) const
4961 wxKeyEvent
event(evType
);
4962 event
.SetId(GetId());
4963 event
.m_shiftDown
= wxIsShiftDown();
4964 event
.m_controlDown
= wxIsCtrlDown();
4965 event
.m_altDown
= (HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
;
4967 event
.SetEventObject((wxWindow
*)this); // const_cast
4968 event
.m_keyCode
= id
;
4970 event
.m_uniChar
= (wxChar
) wParam
;
4972 event
.m_rawCode
= (wxUint32
) wParam
;
4973 event
.m_rawFlags
= (wxUint32
) lParam
;
4975 event
.SetTimestamp(::GetMessageTime());
4978 // translate the position to client coords
4981 GetCursorPosWinCE(&pt
);
4986 GetWindowRect(GetHwnd(),&rect
);
4996 // isASCII is true only when we're called from WM_CHAR handler and not from
4998 bool wxWindowMSW::HandleChar(WXWPARAM wParam
, WXLPARAM lParam
, bool isASCII
)
5005 else // we're called from WM_KEYDOWN
5007 // don't pass lParam to wxCharCodeMSWToWX() here because we don't want
5008 // to get numpad key codes: CHAR events should use the logical keys
5009 // such as WXK_HOME instead of WXK_NUMPAD_HOME which is for KEY events
5010 id
= wxCharCodeMSWToWX(wParam
);
5013 // it's ASCII and will be processed here only when called from
5014 // WM_CHAR (i.e. when isASCII = true), don't process it now
5019 wxKeyEvent
event(CreateKeyEvent(wxEVT_CHAR
, id
, lParam
, wParam
));
5021 // the alphanumeric keys produced by pressing AltGr+something on European
5022 // keyboards have both Ctrl and Alt modifiers which may confuse the user
5023 // code as, normally, keys with Ctrl and/or Alt don't result in anything
5024 // alphanumeric, so pretend that there are no modifiers at all (the
5025 // KEY_DOWN event would still have the correct modifiers if they're really
5027 if ( event
.m_controlDown
&& event
.m_altDown
&&
5028 (id
>= 32 && id
< 256) )
5030 event
.m_controlDown
=
5031 event
.m_altDown
= false;
5034 return GetEventHandler()->ProcessEvent(event
);
5037 bool wxWindowMSW::HandleKeyDown(WXWPARAM wParam
, WXLPARAM lParam
)
5039 int id
= wxCharCodeMSWToWX(wParam
, lParam
);
5043 // normal ASCII char
5047 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_DOWN
, id
, lParam
, wParam
));
5048 return GetEventHandler()->ProcessEvent(event
);
5051 bool wxWindowMSW::HandleKeyUp(WXWPARAM wParam
, WXLPARAM lParam
)
5053 int id
= wxCharCodeMSWToWX(wParam
, lParam
);
5057 // normal ASCII char
5061 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_UP
, id
, lParam
, wParam
));
5062 return GetEventHandler()->ProcessEvent(event
);
5065 int wxWindowMSW::HandleMenuChar(int WXUNUSED_IN_WINCE(chAccel
),
5066 WXLPARAM
WXUNUSED_IN_WINCE(lParam
))
5068 // FIXME: implement GetMenuItemCount for WinCE, possibly
5069 // in terms of GetMenuItemInfo
5071 const HMENU hmenu
= (HMENU
)lParam
;
5075 mii
.cbSize
= sizeof(MENUITEMINFO
);
5077 // we could use MIIM_FTYPE here as we only need to know if the item is
5078 // ownerdrawn or not and not dwTypeData which MIIM_TYPE also returns, but
5079 // MIIM_FTYPE is not supported under Win95
5080 mii
.fMask
= MIIM_TYPE
| MIIM_DATA
;
5082 // find if we have this letter in any owner drawn item
5083 const int count
= ::GetMenuItemCount(hmenu
);
5084 for ( int i
= 0; i
< count
; i
++ )
5086 // previous loop iteration could modify it, reset it back before
5087 // calling GetMenuItemInfo() to prevent it from overflowing dwTypeData
5090 if ( ::GetMenuItemInfo(hmenu
, i
, TRUE
, &mii
) )
5092 if ( mii
.fType
== MFT_OWNERDRAW
)
5094 // dwItemData member of the MENUITEMINFO is a
5095 // pointer to the associated wxMenuItem -- see the
5096 // menu creation code
5097 wxMenuItem
*item
= (wxMenuItem
*)mii
.dwItemData
;
5099 const wxChar
*p
= wxStrchr(item
->GetText(), _T('&'));
5102 if ( *p
== _T('&') )
5104 // this is not the accel char, find the real one
5105 p
= wxStrchr(p
+ 1, _T('&'));
5107 else // got the accel char
5109 // FIXME-UNICODE: this comparison doesn't risk to work
5110 // for non ASCII accelerator characters I'm afraid, but
5112 if ( (wchar_t)wxToupper(*p
) == (wchar_t)chAccel
)
5118 // this one doesn't match
5125 else // failed to get the menu text?
5127 // it's not fatal, so don't show error, but still log it
5128 wxLogLastError(_T("GetMenuItemInfo"));
5135 bool wxWindowMSW::HandleClipboardEvent( WXUINT nMsg
)
5137 const wxEventType type
= ( nMsg
== WM_CUT
) ? wxEVT_COMMAND_TEXT_CUT
:
5138 ( nMsg
== WM_COPY
) ? wxEVT_COMMAND_TEXT_COPY
:
5139 /*( nMsg == WM_PASTE ) ? */ wxEVT_COMMAND_TEXT_PASTE
;
5140 wxClipboardTextEvent
evt(type
, GetId());
5142 evt
.SetEventObject(this);
5144 return GetEventHandler()->ProcessEvent(evt
);
5147 // ---------------------------------------------------------------------------
5149 // ---------------------------------------------------------------------------
5151 bool wxWindowMSW::HandleJoystickEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
5155 if ( flags
& JOY_BUTTON1CHG
)
5156 change
= wxJOY_BUTTON1
;
5157 if ( flags
& JOY_BUTTON2CHG
)
5158 change
= wxJOY_BUTTON2
;
5159 if ( flags
& JOY_BUTTON3CHG
)
5160 change
= wxJOY_BUTTON3
;
5161 if ( flags
& JOY_BUTTON4CHG
)
5162 change
= wxJOY_BUTTON4
;
5165 if ( flags
& JOY_BUTTON1
)
5166 buttons
|= wxJOY_BUTTON1
;
5167 if ( flags
& JOY_BUTTON2
)
5168 buttons
|= wxJOY_BUTTON2
;
5169 if ( flags
& JOY_BUTTON3
)
5170 buttons
|= wxJOY_BUTTON3
;
5171 if ( flags
& JOY_BUTTON4
)
5172 buttons
|= wxJOY_BUTTON4
;
5174 // the event ids aren't consecutive so we can't use table based lookup
5176 wxEventType eventType
;
5181 eventType
= wxEVT_JOY_MOVE
;
5186 eventType
= wxEVT_JOY_MOVE
;
5191 eventType
= wxEVT_JOY_ZMOVE
;
5196 eventType
= wxEVT_JOY_ZMOVE
;
5199 case MM_JOY1BUTTONDOWN
:
5201 eventType
= wxEVT_JOY_BUTTON_DOWN
;
5204 case MM_JOY2BUTTONDOWN
:
5206 eventType
= wxEVT_JOY_BUTTON_DOWN
;
5209 case MM_JOY1BUTTONUP
:
5211 eventType
= wxEVT_JOY_BUTTON_UP
;
5214 case MM_JOY2BUTTONUP
:
5216 eventType
= wxEVT_JOY_BUTTON_UP
;
5220 wxFAIL_MSG(wxT("no such joystick event"));
5225 wxJoystickEvent
event(eventType
, buttons
, joystick
, change
);
5226 event
.SetPosition(wxPoint(x
, y
));
5227 event
.SetEventObject(this);
5229 return GetEventHandler()->ProcessEvent(event
);
5239 // ---------------------------------------------------------------------------
5241 // ---------------------------------------------------------------------------
5243 bool wxWindowMSW::MSWOnScroll(int orientation
, WXWORD wParam
,
5244 WXWORD pos
, WXHWND control
)
5246 if ( control
&& control
!= m_hWnd
) // Prevent infinite recursion
5248 wxWindow
*child
= wxFindWinFromHandle(control
);
5250 return child
->MSWOnScroll(orientation
, wParam
, pos
, control
);
5253 wxScrollWinEvent event
;
5254 event
.SetPosition(pos
);
5255 event
.SetOrientation(orientation
);
5256 event
.SetEventObject(this);
5261 event
.SetEventType(wxEVT_SCROLLWIN_TOP
);
5265 event
.SetEventType(wxEVT_SCROLLWIN_BOTTOM
);
5269 event
.SetEventType(wxEVT_SCROLLWIN_LINEUP
);
5273 event
.SetEventType(wxEVT_SCROLLWIN_LINEDOWN
);
5277 event
.SetEventType(wxEVT_SCROLLWIN_PAGEUP
);
5281 event
.SetEventType(wxEVT_SCROLLWIN_PAGEDOWN
);
5284 case SB_THUMBPOSITION
:
5286 // under Win32, the scrollbar range and position are 32 bit integers,
5287 // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must
5288 // explicitly query the scrollbar for the correct position (this must
5289 // be done only for these two SB_ events as they are the only one
5290 // carrying the scrollbar position)
5292 WinStruct
<SCROLLINFO
> scrollInfo
;
5293 scrollInfo
.fMask
= SIF_TRACKPOS
;
5295 if ( !::GetScrollInfo(GetHwnd(),
5296 orientation
== wxHORIZONTAL
? SB_HORZ
5300 // Not necessarily an error, if there are no scrollbars yet.
5301 // wxLogLastError(_T("GetScrollInfo"));
5304 event
.SetPosition(scrollInfo
.nTrackPos
);
5307 event
.SetEventType( wParam
== SB_THUMBPOSITION
5308 ? wxEVT_SCROLLWIN_THUMBRELEASE
5309 : wxEVT_SCROLLWIN_THUMBTRACK
);
5316 return GetEventHandler()->ProcessEvent(event
);
5319 // ===========================================================================
5321 // ===========================================================================
5323 void wxGetCharSize(WXHWND wnd
, int *x
, int *y
, const wxFont
& the_font
)
5326 HDC dc
= ::GetDC((HWND
) wnd
);
5329 // the_font.UseResource();
5330 // the_font.RealizeResource();
5331 HFONT fnt
= (HFONT
)the_font
.GetResourceHandle(); // const_cast
5333 was
= (HFONT
) SelectObject(dc
,fnt
);
5335 GetTextMetrics(dc
, &tm
);
5338 SelectObject(dc
,was
);
5340 ReleaseDC((HWND
)wnd
, dc
);
5343 *x
= tm
.tmAveCharWidth
;
5345 *y
= tm
.tmHeight
+ tm
.tmExternalLeading
;
5347 // the_font.ReleaseResource();
5350 // use the "extended" bit (24) of lParam to distinguish extended keys
5351 // from normal keys as the same key is sent
5353 int ChooseNormalOrExtended(int lParam
, int keyNormal
, int keyExtended
)
5355 // except that if lParam is 0, it means we don't have real lParam from
5356 // WM_KEYDOWN but are just translating just a VK constant (e.g. done from
5357 // msw/treectrl.cpp when processing TVN_KEYDOWN) -- then assume this is a
5358 // non-numpad (hence extended) key as this is a more common case
5359 return !lParam
|| (lParam
& (1 << 24)) ? keyExtended
: keyNormal
;
5362 // Returns 0 if was a normal ASCII value, not a special key. This indicates that
5363 // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
5364 int wxCharCodeMSWToWX(int keySym
, WXLPARAM lParam
)
5369 case VK_CANCEL
: id
= WXK_CANCEL
; break;
5370 case VK_BACK
: id
= WXK_BACK
; break;
5371 case VK_TAB
: id
= WXK_TAB
; break;
5372 case VK_CLEAR
: id
= WXK_CLEAR
; break;
5373 case VK_SHIFT
: id
= WXK_SHIFT
; break;
5374 case VK_CONTROL
: id
= WXK_CONTROL
; break;
5375 case VK_MENU
: id
= WXK_ALT
; break;
5376 case VK_PAUSE
: id
= WXK_PAUSE
; break;
5377 case VK_CAPITAL
: id
= WXK_CAPITAL
; break;
5378 case VK_SPACE
: id
= WXK_SPACE
; break;
5379 case VK_ESCAPE
: id
= WXK_ESCAPE
; break;
5380 case VK_SELECT
: id
= WXK_SELECT
; break;
5381 case VK_PRINT
: id
= WXK_PRINT
; break;
5382 case VK_EXECUTE
: id
= WXK_EXECUTE
; break;
5383 case VK_HELP
: id
= WXK_HELP
; break;
5384 case VK_NUMPAD0
: id
= WXK_NUMPAD0
; break;
5385 case VK_NUMPAD1
: id
= WXK_NUMPAD1
; break;
5386 case VK_NUMPAD2
: id
= WXK_NUMPAD2
; break;
5387 case VK_NUMPAD3
: id
= WXK_NUMPAD3
; break;
5388 case VK_NUMPAD4
: id
= WXK_NUMPAD4
; break;
5389 case VK_NUMPAD5
: id
= WXK_NUMPAD5
; break;
5390 case VK_NUMPAD6
: id
= WXK_NUMPAD6
; break;
5391 case VK_NUMPAD7
: id
= WXK_NUMPAD7
; break;
5392 case VK_NUMPAD8
: id
= WXK_NUMPAD8
; break;
5393 case VK_NUMPAD9
: id
= WXK_NUMPAD9
; break;
5394 case VK_MULTIPLY
: id
= WXK_NUMPAD_MULTIPLY
; break;
5395 case VK_ADD
: id
= WXK_NUMPAD_ADD
; break;
5396 case VK_SUBTRACT
: id
= WXK_NUMPAD_SUBTRACT
; break;
5397 case VK_DECIMAL
: id
= WXK_NUMPAD_DECIMAL
; break;
5398 case VK_DIVIDE
: id
= WXK_NUMPAD_DIVIDE
; break;
5399 case VK_F1
: id
= WXK_F1
; break;
5400 case VK_F2
: id
= WXK_F2
; break;
5401 case VK_F3
: id
= WXK_F3
; break;
5402 case VK_F4
: id
= WXK_F4
; break;
5403 case VK_F5
: id
= WXK_F5
; break;
5404 case VK_F6
: id
= WXK_F6
; break;
5405 case VK_F7
: id
= WXK_F7
; break;
5406 case VK_F8
: id
= WXK_F8
; break;
5407 case VK_F9
: id
= WXK_F9
; break;
5408 case VK_F10
: id
= WXK_F10
; break;
5409 case VK_F11
: id
= WXK_F11
; break;
5410 case VK_F12
: id
= WXK_F12
; break;
5411 case VK_F13
: id
= WXK_F13
; break;
5412 case VK_F14
: id
= WXK_F14
; break;
5413 case VK_F15
: id
= WXK_F15
; break;
5414 case VK_F16
: id
= WXK_F16
; break;
5415 case VK_F17
: id
= WXK_F17
; break;
5416 case VK_F18
: id
= WXK_F18
; break;
5417 case VK_F19
: id
= WXK_F19
; break;
5418 case VK_F20
: id
= WXK_F20
; break;
5419 case VK_F21
: id
= WXK_F21
; break;
5420 case VK_F22
: id
= WXK_F22
; break;
5421 case VK_F23
: id
= WXK_F23
; break;
5422 case VK_F24
: id
= WXK_F24
; break;
5423 case VK_NUMLOCK
: id
= WXK_NUMLOCK
; break;
5424 case VK_SCROLL
: id
= WXK_SCROLL
; break;
5426 // the mapping for these keys may be incorrect on non-US keyboards so
5427 // maybe we shouldn't map them to ASCII values at all
5428 case VK_OEM_1
: id
= ';'; break;
5429 case VK_OEM_PLUS
: id
= '+'; break;
5430 case VK_OEM_COMMA
: id
= ','; break;
5431 case VK_OEM_MINUS
: id
= '-'; break;
5432 case VK_OEM_PERIOD
: id
= '.'; break;
5433 case VK_OEM_2
: id
= '/'; break;
5434 case VK_OEM_3
: id
= '~'; break;
5435 case VK_OEM_4
: id
= '['; break;
5436 case VK_OEM_5
: id
= '\\'; break;
5437 case VK_OEM_6
: id
= ']'; break;
5438 case VK_OEM_7
: id
= '\''; break;
5441 case VK_LWIN
: id
= WXK_WINDOWS_LEFT
; break;
5442 case VK_RWIN
: id
= WXK_WINDOWS_RIGHT
; break;
5443 case VK_APPS
: id
= WXK_WINDOWS_MENU
; break;
5444 #endif // VK_APPS defined
5446 // handle extended keys
5448 id
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_PAGEUP
, WXK_PAGEUP
);
5451 id
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_PAGEDOWN
, WXK_PAGEDOWN
);
5454 id
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_END
, WXK_END
);
5457 id
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_HOME
, WXK_HOME
);
5460 id
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_LEFT
, WXK_LEFT
);
5463 id
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_UP
, WXK_UP
);
5466 id
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_RIGHT
, WXK_RIGHT
);
5469 id
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_DOWN
, WXK_DOWN
);
5472 id
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_INSERT
, WXK_INSERT
);
5475 id
= ChooseNormalOrExtended(lParam
, WXK_NUMPAD_DELETE
, WXK_DELETE
);
5478 // don't use ChooseNormalOrExtended() here as the keys are reversed
5479 // here: numpad enter is the extended one
5480 id
= lParam
&& (lParam
& (1 << 24)) ? WXK_NUMPAD_ENTER
: WXK_RETURN
;
5490 WXWORD
wxCharCodeWXToMSW(int id
, bool *isVirtual
)
5496 case WXK_CANCEL
: keySym
= VK_CANCEL
; break;
5497 case WXK_CLEAR
: keySym
= VK_CLEAR
; break;
5498 case WXK_SHIFT
: keySym
= VK_SHIFT
; break;
5499 case WXK_CONTROL
: keySym
= VK_CONTROL
; break;
5500 case WXK_ALT
: keySym
= VK_MENU
; break;
5501 case WXK_PAUSE
: keySym
= VK_PAUSE
; break;
5502 case WXK_CAPITAL
: keySym
= VK_CAPITAL
; break;
5503 case WXK_PAGEUP
: keySym
= VK_PRIOR
; break;
5504 case WXK_PAGEDOWN
: keySym
= VK_NEXT
; break;
5505 case WXK_END
: keySym
= VK_END
; break;
5506 case WXK_HOME
: keySym
= VK_HOME
; break;
5507 case WXK_LEFT
: keySym
= VK_LEFT
; break;
5508 case WXK_UP
: keySym
= VK_UP
; break;
5509 case WXK_RIGHT
: keySym
= VK_RIGHT
; break;
5510 case WXK_DOWN
: keySym
= VK_DOWN
; break;
5511 case WXK_SELECT
: keySym
= VK_SELECT
; break;
5512 case WXK_PRINT
: keySym
= VK_PRINT
; break;
5513 case WXK_EXECUTE
: keySym
= VK_EXECUTE
; break;
5514 case WXK_INSERT
: keySym
= VK_INSERT
; break;
5515 case WXK_DELETE
: keySym
= VK_DELETE
; break;
5516 case WXK_HELP
: keySym
= VK_HELP
; break;
5517 case WXK_NUMPAD0
: keySym
= VK_NUMPAD0
; break;
5518 case WXK_NUMPAD1
: keySym
= VK_NUMPAD1
; break;
5519 case WXK_NUMPAD2
: keySym
= VK_NUMPAD2
; break;
5520 case WXK_NUMPAD3
: keySym
= VK_NUMPAD3
; break;
5521 case WXK_NUMPAD4
: keySym
= VK_NUMPAD4
; break;
5522 case WXK_NUMPAD5
: keySym
= VK_NUMPAD5
; break;
5523 case WXK_NUMPAD6
: keySym
= VK_NUMPAD6
; break;
5524 case WXK_NUMPAD7
: keySym
= VK_NUMPAD7
; break;
5525 case WXK_NUMPAD8
: keySym
= VK_NUMPAD8
; break;
5526 case WXK_NUMPAD9
: keySym
= VK_NUMPAD9
; break;
5527 case WXK_NUMPAD_MULTIPLY
: keySym
= VK_MULTIPLY
; break;
5528 case WXK_NUMPAD_ADD
: keySym
= VK_ADD
; break;
5529 case WXK_NUMPAD_SUBTRACT
: keySym
= VK_SUBTRACT
; break;
5530 case WXK_NUMPAD_DECIMAL
: keySym
= VK_DECIMAL
; break;
5531 case WXK_NUMPAD_DIVIDE
: keySym
= VK_DIVIDE
; break;
5532 case WXK_F1
: keySym
= VK_F1
; break;
5533 case WXK_F2
: keySym
= VK_F2
; break;
5534 case WXK_F3
: keySym
= VK_F3
; break;
5535 case WXK_F4
: keySym
= VK_F4
; break;
5536 case WXK_F5
: keySym
= VK_F5
; break;
5537 case WXK_F6
: keySym
= VK_F6
; break;
5538 case WXK_F7
: keySym
= VK_F7
; break;
5539 case WXK_F8
: keySym
= VK_F8
; break;
5540 case WXK_F9
: keySym
= VK_F9
; break;
5541 case WXK_F10
: keySym
= VK_F10
; break;
5542 case WXK_F11
: keySym
= VK_F11
; break;
5543 case WXK_F12
: keySym
= VK_F12
; break;
5544 case WXK_F13
: keySym
= VK_F13
; break;
5545 case WXK_F14
: keySym
= VK_F14
; break;
5546 case WXK_F15
: keySym
= VK_F15
; break;
5547 case WXK_F16
: keySym
= VK_F16
; break;
5548 case WXK_F17
: keySym
= VK_F17
; break;
5549 case WXK_F18
: keySym
= VK_F18
; break;
5550 case WXK_F19
: keySym
= VK_F19
; break;
5551 case WXK_F20
: keySym
= VK_F20
; break;
5552 case WXK_F21
: keySym
= VK_F21
; break;
5553 case WXK_F22
: keySym
= VK_F22
; break;
5554 case WXK_F23
: keySym
= VK_F23
; break;
5555 case WXK_F24
: keySym
= VK_F24
; break;
5556 case WXK_NUMLOCK
: keySym
= VK_NUMLOCK
; break;
5557 case WXK_SCROLL
: keySym
= VK_SCROLL
; break;
5568 bool wxGetKeyState(wxKeyCode key
)
5572 wxASSERT_MSG(key
!= WXK_LBUTTON
&& key
!= WXK_RBUTTON
&& key
!=
5573 WXK_MBUTTON
, wxT("can't use wxGetKeyState() for mouse buttons"));
5575 //High order with GetAsyncKeyState only available on WIN32
5577 //If the requested key is a LED key, return
5578 //true if the led is pressed
5579 if (key
== WXK_NUMLOCK
||
5580 key
== WXK_CAPITAL
||
5584 //low order bit means LED is highlighted,
5585 //high order means key is down
5586 //Here, for compat with other ports we want both
5587 return GetKeyState( wxCharCodeWXToMSW(key
, &bVirtual
) ) != 0;
5594 //low order bit means key pressed since last call
5595 //high order means key is down
5596 //We want only the high order bit - the key may not be down if only low order
5597 return ( GetAsyncKeyState( wxCharCodeWXToMSW(key
, &bVirtual
) ) & (1<<15) ) != 0;
5603 wxMouseState
wxGetMouseState()
5607 GetCursorPos( &pt
);
5611 ms
.SetLeftDown( (GetAsyncKeyState(VK_LBUTTON
) & (1<<15)) != 0 );
5612 ms
.SetMiddleDown( (GetAsyncKeyState(VK_MBUTTON
) & (1<<15)) != 0 );
5613 ms
.SetRightDown( (GetAsyncKeyState(VK_RBUTTON
) & (1<<15)) != 0 );
5615 ms
.SetControlDown( (GetAsyncKeyState(VK_CONTROL
) & (1<<15)) != 0 );
5616 ms
.SetShiftDown( (GetAsyncKeyState(VK_SHIFT
) & (1<<15)) != 0 );
5617 ms
.SetAltDown( (GetAsyncKeyState(VK_MENU
) & (1<<15)) != 0 );
5618 // ms.SetMetaDown();
5624 wxWindow
*wxGetActiveWindow()
5626 HWND hWnd
= GetActiveWindow();
5629 return wxFindWinFromHandle((WXHWND
) hWnd
);
5634 extern wxWindow
*wxGetWindowFromHWND(WXHWND hWnd
)
5636 HWND hwnd
= (HWND
)hWnd
;
5638 // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set
5639 // by code in msw/radiobox.cpp), for all the others we just search up the
5641 wxWindow
*win
= (wxWindow
*)NULL
;
5644 win
= wxFindWinFromHandle((WXHWND
)hwnd
);
5648 // native radiobuttons return DLGC_RADIOBUTTON here and for any
5649 // wxWindow class which overrides WM_GETDLGCODE processing to
5650 // do it as well, win would be already non NULL
5651 if ( ::SendMessage(hwnd
, WM_GETDLGCODE
, 0, 0) & DLGC_RADIOBUTTON
)
5653 win
= (wxWindow
*)wxGetWindowUserData(hwnd
);
5655 //else: it's a wxRadioButton, not a radiobutton from wxRadioBox
5656 #endif // wxUSE_RADIOBOX
5658 // spin control text buddy window should be mapped to spin ctrl
5659 // itself so try it too
5660 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
5663 win
= wxSpinCtrl::GetSpinForTextCtrl((WXHWND
)hwnd
);
5665 #endif // wxUSE_SPINCTRL
5669 while ( hwnd
&& !win
)
5671 // this is a really ugly hack needed to avoid mistakenly returning the
5672 // parent frame wxWindow for the find/replace modeless dialog HWND -
5673 // this, in turn, is needed to call IsDialogMessage() from
5674 // wxApp::ProcessMessage() as for this we must return NULL from here
5676 // FIXME: this is clearly not the best way to do it but I think we'll
5677 // need to change HWND <-> wxWindow code more heavily than I can
5678 // do it now to fix it
5679 #ifndef __WXMICROWIN__
5680 if ( ::GetWindow(hwnd
, GW_OWNER
) )
5682 // it's a dialog box, don't go upwards
5687 hwnd
= ::GetParent(hwnd
);
5688 win
= wxFindWinFromHandle((WXHWND
)hwnd
);
5694 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
5696 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
5697 // in active frames and dialogs, regardless of where the focus is.
5698 static HHOOK wxTheKeyboardHook
= 0;
5699 static FARPROC wxTheKeyboardHookProc
= 0;
5700 int APIENTRY _EXPORT
5701 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
);
5703 void wxSetKeyboardHook(bool doIt
)
5707 wxTheKeyboardHookProc
= MakeProcInstance((FARPROC
) wxKeyboardHook
, wxGetInstance());
5708 wxTheKeyboardHook
= SetWindowsHookEx(WH_KEYBOARD
, (HOOKPROC
) wxTheKeyboardHookProc
, wxGetInstance(),
5710 GetCurrentThreadId()
5711 // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right?
5716 UnhookWindowsHookEx(wxTheKeyboardHook
);
5720 int APIENTRY _EXPORT
5721 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
)
5723 DWORD hiWord
= HIWORD(lParam
);
5724 if ( nCode
!= HC_NOREMOVE
&& ((hiWord
& KF_UP
) == 0) )
5726 int id
= wxCharCodeMSWToWX(wParam
, lParam
);
5729 wxKeyEvent
event(wxEVT_CHAR_HOOK
);
5730 if ( (HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
5731 event
.m_altDown
= true;
5733 event
.SetEventObject(NULL
);
5734 event
.m_keyCode
= id
;
5735 event
.m_shiftDown
= wxIsShiftDown();
5736 event
.m_controlDown
= wxIsCtrlDown();
5738 event
.SetTimestamp(::GetMessageTime());
5740 wxWindow
*win
= wxGetActiveWindow();
5741 wxEvtHandler
*handler
;
5744 handler
= win
->GetEventHandler();
5745 event
.SetId(win
->GetId());
5750 event
.SetId(wxID_ANY
);
5753 if ( handler
&& handler
->ProcessEvent(event
) )
5761 return (int)CallNextHookEx(wxTheKeyboardHook
, nCode
, wParam
, lParam
);
5764 #endif // !__WXMICROWIN__
5767 const wxChar
*wxGetMessageName(int message
)
5771 case 0x0000: return wxT("WM_NULL");
5772 case 0x0001: return wxT("WM_CREATE");
5773 case 0x0002: return wxT("WM_DESTROY");
5774 case 0x0003: return wxT("WM_MOVE");
5775 case 0x0005: return wxT("WM_SIZE");
5776 case 0x0006: return wxT("WM_ACTIVATE");
5777 case 0x0007: return wxT("WM_SETFOCUS");
5778 case 0x0008: return wxT("WM_KILLFOCUS");
5779 case 0x000A: return wxT("WM_ENABLE");
5780 case 0x000B: return wxT("WM_SETREDRAW");
5781 case 0x000C: return wxT("WM_SETTEXT");
5782 case 0x000D: return wxT("WM_GETTEXT");
5783 case 0x000E: return wxT("WM_GETTEXTLENGTH");
5784 case 0x000F: return wxT("WM_PAINT");
5785 case 0x0010: return wxT("WM_CLOSE");
5786 case 0x0011: return wxT("WM_QUERYENDSESSION");
5787 case 0x0012: return wxT("WM_QUIT");
5788 case 0x0013: return wxT("WM_QUERYOPEN");
5789 case 0x0014: return wxT("WM_ERASEBKGND");
5790 case 0x0015: return wxT("WM_SYSCOLORCHANGE");
5791 case 0x0016: return wxT("WM_ENDSESSION");
5792 case 0x0017: return wxT("WM_SYSTEMERROR");
5793 case 0x0018: return wxT("WM_SHOWWINDOW");
5794 case 0x0019: return wxT("WM_CTLCOLOR");
5795 case 0x001A: return wxT("WM_WININICHANGE");
5796 case 0x001B: return wxT("WM_DEVMODECHANGE");
5797 case 0x001C: return wxT("WM_ACTIVATEAPP");
5798 case 0x001D: return wxT("WM_FONTCHANGE");
5799 case 0x001E: return wxT("WM_TIMECHANGE");
5800 case 0x001F: return wxT("WM_CANCELMODE");
5801 case 0x0020: return wxT("WM_SETCURSOR");
5802 case 0x0021: return wxT("WM_MOUSEACTIVATE");
5803 case 0x0022: return wxT("WM_CHILDACTIVATE");
5804 case 0x0023: return wxT("WM_QUEUESYNC");
5805 case 0x0024: return wxT("WM_GETMINMAXINFO");
5806 case 0x0026: return wxT("WM_PAINTICON");
5807 case 0x0027: return wxT("WM_ICONERASEBKGND");
5808 case 0x0028: return wxT("WM_NEXTDLGCTL");
5809 case 0x002A: return wxT("WM_SPOOLERSTATUS");
5810 case 0x002B: return wxT("WM_DRAWITEM");
5811 case 0x002C: return wxT("WM_MEASUREITEM");
5812 case 0x002D: return wxT("WM_DELETEITEM");
5813 case 0x002E: return wxT("WM_VKEYTOITEM");
5814 case 0x002F: return wxT("WM_CHARTOITEM");
5815 case 0x0030: return wxT("WM_SETFONT");
5816 case 0x0031: return wxT("WM_GETFONT");
5817 case 0x0037: return wxT("WM_QUERYDRAGICON");
5818 case 0x0039: return wxT("WM_COMPAREITEM");
5819 case 0x0041: return wxT("WM_COMPACTING");
5820 case 0x0044: return wxT("WM_COMMNOTIFY");
5821 case 0x0046: return wxT("WM_WINDOWPOSCHANGING");
5822 case 0x0047: return wxT("WM_WINDOWPOSCHANGED");
5823 case 0x0048: return wxT("WM_POWER");
5825 case 0x004A: return wxT("WM_COPYDATA");
5826 case 0x004B: return wxT("WM_CANCELJOURNAL");
5827 case 0x004E: return wxT("WM_NOTIFY");
5828 case 0x0050: return wxT("WM_INPUTLANGCHANGEREQUEST");
5829 case 0x0051: return wxT("WM_INPUTLANGCHANGE");
5830 case 0x0052: return wxT("WM_TCARD");
5831 case 0x0053: return wxT("WM_HELP");
5832 case 0x0054: return wxT("WM_USERCHANGED");
5833 case 0x0055: return wxT("WM_NOTIFYFORMAT");
5834 case 0x007B: return wxT("WM_CONTEXTMENU");
5835 case 0x007C: return wxT("WM_STYLECHANGING");
5836 case 0x007D: return wxT("WM_STYLECHANGED");
5837 case 0x007E: return wxT("WM_DISPLAYCHANGE");
5838 case 0x007F: return wxT("WM_GETICON");
5839 case 0x0080: return wxT("WM_SETICON");
5841 case 0x0081: return wxT("WM_NCCREATE");
5842 case 0x0082: return wxT("WM_NCDESTROY");
5843 case 0x0083: return wxT("WM_NCCALCSIZE");
5844 case 0x0084: return wxT("WM_NCHITTEST");
5845 case 0x0085: return wxT("WM_NCPAINT");
5846 case 0x0086: return wxT("WM_NCACTIVATE");
5847 case 0x0087: return wxT("WM_GETDLGCODE");
5848 case 0x00A0: return wxT("WM_NCMOUSEMOVE");
5849 case 0x00A1: return wxT("WM_NCLBUTTONDOWN");
5850 case 0x00A2: return wxT("WM_NCLBUTTONUP");
5851 case 0x00A3: return wxT("WM_NCLBUTTONDBLCLK");
5852 case 0x00A4: return wxT("WM_NCRBUTTONDOWN");
5853 case 0x00A5: return wxT("WM_NCRBUTTONUP");
5854 case 0x00A6: return wxT("WM_NCRBUTTONDBLCLK");
5855 case 0x00A7: return wxT("WM_NCMBUTTONDOWN");
5856 case 0x00A8: return wxT("WM_NCMBUTTONUP");
5857 case 0x00A9: return wxT("WM_NCMBUTTONDBLCLK");
5858 case 0x0100: return wxT("WM_KEYDOWN");
5859 case 0x0101: return wxT("WM_KEYUP");
5860 case 0x0102: return wxT("WM_CHAR");
5861 case 0x0103: return wxT("WM_DEADCHAR");
5862 case 0x0104: return wxT("WM_SYSKEYDOWN");
5863 case 0x0105: return wxT("WM_SYSKEYUP");
5864 case 0x0106: return wxT("WM_SYSCHAR");
5865 case 0x0107: return wxT("WM_SYSDEADCHAR");
5866 case 0x0108: return wxT("WM_KEYLAST");
5868 case 0x010D: return wxT("WM_IME_STARTCOMPOSITION");
5869 case 0x010E: return wxT("WM_IME_ENDCOMPOSITION");
5870 case 0x010F: return wxT("WM_IME_COMPOSITION");
5872 case 0x0110: return wxT("WM_INITDIALOG");
5873 case 0x0111: return wxT("WM_COMMAND");
5874 case 0x0112: return wxT("WM_SYSCOMMAND");
5875 case 0x0113: return wxT("WM_TIMER");
5876 case 0x0114: return wxT("WM_HSCROLL");
5877 case 0x0115: return wxT("WM_VSCROLL");
5878 case 0x0116: return wxT("WM_INITMENU");
5879 case 0x0117: return wxT("WM_INITMENUPOPUP");
5880 case 0x011F: return wxT("WM_MENUSELECT");
5881 case 0x0120: return wxT("WM_MENUCHAR");
5882 case 0x0121: return wxT("WM_ENTERIDLE");
5883 case 0x0200: return wxT("WM_MOUSEMOVE");
5884 case 0x0201: return wxT("WM_LBUTTONDOWN");
5885 case 0x0202: return wxT("WM_LBUTTONUP");
5886 case 0x0203: return wxT("WM_LBUTTONDBLCLK");
5887 case 0x0204: return wxT("WM_RBUTTONDOWN");
5888 case 0x0205: return wxT("WM_RBUTTONUP");
5889 case 0x0206: return wxT("WM_RBUTTONDBLCLK");
5890 case 0x0207: return wxT("WM_MBUTTONDOWN");
5891 case 0x0208: return wxT("WM_MBUTTONUP");
5892 case 0x0209: return wxT("WM_MBUTTONDBLCLK");
5893 case 0x020A: return wxT("WM_MOUSEWHEEL");
5894 case 0x0210: return wxT("WM_PARENTNOTIFY");
5895 case 0x0211: return wxT("WM_ENTERMENULOOP");
5896 case 0x0212: return wxT("WM_EXITMENULOOP");
5898 case 0x0213: return wxT("WM_NEXTMENU");
5899 case 0x0214: return wxT("WM_SIZING");
5900 case 0x0215: return wxT("WM_CAPTURECHANGED");
5901 case 0x0216: return wxT("WM_MOVING");
5902 case 0x0218: return wxT("WM_POWERBROADCAST");
5903 case 0x0219: return wxT("WM_DEVICECHANGE");
5905 case 0x0220: return wxT("WM_MDICREATE");
5906 case 0x0221: return wxT("WM_MDIDESTROY");
5907 case 0x0222: return wxT("WM_MDIACTIVATE");
5908 case 0x0223: return wxT("WM_MDIRESTORE");
5909 case 0x0224: return wxT("WM_MDINEXT");
5910 case 0x0225: return wxT("WM_MDIMAXIMIZE");
5911 case 0x0226: return wxT("WM_MDITILE");
5912 case 0x0227: return wxT("WM_MDICASCADE");
5913 case 0x0228: return wxT("WM_MDIICONARRANGE");
5914 case 0x0229: return wxT("WM_MDIGETACTIVE");
5915 case 0x0230: return wxT("WM_MDISETMENU");
5916 case 0x0233: return wxT("WM_DROPFILES");
5918 case 0x0281: return wxT("WM_IME_SETCONTEXT");
5919 case 0x0282: return wxT("WM_IME_NOTIFY");
5920 case 0x0283: return wxT("WM_IME_CONTROL");
5921 case 0x0284: return wxT("WM_IME_COMPOSITIONFULL");
5922 case 0x0285: return wxT("WM_IME_SELECT");
5923 case 0x0286: return wxT("WM_IME_CHAR");
5924 case 0x0290: return wxT("WM_IME_KEYDOWN");
5925 case 0x0291: return wxT("WM_IME_KEYUP");
5927 case 0x0300: return wxT("WM_CUT");
5928 case 0x0301: return wxT("WM_COPY");
5929 case 0x0302: return wxT("WM_PASTE");
5930 case 0x0303: return wxT("WM_CLEAR");
5931 case 0x0304: return wxT("WM_UNDO");
5932 case 0x0305: return wxT("WM_RENDERFORMAT");
5933 case 0x0306: return wxT("WM_RENDERALLFORMATS");
5934 case 0x0307: return wxT("WM_DESTROYCLIPBOARD");
5935 case 0x0308: return wxT("WM_DRAWCLIPBOARD");
5936 case 0x0309: return wxT("WM_PAINTCLIPBOARD");
5937 case 0x030A: return wxT("WM_VSCROLLCLIPBOARD");
5938 case 0x030B: return wxT("WM_SIZECLIPBOARD");
5939 case 0x030C: return wxT("WM_ASKCBFORMATNAME");
5940 case 0x030D: return wxT("WM_CHANGECBCHAIN");
5941 case 0x030E: return wxT("WM_HSCROLLCLIPBOARD");
5942 case 0x030F: return wxT("WM_QUERYNEWPALETTE");
5943 case 0x0310: return wxT("WM_PALETTEISCHANGING");
5944 case 0x0311: return wxT("WM_PALETTECHANGED");
5946 case 0x0312: return wxT("WM_HOTKEY");
5949 // common controls messages - although they're not strictly speaking
5950 // standard, it's nice to decode them nevertheless
5953 case 0x1000 + 0: return wxT("LVM_GETBKCOLOR");
5954 case 0x1000 + 1: return wxT("LVM_SETBKCOLOR");
5955 case 0x1000 + 2: return wxT("LVM_GETIMAGELIST");
5956 case 0x1000 + 3: return wxT("LVM_SETIMAGELIST");
5957 case 0x1000 + 4: return wxT("LVM_GETITEMCOUNT");
5958 case 0x1000 + 5: return wxT("LVM_GETITEMA");
5959 case 0x1000 + 75: return wxT("LVM_GETITEMW");
5960 case 0x1000 + 6: return wxT("LVM_SETITEMA");
5961 case 0x1000 + 76: return wxT("LVM_SETITEMW");
5962 case 0x1000 + 7: return wxT("LVM_INSERTITEMA");
5963 case 0x1000 + 77: return wxT("LVM_INSERTITEMW");
5964 case 0x1000 + 8: return wxT("LVM_DELETEITEM");
5965 case 0x1000 + 9: return wxT("LVM_DELETEALLITEMS");
5966 case 0x1000 + 10: return wxT("LVM_GETCALLBACKMASK");
5967 case 0x1000 + 11: return wxT("LVM_SETCALLBACKMASK");
5968 case 0x1000 + 12: return wxT("LVM_GETNEXTITEM");
5969 case 0x1000 + 13: return wxT("LVM_FINDITEMA");
5970 case 0x1000 + 83: return wxT("LVM_FINDITEMW");
5971 case 0x1000 + 14: return wxT("LVM_GETITEMRECT");
5972 case 0x1000 + 15: return wxT("LVM_SETITEMPOSITION");
5973 case 0x1000 + 16: return wxT("LVM_GETITEMPOSITION");
5974 case 0x1000 + 17: return wxT("LVM_GETSTRINGWIDTHA");
5975 case 0x1000 + 87: return wxT("LVM_GETSTRINGWIDTHW");
5976 case 0x1000 + 18: return wxT("LVM_HITTEST");
5977 case 0x1000 + 19: return wxT("LVM_ENSUREVISIBLE");
5978 case 0x1000 + 20: return wxT("LVM_SCROLL");
5979 case 0x1000 + 21: return wxT("LVM_REDRAWITEMS");
5980 case 0x1000 + 22: return wxT("LVM_ARRANGE");
5981 case 0x1000 + 23: return wxT("LVM_EDITLABELA");
5982 case 0x1000 + 118: return wxT("LVM_EDITLABELW");
5983 case 0x1000 + 24: return wxT("LVM_GETEDITCONTROL");
5984 case 0x1000 + 25: return wxT("LVM_GETCOLUMNA");
5985 case 0x1000 + 95: return wxT("LVM_GETCOLUMNW");
5986 case 0x1000 + 26: return wxT("LVM_SETCOLUMNA");
5987 case 0x1000 + 96: return wxT("LVM_SETCOLUMNW");
5988 case 0x1000 + 27: return wxT("LVM_INSERTCOLUMNA");
5989 case 0x1000 + 97: return wxT("LVM_INSERTCOLUMNW");
5990 case 0x1000 + 28: return wxT("LVM_DELETECOLUMN");
5991 case 0x1000 + 29: return wxT("LVM_GETCOLUMNWIDTH");
5992 case 0x1000 + 30: return wxT("LVM_SETCOLUMNWIDTH");
5993 case 0x1000 + 31: return wxT("LVM_GETHEADER");
5994 case 0x1000 + 33: return wxT("LVM_CREATEDRAGIMAGE");
5995 case 0x1000 + 34: return wxT("LVM_GETVIEWRECT");
5996 case 0x1000 + 35: return wxT("LVM_GETTEXTCOLOR");
5997 case 0x1000 + 36: return wxT("LVM_SETTEXTCOLOR");
5998 case 0x1000 + 37: return wxT("LVM_GETTEXTBKCOLOR");
5999 case 0x1000 + 38: return wxT("LVM_SETTEXTBKCOLOR");
6000 case 0x1000 + 39: return wxT("LVM_GETTOPINDEX");
6001 case 0x1000 + 40: return wxT("LVM_GETCOUNTPERPAGE");
6002 case 0x1000 + 41: return wxT("LVM_GETORIGIN");
6003 case 0x1000 + 42: return wxT("LVM_UPDATE");
6004 case 0x1000 + 43: return wxT("LVM_SETITEMSTATE");
6005 case 0x1000 + 44: return wxT("LVM_GETITEMSTATE");
6006 case 0x1000 + 45: return wxT("LVM_GETITEMTEXTA");
6007 case 0x1000 + 115: return wxT("LVM_GETITEMTEXTW");
6008 case 0x1000 + 46: return wxT("LVM_SETITEMTEXTA");
6009 case 0x1000 + 116: return wxT("LVM_SETITEMTEXTW");
6010 case 0x1000 + 47: return wxT("LVM_SETITEMCOUNT");
6011 case 0x1000 + 48: return wxT("LVM_SORTITEMS");
6012 case 0x1000 + 49: return wxT("LVM_SETITEMPOSITION32");
6013 case 0x1000 + 50: return wxT("LVM_GETSELECTEDCOUNT");
6014 case 0x1000 + 51: return wxT("LVM_GETITEMSPACING");
6015 case 0x1000 + 52: return wxT("LVM_GETISEARCHSTRINGA");
6016 case 0x1000 + 117: return wxT("LVM_GETISEARCHSTRINGW");
6017 case 0x1000 + 53: return wxT("LVM_SETICONSPACING");
6018 case 0x1000 + 54: return wxT("LVM_SETEXTENDEDLISTVIEWSTYLE");
6019 case 0x1000 + 55: return wxT("LVM_GETEXTENDEDLISTVIEWSTYLE");
6020 case 0x1000 + 56: return wxT("LVM_GETSUBITEMRECT");
6021 case 0x1000 + 57: return wxT("LVM_SUBITEMHITTEST");
6022 case 0x1000 + 58: return wxT("LVM_SETCOLUMNORDERARRAY");
6023 case 0x1000 + 59: return wxT("LVM_GETCOLUMNORDERARRAY");
6024 case 0x1000 + 60: return wxT("LVM_SETHOTITEM");
6025 case 0x1000 + 61: return wxT("LVM_GETHOTITEM");
6026 case 0x1000 + 62: return wxT("LVM_SETHOTCURSOR");
6027 case 0x1000 + 63: return wxT("LVM_GETHOTCURSOR");
6028 case 0x1000 + 64: return wxT("LVM_APPROXIMATEVIEWRECT");
6029 case 0x1000 + 65: return wxT("LVM_SETWORKAREA");
6032 case 0x1100 + 0: return wxT("TVM_INSERTITEMA");
6033 case 0x1100 + 50: return wxT("TVM_INSERTITEMW");
6034 case 0x1100 + 1: return wxT("TVM_DELETEITEM");
6035 case 0x1100 + 2: return wxT("TVM_EXPAND");
6036 case 0x1100 + 4: return wxT("TVM_GETITEMRECT");
6037 case 0x1100 + 5: return wxT("TVM_GETCOUNT");
6038 case 0x1100 + 6: return wxT("TVM_GETINDENT");
6039 case 0x1100 + 7: return wxT("TVM_SETINDENT");
6040 case 0x1100 + 8: return wxT("TVM_GETIMAGELIST");
6041 case 0x1100 + 9: return wxT("TVM_SETIMAGELIST");
6042 case 0x1100 + 10: return wxT("TVM_GETNEXTITEM");
6043 case 0x1100 + 11: return wxT("TVM_SELECTITEM");
6044 case 0x1100 + 12: return wxT("TVM_GETITEMA");
6045 case 0x1100 + 62: return wxT("TVM_GETITEMW");
6046 case 0x1100 + 13: return wxT("TVM_SETITEMA");
6047 case 0x1100 + 63: return wxT("TVM_SETITEMW");
6048 case 0x1100 + 14: return wxT("TVM_EDITLABELA");
6049 case 0x1100 + 65: return wxT("TVM_EDITLABELW");
6050 case 0x1100 + 15: return wxT("TVM_GETEDITCONTROL");
6051 case 0x1100 + 16: return wxT("TVM_GETVISIBLECOUNT");
6052 case 0x1100 + 17: return wxT("TVM_HITTEST");
6053 case 0x1100 + 18: return wxT("TVM_CREATEDRAGIMAGE");
6054 case 0x1100 + 19: return wxT("TVM_SORTCHILDREN");
6055 case 0x1100 + 20: return wxT("TVM_ENSUREVISIBLE");
6056 case 0x1100 + 21: return wxT("TVM_SORTCHILDRENCB");
6057 case 0x1100 + 22: return wxT("TVM_ENDEDITLABELNOW");
6058 case 0x1100 + 23: return wxT("TVM_GETISEARCHSTRINGA");
6059 case 0x1100 + 64: return wxT("TVM_GETISEARCHSTRINGW");
6060 case 0x1100 + 24: return wxT("TVM_SETTOOLTIPS");
6061 case 0x1100 + 25: return wxT("TVM_GETTOOLTIPS");
6064 case 0x1200 + 0: return wxT("HDM_GETITEMCOUNT");
6065 case 0x1200 + 1: return wxT("HDM_INSERTITEMA");
6066 case 0x1200 + 10: return wxT("HDM_INSERTITEMW");
6067 case 0x1200 + 2: return wxT("HDM_DELETEITEM");
6068 case 0x1200 + 3: return wxT("HDM_GETITEMA");
6069 case 0x1200 + 11: return wxT("HDM_GETITEMW");
6070 case 0x1200 + 4: return wxT("HDM_SETITEMA");
6071 case 0x1200 + 12: return wxT("HDM_SETITEMW");
6072 case 0x1200 + 5: return wxT("HDM_LAYOUT");
6073 case 0x1200 + 6: return wxT("HDM_HITTEST");
6074 case 0x1200 + 7: return wxT("HDM_GETITEMRECT");
6075 case 0x1200 + 8: return wxT("HDM_SETIMAGELIST");
6076 case 0x1200 + 9: return wxT("HDM_GETIMAGELIST");
6077 case 0x1200 + 15: return wxT("HDM_ORDERTOINDEX");
6078 case 0x1200 + 16: return wxT("HDM_CREATEDRAGIMAGE");
6079 case 0x1200 + 17: return wxT("HDM_GETORDERARRAY");
6080 case 0x1200 + 18: return wxT("HDM_SETORDERARRAY");
6081 case 0x1200 + 19: return wxT("HDM_SETHOTDIVIDER");
6084 case 0x1300 + 2: return wxT("TCM_GETIMAGELIST");
6085 case 0x1300 + 3: return wxT("TCM_SETIMAGELIST");
6086 case 0x1300 + 4: return wxT("TCM_GETITEMCOUNT");
6087 case 0x1300 + 5: return wxT("TCM_GETITEMA");
6088 case 0x1300 + 60: return wxT("TCM_GETITEMW");
6089 case 0x1300 + 6: return wxT("TCM_SETITEMA");
6090 case 0x1300 + 61: return wxT("TCM_SETITEMW");
6091 case 0x1300 + 7: return wxT("TCM_INSERTITEMA");
6092 case 0x1300 + 62: return wxT("TCM_INSERTITEMW");
6093 case 0x1300 + 8: return wxT("TCM_DELETEITEM");
6094 case 0x1300 + 9: return wxT("TCM_DELETEALLITEMS");
6095 case 0x1300 + 10: return wxT("TCM_GETITEMRECT");
6096 case 0x1300 + 11: return wxT("TCM_GETCURSEL");
6097 case 0x1300 + 12: return wxT("TCM_SETCURSEL");
6098 case 0x1300 + 13: return wxT("TCM_HITTEST");
6099 case 0x1300 + 14: return wxT("TCM_SETITEMEXTRA");
6100 case 0x1300 + 40: return wxT("TCM_ADJUSTRECT");
6101 case 0x1300 + 41: return wxT("TCM_SETITEMSIZE");
6102 case 0x1300 + 42: return wxT("TCM_REMOVEIMAGE");
6103 case 0x1300 + 43: return wxT("TCM_SETPADDING");
6104 case 0x1300 + 44: return wxT("TCM_GETROWCOUNT");
6105 case 0x1300 + 45: return wxT("TCM_GETTOOLTIPS");
6106 case 0x1300 + 46: return wxT("TCM_SETTOOLTIPS");
6107 case 0x1300 + 47: return wxT("TCM_GETCURFOCUS");
6108 case 0x1300 + 48: return wxT("TCM_SETCURFOCUS");
6109 case 0x1300 + 49: return wxT("TCM_SETMINTABWIDTH");
6110 case 0x1300 + 50: return wxT("TCM_DESELECTALL");
6113 case WM_USER
+1: return wxT("TB_ENABLEBUTTON");
6114 case WM_USER
+2: return wxT("TB_CHECKBUTTON");
6115 case WM_USER
+3: return wxT("TB_PRESSBUTTON");
6116 case WM_USER
+4: return wxT("TB_HIDEBUTTON");
6117 case WM_USER
+5: return wxT("TB_INDETERMINATE");
6118 case WM_USER
+9: return wxT("TB_ISBUTTONENABLED");
6119 case WM_USER
+10: return wxT("TB_ISBUTTONCHECKED");
6120 case WM_USER
+11: return wxT("TB_ISBUTTONPRESSED");
6121 case WM_USER
+12: return wxT("TB_ISBUTTONHIDDEN");
6122 case WM_USER
+13: return wxT("TB_ISBUTTONINDETERMINATE");
6123 case WM_USER
+17: return wxT("TB_SETSTATE");
6124 case WM_USER
+18: return wxT("TB_GETSTATE");
6125 case WM_USER
+19: return wxT("TB_ADDBITMAP");
6126 case WM_USER
+20: return wxT("TB_ADDBUTTONS");
6127 case WM_USER
+21: return wxT("TB_INSERTBUTTON");
6128 case WM_USER
+22: return wxT("TB_DELETEBUTTON");
6129 case WM_USER
+23: return wxT("TB_GETBUTTON");
6130 case WM_USER
+24: return wxT("TB_BUTTONCOUNT");
6131 case WM_USER
+25: return wxT("TB_COMMANDTOINDEX");
6132 case WM_USER
+26: return wxT("TB_SAVERESTOREA");
6133 case WM_USER
+76: return wxT("TB_SAVERESTOREW");
6134 case WM_USER
+27: return wxT("TB_CUSTOMIZE");
6135 case WM_USER
+28: return wxT("TB_ADDSTRINGA");
6136 case WM_USER
+77: return wxT("TB_ADDSTRINGW");
6137 case WM_USER
+29: return wxT("TB_GETITEMRECT");
6138 case WM_USER
+30: return wxT("TB_BUTTONSTRUCTSIZE");
6139 case WM_USER
+31: return wxT("TB_SETBUTTONSIZE");
6140 case WM_USER
+32: return wxT("TB_SETBITMAPSIZE");
6141 case WM_USER
+33: return wxT("TB_AUTOSIZE");
6142 case WM_USER
+35: return wxT("TB_GETTOOLTIPS");
6143 case WM_USER
+36: return wxT("TB_SETTOOLTIPS");
6144 case WM_USER
+37: return wxT("TB_SETPARENT");
6145 case WM_USER
+39: return wxT("TB_SETROWS");
6146 case WM_USER
+40: return wxT("TB_GETROWS");
6147 case WM_USER
+42: return wxT("TB_SETCMDID");
6148 case WM_USER
+43: return wxT("TB_CHANGEBITMAP");
6149 case WM_USER
+44: return wxT("TB_GETBITMAP");
6150 case WM_USER
+45: return wxT("TB_GETBUTTONTEXTA");
6151 case WM_USER
+75: return wxT("TB_GETBUTTONTEXTW");
6152 case WM_USER
+46: return wxT("TB_REPLACEBITMAP");
6153 case WM_USER
+47: return wxT("TB_SETINDENT");
6154 case WM_USER
+48: return wxT("TB_SETIMAGELIST");
6155 case WM_USER
+49: return wxT("TB_GETIMAGELIST");
6156 case WM_USER
+50: return wxT("TB_LOADIMAGES");
6157 case WM_USER
+51: return wxT("TB_GETRECT");
6158 case WM_USER
+52: return wxT("TB_SETHOTIMAGELIST");
6159 case WM_USER
+53: return wxT("TB_GETHOTIMAGELIST");
6160 case WM_USER
+54: return wxT("TB_SETDISABLEDIMAGELIST");
6161 case WM_USER
+55: return wxT("TB_GETDISABLEDIMAGELIST");
6162 case WM_USER
+56: return wxT("TB_SETSTYLE");
6163 case WM_USER
+57: return wxT("TB_GETSTYLE");
6164 case WM_USER
+58: return wxT("TB_GETBUTTONSIZE");
6165 case WM_USER
+59: return wxT("TB_SETBUTTONWIDTH");
6166 case WM_USER
+60: return wxT("TB_SETMAXTEXTROWS");
6167 case WM_USER
+61: return wxT("TB_GETTEXTROWS");
6168 case WM_USER
+41: return wxT("TB_GETBITMAPFLAGS");
6171 static wxString s_szBuf
;
6172 s_szBuf
.Printf(wxT("<unknown message = %d>"), message
);
6173 return s_szBuf
.c_str();
6176 #endif //__WXDEBUG__
6178 static TEXTMETRIC
wxGetTextMetrics(const wxWindowMSW
*win
)
6182 HWND hwnd
= GetHwndOf(win
);
6183 HDC hdc
= ::GetDC(hwnd
);
6185 #if !wxDIALOG_UNIT_COMPATIBILITY
6186 // and select the current font into it
6187 HFONT hfont
= GetHfontOf(win
->GetFont());
6190 hfont
= (HFONT
)::SelectObject(hdc
, hfont
);
6194 // finally retrieve the text metrics from it
6195 GetTextMetrics(hdc
, &tm
);
6197 #if !wxDIALOG_UNIT_COMPATIBILITY
6201 (void)::SelectObject(hdc
, hfont
);
6205 ::ReleaseDC(hwnd
, hdc
);
6210 // Find the wxWindow at the current mouse position, returning the mouse
6212 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
6214 pt
= wxGetMousePosition();
6215 return wxFindWindowAtPoint(pt
);
6218 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
6223 HWND hWndHit
= ::WindowFromPoint(pt2
);
6225 wxWindow
* win
= wxFindWinFromHandle((WXHWND
) hWndHit
) ;
6226 HWND hWnd
= hWndHit
;
6228 // Try to find a window with a wxWindow associated with it
6229 while (!win
&& (hWnd
!= 0))
6231 hWnd
= ::GetParent(hWnd
);
6232 win
= wxFindWinFromHandle((WXHWND
) hWnd
) ;
6237 // Get the current mouse position.
6238 wxPoint
wxGetMousePosition()
6242 GetCursorPosWinCE(&pt
);
6244 GetCursorPos( & pt
);
6247 return wxPoint(pt
.x
, pt
.y
);
6252 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
6253 static void WinCEUnregisterHotKey(int modifiers
, int id
)
6255 // Register hotkeys for the hardware buttons
6257 typedef BOOL (WINAPI
*UnregisterFunc1Proc
)(UINT
, UINT
);
6259 UnregisterFunc1Proc procUnregisterFunc
;
6260 hCoreDll
= LoadLibrary(_T("coredll.dll"));
6263 procUnregisterFunc
= (UnregisterFunc1Proc
)GetProcAddress(hCoreDll
, _T("UnregisterFunc1"));
6264 if (procUnregisterFunc
)
6265 procUnregisterFunc(modifiers
, id
);
6266 FreeLibrary(hCoreDll
);
6271 bool wxWindowMSW::RegisterHotKey(int hotkeyId
, int modifiers
, int keycode
)
6273 UINT win_modifiers
=0;
6274 if ( modifiers
& wxMOD_ALT
)
6275 win_modifiers
|= MOD_ALT
;
6276 if ( modifiers
& wxMOD_SHIFT
)
6277 win_modifiers
|= MOD_SHIFT
;
6278 if ( modifiers
& wxMOD_CONTROL
)
6279 win_modifiers
|= MOD_CONTROL
;
6280 if ( modifiers
& wxMOD_WIN
)
6281 win_modifiers
|= MOD_WIN
;
6283 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
6284 // Required for PPC and Smartphone hardware buttons
6285 if (keycode
>= WXK_SPECIAL1
&& keycode
<= WXK_SPECIAL20
)
6286 WinCEUnregisterHotKey(win_modifiers
, hotkeyId
);
6289 if ( !::RegisterHotKey(GetHwnd(), hotkeyId
, win_modifiers
, keycode
) )
6291 wxLogLastError(_T("RegisterHotKey"));
6299 bool wxWindowMSW::UnregisterHotKey(int hotkeyId
)
6301 #if defined(__SMARTPHONE__) || defined(__POCKETPC__)
6302 WinCEUnregisterHotKey(MOD_WIN
, hotkeyId
);
6305 if ( !::UnregisterHotKey(GetHwnd(), hotkeyId
) )
6307 wxLogLastError(_T("UnregisterHotKey"));
6317 bool wxWindowMSW::HandleHotKey(WXWPARAM wParam
, WXLPARAM lParam
)
6319 int hotkeyId
= wParam
;
6320 int virtualKey
= HIWORD(lParam
);
6321 int win_modifiers
= LOWORD(lParam
);
6323 wxKeyEvent
event(CreateKeyEvent(wxEVT_HOTKEY
, virtualKey
, wParam
, lParam
));
6324 event
.SetId(hotkeyId
);
6325 event
.m_shiftDown
= (win_modifiers
& MOD_SHIFT
) != 0;
6326 event
.m_controlDown
= (win_modifiers
& MOD_CONTROL
) != 0;
6327 event
.m_altDown
= (win_modifiers
& MOD_ALT
) != 0;
6328 event
.m_metaDown
= (win_modifiers
& MOD_WIN
) != 0;
6330 return GetEventHandler()->ProcessEvent(event
);
6333 #endif // wxUSE_ACCEL
6335 #endif // wxUSE_HOTKEY
6337 // Not tested under WinCE
6340 // this class installs a message hook which really wakes up our idle processing
6341 // each time a WM_NULL is received (wxWakeUpIdle does this), even if we're
6342 // sitting inside a local modal loop (e.g. a menu is opened or scrollbar is
6343 // being dragged or even inside ::MessageBox()) and so don't control message
6344 // dispatching otherwise
6345 class wxIdleWakeUpModule
: public wxModule
6348 virtual bool OnInit()
6350 ms_hMsgHookProc
= ::SetWindowsHookEx
6353 &wxIdleWakeUpModule::MsgHookProc
,
6355 GetCurrentThreadId()
6358 if ( !ms_hMsgHookProc
)
6360 wxLogLastError(_T("SetWindowsHookEx(WH_GETMESSAGE)"));
6368 virtual void OnExit()
6370 ::UnhookWindowsHookEx(wxIdleWakeUpModule::ms_hMsgHookProc
);
6373 static LRESULT CALLBACK
MsgHookProc(int nCode
, WPARAM wParam
, LPARAM lParam
)
6375 MSG
*msg
= (MSG
*)lParam
;
6377 // only process the message if it is actually going to be removed from
6378 // the message queue, this prevents that the same event from being
6379 // processed multiple times if now someone just called PeekMessage()
6380 if ( msg
->message
== WM_NULL
&& wParam
== PM_REMOVE
)
6382 wxTheApp
->ProcessPendingEvents();
6385 return CallNextHookEx(ms_hMsgHookProc
, nCode
, wParam
, lParam
);
6389 static HHOOK ms_hMsgHookProc
;
6391 DECLARE_DYNAMIC_CLASS(wxIdleWakeUpModule
)
6394 HHOOK
wxIdleWakeUpModule::ms_hMsgHookProc
= 0;
6396 IMPLEMENT_DYNAMIC_CLASS(wxIdleWakeUpModule
, wxModule
)
6398 #endif // __WXWINCE__
6403 static void wxAdjustZOrder(wxWindow
* parent
)
6405 if (parent
->IsKindOf(CLASSINFO(wxStaticBox
)))
6407 // Set the z-order correctly
6408 SetWindowPos((HWND
) parent
->GetHWND(), HWND_BOTTOM
, 0, 0, 0, 0, SWP_NOMOVE
|SWP_NOSIZE
);
6411 wxWindowList::compatibility_iterator current
= parent
->GetChildren().GetFirst();
6414 wxWindow
*childWin
= current
->GetData();
6415 wxAdjustZOrder(childWin
);
6416 current
= current
->GetNext();
6421 // We need to adjust the z-order of static boxes in WinCE, to
6422 // make 'contained' controls visible
6423 void wxWindowMSW::OnInitDialog( wxInitDialogEvent
& event
)
6426 wxAdjustZOrder(this);