1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
5 // Modified by: VZ on 13.05.99: no more Default(), MSWOnXXX() reorganisation
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
21 #pragma implementation "window.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #include "wx/msw/winundef.h"
34 #include "wx/window.h"
39 #include "wx/dcclient.h"
43 #include "wx/layout.h"
44 #include "wx/dialog.h"
46 #include "wx/listbox.h"
47 #include "wx/button.h"
48 #include "wx/msgdlg.h"
49 #include "wx/settings.h"
55 #include "wx/ownerdrw.h"
58 #if wxUSE_DRAG_AND_DROP
62 #include "wx/menuitem.h"
65 #include "wx/msw/private.h"
68 #include "wx/tooltip.h"
76 #include "wx/spinctrl.h"
77 #endif // wxUSE_SPINCTRL
82 #include "wx/textctrl.h"
83 #include "wx/notebook.h"
87 #if !defined(__GNUWIN32_OLD__) || defined(__CYGWIN10__)
96 #if (!defined(__GNUWIN32_OLD__) && !defined(__TWIN32__)) || defined(__CYGWIN10__)
100 #else // broken compiler
102 #include "wx/msw/gnuwin32/extra.h"
106 // This didn't appear in mingw until 2.95.2
108 #define SIF_TRACKPOS 16
112 #ifndef WM_MOUSEWHEEL
113 #define WM_MOUSEWHEEL 0x020A
116 #define WHEEL_DELTA 120
118 #ifndef SPI_GETWHEELSCROLLLINES
119 #define SPI_GETWHEELSCROLLLINES 104
124 // ---------------------------------------------------------------------------
126 // ---------------------------------------------------------------------------
128 // the last Windows message we got (MT-UNSAFE)
129 extern MSG s_currentMsg
;
131 wxMenu
*wxCurrentPopupMenu
= NULL
;
132 extern wxList WXDLLEXPORT wxPendingDelete
;
133 extern const wxChar
*wxCanvasClassName
;
135 // ---------------------------------------------------------------------------
137 // ---------------------------------------------------------------------------
139 // the window proc for all our windows
140 LRESULT WXDLLEXPORT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
,
141 WPARAM wParam
, LPARAM lParam
);
144 const char *wxGetMessageName(int message
);
147 void wxRemoveHandleAssociation(wxWindow
*win
);
148 void wxAssociateWinWithHandle(HWND hWnd
, wxWindow
*win
);
149 wxWindow
*wxFindWinFromHandle(WXHWND hWnd
);
151 // this magical function is used to translate VK_APPS key presses to right
153 static void TranslateKbdEventToMouse(wxWindow
*win
, int *x
, int *y
, WPARAM
*flags
);
155 // get the text metrics for the current font
156 static TEXTMETRIC
wxGetTextMetrics(const wxWindow
*win
);
158 // ---------------------------------------------------------------------------
160 // ---------------------------------------------------------------------------
162 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxWindowBase
)
164 BEGIN_EVENT_TABLE(wxWindow
, wxWindowBase
)
165 EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground
)
166 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged
)
167 EVT_INIT_DIALOG(wxWindow::OnInitDialog
)
168 EVT_IDLE(wxWindow::OnIdle
)
169 EVT_SET_FOCUS(wxWindow::OnSetFocus
)
172 // ===========================================================================
174 // ===========================================================================
176 // ---------------------------------------------------------------------------
177 // wxWindow utility functions
178 // ---------------------------------------------------------------------------
180 // Find an item given the MS Windows id
181 wxWindow
*wxWindow::FindItem(long id
) const
183 wxControl
*item
= wxDynamicThisCast(this, wxControl
);
186 // i it we or one of our "internal" children?
187 if ( item
->GetId() == id
||
188 (item
->GetSubcontrols().Index(id
) != wxNOT_FOUND
) )
194 wxWindowList::Node
*current
= GetChildren().GetFirst();
197 wxWindow
*childWin
= current
->GetData();
199 wxWindow
*wnd
= childWin
->FindItem(id
);
203 current
= current
->GetNext();
209 // Find an item given the MS Windows handle
210 wxWindow
*wxWindow::FindItemByHWND(WXHWND hWnd
, bool controlOnly
) const
212 wxWindowList::Node
*current
= GetChildren().GetFirst();
215 wxWindow
*parent
= current
->GetData();
217 // Do a recursive search.
218 wxWindow
*wnd
= parent
->FindItemByHWND(hWnd
);
222 if ( !controlOnly
|| parent
->IsKindOf(CLASSINFO(wxControl
)) )
224 wxWindow
*item
= current
->GetData();
225 if ( item
->GetHWND() == hWnd
)
229 if ( item
->ContainsHWND(hWnd
) )
234 current
= current
->GetNext();
239 // Default command handler
240 bool wxWindow::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD
WXUNUSED(id
))
245 // ----------------------------------------------------------------------------
246 // constructors and such
247 // ----------------------------------------------------------------------------
249 void wxWindow::Init()
255 m_doubleClickAllowed
= 0;
256 m_winCaptured
= FALSE
;
258 m_isBeingDeleted
= FALSE
;
261 m_mouseInWindow
= FALSE
;
268 // pass WM_GETDLGCODE to DefWindowProc()
273 m_backgroundTransparent
= FALSE
;
275 // as all windows are created with WS_VISIBLE style...
278 #if wxUSE_MOUSEEVENT_HACK
281 m_lastMouseEvent
= -1;
282 #endif // wxUSE_MOUSEEVENT_HACK
286 wxWindow::~wxWindow()
288 m_isBeingDeleted
= TRUE
;
290 MSWDetachWindowMenu();
292 // VS: make sure there's no wxFrame with last focus set to us:
293 for (wxWindow
*win
= GetParent(); win
; win
= win
->GetParent())
295 wxFrame
*frame
= wxDynamicCast(win
, wxFrame
);
298 if ( frame
->GetLastFocus() == this )
299 frame
->SetLastFocus((wxWindow
*)NULL
);
304 // VS: destroy children first and _then_ detach *this from its parent.
305 // If we'd do it the other way around, children wouldn't be able
306 // find their parent frame (see above).
310 m_parent
->RemoveChild(this);
314 // VZ: test temp removed to understand what really happens here
315 //if (::IsWindow(GetHwnd()))
317 if ( !::DestroyWindow(GetHwnd()) )
318 wxLogLastError(wxT("DestroyWindow"));
321 // remove hWnd <-> wxWindow association
322 wxRemoveHandleAssociation(this);
326 // real construction (Init() must have been called before!)
327 bool wxWindow::Create(wxWindow
*parent
, wxWindowID id
,
331 const wxString
& name
)
333 wxCHECK_MSG( parent
, FALSE
, wxT("can't create wxWindow without parent") );
335 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
338 parent
->AddChild(this);
341 if ( style
& wxBORDER
)
342 msflags
|= WS_BORDER
;
343 /* Not appropriate for non-frame/dialog windows, and
344 may clash with other window styles.
345 if ( style & wxTHICK_FRAME )
346 msflags |= WS_THICKFRAME;
348 //msflags |= WS_CHILD /* | WS_CLIPSIBLINGS */ | WS_VISIBLE;
349 msflags
|= WS_CHILD
| WS_VISIBLE
;
350 if ( style
& wxCLIP_CHILDREN
)
351 msflags
|= WS_CLIPCHILDREN
;
352 if ( style
& wxCLIP_SIBLINGS
)
353 msflags
|= WS_CLIPSIBLINGS
;
356 WXDWORD exStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &want3D
);
358 // Even with extended styles, need to combine with WS_BORDER
359 // for them to look right.
360 if ( want3D
|| (m_windowStyle
& wxSIMPLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
361 (m_windowStyle
& wxSUNKEN_BORDER
) || (m_windowStyle
& wxDOUBLE_BORDER
))
363 msflags
|= WS_BORDER
;
366 // calculate the value to return from WM_GETDLGCODE handler
367 if ( GetWindowStyleFlag() & wxWANTS_CHARS
)
369 // want everything: i.e. all keys and WM_CHAR message
370 m_lDlgCode
= DLGC_WANTARROWS
| DLGC_WANTCHARS
|
371 DLGC_WANTTAB
| DLGC_WANTMESSAGE
;
374 return MSWCreate(m_windowId
, parent
, wxCanvasClassName
, this, NULL
,
376 WidthDefault(size
.x
), HeightDefault(size
.y
),
377 msflags
, NULL
, exStyle
);
380 // ---------------------------------------------------------------------------
382 // ---------------------------------------------------------------------------
384 void wxWindow::SetFocus()
386 HWND hWnd
= GetHwnd();
391 // Get the window with the focus
392 wxWindow
*wxWindowBase::FindFocus()
394 HWND hWnd
= ::GetFocus();
397 return wxGetWindowFromHWND((WXHWND
)hWnd
);
403 bool wxWindow::Enable(bool enable
)
405 if ( !wxWindowBase::Enable(enable
) )
408 HWND hWnd
= GetHwnd();
410 ::EnableWindow(hWnd
, (BOOL
)enable
);
412 // VZ: no, this is a bad idea: imagine that you have a dialog with some
413 // disabled controls and disable it - you really wouldn't like the
414 // disabled controls be reenabled too when you reenable the dialog!
416 wxWindowList::Node
*node
= GetChildren().GetFirst();
419 wxWindow
*child
= node
->GetData();
420 child
->Enable(enable
);
422 node
= node
->GetNext();
429 bool wxWindow::Show(bool show
)
431 if ( !wxWindowBase::Show(show
) )
434 HWND hWnd
= GetHwnd();
435 int cshow
= show
? SW_SHOW
: SW_HIDE
;
436 ::ShowWindow(hWnd
, cshow
);
440 BringWindowToTop(hWnd
);
446 // Raise the window to the top of the Z order
447 void wxWindow::Raise()
450 ::BringWindowToTop(GetHwnd());
452 ::SetForegroundWindow(GetHwnd());
456 // Lower the window to the bottom of the Z order
457 void wxWindow::Lower()
459 ::SetWindowPos(GetHwnd(), HWND_BOTTOM
, 0, 0, 0, 0,
460 SWP_NOMOVE
| SWP_NOSIZE
| SWP_NOACTIVATE
);
463 void wxWindow::SetTitle( const wxString
& title
)
465 SetWindowText(GetHwnd(), title
.c_str());
468 wxString
wxWindow::GetTitle() const
470 return wxGetWindowText(GetHWND());
473 void wxWindow::CaptureMouse()
475 HWND hWnd
= GetHwnd();
476 if ( hWnd
&& !m_winCaptured
)
479 m_winCaptured
= TRUE
;
483 void wxWindow::ReleaseMouse()
488 m_winCaptured
= FALSE
;
492 bool wxWindow::SetFont(const wxFont
& font
)
494 if ( !wxWindowBase::SetFont(font
) )
500 HWND hWnd
= GetHwnd();
503 WXHANDLE hFont
= m_font
.GetResourceHandle();
505 wxASSERT_MSG( hFont
, wxT("should have valid font") );
507 ::SendMessage(hWnd
, WM_SETFONT
, (WPARAM
)hFont
, MAKELPARAM(TRUE
, 0));
512 bool wxWindow::SetCursor(const wxCursor
& cursor
)
514 if ( !wxWindowBase::SetCursor(cursor
) )
522 HWND hWnd
= GetHwnd();
524 // Change the cursor NOW if we're within the correct window
526 ::GetCursorPos(&point
);
529 ::GetWindowRect(hWnd
, &rect
);
531 if ( ::PtInRect(&rect
, point
) && !wxIsBusy() )
532 ::SetCursor(GetHcursorOf(m_cursor
));
538 void wxWindow::WarpPointer (int x_pos
, int y_pos
)
540 // Move the pointer to (x_pos,y_pos) coordinates. They are expressed in
541 // pixel coordinates, relatives to the canvas -- So, we first need to
542 // substract origin of the window, then convert to screen position
544 int x
= x_pos
; int y
= y_pos
;
546 GetWindowRect (GetHwnd(), &rect
);
554 #if WXWIN_COMPATIBILITY
555 void wxWindow::MSWDeviceToLogical (float *x
, float *y
) const
558 #endif // WXWIN_COMPATIBILITY
560 // ---------------------------------------------------------------------------
562 // ---------------------------------------------------------------------------
564 #if WXWIN_COMPATIBILITY
565 void wxWindow::SetScrollRange(int orient
, int range
, bool refresh
)
567 #if defined(__WIN95__)
571 // Try to adjust the range to cope with page size > 1
572 // - a Windows API quirk
573 int pageSize
= GetScrollPage(orient
);
574 if ( pageSize
> 1 && range
> 0)
576 range1
+= (pageSize
- 1);
582 if ( orient
== wxHORIZONTAL
) {
588 info
.cbSize
= sizeof(SCROLLINFO
);
589 info
.nPage
= pageSize
; // Have to set this, or scrollbar goes awry
593 info
.fMask
= SIF_RANGE
| SIF_PAGE
;
595 HWND hWnd
= GetHwnd();
597 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
600 if ( orient
== wxHORIZONTAL
)
605 HWND hWnd
= GetHwnd();
607 ::SetScrollRange(hWnd
, wOrient
, 0, range
, refresh
);
611 void wxWindow::SetScrollPage(int orient
, int page
, bool refresh
)
613 #if defined(__WIN95__)
617 if ( orient
== wxHORIZONTAL
) {
625 info
.cbSize
= sizeof(SCROLLINFO
);
628 info
.fMask
= SIF_PAGE
;
630 HWND hWnd
= GetHwnd();
632 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
634 if ( orient
== wxHORIZONTAL
)
641 int wxWindow::OldGetScrollRange(int orient
) const
644 if ( orient
== wxHORIZONTAL
)
649 #if __WATCOMC__ && defined(__WINDOWS_386__)
650 short minPos
, maxPos
;
654 HWND hWnd
= GetHwnd();
657 ::GetScrollRange(hWnd
, wOrient
, &minPos
, &maxPos
);
658 #if defined(__WIN95__)
659 // Try to adjust the range to cope with page size > 1
660 // - a Windows API quirk
661 int pageSize
= GetScrollPage(orient
);
664 maxPos
-= (pageSize
- 1);
673 int wxWindow::GetScrollPage(int orient
) const
675 if ( orient
== wxHORIZONTAL
)
681 #endif // WXWIN_COMPATIBILITY
683 int wxWindow::GetScrollPos(int orient
) const
686 if ( orient
== wxHORIZONTAL
)
690 HWND hWnd
= GetHwnd();
693 return ::GetScrollPos(hWnd
, wOrient
);
699 // This now returns the whole range, not just the number
700 // of positions that we can scroll.
701 int wxWindow::GetScrollRange(int orient
) const
704 if ( orient
== wxHORIZONTAL
)
709 #if __WATCOMC__ && defined(__WINDOWS_386__)
710 short minPos
, maxPos
;
714 HWND hWnd
= GetHwnd();
717 ::GetScrollRange(hWnd
, wOrient
, &minPos
, &maxPos
);
718 #if defined(__WIN95__)
719 // Try to adjust the range to cope with page size > 1
720 // - a Windows API quirk
721 int pageSize
= GetScrollThumb(orient
);
724 maxPos
-= (pageSize
- 1);
726 // October 10th: new range concept.
736 int wxWindow::GetScrollThumb(int orient
) const
738 if ( orient
== wxHORIZONTAL
)
744 void wxWindow::SetScrollPos(int orient
, int pos
, bool refresh
)
746 #if defined(__WIN95__)
750 if ( orient
== wxHORIZONTAL
) {
756 info
.cbSize
= sizeof(SCROLLINFO
);
760 info
.fMask
= SIF_POS
;
762 HWND hWnd
= GetHwnd();
764 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
767 if ( orient
== wxHORIZONTAL
)
772 HWND hWnd
= GetHwnd();
774 ::SetScrollPos(hWnd
, wOrient
, pos
, refresh
);
778 // New function that will replace some of the above.
779 void wxWindow::SetScrollbar(int orient
, int pos
, int thumbVisible
,
780 int range
, bool refresh
)
782 #if defined(__WIN95__)
783 int oldRange
= range
- thumbVisible
;
785 int range1
= oldRange
;
787 // Try to adjust the range to cope with page size > 1
788 // - a Windows API quirk
789 int pageSize
= thumbVisible
;
790 if ( pageSize
> 1 && range
> 0)
792 range1
+= (pageSize
- 1);
798 if ( orient
== wxHORIZONTAL
) {
804 info
.cbSize
= sizeof(SCROLLINFO
);
805 info
.nPage
= pageSize
; // Have to set this, or scrollbar goes awry
809 info
.fMask
= SIF_RANGE
| SIF_PAGE
| SIF_POS
;
811 HWND hWnd
= GetHwnd();
813 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
816 if ( orient
== wxHORIZONTAL
)
821 HWND hWnd
= GetHwnd();
824 ::SetScrollRange(hWnd
, wOrient
, 0, range
, FALSE
);
825 ::SetScrollPos(hWnd
, wOrient
, pos
, refresh
);
828 if ( orient
== wxHORIZONTAL
) {
829 m_xThumbSize
= thumbVisible
;
831 m_yThumbSize
= thumbVisible
;
835 void wxWindow::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
840 rect2
.left
= rect
->x
;
842 rect2
.right
= rect
->x
+ rect
->width
;
843 rect2
.bottom
= rect
->y
+ rect
->height
;
847 ::ScrollWindow(GetHwnd(), dx
, dy
, &rect2
, NULL
);
849 ::ScrollWindow(GetHwnd(), dx
, dy
, NULL
, NULL
);
852 // ---------------------------------------------------------------------------
854 // ---------------------------------------------------------------------------
856 void wxWindow::SubclassWin(WXHWND hWnd
)
858 wxASSERT_MSG( !m_oldWndProc
, wxT("subclassing window twice?") );
860 HWND hwnd
= (HWND
)hWnd
;
861 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in SubclassWin") );
863 wxAssociateWinWithHandle(hwnd
, this);
865 m_oldWndProc
= (WXFARPROC
) GetWindowLong(hwnd
, GWL_WNDPROC
);
866 SetWindowLong(hwnd
, GWL_WNDPROC
, (LONG
) wxWndProc
);
869 void wxWindow::UnsubclassWin()
871 wxRemoveHandleAssociation(this);
873 // Restore old Window proc
874 HWND hwnd
= GetHwnd();
879 wxCHECK_RET( ::IsWindow(hwnd
), wxT("invalid HWND in UnsubclassWin") );
881 FARPROC farProc
= (FARPROC
) GetWindowLong(hwnd
, GWL_WNDPROC
);
882 if ( (m_oldWndProc
!= 0) && (farProc
!= (FARPROC
) m_oldWndProc
) )
884 SetWindowLong(hwnd
, GWL_WNDPROC
, (LONG
) m_oldWndProc
);
890 // Make a Windows extended style from the given wxWindows window style
891 WXDWORD
wxWindow::MakeExtendedStyle(long style
, bool eliminateBorders
)
894 if ( style
& wxTRANSPARENT_WINDOW
)
895 exStyle
|= WS_EX_TRANSPARENT
;
897 if ( !eliminateBorders
)
899 if ( style
& wxSUNKEN_BORDER
)
900 exStyle
|= WS_EX_CLIENTEDGE
;
901 if ( style
& wxDOUBLE_BORDER
)
902 exStyle
|= WS_EX_DLGMODALFRAME
;
903 #if defined(__WIN95__)
904 if ( style
& wxRAISED_BORDER
)
905 // It seems that WS_EX_WINDOWEDGE doesn't work, but WS_EX_DLGMODALFRAME does
906 exStyle
|= WS_EX_DLGMODALFRAME
; /* WS_EX_WINDOWEDGE */;
907 if ( style
& wxSTATIC_BORDER
)
908 exStyle
|= WS_EX_STATICEDGE
;
914 // Determines whether native 3D effects or CTL3D should be used,
915 // applying a default border style if required, and returning an extended
916 // style to pass to CreateWindowEx.
917 WXDWORD
wxWindow::Determine3DEffects(WXDWORD defaultBorderStyle
,
920 // If matches certain criteria, then assume no 3D effects
921 // unless specifically requested (dealt with in MakeExtendedStyle)
922 if ( !GetParent() || !IsKindOf(CLASSINFO(wxControl
)) || (m_windowStyle
& wxNO_BORDER
) )
925 return MakeExtendedStyle(m_windowStyle
, FALSE
);
928 // Determine whether we should be using 3D effects or not.
929 bool nativeBorder
= FALSE
; // by default, we don't want a Win95 effect
931 // 1) App can specify global 3D effects
932 *want3D
= wxTheApp
->GetAuto3D();
934 // 2) If the parent is being drawn with user colours, or simple border specified,
935 // switch effects off. TODO: replace wxUSER_COLOURS with wxNO_3D
936 if ( GetParent() && (GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS
) || (m_windowStyle
& wxSIMPLE_BORDER
) )
939 // 3) Control can override this global setting by defining
940 // a border style, e.g. wxSUNKEN_BORDER
941 if ( m_windowStyle
& wxSUNKEN_BORDER
)
944 // 4) If it's a special border, CTL3D can't cope so we want a native border
945 if ( (m_windowStyle
& wxDOUBLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
946 (m_windowStyle
& wxSTATIC_BORDER
) )
952 // 5) If this isn't a Win95 app, and we are using CTL3D, remove border
953 // effects from extended style
956 nativeBorder
= FALSE
;
959 DWORD exStyle
= MakeExtendedStyle(m_windowStyle
, !nativeBorder
);
961 // If we want 3D, but haven't specified a border here,
962 // apply the default border style specified.
963 // TODO what about non-Win95 WIN32? Does it have borders?
964 #if defined(__WIN95__) && !wxUSE_CTL3D
965 if ( defaultBorderStyle
&& (*want3D
) && ! ((m_windowStyle
& wxDOUBLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
966 (m_windowStyle
& wxSTATIC_BORDER
) || (m_windowStyle
& wxSIMPLE_BORDER
) ))
967 exStyle
|= defaultBorderStyle
; // WS_EX_CLIENTEDGE;
973 #if WXWIN_COMPATIBILITY
974 // If nothing defined for this, try the parent.
975 // E.g. we may be a button loaded from a resource, with no callback function
977 void wxWindow::OnCommand(wxWindow
& win
, wxCommandEvent
& event
)
979 if ( GetEventHandler()->ProcessEvent(event
) )
982 m_parent
->GetEventHandler()->OnCommand(win
, event
);
984 #endif // WXWIN_COMPATIBILITY_2
986 #if WXWIN_COMPATIBILITY
987 wxObject
* wxWindow::GetChild(int number
) const
989 // Return a pointer to the Nth object in the Panel
990 wxNode
*node
= GetChildren().First();
996 wxObject
*obj
= (wxObject
*)node
->Data();
1002 #endif // WXWIN_COMPATIBILITY
1004 // Setup background and foreground colours correctly
1005 void wxWindow::SetupColours()
1008 SetBackgroundColour(GetParent()->GetBackgroundColour());
1011 void wxWindow::OnIdle(wxIdleEvent
& WXUNUSED(event
))
1013 // Check if we need to send a LEAVE event
1014 if ( m_mouseInWindow
)
1017 ::GetCursorPos(&pt
);
1018 if ( ::WindowFromPoint(pt
) != GetHwnd() )
1020 // Generate a LEAVE event
1021 m_mouseInWindow
= FALSE
;
1023 // Unfortunately the mouse button and keyboard state may have changed
1024 // by the time the OnIdle function is called, so 'state' may be
1027 if ( wxIsShiftDown() )
1029 if ( wxIsCtrlDown() )
1030 state
|= MK_CONTROL
;
1031 if ( GetKeyState( VK_LBUTTON
) )
1032 state
|= MK_LBUTTON
;
1033 if ( GetKeyState( VK_MBUTTON
) )
1034 state
|= MK_MBUTTON
;
1035 if ( GetKeyState( VK_RBUTTON
) )
1036 state
|= MK_RBUTTON
;
1038 wxMouseEvent
event(wxEVT_LEAVE_WINDOW
);
1039 InitMouseEvent(event
, pt
.x
, pt
.y
, state
);
1041 (void)GetEventHandler()->ProcessEvent(event
);
1048 // Set this window to be the child of 'parent'.
1049 bool wxWindow::Reparent(wxWindowBase
*parent
)
1051 if ( !wxWindowBase::Reparent(parent
) )
1054 HWND hWndChild
= GetHwnd();
1055 HWND hWndParent
= GetParent() ? GetWinHwnd(GetParent()) : (HWND
)0;
1057 ::SetParent(hWndChild
, hWndParent
);
1062 void wxWindow::Clear()
1064 wxClientDC
dc(this);
1065 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
1066 dc
.SetBackground(brush
);
1070 void wxWindow::Refresh(bool eraseBack
, const wxRect
*rect
)
1072 HWND hWnd
= GetHwnd();
1078 mswRect
.left
= rect
->x
;
1079 mswRect
.top
= rect
->y
;
1080 mswRect
.right
= rect
->x
+ rect
->width
;
1081 mswRect
.bottom
= rect
->y
+ rect
->height
;
1083 ::InvalidateRect(hWnd
, &mswRect
, eraseBack
);
1086 ::InvalidateRect(hWnd
, NULL
, eraseBack
);
1090 // ---------------------------------------------------------------------------
1092 // ---------------------------------------------------------------------------
1094 #if wxUSE_DRAG_AND_DROP
1096 void wxWindow::SetDropTarget(wxDropTarget
*pDropTarget
)
1098 if ( m_dropTarget
!= 0 ) {
1099 m_dropTarget
->Revoke(m_hWnd
);
1100 delete m_dropTarget
;
1103 m_dropTarget
= pDropTarget
;
1104 if ( m_dropTarget
!= 0 )
1105 m_dropTarget
->Register(m_hWnd
);
1108 #endif // wxUSE_DRAG_AND_DROP
1110 // old style file-manager drag&drop support: we retain the old-style
1111 // DragAcceptFiles in parallel with SetDropTarget.
1112 void wxWindow::DragAcceptFiles(bool accept
)
1114 HWND hWnd
= GetHwnd();
1116 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
1119 // ----------------------------------------------------------------------------
1121 // ----------------------------------------------------------------------------
1125 void wxWindow::DoSetToolTip(wxToolTip
*tooltip
)
1127 wxWindowBase::DoSetToolTip(tooltip
);
1130 m_tooltip
->SetWindow(this);
1133 #endif // wxUSE_TOOLTIPS
1135 // ---------------------------------------------------------------------------
1136 // moving and resizing
1137 // ---------------------------------------------------------------------------
1140 void wxWindow::DoGetSize(int *x
, int *y
) const
1142 HWND hWnd
= GetHwnd();
1145 ::GetWindowRect(hWnd
, &rect
);
1147 if ( !::GetWindowRect(hWnd
, &rect
) )
1149 wxLogLastError(_T("GetWindowRect"));
1153 *x
= rect
.right
- rect
.left
;
1155 *y
= rect
.bottom
- rect
.top
;
1158 void wxWindow::DoGetPosition(int *x
, int *y
) const
1160 HWND hWnd
= GetHwnd();
1163 GetWindowRect(hWnd
, &rect
);
1166 point
.x
= rect
.left
;
1169 // we do the adjustments with respect to the parent only for the "real"
1170 // children, not for the dialogs/frames
1171 if ( !IsTopLevel() )
1173 HWND hParentWnd
= 0;
1174 wxWindow
*parent
= GetParent();
1176 hParentWnd
= GetWinHwnd(parent
);
1178 // Since we now have the absolute screen coords, if there's a parent we
1179 // must subtract its top left corner
1182 ::ScreenToClient(hParentWnd
, &point
);
1187 // We may be faking the client origin. So a window that's really at (0,
1188 // 30) may appear (to wxWin apps) to be at (0, 0).
1189 wxPoint
pt(parent
->GetClientAreaOrigin());
1201 void wxWindow::DoScreenToClient(int *x
, int *y
) const
1209 HWND hWnd
= GetHwnd();
1210 ::ScreenToClient(hWnd
, &pt
);
1218 void wxWindow::DoClientToScreen(int *x
, int *y
) const
1226 HWND hWnd
= GetHwnd();
1227 ::ClientToScreen(hWnd
, &pt
);
1235 // Get size *available for subwindows* i.e. excluding menu bar etc.
1236 void wxWindow::DoGetClientSize(int *x
, int *y
) const
1238 HWND hWnd
= GetHwnd();
1240 ::GetClientRect(hWnd
, &rect
);
1247 void wxWindow::DoMoveWindow(int x
, int y
, int width
, int height
)
1249 if ( !::MoveWindow(GetHwnd(), x
, y
, width
, height
, TRUE
) )
1251 wxLogLastError(wxT("MoveWindow"));
1255 // set the size of the window: if the dimensions are positive, just use them,
1256 // but if any of them is equal to -1, it means that we must find the value for
1257 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1258 // which case -1 is a valid value for x and y)
1260 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1261 // the width/height to best suit our contents, otherwise we reuse the current
1263 void wxWindow::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
1265 // get the current size and position...
1266 int currentX
, currentY
;
1267 GetPosition(¤tX
, ¤tY
);
1268 int currentW
,currentH
;
1269 GetSize(¤tW
, ¤tH
);
1271 // ... and don't do anything (avoiding flicker) if it's already ok
1272 if ( x
== currentX
&& y
== currentY
&&
1273 width
== currentW
&& height
== currentH
)
1278 if ( x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1280 if ( y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
1283 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
1285 wxSize
size(-1, -1);
1288 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
1290 size
= DoGetBestSize();
1295 // just take the current one
1302 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
1306 size
= DoGetBestSize();
1308 //else: already called DoGetBestSize() above
1314 // just take the current one
1319 DoMoveWindow(x
, y
, width
, height
);
1322 void wxWindow::DoSetClientSize(int width
, int height
)
1324 wxWindow
*parent
= GetParent();
1325 HWND hWnd
= GetHwnd();
1326 HWND hParentWnd
= (HWND
) 0;
1328 hParentWnd
= (HWND
) parent
->GetHWND();
1331 ::GetClientRect(hWnd
, &rect
);
1334 GetWindowRect(hWnd
, &rect2
);
1336 // Find the difference between the entire window (title bar and all)
1337 // and the client area; add this to the new client size to move the
1339 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
1340 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
1342 // If there's a parent, must subtract the parent's top left corner
1343 // since MoveWindow moves relative to the parent
1346 point
.x
= rect2
.left
;
1347 point
.y
= rect2
.top
;
1350 ::ScreenToClient(hParentWnd
, &point
);
1353 DoMoveWindow(point
.x
, point
.y
, actual_width
, actual_height
);
1355 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
1356 event
.SetEventObject(this);
1357 GetEventHandler()->ProcessEvent(event
);
1360 // For implementation purposes - sometimes decorations make the client area
1362 wxPoint
wxWindow::GetClientAreaOrigin() const
1364 return wxPoint(0, 0);
1367 // Makes an adjustment to the window position (for example, a frame that has
1368 // a toolbar that it manages itself).
1369 void wxWindow::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
)
1371 // don't do it for the dialogs/frames - they float independently of their
1373 if ( !IsTopLevel() )
1375 wxWindow
*parent
= GetParent();
1376 if ( !(sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) && parent
)
1378 wxPoint
pt(parent
->GetClientAreaOrigin());
1379 x
+= pt
.x
; y
+= pt
.y
;
1384 // ---------------------------------------------------------------------------
1386 // ---------------------------------------------------------------------------
1388 int wxWindow::GetCharHeight() const
1390 return wxGetTextMetrics(this).tmHeight
;
1393 int wxWindow::GetCharWidth() const
1395 // +1 is needed because Windows apparently adds it when calculating the
1396 // dialog units size in pixels
1397 #if wxDIALOG_UNIT_COMPATIBILITY
1398 return wxGetTextMetrics(this).tmAveCharWidth
;
1400 return wxGetTextMetrics(this).tmAveCharWidth
+ 1;
1404 void wxWindow::GetTextExtent(const wxString
& string
,
1406 int *descent
, int *externalLeading
,
1407 const wxFont
*theFont
) const
1409 const wxFont
*fontToUse
= theFont
;
1411 fontToUse
= &m_font
;
1413 HWND hWnd
= GetHwnd();
1414 HDC dc
= ::GetDC(hWnd
);
1418 if ( fontToUse
&& fontToUse
->Ok() )
1420 fnt
= (HFONT
)((wxFont
*)fontToUse
)->GetResourceHandle(); // const_cast
1422 hfontOld
= (HFONT
)SelectObject(dc
,fnt
);
1427 GetTextExtentPoint(dc
, string
, (int)string
.Length(), &sizeRect
);
1428 GetTextMetrics(dc
, &tm
);
1430 if ( fontToUse
&& fnt
&& hfontOld
)
1431 SelectObject(dc
, hfontOld
);
1433 ReleaseDC(hWnd
, dc
);
1440 *descent
= tm
.tmDescent
;
1441 if ( externalLeading
)
1442 *externalLeading
= tm
.tmExternalLeading
;
1445 #if wxUSE_CARET && WXWIN_COMPATIBILITY
1446 // ---------------------------------------------------------------------------
1447 // Caret manipulation
1448 // ---------------------------------------------------------------------------
1450 void wxWindow::CreateCaret(int w
, int h
)
1452 SetCaret(new wxCaret(this, w
, h
));
1455 void wxWindow::CreateCaret(const wxBitmap
*WXUNUSED(bitmap
))
1457 wxFAIL_MSG("not implemented");
1460 void wxWindow::ShowCaret(bool show
)
1462 wxCHECK_RET( m_caret
, "no caret to show" );
1464 m_caret
->Show(show
);
1467 void wxWindow::DestroyCaret()
1472 void wxWindow::SetCaretPos(int x
, int y
)
1474 wxCHECK_RET( m_caret
, "no caret to move" );
1476 m_caret
->Move(x
, y
);
1479 void wxWindow::GetCaretPos(int *x
, int *y
) const
1481 wxCHECK_RET( m_caret
, "no caret to get position of" );
1483 m_caret
->GetPosition(x
, y
);
1485 #endif // wxUSE_CARET
1487 // ---------------------------------------------------------------------------
1489 // ---------------------------------------------------------------------------
1491 // yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue
1492 // immediately, without waiting for the next event loop iteration
1494 // NB: this function should probably be made public later as it can almost
1495 // surely replace wxYield() elsewhere as well
1496 static void wxYieldForCommandsOnly()
1498 // peek all WM_COMMANDs (it will always return WM_QUIT too but we don't
1499 // want to process it here)
1501 while ( ::PeekMessage(&msg
, (HWND
)0, WM_COMMAND
, WM_COMMAND
, PM_REMOVE
)
1502 && msg
.message
!= WM_QUIT
)
1504 wxTheApp
->DoMessage((WXMSG
*)&msg
);
1508 bool wxWindow::DoPopupMenu(wxMenu
*menu
, int x
, int y
)
1510 menu
->SetInvokingWindow(this);
1513 HWND hWnd
= GetHwnd();
1514 HMENU hMenu
= GetHmenuOf(menu
);
1518 ::ClientToScreen(hWnd
, &point
);
1519 wxCurrentPopupMenu
= menu
;
1520 ::TrackPopupMenu(hMenu
, TPM_RIGHTBUTTON
, point
.x
, point
.y
, 0, hWnd
, NULL
);
1522 // we need to do it righ now as otherwise the events are never going to be
1523 // sent to wxCurrentPopupMenu from HandleCommand()
1525 // note that even eliminating (ugly) wxCurrentPopupMenu global wouldn't
1526 // help and we'd still need wxYieldForCommandsOnly() as the menu may be
1527 // destroyed as soon as we return (it can be a local variable in the caller
1528 // for example) and so we do need to process the event immediately
1529 wxYieldForCommandsOnly();
1531 wxCurrentPopupMenu
= NULL
;
1533 menu
->SetInvokingWindow(NULL
);
1538 // ===========================================================================
1539 // pre/post message processing
1540 // ===========================================================================
1542 long wxWindow::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1545 return ::CallWindowProc(CASTWNDPROC m_oldWndProc
, GetHwnd(), (UINT
) nMsg
, (WPARAM
) wParam
, (LPARAM
) lParam
);
1547 return ::DefWindowProc(GetHwnd(), nMsg
, wParam
, lParam
);
1550 bool wxWindow::MSWProcessMessage(WXMSG
* pMsg
)
1552 if ( m_hWnd
!= 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL
) )
1554 // intercept dialog navigation keys
1555 MSG
*msg
= (MSG
*)pMsg
;
1557 // here we try to do all the job which ::IsDialogMessage() usually does
1560 bool bProcess
= TRUE
;
1561 if ( msg
->message
!= WM_KEYDOWN
)
1564 if ( bProcess
&& (HIWORD(msg
->lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
1569 bool bCtrlDown
= wxIsCtrlDown();
1570 bool bShiftDown
= wxIsShiftDown();
1572 // WM_GETDLGCODE: ask the control if it wants the key for itself,
1573 // don't process it if it's the case (except for Ctrl-Tab/Enter
1574 // combinations which are always processed)
1578 lDlgCode
= ::SendMessage(msg
->hwnd
, WM_GETDLGCODE
, 0, 0);
1581 bool bForward
= TRUE
,
1582 bWindowChange
= FALSE
;
1584 switch ( msg
->wParam
)
1587 // assume that nobody wants Shift-TAB for himself - if we
1588 // don't do it there is no easy way for a control to grab
1589 // TABs but still let Shift-TAB work as navugation key
1590 if ( (lDlgCode
& DLGC_WANTTAB
) && !bShiftDown
) {
1594 // Ctrl-Tab cycles thru notebook pages
1595 bWindowChange
= bCtrlDown
;
1596 bForward
= !bShiftDown
;
1602 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
1610 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
1616 if ( (lDlgCode
& DLGC_WANTMESSAGE
) && !bCtrlDown
)
1618 // control wants to process Enter itself, don't
1619 // call IsDialogMessage() which would interpret
1623 else if ( lDlgCode
& DLGC_BUTTON
)
1625 // let IsDialogMessage() handle this for all
1626 // buttons except the owner-drawn ones which it
1627 // just seems to ignore
1628 long style
= ::GetWindowLong(msg
->hwnd
, GWL_STYLE
);
1629 if ( (style
& BS_OWNERDRAW
) == BS_OWNERDRAW
)
1631 // emulate the button click
1632 wxWindow
*btn
= wxFindWinFromHandle((WXHWND
)msg
->hwnd
);
1634 btn
->MSWCommand(BN_CLICKED
, 0 /* unused */);
1641 wxPanel
*panel
= wxDynamicThisCast(this, wxPanel
);
1642 wxButton
*btn
= NULL
;
1645 // panel may have a default button which should
1646 // be activated by Enter
1647 btn
= panel
->GetDefaultItem();
1650 if ( btn
&& btn
->IsEnabled() )
1652 // if we do have a default button, do press it
1653 btn
->MSWCommand(BN_CLICKED
, 0 /* unused */);
1657 // else: but if it does not it makes sense to make
1658 // it work like a TAB - and that's what we do.
1659 // Note that Ctrl-Enter always works this way.
1670 wxNavigationKeyEvent event
;
1671 event
.SetDirection(bForward
);
1672 event
.SetWindowChange(bWindowChange
);
1673 event
.SetEventObject(this);
1675 if ( GetEventHandler()->ProcessEvent(event
) )
1677 wxButton
*btn
= wxDynamicCast(FindFocus(), wxButton
);
1680 // the button which has focus should be default
1689 // let ::IsDialogMessage() do almost everything and handle just the
1690 // things it doesn't here: Ctrl-TAB for switching notebook pages
1691 if ( msg
->message
== WM_KEYDOWN
)
1693 // don't process system keys here
1694 if ( !(HIWORD(msg
->lParam
) & KF_ALTDOWN
) )
1696 if ( (msg
->wParam
== VK_TAB
) && wxIsCtrlDown() )
1698 // find the first notebook parent and change its page
1699 wxWindow
*win
= this;
1700 wxNotebook
*nbook
= NULL
;
1701 while ( win
&& !nbook
)
1703 nbook
= wxDynamicCast(win
, wxNotebook
);
1704 win
= win
->GetParent();
1709 bool forward
= !wxIsShiftDown();
1711 nbook
->AdvanceSelection(forward
);
1718 if ( ::IsDialogMessage(GetHwnd(), msg
) )
1720 // IsDialogMessage() did something...
1728 // relay mouse move events to the tooltip control
1729 MSG
*msg
= (MSG
*)pMsg
;
1730 if ( msg
->message
== WM_MOUSEMOVE
)
1731 m_tooltip
->RelayEvent(pMsg
);
1733 #endif // wxUSE_TOOLTIPS
1738 bool wxWindow::MSWTranslateMessage(WXMSG
* pMsg
)
1740 return m_acceleratorTable
.Translate(this, pMsg
);
1743 // ---------------------------------------------------------------------------
1744 // message params unpackers (different for Win16 and Win32)
1745 // ---------------------------------------------------------------------------
1749 void wxWindow::UnpackCommand(WXWPARAM wParam
, WXLPARAM lParam
,
1750 WORD
*id
, WXHWND
*hwnd
, WORD
*cmd
)
1752 *id
= LOWORD(wParam
);
1753 *hwnd
= (WXHWND
)lParam
;
1754 *cmd
= HIWORD(wParam
);
1757 void wxWindow::UnpackActivate(WXWPARAM wParam
, WXLPARAM lParam
,
1758 WXWORD
*state
, WXWORD
*minimized
, WXHWND
*hwnd
)
1760 *state
= LOWORD(wParam
);
1761 *minimized
= HIWORD(wParam
);
1762 *hwnd
= (WXHWND
)lParam
;
1765 void wxWindow::UnpackScroll(WXWPARAM wParam
, WXLPARAM lParam
,
1766 WXWORD
*code
, WXWORD
*pos
, WXHWND
*hwnd
)
1768 *code
= LOWORD(wParam
);
1769 *pos
= HIWORD(wParam
);
1770 *hwnd
= (WXHWND
)lParam
;
1773 void wxWindow::UnpackCtlColor(WXWPARAM wParam
, WXLPARAM lParam
,
1774 WXWORD
*nCtlColor
, WXHDC
*hdc
, WXHWND
*hwnd
)
1776 *nCtlColor
= CTLCOLOR_BTN
;
1777 *hwnd
= (WXHWND
)lParam
;
1778 *hdc
= (WXHDC
)wParam
;
1781 void wxWindow::UnpackMenuSelect(WXWPARAM wParam
, WXLPARAM lParam
,
1782 WXWORD
*item
, WXWORD
*flags
, WXHMENU
*hmenu
)
1784 *item
= (WXWORD
)wParam
;
1785 *flags
= HIWORD(wParam
);
1786 *hmenu
= (WXHMENU
)lParam
;
1791 void wxWindow::UnpackCommand(WXWPARAM wParam
, WXLPARAM lParam
,
1792 WXWORD
*id
, WXHWND
*hwnd
, WXWORD
*cmd
)
1794 *id
= (WXWORD
)wParam
;
1795 *hwnd
= (WXHWND
)LOWORD(lParam
);
1796 *cmd
= HIWORD(lParam
);
1799 void wxWindow::UnpackActivate(WXWPARAM wParam
, WXLPARAM lParam
,
1800 WXWORD
*state
, WXWORD
*minimized
, WXHWND
*hwnd
)
1802 *state
= (WXWORD
)wParam
;
1803 *minimized
= LOWORD(lParam
);
1804 *hwnd
= (WXHWND
)HIWORD(lParam
);
1807 void wxWindow::UnpackScroll(WXWPARAM wParam
, WXLPARAM lParam
,
1808 WXWORD
*code
, WXWORD
*pos
, WXHWND
*hwnd
)
1810 *code
= (WXWORD
)wParam
;
1811 *pos
= LOWORD(lParam
);
1812 *hwnd
= (WXHWND
)HIWORD(lParam
);
1815 void wxWindow::UnpackCtlColor(WXWPARAM wParam
, WXLPARAM lParam
,
1816 WXWORD
*nCtlColor
, WXHDC
*hdc
, WXHWND
*hwnd
)
1818 *hwnd
= (WXHWND
)LOWORD(lParam
);
1819 *nCtlColor
= (int)HIWORD(lParam
);
1820 *hdc
= (WXHDC
)wParam
;
1823 void wxWindow::UnpackMenuSelect(WXWPARAM wParam
, WXLPARAM lParam
,
1824 WXWORD
*item
, WXWORD
*flags
, WXHMENU
*hmenu
)
1826 *item
= (WXWORD
)wParam
;
1827 *flags
= LOWORD(lParam
);
1828 *hmenu
= (WXHMENU
)HIWORD(lParam
);
1833 // ---------------------------------------------------------------------------
1834 // Main wxWindows window proc and the window proc for wxWindow
1835 // ---------------------------------------------------------------------------
1837 // Hook for new window just as it's being created, when the window isn't yet
1838 // associated with the handle
1839 wxWindow
*wxWndHook
= NULL
;
1842 LRESULT WXDLLEXPORT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1844 // trace all messages - useful for the debugging
1846 wxLogTrace(wxTraceMessages
, wxT("Processing %s(wParam=%8lx, lParam=%8lx)"),
1847 wxGetMessageName(message
), wParam
, lParam
);
1848 #endif // __WXDEBUG__
1850 wxWindow
*wnd
= wxFindWinFromHandle((WXHWND
) hWnd
);
1852 // when we get the first message for the HWND we just created, we associate
1853 // it with wxWindow stored in wxWndHook
1854 if ( !wnd
&& wxWndHook
)
1856 #if 0 // def __WXDEBUG__
1858 ::GetClassNameA((HWND
) hWnd
, buf
, 512);
1859 wxString
className(buf
);
1862 wxAssociateWinWithHandle(hWnd
, wxWndHook
);
1865 wnd
->SetHWND((WXHWND
)hWnd
);
1870 // Stop right here if we don't have a valid handle in our wxWindow object.
1871 if ( wnd
&& !wnd
->GetHWND() )
1873 // FIXME: why do we do this?
1874 wnd
->SetHWND((WXHWND
) hWnd
);
1875 rc
= wnd
->MSWDefWindowProc(message
, wParam
, lParam
);
1881 rc
= wnd
->MSWWindowProc(message
, wParam
, lParam
);
1883 rc
= DefWindowProc( hWnd
, message
, wParam
, lParam
);
1889 long wxWindow::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1891 // did we process the message?
1892 bool processed
= FALSE
;
1903 // for most messages we should return 0 when we do process the message
1911 processed
= HandleCreate((WXLPCREATESTRUCT
)lParam
, &mayCreate
);
1914 // return 0 to allow window creation
1915 rc
.result
= mayCreate
? 0 : -1;
1921 processed
= HandleDestroy();
1925 processed
= HandleMove(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
1929 processed
= HandleSize(LOWORD(lParam
), HIWORD(lParam
), wParam
);
1934 WXWORD state
, minimized
;
1936 UnpackActivate(wParam
, lParam
, &state
, &minimized
, &hwnd
);
1938 processed
= HandleActivate(state
, minimized
!= 0, (WXHWND
)hwnd
);
1943 processed
= HandleSetFocus((WXHWND
)(HWND
)wParam
);
1947 processed
= HandleKillFocus((WXHWND
)(HWND
)wParam
);
1951 processed
= HandlePaint();
1955 // don't let the DefWindowProc() destroy our window - we'll do it
1956 // ourselves in ~wxWindow
1962 processed
= HandleShow(wParam
!= 0, (int)lParam
);
1966 processed
= HandleMouseMove(GET_X_LPARAM(lParam
),
1967 GET_Y_LPARAM(lParam
),
1971 #if wxUSE_MOUSEWHEEL
1973 processed
= HandleMouseWheel(wParam
, lParam
);
1977 case WM_LBUTTONDOWN
:
1978 // set focus to this window
1985 case WM_LBUTTONDBLCLK
:
1986 case WM_RBUTTONDOWN
:
1988 case WM_RBUTTONDBLCLK
:
1989 case WM_MBUTTONDOWN
:
1991 case WM_MBUTTONDBLCLK
:
1992 processed
= HandleMouseEvent(message
,
1993 GET_X_LPARAM(lParam
),
1994 GET_Y_LPARAM(lParam
),
2002 case MM_JOY1BUTTONDOWN
:
2003 case MM_JOY2BUTTONDOWN
:
2004 case MM_JOY1BUTTONUP
:
2005 case MM_JOY2BUTTONUP
:
2006 processed
= HandleJoystickEvent(message
,
2007 GET_X_LPARAM(lParam
),
2008 GET_Y_LPARAM(lParam
),
2013 processed
= HandleSysCommand(wParam
, lParam
);
2020 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
2022 processed
= HandleCommand(id
, cmd
, hwnd
);
2028 processed
= HandleNotify((int)wParam
, lParam
, &rc
.result
);
2032 // for these messages we must return TRUE if process the message
2034 case WM_MEASUREITEM
:
2036 int idCtrl
= (UINT
)wParam
;
2037 if ( message
== WM_DRAWITEM
)
2039 processed
= MSWOnDrawItem(idCtrl
,
2040 (WXDRAWITEMSTRUCT
*)lParam
);
2044 processed
= MSWOnMeasureItem(idCtrl
,
2045 (WXMEASUREITEMSTRUCT
*)lParam
);
2056 rc
.result
= m_lDlgCode
;
2059 //else: get the dlg code from the DefWindowProc()
2064 // If this has been processed by an event handler,
2065 // return 0 now (we've handled it).
2066 if ( HandleKeyDown((WORD
) wParam
, lParam
) )
2073 // we consider these message "not interesting" to OnChar
2074 if ( wParam
== VK_SHIFT
|| wParam
== VK_CONTROL
)
2083 // avoid duplicate messages to OnChar for these ASCII keys: they
2084 // will be translated by TranslateMessage() and received in WM_CHAR
2092 // but set processed to FALSE, not TRUE to still pass them to
2093 // the control's default window proc - otherwise built-in
2094 // keyboard handling won't work
2100 // special case of VK_APPS: treat it the same as right mouse
2101 // click because both usually pop up a context menu
2107 TranslateKbdEventToMouse(this, &x
, &y
, &flags
);
2108 processed
= HandleMouseEvent(WM_RBUTTONDOWN
, x
, y
, flags
);
2118 processed
= HandleChar((WORD
)wParam
, lParam
);
2125 // special case of VK_APPS: treat it the same as right mouse button
2126 if ( wParam
== VK_APPS
)
2131 TranslateKbdEventToMouse(this, &x
, &y
, &flags
);
2132 processed
= HandleMouseEvent(WM_RBUTTONUP
, x
, y
, flags
);
2137 processed
= HandleKeyUp((WORD
) wParam
, lParam
);
2142 case WM_CHAR
: // Always an ASCII character
2143 processed
= HandleChar((WORD
)wParam
, lParam
, TRUE
);
2151 UnpackScroll(wParam
, lParam
, &code
, &pos
, &hwnd
);
2153 processed
= MSWOnScroll(message
== WM_HSCROLL
? wxHORIZONTAL
2159 // CTLCOLOR messages are sent by children to query the parent for their
2162 case WM_CTLCOLORMSGBOX
:
2163 case WM_CTLCOLOREDIT
:
2164 case WM_CTLCOLORLISTBOX
:
2165 case WM_CTLCOLORBTN
:
2166 case WM_CTLCOLORDLG
:
2167 case WM_CTLCOLORSCROLLBAR
:
2168 case WM_CTLCOLORSTATIC
:
2176 UnpackCtlColor(wParam
, lParam
, &nCtlColor
, &hdc
, &hwnd
);
2178 processed
= HandleCtlColor(&rc
.hBrush
,
2188 // the return value for this message is ignored
2189 case WM_SYSCOLORCHANGE
:
2190 processed
= HandleSysColorChange();
2193 case WM_PALETTECHANGED
:
2194 processed
= HandlePaletteChanged((WXHWND
) (HWND
) wParam
);
2197 case WM_QUERYNEWPALETTE
:
2198 processed
= HandleQueryNewPalette();
2202 processed
= HandleEraseBkgnd((WXHDC
)(HDC
)wParam
);
2205 // we processed the message, i.e. erased the background
2211 processed
= HandleDropFiles(wParam
);
2215 processed
= HandleInitDialog((WXHWND
)(HWND
)wParam
);
2219 // we never set focus from here
2224 case WM_QUERYENDSESSION
:
2225 processed
= HandleQueryEndSession(lParam
, &rc
.allow
);
2229 processed
= HandleEndSession(wParam
!= 0, lParam
);
2232 case WM_GETMINMAXINFO
:
2233 processed
= HandleGetMinMaxInfo((MINMAXINFO
*)lParam
);
2237 processed
= HandleSetCursor((WXHWND
)(HWND
)wParam
,
2238 LOWORD(lParam
), // hit test
2239 HIWORD(lParam
)); // mouse msg
2243 // returning TRUE stops the DefWindowProc() from further
2244 // processing this message - exactly what we need because we've
2245 // just set the cursor.
2253 HELPINFO
* info
= (HELPINFO
*) lParam
;
2254 // Don't yet process menu help events, just windows
2255 if (info
->iContextType
== HELPINFO_WINDOW
)
2257 wxWindow
* subjectOfHelp
= this;
2258 bool eventProcessed
= FALSE
;
2259 while (subjectOfHelp
&& !eventProcessed
)
2261 wxHelpEvent
helpEvent(wxEVT_HELP
,
2262 subjectOfHelp
->GetId(),
2263 wxPoint(info
->MousePos
.x
,
2264 info
->MousePos
.y
) );
2265 helpEvent
.SetEventObject(this);
2267 GetEventHandler()->ProcessEvent(helpEvent
);
2269 // Go up the window hierarchy until the event is
2271 subjectOfHelp
= subjectOfHelp
->GetParent();
2274 processed
= eventProcessed
;
2276 else if (info
->iContextType
== HELPINFO_MENUITEM
)
2278 wxHelpEvent
helpEvent(wxEVT_HELP
, info
->iCtrlId
);
2279 helpEvent
.SetEventObject(this);
2280 processed
= GetEventHandler()->ProcessEvent(helpEvent
);
2283 //else: processed is already FALSE
2287 case WM_CONTEXTMENU
:
2289 // we don't convert from screen to client coordinates as
2290 // the event may be handled by a parent window
2291 wxPoint
pt(GET_X_LPARAM(lParam
), GET_Y_LPARAM(lParam
));
2293 wxContextMenuEvent
evtCtx(wxEVT_CONTEXT_MENU
, GetId(), pt
);
2294 processed
= GetEventHandler()->ProcessEvent(evtCtx
);
2303 wxLogTrace(wxTraceMessages
, wxT("Forwarding %s to DefWindowProc."),
2304 wxGetMessageName(message
));
2305 #endif // __WXDEBUG__
2306 rc
.result
= MSWDefWindowProc(message
, wParam
, lParam
);
2312 // Dialog window proc
2313 LONG APIENTRY _EXPORT
2314 wxDlgProc(HWND
WXUNUSED(hWnd
), UINT message
, WPARAM
WXUNUSED(wParam
), LPARAM
WXUNUSED(lParam
))
2316 if ( message
== WM_INITDIALOG
)
2318 // for this message, returning TRUE tells system to set focus to the
2319 // first control in the dialog box
2324 // for all the other ones, FALSE means that we didn't process the
2330 wxList
*wxWinHandleList
= NULL
;
2331 wxWindow
*wxFindWinFromHandle(WXHWND hWnd
)
2333 wxNode
*node
= wxWinHandleList
->Find((long)hWnd
);
2336 return (wxWindow
*)node
->Data();
2339 #if 0 // def __WXDEBUG__
2340 static int gs_AssociationCount
= 0;
2343 void wxAssociateWinWithHandle(HWND hWnd
, wxWindow
*win
)
2345 // adding NULL hWnd is (first) surely a result of an error and
2346 // (secondly) breaks menu command processing
2347 wxCHECK_RET( hWnd
!= (HWND
)NULL
,
2348 wxT("attempt to add a NULL hWnd to window list ignored") );
2351 wxWindow
*oldWin
= wxFindWinFromHandle((WXHWND
) hWnd
);
2352 if ( oldWin
&& (oldWin
!= win
) )
2354 wxString
str(win
->GetClassInfo()->GetClassName());
2355 wxLogError(wxT("Bug! Found existing HWND %X for new window of class %s"), (int) hWnd
, (const wxChar
*) str
);
2359 #if 0 // def __WXDEBUG__
2360 gs_AssociationCount
++;
2361 wxLogDebug("+ Association %d", gs_AssociationCount
);
2364 wxWinHandleList
->Append((long)hWnd
, win
);
2368 void wxRemoveHandleAssociation(wxWindow
*win
)
2370 #if 0 // def __WXDEBUG__
2371 if (wxWinHandleList
->Member(win
))
2373 wxLogDebug("- Association %d", gs_AssociationCount
);
2374 gs_AssociationCount
--;
2377 wxWinHandleList
->DeleteObject(win
);
2380 // Default destroyer - override if you destroy it in some other way
2381 // (e.g. with MDI child windows)
2382 void wxWindow::MSWDestroyWindow()
2386 void wxWindow::MSWDetachWindowMenu()
2391 HMENU hMenu
= (HMENU
)m_hMenu
;
2393 int N
= ::GetMenuItemCount(hMenu
);
2394 for ( int i
= 0; i
< N
; i
++ )
2396 if ( !::GetMenuString(hMenu
, i
, buf
, WXSIZEOF(buf
), MF_BYPOSITION
) )
2398 wxLogLastError(wxT("GetMenuString"));
2403 if ( wxStrcmp(buf
, _("&Window")) == 0 )
2405 if ( !::RemoveMenu(hMenu
, i
, MF_BYPOSITION
) )
2407 wxLogLastError(wxT("RemoveMenu"));
2416 bool wxWindow::MSWCreate(int id
,
2418 const wxChar
*wclass
,
2419 wxWindow
*WXUNUSED(wx_win
),
2420 const wxChar
*title
,
2426 const wxChar
*dialog_template
,
2427 WXDWORD extendedStyle
)
2429 int x1
= CW_USEDEFAULT
;
2431 int width1
= CW_USEDEFAULT
;
2434 // Find parent's size, if it exists, to set up a possible default
2435 // panel size the size of the parent window
2439 ::GetClientRect((HWND
) parent
->GetHWND(), &parent_rect
);
2441 width1
= parent_rect
.right
- parent_rect
.left
;
2442 height1
= parent_rect
.bottom
- parent_rect
.top
;
2454 // unfortunately, setting WS_EX_CONTROLPARENT only for some windows in the
2455 // hierarchy with several embedded panels (and not all of them) causes the
2456 // program to hang during the next call to IsDialogMessage() due to the bug
2457 // in this function (at least in Windows NT 4.0, it seems to work ok in
2460 // if we have wxTAB_TRAVERSAL style, we want WS_EX_CONTROLPARENT or
2461 // IsDialogMessage() won't work for us
2462 if ( GetWindowStyleFlag() & wxTAB_TRAVERSAL
)
2464 extendedStyle
|= WS_EX_CONTROLPARENT
;
2468 HWND hParent
= parent
? GetHwndOf(parent
) : NULL
;
2472 if ( dialog_template
)
2474 // for the dialogs without wxDIALOG_NO_PARENT style, use the top level
2475 // app window as parent - this avoids creating modal dialogs without
2477 if ( !hParent
&& !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT
) )
2479 wxWindow
*winTop
= wxTheApp
->GetTopWindow();
2481 hParent
= GetHwndOf(winTop
);
2484 m_hWnd
= (WXHWND
)::CreateDialog(wxGetInstance(),
2487 (DLGPROC
)wxDlgProc
);
2491 wxLogError(_("Can't find dialog template '%s'!\nCheck resource include path for finding wx.rc."),
2497 if ( extendedStyle
!= 0 )
2499 ::SetWindowLong(GetHwnd(), GWL_EXSTYLE
, extendedStyle
);
2500 ::SetWindowPos(GetHwnd(), NULL
, 0, 0, 0, 0,
2507 #if defined(__WIN95__)
2508 // For some reason, the system menu is activated when we use the
2509 // WS_EX_CONTEXTHELP style, so let's set a reasonable icon
2510 if (extendedStyle
& WS_EX_CONTEXTHELP
)
2512 wxFrame
*winTop
= wxDynamicCast(wxTheApp
->GetTopWindow(), wxFrame
);
2515 wxIcon icon
= winTop
->GetIcon();
2518 ::SendMessage(GetHwnd(), WM_SETICON
,
2520 (LPARAM
)GetHiconOf(icon
));
2527 // JACS: is the following still necessary? The above seems to work.
2529 // ::SetWindowLong(GWL_EXSTYLE) doesn't work for the dialogs, so try
2530 // to take care of (at least some) extended style flags ourselves
2531 if ( extendedStyle
& WS_EX_TOPMOST
)
2533 if ( !::SetWindowPos(GetHwnd(), HWND_TOPMOST
, 0, 0, 0, 0,
2534 SWP_NOSIZE
| SWP_NOMOVE
) )
2536 wxLogLastError(wxT("SetWindowPos"));
2540 // move the dialog to its initial position without forcing repainting
2541 if ( !::MoveWindow(GetHwnd(), x1
, y1
, width1
, height1
, FALSE
) )
2543 wxLogLastError(wxT("MoveWindow"));
2546 else // creating a normal window, not a dialog
2549 if ( style
& WS_CHILD
)
2552 if ( GetWindowStyleFlag() & wxCLIP_SIBLINGS
)
2553 style
|= WS_CLIPSIBLINGS
;
2555 wxString
className(wclass
);
2556 if ( GetWindowStyleFlag() & wxNO_FULL_REPAINT_ON_RESIZE
)
2558 className
+= wxT("NR");
2561 m_hWnd
= (WXHWND
)CreateWindowEx(extendedStyle
,
2563 title
? title
: wxT(""),
2567 hParent
, (HMENU
)controlId
,
2573 wxLogError(_("Can't create window of class %s!\nPossible Windows 3.x compatibility problem?"),
2583 wxNode
* node
= wxWinHandleList
->Member(this);
2586 HWND hWnd
= (HWND
) node
->GetKeyInteger();
2587 if (hWnd
!= (HWND
) m_hWnd
)
2589 wxLogError(wxT("A second HWND association is being added for the same window!"));
2594 wxAssociateWinWithHandle((HWND
) m_hWnd
, this);
2596 SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT
));
2601 // ===========================================================================
2602 // MSW message handlers
2603 // ===========================================================================
2605 // ---------------------------------------------------------------------------
2607 // ---------------------------------------------------------------------------
2610 // FIXME: VZ: I'm not sure at all that the order of processing is correct
2611 bool wxWindow::HandleNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
2613 LPNMHDR hdr
= (LPNMHDR
)lParam
;
2614 HWND hWnd
= hdr
->hwndFrom
;
2615 wxWindow
*win
= wxFindWinFromHandle((WXHWND
)hWnd
);
2617 // is this one of our windows?
2620 return win
->MSWOnNotify(idCtrl
, lParam
, result
);
2623 // try all our children
2624 wxWindowList::Node
*node
= GetChildren().GetFirst();
2627 wxWindow
*child
= node
->GetData();
2628 if ( child
->MSWOnNotify(idCtrl
, lParam
, result
) )
2633 node
= node
->GetNext();
2636 // finally try this window too (catches toolbar case)
2637 return MSWOnNotify(idCtrl
, lParam
, result
);
2640 bool wxWindow::MSWOnNotify(int WXUNUSED(idCtrl
),
2642 WXLPARAM
* WXUNUSED(result
))
2645 NMHDR
* hdr
= (NMHDR
*)lParam
;
2646 if ( (int)hdr
->code
== TTN_NEEDTEXT
&& m_tooltip
)
2648 TOOLTIPTEXT
*ttt
= (TOOLTIPTEXT
*)lParam
;
2649 ttt
->lpszText
= (wxChar
*)m_tooltip
->GetTip().c_str();
2654 #endif // wxUSE_TOOLTIPS
2660 // ---------------------------------------------------------------------------
2661 // end session messages
2662 // ---------------------------------------------------------------------------
2664 bool wxWindow::HandleQueryEndSession(long logOff
, bool *mayEnd
)
2666 wxCloseEvent
event(wxEVT_QUERY_END_SESSION
, -1);
2667 event
.SetEventObject(wxTheApp
);
2668 event
.SetCanVeto(TRUE
);
2669 event
.SetLoggingOff(logOff
== (long)ENDSESSION_LOGOFF
);
2671 bool rc
= wxTheApp
->ProcessEvent(event
);
2675 // we may end only if the app didn't veto session closing (double
2677 *mayEnd
= !event
.GetVeto();
2683 bool wxWindow::HandleEndSession(bool endSession
, long logOff
)
2685 // do nothing if the session isn't ending
2689 wxCloseEvent
event(wxEVT_END_SESSION
, -1);
2690 event
.SetEventObject(wxTheApp
);
2691 event
.SetCanVeto(FALSE
);
2692 event
.SetLoggingOff( (logOff
== (long)ENDSESSION_LOGOFF
) );
2693 if ( (this == wxTheApp
->GetTopWindow()) && // Only send once
2694 wxTheApp
->ProcessEvent(event
))
2700 // ---------------------------------------------------------------------------
2701 // window creation/destruction
2702 // ---------------------------------------------------------------------------
2704 bool wxWindow::HandleCreate(WXLPCREATESTRUCT
WXUNUSED(cs
), bool *mayCreate
)
2706 // TODO: should generate this event from WM_NCCREATE
2707 wxWindowCreateEvent
event(this);
2708 (void)GetEventHandler()->ProcessEvent(event
);
2715 bool wxWindow::HandleDestroy()
2717 wxWindowDestroyEvent
event(this);
2718 (void)GetEventHandler()->ProcessEvent(event
);
2720 // delete our drop target if we've got one
2721 #if wxUSE_DRAG_AND_DROP
2722 if ( m_dropTarget
!= NULL
)
2724 m_dropTarget
->Revoke(m_hWnd
);
2726 delete m_dropTarget
;
2727 m_dropTarget
= NULL
;
2729 #endif // wxUSE_DRAG_AND_DROP
2731 // WM_DESTROY handled
2735 // ---------------------------------------------------------------------------
2737 // ---------------------------------------------------------------------------
2739 void wxWindow::OnSetFocus(wxFocusEvent
& event
)
2741 // panel wants to track the window which was the last to have focus in it,
2742 // so we want to set ourselves as the window which last had focus
2744 // notice that it's also important to do it upwards the tree becaus
2745 // otherwise when the top level panel gets focus, it won't set it back to
2746 // us, but to some other sibling
2747 wxWindow
*win
= this;
2750 wxWindow
*parent
= win
->GetParent();
2751 wxPanel
*panel
= wxDynamicCast(parent
, wxPanel
);
2754 panel
->SetLastFocus(win
);
2760 wxLogTrace(_T("focus"), _T("%s (0x%08x) gets focus"),
2761 GetClassInfo()->GetClassName(), GetHandle());
2766 bool wxWindow::HandleActivate(int state
,
2767 bool WXUNUSED(minimized
),
2768 WXHWND
WXUNUSED(activate
))
2770 wxActivateEvent
event(wxEVT_ACTIVATE
,
2771 (state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
),
2773 event
.SetEventObject(this);
2775 return GetEventHandler()->ProcessEvent(event
);
2778 bool wxWindow::HandleSetFocus(WXHWND
WXUNUSED(hwnd
))
2784 m_caret
->OnSetFocus();
2786 #endif // wxUSE_CARET
2788 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
2789 event
.SetEventObject(this);
2791 return GetEventHandler()->ProcessEvent(event
);
2794 bool wxWindow::HandleKillFocus(WXHWND
WXUNUSED(hwnd
))
2800 m_caret
->OnKillFocus();
2802 #endif // wxUSE_CARET
2804 wxFocusEvent
event(wxEVT_KILL_FOCUS
, m_windowId
);
2805 event
.SetEventObject(this);
2807 return GetEventHandler()->ProcessEvent(event
);
2810 // ---------------------------------------------------------------------------
2812 // ---------------------------------------------------------------------------
2814 bool wxWindow::HandleShow(bool show
, int WXUNUSED(status
))
2816 wxShowEvent
event(GetId(), show
);
2817 event
.m_eventObject
= this;
2819 return GetEventHandler()->ProcessEvent(event
);
2822 bool wxWindow::HandleInitDialog(WXHWND
WXUNUSED(hWndFocus
))
2824 wxInitDialogEvent
event(GetId());
2825 event
.m_eventObject
= this;
2827 return GetEventHandler()->ProcessEvent(event
);
2830 bool wxWindow::HandleDropFiles(WXWPARAM wParam
)
2832 HDROP hFilesInfo
= (HDROP
) wParam
;
2834 DragQueryPoint(hFilesInfo
, (LPPOINT
) &dropPoint
);
2836 // Get the total number of files dropped
2837 WORD gwFilesDropped
= (WORD
)::DragQueryFile
2845 wxString
*files
= new wxString
[gwFilesDropped
];
2847 for (wIndex
=0; wIndex
< (int)gwFilesDropped
; wIndex
++)
2849 DragQueryFile (hFilesInfo
, wIndex
, (LPTSTR
) wxBuffer
, 1000);
2850 files
[wIndex
] = wxBuffer
;
2852 DragFinish (hFilesInfo
);
2854 wxDropFilesEvent
event(wxEVT_DROP_FILES
, gwFilesDropped
, files
);
2855 event
.m_eventObject
= this;
2856 event
.m_pos
.x
= dropPoint
.x
; event
.m_pos
.x
= dropPoint
.y
;
2858 bool rc
= GetEventHandler()->ProcessEvent(event
);
2865 bool wxWindow::HandleSetCursor(WXHWND
WXUNUSED(hWnd
),
2867 int WXUNUSED(mouseMsg
))
2869 // the logic is as follows:
2870 // -1. don't set cursor for non client area, including but not limited to
2871 // the title bar, scrollbars, &c
2872 // 0. allow the user to override default behaviour by using EVT_SET_CURSOR
2873 // 1. if we have the cursor set it unless wxIsBusy()
2874 // 2. if we're a top level window, set some cursor anyhow
2875 // 3. if wxIsBusy(), set the busy cursor, otherwise the global one
2877 if ( nHitTest
!= HTCLIENT
)
2882 HCURSOR hcursor
= 0;
2884 // first ask the user code - it may wish to set the cursor in some very
2885 // specific way (for example, depending on the current position)
2888 if ( !::GetCursorPos(&pt
) )
2890 wxLogLastError(wxT("GetCursorPos"));
2893 // In WIN16 it doesn't return a value.
2894 ::GetCursorPos(&pt
);
2899 ScreenToClient(&x
, &y
);
2900 wxSetCursorEvent
event(x
, y
);
2902 bool processedEvtSetCursor
= GetEventHandler()->ProcessEvent(event
);
2903 if ( processedEvtSetCursor
&& event
.HasCursor() )
2905 hcursor
= GetHcursorOf(event
.GetCursor());
2910 bool isBusy
= wxIsBusy();
2912 // the test for processedEvtSetCursor is here to prevent using m_cursor
2913 // if the user code caught EVT_SET_CURSOR() and returned nothing from
2914 // it - this is a way to say that our cursor shouldn't be used for this
2916 if ( !processedEvtSetCursor
&& m_cursor
.Ok() )
2918 hcursor
= GetHcursorOf(m_cursor
);
2925 hcursor
= wxGetCurrentBusyCursor();
2927 else if ( !hcursor
)
2929 const wxCursor
*cursor
= wxGetGlobalCursor();
2930 if ( cursor
&& cursor
->Ok() )
2932 hcursor
= GetHcursorOf(*cursor
);
2940 ::SetCursor(hcursor
);
2942 // cursor set, stop here
2946 // pass up the window chain
2950 // ---------------------------------------------------------------------------
2951 // owner drawn stuff
2952 // ---------------------------------------------------------------------------
2954 bool wxWindow::MSWOnDrawItem(int id
, WXDRAWITEMSTRUCT
*itemStruct
)
2956 #if wxUSE_OWNER_DRAWN
2957 // is it a menu item?
2960 DRAWITEMSTRUCT
*pDrawStruct
= (DRAWITEMSTRUCT
*)itemStruct
;
2961 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pDrawStruct
->itemData
);
2963 wxCHECK( pMenuItem
->IsKindOf(CLASSINFO(wxMenuItem
)), FALSE
);
2965 // prepare to call OnDrawItem(): notice using of wxDCTemp to prevent
2966 // the DC from being released
2967 wxDCTemp
dc((WXHDC
)pDrawStruct
->hDC
);
2968 wxRect
rect(pDrawStruct
->rcItem
.left
, pDrawStruct
->rcItem
.top
,
2969 pDrawStruct
->rcItem
.right
- pDrawStruct
->rcItem
.left
,
2970 pDrawStruct
->rcItem
.bottom
- pDrawStruct
->rcItem
.top
);
2972 return pMenuItem
->OnDrawItem
2976 (wxOwnerDrawn::wxODAction
)pDrawStruct
->itemAction
,
2977 (wxOwnerDrawn::wxODStatus
)pDrawStruct
->itemState
2981 wxWindow
*item
= FindItem(id
);
2982 if ( item
&& item
->IsKindOf(CLASSINFO(wxControl
)) )
2984 return ((wxControl
*)item
)->MSWOnDraw(itemStruct
);
2986 #endif // USE_OWNER_DRAWN
2991 bool wxWindow::MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*itemStruct
)
2993 #if wxUSE_OWNER_DRAWN
2994 // is it a menu item?
2997 MEASUREITEMSTRUCT
*pMeasureStruct
= (MEASUREITEMSTRUCT
*)itemStruct
;
2998 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pMeasureStruct
->itemData
);
3000 wxCHECK( pMenuItem
->IsKindOf(CLASSINFO(wxMenuItem
)), FALSE
);
3002 return pMenuItem
->OnMeasureItem(&pMeasureStruct
->itemWidth
,
3003 &pMeasureStruct
->itemHeight
);
3006 wxWindow
*item
= FindItem(id
);
3007 if ( item
&& item
->IsKindOf(CLASSINFO(wxControl
)) )
3009 return ((wxControl
*)item
)->MSWOnMeasure(itemStruct
);
3011 #endif // owner-drawn menus
3015 // ---------------------------------------------------------------------------
3016 // colours and palettes
3017 // ---------------------------------------------------------------------------
3019 bool wxWindow::HandleSysColorChange()
3021 wxSysColourChangedEvent event
;
3022 event
.SetEventObject(this);
3024 return GetEventHandler()->ProcessEvent(event
);
3027 bool wxWindow::HandleCtlColor(WXHBRUSH
*brush
,
3035 WXHBRUSH hBrush
= 0;
3037 if ( nCtlColor
== CTLCOLOR_DLG
)
3039 hBrush
= OnCtlColor(pDC
, pWnd
, nCtlColor
, message
, wParam
, lParam
);
3043 wxControl
*item
= (wxControl
*)FindItemByHWND(pWnd
, TRUE
);
3045 hBrush
= item
->OnCtlColor(pDC
, pWnd
, nCtlColor
, message
, wParam
, lParam
);
3054 // Define for each class of dialog and control
3055 WXHBRUSH
wxWindow::OnCtlColor(WXHDC
WXUNUSED(hDC
),
3056 WXHWND
WXUNUSED(hWnd
),
3057 WXUINT
WXUNUSED(nCtlColor
),
3058 WXUINT
WXUNUSED(message
),
3059 WXWPARAM
WXUNUSED(wParam
),
3060 WXLPARAM
WXUNUSED(lParam
))
3065 bool wxWindow::HandlePaletteChanged(WXHWND hWndPalChange
)
3067 wxPaletteChangedEvent
event(GetId());
3068 event
.SetEventObject(this);
3069 event
.SetChangedWindow(wxFindWinFromHandle(hWndPalChange
));
3071 return GetEventHandler()->ProcessEvent(event
);
3074 bool wxWindow::HandleQueryNewPalette()
3076 wxQueryNewPaletteEvent
event(GetId());
3077 event
.SetEventObject(this);
3079 return GetEventHandler()->ProcessEvent(event
) && event
.GetPaletteRealized();
3082 // Responds to colour changes: passes event on to children.
3083 void wxWindow::OnSysColourChanged(wxSysColourChangedEvent
& event
)
3085 wxNode
*node
= GetChildren().First();
3088 // Only propagate to non-top-level windows
3089 wxWindow
*win
= (wxWindow
*)node
->Data();
3090 if ( win
->GetParent() )
3092 wxSysColourChangedEvent event2
;
3093 event
.m_eventObject
= win
;
3094 win
->GetEventHandler()->ProcessEvent(event2
);
3097 node
= node
->Next();
3101 // ---------------------------------------------------------------------------
3103 // ---------------------------------------------------------------------------
3105 bool wxWindow::HandlePaint()
3108 HRGN hRegion
= ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
3110 wxLogLastError(wxT("CreateRectRgn"));
3111 if ( ::GetUpdateRgn(GetHwnd(), hRegion
, FALSE
) == ERROR
)
3112 wxLogLastError(wxT("GetUpdateRgn"));
3114 m_updateRegion
= wxRegion((WXHRGN
) hRegion
);
3117 ::GetUpdateRect(GetHwnd(), & updateRect
, FALSE
);
3119 m_updateRegion
= wxRegion(updateRect
.left
, updateRect
.top
,
3120 updateRect
.right
- updateRect
.left
,
3121 updateRect
.bottom
- updateRect
.top
);
3124 wxPaintEvent
event(m_windowId
);
3125 event
.SetEventObject(this);
3127 return GetEventHandler()->ProcessEvent(event
);
3130 // Can be called from an application's OnPaint handler
3131 void wxWindow::OnPaint(wxPaintEvent
& event
)
3133 HDC hDC
= (HDC
) wxPaintDC::FindDCInCache((wxWindow
*) event
.GetEventObject());
3136 MSWDefWindowProc(WM_PAINT
, (WPARAM
) hDC
, 0);
3140 bool wxWindow::HandleEraseBkgnd(WXHDC hdc
)
3142 // Prevents flicker when dragging
3143 if ( ::IsIconic(GetHwnd()) )
3151 wxEraseEvent
event(m_windowId
, &dc
);
3152 event
.SetEventObject(this);
3153 bool rc
= GetEventHandler()->ProcessEvent(event
);
3157 // must be called manually as ~wxDC doesn't do anything for wxDCTemp
3158 dc
.SelectOldObjects(hdc
);
3163 void wxWindow::OnEraseBackground(wxEraseEvent
& event
)
3166 ::GetClientRect(GetHwnd(), &rect
);
3168 COLORREF ref
= PALETTERGB(m_backgroundColour
.Red(),
3169 m_backgroundColour
.Green(),
3170 m_backgroundColour
.Blue());
3171 HBRUSH hBrush
= ::CreateSolidBrush(ref
);
3173 wxLogLastError(wxT("CreateSolidBrush"));
3175 HDC hdc
= (HDC
)event
.GetDC()->GetHDC();
3177 int mode
= ::SetMapMode(hdc
, MM_TEXT
);
3179 ::FillRect(hdc
, &rect
, hBrush
);
3180 ::DeleteObject(hBrush
);
3181 ::SetMapMode(hdc
, mode
);
3184 // ---------------------------------------------------------------------------
3185 // moving and resizing
3186 // ---------------------------------------------------------------------------
3188 bool wxWindow::HandleMinimize()
3190 wxIconizeEvent
event(m_windowId
);
3191 event
.SetEventObject(this);
3193 return GetEventHandler()->ProcessEvent(event
);
3196 bool wxWindow::HandleMaximize()
3198 wxMaximizeEvent
event(m_windowId
);
3199 event
.SetEventObject(this);
3201 return GetEventHandler()->ProcessEvent(event
);
3204 bool wxWindow::HandleMove(int x
, int y
)
3206 wxMoveEvent
event(wxPoint(x
, y
), m_windowId
);
3207 event
.SetEventObject(this);
3209 return GetEventHandler()->ProcessEvent(event
);
3212 bool wxWindow::HandleSize(int w
, int h
, WXUINT
WXUNUSED(flag
))
3214 wxSizeEvent
event(wxSize(w
, h
), m_windowId
);
3215 event
.SetEventObject(this);
3217 return GetEventHandler()->ProcessEvent(event
);
3220 bool wxWindow::HandleGetMinMaxInfo(void *mmInfo
)
3222 MINMAXINFO
*info
= (MINMAXINFO
*)mmInfo
;
3226 if ( m_minWidth
!= -1 )
3228 info
->ptMinTrackSize
.x
= m_minWidth
;
3232 if ( m_minHeight
!= -1 )
3234 info
->ptMinTrackSize
.y
= m_minHeight
;
3238 if ( m_maxWidth
!= -1 )
3240 info
->ptMaxTrackSize
.x
= m_maxWidth
;
3244 if ( m_maxHeight
!= -1 )
3246 info
->ptMaxTrackSize
.y
= m_maxHeight
;
3253 // generate an artificial resize event
3254 /* FUNCTION IS NOW A MEMBER OF wxFrame - gt
3255 void wxWindow::SendSizeEvent()
3259 ::GetWindowRect(GetHwnd(), &r);
3261 if ( !::GetWindowRect(GetHwnd(), &r) )
3263 wxLogLastError(_T("GetWindowRect"));
3267 (void)::PostMessage(GetHwnd(), WM_SIZE, SIZE_RESTORED,
3268 MAKELPARAM(r.right - r.left, r.bottom - r.top));
3272 // ---------------------------------------------------------------------------
3274 // ---------------------------------------------------------------------------
3276 bool wxWindow::HandleCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
3278 if ( wxCurrentPopupMenu
)
3280 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
3281 wxCurrentPopupMenu
= NULL
;
3283 return popupMenu
->MSWCommand(cmd
, id
);
3286 wxWindow
*win
= (wxWindow
*) NULL
;
3287 if ( cmd
== 0 || cmd
== 1 ) // menu or accel - use id
3289 // must cast to a signed type before comparing with other ids!
3290 win
= FindItem((signed short)id
);
3293 if (!win
&& control
)
3295 // find it from HWND - this works even with the broken programs using
3296 // the same ids for different controls
3297 win
= wxFindWinFromHandle(control
);
3302 return win
->MSWCommand(cmd
, id
);
3305 // the messages sent from the in-place edit control used by the treectrl
3306 // for label editing have id == 0, but they should _not_ be treated as menu
3307 // messages (they are EN_XXX ones, in fact) so don't translate anything
3308 // coming from a control to wxEVT_COMMAND_MENU_SELECTED
3311 // If no child window, it may be an accelerator, e.g. for a popup menu
3314 wxCommandEvent
event(wxEVT_COMMAND_MENU_SELECTED
);
3315 event
.SetEventObject(this);
3319 return GetEventHandler()->ProcessEvent(event
);
3324 // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND
3325 // notifications to its parent which we want to reflect back to
3327 wxSpinCtrl
*spin
= wxSpinCtrl::GetSpinForTextCtrl(control
);
3328 if ( spin
&& spin
->ProcessTextCommand(cmd
, id
) )
3331 #endif // wxUSE_SPINCTRL
3336 bool wxWindow::HandleSysCommand(WXWPARAM wParam
, WXLPARAM
WXUNUSED(lParam
))
3338 // 4 bits are reserved
3339 switch ( wParam
& 0xFFFFFFF0 )
3342 return HandleMaximize();
3345 return HandleMinimize();
3351 // ---------------------------------------------------------------------------
3353 // ---------------------------------------------------------------------------
3355 void wxWindow::InitMouseEvent(wxMouseEvent
& event
, int x
, int y
, WXUINT flags
)
3359 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
3360 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
3361 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
3362 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
3363 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
3364 event
.m_altDown
= (::GetKeyState(VK_MENU
) & 0x80000000) != 0;
3365 event
.SetTimestamp(s_currentMsg
.time
);
3366 event
.m_eventObject
= this;
3368 #if wxUSE_MOUSEEVENT_HACK
3371 m_lastMouseEvent
= event
.GetEventType();
3372 #endif // wxUSE_MOUSEEVENT_HACK
3376 bool wxWindow::HandleMouseEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
3378 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
3379 // WM_MOUSELAST, so it's enough to substract WM_MOUSEMOVE == WM_MOUSEFIRST
3380 // from the message id and take the value in the table to get wxWin event
3382 static const wxEventType eventsMouse
[] =
3396 wxMouseEvent
event(eventsMouse
[msg
- WM_MOUSEMOVE
]);
3397 InitMouseEvent(event
, x
, y
, flags
);
3399 return GetEventHandler()->ProcessEvent(event
);
3402 bool wxWindow::HandleMouseMove(int x
, int y
, WXUINT flags
)
3404 if ( !m_mouseInWindow
)
3406 // Generate an ENTER event
3407 m_mouseInWindow
= TRUE
;
3409 wxMouseEvent
event(wxEVT_ENTER_WINDOW
);
3410 InitMouseEvent(event
, x
, y
, flags
);
3412 (void)GetEventHandler()->ProcessEvent(event
);
3415 #if wxUSE_MOUSEEVENT_HACK
3416 // Window gets a click down message followed by a mouse move message even
3417 // if position isn't changed! We want to discard the trailing move event
3418 // if x and y are the same.
3419 if ( (m_lastMouseEvent
== wxEVT_RIGHT_DOWN
||
3420 m_lastMouseEvent
== wxEVT_LEFT_DOWN
||
3421 m_lastMouseEvent
== wxEVT_MIDDLE_DOWN
) &&
3422 (m_lastMouseX
== x
&& m_lastMouseY
== y
) )
3424 m_lastMouseEvent
= wxEVT_MOTION
;
3428 #endif // wxUSE_MOUSEEVENT_HACK
3430 return HandleMouseEvent(WM_MOUSEMOVE
, x
, y
, flags
);
3434 bool wxWindow::HandleMouseWheel(WXWPARAM wParam
, WXLPARAM lParam
)
3436 #if wxUSE_MOUSEWHEEL
3437 wxMouseEvent
event(wxEVT_MOUSEWHEEL
);
3438 InitMouseEvent(event
,
3439 GET_X_LPARAM(lParam
),
3440 GET_Y_LPARAM(lParam
),
3442 event
.m_wheelRotation
= (short)HIWORD(wParam
);
3443 event
.m_wheelDelta
= WHEEL_DELTA
;
3446 static int s_linesPerRotation
= -1;
3447 if ( s_linesPerRotation
== -1 )
3449 if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES
, 0,
3450 &s_linesPerRotation
, 0))
3452 // this is not supposed to happen
3453 wxLogLastError(_T("SystemParametersInfo(GETWHEELSCROLLLINES)"));
3455 // the default is 3, so use it if SystemParametersInfo() failed
3456 s_linesPerRotation
= 3;
3460 // no SystemParametersInfo() under Win16
3461 static const int s_linesPerRotation
= 3;
3464 event
.m_linesPerAction
= s_linesPerRotation
;
3465 return GetEventHandler()->ProcessEvent(event
);
3476 // ---------------------------------------------------------------------------
3477 // keyboard handling
3478 // ---------------------------------------------------------------------------
3480 // create the key event of the given type for the given key - used by
3481 // HandleChar and HandleKeyDown/Up
3482 wxKeyEvent
wxWindow::CreateKeyEvent(wxEventType evType
,
3484 WXLPARAM lParam
) const
3486 wxKeyEvent
event(evType
);
3487 event
.SetId(GetId());
3488 event
.m_shiftDown
= wxIsShiftDown();
3489 event
.m_controlDown
= wxIsCtrlDown();
3490 event
.m_altDown
= (HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
;
3492 event
.m_eventObject
= (wxWindow
*)this; // const_cast
3493 event
.m_keyCode
= id
;
3494 event
.SetTimestamp(s_currentMsg
.time
);
3496 // translate the position to client coords
3500 GetWindowRect(GetHwnd(),&rect
);
3510 // isASCII is TRUE only when we're called from WM_CHAR handler and not from
3512 bool wxWindow::HandleChar(WXWPARAM wParam
, WXLPARAM lParam
, bool isASCII
)
3514 bool ctrlDown
= FALSE
;
3519 // If 1 -> 26, translate to CTRL plus a letter.
3521 if ( (id
> 0) && (id
< 27) )
3543 else if ( (id
= wxCharCodeMSWToWX(wParam
)) == 0 )
3545 // it's ASCII and will be processed here only when called from
3546 // WM_CHAR (i.e. when isASCII = TRUE), don't process it now
3552 wxKeyEvent
event(CreateKeyEvent(wxEVT_CHAR
, id
, lParam
));
3555 event
.m_controlDown
= TRUE
;
3558 if ( GetEventHandler()->ProcessEvent(event
) )
3565 bool wxWindow::HandleKeyDown(WXWPARAM wParam
, WXLPARAM lParam
)
3567 int id
= wxCharCodeMSWToWX(wParam
);
3571 // normal ASCII char
3575 if ( id
!= -1 ) // VZ: does this ever happen (FIXME)?
3577 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_DOWN
, id
, lParam
));
3578 if ( GetEventHandler()->ProcessEvent(event
) )
3587 bool wxWindow::HandleKeyUp(WXWPARAM wParam
, WXLPARAM lParam
)
3589 int id
= wxCharCodeMSWToWX(wParam
);
3593 // normal ASCII char
3597 if ( id
!= -1 ) // VZ: does this ever happen (FIXME)?
3599 wxKeyEvent
event(CreateKeyEvent(wxEVT_KEY_UP
, id
, lParam
));
3600 if ( GetEventHandler()->ProcessEvent(event
) )
3607 // ---------------------------------------------------------------------------
3609 // ---------------------------------------------------------------------------
3611 bool wxWindow::HandleJoystickEvent(WXUINT msg
, int x
, int y
, WXUINT flags
)
3614 if ( flags
& JOY_BUTTON1CHG
)
3615 change
= wxJOY_BUTTON1
;
3616 if ( flags
& JOY_BUTTON2CHG
)
3617 change
= wxJOY_BUTTON2
;
3618 if ( flags
& JOY_BUTTON3CHG
)
3619 change
= wxJOY_BUTTON3
;
3620 if ( flags
& JOY_BUTTON4CHG
)
3621 change
= wxJOY_BUTTON4
;
3624 if ( flags
& JOY_BUTTON1
)
3625 buttons
|= wxJOY_BUTTON1
;
3626 if ( flags
& JOY_BUTTON2
)
3627 buttons
|= wxJOY_BUTTON2
;
3628 if ( flags
& JOY_BUTTON3
)
3629 buttons
|= wxJOY_BUTTON3
;
3630 if ( flags
& JOY_BUTTON4
)
3631 buttons
|= wxJOY_BUTTON4
;
3633 // the event ids aren't consecutive so we can't use table based lookup
3635 wxEventType eventType
;
3640 eventType
= wxEVT_JOY_MOVE
;
3645 eventType
= wxEVT_JOY_MOVE
;
3650 eventType
= wxEVT_JOY_ZMOVE
;
3655 eventType
= wxEVT_JOY_ZMOVE
;
3658 case MM_JOY1BUTTONDOWN
:
3660 eventType
= wxEVT_JOY_BUTTON_DOWN
;
3663 case MM_JOY2BUTTONDOWN
:
3665 eventType
= wxEVT_JOY_BUTTON_DOWN
;
3668 case MM_JOY1BUTTONUP
:
3670 eventType
= wxEVT_JOY_BUTTON_UP
;
3673 case MM_JOY2BUTTONUP
:
3675 eventType
= wxEVT_JOY_BUTTON_UP
;
3679 wxFAIL_MSG(wxT("no such joystick event"));
3684 wxJoystickEvent
event(eventType
, buttons
, joystick
, change
);
3685 event
.SetPosition(wxPoint(x
, y
));
3686 event
.SetEventObject(this);
3688 return GetEventHandler()->ProcessEvent(event
);
3691 // ---------------------------------------------------------------------------
3693 // ---------------------------------------------------------------------------
3695 bool wxWindow::MSWOnScroll(int orientation
, WXWORD wParam
,
3696 WXWORD pos
, WXHWND control
)
3700 wxWindow
*child
= wxFindWinFromHandle(control
);
3702 return child
->MSWOnScroll(orientation
, wParam
, pos
, control
);
3705 wxScrollWinEvent event
;
3706 event
.SetPosition(pos
);
3707 event
.SetOrientation(orientation
);
3708 event
.m_eventObject
= this;
3713 event
.m_eventType
= wxEVT_SCROLLWIN_TOP
;
3717 event
.m_eventType
= wxEVT_SCROLLWIN_BOTTOM
;
3721 event
.m_eventType
= wxEVT_SCROLLWIN_LINEUP
;
3725 event
.m_eventType
= wxEVT_SCROLLWIN_LINEDOWN
;
3729 event
.m_eventType
= wxEVT_SCROLLWIN_PAGEUP
;
3733 event
.m_eventType
= wxEVT_SCROLLWIN_PAGEDOWN
;
3736 case SB_THUMBPOSITION
:
3739 // under Win32, the scrollbar range and position are 32 bit integers,
3740 // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must
3741 // explicitly query the scrollbar for the correct position (this must
3742 // be done only for these two SB_ events as they are the only one
3743 // carrying the scrollbar position)
3745 SCROLLINFO scrollInfo
;
3746 wxZeroMemory(scrollInfo
);
3747 scrollInfo
.cbSize
= sizeof(SCROLLINFO
);
3748 scrollInfo
.fMask
= SIF_TRACKPOS
;
3750 if ( !::GetScrollInfo(GetHwnd(),
3751 orientation
== wxHORIZONTAL
? SB_HORZ
3755 wxLogLastError(_T("GetScrollInfo"));
3758 event
.SetPosition(scrollInfo
.nTrackPos
);
3762 event
.m_eventType
= wParam
== SB_THUMBPOSITION
3763 ? wxEVT_SCROLLWIN_THUMBRELEASE
3764 : wxEVT_SCROLLWIN_THUMBTRACK
;
3771 return GetEventHandler()->ProcessEvent(event
);
3774 // ===========================================================================
3776 // ===========================================================================
3778 void wxGetCharSize(WXHWND wnd
, int *x
, int *y
, const wxFont
*the_font
)
3781 HDC dc
= ::GetDC((HWND
) wnd
);
3786 // the_font->UseResource();
3787 // the_font->RealizeResource();
3788 fnt
= (HFONT
)((wxFont
*)the_font
)->GetResourceHandle(); // const_cast
3790 was
= (HFONT
) SelectObject(dc
,fnt
);
3792 GetTextMetrics(dc
, &tm
);
3793 if ( the_font
&& fnt
&& was
)
3795 SelectObject(dc
,was
);
3797 ReleaseDC((HWND
)wnd
, dc
);
3800 *x
= tm
.tmAveCharWidth
;
3802 *y
= tm
.tmHeight
+ tm
.tmExternalLeading
;
3805 // the_font->ReleaseResource();
3808 // Returns 0 if was a normal ASCII value, not a special key. This indicates that
3809 // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
3810 int wxCharCodeMSWToWX(int keySym
)
3815 case VK_CANCEL
: id
= WXK_CANCEL
; break;
3816 case VK_BACK
: id
= WXK_BACK
; break;
3817 case VK_TAB
: id
= WXK_TAB
; break;
3818 case VK_CLEAR
: id
= WXK_CLEAR
; break;
3819 case VK_RETURN
: id
= WXK_RETURN
; break;
3820 case VK_SHIFT
: id
= WXK_SHIFT
; break;
3821 case VK_CONTROL
: id
= WXK_CONTROL
; break;
3822 case VK_MENU
: id
= WXK_MENU
; break;
3823 case VK_PAUSE
: id
= WXK_PAUSE
; break;
3824 case VK_SPACE
: id
= WXK_SPACE
; break;
3825 case VK_ESCAPE
: id
= WXK_ESCAPE
; break;
3826 case VK_PRIOR
: id
= WXK_PRIOR
; break;
3827 case VK_NEXT
: id
= WXK_NEXT
; break;
3828 case VK_END
: id
= WXK_END
; break;
3829 case VK_HOME
: id
= WXK_HOME
; break;
3830 case VK_LEFT
: id
= WXK_LEFT
; break;
3831 case VK_UP
: id
= WXK_UP
; break;
3832 case VK_RIGHT
: id
= WXK_RIGHT
; break;
3833 case VK_DOWN
: id
= WXK_DOWN
; break;
3834 case VK_SELECT
: id
= WXK_SELECT
; break;
3835 case VK_PRINT
: id
= WXK_PRINT
; break;
3836 case VK_EXECUTE
: id
= WXK_EXECUTE
; break;
3837 case VK_INSERT
: id
= WXK_INSERT
; break;
3838 case VK_DELETE
: id
= WXK_DELETE
; break;
3839 case VK_HELP
: id
= WXK_HELP
; break;
3840 case VK_NUMPAD0
: id
= WXK_NUMPAD0
; break;
3841 case VK_NUMPAD1
: id
= WXK_NUMPAD1
; break;
3842 case VK_NUMPAD2
: id
= WXK_NUMPAD2
; break;
3843 case VK_NUMPAD3
: id
= WXK_NUMPAD3
; break;
3844 case VK_NUMPAD4
: id
= WXK_NUMPAD4
; break;
3845 case VK_NUMPAD5
: id
= WXK_NUMPAD5
; break;
3846 case VK_NUMPAD6
: id
= WXK_NUMPAD6
; break;
3847 case VK_NUMPAD7
: id
= WXK_NUMPAD7
; break;
3848 case VK_NUMPAD8
: id
= WXK_NUMPAD8
; break;
3849 case VK_NUMPAD9
: id
= WXK_NUMPAD9
; break;
3850 case VK_MULTIPLY
: id
= WXK_MULTIPLY
; break;
3851 case 0xBB: // VK_OEM_PLUS
3852 case VK_ADD
: id
= WXK_ADD
; break;
3853 case 0xBD: // VK_OEM_MINUS
3854 case VK_SUBTRACT
: id
= WXK_SUBTRACT
; break;
3855 case 0xBE: // VK_OEM_PERIOD
3856 case VK_DECIMAL
: id
= WXK_DECIMAL
; break;
3857 case VK_DIVIDE
: id
= WXK_DIVIDE
; break;
3858 case VK_F1
: id
= WXK_F1
; break;
3859 case VK_F2
: id
= WXK_F2
; break;
3860 case VK_F3
: id
= WXK_F3
; break;
3861 case VK_F4
: id
= WXK_F4
; break;
3862 case VK_F5
: id
= WXK_F5
; break;
3863 case VK_F6
: id
= WXK_F6
; break;
3864 case VK_F7
: id
= WXK_F7
; break;
3865 case VK_F8
: id
= WXK_F8
; break;
3866 case VK_F9
: id
= WXK_F9
; break;
3867 case VK_F10
: id
= WXK_F10
; break;
3868 case VK_F11
: id
= WXK_F11
; break;
3869 case VK_F12
: id
= WXK_F12
; break;
3870 case VK_F13
: id
= WXK_F13
; break;
3871 case VK_F14
: id
= WXK_F14
; break;
3872 case VK_F15
: id
= WXK_F15
; break;
3873 case VK_F16
: id
= WXK_F16
; break;
3874 case VK_F17
: id
= WXK_F17
; break;
3875 case VK_F18
: id
= WXK_F18
; break;
3876 case VK_F19
: id
= WXK_F19
; break;
3877 case VK_F20
: id
= WXK_F20
; break;
3878 case VK_F21
: id
= WXK_F21
; break;
3879 case VK_F22
: id
= WXK_F22
; break;
3880 case VK_F23
: id
= WXK_F23
; break;
3881 case VK_F24
: id
= WXK_F24
; break;
3882 case VK_NUMLOCK
: id
= WXK_NUMLOCK
; break;
3883 case VK_SCROLL
: id
= WXK_SCROLL
; break;
3891 int wxCharCodeWXToMSW(int id
, bool *isVirtual
)
3897 case WXK_CANCEL
: keySym
= VK_CANCEL
; break;
3898 case WXK_CLEAR
: keySym
= VK_CLEAR
; break;
3899 case WXK_SHIFT
: keySym
= VK_SHIFT
; break;
3900 case WXK_CONTROL
: keySym
= VK_CONTROL
; break;
3901 case WXK_MENU
: keySym
= VK_MENU
; break;
3902 case WXK_PAUSE
: keySym
= VK_PAUSE
; break;
3903 case WXK_PRIOR
: keySym
= VK_PRIOR
; break;
3904 case WXK_NEXT
: keySym
= VK_NEXT
; break;
3905 case WXK_END
: keySym
= VK_END
; break;
3906 case WXK_HOME
: keySym
= VK_HOME
; break;
3907 case WXK_LEFT
: keySym
= VK_LEFT
; break;
3908 case WXK_UP
: keySym
= VK_UP
; break;
3909 case WXK_RIGHT
: keySym
= VK_RIGHT
; break;
3910 case WXK_DOWN
: keySym
= VK_DOWN
; break;
3911 case WXK_SELECT
: keySym
= VK_SELECT
; break;
3912 case WXK_PRINT
: keySym
= VK_PRINT
; break;
3913 case WXK_EXECUTE
: keySym
= VK_EXECUTE
; break;
3914 case WXK_INSERT
: keySym
= VK_INSERT
; break;
3915 case WXK_DELETE
: keySym
= VK_DELETE
; break;
3916 case WXK_HELP
: keySym
= VK_HELP
; break;
3917 case WXK_NUMPAD0
: keySym
= VK_NUMPAD0
; break;
3918 case WXK_NUMPAD1
: keySym
= VK_NUMPAD1
; break;
3919 case WXK_NUMPAD2
: keySym
= VK_NUMPAD2
; break;
3920 case WXK_NUMPAD3
: keySym
= VK_NUMPAD3
; break;
3921 case WXK_NUMPAD4
: keySym
= VK_NUMPAD4
; break;
3922 case WXK_NUMPAD5
: keySym
= VK_NUMPAD5
; break;
3923 case WXK_NUMPAD6
: keySym
= VK_NUMPAD6
; break;
3924 case WXK_NUMPAD7
: keySym
= VK_NUMPAD7
; break;
3925 case WXK_NUMPAD8
: keySym
= VK_NUMPAD8
; break;
3926 case WXK_NUMPAD9
: keySym
= VK_NUMPAD9
; break;
3927 case WXK_MULTIPLY
: keySym
= VK_MULTIPLY
; break;
3928 case WXK_ADD
: keySym
= VK_ADD
; break;
3929 case WXK_SUBTRACT
: keySym
= VK_SUBTRACT
; break;
3930 case WXK_DECIMAL
: keySym
= VK_DECIMAL
; break;
3931 case WXK_DIVIDE
: keySym
= VK_DIVIDE
; break;
3932 case WXK_F1
: keySym
= VK_F1
; break;
3933 case WXK_F2
: keySym
= VK_F2
; break;
3934 case WXK_F3
: keySym
= VK_F3
; break;
3935 case WXK_F4
: keySym
= VK_F4
; break;
3936 case WXK_F5
: keySym
= VK_F5
; break;
3937 case WXK_F6
: keySym
= VK_F6
; break;
3938 case WXK_F7
: keySym
= VK_F7
; break;
3939 case WXK_F8
: keySym
= VK_F8
; break;
3940 case WXK_F9
: keySym
= VK_F9
; break;
3941 case WXK_F10
: keySym
= VK_F10
; break;
3942 case WXK_F11
: keySym
= VK_F11
; break;
3943 case WXK_F12
: keySym
= VK_F12
; break;
3944 case WXK_F13
: keySym
= VK_F13
; break;
3945 case WXK_F14
: keySym
= VK_F14
; break;
3946 case WXK_F15
: keySym
= VK_F15
; break;
3947 case WXK_F16
: keySym
= VK_F16
; break;
3948 case WXK_F17
: keySym
= VK_F17
; break;
3949 case WXK_F18
: keySym
= VK_F18
; break;
3950 case WXK_F19
: keySym
= VK_F19
; break;
3951 case WXK_F20
: keySym
= VK_F20
; break;
3952 case WXK_F21
: keySym
= VK_F21
; break;
3953 case WXK_F22
: keySym
= VK_F22
; break;
3954 case WXK_F23
: keySym
= VK_F23
; break;
3955 case WXK_F24
: keySym
= VK_F24
; break;
3956 case WXK_NUMLOCK
: keySym
= VK_NUMLOCK
; break;
3957 case WXK_SCROLL
: keySym
= VK_SCROLL
; break;
3968 wxWindow
*wxGetActiveWindow()
3970 HWND hWnd
= GetActiveWindow();
3973 return wxFindWinFromHandle((WXHWND
) hWnd
);
3978 extern wxWindow
*wxGetWindowFromHWND(WXHWND hWnd
)
3980 HWND hwnd
= (HWND
)hWnd
;
3982 // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set
3983 // by code in msw/radiobox.cpp), for all the others we just search up the
3985 wxWindow
*win
= (wxWindow
*)NULL
;
3988 win
= wxFindWinFromHandle((WXHWND
)hwnd
);
3991 // all these hacks only work under Win32 anyhow
3995 // native radiobuttons return DLGC_RADIOBUTTON here and for any
3996 // wxWindow class which overrides WM_GETDLGCODE processing to
3997 // do it as well, win would be already non NULL
3998 if ( ::SendMessage(hwnd
, WM_GETDLGCODE
, 0, 0) & DLGC_RADIOBUTTON
)
4000 win
= (wxWindow
*)::GetWindowLong(hwnd
, GWL_USERDATA
);
4002 //else: it's a wxRadioButton, not a radiobutton from wxRadioBox
4003 #endif // wxUSE_RADIOBOX
4005 // spin control text buddy window should be mapped to spin ctrl
4006 // itself so try it too
4010 win
= wxSpinCtrl::GetSpinForTextCtrl((WXHWND
)hwnd
);
4012 #endif // wxUSE_SPINCTRL
4018 // hwnd is not a wxWindow, try its parent next below
4019 hwnd
= ::GetParent(hwnd
);
4024 while ( hwnd
&& !win
)
4026 win
= wxFindWinFromHandle((WXHWND
)hwnd
);
4027 hwnd
= ::GetParent(hwnd
);
4033 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
4034 // in active frames and dialogs, regardless of where the focus is.
4035 static HHOOK wxTheKeyboardHook
= 0;
4036 static FARPROC wxTheKeyboardHookProc
= 0;
4037 int APIENTRY _EXPORT
4038 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
);
4040 void wxSetKeyboardHook(bool doIt
)
4044 wxTheKeyboardHookProc
= MakeProcInstance((FARPROC
) wxKeyboardHook
, wxGetInstance());
4045 wxTheKeyboardHook
= SetWindowsHookEx(WH_KEYBOARD
, (HOOKPROC
) wxTheKeyboardHookProc
, wxGetInstance(),
4047 #if defined(__WIN32__) && !defined(__TWIN32__)
4048 GetCurrentThreadId()
4049 // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right?
4057 UnhookWindowsHookEx(wxTheKeyboardHook
);
4059 // avoids warning about statement with no effect (FreeProcInstance
4060 // doesn't do anything under Win32)
4061 #if !defined(WIN32) && !defined(_WIN32) && !defined(__WIN32__) && !defined(__NT__) && !defined(__GNUWIN32__)
4062 FreeProcInstance(wxTheKeyboardHookProc
);
4067 int APIENTRY _EXPORT
4068 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
)
4070 DWORD hiWord
= HIWORD(lParam
);
4071 if ( nCode
!= HC_NOREMOVE
&& ((hiWord
& KF_UP
) == 0) )
4073 int id
= wxCharCodeMSWToWX(wParam
);
4076 wxKeyEvent
event(wxEVT_CHAR_HOOK
);
4077 if ( (HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
4078 event
.m_altDown
= TRUE
;
4080 event
.m_eventObject
= NULL
;
4081 event
.m_keyCode
= id
;
4082 event
.m_shiftDown
= wxIsShiftDown();
4083 event
.m_controlDown
= wxIsCtrlDown();
4084 event
.SetTimestamp(s_currentMsg
.time
);
4086 wxWindow
*win
= wxGetActiveWindow();
4087 wxEvtHandler
*handler
;
4090 handler
= win
->GetEventHandler();
4091 event
.SetId(win
->GetId());
4099 if ( handler
&& handler
->ProcessEvent(event
) )
4107 return (int)CallNextHookEx(wxTheKeyboardHook
, nCode
, wParam
, lParam
);
4111 const char *wxGetMessageName(int message
)
4115 case 0x0000: return "WM_NULL";
4116 case 0x0001: return "WM_CREATE";
4117 case 0x0002: return "WM_DESTROY";
4118 case 0x0003: return "WM_MOVE";
4119 case 0x0005: return "WM_SIZE";
4120 case 0x0006: return "WM_ACTIVATE";
4121 case 0x0007: return "WM_SETFOCUS";
4122 case 0x0008: return "WM_KILLFOCUS";
4123 case 0x000A: return "WM_ENABLE";
4124 case 0x000B: return "WM_SETREDRAW";
4125 case 0x000C: return "WM_SETTEXT";
4126 case 0x000D: return "WM_GETTEXT";
4127 case 0x000E: return "WM_GETTEXTLENGTH";
4128 case 0x000F: return "WM_PAINT";
4129 case 0x0010: return "WM_CLOSE";
4130 case 0x0011: return "WM_QUERYENDSESSION";
4131 case 0x0012: return "WM_QUIT";
4132 case 0x0013: return "WM_QUERYOPEN";
4133 case 0x0014: return "WM_ERASEBKGND";
4134 case 0x0015: return "WM_SYSCOLORCHANGE";
4135 case 0x0016: return "WM_ENDSESSION";
4136 case 0x0017: return "WM_SYSTEMERROR";
4137 case 0x0018: return "WM_SHOWWINDOW";
4138 case 0x0019: return "WM_CTLCOLOR";
4139 case 0x001A: return "WM_WININICHANGE";
4140 case 0x001B: return "WM_DEVMODECHANGE";
4141 case 0x001C: return "WM_ACTIVATEAPP";
4142 case 0x001D: return "WM_FONTCHANGE";
4143 case 0x001E: return "WM_TIMECHANGE";
4144 case 0x001F: return "WM_CANCELMODE";
4145 case 0x0020: return "WM_SETCURSOR";
4146 case 0x0021: return "WM_MOUSEACTIVATE";
4147 case 0x0022: return "WM_CHILDACTIVATE";
4148 case 0x0023: return "WM_QUEUESYNC";
4149 case 0x0024: return "WM_GETMINMAXINFO";
4150 case 0x0026: return "WM_PAINTICON";
4151 case 0x0027: return "WM_ICONERASEBKGND";
4152 case 0x0028: return "WM_NEXTDLGCTL";
4153 case 0x002A: return "WM_SPOOLERSTATUS";
4154 case 0x002B: return "WM_DRAWITEM";
4155 case 0x002C: return "WM_MEASUREITEM";
4156 case 0x002D: return "WM_DELETEITEM";
4157 case 0x002E: return "WM_VKEYTOITEM";
4158 case 0x002F: return "WM_CHARTOITEM";
4159 case 0x0030: return "WM_SETFONT";
4160 case 0x0031: return "WM_GETFONT";
4161 case 0x0037: return "WM_QUERYDRAGICON";
4162 case 0x0039: return "WM_COMPAREITEM";
4163 case 0x0041: return "WM_COMPACTING";
4164 case 0x0044: return "WM_COMMNOTIFY";
4165 case 0x0046: return "WM_WINDOWPOSCHANGING";
4166 case 0x0047: return "WM_WINDOWPOSCHANGED";
4167 case 0x0048: return "WM_POWER";
4170 case 0x004A: return "WM_COPYDATA";
4171 case 0x004B: return "WM_CANCELJOURNAL";
4172 case 0x004E: return "WM_NOTIFY";
4173 case 0x0050: return "WM_INPUTLANGCHANGEREQUEST";
4174 case 0x0051: return "WM_INPUTLANGCHANGE";
4175 case 0x0052: return "WM_TCARD";
4176 case 0x0053: return "WM_HELP";
4177 case 0x0054: return "WM_USERCHANGED";
4178 case 0x0055: return "WM_NOTIFYFORMAT";
4179 case 0x007B: return "WM_CONTEXTMENU";
4180 case 0x007C: return "WM_STYLECHANGING";
4181 case 0x007D: return "WM_STYLECHANGED";
4182 case 0x007E: return "WM_DISPLAYCHANGE";
4183 case 0x007F: return "WM_GETICON";
4184 case 0x0080: return "WM_SETICON";
4187 case 0x0081: return "WM_NCCREATE";
4188 case 0x0082: return "WM_NCDESTROY";
4189 case 0x0083: return "WM_NCCALCSIZE";
4190 case 0x0084: return "WM_NCHITTEST";
4191 case 0x0085: return "WM_NCPAINT";
4192 case 0x0086: return "WM_NCACTIVATE";
4193 case 0x0087: return "WM_GETDLGCODE";
4194 case 0x00A0: return "WM_NCMOUSEMOVE";
4195 case 0x00A1: return "WM_NCLBUTTONDOWN";
4196 case 0x00A2: return "WM_NCLBUTTONUP";
4197 case 0x00A3: return "WM_NCLBUTTONDBLCLK";
4198 case 0x00A4: return "WM_NCRBUTTONDOWN";
4199 case 0x00A5: return "WM_NCRBUTTONUP";
4200 case 0x00A6: return "WM_NCRBUTTONDBLCLK";
4201 case 0x00A7: return "WM_NCMBUTTONDOWN";
4202 case 0x00A8: return "WM_NCMBUTTONUP";
4203 case 0x00A9: return "WM_NCMBUTTONDBLCLK";
4204 case 0x0100: return "WM_KEYDOWN";
4205 case 0x0101: return "WM_KEYUP";
4206 case 0x0102: return "WM_CHAR";
4207 case 0x0103: return "WM_DEADCHAR";
4208 case 0x0104: return "WM_SYSKEYDOWN";
4209 case 0x0105: return "WM_SYSKEYUP";
4210 case 0x0106: return "WM_SYSCHAR";
4211 case 0x0107: return "WM_SYSDEADCHAR";
4212 case 0x0108: return "WM_KEYLAST";
4215 case 0x010D: return "WM_IME_STARTCOMPOSITION";
4216 case 0x010E: return "WM_IME_ENDCOMPOSITION";
4217 case 0x010F: return "WM_IME_COMPOSITION";
4220 case 0x0110: return "WM_INITDIALOG";
4221 case 0x0111: return "WM_COMMAND";
4222 case 0x0112: return "WM_SYSCOMMAND";
4223 case 0x0113: return "WM_TIMER";
4224 case 0x0114: return "WM_HSCROLL";
4225 case 0x0115: return "WM_VSCROLL";
4226 case 0x0116: return "WM_INITMENU";
4227 case 0x0117: return "WM_INITMENUPOPUP";
4228 case 0x011F: return "WM_MENUSELECT";
4229 case 0x0120: return "WM_MENUCHAR";
4230 case 0x0121: return "WM_ENTERIDLE";
4231 case 0x0200: return "WM_MOUSEMOVE";
4232 case 0x0201: return "WM_LBUTTONDOWN";
4233 case 0x0202: return "WM_LBUTTONUP";
4234 case 0x0203: return "WM_LBUTTONDBLCLK";
4235 case 0x0204: return "WM_RBUTTONDOWN";
4236 case 0x0205: return "WM_RBUTTONUP";
4237 case 0x0206: return "WM_RBUTTONDBLCLK";
4238 case 0x0207: return "WM_MBUTTONDOWN";
4239 case 0x0208: return "WM_MBUTTONUP";
4240 case 0x0209: return "WM_MBUTTONDBLCLK";
4241 case 0x020A: return "WM_MOUSEWHEEL";
4242 case 0x0210: return "WM_PARENTNOTIFY";
4243 case 0x0211: return "WM_ENTERMENULOOP";
4244 case 0x0212: return "WM_EXITMENULOOP";
4247 case 0x0213: return "WM_NEXTMENU";
4248 case 0x0214: return "WM_SIZING";
4249 case 0x0215: return "WM_CAPTURECHANGED";
4250 case 0x0216: return "WM_MOVING";
4251 case 0x0218: return "WM_POWERBROADCAST";
4252 case 0x0219: return "WM_DEVICECHANGE";
4255 case 0x0220: return "WM_MDICREATE";
4256 case 0x0221: return "WM_MDIDESTROY";
4257 case 0x0222: return "WM_MDIACTIVATE";
4258 case 0x0223: return "WM_MDIRESTORE";
4259 case 0x0224: return "WM_MDINEXT";
4260 case 0x0225: return "WM_MDIMAXIMIZE";
4261 case 0x0226: return "WM_MDITILE";
4262 case 0x0227: return "WM_MDICASCADE";
4263 case 0x0228: return "WM_MDIICONARRANGE";
4264 case 0x0229: return "WM_MDIGETACTIVE";
4265 case 0x0230: return "WM_MDISETMENU";
4266 case 0x0233: return "WM_DROPFILES";
4269 case 0x0281: return "WM_IME_SETCONTEXT";
4270 case 0x0282: return "WM_IME_NOTIFY";
4271 case 0x0283: return "WM_IME_CONTROL";
4272 case 0x0284: return "WM_IME_COMPOSITIONFULL";
4273 case 0x0285: return "WM_IME_SELECT";
4274 case 0x0286: return "WM_IME_CHAR";
4275 case 0x0290: return "WM_IME_KEYDOWN";
4276 case 0x0291: return "WM_IME_KEYUP";
4279 case 0x0300: return "WM_CUT";
4280 case 0x0301: return "WM_COPY";
4281 case 0x0302: return "WM_PASTE";
4282 case 0x0303: return "WM_CLEAR";
4283 case 0x0304: return "WM_UNDO";
4284 case 0x0305: return "WM_RENDERFORMAT";
4285 case 0x0306: return "WM_RENDERALLFORMATS";
4286 case 0x0307: return "WM_DESTROYCLIPBOARD";
4287 case 0x0308: return "WM_DRAWCLIPBOARD";
4288 case 0x0309: return "WM_PAINTCLIPBOARD";
4289 case 0x030A: return "WM_VSCROLLCLIPBOARD";
4290 case 0x030B: return "WM_SIZECLIPBOARD";
4291 case 0x030C: return "WM_ASKCBFORMATNAME";
4292 case 0x030D: return "WM_CHANGECBCHAIN";
4293 case 0x030E: return "WM_HSCROLLCLIPBOARD";
4294 case 0x030F: return "WM_QUERYNEWPALETTE";
4295 case 0x0310: return "WM_PALETTEISCHANGING";
4296 case 0x0311: return "WM_PALETTECHANGED";
4299 // common controls messages - although they're not strictly speaking
4300 // standard, it's nice to decode them nevertheless
4303 case 0x1000 + 0: return "LVM_GETBKCOLOR";
4304 case 0x1000 + 1: return "LVM_SETBKCOLOR";
4305 case 0x1000 + 2: return "LVM_GETIMAGELIST";
4306 case 0x1000 + 3: return "LVM_SETIMAGELIST";
4307 case 0x1000 + 4: return "LVM_GETITEMCOUNT";
4308 case 0x1000 + 5: return "LVM_GETITEMA";
4309 case 0x1000 + 75: return "LVM_GETITEMW";
4310 case 0x1000 + 6: return "LVM_SETITEMA";
4311 case 0x1000 + 76: return "LVM_SETITEMW";
4312 case 0x1000 + 7: return "LVM_INSERTITEMA";
4313 case 0x1000 + 77: return "LVM_INSERTITEMW";
4314 case 0x1000 + 8: return "LVM_DELETEITEM";
4315 case 0x1000 + 9: return "LVM_DELETEALLITEMS";
4316 case 0x1000 + 10: return "LVM_GETCALLBACKMASK";
4317 case 0x1000 + 11: return "LVM_SETCALLBACKMASK";
4318 case 0x1000 + 12: return "LVM_GETNEXTITEM";
4319 case 0x1000 + 13: return "LVM_FINDITEMA";
4320 case 0x1000 + 83: return "LVM_FINDITEMW";
4321 case 0x1000 + 14: return "LVM_GETITEMRECT";
4322 case 0x1000 + 15: return "LVM_SETITEMPOSITION";
4323 case 0x1000 + 16: return "LVM_GETITEMPOSITION";
4324 case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA";
4325 case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW";
4326 case 0x1000 + 18: return "LVM_HITTEST";
4327 case 0x1000 + 19: return "LVM_ENSUREVISIBLE";
4328 case 0x1000 + 20: return "LVM_SCROLL";
4329 case 0x1000 + 21: return "LVM_REDRAWITEMS";
4330 case 0x1000 + 22: return "LVM_ARRANGE";
4331 case 0x1000 + 23: return "LVM_EDITLABELA";
4332 case 0x1000 + 118: return "LVM_EDITLABELW";
4333 case 0x1000 + 24: return "LVM_GETEDITCONTROL";
4334 case 0x1000 + 25: return "LVM_GETCOLUMNA";
4335 case 0x1000 + 95: return "LVM_GETCOLUMNW";
4336 case 0x1000 + 26: return "LVM_SETCOLUMNA";
4337 case 0x1000 + 96: return "LVM_SETCOLUMNW";
4338 case 0x1000 + 27: return "LVM_INSERTCOLUMNA";
4339 case 0x1000 + 97: return "LVM_INSERTCOLUMNW";
4340 case 0x1000 + 28: return "LVM_DELETECOLUMN";
4341 case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH";
4342 case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH";
4343 case 0x1000 + 31: return "LVM_GETHEADER";
4344 case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE";
4345 case 0x1000 + 34: return "LVM_GETVIEWRECT";
4346 case 0x1000 + 35: return "LVM_GETTEXTCOLOR";
4347 case 0x1000 + 36: return "LVM_SETTEXTCOLOR";
4348 case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR";
4349 case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR";
4350 case 0x1000 + 39: return "LVM_GETTOPINDEX";
4351 case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE";
4352 case 0x1000 + 41: return "LVM_GETORIGIN";
4353 case 0x1000 + 42: return "LVM_UPDATE";
4354 case 0x1000 + 43: return "LVM_SETITEMSTATE";
4355 case 0x1000 + 44: return "LVM_GETITEMSTATE";
4356 case 0x1000 + 45: return "LVM_GETITEMTEXTA";
4357 case 0x1000 + 115: return "LVM_GETITEMTEXTW";
4358 case 0x1000 + 46: return "LVM_SETITEMTEXTA";
4359 case 0x1000 + 116: return "LVM_SETITEMTEXTW";
4360 case 0x1000 + 47: return "LVM_SETITEMCOUNT";
4361 case 0x1000 + 48: return "LVM_SORTITEMS";
4362 case 0x1000 + 49: return "LVM_SETITEMPOSITION32";
4363 case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT";
4364 case 0x1000 + 51: return "LVM_GETITEMSPACING";
4365 case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA";
4366 case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW";
4367 case 0x1000 + 53: return "LVM_SETICONSPACING";
4368 case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE";
4369 case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE";
4370 case 0x1000 + 56: return "LVM_GETSUBITEMRECT";
4371 case 0x1000 + 57: return "LVM_SUBITEMHITTEST";
4372 case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY";
4373 case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY";
4374 case 0x1000 + 60: return "LVM_SETHOTITEM";
4375 case 0x1000 + 61: return "LVM_GETHOTITEM";
4376 case 0x1000 + 62: return "LVM_SETHOTCURSOR";
4377 case 0x1000 + 63: return "LVM_GETHOTCURSOR";
4378 case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT";
4379 case 0x1000 + 65: return "LVM_SETWORKAREA";
4382 case 0x1100 + 0: return "TVM_INSERTITEMA";
4383 case 0x1100 + 50: return "TVM_INSERTITEMW";
4384 case 0x1100 + 1: return "TVM_DELETEITEM";
4385 case 0x1100 + 2: return "TVM_EXPAND";
4386 case 0x1100 + 4: return "TVM_GETITEMRECT";
4387 case 0x1100 + 5: return "TVM_GETCOUNT";
4388 case 0x1100 + 6: return "TVM_GETINDENT";
4389 case 0x1100 + 7: return "TVM_SETINDENT";
4390 case 0x1100 + 8: return "TVM_GETIMAGELIST";
4391 case 0x1100 + 9: return "TVM_SETIMAGELIST";
4392 case 0x1100 + 10: return "TVM_GETNEXTITEM";
4393 case 0x1100 + 11: return "TVM_SELECTITEM";
4394 case 0x1100 + 12: return "TVM_GETITEMA";
4395 case 0x1100 + 62: return "TVM_GETITEMW";
4396 case 0x1100 + 13: return "TVM_SETITEMA";
4397 case 0x1100 + 63: return "TVM_SETITEMW";
4398 case 0x1100 + 14: return "TVM_EDITLABELA";
4399 case 0x1100 + 65: return "TVM_EDITLABELW";
4400 case 0x1100 + 15: return "TVM_GETEDITCONTROL";
4401 case 0x1100 + 16: return "TVM_GETVISIBLECOUNT";
4402 case 0x1100 + 17: return "TVM_HITTEST";
4403 case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE";
4404 case 0x1100 + 19: return "TVM_SORTCHILDREN";
4405 case 0x1100 + 20: return "TVM_ENSUREVISIBLE";
4406 case 0x1100 + 21: return "TVM_SORTCHILDRENCB";
4407 case 0x1100 + 22: return "TVM_ENDEDITLABELNOW";
4408 case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA";
4409 case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW";
4410 case 0x1100 + 24: return "TVM_SETTOOLTIPS";
4411 case 0x1100 + 25: return "TVM_GETTOOLTIPS";
4414 case 0x1200 + 0: return "HDM_GETITEMCOUNT";
4415 case 0x1200 + 1: return "HDM_INSERTITEMA";
4416 case 0x1200 + 10: return "HDM_INSERTITEMW";
4417 case 0x1200 + 2: return "HDM_DELETEITEM";
4418 case 0x1200 + 3: return "HDM_GETITEMA";
4419 case 0x1200 + 11: return "HDM_GETITEMW";
4420 case 0x1200 + 4: return "HDM_SETITEMA";
4421 case 0x1200 + 12: return "HDM_SETITEMW";
4422 case 0x1200 + 5: return "HDM_LAYOUT";
4423 case 0x1200 + 6: return "HDM_HITTEST";
4424 case 0x1200 + 7: return "HDM_GETITEMRECT";
4425 case 0x1200 + 8: return "HDM_SETIMAGELIST";
4426 case 0x1200 + 9: return "HDM_GETIMAGELIST";
4427 case 0x1200 + 15: return "HDM_ORDERTOINDEX";
4428 case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE";
4429 case 0x1200 + 17: return "HDM_GETORDERARRAY";
4430 case 0x1200 + 18: return "HDM_SETORDERARRAY";
4431 case 0x1200 + 19: return "HDM_SETHOTDIVIDER";
4434 case 0x1300 + 2: return "TCM_GETIMAGELIST";
4435 case 0x1300 + 3: return "TCM_SETIMAGELIST";
4436 case 0x1300 + 4: return "TCM_GETITEMCOUNT";
4437 case 0x1300 + 5: return "TCM_GETITEMA";
4438 case 0x1300 + 60: return "TCM_GETITEMW";
4439 case 0x1300 + 6: return "TCM_SETITEMA";
4440 case 0x1300 + 61: return "TCM_SETITEMW";
4441 case 0x1300 + 7: return "TCM_INSERTITEMA";
4442 case 0x1300 + 62: return "TCM_INSERTITEMW";
4443 case 0x1300 + 8: return "TCM_DELETEITEM";
4444 case 0x1300 + 9: return "TCM_DELETEALLITEMS";
4445 case 0x1300 + 10: return "TCM_GETITEMRECT";
4446 case 0x1300 + 11: return "TCM_GETCURSEL";
4447 case 0x1300 + 12: return "TCM_SETCURSEL";
4448 case 0x1300 + 13: return "TCM_HITTEST";
4449 case 0x1300 + 14: return "TCM_SETITEMEXTRA";
4450 case 0x1300 + 40: return "TCM_ADJUSTRECT";
4451 case 0x1300 + 41: return "TCM_SETITEMSIZE";
4452 case 0x1300 + 42: return "TCM_REMOVEIMAGE";
4453 case 0x1300 + 43: return "TCM_SETPADDING";
4454 case 0x1300 + 44: return "TCM_GETROWCOUNT";
4455 case 0x1300 + 45: return "TCM_GETTOOLTIPS";
4456 case 0x1300 + 46: return "TCM_SETTOOLTIPS";
4457 case 0x1300 + 47: return "TCM_GETCURFOCUS";
4458 case 0x1300 + 48: return "TCM_SETCURFOCUS";
4459 case 0x1300 + 49: return "TCM_SETMINTABWIDTH";
4460 case 0x1300 + 50: return "TCM_DESELECTALL";
4463 case WM_USER
+1: return "TB_ENABLEBUTTON";
4464 case WM_USER
+2: return "TB_CHECKBUTTON";
4465 case WM_USER
+3: return "TB_PRESSBUTTON";
4466 case WM_USER
+4: return "TB_HIDEBUTTON";
4467 case WM_USER
+5: return "TB_INDETERMINATE";
4468 case WM_USER
+9: return "TB_ISBUTTONENABLED";
4469 case WM_USER
+10: return "TB_ISBUTTONCHECKED";
4470 case WM_USER
+11: return "TB_ISBUTTONPRESSED";
4471 case WM_USER
+12: return "TB_ISBUTTONHIDDEN";
4472 case WM_USER
+13: return "TB_ISBUTTONINDETERMINATE";
4473 case WM_USER
+17: return "TB_SETSTATE";
4474 case WM_USER
+18: return "TB_GETSTATE";
4475 case WM_USER
+19: return "TB_ADDBITMAP";
4476 case WM_USER
+20: return "TB_ADDBUTTONS";
4477 case WM_USER
+21: return "TB_INSERTBUTTON";
4478 case WM_USER
+22: return "TB_DELETEBUTTON";
4479 case WM_USER
+23: return "TB_GETBUTTON";
4480 case WM_USER
+24: return "TB_BUTTONCOUNT";
4481 case WM_USER
+25: return "TB_COMMANDTOINDEX";
4482 case WM_USER
+26: return "TB_SAVERESTOREA";
4483 case WM_USER
+76: return "TB_SAVERESTOREW";
4484 case WM_USER
+27: return "TB_CUSTOMIZE";
4485 case WM_USER
+28: return "TB_ADDSTRINGA";
4486 case WM_USER
+77: return "TB_ADDSTRINGW";
4487 case WM_USER
+29: return "TB_GETITEMRECT";
4488 case WM_USER
+30: return "TB_BUTTONSTRUCTSIZE";
4489 case WM_USER
+31: return "TB_SETBUTTONSIZE";
4490 case WM_USER
+32: return "TB_SETBITMAPSIZE";
4491 case WM_USER
+33: return "TB_AUTOSIZE";
4492 case WM_USER
+35: return "TB_GETTOOLTIPS";
4493 case WM_USER
+36: return "TB_SETTOOLTIPS";
4494 case WM_USER
+37: return "TB_SETPARENT";
4495 case WM_USER
+39: return "TB_SETROWS";
4496 case WM_USER
+40: return "TB_GETROWS";
4497 case WM_USER
+42: return "TB_SETCMDID";
4498 case WM_USER
+43: return "TB_CHANGEBITMAP";
4499 case WM_USER
+44: return "TB_GETBITMAP";
4500 case WM_USER
+45: return "TB_GETBUTTONTEXTA";
4501 case WM_USER
+75: return "TB_GETBUTTONTEXTW";
4502 case WM_USER
+46: return "TB_REPLACEBITMAP";
4503 case WM_USER
+47: return "TB_SETINDENT";
4504 case WM_USER
+48: return "TB_SETIMAGELIST";
4505 case WM_USER
+49: return "TB_GETIMAGELIST";
4506 case WM_USER
+50: return "TB_LOADIMAGES";
4507 case WM_USER
+51: return "TB_GETRECT";
4508 case WM_USER
+52: return "TB_SETHOTIMAGELIST";
4509 case WM_USER
+53: return "TB_GETHOTIMAGELIST";
4510 case WM_USER
+54: return "TB_SETDISABLEDIMAGELIST";
4511 case WM_USER
+55: return "TB_GETDISABLEDIMAGELIST";
4512 case WM_USER
+56: return "TB_SETSTYLE";
4513 case WM_USER
+57: return "TB_GETSTYLE";
4514 case WM_USER
+58: return "TB_GETBUTTONSIZE";
4515 case WM_USER
+59: return "TB_SETBUTTONWIDTH";
4516 case WM_USER
+60: return "TB_SETMAXTEXTROWS";
4517 case WM_USER
+61: return "TB_GETTEXTROWS";
4518 case WM_USER
+41: return "TB_GETBITMAPFLAGS";
4523 static char s_szBuf
[128];
4524 sprintf(s_szBuf
, "<unknown message = %d>", message
);
4528 #endif //__WXDEBUG__
4530 static void TranslateKbdEventToMouse(wxWindow
*win
, int *x
, int *y
, WPARAM
*flags
)
4532 // construct the key mask
4533 WPARAM
& fwKeys
= *flags
;
4535 fwKeys
= MK_RBUTTON
;
4536 if ( wxIsCtrlDown() )
4537 fwKeys
|= MK_CONTROL
;
4538 if ( wxIsShiftDown() )
4541 // simulate right mouse button click
4542 DWORD dwPos
= ::GetMessagePos();
4543 *x
= GET_X_LPARAM(dwPos
);
4544 *y
= GET_Y_LPARAM(dwPos
);
4546 win
->ScreenToClient(x
, y
);
4549 static TEXTMETRIC
wxGetTextMetrics(const wxWindow
*win
)
4553 HWND hwnd
= GetHwndOf(win
);
4554 HDC hdc
= ::GetDC(hwnd
);
4556 #if !wxDIALOG_UNIT_COMPATIBILITY
4557 // and select the current font into it
4558 HFONT hfont
= GetHfontOf(win
->GetFont());
4561 hfont
= (HFONT
)::SelectObject(hdc
, hfont
);
4565 // finally retrieve the text metrics from it
4566 GetTextMetrics(hdc
, &tm
);
4568 #if !wxDIALOG_UNIT_COMPATIBILITY
4572 (void)::SelectObject(hdc
, hfont
);
4576 ::ReleaseDC(hwnd
, hdc
);
4581 // Find the wxWindow at the current mouse position, returning the mouse
4583 wxWindow
* wxFindWindowAtPointer(wxPoint
& WXUNUSED(pt
))
4585 return wxFindWindowAtPoint(wxGetMousePosition());
4588 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
4593 HWND hWndHit
= ::WindowFromPoint(pt2
);
4595 wxWindow
* win
= wxFindWinFromHandle((WXHWND
) hWndHit
) ;
4596 HWND hWnd
= hWndHit
;
4598 // Try to find a window with a wxWindow associated with it
4599 while (!win
&& (hWnd
!= 0))
4601 hWnd
= ::GetParent(hWnd
);
4602 win
= wxFindWinFromHandle((WXHWND
) hWnd
) ;
4607 // Get the current mouse position.
4608 wxPoint
wxGetMousePosition()
4611 GetCursorPos( & pt
);
4612 return wxPoint(pt
.x
, pt
.y
);