1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "window.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 #include "wx/dcclient.h"
31 #include "wx/layout.h"
32 #include "wx/dialog.h"
34 #include "wx/listbox.h"
35 #include "wx/button.h"
36 #include "wx/settings.h"
37 #include "wx/msgdlg.h"
43 #include "wx/ownerdrw.h"
46 #if wxUSE_DRAG_AND_DROP
47 #include "wx/msw/ole/droptgt.h"
50 #include "wx/menuitem.h"
54 #include "wx/tooltip.h"
60 #include "wx/msw/private.h"
73 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__)
79 #include <wx/msw/gnuwin32/extra.h>
83 // all these are defined in <windows.h>
101 const char *wxGetMessageName(int message
);
104 #define WINDOW_MARGIN 3 // This defines sensitivity of Leave events
106 wxMenu
*wxCurrentPopupMenu
= NULL
;
107 extern wxList WXDLLEXPORT wxPendingDelete
;
109 void wxRemoveHandleAssociation(wxWindow
*win
);
110 void wxAssociateWinWithHandle(HWND hWnd
, wxWindow
*win
);
111 wxWindow
*wxFindWinFromHandle(WXHWND hWnd
);
113 #if !USE_SHARED_LIBRARY
114 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxEvtHandler
)
117 BEGIN_EVENT_TABLE(wxWindow
, wxEvtHandler
)
118 EVT_CHAR(wxWindow::OnChar
)
119 EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground
)
120 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged
)
121 EVT_INIT_DIALOG(wxWindow::OnInitDialog
)
122 EVT_IDLE(wxWindow::OnIdle
)
125 // Find an item given the MS Windows id
126 wxWindow
*wxWindow::FindItem(int id
) const
128 // if (!GetChildren())
130 wxNode
*current
= GetChildren().First();
133 wxWindow
*childWin
= (wxWindow
*)current
->Data();
135 wxWindow
*wnd
= childWin
->FindItem(id
) ;
139 if (childWin
->IsKindOf(CLASSINFO(wxControl
)))
141 wxControl
*item
= (wxControl
*)childWin
;
142 if (item
->GetId() == id
)
146 // In case it's a 'virtual' control (e.g. radiobox)
147 if (item
->GetSubcontrols().Member((wxObject
*)id
))
151 current
= current
->Next();
156 // Find an item given the MS Windows handle
157 wxWindow
*wxWindow::FindItemByHWND(WXHWND hWnd
, bool controlOnly
) const
159 // if (!GetChildren())
161 wxNode
*current
= GetChildren().First();
164 wxObject
*obj
= (wxObject
*)current
->Data() ;
165 // Do a recursive search.
166 wxWindow
*parent
= (wxWindow
*)obj
;
167 wxWindow
*wnd
= parent
->FindItemByHWND(hWnd
) ;
171 if ((!controlOnly
) || obj
->IsKindOf(CLASSINFO(wxControl
)))
173 wxWindow
*item
= (wxWindow
*)current
->Data();
174 if ((HWND
)(item
->GetHWND()) == (HWND
) hWnd
)
178 if ( item
->ContainsHWND(hWnd
) )
182 current
= current
->Next();
187 // Default command handler
188 bool wxWindow::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD
WXUNUSED(id
))
193 bool wxWindow::MSWNotify(WXWPARAM
WXUNUSED(wParam
),
195 WXLPARAM
* WXUNUSED(result
))
199 NMHDR
* hdr
= (NMHDR
*)lParam
;
200 if ( hdr
->code
== TTN_NEEDTEXT
&& m_tooltip
)
202 TOOLTIPTEXT
*ttt
= (TOOLTIPTEXT
*)lParam
;
203 ttt
->lpszText
= (char *)m_tooltip
->GetTip().c_str();
214 void wxWindow::PreDelete(WXHDC
WXUNUSED(dc
))
218 WXHWND
wxWindow::GetHWND(void) const
220 return (WXHWND
) m_hWnd
;
223 void wxWindow::SetHWND(WXHWND hWnd
)
228 // ----------------------------------------------------------------------------
229 // constructors and such
230 // ----------------------------------------------------------------------------
232 void wxWindow::Init()
240 m_windowParent
= NULL
;
241 m_windowEventHandler
= this;
242 m_children
= new wxList
;
243 m_doubleClickAllowed
= 0 ;
244 m_winCaptured
= FALSE
;
245 m_constraints
= NULL
;
246 m_constraintsInvolvedIn
= NULL
;
247 m_windowSizer
= NULL
;
248 m_sizerParent
= NULL
;
249 m_autoLayout
= FALSE
;
250 m_windowValidator
= NULL
;
255 m_caretWidth
= m_caretHeight
= 0;
257 m_caretShown
= FALSE
;
264 m_isBeingDeleted
= FALSE
;
270 m_mouseInWindow
= FALSE
;
272 m_windowParent
= NULL
;
273 m_defaultItem
= NULL
;
275 wxSystemSettings settings
;
277 m_backgroundColour
= settings
.GetSystemColour(wxSYS_COLOUR_3DFACE
) ;
278 m_foregroundColour
= *wxBLACK
;
288 m_backgroundTransparent
= FALSE
;
290 m_lastXPos
= (float)-1.0;
291 m_lastYPos
= (float)-1.0;
295 #if wxUSE_DRAG_AND_DROP
296 m_pDropTarget
= NULL
;
310 wxWindow::~wxWindow()
312 m_isBeingDeleted
= TRUE
;
314 // first of all, delete the things on which nothing else depends
320 // JACS - if behaviour is odd, restore this
321 // to the start of ~wxWindow. Vadim has changed
322 // it to nearer the end. Unsure of side-effects
323 // e.g. when deleting associated global data.
324 // Restore old Window proc, if required
327 // Have to delete constraints/sizer FIRST otherwise
328 // sizers may try to look at deleted windows as they
329 // delete themselves.
330 #if wxUSE_CONSTRAINTS
331 DeleteRelatedConstraints();
335 // This removes any dangling pointers to this window
336 // in other windows' constraintsInvolvedIn lists.
337 UnsetConstraints(m_constraints
);
338 delete m_constraints
;
339 m_constraints
= NULL
;
342 wxDELETE(m_windowSizer
);
344 // If this is a child of a sizer, remove self from parent
346 m_sizerParent
->RemoveChild((wxWindow
*)this);
350 MSWDetachWindowMenu();
353 m_windowParent
->RemoveChild(this);
358 ::DestroyWindow((HWND
)m_hWnd
);
360 wxRemoveHandleAssociation(this);
365 GlobalFree((HGLOBAL
) m_globalHandle
);
373 // Just in case the window has been Closed, but
374 // we're then deleting immediately: don't leave
375 // dangling pointers.
376 wxPendingDelete
.DeleteObject(this);
378 // Just in case we've loaded a top-level window via
379 // wxWindow::LoadNativeDialog but we weren't a dialog
381 wxTopLevelWindows
.DeleteObject(this);
383 if ( m_windowValidator
)
384 delete m_windowValidator
;
386 // Restore old Window proc, if required
387 // and remove hWnd <-> wxWindow association
391 // Destroy the window (delayed, if a managed window)
392 bool wxWindow::Destroy()
398 extern char wxCanvasClassName
[];
400 // real construction (Init() must have been called before!)
401 bool wxWindow::Create(wxWindow
*parent
, wxWindowID id
,
405 const wxString
& name
)
407 wxCHECK_MSG( parent
, FALSE
, "can't create wxWindow without parent" );
409 parent
->AddChild(this);
414 m_windowId
= (int)NewControlId();
423 // To be consistent with wxGTK
429 wxSystemSettings settings
;
431 m_windowStyle
= style
;
434 if (style
& wxBORDER
)
435 msflags
|= WS_BORDER
;
436 if (style
& wxTHICK_FRAME
)
437 msflags
|= WS_THICKFRAME
;
439 msflags
|= WS_CHILD
| WS_VISIBLE
;
440 if (style
& wxCLIP_CHILDREN
)
441 msflags
|= WS_CLIPCHILDREN
;
444 WXDWORD exStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &want3D
) ;
446 // Even with extended styles, need to combine with WS_BORDER
447 // for them to look right.
448 if (want3D
|| (m_windowStyle
& wxSIMPLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
449 (m_windowStyle
& wxSUNKEN_BORDER
) || (m_windowStyle
& wxDOUBLE_BORDER
))
450 msflags
|= WS_BORDER
;
452 MSWCreate(m_windowId
, parent
, wxCanvasClassName
, this, NULL
,
453 x
, y
, width
, height
, msflags
, NULL
, exStyle
);
458 void wxWindow::SetFocus()
460 HWND hWnd
= (HWND
) GetHWND();
465 void wxWindow::Enable(bool enable
)
467 m_winEnabled
= enable
;
468 HWND hWnd
= (HWND
) GetHWND();
470 ::EnableWindow(hWnd
, (BOOL
)enable
);
473 void wxWindow::CaptureMouse()
475 HWND hWnd
= (HWND
) GetHWND();
476 if (hWnd
&& !m_winCaptured
)
479 m_winCaptured
= TRUE
;
483 void wxWindow::ReleaseMouse()
488 m_winCaptured
= FALSE
;
492 void wxWindow::SetAcceleratorTable(const wxAcceleratorTable
& accel
)
494 m_acceleratorTable
= accel
;
498 // Push/pop event handler (i.e. allow a chain of event handlers
500 void wxWindow::PushEventHandler(wxEvtHandler
*handler
)
502 handler
->SetNextHandler(GetEventHandler());
503 SetEventHandler(handler
);
506 wxEvtHandler
*wxWindow::PopEventHandler(bool deleteHandler
)
508 if ( GetEventHandler() )
510 wxEvtHandler
*handlerA
= GetEventHandler();
511 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
512 handlerA
->SetNextHandler(NULL
);
513 SetEventHandler(handlerB
);
526 #if wxUSE_DRAG_AND_DROP
528 void wxWindow::SetDropTarget(wxDropTarget
*pDropTarget
)
530 if ( m_pDropTarget
!= 0 ) {
531 m_pDropTarget
->Revoke(m_hWnd
);
532 delete m_pDropTarget
;
535 m_pDropTarget
= pDropTarget
;
536 if ( m_pDropTarget
!= 0 )
537 m_pDropTarget
->Register(m_hWnd
);
540 #endif // wxUSE_DRAG_AND_DROP
543 //old style file-manager drag&drop support
544 // I think we should retain the old-style
545 // DragAcceptFiles in parallel with SetDropTarget.
547 void wxWindow::DragAcceptFiles(bool accept
)
549 HWND hWnd
= (HWND
) GetHWND();
551 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
554 // ----------------------------------------------------------------------------
556 // ----------------------------------------------------------------------------
560 void wxWindow::SetToolTip(const wxString
&tip
)
562 SetToolTip(new wxToolTip(tip
));
565 void wxWindow::SetToolTip(wxToolTip
*tooltip
)
571 m_tooltip
->SetWindow(this);
574 #endif // wxUSE_TOOLTIPS
577 void wxWindow::GetSize(int *x
, int *y
) const
579 HWND hWnd
= (HWND
) GetHWND();
581 GetWindowRect(hWnd
, &rect
);
582 *x
= rect
.right
- rect
.left
;
583 *y
= rect
.bottom
- rect
.top
;
586 void wxWindow::GetPosition(int *x
, int *y
) const
588 HWND hWnd
= (HWND
) GetHWND();
591 hParentWnd
= (HWND
) GetParent()->GetHWND();
594 GetWindowRect(hWnd
, &rect
);
596 // Since we now have the absolute screen coords,
597 // if there's a parent we must subtract its top left corner
603 ::ScreenToClient(hParentWnd
, &point
);
606 // We may be faking the client origin.
607 // So a window that's really at (0, 30) may appear
608 // (to wxWin apps) to be at (0, 0).
611 wxPoint
pt(GetParent()->GetClientAreaOrigin());
619 void wxWindow::ScreenToClient(int *x
, int *y
) const
621 HWND hWnd
= (HWND
) GetHWND();
626 ::ScreenToClient(hWnd
, &pt
);
632 void wxWindow::ClientToScreen(int *x
, int *y
) const
634 HWND hWnd
= (HWND
) GetHWND();
639 ::ClientToScreen(hWnd
, &pt
);
645 void wxWindow::SetCursor(const wxCursor
& cursor
)
647 m_windowCursor
= cursor
;
648 if (m_windowCursor
.Ok())
650 HWND hWnd
= (HWND
) GetHWND();
652 // Change the cursor NOW if we're within the correct window
654 ::GetCursorPos(&point
);
657 ::GetWindowRect(hWnd
, &rect
);
659 if (::PtInRect(&rect
, point
) && !wxIsBusy())
660 ::SetCursor((HCURSOR
) m_windowCursor
.GetHCURSOR());
663 // This will cause big reentrancy problems if wxFlushEvents is implemented.
665 // return old_cursor;
669 // Get size *available for subwindows* i.e. excluding menu bar etc.
670 void wxWindow::GetClientSize(int *x
, int *y
) const
672 HWND hWnd
= (HWND
) GetHWND();
674 ::GetClientRect(hWnd
, &rect
);
679 void wxWindow::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
681 int currentX
, currentY
;
682 GetPosition(¤tX
, ¤tY
);
683 int currentW
,currentH
;
684 GetSize(¤tW
, ¤tH
);
686 if (x
== currentX
&& y
== currentY
&& width
== currentW
&& height
== currentH
)
689 int actualWidth
= width
;
690 int actualHeight
= height
;
693 if (x
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
695 if (y
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
698 AdjustForParentClientOrigin(actualX
, actualY
, sizeFlags
);
701 actualWidth
= currentW
;
703 actualHeight
= currentH
;
705 HWND hWnd
= (HWND
) GetHWND();
707 MoveWindow(hWnd
, actualX
, actualY
, actualWidth
, actualHeight
, (BOOL
)TRUE
);
710 void wxWindow::DoSetClientSize(int width
, int height
)
712 wxWindow
*parent
= GetParent();
713 HWND hWnd
= (HWND
) GetHWND();
714 HWND hParentWnd
= (HWND
) 0;
716 hParentWnd
= (HWND
) parent
->GetHWND();
719 ::GetClientRect(hWnd
, &rect
);
722 GetWindowRect(hWnd
, &rect2
);
724 // Find the difference between the entire window (title bar and all)
725 // and the client area; add this to the new client size to move the
727 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
728 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
730 // If there's a parent, must subtract the parent's top left corner
731 // since MoveWindow moves relative to the parent
734 point
.x
= rect2
.left
;
738 ::ScreenToClient(hParentWnd
, &point
);
741 MoveWindow(hWnd
, point
.x
, point
.y
, actual_width
, actual_height
, (BOOL
)TRUE
);
743 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
744 event
.SetEventObject(this);
745 GetEventHandler()->ProcessEvent(event
);
748 // For implementation purposes - sometimes decorations make the client area
750 wxPoint
wxWindow::GetClientAreaOrigin() const
752 return wxPoint(0, 0);
755 // Makes an adjustment to the window position (for example, a frame that has
756 // a toolbar that it manages itself).
757 void wxWindow::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
)
759 if (((sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) == 0) && GetParent())
761 wxPoint
pt(GetParent()->GetClientAreaOrigin());
762 x
+= pt
.x
; y
+= pt
.y
;
766 bool wxWindow::Show(bool show
)
769 HWND hWnd
= (HWND
) GetHWND();
775 ShowWindow(hWnd
, cshow
);
778 BringWindowToTop(hWnd
);
779 // Next line causes a crash on NT, apparently.
780 // UpdateWindow(hWnd); // Should this be here or will it cause inefficiency?
785 bool wxWindow::IsShown(void) const
787 // Can't rely on IsWindowVisible, since it will return FALSE
788 // if the parent is not visible.
790 // int ret = ::IsWindowVisible((HWND) GetHWND()) ;
791 // return (ret != 0);
794 int wxWindow::GetCharHeight(void) const
796 TEXTMETRIC lpTextMetric
;
797 HWND hWnd
= (HWND
) GetHWND();
798 HDC dc
= ::GetDC(hWnd
);
800 GetTextMetrics(dc
, &lpTextMetric
);
801 ::ReleaseDC(hWnd
, dc
);
803 return lpTextMetric
.tmHeight
;
806 int wxWindow::GetCharWidth(void) const
808 TEXTMETRIC lpTextMetric
;
809 HWND hWnd
= (HWND
) GetHWND();
810 HDC dc
= ::GetDC(hWnd
);
812 GetTextMetrics(dc
, &lpTextMetric
);
813 ::ReleaseDC(hWnd
, dc
);
815 return lpTextMetric
.tmAveCharWidth
;
818 void wxWindow::GetTextExtent(const wxString
& string
, int *x
, int *y
,
819 int *descent
, int *externalLeading
, const wxFont
*theFont
, bool) const
821 wxFont
*fontToUse
= (wxFont
*)theFont
;
823 fontToUse
= (wxFont
*) & m_windowFont
;
825 HWND hWnd
= (HWND
) GetHWND();
826 HDC dc
= ::GetDC(hWnd
);
830 if (fontToUse
&& fontToUse
->Ok())
832 fnt
= (HFONT
)fontToUse
->GetResourceHandle();
834 was
= (HFONT
) SelectObject(dc
,fnt
) ;
839 GetTextExtentPoint(dc
, (const char *)string
, (int)string
.Length(), &sizeRect
);
840 GetTextMetrics(dc
, &tm
);
842 if (fontToUse
&& fnt
&& was
)
843 SelectObject(dc
,was
) ;
849 if (descent
) *descent
= tm
.tmDescent
;
850 if (externalLeading
) *externalLeading
= tm
.tmExternalLeading
;
853 // fontToUse->ReleaseResource();
856 void wxWindow::Refresh(bool eraseBack
, const wxRect
*rect
)
858 HWND hWnd
= (HWND
) GetHWND();
864 mswRect
.left
= rect
->x
;
865 mswRect
.top
= rect
->y
;
866 mswRect
.right
= rect
->x
+ rect
->width
;
867 mswRect
.bottom
= rect
->y
+ rect
->height
;
869 ::InvalidateRect(hWnd
, &mswRect
, eraseBack
);
872 ::InvalidateRect(hWnd
, NULL
, eraseBack
);
876 bool wxWindow::ProcessEvent(wxEvent
& event
)
878 // we save here the information about the last message because it might be
879 // overwritten if the event handler sends any messages to our window (case
880 // in point: wxNotebook::OnSize) - and then if we call Default() later
881 // (which is done quite often if the message is not processed) it will use
882 // incorrect values for m_lastXXX variables
883 WXUINT lastMsg
= m_lastMsg
;
884 WXWPARAM lastWParam
= m_lastWParam
;
885 WXLPARAM lastLParam
= m_lastLParam
;
887 // call the base version
888 bool bProcessed
= wxEvtHandler::ProcessEvent(event
);
892 m_lastWParam
= lastWParam
;
893 m_lastLParam
= lastLParam
;
898 // Hook for new window just as it's being created,
899 // when the window isn't yet associated with the handle
900 wxWindow
*wxWndHook
= NULL
;
903 LRESULT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
905 wxWindow
*wnd
= wxFindWinFromHandle((WXHWND
) hWnd
);
907 if (!wnd
&& wxWndHook
)
909 wxAssociateWinWithHandle(hWnd
, wxWndHook
);
912 wnd
->m_hWnd
= (WXHWND
) hWnd
;
915 // Stop right here if we don't have a valid handle in our wxWindow object.
916 if (wnd
&& !wnd
->m_hWnd
) {
917 wnd
->m_hWnd
= (WXHWND
) hWnd
;
918 long res
= wnd
->MSWDefWindowProc(message
, wParam
, lParam
);
924 wnd
->m_lastMsg
= message
;
925 wnd
->m_lastWParam
= wParam
;
926 wnd
->m_lastLParam
= lParam
;
929 return wnd
->MSWWindowProc(message
, wParam
, lParam
);
931 return DefWindowProc( hWnd
, message
, wParam
, lParam
);
934 // Should probably have a test for 'genuine' NT
935 #if defined(__WIN32__)
936 #define DIMENSION_TYPE short
938 #define DIMENSION_TYPE int
941 // Main Windows 3 window proc
942 long wxWindow::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
944 wxASSERT( m_lastMsg
== message
&&
945 m_lastWParam
== wParam
&& m_lastLParam
== lParam
);
948 wxLogTrace(wxTraceMessages
, "Processing %s(%lx, %lx)",
949 wxGetMessageName(message
), wParam
, lParam
);
950 #endif // __WXDEBUG__
952 HWND hWnd
= (HWND
)m_hWnd
;
959 WORD state
= LOWORD(wParam
);
960 WORD minimized
= HIWORD(wParam
);
961 HWND hwnd
= (HWND
)lParam
;
963 WORD state
= (WORD
)wParam
;
964 WORD minimized
= LOWORD(lParam
);
965 HWND hwnd
= (HWND
)HIWORD(lParam
);
967 MSWOnActivate(state
, (minimized
!= 0), (WXHWND
) hwnd
);
973 HWND hwnd
= (HWND
)wParam
;
974 // return OnSetFocus(hwnd);
976 if (MSWOnSetFocus((WXHWND
) hwnd
))
978 else return MSWDefWindowProc(message
, wParam
, lParam
);
983 HWND hwnd
= (HWND
)lParam
;
984 // return OnKillFocus(hwnd);
985 if (MSWOnKillFocus((WXHWND
) hwnd
))
988 return MSWDefWindowProc(message
, wParam
, lParam
);
993 MSWOnCreate((WXLPCREATESTRUCT
) (LPCREATESTRUCT
)lParam
);
999 MSWOnShow((wParam
!= 0), (int) lParam
);
1006 else return MSWDefWindowProc(message
, wParam
, lParam
);
1009 case WM_QUERYDRAGICON
:
1011 HICON hIcon
= (HICON
)MSWOnQueryDragIcon();
1015 return MSWDefWindowProc(message
, wParam
, lParam
);
1021 int width
= LOWORD(lParam
);
1022 int height
= HIWORD(lParam
);
1023 MSWOnSize(width
, height
, wParam
);
1029 wxMoveEvent
event(wxPoint(LOWORD(lParam
), HIWORD(lParam
)),
1031 event
.SetEventObject(this);
1032 if ( !GetEventHandler()->ProcessEvent(event
) )
1037 case WM_WINDOWPOSCHANGING
:
1039 MSWOnWindowPosChanging((void *)lParam
);
1043 case WM_RBUTTONDOWN
:
1045 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1046 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1047 MSWOnRButtonDown(x
, y
, wParam
);
1052 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1053 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1054 MSWOnRButtonUp(x
, y
, wParam
);
1057 case WM_RBUTTONDBLCLK
:
1059 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1060 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1061 MSWOnRButtonDClick(x
, y
, wParam
);
1064 case WM_MBUTTONDOWN
:
1066 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1067 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1068 MSWOnMButtonDown(x
, y
, wParam
);
1073 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1074 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1075 MSWOnMButtonUp(x
, y
, wParam
);
1078 case WM_MBUTTONDBLCLK
:
1080 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1081 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1082 MSWOnMButtonDClick(x
, y
, wParam
);
1085 case WM_LBUTTONDOWN
:
1087 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1088 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1089 MSWOnLButtonDown(x
, y
, wParam
);
1094 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1095 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1096 MSWOnLButtonUp(x
, y
, wParam
);
1099 case WM_LBUTTONDBLCLK
:
1101 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1102 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1103 MSWOnLButtonDClick(x
, y
, wParam
);
1108 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1109 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1110 MSWOnMouseMove(x
, y
, wParam
);
1113 case MM_JOY1BUTTONDOWN
:
1115 int x
= LOWORD(lParam
);
1116 int y
= HIWORD(lParam
);
1117 MSWOnJoyDown(wxJOYSTICK1
, x
, y
, wParam
);
1120 case MM_JOY2BUTTONDOWN
:
1122 int x
= LOWORD(lParam
);
1123 int y
= HIWORD(lParam
);
1124 MSWOnJoyDown(wxJOYSTICK2
, x
, y
, wParam
);
1127 case MM_JOY1BUTTONUP
:
1129 int x
= LOWORD(lParam
);
1130 int y
= HIWORD(lParam
);
1131 MSWOnJoyUp(wxJOYSTICK1
, x
, y
, wParam
);
1134 case MM_JOY2BUTTONUP
:
1136 int x
= LOWORD(lParam
);
1137 int y
= HIWORD(lParam
);
1138 MSWOnJoyUp(wxJOYSTICK2
, x
, y
, wParam
);
1143 int x
= LOWORD(lParam
);
1144 int y
= HIWORD(lParam
);
1145 MSWOnJoyMove(wxJOYSTICK1
, x
, y
, wParam
);
1150 int x
= LOWORD(lParam
);
1151 int y
= HIWORD(lParam
);
1152 MSWOnJoyMove(wxJOYSTICK2
, x
, y
, wParam
);
1157 int z
= LOWORD(lParam
);
1158 MSWOnJoyZMove(wxJOYSTICK1
, z
, wParam
);
1163 int z
= LOWORD(lParam
);
1164 MSWOnJoyZMove(wxJOYSTICK2
, z
, wParam
);
1171 else return MSWDefWindowProc(message
, wParam
, lParam
);
1176 return MSWOnSysCommand(wParam
, lParam
);
1182 WORD id
= LOWORD(wParam
);
1183 HWND hwnd
= (HWND
)lParam
;
1184 WORD cmd
= HIWORD(wParam
);
1186 WORD id
= (WORD
)wParam
;
1187 HWND hwnd
= (HWND
)LOWORD(lParam
) ;
1188 WORD cmd
= HIWORD(lParam
);
1190 if (!MSWOnCommand(id
, cmd
, (WXHWND
) hwnd
))
1191 return MSWDefWindowProc(message
, wParam
, lParam
);
1194 #if defined(__WIN95__)
1197 // for some messages (TVN_ITEMEXPANDING for example), the return
1198 // value of WM_NOTIFY handler is important, so don't just return 0
1199 // if we processed the message
1200 return MSWOnNotify(wParam
, lParam
);
1206 WORD flags
= HIWORD(wParam
);
1207 HMENU sysmenu
= (HMENU
)lParam
;
1209 WORD flags
= LOWORD(lParam
);
1210 HMENU sysmenu
= (HMENU
)HIWORD(lParam
);
1212 MSWOnMenuHighlight((WORD
)wParam
, flags
, (WXHMENU
) sysmenu
);
1215 case WM_INITMENUPOPUP
:
1217 MSWOnInitMenuPopup((WXHMENU
) (HMENU
)wParam
, (int)LOWORD(lParam
), (HIWORD(lParam
) != 0));
1222 return MSWOnDrawItem((int)wParam
, (WXDRAWITEMSTRUCT
*)lParam
);
1225 case WM_MEASUREITEM
:
1227 return MSWOnMeasureItem((int)wParam
, (WXMEASUREITEMSTRUCT
*)lParam
);
1232 // If this has been processed by an event handler,
1233 // return 0 now (we've handled it).
1234 if (MSWOnKeyDown((WORD
) wParam
, lParam
))
1239 // we consider these message "not interesting" to OnChar
1240 if ( wParam
== VK_SHIFT
|| wParam
== VK_CONTROL
)
1245 // Avoid duplicate messages to OnChar for these special keys
1260 // special case of VK_APPS: treat it the same as right mouse click
1261 // because both usually pop up a context menu
1264 // construct the key mask
1265 WPARAM fwKeys
= MK_RBUTTON
;
1266 if ( (::GetKeyState(VK_CONTROL
) & 0x100) != 0 )
1267 fwKeys
|= MK_CONTROL
;
1268 if ( (::GetKeyState(VK_SHIFT
) & 0x100) != 0 )
1271 // simulate right mouse button click
1272 DWORD dwPos
= ::GetMessagePos();
1273 int x
= GET_X_LPARAM(dwPos
),
1274 y
= GET_Y_LPARAM(dwPos
);
1276 ScreenToClient(&x
, &y
);
1277 MSWOnRButtonDown(x
, y
, fwKeys
);
1283 if (!MSWOnChar((WORD
)wParam
, lParam
))
1294 if (!MSWOnKeyUp((WORD
) wParam
, lParam
))
1298 case WM_CHAR
: // Always an ASCII character
1300 if (!MSWOnChar((WORD
)wParam
, lParam
, TRUE
))
1308 WORD code
= LOWORD(wParam
);
1309 WORD pos
= HIWORD(wParam
);
1310 HWND control
= (HWND
)lParam
;
1312 WORD code
= (WORD
)wParam
;
1313 WORD pos
= LOWORD(lParam
);
1314 HWND control
= (HWND
)HIWORD(lParam
);
1316 MSWOnHScroll(code
, pos
, (WXHWND
) control
);
1322 WORD code
= LOWORD(wParam
);
1323 WORD pos
= HIWORD(wParam
);
1324 HWND control
= (HWND
)lParam
;
1326 WORD code
= (WORD
)wParam
;
1327 WORD pos
= LOWORD(lParam
);
1328 HWND control
= (HWND
)HIWORD(lParam
);
1330 MSWOnVScroll(code
, pos
, (WXHWND
) control
);
1334 case WM_CTLCOLORBTN
:
1336 int nCtlColor
= CTLCOLOR_BTN
;
1337 HWND control
= (HWND
)lParam
;
1338 HDC pDC
= (HDC
)wParam
;
1339 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1340 message
, wParam
, lParam
);
1343 case WM_CTLCOLORDLG
:
1345 int nCtlColor
= CTLCOLOR_DLG
;
1346 HWND control
= (HWND
)lParam
;
1347 HDC pDC
= (HDC
)wParam
;
1348 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1349 message
, wParam
, lParam
);\
1352 case WM_CTLCOLORLISTBOX
:
1354 int nCtlColor
= CTLCOLOR_LISTBOX
;
1355 HWND control
= (HWND
)lParam
;
1356 HDC pDC
= (HDC
)wParam
;
1357 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1358 message
, wParam
, lParam
);
1361 case WM_CTLCOLORMSGBOX
:
1363 int nCtlColor
= CTLCOLOR_MSGBOX
;
1364 HWND control
= (HWND
)lParam
;
1365 HDC pDC
= (HDC
)wParam
;
1366 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1367 message
, wParam
, lParam
);
1370 case WM_CTLCOLORSCROLLBAR
:
1372 int nCtlColor
= CTLCOLOR_SCROLLBAR
;
1373 HWND control
= (HWND
)lParam
;
1374 HDC pDC
= (HDC
)wParam
;
1375 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1376 message
, wParam
, lParam
);
1379 case WM_CTLCOLORSTATIC
:
1381 int nCtlColor
= CTLCOLOR_STATIC
;
1382 HWND control
= (HWND
)lParam
;
1383 HDC pDC
= (HDC
)wParam
;
1384 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1385 message
, wParam
, lParam
);
1388 case WM_CTLCOLOREDIT
:
1390 int nCtlColor
= CTLCOLOR_EDIT
;
1391 HWND control
= (HWND
)lParam
;
1392 HDC pDC
= (HDC
)wParam
;
1393 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1394 message
, wParam
, lParam
);
1400 HWND control
= (HWND
)LOWORD(lParam
);
1401 int nCtlColor
= (int)HIWORD(lParam
);
1402 HDC pDC
= (HDC
)wParam
;
1403 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1404 message
, wParam
, lParam
);
1408 case WM_SYSCOLORCHANGE
:
1410 // Return value of 0 means, we processed it.
1411 if (MSWOnColorChange((WXHWND
) hWnd
, message
, wParam
, lParam
) == 0)
1414 return MSWDefWindowProc(message
, wParam
, lParam
);
1417 case WM_PALETTECHANGED
:
1419 return MSWOnPaletteChanged((WXHWND
) (HWND
) wParam
);
1422 case WM_QUERYNEWPALETTE
:
1424 return MSWOnQueryNewPalette();
1429 // Prevents flicker when dragging
1430 if (IsIconic(hWnd
)) return 1;
1432 if (!MSWOnEraseBkgnd((WXHDC
) (HDC
)wParam
))
1433 return 0; // Default(); MSWDefWindowProc(message, wParam, lParam );
1437 case WM_MDIACTIVATE
:
1440 HWND hWndActivate
= GET_WM_MDIACTIVATE_HWNDACTIVATE(wParam
,lParam
);
1441 HWND hWndDeactivate
= GET_WM_MDIACTIVATE_HWNDDEACT(wParam
,lParam
);
1442 BOOL activate
= GET_WM_MDIACTIVATE_FACTIVATE(hWnd
,wParam
,lParam
);
1443 return MSWOnMDIActivate((long) activate
, (WXHWND
) hWndActivate
, (WXHWND
) hWndDeactivate
);
1445 return MSWOnMDIActivate((BOOL
)wParam
, (HWND
)LOWORD(lParam
),
1446 (HWND
)HIWORD(lParam
));
1451 MSWOnDropFiles(wParam
);
1456 return 0; // MSWOnInitDialog((WXHWND)(HWND)wParam);
1459 case WM_QUERYENDSESSION
:
1461 // Same as WM_CLOSE, but inverted results. Thx Microsoft :-)
1462 // return MSWOnClose();
1464 return MSWOnQueryEndSession(lParam
);
1469 // Same as WM_CLOSE, but inverted results. Thx Microsoft :-)
1470 MSWOnEndSession((wParam
!= 0), lParam
);
1483 case WM_GETMINMAXINFO
:
1485 MINMAXINFO
*info
= (MINMAXINFO
*)lParam
;
1486 if (m_minSizeX
!= -1)
1487 info
->ptMinTrackSize
.x
= (int)m_minSizeX
;
1488 if (m_minSizeY
!= -1)
1489 info
->ptMinTrackSize
.y
= (int)m_minSizeY
;
1490 if (m_maxSizeX
!= -1)
1491 info
->ptMaxTrackSize
.x
= (int)m_maxSizeX
;
1492 if (m_maxSizeY
!= -1)
1493 info
->ptMaxTrackSize
.y
= (int)m_maxSizeY
;
1494 return MSWDefWindowProc(message
, wParam
, lParam
);
1499 return MSWGetDlgCode();
1503 // don't set cursor for other windows, only for this one: this
1504 // prevents children of this window from gettign the same cursor
1505 // as the parent has (don't forget that this message is propagated
1506 // by default up the window parent-child hierarchy)
1507 if ( (HWND
)wParam
== hWnd
)
1509 // don't set cursor when the mouse is not in the client part
1510 short nHitTest
= LOWORD(lParam
);
1511 if ( nHitTest
== HTCLIENT
|| nHitTest
== HTERROR
)
1513 HCURSOR hcursor
= 0;
1516 // from msw\utils.cpp
1517 extern HCURSOR gs_wxBusyCursor
;
1519 hcursor
= gs_wxBusyCursor
;
1523 wxCursor
*cursor
= NULL
;
1525 if ( m_windowCursor
.Ok() )
1527 cursor
= &m_windowCursor
;
1531 // from msw\data.cpp
1532 extern wxCursor
*g_globalCursor
;
1534 if ( g_globalCursor
&& g_globalCursor
->Ok() )
1535 cursor
= g_globalCursor
;
1539 hcursor
= (HCURSOR
)cursor
->GetHCURSOR();
1544 ::SetCursor(hcursor
);
1546 // returning TRUE stops the DefWindowProc() from
1547 // further processing this message - exactly what we
1548 // need because we've just set the cursor.
1555 return MSWDefWindowProc(message
, wParam
, lParam
);
1558 return MSWDefWindowProc(message
, wParam
, lParam
);
1561 return 0; // Success: we processed this command.
1564 // Dialog window proc
1565 LONG APIENTRY _EXPORT
1566 wxDlgProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1571 wxList
*wxWinHandleList
= NULL
;
1572 wxWindow
*wxFindWinFromHandle(WXHWND hWnd
)
1574 wxNode
*node
= wxWinHandleList
->Find((long)hWnd
);
1577 return (wxWindow
*)node
->Data();
1580 void wxAssociateWinWithHandle(HWND hWnd
, wxWindow
*win
)
1582 // adding NULL hWnd is (first) surely a result of an error and
1583 // (secondly) breaks menu command processing
1584 wxCHECK_RET( hWnd
!= (HWND
) NULL
, "attempt to add a NULL hWnd to window list" );
1586 if ( !wxWinHandleList
->Find((long)hWnd
) )
1587 wxWinHandleList
->Append((long)hWnd
, win
);
1590 void wxRemoveHandleAssociation(wxWindow
*win
)
1592 wxWinHandleList
->DeleteObject(win
);
1595 // Default destroyer - override if you destroy it in some other way
1596 // (e.g. with MDI child windows)
1597 void wxWindow::MSWDestroyWindow()
1601 void wxWindow::MSWCreate(int id
, wxWindow
*parent
, const char *wclass
, wxWindow
*wx_win
, const char *title
,
1602 int x
, int y
, int width
, int height
,
1603 WXDWORD style
, const char *dialog_template
, WXDWORD extendedStyle
)
1605 bool is_dialog
= (dialog_template
!= NULL
);
1606 int x1
= CW_USEDEFAULT
;
1608 int width1
= CW_USEDEFAULT
;
1611 // Find parent's size, if it exists, to set up a possible default
1612 // panel size the size of the parent window
1616 // Was GetWindowRect: JACS 5/5/95
1617 ::GetClientRect((HWND
) parent
->GetHWND(), &parent_rect
);
1619 width1
= parent_rect
.right
- parent_rect
.left
;
1620 height1
= parent_rect
.bottom
- parent_rect
.top
;
1625 if (width
> -1) width1
= width
;
1626 if (height
> -1) height1
= height
;
1628 HWND hParent
= NULL
;
1630 hParent
= (HWND
) parent
->GetHWND();
1636 // MakeProcInstance doesn't seem to be needed in C7. Is it needed for
1637 // other compilers???
1638 // VZ: it's always needed for Win16 and never for Win32
1640 m_hWnd
= (WXHWND
) ::CreateDialog(wxGetInstance(), dialog_template
, hParent
,
1641 (DLGPROC
)wxDlgProc
);
1643 // N.B.: if we _don't_ use this form,
1644 // then with VC++ 1.5, it crashes horribly.
1646 m_hWnd
= (WXHWND
) ::CreateDialog(wxGetInstance(), dialog_template
, hParent
,
1647 (DLGPROC
)wxDlgProc
);
1649 // Crashes when we use this.
1650 DLGPROC dlgproc
= (DLGPROC
)MakeProcInstance((DLGPROC
)wxWndProc
, wxGetInstance());
1652 m_hWnd
= (WXHWND
) ::CreateDialog(wxGetInstance(), dialog_template
, hParent
,
1658 MessageBox(NULL
, "Can't find dummy dialog template!\nCheck resource include path for finding wx.rc.",
1659 "wxWindows Error", MB_ICONEXCLAMATION
| MB_OK
);
1660 else MoveWindow((HWND
) m_hWnd
, x1
, y1
, width1
, height1
, FALSE
);
1665 if (style
& WS_CHILD
)
1670 m_hWnd
= (WXHWND
)CreateWindowEx(extendedStyle
, wclass
,
1675 hParent
, (HMENU
)controlId
, wxGetInstance(),
1679 wxLogError("Can't create window of class %s!\n"
1680 "Possible Windows 3.x compatibility problem?", wclass
);
1685 wxWinHandleList
->Append((long)m_hWnd
, this);
1688 void wxWindow::MSWOnCreate(WXLPCREATESTRUCT
WXUNUSED(cs
))
1692 bool wxWindow::MSWOnClose()
1697 // Some compilers don't define this
1698 #ifndef ENDSESSION_LOGOFF
1699 #define ENDSESSION_LOGOFF 0x80000000
1702 // Return TRUE to end session, FALSE to veto end session.
1703 bool wxWindow::MSWOnQueryEndSession(long logOff
)
1705 wxCloseEvent
event(wxEVT_QUERY_END_SESSION
, -1);
1706 event
.SetEventObject(wxTheApp
);
1707 event
.SetCanVeto(TRUE
);
1708 event
.SetLoggingOff( (logOff
== ENDSESSION_LOGOFF
) );
1709 if ((this == wxTheApp
->GetTopWindow()) && // Only send once
1710 wxTheApp
->ProcessEvent(event
) && event
.GetVeto())
1712 return FALSE
; // Veto!
1716 return TRUE
; // Don't veto
1720 bool wxWindow::MSWOnEndSession(bool endSession
, long logOff
)
1722 wxCloseEvent
event(wxEVT_END_SESSION
, -1);
1723 event
.SetEventObject(wxTheApp
);
1724 event
.SetCanVeto(FALSE
);
1725 event
.SetLoggingOff( (logOff
== ENDSESSION_LOGOFF
) );
1726 if (endSession
&& // No need to send if the session isn't ending
1727 (this == wxTheApp
->GetTopWindow()) && // Only send once
1728 wxTheApp
->ProcessEvent(event
))
1734 bool wxWindow::MSWOnDestroy()
1736 // delete our drop target if we've got one
1737 #if wxUSE_DRAG_AND_DROP
1738 if ( m_pDropTarget
!= NULL
) {
1739 m_pDropTarget
->Revoke(m_hWnd
);
1741 delete m_pDropTarget
;
1742 m_pDropTarget
= NULL
;
1749 // Deal with child commands from buttons etc.
1751 long wxWindow::MSWOnNotify(WXWPARAM wParam
, WXLPARAM lParam
)
1753 #if defined(__WIN95__)
1754 // Find a child window to send the notification to, e.g. a toolbar.
1755 // There's a problem here. NMHDR::hwndFrom doesn't give us the
1756 // handle of the toolbar; it's probably the handle of the tooltip
1757 // window (anyway, it's parent is also the toolbar's parent).
1758 // So, since we don't know which hWnd or wxWindow originated the
1759 // WM_NOTIFY, we'll need to go through all the children of this window
1760 // trying out MSWNotify.
1761 // This won't work now, though, because any number of controls
1762 // could respond to the same generic messages :-(
1764 /* This doesn't work for toolbars, but try for other controls first.
1766 NMHDR
*hdr
= (NMHDR
*)lParam
;
1767 HWND hWnd
= (HWND
)hdr
->hwndFrom
;
1768 wxWindow
*win
= wxFindWinFromHandle((WXHWND
) hWnd
);
1770 WXLPARAM result
= 0;
1774 if ( win
->MSWNotify(wParam
, lParam
, &result
) )
1779 // Rely on MSWNotify to check whether the message
1780 // belongs to the window or not
1781 wxNode
*node
= GetChildren().First();
1784 wxWindow
*child
= (wxWindow
*)node
->Data();
1785 if ( child
->MSWNotify(wParam
, lParam
, &result
) )
1787 node
= node
->Next();
1790 // finally try this window too (catches toolbar case)
1791 if ( MSWNotify(wParam
, lParam
, &result
) )
1800 void wxWindow::MSWOnMenuHighlight(WXWORD
WXUNUSED(item
), WXWORD
WXUNUSED(flags
), WXHMENU
WXUNUSED(sysmenu
))
1804 void wxWindow::MSWOnInitMenuPopup(WXHMENU menu
, int pos
, bool isSystem
)
1808 bool wxWindow::MSWOnActivate(int state
, bool WXUNUSED(minimized
), WXHWND
WXUNUSED(activate
))
1810 wxActivateEvent
event(wxEVT_ACTIVATE
, ((state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
)),
1812 event
.SetEventObject(this);
1813 GetEventHandler()->ProcessEvent(event
);
1817 bool wxWindow::MSWOnSetFocus(WXHWND
WXUNUSED(hwnd
))
1820 if (m_caretEnabled
&& (m_caretWidth
> 0) && (m_caretHeight
> 0))
1822 ::CreateCaret((HWND
) GetHWND(), NULL
, m_caretWidth
, m_caretHeight
);
1824 ::ShowCaret((HWND
) GetHWND());
1827 // panel wants to track the window which was the last to have focus in it
1828 wxWindow
*parent
= GetParent();
1829 if ( parent
&& parent
->IsKindOf(CLASSINFO(wxPanel
)) )
1831 ((wxPanel
*)parent
)->SetLastFocus(GetId());
1834 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
1835 event
.SetEventObject(this);
1836 if (!GetEventHandler()->ProcessEvent(event
))
1841 bool wxWindow::MSWOnKillFocus(WXHWND
WXUNUSED(hwnd
))
1849 wxFocusEvent
event(wxEVT_KILL_FOCUS
, m_windowId
);
1850 event
.SetEventObject(this);
1851 if (!GetEventHandler()->ProcessEvent(event
))
1856 void wxWindow::MSWOnDropFiles(WXWPARAM wParam
)
1859 HDROP hFilesInfo
= (HDROP
) wParam
;
1861 DragQueryPoint(hFilesInfo
, (LPPOINT
) &dropPoint
);
1863 // Get the total number of files dropped
1864 WORD gwFilesDropped
= (WORD
)DragQueryFile ((HDROP
)hFilesInfo
,
1869 wxString
*files
= new wxString
[gwFilesDropped
];
1871 for (wIndex
=0; wIndex
< (int)gwFilesDropped
; wIndex
++)
1873 DragQueryFile (hFilesInfo
, wIndex
, (LPSTR
) wxBuffer
, 1000);
1874 files
[wIndex
] = wxBuffer
;
1876 DragFinish (hFilesInfo
);
1878 wxDropFilesEvent
event(wxEVT_DROP_FILES
, gwFilesDropped
, files
);
1879 event
.m_eventObject
= this;
1880 event
.m_pos
.x
= dropPoint
.x
; event
.m_pos
.x
= dropPoint
.y
;
1882 if (!GetEventHandler()->ProcessEvent(event
))
1888 bool wxWindow::MSWOnDrawItem(int id
, WXDRAWITEMSTRUCT
*itemStruct
)
1890 #if wxUSE_OWNER_DRAWN
1891 if ( id
== 0 ) { // is it a menu item?
1892 DRAWITEMSTRUCT
*pDrawStruct
= (DRAWITEMSTRUCT
*)itemStruct
;
1893 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pDrawStruct
->itemData
);
1894 wxCHECK( pMenuItem
->IsKindOf(CLASSINFO(wxMenuItem
)), FALSE
);
1896 // prepare to call OnDrawItem()
1898 dc
.SetHDC((WXHDC
)pDrawStruct
->hDC
, FALSE
);
1899 wxRect
rect(pDrawStruct
->rcItem
.left
, pDrawStruct
->rcItem
.top
,
1900 pDrawStruct
->rcItem
.right
- pDrawStruct
->rcItem
.left
,
1901 pDrawStruct
->rcItem
.bottom
- pDrawStruct
->rcItem
.top
);
1902 return pMenuItem
->OnDrawItem(
1904 (wxOwnerDrawn::wxODAction
)pDrawStruct
->itemAction
,
1905 (wxOwnerDrawn::wxODStatus
)pDrawStruct
->itemState
1908 #endif // owner-drawn menus
1910 wxWindow
*item
= FindItem(id
);
1911 #if wxUSE_DYNAMIC_CLASSES
1912 if (item
&& item
->IsKindOf(CLASSINFO(wxControl
)))
1914 return ((wxControl
*)item
)->MSWOnDraw(itemStruct
);
1921 bool wxWindow::MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*itemStruct
)
1923 #if wxUSE_OWNER_DRAWN
1924 if ( id
== 0 ) { // is it a menu item?
1925 MEASUREITEMSTRUCT
*pMeasureStruct
= (MEASUREITEMSTRUCT
*)itemStruct
;
1926 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pMeasureStruct
->itemData
);
1927 wxCHECK( pMenuItem
->IsKindOf(CLASSINFO(wxMenuItem
)), FALSE
);
1929 return pMenuItem
->OnMeasureItem(&pMeasureStruct
->itemWidth
,
1930 &pMeasureStruct
->itemHeight
);
1932 #endif // owner-drawn menus
1934 wxWindow
*item
= FindItem(id
);
1935 #if wxUSE_DYNAMIC_CLASSES
1936 if (item
&& item
->IsKindOf(CLASSINFO(wxControl
)))
1938 return ((wxControl
*)item
)->MSWOnMeasure(itemStruct
);
1945 WXHBRUSH
wxWindow::MSWOnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
1946 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1948 if (nCtlColor
== CTLCOLOR_DLG
)
1950 return OnCtlColor(pDC
, pWnd
, nCtlColor
, message
, wParam
, lParam
);
1953 wxControl
*item
= (wxControl
*)FindItemByHWND(pWnd
, TRUE
);
1955 WXHBRUSH hBrush
= 0;
1958 hBrush
= item
->OnCtlColor(pDC
, pWnd
, nCtlColor
, message
, wParam
, lParam
);
1960 // I think that even for dialogs, we may need to call DefWindowProc (?)
1961 // Or maybe just rely on the usual default behaviour.
1963 hBrush
= (WXHBRUSH
) MSWDefWindowProc(message
, wParam
, lParam
);
1968 // Define for each class of dialog and control
1969 WXHBRUSH
wxWindow::OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
1970 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1972 return (WXHBRUSH
) MSWDefWindowProc(message
, wParam
, lParam
);
1975 bool wxWindow::MSWOnColorChange(WXHWND hWnd
, WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1977 wxSysColourChangedEvent event
;
1978 event
.SetEventObject(this);
1980 // Check if app handles this.
1981 if (GetEventHandler()->ProcessEvent(event
))
1984 // We didn't process it
1988 long wxWindow::MSWOnPaletteChanged(WXHWND hWndPalChange
)
1990 wxPaletteChangedEvent
event(GetId());
1991 event
.SetEventObject(this);
1992 event
.SetChangedWindow(wxFindWinFromHandle(hWndPalChange
));
1993 GetEventHandler()->ProcessEvent(event
);
1997 long wxWindow::MSWOnQueryNewPalette()
1999 wxQueryNewPaletteEvent
event(GetId());
2000 event
.SetEventObject(this);
2001 if (!GetEventHandler()->ProcessEvent(event
) || !event
.GetPaletteRealized())
2003 return (long) FALSE
;
2009 // Responds to colour changes: passes event on to children.
2010 void wxWindow::OnSysColourChanged(wxSysColourChangedEvent
& event
)
2012 wxNode
*node
= GetChildren().First();
2015 // Only propagate to non-top-level windows
2016 wxWindow
*win
= (wxWindow
*)node
->Data();
2017 if ( win
->GetParent() )
2019 wxSysColourChangedEvent event2
;
2020 event
.m_eventObject
= win
;
2021 win
->GetEventHandler()->ProcessEvent(event2
);
2024 node
= node
->Next();
2028 long wxWindow::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
2031 return ::CallWindowProc(CASTWNDPROC m_oldWndProc
, (HWND
) GetHWND(), (UINT
) nMsg
, (WPARAM
) wParam
, (LPARAM
) lParam
);
2033 return ::DefWindowProc((HWND
) GetHWND(), nMsg
, wParam
, lParam
);
2036 long wxWindow::Default()
2038 // Ignore 'fake' events (perhaps generated as a result of a separate real event)
2043 wxLogTrace(wxTraceMessages
, "Forwarding %s to DefWindowProc.",
2044 wxGetMessageName(m_lastMsg
));
2045 #endif // __WXDEBUG__
2047 return this->MSWDefWindowProc(m_lastMsg
, m_lastWParam
, m_lastLParam
);
2050 bool wxWindow::MSWProcessMessage(WXMSG
* pMsg
)
2052 if ( m_hWnd
!= 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL
) ) {
2053 // intercept dialog navigation keys
2054 MSG
*msg
= (MSG
*)pMsg
;
2055 bool bProcess
= TRUE
;
2056 if ( msg
->message
!= WM_KEYDOWN
)
2059 if ( bProcess
&& (HIWORD(msg
->lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
2064 bool bCtrlDown
= (::GetKeyState(VK_CONTROL
) & 0x100) != 0;
2066 // WM_GETDLGCODE: ask the control if it wants the key for itself,
2067 // don't process it if it's the case (except for Ctrl-Tab/Enter
2068 // combinations which are always processed)
2072 lDlgCode
= ::SendMessage(msg
->hwnd
, WM_GETDLGCODE
, 0, 0);
2075 bool bForward
= TRUE
,
2076 bWindowChange
= FALSE
;
2078 switch ( msg
->wParam
)
2081 if ( lDlgCode
& DLGC_WANTTAB
) {
2085 // Ctrl-Tab cycles thru notebook pages
2086 bWindowChange
= bCtrlDown
;
2087 bForward
= !(::GetKeyState(VK_SHIFT
) & 0x100);
2093 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2101 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2107 if ( lDlgCode
& DLGC_WANTMESSAGE
)
2109 // control wants to process Enter itself, don't
2110 // call IsDialogMessage() which would interpret
2115 wxButton
*btnDefault
= GetDefaultItem();
2116 if ( btnDefault
&& !bCtrlDown
)
2118 // if there is a default button, Enter should
2120 (void)::SendMessage((HWND
)btnDefault
->GetHWND(),
2124 // else: but if there is not it makes sense to make it
2125 // work like a TAB - and that's what we do.
2126 // Note that Ctrl-Enter always works this way.
2137 wxNavigationKeyEvent event
;
2138 event
.SetDirection(bForward
);
2139 event
.SetWindowChange(bWindowChange
);
2140 event
.SetEventObject(this);
2142 if ( GetEventHandler()->ProcessEvent(event
) )
2147 if ( ::IsDialogMessage((HWND
)GetHWND(), msg
) )
2153 // relay mouse move events to the tooltip control
2154 MSG
*msg
= (MSG
*)pMsg
;
2155 if ( msg
->message
== WM_MOUSEMOVE
)
2156 m_tooltip
->RelayEvent(pMsg
);
2158 #endif // wxUSE_TOOLTIPS
2163 bool wxWindow::MSWTranslateMessage(WXMSG
* pMsg
)
2165 if (m_acceleratorTable
.Ok() &&
2166 ::TranslateAccelerator((HWND
) GetHWND(), (HACCEL
) m_acceleratorTable
.GetHACCEL(), (MSG
*)pMsg
))
2172 long wxWindow::MSWOnMDIActivate(long WXUNUSED(flag
), WXHWND
WXUNUSED(activate
), WXHWND
WXUNUSED(deactivate
))
2177 void wxWindow::MSWDetachWindowMenu()
2181 int N
= GetMenuItemCount((HMENU
) m_hMenu
);
2183 for (i
= 0; i
< N
; i
++)
2186 int chars
= GetMenuString((HMENU
) m_hMenu
, i
, buf
, 100, MF_BYPOSITION
);
2187 if ((chars
> 0) && (strcmp(buf
, "&Window") == 0))
2189 RemoveMenu((HMENU
) m_hMenu
, i
, MF_BYPOSITION
);
2196 bool wxWindow::MSWOnPaint()
2199 HRGN hRegion
= ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
2200 ::GetUpdateRgn((HWND
) GetHWND(), hRegion
, FALSE
);
2202 m_updateRegion
= wxRegion((WXHRGN
) hRegion
);
2205 ::GetUpdateRect((HWND
) GetHWND(), & updateRect
, FALSE
);
2207 m_updateRegion
= wxRegion(updateRect
.left
, updateRect
.top
,
2208 updateRect
.right
- updateRect
.left
, updateRect
.bottom
- updateRect
.top
);
2211 wxPaintEvent
event(m_windowId
);
2212 event
.SetEventObject(this);
2213 if (!GetEventHandler()->ProcessEvent(event
))
2218 void wxWindow::MSWOnSize(int w
, int h
, WXUINT
WXUNUSED(flag
))
2228 wxSizeEvent
event(wxSize(w
, h
), m_windowId
);
2229 event
.SetEventObject(this);
2230 if (!GetEventHandler()->ProcessEvent(event
))
2236 void wxWindow::MSWOnWindowPosChanging(void *WXUNUSED(lpPos
))
2241 // Deal with child commands from buttons etc.
2242 bool wxWindow::MSWOnCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
2244 if (wxCurrentPopupMenu
)
2246 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
2247 wxCurrentPopupMenu
= NULL
;
2248 bool succ
= popupMenu
->MSWCommand(cmd
, id
);
2252 wxWindow
*item
= FindItem(id
);
2255 bool value
= item
->MSWCommand(cmd
, id
);
2260 wxWindow
*win
= wxFindWinFromHandle(control
);
2262 return win
->MSWCommand(cmd
, id
);
2267 long wxWindow::MSWOnSysCommand(WXWPARAM wParam
, WXLPARAM lParam
)
2269 switch (wParam
& 0xFFFFFFF0)
2273 wxMaximizeEvent
event(m_windowId
);
2274 event
.SetEventObject(this);
2275 if (!GetEventHandler()->ProcessEvent(event
))
2283 wxIconizeEvent
event(m_windowId
);
2284 event
.SetEventObject(this);
2285 if (!GetEventHandler()->ProcessEvent(event
))
2297 void wxWindow::MSWOnLButtonDown(int x
, int y
, WXUINT flags
)
2299 wxMouseEvent
event(wxEVT_LEFT_DOWN
);
2301 event
.m_x
= x
; event
.m_y
= y
;
2302 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2303 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2304 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2305 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2306 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2307 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2308 event
.m_eventObject
= this;
2310 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_LEFT_DOWN
;
2312 if (!GetEventHandler()->ProcessEvent(event
))
2316 void wxWindow::MSWOnLButtonUp(int x
, int y
, WXUINT flags
)
2318 wxMouseEvent
event(wxEVT_LEFT_UP
);
2320 event
.m_x
= x
; event
.m_y
= y
;
2321 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2322 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2323 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2324 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2325 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2326 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2327 event
.m_eventObject
= this;
2329 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_LEFT_UP
;
2331 if (!GetEventHandler()->ProcessEvent(event
))
2335 void wxWindow::MSWOnLButtonDClick(int x
, int y
, WXUINT flags
)
2337 wxMouseEvent
event(wxEVT_LEFT_DCLICK
);
2339 event
.m_x
= x
; event
.m_y
= y
;
2340 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2341 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2342 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2343 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2344 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2345 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2346 event
.m_eventObject
= this;
2348 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_LEFT_DCLICK
;
2350 if (!GetEventHandler()->ProcessEvent(event
))
2354 void wxWindow::MSWOnMButtonDown(int x
, int y
, WXUINT flags
)
2356 wxMouseEvent
event(wxEVT_MIDDLE_DOWN
);
2358 event
.m_x
= x
; event
.m_y
= y
;
2359 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2360 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2361 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2362 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2363 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2364 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2365 event
.m_eventObject
= this;
2367 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_MIDDLE_DOWN
;
2369 if (!GetEventHandler()->ProcessEvent(event
))
2373 void wxWindow::MSWOnMButtonUp(int x
, int y
, WXUINT flags
)
2375 wxMouseEvent
event(wxEVT_MIDDLE_UP
);
2377 event
.m_x
= x
; event
.m_y
= y
;
2378 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2379 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2380 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2381 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2382 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2383 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2384 event
.m_eventObject
= this;
2386 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_MIDDLE_UP
;
2388 if (!GetEventHandler()->ProcessEvent(event
))
2392 void wxWindow::MSWOnMButtonDClick(int x
, int y
, WXUINT flags
)
2394 wxMouseEvent
event(wxEVT_MIDDLE_DCLICK
);
2396 event
.m_x
= x
; event
.m_y
= y
;
2397 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2398 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2399 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2400 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2401 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2402 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2403 event
.m_eventObject
= this;
2405 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_MIDDLE_DCLICK
;
2407 if (!GetEventHandler()->ProcessEvent(event
))
2411 void wxWindow::MSWOnRButtonDown(int x
, int y
, WXUINT flags
)
2413 wxMouseEvent
event(wxEVT_RIGHT_DOWN
);
2415 event
.m_x
= x
; event
.m_y
= y
;
2416 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2417 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2418 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2419 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2420 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2421 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2422 event
.m_eventObject
= this;
2424 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_RIGHT_DOWN
;
2426 if (!GetEventHandler()->ProcessEvent(event
))
2430 void wxWindow::MSWOnRButtonUp(int x
, int y
, WXUINT flags
)
2432 wxMouseEvent
event(wxEVT_RIGHT_UP
);
2434 event
.m_x
= x
; event
.m_y
= y
;
2435 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2436 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2437 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2438 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2439 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2440 event
.m_eventObject
= this;
2441 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2443 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_RIGHT_UP
;
2445 if (!GetEventHandler()->ProcessEvent(event
))
2449 void wxWindow::MSWOnRButtonDClick(int x
, int y
, WXUINT flags
)
2451 wxMouseEvent
event(wxEVT_RIGHT_DCLICK
);
2453 event
.m_x
= x
; event
.m_y
= y
;
2454 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2455 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2456 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2457 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2458 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2459 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2460 event
.m_eventObject
= this;
2462 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_RIGHT_DCLICK
;
2464 if (!GetEventHandler()->ProcessEvent(event
))
2468 void wxWindow::MSWOnMouseMove(int x
, int y
, WXUINT flags
)
2470 // 'normal' move event...
2472 if (!m_mouseInWindow
)
2474 // Generate an ENTER event
2475 m_mouseInWindow
= TRUE
;
2476 MSWOnMouseEnter(x
, y
, flags
);
2479 wxMouseEvent
event(wxEVT_MOTION
);
2481 event
.m_x
= x
; event
.m_y
= y
;
2482 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2483 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2484 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2485 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2486 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2487 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2488 event
.m_eventObject
= this;
2490 // Window gets a click down message followed by a mouse move
2491 // message even if position isn't changed! We want to discard
2492 // the trailing move event if x and y are the same.
2493 if ((m_lastEvent
== wxEVT_RIGHT_DOWN
|| m_lastEvent
== wxEVT_LEFT_DOWN
||
2494 m_lastEvent
== wxEVT_MIDDLE_DOWN
) &&
2495 (m_lastXPos
== event
.m_x
&& m_lastYPos
== event
.m_y
))
2497 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2498 m_lastEvent
= wxEVT_MOTION
;
2502 m_lastEvent
= wxEVT_MOTION
;
2503 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2505 if (!GetEventHandler()->ProcessEvent(event
))
2509 void wxWindow::MSWOnMouseEnter(int x
, int y
, WXUINT flags
)
2511 wxMouseEvent
event(wxEVT_ENTER_WINDOW
);
2513 event
.m_x
= x
; event
.m_y
= y
;
2514 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2515 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2516 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2517 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2518 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2519 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2520 event
.m_eventObject
= this;
2522 m_lastEvent
= wxEVT_ENTER_WINDOW
;
2523 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2524 // No message - ensure we don't try to call the default behaviour accidentally.
2526 GetEventHandler()->ProcessEvent(event
);
2529 void wxWindow::MSWOnMouseLeave(int x
, int y
, WXUINT flags
)
2531 wxMouseEvent
event(wxEVT_LEAVE_WINDOW
);
2533 event
.m_x
= x
; event
.m_y
= y
;
2534 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2535 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2536 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2537 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2538 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2539 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2540 event
.m_eventObject
= this;
2542 m_lastEvent
= wxEVT_LEAVE_WINDOW
;
2543 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2544 // No message - ensure we don't try to call the default behaviour accidentally.
2546 GetEventHandler()->ProcessEvent(event
);
2549 bool wxWindow::MSWOnChar(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
)
2552 bool tempControlDown
= FALSE
;
2555 // If 1 -> 26, translate to CTRL plus a letter.
2557 if ((id
> 0) && (id
< 27))
2578 tempControlDown
= TRUE
;
2584 else if ((id
= wxCharCodeMSWToWX(wParam
)) == 0) {
2585 // it's ASCII and will be processed here only when called from
2586 // WM_CHAR (i.e. when isASCII = TRUE)
2592 wxKeyEvent
event(wxEVT_CHAR
);
2593 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
2594 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
2595 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
2596 event
.m_altDown
= TRUE
;
2598 event
.m_eventObject
= this;
2599 event
.m_keyCode
= id
;
2600 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2605 GetWindowRect((HWND
) GetHWND(),&rect
) ;
2609 event
.m_x
= pt
.x
; event
.m_y
= pt
.y
;
2611 if (GetEventHandler()->ProcessEvent(event
))
2620 bool wxWindow::MSWOnKeyDown(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
)
2624 if ((id
= wxCharCodeMSWToWX(wParam
)) == 0) {
2630 wxKeyEvent
event(wxEVT_KEY_DOWN
);
2631 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
2632 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
2633 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
2634 event
.m_altDown
= TRUE
;
2636 event
.m_eventObject
= this;
2637 event
.m_keyCode
= id
;
2638 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2643 GetWindowRect((HWND
) GetHWND(),&rect
) ;
2647 event
.m_x
= pt
.x
; event
.m_y
= pt
.y
;
2649 if (GetEventHandler()->ProcessEvent(event
))
2661 bool wxWindow::MSWOnKeyUp(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
)
2665 if ((id
= wxCharCodeMSWToWX(wParam
)) == 0) {
2671 wxKeyEvent
event(wxEVT_KEY_UP
);
2672 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
2673 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
2674 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
2675 event
.m_altDown
= TRUE
;
2677 event
.m_eventObject
= this;
2678 event
.m_keyCode
= id
;
2679 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2684 GetWindowRect((HWND
) GetHWND(),&rect
) ;
2688 event
.m_x
= pt
.x
; event
.m_y
= pt
.y
;
2690 if (GetEventHandler()->ProcessEvent(event
))
2699 void wxWindow::MSWOnJoyDown(int joystick
, int x
, int y
, WXUINT flags
)
2703 if (flags
& JOY_BUTTON1CHG
)
2704 change
= wxJOY_BUTTON1
;
2705 if (flags
& JOY_BUTTON2CHG
)
2706 change
= wxJOY_BUTTON2
;
2707 if (flags
& JOY_BUTTON3CHG
)
2708 change
= wxJOY_BUTTON3
;
2709 if (flags
& JOY_BUTTON4CHG
)
2710 change
= wxJOY_BUTTON4
;
2712 if (flags
& JOY_BUTTON1
)
2713 buttons
|= wxJOY_BUTTON1
;
2714 if (flags
& JOY_BUTTON2
)
2715 buttons
|= wxJOY_BUTTON2
;
2716 if (flags
& JOY_BUTTON3
)
2717 buttons
|= wxJOY_BUTTON3
;
2718 if (flags
& JOY_BUTTON4
)
2719 buttons
|= wxJOY_BUTTON4
;
2721 wxJoystickEvent
event(wxEVT_JOY_BUTTON_DOWN
, buttons
, joystick
, change
);
2722 event
.SetPosition(wxPoint(x
, y
));
2723 event
.SetEventObject(this);
2725 GetEventHandler()->ProcessEvent(event
);
2728 void wxWindow::MSWOnJoyUp(int joystick
, int x
, int y
, WXUINT flags
)
2732 if (flags
& JOY_BUTTON1CHG
)
2733 change
= wxJOY_BUTTON1
;
2734 if (flags
& JOY_BUTTON2CHG
)
2735 change
= wxJOY_BUTTON2
;
2736 if (flags
& JOY_BUTTON3CHG
)
2737 change
= wxJOY_BUTTON3
;
2738 if (flags
& JOY_BUTTON4CHG
)
2739 change
= wxJOY_BUTTON4
;
2741 if (flags
& JOY_BUTTON1
)
2742 buttons
|= wxJOY_BUTTON1
;
2743 if (flags
& JOY_BUTTON2
)
2744 buttons
|= wxJOY_BUTTON2
;
2745 if (flags
& JOY_BUTTON3
)
2746 buttons
|= wxJOY_BUTTON3
;
2747 if (flags
& JOY_BUTTON4
)
2748 buttons
|= wxJOY_BUTTON4
;
2750 wxJoystickEvent
event(wxEVT_JOY_BUTTON_UP
, buttons
, joystick
, change
);
2751 event
.SetPosition(wxPoint(x
, y
));
2752 event
.SetEventObject(this);
2754 GetEventHandler()->ProcessEvent(event
);
2757 void wxWindow::MSWOnJoyMove(int joystick
, int x
, int y
, WXUINT flags
)
2760 if (flags
& JOY_BUTTON1
)
2761 buttons
|= wxJOY_BUTTON1
;
2762 if (flags
& JOY_BUTTON2
)
2763 buttons
|= wxJOY_BUTTON2
;
2764 if (flags
& JOY_BUTTON3
)
2765 buttons
|= wxJOY_BUTTON3
;
2766 if (flags
& JOY_BUTTON4
)
2767 buttons
|= wxJOY_BUTTON4
;
2769 wxJoystickEvent
event(wxEVT_JOY_MOVE
, buttons
, joystick
, 0);
2770 event
.SetPosition(wxPoint(x
, y
));
2771 event
.SetEventObject(this);
2773 GetEventHandler()->ProcessEvent(event
);
2776 void wxWindow::MSWOnJoyZMove(int joystick
, int z
, WXUINT flags
)
2779 if (flags
& JOY_BUTTON1
)
2780 buttons
|= wxJOY_BUTTON1
;
2781 if (flags
& JOY_BUTTON2
)
2782 buttons
|= wxJOY_BUTTON2
;
2783 if (flags
& JOY_BUTTON3
)
2784 buttons
|= wxJOY_BUTTON3
;
2785 if (flags
& JOY_BUTTON4
)
2786 buttons
|= wxJOY_BUTTON4
;
2788 wxJoystickEvent
event(wxEVT_JOY_ZMOVE
, buttons
, joystick
, 0);
2789 event
.SetZPosition(z
);
2790 event
.SetEventObject(this);
2792 GetEventHandler()->ProcessEvent(event
);
2795 void wxWindow::MSWOnVScroll(WXWORD wParam
, WXWORD pos
, WXHWND control
)
2799 wxWindow
*child
= wxFindWinFromHandle(control
);
2801 child
->MSWOnVScroll(wParam
, pos
, control
);
2805 wxScrollEvent event
;
2806 event
.SetPosition(pos
);
2807 event
.SetOrientation(wxVERTICAL
);
2808 event
.m_eventObject
= this;
2813 event
.m_eventType
= wxEVT_SCROLL_TOP
;
2817 event
.m_eventType
= wxEVT_SCROLL_BOTTOM
;
2821 event
.m_eventType
= wxEVT_SCROLL_LINEUP
;
2825 event
.m_eventType
= wxEVT_SCROLL_LINEDOWN
;
2829 event
.m_eventType
= wxEVT_SCROLL_PAGEUP
;
2833 event
.m_eventType
= wxEVT_SCROLL_PAGEDOWN
;
2837 case SB_THUMBPOSITION
:
2838 event
.m_eventType
= wxEVT_SCROLL_THUMBTRACK
;
2846 if (!GetEventHandler()->ProcessEvent(event
))
2850 void wxWindow::MSWOnHScroll( WXWORD wParam
, WXWORD pos
, WXHWND control
)
2854 wxWindow
*child
= wxFindWinFromHandle(control
);
2856 child
->MSWOnHScroll(wParam
, pos
, control
);
2862 wxScrollEvent event
;
2863 event
.SetPosition(pos
);
2864 event
.SetOrientation(wxHORIZONTAL
);
2865 event
.m_eventObject
= this;
2870 event
.m_eventType
= wxEVT_SCROLL_TOP
;
2874 event
.m_eventType
= wxEVT_SCROLL_BOTTOM
;
2878 event
.m_eventType
= wxEVT_SCROLL_LINEUP
;
2882 event
.m_eventType
= wxEVT_SCROLL_LINEDOWN
;
2886 event
.m_eventType
= wxEVT_SCROLL_PAGEUP
;
2890 event
.m_eventType
= wxEVT_SCROLL_PAGEDOWN
;
2894 case SB_THUMBPOSITION
:
2895 event
.m_eventType
= wxEVT_SCROLL_THUMBTRACK
;
2902 if ( GetEventHandler()->ProcessEvent(event
) )
2906 // call the default WM_HSCROLL handler: it's non trivial in some common
2907 // controls (up-down control for example)
2911 void wxWindow::MSWOnShow(bool show
, int status
)
2913 wxShowEvent
event(GetId(), show
);
2914 event
.m_eventObject
= this;
2915 GetEventHandler()->ProcessEvent(event
);
2918 bool wxWindow::MSWOnInitDialog(WXHWND
WXUNUSED(hWndFocus
))
2920 wxInitDialogEvent
event(GetId());
2921 event
.m_eventObject
= this;
2922 GetEventHandler()->ProcessEvent(event
);
2926 void wxWindow::InitDialog()
2928 wxInitDialogEvent
event(GetId());
2929 event
.SetEventObject( this );
2930 GetEventHandler()->ProcessEvent(event
);
2933 // Default init dialog behaviour is to transfer data to window
2934 void wxWindow::OnInitDialog(wxInitDialogEvent
& event
)
2936 TransferDataToWindow();
2939 void wxGetCharSize(WXHWND wnd
, int *x
, int *y
,wxFont
*the_font
)
2942 HDC dc
= ::GetDC((HWND
) wnd
);
2947 // the_font->UseResource();
2948 // the_font->RealizeResource();
2949 fnt
= (HFONT
)the_font
->GetResourceHandle();
2951 was
= (HFONT
) SelectObject(dc
,fnt
) ;
2953 GetTextMetrics(dc
, &tm
);
2954 if (the_font
&& fnt
&& was
)
2956 SelectObject(dc
,was
) ;
2958 ReleaseDC((HWND
)wnd
, dc
);
2959 *x
= tm
.tmAveCharWidth
;
2960 *y
= tm
.tmHeight
+ tm
.tmExternalLeading
;
2963 // the_font->ReleaseResource();
2966 // Returns 0 if was a normal ASCII value, not a special key. This indicates that
2967 // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
2968 int wxCharCodeMSWToWX(int keySym
)
2973 case VK_CANCEL
: id
= WXK_CANCEL
; break;
2974 case VK_BACK
: id
= WXK_BACK
; break;
2975 case VK_TAB
: id
= WXK_TAB
; break;
2976 case VK_CLEAR
: id
= WXK_CLEAR
; break;
2977 case VK_RETURN
: id
= WXK_RETURN
; break;
2978 case VK_SHIFT
: id
= WXK_SHIFT
; break;
2979 case VK_CONTROL
: id
= WXK_CONTROL
; break;
2980 case VK_MENU
: id
= WXK_MENU
; break;
2981 case VK_PAUSE
: id
= WXK_PAUSE
; break;
2982 case VK_SPACE
: id
= WXK_SPACE
; break;
2983 case VK_ESCAPE
: id
= WXK_ESCAPE
; break;
2984 case VK_PRIOR
: id
= WXK_PRIOR
; break;
2985 case VK_NEXT
: id
= WXK_NEXT
; break;
2986 case VK_END
: id
= WXK_END
; break;
2987 case VK_HOME
: id
= WXK_HOME
; break;
2988 case VK_LEFT
: id
= WXK_LEFT
; break;
2989 case VK_UP
: id
= WXK_UP
; break;
2990 case VK_RIGHT
: id
= WXK_RIGHT
; break;
2991 case VK_DOWN
: id
= WXK_DOWN
; break;
2992 case VK_SELECT
: id
= WXK_SELECT
; break;
2993 case VK_PRINT
: id
= WXK_PRINT
; break;
2994 case VK_EXECUTE
: id
= WXK_EXECUTE
; break;
2995 case VK_INSERT
: id
= WXK_INSERT
; break;
2996 case VK_DELETE
: id
= WXK_DELETE
; break;
2997 case VK_HELP
: id
= WXK_HELP
; break;
2998 case VK_NUMPAD0
: id
= WXK_NUMPAD0
; break;
2999 case VK_NUMPAD1
: id
= WXK_NUMPAD1
; break;
3000 case VK_NUMPAD2
: id
= WXK_NUMPAD2
; break;
3001 case VK_NUMPAD3
: id
= WXK_NUMPAD3
; break;
3002 case VK_NUMPAD4
: id
= WXK_NUMPAD4
; break;
3003 case VK_NUMPAD5
: id
= WXK_NUMPAD5
; break;
3004 case VK_NUMPAD6
: id
= WXK_NUMPAD6
; break;
3005 case VK_NUMPAD7
: id
= WXK_NUMPAD7
; break;
3006 case VK_NUMPAD8
: id
= WXK_NUMPAD8
; break;
3007 case VK_NUMPAD9
: id
= WXK_NUMPAD9
; break;
3008 case VK_MULTIPLY
: id
= WXK_MULTIPLY
; break;
3009 case VK_ADD
: id
= WXK_ADD
; break;
3010 case VK_SUBTRACT
: id
= WXK_SUBTRACT
; break;
3011 case VK_DECIMAL
: id
= WXK_DECIMAL
; break;
3012 case VK_DIVIDE
: id
= WXK_DIVIDE
; break;
3013 case VK_F1
: id
= WXK_F1
; break;
3014 case VK_F2
: id
= WXK_F2
; break;
3015 case VK_F3
: id
= WXK_F3
; break;
3016 case VK_F4
: id
= WXK_F4
; break;
3017 case VK_F5
: id
= WXK_F5
; break;
3018 case VK_F6
: id
= WXK_F6
; break;
3019 case VK_F7
: id
= WXK_F7
; break;
3020 case VK_F8
: id
= WXK_F8
; break;
3021 case VK_F9
: id
= WXK_F9
; break;
3022 case VK_F10
: id
= WXK_F10
; break;
3023 case VK_F11
: id
= WXK_F11
; break;
3024 case VK_F12
: id
= WXK_F12
; break;
3025 case VK_F13
: id
= WXK_F13
; break;
3026 case VK_F14
: id
= WXK_F14
; break;
3027 case VK_F15
: id
= WXK_F15
; break;
3028 case VK_F16
: id
= WXK_F16
; break;
3029 case VK_F17
: id
= WXK_F17
; break;
3030 case VK_F18
: id
= WXK_F18
; break;
3031 case VK_F19
: id
= WXK_F19
; break;
3032 case VK_F20
: id
= WXK_F20
; break;
3033 case VK_F21
: id
= WXK_F21
; break;
3034 case VK_F22
: id
= WXK_F22
; break;
3035 case VK_F23
: id
= WXK_F23
; break;
3036 case VK_F24
: id
= WXK_F24
; break;
3037 case VK_NUMLOCK
: id
= WXK_NUMLOCK
; break;
3038 case VK_SCROLL
: id
= WXK_SCROLL
; break;
3047 int wxCharCodeWXToMSW(int id
, bool *isVirtual
)
3053 case WXK_CANCEL
: keySym
= VK_CANCEL
; break;
3054 case WXK_CLEAR
: keySym
= VK_CLEAR
; break;
3055 case WXK_SHIFT
: keySym
= VK_SHIFT
; break;
3056 case WXK_CONTROL
: keySym
= VK_CONTROL
; break;
3057 case WXK_MENU
: keySym
= VK_MENU
; break;
3058 case WXK_PAUSE
: keySym
= VK_PAUSE
; break;
3059 case WXK_PRIOR
: keySym
= VK_PRIOR
; break;
3060 case WXK_NEXT
: keySym
= VK_NEXT
; break;
3061 case WXK_END
: keySym
= VK_END
; break;
3062 case WXK_HOME
: keySym
= VK_HOME
; break;
3063 case WXK_LEFT
: keySym
= VK_LEFT
; break;
3064 case WXK_UP
: keySym
= VK_UP
; break;
3065 case WXK_RIGHT
: keySym
= VK_RIGHT
; break;
3066 case WXK_DOWN
: keySym
= VK_DOWN
; break;
3067 case WXK_SELECT
: keySym
= VK_SELECT
; break;
3068 case WXK_PRINT
: keySym
= VK_PRINT
; break;
3069 case WXK_EXECUTE
: keySym
= VK_EXECUTE
; break;
3070 case WXK_INSERT
: keySym
= VK_INSERT
; break;
3071 case WXK_DELETE
: keySym
= VK_DELETE
; break;
3072 case WXK_HELP
: keySym
= VK_HELP
; break;
3073 case WXK_NUMPAD0
: keySym
= VK_NUMPAD0
; break;
3074 case WXK_NUMPAD1
: keySym
= VK_NUMPAD1
; break;
3075 case WXK_NUMPAD2
: keySym
= VK_NUMPAD2
; break;
3076 case WXK_NUMPAD3
: keySym
= VK_NUMPAD3
; break;
3077 case WXK_NUMPAD4
: keySym
= VK_NUMPAD4
; break;
3078 case WXK_NUMPAD5
: keySym
= VK_NUMPAD5
; break;
3079 case WXK_NUMPAD6
: keySym
= VK_NUMPAD6
; break;
3080 case WXK_NUMPAD7
: keySym
= VK_NUMPAD7
; break;
3081 case WXK_NUMPAD8
: keySym
= VK_NUMPAD8
; break;
3082 case WXK_NUMPAD9
: keySym
= VK_NUMPAD9
; break;
3083 case WXK_MULTIPLY
: keySym
= VK_MULTIPLY
; break;
3084 case WXK_ADD
: keySym
= VK_ADD
; break;
3085 case WXK_SUBTRACT
: keySym
= VK_SUBTRACT
; break;
3086 case WXK_DECIMAL
: keySym
= VK_DECIMAL
; break;
3087 case WXK_DIVIDE
: keySym
= VK_DIVIDE
; break;
3088 case WXK_F1
: keySym
= VK_F1
; break;
3089 case WXK_F2
: keySym
= VK_F2
; break;
3090 case WXK_F3
: keySym
= VK_F3
; break;
3091 case WXK_F4
: keySym
= VK_F4
; break;
3092 case WXK_F5
: keySym
= VK_F5
; break;
3093 case WXK_F6
: keySym
= VK_F6
; break;
3094 case WXK_F7
: keySym
= VK_F7
; break;
3095 case WXK_F8
: keySym
= VK_F8
; break;
3096 case WXK_F9
: keySym
= VK_F9
; break;
3097 case WXK_F10
: keySym
= VK_F10
; break;
3098 case WXK_F11
: keySym
= VK_F11
; break;
3099 case WXK_F12
: keySym
= VK_F12
; break;
3100 case WXK_F13
: keySym
= VK_F13
; break;
3101 case WXK_F14
: keySym
= VK_F14
; break;
3102 case WXK_F15
: keySym
= VK_F15
; break;
3103 case WXK_F16
: keySym
= VK_F16
; break;
3104 case WXK_F17
: keySym
= VK_F17
; break;
3105 case WXK_F18
: keySym
= VK_F18
; break;
3106 case WXK_F19
: keySym
= VK_F19
; break;
3107 case WXK_F20
: keySym
= VK_F20
; break;
3108 case WXK_F21
: keySym
= VK_F21
; break;
3109 case WXK_F22
: keySym
= VK_F22
; break;
3110 case WXK_F23
: keySym
= VK_F23
; break;
3111 case WXK_F24
: keySym
= VK_F24
; break;
3112 case WXK_NUMLOCK
: keySym
= VK_NUMLOCK
; break;
3113 case WXK_SCROLL
: keySym
= VK_SCROLL
; break;
3124 // Caret manipulation
3125 void wxWindow::CreateCaret(int w
, int h
)
3129 m_caretEnabled
= TRUE
;
3132 void wxWindow::CreateCaret(const wxBitmap
*WXUNUSED(bitmap
))
3137 void wxWindow::ShowCaret(bool show
)
3142 ::ShowCaret((HWND
) GetHWND());
3144 ::HideCaret((HWND
) GetHWND());
3145 m_caretShown
= show
;
3149 void wxWindow::DestroyCaret()
3151 m_caretEnabled
= FALSE
;
3154 void wxWindow::SetCaretPos(int x
, int y
)
3156 ::SetCaretPos(x
, y
);
3159 void wxWindow::GetCaretPos(int *x
, int *y
) const
3162 ::GetCaretPos(&point
);
3167 wxWindow
*wxGetActiveWindow()
3169 HWND hWnd
= GetActiveWindow();
3172 return wxFindWinFromHandle((WXHWND
) hWnd
);
3177 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
3178 // in active frames and dialogs, regardless of where the focus is.
3179 static HHOOK wxTheKeyboardHook
= 0;
3180 static FARPROC wxTheKeyboardHookProc
= 0;
3181 int APIENTRY _EXPORT
3182 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
);
3184 void wxSetKeyboardHook(bool doIt
)
3188 wxTheKeyboardHookProc
= MakeProcInstance((FARPROC
) wxKeyboardHook
, wxGetInstance());
3189 wxTheKeyboardHook
= SetWindowsHookEx(WH_KEYBOARD
, (HOOKPROC
) wxTheKeyboardHookProc
, wxGetInstance(),
3190 #if defined(__WIN32__) && !defined(__TWIN32__)
3191 GetCurrentThreadId());
3192 // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right?
3199 UnhookWindowsHookEx(wxTheKeyboardHook
);
3200 FreeProcInstance(wxTheKeyboardHookProc
);
3204 int APIENTRY _EXPORT
3205 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
)
3207 DWORD hiWord
= HIWORD(lParam
);
3208 if (nCode
!= HC_NOREMOVE
&& ((hiWord
& KF_UP
) == 0))
3211 if ((id
= wxCharCodeMSWToWX(wParam
)) != 0)
3213 wxKeyEvent
event(wxEVT_CHAR_HOOK
);
3214 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
3215 event
.m_altDown
= TRUE
;
3217 event
.m_eventObject
= NULL
;
3218 event
.m_keyCode
= id
;
3219 /* begin Albert's fix for control and shift key 26.5 */
3220 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
3221 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
3222 /* end Albert's fix for control and shift key 26.5 */
3223 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
3225 wxWindow
*win
= wxGetActiveWindow();
3228 if (win
->GetEventHandler()->ProcessEvent(event
))
3233 if ( wxTheApp
&& wxTheApp
->ProcessEvent(event
) )
3238 return (int)CallNextHookEx(wxTheKeyboardHook
, nCode
, wParam
, lParam
);
3241 void wxWindow::SetSizeHints(int minW
, int minH
, int maxW
, int maxH
, int WXUNUSED(incW
), int WXUNUSED(incH
))
3249 void wxWindow::Centre(int direction
)
3251 int x
, y
, width
, height
, panel_width
, panel_height
, new_x
, new_y
;
3253 wxWindow
*father
= (wxWindow
*)GetParent();
3257 father
->GetClientSize(&panel_width
, &panel_height
);
3258 GetSize(&width
, &height
);
3259 GetPosition(&x
, &y
);
3264 if (direction
& wxHORIZONTAL
)
3265 new_x
= (int)((panel_width
- width
)/2);
3267 if (direction
& wxVERTICAL
)
3268 new_y
= (int)((panel_height
- height
)/2);
3270 SetSize(new_x
, new_y
, -1, -1);
3274 void wxWindow::WarpPointer (int x_pos
, int y_pos
)
3276 // Move the pointer to (x_pos,y_pos) coordinates. They are expressed in
3277 // pixel coordinates, relatives to the canvas -- So, we first need to
3278 // substract origin of the window, then convert to screen position
3280 int x
= x_pos
; int y
= y_pos
;
3282 GetWindowRect ((HWND
) GetHWND(), &rect
);
3287 SetCursorPos (x
, y
);
3290 void wxWindow::MSWDeviceToLogical (float *x
, float *y
) const
3294 bool wxWindow::MSWOnEraseBkgnd (WXHDC pDC
)
3302 wxEraseEvent
event(m_windowId
, &dc
);
3303 event
.m_eventObject
= this;
3304 if (!GetEventHandler()->ProcessEvent(event
))
3307 dc
.SelectOldObjects(pDC
);
3313 dc
.SelectOldObjects(pDC
);
3316 dc
.SetHDC((WXHDC
) NULL
);
3320 void wxWindow::OnEraseBackground(wxEraseEvent
& event
)
3326 ::GetClientRect((HWND
) GetHWND(), &rect
);
3328 COLORREF ref
= PALETTERGB(m_backgroundColour
.Red(), m_backgroundColour
.Green(), m_backgroundColour
.Blue()) ;
3329 HBRUSH hBrush
= ::CreateSolidBrush(ref
);
3330 int mode
= ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), MM_TEXT
);
3332 // ::GetClipBox((HDC) event.GetDC()->GetHDC(), &rect);
3333 ::FillRect ((HDC
) event
.GetDC()->GetHDC(), &rect
, hBrush
);
3334 ::DeleteObject(hBrush
);
3335 ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), mode
);
3337 // Less efficient version (and doesn't account for scrolling)
3339 GetClientSize(& w, & h);
3340 wxBrush *brush = wxTheBrushList->FindOrCreateBrush(& GetBackgroundColour(), wxSOLID);
3341 event.GetDC()->SetBrush(brush);
3342 event.GetDC()->SetPen(wxTRANSPARENT_PEN);
3344 event.GetDC()->DrawRectangle(0, 0, w+1, h+1);
3348 #if WXWIN_COMPATIBILITY
3349 void wxWindow::SetScrollRange(int orient
, int range
, bool refresh
)
3351 #if defined(__WIN95__)
3355 // Try to adjust the range to cope with page size > 1
3356 // - a Windows API quirk
3357 int pageSize
= GetScrollPage(orient
);
3358 if ( pageSize
> 1 && range
> 0)
3360 range1
+= (pageSize
- 1);
3366 if (orient
== wxHORIZONTAL
) {
3372 info
.cbSize
= sizeof(SCROLLINFO
);
3373 info
.nPage
= pageSize
; // Have to set this, or scrollbar goes awry
3377 info
.fMask
= SIF_RANGE
| SIF_PAGE
;
3379 HWND hWnd
= (HWND
) GetHWND();
3381 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3384 if (orient
== wxHORIZONTAL
)
3389 HWND hWnd
= (HWND
) GetHWND();
3391 ::SetScrollRange(hWnd
, wOrient
, 0, range
, refresh
);
3395 void wxWindow::SetScrollPage(int orient
, int page
, bool refresh
)
3397 #if defined(__WIN95__)
3401 if (orient
== wxHORIZONTAL
) {
3403 m_xThumbSize
= page
;
3406 m_yThumbSize
= page
;
3409 info
.cbSize
= sizeof(SCROLLINFO
);
3412 info
.fMask
= SIF_PAGE
;
3414 HWND hWnd
= (HWND
) GetHWND();
3416 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3418 if (orient
== wxHORIZONTAL
)
3419 m_xThumbSize
= page
;
3421 m_yThumbSize
= page
;
3425 int wxWindow::OldGetScrollRange(int orient
) const
3428 if (orient
== wxHORIZONTAL
)
3433 #if __WATCOMC__ && defined(__WINDOWS_386__)
3434 short minPos
, maxPos
;
3438 HWND hWnd
= (HWND
) GetHWND();
3441 ::GetScrollRange(hWnd
, wOrient
, &minPos
, &maxPos
);
3442 #if defined(__WIN95__)
3443 // Try to adjust the range to cope with page size > 1
3444 // - a Windows API quirk
3445 int pageSize
= GetScrollPage(orient
);
3448 maxPos
-= (pageSize
- 1);
3457 int wxWindow::GetScrollPage(int orient
) const
3459 if (orient
== wxHORIZONTAL
)
3460 return m_xThumbSize
;
3462 return m_yThumbSize
;
3466 int wxWindow::GetScrollPos(int orient
) const
3469 if (orient
== wxHORIZONTAL
)
3473 HWND hWnd
= (HWND
) GetHWND();
3476 return ::GetScrollPos(hWnd
, wOrient
);
3482 // This now returns the whole range, not just the number
3483 // of positions that we can scroll.
3484 int wxWindow::GetScrollRange(int orient
) const
3487 if (orient
== wxHORIZONTAL
)
3492 #if __WATCOMC__ && defined(__WINDOWS_386__)
3493 short minPos
, maxPos
;
3497 HWND hWnd
= (HWND
) GetHWND();
3500 ::GetScrollRange(hWnd
, wOrient
, &minPos
, &maxPos
);
3501 #if defined(__WIN95__)
3502 // Try to adjust the range to cope with page size > 1
3503 // - a Windows API quirk
3504 int pageSize
= GetScrollThumb(orient
);
3507 maxPos
-= (pageSize
- 1);
3509 // October 10th: new range concept.
3519 int wxWindow::GetScrollThumb(int orient
) const
3521 if (orient
== wxHORIZONTAL
)
3522 return m_xThumbSize
;
3524 return m_yThumbSize
;
3527 void wxWindow::SetScrollPos(int orient
, int pos
, bool refresh
)
3529 #if defined(__WIN95__)
3533 if (orient
== wxHORIZONTAL
) {
3539 info
.cbSize
= sizeof(SCROLLINFO
);
3543 info
.fMask
= SIF_POS
;
3545 HWND hWnd
= (HWND
) GetHWND();
3547 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3550 if (orient
== wxHORIZONTAL
)
3555 HWND hWnd
= (HWND
) GetHWND();
3557 ::SetScrollPos(hWnd
, wOrient
, pos
, refresh
);
3561 // New function that will replace some of the above.
3562 void wxWindow::SetScrollbar(int orient
, int pos
, int thumbVisible
,
3563 int range
, bool refresh
)
3566 SetScrollPage(orient, thumbVisible, FALSE);
3568 int oldRange = range - thumbVisible ;
3569 SetScrollRange(orient, oldRange, FALSE);
3571 SetScrollPos(orient, pos, refresh);
3573 #if defined(__WIN95__)
3574 int oldRange
= range
- thumbVisible
;
3576 int range1
= oldRange
;
3578 // Try to adjust the range to cope with page size > 1
3579 // - a Windows API quirk
3580 int pageSize
= thumbVisible
;
3581 if ( pageSize
> 1 && range
> 0)
3583 range1
+= (pageSize
- 1);
3589 if (orient
== wxHORIZONTAL
) {
3595 info
.cbSize
= sizeof(SCROLLINFO
);
3596 info
.nPage
= pageSize
; // Have to set this, or scrollbar goes awry
3600 info
.fMask
= SIF_RANGE
| SIF_PAGE
| SIF_POS
;
3602 HWND hWnd
= (HWND
) GetHWND();
3604 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3607 if (orient
== wxHORIZONTAL
)
3612 HWND hWnd
= (HWND
) GetHWND();
3615 ::SetScrollRange(hWnd
, wOrient
, 0, range
, FALSE
);
3616 ::SetScrollPos(hWnd
, wOrient
, pos
, refresh
);
3619 if (orient
== wxHORIZONTAL
) {
3620 m_xThumbSize
= thumbVisible
;
3622 m_yThumbSize
= thumbVisible
;
3626 void wxWindow::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
3631 rect2
.left
= rect
->x
;
3632 rect2
.top
= rect
->y
;
3633 rect2
.right
= rect
->x
+ rect
->width
;
3634 rect2
.bottom
= rect
->y
+ rect
->height
;
3638 ::ScrollWindow((HWND
) GetHWND(), dx
, dy
, &rect2
, NULL
);
3640 ::ScrollWindow((HWND
) GetHWND(), dx
, dy
, NULL
, NULL
);
3643 void wxWindow::SetFont(const wxFont
& font
)
3645 m_windowFont
= font
;
3647 if (!m_windowFont
.Ok())
3650 HWND hWnd
= (HWND
) GetHWND();
3653 if (m_windowFont
.GetResourceHandle())
3654 SendMessage(hWnd
, WM_SETFONT
,
3655 (WPARAM
)m_windowFont
.GetResourceHandle(),TRUE
);
3659 void wxWindow::SubclassWin(WXHWND hWnd
)
3661 wxASSERT_MSG( !m_oldWndProc
, "subclassing window twice?" );
3663 wxAssociateWinWithHandle((HWND
)hWnd
, this);
3665 m_oldWndProc
= (WXFARPROC
) GetWindowLong((HWND
) hWnd
, GWL_WNDPROC
);
3666 SetWindowLong((HWND
) hWnd
, GWL_WNDPROC
, (LONG
) wxWndProc
);
3669 void wxWindow::UnsubclassWin()
3671 wxRemoveHandleAssociation(this);
3673 // Restore old Window proc
3674 if ((HWND
) GetHWND())
3676 FARPROC farProc
= (FARPROC
) GetWindowLong((HWND
) GetHWND(), GWL_WNDPROC
);
3677 if ((m_oldWndProc
!= 0) && (farProc
!= (FARPROC
) m_oldWndProc
))
3679 SetWindowLong((HWND
) GetHWND(), GWL_WNDPROC
, (LONG
) m_oldWndProc
);
3685 // Make a Windows extended style from the given wxWindows window style
3686 WXDWORD
wxWindow::MakeExtendedStyle(long style
, bool eliminateBorders
)
3688 WXDWORD exStyle
= 0;
3689 if ( style
& wxTRANSPARENT_WINDOW
)
3690 exStyle
|= WS_EX_TRANSPARENT
;
3692 if ( !eliminateBorders
)
3694 if ( style
& wxSUNKEN_BORDER
)
3695 exStyle
|= WS_EX_CLIENTEDGE
;
3696 if ( style
& wxDOUBLE_BORDER
)
3697 exStyle
|= WS_EX_DLGMODALFRAME
;
3698 #if defined(__WIN95__)
3699 if ( style
& wxRAISED_BORDER
)
3700 exStyle
|= WS_EX_WINDOWEDGE
;
3701 if ( style
& wxSTATIC_BORDER
)
3702 exStyle
|= WS_EX_STATICEDGE
;
3708 // Determines whether native 3D effects or CTL3D should be used,
3709 // applying a default border style if required, and returning an extended
3710 // style to pass to CreateWindowEx.
3711 WXDWORD
wxWindow::Determine3DEffects(WXDWORD defaultBorderStyle
, bool *want3D
)
3713 // If matches certain criteria, then assume no 3D effects
3714 // unless specifically requested (dealt with in MakeExtendedStyle)
3715 if ( !GetParent() || !IsKindOf(CLASSINFO(wxControl
)) || (m_windowStyle
& wxNO_BORDER
) )
3718 return MakeExtendedStyle(m_windowStyle
, FALSE
);
3721 // Determine whether we should be using 3D effects or not.
3722 bool nativeBorder
= FALSE
; // by default, we don't want a Win95 effect
3724 // 1) App can specify global 3D effects
3725 *want3D
= wxTheApp
->GetAuto3D();
3727 // 2) If the parent is being drawn with user colours, or simple border specified,
3728 // switch effects off. TODO: replace wxUSER_COLOURS with wxNO_3D
3729 if (GetParent() && (GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS
) || (m_windowStyle
& wxSIMPLE_BORDER
))
3732 // 3) Control can override this global setting by defining
3733 // a border style, e.g. wxSUNKEN_BORDER
3734 if (m_windowStyle
& wxSUNKEN_BORDER
)
3737 // 4) If it's a special border, CTL3D can't cope so we want a native border
3738 if ( (m_windowStyle
& wxDOUBLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
3739 (m_windowStyle
& wxSTATIC_BORDER
) )
3742 nativeBorder
= TRUE
;
3745 // 5) If this isn't a Win95 app, and we are using CTL3D, remove border
3746 // effects from extended style
3749 nativeBorder
= FALSE
;
3752 DWORD exStyle
= MakeExtendedStyle(m_windowStyle
, !nativeBorder
);
3754 // If we want 3D, but haven't specified a border here,
3755 // apply the default border style specified.
3756 // TODO what about non-Win95 WIN32? Does it have borders?
3757 #if defined(__WIN95__) && !wxUSE_CTL3D
3758 if (defaultBorderStyle
&& (*want3D
) && ! ((m_windowStyle
& wxDOUBLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
3759 (m_windowStyle
& wxSTATIC_BORDER
) || (m_windowStyle
& wxSIMPLE_BORDER
) ))
3760 exStyle
|= defaultBorderStyle
; // WS_EX_CLIENTEDGE ;
3766 void wxWindow::OnChar(wxKeyEvent
& event
)
3769 int id
= wxCharCodeWXToMSW((int)event
.KeyCode(), &isVirtual
);
3774 if ( !event
.ControlDown() ) // Why this test?
3775 (void) MSWDefWindowProc(m_lastMsg
, (WPARAM
) id
, m_lastLParam
);
3778 void wxWindow::OnKeyDown(wxKeyEvent
& event
)
3783 void wxWindow::OnKeyUp(wxKeyEvent
& event
)
3788 void wxWindow::OnPaint(wxPaintEvent
& event
)
3793 bool wxWindow::IsEnabled(void) const
3795 return (::IsWindowEnabled((HWND
) GetHWND()) != 0);
3798 // Dialog support: override these and call
3799 // base class members to add functionality
3800 // that can't be done using validators.
3801 // NOTE: these functions assume that controls
3802 // are direct children of this window, not grandchildren
3803 // or other levels of descendant.
3805 // Transfer values to controls. If returns FALSE,
3806 // it's an application error (pops up a dialog)
3807 bool wxWindow::TransferDataToWindow()
3809 wxNode
*node
= GetChildren().First();
3812 wxWindow
*child
= (wxWindow
*)node
->Data();
3813 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */
3814 !child
->GetValidator()->TransferToWindow() )
3816 wxLogError(_("Could not transfer data to window"));
3820 node
= node
->Next();
3825 // Transfer values from controls. If returns FALSE,
3826 // validation failed: don't quit
3827 bool wxWindow::TransferDataFromWindow()
3829 wxNode
*node
= GetChildren().First();
3832 wxWindow
*child
= (wxWindow
*)node
->Data();
3833 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */ !child
->GetValidator()->TransferFromWindow() )
3838 node
= node
->Next();
3843 bool wxWindow::Validate()
3845 wxNode
*node
= GetChildren().First();
3848 wxWindow
*child
= (wxWindow
*)node
->Data();
3849 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */ !child
->GetValidator()->Validate(this) )
3854 node
= node
->Next();
3859 // Get the window with the focus
3860 wxWindow
*wxWindow::FindFocus()
3862 HWND hWnd
= ::GetFocus();
3865 return wxFindWinFromHandle((WXHWND
) hWnd
);
3870 void wxWindow::AddChild(wxWindow
*child
)
3872 GetChildren().Append(child
);
3873 child
->m_windowParent
= this;
3876 void wxWindow::RemoveChild(wxWindow
*child
)
3878 // if (GetChildren())
3879 GetChildren().DeleteObject(child
);
3880 child
->m_windowParent
= NULL
;
3883 void wxWindow::DestroyChildren()
3886 while ((node
= GetChildren().First()) != (wxNode
*)NULL
) {
3888 if ((child
= (wxWindow
*)node
->Data()) != (wxWindow
*)NULL
) {
3890 if ( GetChildren().Member(child
) )
3896 void wxWindow::MakeModal(bool modal
)
3898 // Disable all other windows
3899 if (this->IsKindOf(CLASSINFO(wxDialog
)) || this->IsKindOf(CLASSINFO(wxFrame
)))
3901 wxNode
*node
= wxTopLevelWindows
.First();
3904 wxWindow
*win
= (wxWindow
*)node
->Data();
3906 win
->Enable(!modal
);
3908 node
= node
->Next();
3913 // If nothing defined for this, try the parent.
3914 // E.g. we may be a button loaded from a resource, with no callback function
3916 void wxWindow::OnCommand(wxWindow
& win
, wxCommandEvent
& event
)
3918 if (GetEventHandler()->ProcessEvent(event
) )
3921 m_windowParent
->GetEventHandler()->OnCommand(win
, event
);
3924 void wxWindow::SetConstraints(wxLayoutConstraints
*c
)
3928 UnsetConstraints(m_constraints
);
3929 delete m_constraints
;
3934 // Make sure other windows know they're part of a 'meaningful relationship'
3935 if (m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this))
3936 m_constraints
->left
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3937 if (m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this))
3938 m_constraints
->top
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3939 if (m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this))
3940 m_constraints
->right
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3941 if (m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this))
3942 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3943 if (m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this))
3944 m_constraints
->width
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3945 if (m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this))
3946 m_constraints
->height
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3947 if (m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this))
3948 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3949 if (m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this))
3950 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3954 // This removes any dangling pointers to this window
3955 // in other windows' constraintsInvolvedIn lists.
3956 void wxWindow::UnsetConstraints(wxLayoutConstraints
*c
)
3960 if (c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
3961 c
->left
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3962 if (c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
3963 c
->top
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3964 if (c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this))
3965 c
->right
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3966 if (c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this))
3967 c
->bottom
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3968 if (c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this))
3969 c
->width
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3970 if (c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this))
3971 c
->height
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3972 if (c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this))
3973 c
->centreX
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3974 if (c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this))
3975 c
->centreY
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3979 // Back-pointer to other windows we're involved with, so if we delete
3980 // this window, we must delete any constraints we're involved with.
3981 void wxWindow::AddConstraintReference(wxWindow
*otherWin
)
3983 if (!m_constraintsInvolvedIn
)
3984 m_constraintsInvolvedIn
= new wxList
;
3985 if (!m_constraintsInvolvedIn
->Member(otherWin
))
3986 m_constraintsInvolvedIn
->Append(otherWin
);
3989 // REMOVE back-pointer to other windows we're involved with.
3990 void wxWindow::RemoveConstraintReference(wxWindow
*otherWin
)
3992 if (m_constraintsInvolvedIn
)
3993 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
3996 // Reset any constraints that mention this window
3997 void wxWindow::DeleteRelatedConstraints()
3999 if (m_constraintsInvolvedIn
)
4001 wxNode
*node
= m_constraintsInvolvedIn
->First();
4004 wxWindow
*win
= (wxWindow
*)node
->Data();
4005 wxNode
*next
= node
->Next();
4006 wxLayoutConstraints
*constr
= win
->GetConstraints();
4008 // Reset any constraints involving this window
4011 constr
->left
.ResetIfWin((wxWindow
*)this);
4012 constr
->top
.ResetIfWin((wxWindow
*)this);
4013 constr
->right
.ResetIfWin((wxWindow
*)this);
4014 constr
->bottom
.ResetIfWin((wxWindow
*)this);
4015 constr
->width
.ResetIfWin((wxWindow
*)this);
4016 constr
->height
.ResetIfWin((wxWindow
*)this);
4017 constr
->centreX
.ResetIfWin((wxWindow
*)this);
4018 constr
->centreY
.ResetIfWin((wxWindow
*)this);
4023 delete m_constraintsInvolvedIn
;
4024 m_constraintsInvolvedIn
= NULL
;
4028 void wxWindow::SetSizer(wxSizer
*sizer
)
4030 m_windowSizer
= sizer
;
4032 sizer
->SetSizerParent((wxWindow
*)this);
4039 bool wxWindow::Layout()
4041 if (GetConstraints())
4044 GetClientSize(&w
, &h
);
4045 GetConstraints()->width
.SetValue(w
);
4046 GetConstraints()->height
.SetValue(h
);
4049 // If top level (one sizer), evaluate the sizer's constraints.
4053 GetSizer()->ResetConstraints(); // Mark all constraints as unevaluated
4054 GetSizer()->LayoutPhase1(&noChanges
);
4055 GetSizer()->LayoutPhase2(&noChanges
);
4056 GetSizer()->SetConstraintSizes(); // Recursively set the real window sizes
4061 // Otherwise, evaluate child constraints
4062 ResetConstraints(); // Mark all constraints as unevaluated
4063 DoPhase(1); // Just one phase need if no sizers involved
4065 SetConstraintSizes(); // Recursively set the real window sizes
4071 // Do a phase of evaluating constraints:
4072 // the default behaviour. wxSizers may do a similar
4073 // thing, but also impose their own 'constraints'
4074 // and order the evaluation differently.
4075 bool wxWindow::LayoutPhase1(int *noChanges
)
4077 wxLayoutConstraints
*constr
= GetConstraints();
4080 return constr
->SatisfyConstraints((wxWindow
*)this, noChanges
);
4086 bool wxWindow::LayoutPhase2(int *noChanges
)
4096 // Do a phase of evaluating child constraints
4097 bool wxWindow::DoPhase(int phase
)
4099 int noIterations
= 0;
4100 int maxIterations
= 500;
4104 while ((noChanges
> 0) && (noIterations
< maxIterations
))
4108 wxNode
*node
= GetChildren().First();
4111 wxWindow
*child
= (wxWindow
*)node
->Data();
4112 if (!child
->IsKindOf(CLASSINFO(wxFrame
)) && !child
->IsKindOf(CLASSINFO(wxDialog
)))
4114 wxLayoutConstraints
*constr
= child
->GetConstraints();
4117 if (succeeded
.Member(child
))
4122 int tempNoChanges
= 0;
4123 bool success
= ( (phase
== 1) ? child
->LayoutPhase1(&tempNoChanges
) : child
->LayoutPhase2(&tempNoChanges
) ) ;
4124 noChanges
+= tempNoChanges
;
4127 succeeded
.Append(child
);
4132 node
= node
->Next();
4139 void wxWindow::ResetConstraints()
4141 wxLayoutConstraints
*constr
= GetConstraints();
4144 constr
->left
.SetDone(FALSE
);
4145 constr
->top
.SetDone(FALSE
);
4146 constr
->right
.SetDone(FALSE
);
4147 constr
->bottom
.SetDone(FALSE
);
4148 constr
->width
.SetDone(FALSE
);
4149 constr
->height
.SetDone(FALSE
);
4150 constr
->centreX
.SetDone(FALSE
);
4151 constr
->centreY
.SetDone(FALSE
);
4153 wxNode
*node
= GetChildren().First();
4156 wxWindow
*win
= (wxWindow
*)node
->Data();
4157 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
4158 win
->ResetConstraints();
4159 node
= node
->Next();
4163 // Need to distinguish between setting the 'fake' size for
4164 // windows and sizers, and setting the real values.
4165 void wxWindow::SetConstraintSizes(bool recurse
)
4167 wxLayoutConstraints
*constr
= GetConstraints();
4168 if (constr
&& constr
->left
.GetDone() && constr
->right
.GetDone() &&
4169 constr
->width
.GetDone() && constr
->height
.GetDone())
4171 int x
= constr
->left
.GetValue();
4172 int y
= constr
->top
.GetValue();
4173 int w
= constr
->width
.GetValue();
4174 int h
= constr
->height
.GetValue();
4176 // If we don't want to resize this window, just move it...
4177 if ((constr
->width
.GetRelationship() != wxAsIs
) ||
4178 (constr
->height
.GetRelationship() != wxAsIs
))
4180 // Calls Layout() recursively. AAAGH. How can we stop that.
4181 // Simply take Layout() out of non-top level OnSizes.
4182 SizerSetSize(x
, y
, w
, h
);
4191 char *windowClass
= this->GetClassInfo()->GetClassName();
4194 if (GetName() == "")
4195 winName
= "unnamed";
4197 winName
= GetName();
4198 wxLogDebug("Constraint(s) not satisfied for window of type %s, name %s:",
4199 (const char *)windowClass
, (const char *)winName
);
4200 if (!constr
->left
.GetDone())
4201 wxLogDebug(" unsatisfied 'left' constraint.");
4202 if (!constr
->right
.GetDone())
4203 wxLogDebug(" unsatisfied 'right' constraint.");
4204 if (!constr
->width
.GetDone())
4205 wxLogDebug(" unsatisfied 'width' constraint.");
4206 if (!constr
->height
.GetDone())
4207 wxLogDebug(" unsatisfied 'height' constraint.");
4208 wxLogDebug("Please check constraints: try adding AsIs() constraints.\n");
4213 wxNode
*node
= GetChildren().First();
4216 wxWindow
*win
= (wxWindow
*)node
->Data();
4217 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
4218 win
->SetConstraintSizes();
4219 node
= node
->Next();
4224 // This assumes that all sizers are 'on' the same
4225 // window, i.e. the parent of this window.
4226 void wxWindow::TransformSizerToActual(int *x
, int *y
) const
4228 if (!m_sizerParent
|| m_sizerParent
->IsKindOf(CLASSINFO(wxDialog
)) ||
4229 m_sizerParent
->IsKindOf(CLASSINFO(wxFrame
)) )
4233 m_sizerParent
->GetPosition(&xp
, &yp
);
4234 m_sizerParent
->TransformSizerToActual(&xp
, &yp
);
4239 void wxWindow::SizerSetSize(int x
, int y
, int w
, int h
)
4243 TransformSizerToActual(&xx
, &yy
);
4244 SetSize(xx
, yy
, w
, h
);
4247 void wxWindow::SizerMove(int x
, int y
)
4251 TransformSizerToActual(&xx
, &yy
);
4255 // Only set the size/position of the constraint (if any)
4256 void wxWindow::SetSizeConstraint(int x
, int y
, int w
, int h
)
4258 wxLayoutConstraints
*constr
= GetConstraints();
4263 constr
->left
.SetValue(x
);
4264 constr
->left
.SetDone(TRUE
);
4268 constr
->top
.SetValue(y
);
4269 constr
->top
.SetDone(TRUE
);
4273 constr
->width
.SetValue(w
);
4274 constr
->width
.SetDone(TRUE
);
4278 constr
->height
.SetValue(h
);
4279 constr
->height
.SetDone(TRUE
);
4284 void wxWindow::MoveConstraint(int x
, int y
)
4286 wxLayoutConstraints
*constr
= GetConstraints();
4291 constr
->left
.SetValue(x
);
4292 constr
->left
.SetDone(TRUE
);
4296 constr
->top
.SetValue(y
);
4297 constr
->top
.SetDone(TRUE
);
4302 void wxWindow::GetSizeConstraint(int *w
, int *h
) const
4304 wxLayoutConstraints
*constr
= GetConstraints();
4307 *w
= constr
->width
.GetValue();
4308 *h
= constr
->height
.GetValue();
4314 void wxWindow::GetClientSizeConstraint(int *w
, int *h
) const
4316 wxLayoutConstraints
*constr
= GetConstraints();
4319 *w
= constr
->width
.GetValue();
4320 *h
= constr
->height
.GetValue();
4323 GetClientSize(w
, h
);
4326 void wxWindow::GetPositionConstraint(int *x
, int *y
) const
4328 wxLayoutConstraints
*constr
= GetConstraints();
4331 *x
= constr
->left
.GetValue();
4332 *y
= constr
->top
.GetValue();
4338 bool wxWindow::Close(bool force
)
4340 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
4341 event
.SetEventObject(this);
4342 #if WXWIN_COMPATIBILITY
4343 event
.SetForce(force
);
4345 event
.SetCanVeto(!force
);
4347 return (GetEventHandler()->ProcessEvent(event
) && !event
.GetVeto());
4350 wxObject
* wxWindow::GetChild(int number
) const
4352 // Return a pointer to the Nth object in the Panel
4353 // if (!GetChildren())
4355 wxNode
*node
= GetChildren().First();
4358 node
= node
->Next() ;
4361 wxObject
*obj
= (wxObject
*)node
->Data();
4368 void wxWindow::OnDefaultAction(wxControl
*initiatingItem
)
4370 /* This is obsolete now; if we wish to intercept listbox double-clicks,
4371 * we explicitly intercept the wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
4374 if (initiatingItem->IsKindOf(CLASSINFO(wxListBox)))
4376 wxListBox *lbox = (wxListBox *)initiatingItem;
4377 wxCommandEvent event(wxEVT_COMMAND_LEFT_DCLICK);
4378 event.m_commandInt = -1;
4379 if ((lbox->GetWindowStyleFlag() & wxLB_MULTIPLE) == 0)
4381 event.m_commandString = copystring(lbox->GetStringSelection());
4382 event.m_commandInt = lbox->GetSelection();
4383 event.m_clientData = lbox->wxListBox::GetClientData(event.m_commandInt);
4385 event.m_eventObject = lbox;
4387 lbox->ProcessCommand(event);
4389 if (event.m_commandString)
4390 delete[] event.m_commandString;
4394 wxButton *but = GetDefaultItem();
4397 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED);
4398 event.SetEventObject(but);
4399 but->Command(event);
4404 void wxWindow::Clear()
4406 wxClientDC
dc(this);
4407 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
4408 dc
.SetBackground(brush
);
4412 // Fits the panel around the items
4413 void wxWindow::Fit()
4417 wxNode
*node
= GetChildren().First();
4420 wxWindow
*win
= (wxWindow
*)node
->Data();
4422 win
->GetPosition(&wx
, &wy
);
4423 win
->GetSize(&ww
, &wh
);
4424 if ( wx
+ ww
> maxX
)
4426 if ( wy
+ wh
> maxY
)
4429 node
= node
->Next();
4431 SetClientSize(maxX
+ 5, maxY
+ 5);
4434 void wxWindow::SetValidator(const wxValidator
& validator
)
4436 if ( m_windowValidator
)
4437 delete m_windowValidator
;
4438 m_windowValidator
= validator
.Clone();
4440 if ( m_windowValidator
)
4441 m_windowValidator
->SetWindow(this) ;
4444 // Find a window by id or name
4445 wxWindow
*wxWindow::FindWindow(long id
)
4450 wxNode
*node
= GetChildren().First();
4453 wxWindow
*child
= (wxWindow
*)node
->Data();
4454 wxWindow
*found
= child
->FindWindow(id
);
4457 node
= node
->Next();
4462 wxWindow
*wxWindow::FindWindow(const wxString
& name
)
4464 if ( GetName() == name
)
4467 wxNode
*node
= GetChildren().First();
4470 wxWindow
*child
= (wxWindow
*)node
->Data();
4471 wxWindow
*found
= child
->FindWindow(name
);
4474 node
= node
->Next();
4480 // Default input behaviour for a scrolling canvas should be to scroll
4481 // according to the cursor keys pressed
4482 void wxWindow::OnChar(wxKeyEvent& event)
4494 GetScrollUnitsPerPage(&x_page, &y_page);
4496 GetVirtualSize(&v_width,&v_height);
4498 ViewStart(&start_x, &start_y);
4501 y_pages = (int)(v_height/vert_units) - y_page;
4509 switch (event.keyCode)
4516 if (start_y - y_page > 0)
4517 Scroll(start_x, start_y - y_page);
4527 if ((y_page > 0) && (start_y <= y_pages-y-1))
4529 if (y_pages + y < start_y + y_page)
4530 Scroll(start_x, y_pages + y);
4532 Scroll(start_x, start_y + y_page);
4539 if ((y_page > 0) && (start_y >= 1))
4540 Scroll(start_x, start_y - 1);
4546 if ((y_page > 0) && (start_y <= y_pages-y-1))
4549 Scroll(start_x, start_y + 1);
4555 if ((x_page > 0) && (start_x >= 1))
4556 Scroll(start_x - 1, start_y);
4562 Scroll(start_x + 1, start_y);
4573 Scroll(start_x, y_pages+y);
4581 // Setup background and foreground colours correctly
4582 void wxWindow::SetupColours()
4585 SetBackgroundColour(GetParent()->GetBackgroundColour());
4588 void wxWindow::OnIdle(wxIdleEvent
& event
)
4590 // Check if we need to send a LEAVE event
4591 if (m_mouseInWindow
)
4594 ::GetCursorPos(&pt
);
4595 if (::WindowFromPoint(pt
) != (HWND
) GetHWND())
4597 // Generate a LEAVE event
4598 m_mouseInWindow
= FALSE
;
4601 if (::GetKeyState(VK_SHIFT
) != 0)
4603 if (::GetKeyState(VK_CONTROL
) != 0)
4604 state
|= MK_CONTROL
;
4606 // Unfortunately the mouse button and keyboard state may have changed
4607 // by the time the OnIdle function is called, so 'state' may be
4610 MSWOnMouseLeave(pt
.x
, pt
.y
, state
);
4616 // Raise the window to the top of the Z order
4617 void wxWindow::Raise()
4619 ::BringWindowToTop((HWND
) GetHWND());
4622 // Lower the window to the bottom of the Z order
4623 void wxWindow::Lower()
4625 ::SetWindowPos((HWND
) GetHWND(), HWND_BOTTOM
, 0, 0, 0, 0, SWP_NOMOVE
|SWP_NOSIZE
|SWP_NOACTIVATE
);
4628 long wxWindow::MSWGetDlgCode()
4630 // default: just forward to def window proc (the msg has no parameters)
4631 return MSWDefWindowProc(WM_GETDLGCODE
, 0, 0);
4634 bool wxWindow::AcceptsFocus() const
4636 // invisible and disabled controls don't need focus
4637 return IsShown() && IsEnabled();
4640 // Update region access
4641 wxRegion
wxWindow::GetUpdateRegion() const
4643 return m_updateRegion
;
4646 bool wxWindow::IsExposed(int x
, int y
, int w
, int h
) const
4648 return (m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
);
4651 bool wxWindow::IsExposed(const wxPoint
& pt
) const
4653 return (m_updateRegion
.Contains(pt
) != wxOutRegion
);
4656 bool wxWindow::IsExposed(const wxRect
& rect
) const
4658 return (m_updateRegion
.Contains(rect
) != wxOutRegion
);
4661 // Set this window to be the child of 'parent'.
4662 bool wxWindow::Reparent(wxWindow
*parent
)
4664 if (parent
== GetParent())
4667 // Unlink this window from the existing parent.
4670 GetParent()->RemoveChild(this);
4673 wxTopLevelWindows
.DeleteObject(this);
4675 HWND hWndParent
= 0;
4676 HWND hWndChild
= (HWND
) GetHWND();
4677 if (parent
!= (wxWindow
*) NULL
)
4679 parent
->AddChild(this);
4680 hWndParent
= (HWND
) parent
->GetHWND();
4683 wxTopLevelWindows
.Append(this);
4685 ::SetParent(hWndChild
, hWndParent
);
4691 const char *wxGetMessageName(int message
)
4693 switch ( message
) {
4694 case 0x0000: return "WM_NULL";
4695 case 0x0001: return "WM_CREATE";
4696 case 0x0002: return "WM_DESTROY";
4697 case 0x0003: return "WM_MOVE";
4698 case 0x0005: return "WM_SIZE";
4699 case 0x0006: return "WM_ACTIVATE";
4700 case 0x0007: return "WM_SETFOCUS";
4701 case 0x0008: return "WM_KILLFOCUS";
4702 case 0x000A: return "WM_ENABLE";
4703 case 0x000B: return "WM_SETREDRAW";
4704 case 0x000C: return "WM_SETTEXT";
4705 case 0x000D: return "WM_GETTEXT";
4706 case 0x000E: return "WM_GETTEXTLENGTH";
4707 case 0x000F: return "WM_PAINT";
4708 case 0x0010: return "WM_CLOSE";
4709 case 0x0011: return "WM_QUERYENDSESSION";
4710 case 0x0012: return "WM_QUIT";
4711 case 0x0013: return "WM_QUERYOPEN";
4712 case 0x0014: return "WM_ERASEBKGND";
4713 case 0x0015: return "WM_SYSCOLORCHANGE";
4714 case 0x0016: return "WM_ENDSESSION";
4715 case 0x0017: return "WM_SYSTEMERROR";
4716 case 0x0018: return "WM_SHOWWINDOW";
4717 case 0x0019: return "WM_CTLCOLOR";
4718 case 0x001A: return "WM_WININICHANGE";
4719 case 0x001B: return "WM_DEVMODECHANGE";
4720 case 0x001C: return "WM_ACTIVATEAPP";
4721 case 0x001D: return "WM_FONTCHANGE";
4722 case 0x001E: return "WM_TIMECHANGE";
4723 case 0x001F: return "WM_CANCELMODE";
4724 case 0x0020: return "WM_SETCURSOR";
4725 case 0x0021: return "WM_MOUSEACTIVATE";
4726 case 0x0022: return "WM_CHILDACTIVATE";
4727 case 0x0023: return "WM_QUEUESYNC";
4728 case 0x0024: return "WM_GETMINMAXINFO";
4729 case 0x0026: return "WM_PAINTICON";
4730 case 0x0027: return "WM_ICONERASEBKGND";
4731 case 0x0028: return "WM_NEXTDLGCTL";
4732 case 0x002A: return "WM_SPOOLERSTATUS";
4733 case 0x002B: return "WM_DRAWITEM";
4734 case 0x002C: return "WM_MEASUREITEM";
4735 case 0x002D: return "WM_DELETEITEM";
4736 case 0x002E: return "WM_VKEYTOITEM";
4737 case 0x002F: return "WM_CHARTOITEM";
4738 case 0x0030: return "WM_SETFONT";
4739 case 0x0031: return "WM_GETFONT";
4740 case 0x0037: return "WM_QUERYDRAGICON";
4741 case 0x0039: return "WM_COMPAREITEM";
4742 case 0x0041: return "WM_COMPACTING";
4743 case 0x0044: return "WM_COMMNOTIFY";
4744 case 0x0046: return "WM_WINDOWPOSCHANGING";
4745 case 0x0047: return "WM_WINDOWPOSCHANGED";
4746 case 0x0048: return "WM_POWER";
4749 case 0x004A: return "WM_COPYDATA";
4750 case 0x004B: return "WM_CANCELJOURNAL";
4751 case 0x004E: return "WM_NOTIFY";
4752 case 0x0050: return "WM_INPUTLANGCHANGEREQUEST";
4753 case 0x0051: return "WM_INPUTLANGCHANGE";
4754 case 0x0052: return "WM_TCARD";
4755 case 0x0053: return "WM_HELP";
4756 case 0x0054: return "WM_USERCHANGED";
4757 case 0x0055: return "WM_NOTIFYFORMAT";
4758 case 0x007B: return "WM_CONTEXTMENU";
4759 case 0x007C: return "WM_STYLECHANGING";
4760 case 0x007D: return "WM_STYLECHANGED";
4761 case 0x007E: return "WM_DISPLAYCHANGE";
4762 case 0x007F: return "WM_GETICON";
4763 case 0x0080: return "WM_SETICON";
4766 case 0x0081: return "WM_NCCREATE";
4767 case 0x0082: return "WM_NCDESTROY";
4768 case 0x0083: return "WM_NCCALCSIZE";
4769 case 0x0084: return "WM_NCHITTEST";
4770 case 0x0085: return "WM_NCPAINT";
4771 case 0x0086: return "WM_NCACTIVATE";
4772 case 0x0087: return "WM_GETDLGCODE";
4773 case 0x00A0: return "WM_NCMOUSEMOVE";
4774 case 0x00A1: return "WM_NCLBUTTONDOWN";
4775 case 0x00A2: return "WM_NCLBUTTONUP";
4776 case 0x00A3: return "WM_NCLBUTTONDBLCLK";
4777 case 0x00A4: return "WM_NCRBUTTONDOWN";
4778 case 0x00A5: return "WM_NCRBUTTONUP";
4779 case 0x00A6: return "WM_NCRBUTTONDBLCLK";
4780 case 0x00A7: return "WM_NCMBUTTONDOWN";
4781 case 0x00A8: return "WM_NCMBUTTONUP";
4782 case 0x00A9: return "WM_NCMBUTTONDBLCLK";
4783 case 0x0100: return "WM_KEYDOWN";
4784 case 0x0101: return "WM_KEYUP";
4785 case 0x0102: return "WM_CHAR";
4786 case 0x0103: return "WM_DEADCHAR";
4787 case 0x0104: return "WM_SYSKEYDOWN";
4788 case 0x0105: return "WM_SYSKEYUP";
4789 case 0x0106: return "WM_SYSCHAR";
4790 case 0x0107: return "WM_SYSDEADCHAR";
4791 case 0x0108: return "WM_KEYLAST";
4794 case 0x010D: return "WM_IME_STARTCOMPOSITION";
4795 case 0x010E: return "WM_IME_ENDCOMPOSITION";
4796 case 0x010F: return "WM_IME_COMPOSITION";
4799 case 0x0110: return "WM_INITDIALOG";
4800 case 0x0111: return "WM_COMMAND";
4801 case 0x0112: return "WM_SYSCOMMAND";
4802 case 0x0113: return "WM_TIMER";
4803 case 0x0114: return "WM_HSCROLL";
4804 case 0x0115: return "WM_VSCROLL";
4805 case 0x0116: return "WM_INITMENU";
4806 case 0x0117: return "WM_INITMENUPOPUP";
4807 case 0x011F: return "WM_MENUSELECT";
4808 case 0x0120: return "WM_MENUCHAR";
4809 case 0x0121: return "WM_ENTERIDLE";
4810 case 0x0200: return "WM_MOUSEMOVE";
4811 case 0x0201: return "WM_LBUTTONDOWN";
4812 case 0x0202: return "WM_LBUTTONUP";
4813 case 0x0203: return "WM_LBUTTONDBLCLK";
4814 case 0x0204: return "WM_RBUTTONDOWN";
4815 case 0x0205: return "WM_RBUTTONUP";
4816 case 0x0206: return "WM_RBUTTONDBLCLK";
4817 case 0x0207: return "WM_MBUTTONDOWN";
4818 case 0x0208: return "WM_MBUTTONUP";
4819 case 0x0209: return "WM_MBUTTONDBLCLK";
4820 case 0x0210: return "WM_PARENTNOTIFY";
4821 case 0x0211: return "WM_ENTERMENULOOP";
4822 case 0x0212: return "WM_EXITMENULOOP";
4825 case 0x0213: return "WM_NEXTMENU";
4826 case 0x0214: return "WM_SIZING";
4827 case 0x0215: return "WM_CAPTURECHANGED";
4828 case 0x0216: return "WM_MOVING";
4829 case 0x0218: return "WM_POWERBROADCAST";
4830 case 0x0219: return "WM_DEVICECHANGE";
4833 case 0x0220: return "WM_MDICREATE";
4834 case 0x0221: return "WM_MDIDESTROY";
4835 case 0x0222: return "WM_MDIACTIVATE";
4836 case 0x0223: return "WM_MDIRESTORE";
4837 case 0x0224: return "WM_MDINEXT";
4838 case 0x0225: return "WM_MDIMAXIMIZE";
4839 case 0x0226: return "WM_MDITILE";
4840 case 0x0227: return "WM_MDICASCADE";
4841 case 0x0228: return "WM_MDIICONARRANGE";
4842 case 0x0229: return "WM_MDIGETACTIVE";
4843 case 0x0230: return "WM_MDISETMENU";
4844 case 0x0233: return "WM_DROPFILES";
4847 case 0x0281: return "WM_IME_SETCONTEXT";
4848 case 0x0282: return "WM_IME_NOTIFY";
4849 case 0x0283: return "WM_IME_CONTROL";
4850 case 0x0284: return "WM_IME_COMPOSITIONFULL";
4851 case 0x0285: return "WM_IME_SELECT";
4852 case 0x0286: return "WM_IME_CHAR";
4853 case 0x0290: return "WM_IME_KEYDOWN";
4854 case 0x0291: return "WM_IME_KEYUP";
4857 case 0x0300: return "WM_CUT";
4858 case 0x0301: return "WM_COPY";
4859 case 0x0302: return "WM_PASTE";
4860 case 0x0303: return "WM_CLEAR";
4861 case 0x0304: return "WM_UNDO";
4862 case 0x0305: return "WM_RENDERFORMAT";
4863 case 0x0306: return "WM_RENDERALLFORMATS";
4864 case 0x0307: return "WM_DESTROYCLIPBOARD";
4865 case 0x0308: return "WM_DRAWCLIPBOARD";
4866 case 0x0309: return "WM_PAINTCLIPBOARD";
4867 case 0x030A: return "WM_VSCROLLCLIPBOARD";
4868 case 0x030B: return "WM_SIZECLIPBOARD";
4869 case 0x030C: return "WM_ASKCBFORMATNAME";
4870 case 0x030D: return "WM_CHANGECBCHAIN";
4871 case 0x030E: return "WM_HSCROLLCLIPBOARD";
4872 case 0x030F: return "WM_QUERYNEWPALETTE";
4873 case 0x0310: return "WM_PALETTEISCHANGING";
4874 case 0x0311: return "WM_PALETTECHANGED";
4877 // common controls messages - although they're not strictly speaking
4878 // standard, it's nice to decode them nevertheless
4881 case 0x1000 + 0: return "LVM_GETBKCOLOR";
4882 case 0x1000 + 1: return "LVM_SETBKCOLOR";
4883 case 0x1000 + 2: return "LVM_GETIMAGELIST";
4884 case 0x1000 + 3: return "LVM_SETIMAGELIST";
4885 case 0x1000 + 4: return "LVM_GETITEMCOUNT";
4886 case 0x1000 + 5: return "LVM_GETITEMA";
4887 case 0x1000 + 75: return "LVM_GETITEMW";
4888 case 0x1000 + 6: return "LVM_SETITEMA";
4889 case 0x1000 + 76: return "LVM_SETITEMW";
4890 case 0x1000 + 7: return "LVM_INSERTITEMA";
4891 case 0x1000 + 77: return "LVM_INSERTITEMW";
4892 case 0x1000 + 8: return "LVM_DELETEITEM";
4893 case 0x1000 + 9: return "LVM_DELETEALLITEMS";
4894 case 0x1000 + 10: return "LVM_GETCALLBACKMASK";
4895 case 0x1000 + 11: return "LVM_SETCALLBACKMASK";
4896 case 0x1000 + 12: return "LVM_GETNEXTITEM";
4897 case 0x1000 + 13: return "LVM_FINDITEMA";
4898 case 0x1000 + 83: return "LVM_FINDITEMW";
4899 case 0x1000 + 14: return "LVM_GETITEMRECT";
4900 case 0x1000 + 15: return "LVM_SETITEMPOSITION";
4901 case 0x1000 + 16: return "LVM_GETITEMPOSITION";
4902 case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA";
4903 case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW";
4904 case 0x1000 + 18: return "LVM_HITTEST";
4905 case 0x1000 + 19: return "LVM_ENSUREVISIBLE";
4906 case 0x1000 + 20: return "LVM_SCROLL";
4907 case 0x1000 + 21: return "LVM_REDRAWITEMS";
4908 case 0x1000 + 22: return "LVM_ARRANGE";
4909 case 0x1000 + 23: return "LVM_EDITLABELA";
4910 case 0x1000 + 118: return "LVM_EDITLABELW";
4911 case 0x1000 + 24: return "LVM_GETEDITCONTROL";
4912 case 0x1000 + 25: return "LVM_GETCOLUMNA";
4913 case 0x1000 + 95: return "LVM_GETCOLUMNW";
4914 case 0x1000 + 26: return "LVM_SETCOLUMNA";
4915 case 0x1000 + 96: return "LVM_SETCOLUMNW";
4916 case 0x1000 + 27: return "LVM_INSERTCOLUMNA";
4917 case 0x1000 + 97: return "LVM_INSERTCOLUMNW";
4918 case 0x1000 + 28: return "LVM_DELETECOLUMN";
4919 case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH";
4920 case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH";
4921 case 0x1000 + 31: return "LVM_GETHEADER";
4922 case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE";
4923 case 0x1000 + 34: return "LVM_GETVIEWRECT";
4924 case 0x1000 + 35: return "LVM_GETTEXTCOLOR";
4925 case 0x1000 + 36: return "LVM_SETTEXTCOLOR";
4926 case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR";
4927 case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR";
4928 case 0x1000 + 39: return "LVM_GETTOPINDEX";
4929 case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE";
4930 case 0x1000 + 41: return "LVM_GETORIGIN";
4931 case 0x1000 + 42: return "LVM_UPDATE";
4932 case 0x1000 + 43: return "LVM_SETITEMSTATE";
4933 case 0x1000 + 44: return "LVM_GETITEMSTATE";
4934 case 0x1000 + 45: return "LVM_GETITEMTEXTA";
4935 case 0x1000 + 115: return "LVM_GETITEMTEXTW";
4936 case 0x1000 + 46: return "LVM_SETITEMTEXTA";
4937 case 0x1000 + 116: return "LVM_SETITEMTEXTW";
4938 case 0x1000 + 47: return "LVM_SETITEMCOUNT";
4939 case 0x1000 + 48: return "LVM_SORTITEMS";
4940 case 0x1000 + 49: return "LVM_SETITEMPOSITION32";
4941 case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT";
4942 case 0x1000 + 51: return "LVM_GETITEMSPACING";
4943 case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA";
4944 case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW";
4945 case 0x1000 + 53: return "LVM_SETICONSPACING";
4946 case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE";
4947 case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE";
4948 case 0x1000 + 56: return "LVM_GETSUBITEMRECT";
4949 case 0x1000 + 57: return "LVM_SUBITEMHITTEST";
4950 case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY";
4951 case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY";
4952 case 0x1000 + 60: return "LVM_SETHOTITEM";
4953 case 0x1000 + 61: return "LVM_GETHOTITEM";
4954 case 0x1000 + 62: return "LVM_SETHOTCURSOR";
4955 case 0x1000 + 63: return "LVM_GETHOTCURSOR";
4956 case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT";
4957 case 0x1000 + 65: return "LVM_SETWORKAREA";
4960 case 0x1100 + 0: return "TVM_INSERTITEMA";
4961 case 0x1100 + 50: return "TVM_INSERTITEMW";
4962 case 0x1100 + 1: return "TVM_DELETEITEM";
4963 case 0x1100 + 2: return "TVM_EXPAND";
4964 case 0x1100 + 4: return "TVM_GETITEMRECT";
4965 case 0x1100 + 5: return "TVM_GETCOUNT";
4966 case 0x1100 + 6: return "TVM_GETINDENT";
4967 case 0x1100 + 7: return "TVM_SETINDENT";
4968 case 0x1100 + 8: return "TVM_GETIMAGELIST";
4969 case 0x1100 + 9: return "TVM_SETIMAGELIST";
4970 case 0x1100 + 10: return "TVM_GETNEXTITEM";
4971 case 0x1100 + 11: return "TVM_SELECTITEM";
4972 case 0x1100 + 12: return "TVM_GETITEMA";
4973 case 0x1100 + 62: return "TVM_GETITEMW";
4974 case 0x1100 + 13: return "TVM_SETITEMA";
4975 case 0x1100 + 63: return "TVM_SETITEMW";
4976 case 0x1100 + 14: return "TVM_EDITLABELA";
4977 case 0x1100 + 65: return "TVM_EDITLABELW";
4978 case 0x1100 + 15: return "TVM_GETEDITCONTROL";
4979 case 0x1100 + 16: return "TVM_GETVISIBLECOUNT";
4980 case 0x1100 + 17: return "TVM_HITTEST";
4981 case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE";
4982 case 0x1100 + 19: return "TVM_SORTCHILDREN";
4983 case 0x1100 + 20: return "TVM_ENSUREVISIBLE";
4984 case 0x1100 + 21: return "TVM_SORTCHILDRENCB";
4985 case 0x1100 + 22: return "TVM_ENDEDITLABELNOW";
4986 case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA";
4987 case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW";
4988 case 0x1100 + 24: return "TVM_SETTOOLTIPS";
4989 case 0x1100 + 25: return "TVM_GETTOOLTIPS";
4992 case 0x1200 + 0: return "HDM_GETITEMCOUNT";
4993 case 0x1200 + 1: return "HDM_INSERTITEMA";
4994 case 0x1200 + 10: return "HDM_INSERTITEMW";
4995 case 0x1200 + 2: return "HDM_DELETEITEM";
4996 case 0x1200 + 3: return "HDM_GETITEMA";
4997 case 0x1200 + 11: return "HDM_GETITEMW";
4998 case 0x1200 + 4: return "HDM_SETITEMA";
4999 case 0x1200 + 12: return "HDM_SETITEMW";
5000 case 0x1200 + 5: return "HDM_LAYOUT";
5001 case 0x1200 + 6: return "HDM_HITTEST";
5002 case 0x1200 + 7: return "HDM_GETITEMRECT";
5003 case 0x1200 + 8: return "HDM_SETIMAGELIST";
5004 case 0x1200 + 9: return "HDM_GETIMAGELIST";
5005 case 0x1200 + 15: return "HDM_ORDERTOINDEX";
5006 case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE";
5007 case 0x1200 + 17: return "HDM_GETORDERARRAY";
5008 case 0x1200 + 18: return "HDM_SETORDERARRAY";
5009 case 0x1200 + 19: return "HDM_SETHOTDIVIDER";
5012 case 0x1300 + 2: return "TCM_GETIMAGELIST";
5013 case 0x1300 + 3: return "TCM_SETIMAGELIST";
5014 case 0x1300 + 4: return "TCM_GETITEMCOUNT";
5015 case 0x1300 + 5: return "TCM_GETITEMA";
5016 case 0x1300 + 60: return "TCM_GETITEMW";
5017 case 0x1300 + 6: return "TCM_SETITEMA";
5018 case 0x1300 + 61: return "TCM_SETITEMW";
5019 case 0x1300 + 7: return "TCM_INSERTITEMA";
5020 case 0x1300 + 62: return "TCM_INSERTITEMW";
5021 case 0x1300 + 8: return "TCM_DELETEITEM";
5022 case 0x1300 + 9: return "TCM_DELETEALLITEMS";
5023 case 0x1300 + 10: return "TCM_GETITEMRECT";
5024 case 0x1300 + 11: return "TCM_GETCURSEL";
5025 case 0x1300 + 12: return "TCM_SETCURSEL";
5026 case 0x1300 + 13: return "TCM_HITTEST";
5027 case 0x1300 + 14: return "TCM_SETITEMEXTRA";
5028 case 0x1300 + 40: return "TCM_ADJUSTRECT";
5029 case 0x1300 + 41: return "TCM_SETITEMSIZE";
5030 case 0x1300 + 42: return "TCM_REMOVEIMAGE";
5031 case 0x1300 + 43: return "TCM_SETPADDING";
5032 case 0x1300 + 44: return "TCM_GETROWCOUNT";
5033 case 0x1300 + 45: return "TCM_GETTOOLTIPS";
5034 case 0x1300 + 46: return "TCM_SETTOOLTIPS";
5035 case 0x1300 + 47: return "TCM_GETCURFOCUS";
5036 case 0x1300 + 48: return "TCM_SETCURFOCUS";
5037 case 0x1300 + 49: return "TCM_SETMINTABWIDTH";
5038 case 0x1300 + 50: return "TCM_DESELECTALL";
5041 case WM_USER
+1: return "TB_ENABLEBUTTON";
5042 case WM_USER
+2: return "TB_CHECKBUTTON";
5043 case WM_USER
+3: return "TB_PRESSBUTTON";
5044 case WM_USER
+4: return "TB_HIDEBUTTON";
5045 case WM_USER
+5: return "TB_INDETERMINATE";
5046 case WM_USER
+9: return "TB_ISBUTTONENABLED";
5047 case WM_USER
+10: return "TB_ISBUTTONCHECKED";
5048 case WM_USER
+11: return "TB_ISBUTTONPRESSED";
5049 case WM_USER
+12: return "TB_ISBUTTONHIDDEN";
5050 case WM_USER
+13: return "TB_ISBUTTONINDETERMINATE";
5051 case WM_USER
+17: return "TB_SETSTATE";
5052 case WM_USER
+18: return "TB_GETSTATE";
5053 case WM_USER
+19: return "TB_ADDBITMAP";
5054 case WM_USER
+20: return "TB_ADDBUTTONS";
5055 case WM_USER
+21: return "TB_INSERTBUTTON";
5056 case WM_USER
+22: return "TB_DELETEBUTTON";
5057 case WM_USER
+23: return "TB_GETBUTTON";
5058 case WM_USER
+24: return "TB_BUTTONCOUNT";
5059 case WM_USER
+25: return "TB_COMMANDTOINDEX";
5060 case WM_USER
+26: return "TB_SAVERESTOREA";
5061 case WM_USER
+76: return "TB_SAVERESTOREW";
5062 case WM_USER
+27: return "TB_CUSTOMIZE";
5063 case WM_USER
+28: return "TB_ADDSTRINGA";
5064 case WM_USER
+77: return "TB_ADDSTRINGW";
5065 case WM_USER
+29: return "TB_GETITEMRECT";
5066 case WM_USER
+30: return "TB_BUTTONSTRUCTSIZE";
5067 case WM_USER
+31: return "TB_SETBUTTONSIZE";
5068 case WM_USER
+32: return "TB_SETBITMAPSIZE";
5069 case WM_USER
+33: return "TB_AUTOSIZE";
5070 case WM_USER
+35: return "TB_GETTOOLTIPS";
5071 case WM_USER
+36: return "TB_SETTOOLTIPS";
5072 case WM_USER
+37: return "TB_SETPARENT";
5073 case WM_USER
+39: return "TB_SETROWS";
5074 case WM_USER
+40: return "TB_GETROWS";
5075 case WM_USER
+42: return "TB_SETCMDID";
5076 case WM_USER
+43: return "TB_CHANGEBITMAP";
5077 case WM_USER
+44: return "TB_GETBITMAP";
5078 case WM_USER
+45: return "TB_GETBUTTONTEXTA";
5079 case WM_USER
+75: return "TB_GETBUTTONTEXTW";
5080 case WM_USER
+46: return "TB_REPLACEBITMAP";
5081 case WM_USER
+47: return "TB_SETINDENT";
5082 case WM_USER
+48: return "TB_SETIMAGELIST";
5083 case WM_USER
+49: return "TB_GETIMAGELIST";
5084 case WM_USER
+50: return "TB_LOADIMAGES";
5085 case WM_USER
+51: return "TB_GETRECT";
5086 case WM_USER
+52: return "TB_SETHOTIMAGELIST";
5087 case WM_USER
+53: return "TB_GETHOTIMAGELIST";
5088 case WM_USER
+54: return "TB_SETDISABLEDIMAGELIST";
5089 case WM_USER
+55: return "TB_GETDISABLEDIMAGELIST";
5090 case WM_USER
+56: return "TB_SETSTYLE";
5091 case WM_USER
+57: return "TB_GETSTYLE";
5092 case WM_USER
+58: return "TB_GETBUTTONSIZE";
5093 case WM_USER
+59: return "TB_SETBUTTONWIDTH";
5094 case WM_USER
+60: return "TB_SETMAXTEXTROWS";
5095 case WM_USER
+61: return "TB_GETTEXTROWS";
5096 case WM_USER
+41: return "TB_GETBITMAPFLAGS";
5101 static char s_szBuf
[128];
5102 sprintf(s_szBuf
, "<unknown message = %d>", message
);
5106 #endif //__WXDEBUG__