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"
52 #include "wx/tooltip.h"
54 #include "wx/msw/private.h"
67 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__)
73 #include <wx/msw/gnuwin32/extra.h>
77 // all these are defined in <windows.h>
95 const char *wxGetMessageName(int message
);
98 #define WINDOW_MARGIN 3 // This defines sensitivity of Leave events
100 wxMenu
*wxCurrentPopupMenu
= NULL
;
101 extern wxList WXDLLEXPORT wxPendingDelete
;
103 void wxRemoveHandleAssociation(wxWindow
*win
);
104 void wxAssociateWinWithHandle(HWND hWnd
, wxWindow
*win
);
105 wxWindow
*wxFindWinFromHandle(WXHWND hWnd
);
107 #if !USE_SHARED_LIBRARY
108 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxEvtHandler
)
111 BEGIN_EVENT_TABLE(wxWindow
, wxEvtHandler
)
112 EVT_CHAR(wxWindow::OnChar
)
113 EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground
)
114 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged
)
115 EVT_INIT_DIALOG(wxWindow::OnInitDialog
)
116 EVT_IDLE(wxWindow::OnIdle
)
119 // Find an item given the MS Windows id
120 wxWindow
*wxWindow::FindItem(int id
) const
122 // if (!GetChildren())
124 wxNode
*current
= GetChildren().First();
127 wxWindow
*childWin
= (wxWindow
*)current
->Data();
129 wxWindow
*wnd
= childWin
->FindItem(id
) ;
133 if (childWin
->IsKindOf(CLASSINFO(wxControl
)))
135 wxControl
*item
= (wxControl
*)childWin
;
136 if (item
->GetId() == id
)
140 // In case it's a 'virtual' control (e.g. radiobox)
141 if (item
->GetSubcontrols().Member((wxObject
*)id
))
145 current
= current
->Next();
150 // Find an item given the MS Windows handle
151 wxWindow
*wxWindow::FindItemByHWND(WXHWND hWnd
, bool controlOnly
) const
153 // if (!GetChildren())
155 wxNode
*current
= GetChildren().First();
158 wxObject
*obj
= (wxObject
*)current
->Data() ;
159 // Do a recursive search.
160 wxWindow
*parent
= (wxWindow
*)obj
;
161 wxWindow
*wnd
= parent
->FindItemByHWND(hWnd
) ;
165 if ((!controlOnly
) || obj
->IsKindOf(CLASSINFO(wxControl
)))
167 wxWindow
*item
= (wxWindow
*)current
->Data();
168 if ((HWND
)(item
->GetHWND()) == (HWND
) hWnd
)
172 if ( item
->ContainsHWND(hWnd
) )
176 current
= current
->Next();
181 // Default command handler
182 bool wxWindow::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD
WXUNUSED(id
))
187 bool wxWindow::MSWNotify(WXWPARAM
WXUNUSED(wParam
),
189 WXLPARAM
* WXUNUSED(result
))
192 NMHDR
* hdr
= (NMHDR
*)lParam
;
193 if ( hdr
->code
== TTN_NEEDTEXT
&& m_tooltip
)
195 TOOLTIPTEXT
*ttt
= (TOOLTIPTEXT
*)lParam
;
196 ttt
->lpszText
= (char *)m_tooltip
->GetTip().c_str();
206 void wxWindow::PreDelete(WXHDC
WXUNUSED(dc
))
210 WXHWND
wxWindow::GetHWND(void) const
212 return (WXHWND
) m_hWnd
;
215 void wxWindow::SetHWND(WXHWND hWnd
)
220 // ----------------------------------------------------------------------------
221 // constructors and such
222 // ----------------------------------------------------------------------------
224 void wxWindow::Init()
230 m_windowParent
= NULL
;
231 m_windowEventHandler
= this;
232 m_windowCursor
= *wxSTANDARD_CURSOR
;
233 m_children
= new wxList
;
234 m_doubleClickAllowed
= 0 ;
235 m_winCaptured
= FALSE
;
236 m_constraints
= NULL
;
237 m_constraintsInvolvedIn
= NULL
;
238 m_windowSizer
= NULL
;
239 m_sizerParent
= NULL
;
240 m_autoLayout
= FALSE
;
241 m_windowValidator
= NULL
;
246 m_caretWidth
= m_caretHeight
= 0;
248 m_caretShown
= FALSE
;
255 m_isBeingDeleted
= FALSE
;
261 m_mouseInWindow
= FALSE
;
263 m_windowParent
= NULL
;
264 m_defaultItem
= NULL
;
266 wxSystemSettings settings
;
268 m_backgroundColour
= settings
.GetSystemColour(wxSYS_COLOUR_3DFACE
) ;
269 m_foregroundColour
= *wxBLACK
;
279 m_backgroundTransparent
= FALSE
;
281 m_lastXPos
= (float)-1.0;
282 m_lastYPos
= (float)-1.0;
286 #if wxUSE_DRAG_AND_DROP
287 m_pDropTarget
= NULL
;
299 wxWindow::~wxWindow()
301 m_isBeingDeleted
= TRUE
;
303 // first of all, delete the things on which nothing else depends
307 // JACS - if behaviour is odd, restore this
308 // to the start of ~wxWindow. Vadim has changed
309 // it to nearer the end. Unsure of side-effects
310 // e.g. when deleting associated global data.
311 // Restore old Window proc, if required
314 // Have to delete constraints/sizer FIRST otherwise
315 // sizers may try to look at deleted windows as they
316 // delete themselves.
317 #if wxUSE_CONSTRAINTS
318 DeleteRelatedConstraints();
322 // This removes any dangling pointers to this window
323 // in other windows' constraintsInvolvedIn lists.
324 UnsetConstraints(m_constraints
);
325 delete m_constraints
;
326 m_constraints
= NULL
;
329 wxDELETE(m_windowSizer
);
331 // If this is a child of a sizer, remove self from parent
333 m_sizerParent
->RemoveChild((wxWindow
*)this);
337 MSWDetachWindowMenu();
340 m_windowParent
->RemoveChild(this);
345 ::DestroyWindow((HWND
)m_hWnd
);
347 wxRemoveHandleAssociation(this);
352 GlobalFree((HGLOBAL
) m_globalHandle
);
360 // Just in case the window has been Closed, but
361 // we're then deleting immediately: don't leave
362 // dangling pointers.
363 wxPendingDelete
.DeleteObject(this);
365 // Just in case we've loaded a top-level window via
366 // wxWindow::LoadNativeDialog but we weren't a dialog
368 wxTopLevelWindows
.DeleteObject(this);
370 if ( m_windowValidator
)
371 delete m_windowValidator
;
373 // Restore old Window proc, if required
374 // and remove hWnd <-> wxWindow association
378 // Destroy the window (delayed, if a managed window)
379 bool wxWindow::Destroy()
385 extern char wxCanvasClassName
[];
387 // real construction (Init() must have been called before!)
388 bool wxWindow::Create(wxWindow
*parent
, wxWindowID id
,
392 const wxString
& name
)
394 wxCHECK_MSG( parent
, FALSE
, "can't create wxWindow without parent" );
396 parent
->AddChild(this);
401 m_windowId
= (int)NewControlId();
410 // To be consistent with wxGTK
416 wxSystemSettings settings
;
418 m_windowStyle
= style
;
421 if (style
& wxBORDER
)
422 msflags
|= WS_BORDER
;
423 if (style
& wxTHICK_FRAME
)
424 msflags
|= WS_THICKFRAME
;
426 msflags
|= WS_CHILD
| WS_VISIBLE
;
427 if (style
& wxCLIP_CHILDREN
)
428 msflags
|= WS_CLIPCHILDREN
;
431 WXDWORD exStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &want3D
) ;
433 // Even with extended styles, need to combine with WS_BORDER
434 // for them to look right.
435 if (want3D
|| (m_windowStyle
& wxSIMPLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
436 (m_windowStyle
& wxSUNKEN_BORDER
) || (m_windowStyle
& wxDOUBLE_BORDER
))
437 msflags
|= WS_BORDER
;
439 MSWCreate(m_windowId
, parent
, wxCanvasClassName
, this, NULL
,
440 x
, y
, width
, height
, msflags
, NULL
, exStyle
);
445 void wxWindow::SetFocus()
447 HWND hWnd
= (HWND
) GetHWND();
452 void wxWindow::Enable(bool enable
)
454 m_winEnabled
= enable
;
455 HWND hWnd
= (HWND
) GetHWND();
457 ::EnableWindow(hWnd
, (BOOL
)enable
);
460 void wxWindow::CaptureMouse()
462 HWND hWnd
= (HWND
) GetHWND();
463 if (hWnd
&& !m_winCaptured
)
466 m_winCaptured
= TRUE
;
470 void wxWindow::ReleaseMouse()
475 m_winCaptured
= FALSE
;
479 void wxWindow::SetAcceleratorTable(const wxAcceleratorTable
& accel
)
481 m_acceleratorTable
= accel
;
485 // Push/pop event handler (i.e. allow a chain of event handlers
487 void wxWindow::PushEventHandler(wxEvtHandler
*handler
)
489 handler
->SetNextHandler(GetEventHandler());
490 SetEventHandler(handler
);
493 wxEvtHandler
*wxWindow::PopEventHandler(bool deleteHandler
)
495 if ( GetEventHandler() )
497 wxEvtHandler
*handlerA
= GetEventHandler();
498 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
499 handlerA
->SetNextHandler(NULL
);
500 SetEventHandler(handlerB
);
513 #if wxUSE_DRAG_AND_DROP
515 void wxWindow::SetDropTarget(wxDropTarget
*pDropTarget
)
517 if ( m_pDropTarget
!= 0 ) {
518 m_pDropTarget
->Revoke(m_hWnd
);
519 delete m_pDropTarget
;
522 m_pDropTarget
= pDropTarget
;
523 if ( m_pDropTarget
!= 0 )
524 m_pDropTarget
->Register(m_hWnd
);
527 #endif // wxUSE_DRAG_AND_DROP
530 //old style file-manager drag&drop support
531 // I think we should retain the old-style
532 // DragAcceptFiles in parallel with SetDropTarget.
534 void wxWindow::DragAcceptFiles(bool accept
)
536 HWND hWnd
= (HWND
) GetHWND();
538 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
541 // ----------------------------------------------------------------------------
543 // ----------------------------------------------------------------------------
545 void wxWindow::SetToolTip(const wxString
&tip
)
547 SetToolTip(new wxToolTip(tip
));
550 void wxWindow::SetToolTip(wxToolTip
*tooltip
)
556 m_tooltip
->SetWindow(this);
560 void wxWindow::GetSize(int *x
, int *y
) const
562 HWND hWnd
= (HWND
) GetHWND();
564 GetWindowRect(hWnd
, &rect
);
565 *x
= rect
.right
- rect
.left
;
566 *y
= rect
.bottom
- rect
.top
;
569 void wxWindow::GetPosition(int *x
, int *y
) const
571 HWND hWnd
= (HWND
) GetHWND();
574 hParentWnd
= (HWND
) GetParent()->GetHWND();
577 GetWindowRect(hWnd
, &rect
);
579 // Since we now have the absolute screen coords,
580 // if there's a parent we must subtract its top left corner
586 ::ScreenToClient(hParentWnd
, &point
);
589 // We may be faking the client origin.
590 // So a window that's really at (0, 30) may appear
591 // (to wxWin apps) to be at (0, 0).
594 wxPoint
pt(GetParent()->GetClientAreaOrigin());
602 void wxWindow::ScreenToClient(int *x
, int *y
) const
604 HWND hWnd
= (HWND
) GetHWND();
609 ::ScreenToClient(hWnd
, &pt
);
615 void wxWindow::ClientToScreen(int *x
, int *y
) const
617 HWND hWnd
= (HWND
) GetHWND();
622 ::ClientToScreen(hWnd
, &pt
);
628 void wxWindow::SetCursor(const wxCursor
& cursor
)
630 m_windowCursor
= cursor
;
631 if (m_windowCursor
.Ok())
633 HWND hWnd
= (HWND
) GetHWND();
635 // Change the cursor NOW if we're within the correct window
637 ::GetCursorPos(&point
);
640 ::GetWindowRect(hWnd
, &rect
);
642 if (::PtInRect(&rect
, point
) && !wxIsBusy())
643 ::SetCursor((HCURSOR
) m_windowCursor
.GetHCURSOR());
646 // This will cause big reentrancy problems if wxFlushEvents is implemented.
648 // return old_cursor;
652 // Get size *available for subwindows* i.e. excluding menu bar etc.
653 void wxWindow::GetClientSize(int *x
, int *y
) const
655 HWND hWnd
= (HWND
) GetHWND();
657 GetClientRect(hWnd
, &rect
);
662 void wxWindow::SetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
664 int currentX
, currentY
;
665 GetPosition(¤tX
, ¤tY
);
666 int currentW
,currentH
;
667 GetSize(¤tW
, ¤tH
);
669 if (x
== currentX
&& y
== currentY
&& width
== currentW
&& height
== currentH
)
672 int actualWidth
= width
;
673 int actualHeight
= height
;
676 if (x
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
678 if (y
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
681 AdjustForParentClientOrigin(actualX
, actualY
, sizeFlags
);
684 actualWidth
= currentW
;
686 actualHeight
= currentH
;
688 HWND hWnd
= (HWND
) GetHWND();
690 MoveWindow(hWnd
, actualX
, actualY
, actualWidth
, actualHeight
, (BOOL
)TRUE
);
693 void wxWindow::SetClientSize(int width
, int height
)
695 wxWindow
*parent
= GetParent();
696 HWND hWnd
= (HWND
) GetHWND();
697 HWND hParentWnd
= (HWND
) (HWND
) parent
->GetHWND();
700 GetClientRect(hWnd
, &rect
);
703 GetWindowRect(hWnd
, &rect2
);
705 // Find the difference between the entire window (title bar and all)
706 // and the client area; add this to the new client size to move the
708 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
709 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
711 // If there's a parent, must subtract the parent's top left corner
712 // since MoveWindow moves relative to the parent
715 point
.x
= rect2
.left
;
719 ::ScreenToClient(hParentWnd
, &point
);
722 MoveWindow(hWnd
, point
.x
, point
.y
, actual_width
, actual_height
, (BOOL
)TRUE
);
724 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
725 event
.SetEventObject(this);
726 GetEventHandler()->ProcessEvent(event
);
729 // For implementation purposes - sometimes decorations make the client area
731 wxPoint
wxWindow::GetClientAreaOrigin() const
733 return wxPoint(0, 0);
736 // Makes an adjustment to the window position (for example, a frame that has
737 // a toolbar that it manages itself).
738 void wxWindow::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
)
740 if (((sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) == 0) && GetParent())
742 wxPoint
pt(GetParent()->GetClientAreaOrigin());
743 x
+= pt
.x
; y
+= pt
.y
;
747 bool wxWindow::Show(bool show
)
749 HWND hWnd
= (HWND
) GetHWND();
755 ShowWindow(hWnd
, (BOOL
)cshow
);
758 BringWindowToTop(hWnd
);
759 // Next line causes a crash on NT, apparently.
760 // UpdateWindow(hWnd); // Should this be here or will it cause inefficiency?
765 bool wxWindow::IsShown(void) const
767 return (::IsWindowVisible((HWND
) GetHWND()) != 0);
770 int wxWindow::GetCharHeight(void) const
772 TEXTMETRIC lpTextMetric
;
773 HWND hWnd
= (HWND
) GetHWND();
774 HDC dc
= ::GetDC(hWnd
);
776 GetTextMetrics(dc
, &lpTextMetric
);
777 ::ReleaseDC(hWnd
, dc
);
779 return lpTextMetric
.tmHeight
;
782 int wxWindow::GetCharWidth(void) const
784 TEXTMETRIC lpTextMetric
;
785 HWND hWnd
= (HWND
) GetHWND();
786 HDC dc
= ::GetDC(hWnd
);
788 GetTextMetrics(dc
, &lpTextMetric
);
789 ::ReleaseDC(hWnd
, dc
);
791 return lpTextMetric
.tmAveCharWidth
;
794 void wxWindow::GetTextExtent(const wxString
& string
, int *x
, int *y
,
795 int *descent
, int *externalLeading
, const wxFont
*theFont
, bool) const
797 wxFont
*fontToUse
= (wxFont
*)theFont
;
799 fontToUse
= (wxFont
*) & m_windowFont
;
801 HWND hWnd
= (HWND
) GetHWND();
802 HDC dc
= ::GetDC(hWnd
);
806 if (fontToUse
&& fontToUse
->Ok())
808 fnt
= (HFONT
)fontToUse
->GetResourceHandle();
810 was
= (HFONT
) SelectObject(dc
,fnt
) ;
815 GetTextExtentPoint(dc
, (const char *)string
, (int)string
.Length(), &sizeRect
);
816 GetTextMetrics(dc
, &tm
);
818 if (fontToUse
&& fnt
&& was
)
819 SelectObject(dc
,was
) ;
825 if (descent
) *descent
= tm
.tmDescent
;
826 if (externalLeading
) *externalLeading
= tm
.tmExternalLeading
;
829 // fontToUse->ReleaseResource();
832 void wxWindow::Refresh(bool eraseBack
, const wxRect
*rect
)
834 HWND hWnd
= (HWND
) GetHWND();
840 mswRect
.left
= rect
->x
;
841 mswRect
.top
= rect
->y
;
842 mswRect
.right
= rect
->x
+ rect
->width
;
843 mswRect
.bottom
= rect
->y
+ rect
->height
;
845 ::InvalidateRect(hWnd
, &mswRect
, eraseBack
);
848 ::InvalidateRect(hWnd
, NULL
, eraseBack
);
852 bool wxWindow::ProcessEvent(wxEvent
& event
)
854 // we save here the information about the last message because it might be
855 // overwritten if the event handler sends any messages to our window (case
856 // in point: wxNotebook::OnSize) - and then if we call Default() later
857 // (which is done quite often if the message is not processed) it will use
858 // incorrect values for m_lastXXX variables
859 WXUINT lastMsg
= m_lastMsg
;
860 WXWPARAM lastWParam
= m_lastWParam
;
861 WXLPARAM lastLParam
= m_lastLParam
;
863 // call the base version
864 bool bProcessed
= wxEvtHandler::ProcessEvent(event
);
868 m_lastWParam
= lastWParam
;
869 m_lastLParam
= lastLParam
;
874 // Hook for new window just as it's being created,
875 // when the window isn't yet associated with the handle
876 wxWindow
*wxWndHook
= NULL
;
879 LRESULT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
881 wxWindow
*wnd
= wxFindWinFromHandle((WXHWND
) hWnd
);
883 if (!wnd
&& wxWndHook
)
885 wxAssociateWinWithHandle(hWnd
, wxWndHook
);
888 wnd
->m_hWnd
= (WXHWND
) hWnd
;
891 // Stop right here if we don't have a valid handle in our wxWindow object.
892 if (wnd
&& !wnd
->m_hWnd
) {
893 wnd
->m_hWnd
= (WXHWND
) hWnd
;
894 long res
= wnd
->MSWDefWindowProc(message
, wParam
, lParam
);
900 wnd
->m_lastMsg
= message
;
901 wnd
->m_lastWParam
= wParam
;
902 wnd
->m_lastLParam
= lParam
;
905 return wnd
->MSWWindowProc(message
, wParam
, lParam
);
907 return DefWindowProc( hWnd
, message
, wParam
, lParam
);
910 // Should probably have a test for 'genuine' NT
911 #if defined(__WIN32__)
912 #define DIMENSION_TYPE short
914 #define DIMENSION_TYPE int
917 // Main Windows 3 window proc
918 long wxWindow::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
920 wxASSERT( m_lastMsg
== message
&&
921 m_lastWParam
== wParam
&& m_lastLParam
== lParam
);
924 wxLogTrace(wxTraceMessages
, "Processing %s(%lx, %lx)",
925 wxGetMessageName(message
), wParam
, lParam
);
926 #endif // __WXDEBUG__
928 HWND hWnd
= (HWND
)m_hWnd
;
935 WORD state
= LOWORD(wParam
);
936 WORD minimized
= HIWORD(wParam
);
937 HWND hwnd
= (HWND
)lParam
;
939 WORD state
= (WORD
)wParam
;
940 WORD minimized
= LOWORD(lParam
);
941 HWND hwnd
= (HWND
)HIWORD(lParam
);
943 MSWOnActivate(state
, (minimized
!= 0), (WXHWND
) hwnd
);
949 HWND hwnd
= (HWND
)wParam
;
950 // return OnSetFocus(hwnd);
952 if (MSWOnSetFocus((WXHWND
) hwnd
))
954 else return MSWDefWindowProc(message
, wParam
, lParam
);
959 HWND hwnd
= (HWND
)lParam
;
960 // return OnKillFocus(hwnd);
961 if (MSWOnKillFocus((WXHWND
) hwnd
))
964 return MSWDefWindowProc(message
, wParam
, lParam
);
969 MSWOnCreate((WXLPCREATESTRUCT
) (LPCREATESTRUCT
)lParam
);
975 MSWOnShow((wParam
!= 0), (int) lParam
);
982 else return MSWDefWindowProc(message
, wParam
, lParam
);
985 case WM_QUERYDRAGICON
:
987 HICON hIcon
= (HICON
)MSWOnQueryDragIcon();
991 return MSWDefWindowProc(message
, wParam
, lParam
);
997 int width
= LOWORD(lParam
);
998 int height
= HIWORD(lParam
);
999 MSWOnSize(width
, height
, wParam
);
1005 wxMoveEvent
event(wxPoint(LOWORD(lParam
), HIWORD(lParam
)),
1007 event
.SetEventObject(this);
1008 if ( !GetEventHandler()->ProcessEvent(event
) )
1013 case WM_WINDOWPOSCHANGING
:
1015 MSWOnWindowPosChanging((void *)lParam
);
1019 case WM_RBUTTONDOWN
:
1021 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1022 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1023 MSWOnRButtonDown(x
, y
, wParam
);
1028 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1029 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1030 MSWOnRButtonUp(x
, y
, wParam
);
1033 case WM_RBUTTONDBLCLK
:
1035 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1036 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1037 MSWOnRButtonDClick(x
, y
, wParam
);
1040 case WM_MBUTTONDOWN
:
1042 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1043 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1044 MSWOnMButtonDown(x
, y
, wParam
);
1049 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1050 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1051 MSWOnMButtonUp(x
, y
, wParam
);
1054 case WM_MBUTTONDBLCLK
:
1056 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1057 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1058 MSWOnMButtonDClick(x
, y
, wParam
);
1061 case WM_LBUTTONDOWN
:
1063 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1064 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1065 MSWOnLButtonDown(x
, y
, wParam
);
1070 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1071 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1072 MSWOnLButtonUp(x
, y
, wParam
);
1075 case WM_LBUTTONDBLCLK
:
1077 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1078 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1079 MSWOnLButtonDClick(x
, y
, wParam
);
1084 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1085 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1086 MSWOnMouseMove(x
, y
, wParam
);
1089 case MM_JOY1BUTTONDOWN
:
1091 int x
= LOWORD(lParam
);
1092 int y
= HIWORD(lParam
);
1093 MSWOnJoyDown(wxJOYSTICK1
, x
, y
, wParam
);
1096 case MM_JOY2BUTTONDOWN
:
1098 int x
= LOWORD(lParam
);
1099 int y
= HIWORD(lParam
);
1100 MSWOnJoyDown(wxJOYSTICK2
, x
, y
, wParam
);
1103 case MM_JOY1BUTTONUP
:
1105 int x
= LOWORD(lParam
);
1106 int y
= HIWORD(lParam
);
1107 MSWOnJoyUp(wxJOYSTICK1
, x
, y
, wParam
);
1110 case MM_JOY2BUTTONUP
:
1112 int x
= LOWORD(lParam
);
1113 int y
= HIWORD(lParam
);
1114 MSWOnJoyUp(wxJOYSTICK2
, x
, y
, wParam
);
1119 int x
= LOWORD(lParam
);
1120 int y
= HIWORD(lParam
);
1121 MSWOnJoyMove(wxJOYSTICK1
, x
, y
, wParam
);
1126 int x
= LOWORD(lParam
);
1127 int y
= HIWORD(lParam
);
1128 MSWOnJoyMove(wxJOYSTICK2
, x
, y
, wParam
);
1133 int z
= LOWORD(lParam
);
1134 MSWOnJoyZMove(wxJOYSTICK1
, z
, wParam
);
1139 int z
= LOWORD(lParam
);
1140 MSWOnJoyZMove(wxJOYSTICK2
, z
, wParam
);
1147 else return MSWDefWindowProc(message
, wParam
, lParam
);
1152 return MSWOnSysCommand(wParam
, lParam
);
1158 WORD id
= LOWORD(wParam
);
1159 HWND hwnd
= (HWND
)lParam
;
1160 WORD cmd
= HIWORD(wParam
);
1162 WORD id
= (WORD
)wParam
;
1163 HWND hwnd
= (HWND
)LOWORD(lParam
) ;
1164 WORD cmd
= HIWORD(lParam
);
1166 if (!MSWOnCommand(id
, cmd
, (WXHWND
) hwnd
))
1167 return MSWDefWindowProc(message
, wParam
, lParam
);
1170 #if defined(__WIN95__)
1173 // for some messages (TVN_ITEMEXPANDING for example), the return
1174 // value of WM_NOTIFY handler is important, so don't just return 0
1175 // if we processed the message
1176 return MSWOnNotify(wParam
, lParam
);
1182 WORD flags
= HIWORD(wParam
);
1183 HMENU sysmenu
= (HMENU
)lParam
;
1185 WORD flags
= LOWORD(lParam
);
1186 HMENU sysmenu
= (HMENU
)HIWORD(lParam
);
1188 MSWOnMenuHighlight((WORD
)wParam
, flags
, (WXHMENU
) sysmenu
);
1191 case WM_INITMENUPOPUP
:
1193 MSWOnInitMenuPopup((WXHMENU
) (HMENU
)wParam
, (int)LOWORD(lParam
), (HIWORD(lParam
) != 0));
1198 return MSWOnDrawItem((int)wParam
, (WXDRAWITEMSTRUCT
*)lParam
);
1201 case WM_MEASUREITEM
:
1203 return MSWOnMeasureItem((int)wParam
, (WXMEASUREITEMSTRUCT
*)lParam
);
1208 MSWOnKeyDown((WORD
) wParam
, lParam
);
1209 // we consider these message "not interesting"
1210 if ( wParam
== VK_SHIFT
|| wParam
== VK_CONTROL
)
1213 // Avoid duplicate messages to OnChar for these special keys
1225 if ( ::GetKeyState(VK_CONTROL
) & 0x100 )
1226 MSWOnChar((WORD
)wParam
, lParam
);
1230 MSWOnChar((WORD
)wParam
, lParam
);
1231 if ( ::GetKeyState(VK_CONTROL
) & 0x100 )
1240 MSWOnKeyUp((WORD
) wParam
, lParam
);
1243 case WM_CHAR
: // Always an ASCII character
1245 MSWOnChar((WORD
)wParam
, lParam
, TRUE
);
1252 WORD code
= LOWORD(wParam
);
1253 WORD pos
= HIWORD(wParam
);
1254 HWND control
= (HWND
)lParam
;
1256 WORD code
= (WORD
)wParam
;
1257 WORD pos
= LOWORD(lParam
);
1258 HWND control
= (HWND
)HIWORD(lParam
);
1260 MSWOnHScroll(code
, pos
, (WXHWND
) control
);
1266 WORD code
= LOWORD(wParam
);
1267 WORD pos
= HIWORD(wParam
);
1268 HWND control
= (HWND
)lParam
;
1270 WORD code
= (WORD
)wParam
;
1271 WORD pos
= LOWORD(lParam
);
1272 HWND control
= (HWND
)HIWORD(lParam
);
1274 MSWOnVScroll(code
, pos
, (WXHWND
) control
);
1278 case WM_CTLCOLORBTN
:
1280 int nCtlColor
= CTLCOLOR_BTN
;
1281 HWND control
= (HWND
)lParam
;
1282 HDC pDC
= (HDC
)wParam
;
1283 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1284 message
, wParam
, lParam
);
1287 case WM_CTLCOLORDLG
:
1289 int nCtlColor
= CTLCOLOR_DLG
;
1290 HWND control
= (HWND
)lParam
;
1291 HDC pDC
= (HDC
)wParam
;
1292 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1293 message
, wParam
, lParam
);\
1296 case WM_CTLCOLORLISTBOX
:
1298 int nCtlColor
= CTLCOLOR_LISTBOX
;
1299 HWND control
= (HWND
)lParam
;
1300 HDC pDC
= (HDC
)wParam
;
1301 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1302 message
, wParam
, lParam
);
1305 case WM_CTLCOLORMSGBOX
:
1307 int nCtlColor
= CTLCOLOR_MSGBOX
;
1308 HWND control
= (HWND
)lParam
;
1309 HDC pDC
= (HDC
)wParam
;
1310 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1311 message
, wParam
, lParam
);
1314 case WM_CTLCOLORSCROLLBAR
:
1316 int nCtlColor
= CTLCOLOR_SCROLLBAR
;
1317 HWND control
= (HWND
)lParam
;
1318 HDC pDC
= (HDC
)wParam
;
1319 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1320 message
, wParam
, lParam
);
1323 case WM_CTLCOLORSTATIC
:
1325 int nCtlColor
= CTLCOLOR_STATIC
;
1326 HWND control
= (HWND
)lParam
;
1327 HDC pDC
= (HDC
)wParam
;
1328 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1329 message
, wParam
, lParam
);
1332 case WM_CTLCOLOREDIT
:
1334 int nCtlColor
= CTLCOLOR_EDIT
;
1335 HWND control
= (HWND
)lParam
;
1336 HDC pDC
= (HDC
)wParam
;
1337 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1338 message
, wParam
, lParam
);
1344 HWND control
= (HWND
)LOWORD(lParam
);
1345 int nCtlColor
= (int)HIWORD(lParam
);
1346 HDC pDC
= (HDC
)wParam
;
1347 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1348 message
, wParam
, lParam
);
1352 case WM_SYSCOLORCHANGE
:
1354 // Return value of 0 means, we processed it.
1355 if (MSWOnColorChange((WXHWND
) hWnd
, message
, wParam
, lParam
) == 0)
1358 return MSWDefWindowProc(message
, wParam
, lParam
);
1361 case WM_PALETTECHANGED
:
1363 return MSWOnPaletteChanged((WXHWND
) (HWND
) wParam
);
1366 case WM_QUERYNEWPALETTE
:
1368 return MSWOnQueryNewPalette();
1373 // Prevents flicker when dragging
1374 if (IsIconic(hWnd
)) return 1;
1376 if (!MSWOnEraseBkgnd((WXHDC
) (HDC
)wParam
))
1377 return 0; // Default(); MSWDefWindowProc(message, wParam, lParam );
1381 case WM_MDIACTIVATE
:
1384 HWND hWndActivate
= GET_WM_MDIACTIVATE_HWNDACTIVATE(wParam
,lParam
);
1385 HWND hWndDeactivate
= GET_WM_MDIACTIVATE_HWNDDEACT(wParam
,lParam
);
1386 BOOL activate
= GET_WM_MDIACTIVATE_FACTIVATE(hWnd
,wParam
,lParam
);
1387 return MSWOnMDIActivate((long) activate
, (WXHWND
) hWndActivate
, (WXHWND
) hWndDeactivate
);
1389 return MSWOnMDIActivate((BOOL
)wParam
, (HWND
)LOWORD(lParam
),
1390 (HWND
)HIWORD(lParam
));
1395 MSWOnDropFiles(wParam
);
1400 return 0; // MSWOnInitDialog((WXHWND)(HWND)wParam);
1403 case WM_QUERYENDSESSION
:
1405 // Same as WM_CLOSE, but inverted results. Thx Microsoft :-)
1406 // return MSWOnClose();
1408 return MSWOnQueryEndSession(lParam
);
1413 // Same as WM_CLOSE, but inverted results. Thx Microsoft :-)
1414 MSWOnEndSession((wParam
!= 0), lParam
);
1427 case WM_GETMINMAXINFO
:
1429 MINMAXINFO
*info
= (MINMAXINFO
*)lParam
;
1430 if (m_minSizeX
!= -1)
1431 info
->ptMinTrackSize
.x
= (int)m_minSizeX
;
1432 if (m_minSizeY
!= -1)
1433 info
->ptMinTrackSize
.y
= (int)m_minSizeY
;
1434 if (m_maxSizeX
!= -1)
1435 info
->ptMaxTrackSize
.x
= (int)m_maxSizeX
;
1436 if (m_maxSizeY
!= -1)
1437 info
->ptMaxTrackSize
.y
= (int)m_maxSizeY
;
1438 return MSWDefWindowProc(message
, wParam
, lParam
);
1443 return MSWGetDlgCode();
1446 return MSWDefWindowProc(message
, wParam
, lParam
);
1449 return 0; // Success: we processed this command.
1452 // Dialog window proc
1453 LONG APIENTRY _EXPORT
1454 wxDlgProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1459 wxList
*wxWinHandleList
= NULL
;
1460 wxWindow
*wxFindWinFromHandle(WXHWND hWnd
)
1462 wxNode
*node
= wxWinHandleList
->Find((long)hWnd
);
1465 return (wxWindow
*)node
->Data();
1468 void wxAssociateWinWithHandle(HWND hWnd
, wxWindow
*win
)
1470 // adding NULL hWnd is (first) surely a result of an error and
1471 // (secondly) breaks menu command processing
1472 wxCHECK_RET( hWnd
!= (HWND
) NULL
, "attempt to add a NULL hWnd to window list" );
1474 if ( !wxWinHandleList
->Find((long)hWnd
) )
1475 wxWinHandleList
->Append((long)hWnd
, win
);
1478 void wxRemoveHandleAssociation(wxWindow
*win
)
1480 wxWinHandleList
->DeleteObject(win
);
1483 // Default destroyer - override if you destroy it in some other way
1484 // (e.g. with MDI child windows)
1485 void wxWindow::MSWDestroyWindow()
1489 void wxWindow::MSWCreate(int id
, wxWindow
*parent
, const char *wclass
, wxWindow
*wx_win
, const char *title
,
1490 int x
, int y
, int width
, int height
,
1491 WXDWORD style
, const char *dialog_template
, WXDWORD extendedStyle
)
1493 bool is_dialog
= (dialog_template
!= NULL
);
1494 int x1
= CW_USEDEFAULT
;
1496 int width1
= CW_USEDEFAULT
;
1499 // Find parent's size, if it exists, to set up a possible default
1500 // panel size the size of the parent window
1504 // Was GetWindowRect: JACS 5/5/95
1505 ::GetClientRect((HWND
) parent
->GetHWND(), &parent_rect
);
1507 width1
= parent_rect
.right
- parent_rect
.left
;
1508 height1
= parent_rect
.bottom
- parent_rect
.top
;
1513 if (width
> -1) width1
= width
;
1514 if (height
> -1) height1
= height
;
1516 HWND hParent
= NULL
;
1518 hParent
= (HWND
) parent
->GetHWND();
1524 // MakeProcInstance doesn't seem to be needed in C7. Is it needed for
1525 // other compilers???
1526 // VZ: it's always needed for Win16 and never for Win32
1528 m_hWnd
= (WXHWND
) ::CreateDialog(wxGetInstance(), dialog_template
, hParent
,
1529 (DLGPROC
)wxDlgProc
);
1531 // N.B.: if we _don't_ use this form,
1532 // then with VC++ 1.5, it crashes horribly.
1534 m_hWnd
= (WXHWND
) ::CreateDialog(wxGetInstance(), dialog_template
, hParent
,
1535 (DLGPROC
)wxDlgProc
);
1537 // Crashes when we use this.
1538 DLGPROC dlgproc
= (DLGPROC
)MakeProcInstance((DLGPROC
)wxWndProc
, wxGetInstance());
1540 m_hWnd
= (WXHWND
) ::CreateDialog(wxGetInstance(), dialog_template
, hParent
,
1546 MessageBox(NULL
, "Can't find dummy dialog template!\nCheck resource include path for finding wx.rc.",
1547 "wxWindows Error", MB_ICONEXCLAMATION
| MB_OK
);
1548 else MoveWindow((HWND
) m_hWnd
, x1
, y1
, width1
, height1
, FALSE
);
1553 if (style
& WS_CHILD
)
1558 m_hWnd
= (WXHWND
)CreateWindowEx(extendedStyle
, wclass
,
1563 hParent
, (HMENU
)controlId
, wxGetInstance(),
1567 wxLogError("Can't create window of class %s!\n"
1568 "Possible Windows 3.x compatibility problem?", wclass
);
1573 wxWinHandleList
->Append((long)m_hWnd
, this);
1576 void wxWindow::MSWOnCreate(WXLPCREATESTRUCT
WXUNUSED(cs
))
1580 bool wxWindow::MSWOnClose()
1585 // Some compilers don't define this
1586 #ifndef ENDSESSION_LOGOFF
1587 #define ENDSESSION_LOGOFF 0x80000000
1590 // Return TRUE to end session, FALSE to veto end session.
1591 bool wxWindow::MSWOnQueryEndSession(long logOff
)
1593 wxCloseEvent
event(wxEVT_QUERY_END_SESSION
, -1);
1594 event
.SetEventObject(wxTheApp
);
1595 event
.SetCanVeto(TRUE
);
1596 event
.SetLoggingOff( (logOff
== ENDSESSION_LOGOFF
) );
1597 if ((this == wxTheApp
->GetTopWindow()) && // Only send once
1598 wxTheApp
->ProcessEvent(event
) && event
.GetVeto())
1600 return FALSE
; // Veto!
1604 return TRUE
; // Don't veto
1608 bool wxWindow::MSWOnEndSession(bool endSession
, long logOff
)
1610 wxCloseEvent
event(wxEVT_END_SESSION
, -1);
1611 event
.SetEventObject(wxTheApp
);
1612 event
.SetCanVeto(FALSE
);
1613 event
.SetLoggingOff( (logOff
== ENDSESSION_LOGOFF
) );
1614 if (endSession
&& // No need to send if the session isn't ending
1615 (this == wxTheApp
->GetTopWindow()) && // Only send once
1616 wxTheApp
->ProcessEvent(event
))
1622 bool wxWindow::MSWOnDestroy()
1624 // delete our drop target if we've got one
1625 #if wxUSE_DRAG_AND_DROP
1626 if ( m_pDropTarget
!= NULL
) {
1627 m_pDropTarget
->Revoke(m_hWnd
);
1629 delete m_pDropTarget
;
1630 m_pDropTarget
= NULL
;
1637 // Deal with child commands from buttons etc.
1639 long wxWindow::MSWOnNotify(WXWPARAM wParam
, WXLPARAM lParam
)
1641 #if defined(__WIN95__)
1642 // Find a child window to send the notification to, e.g. a toolbar.
1643 // There's a problem here. NMHDR::hwndFrom doesn't give us the
1644 // handle of the toolbar; it's probably the handle of the tooltip
1645 // window (anyway, it's parent is also the toolbar's parent).
1646 // So, since we don't know which hWnd or wxWindow originated the
1647 // WM_NOTIFY, we'll need to go through all the children of this window
1648 // trying out MSWNotify.
1649 // This won't work now, though, because any number of controls
1650 // could respond to the same generic messages :-(
1652 /* This doesn't work for toolbars, but try for other controls first.
1654 NMHDR
*hdr
= (NMHDR
*)lParam
;
1655 HWND hWnd
= (HWND
)hdr
->hwndFrom
;
1656 wxWindow
*win
= wxFindWinFromHandle((WXHWND
) hWnd
);
1658 WXLPARAM result
= 0;
1662 if ( win
->MSWNotify(wParam
, lParam
, &result
) )
1667 // Rely on MSWNotify to check whether the message
1668 // belongs to the window or not
1669 wxNode
*node
= GetChildren().First();
1672 wxWindow
*child
= (wxWindow
*)node
->Data();
1673 if ( child
->MSWNotify(wParam
, lParam
, &result
) )
1675 node
= node
->Next();
1678 // finally try this window too (catches toolbar case)
1679 if ( MSWNotify(wParam
, lParam
, &result
) )
1688 void wxWindow::MSWOnMenuHighlight(WXWORD
WXUNUSED(item
), WXWORD
WXUNUSED(flags
), WXHMENU
WXUNUSED(sysmenu
))
1692 void wxWindow::MSWOnInitMenuPopup(WXHMENU menu
, int pos
, bool isSystem
)
1696 bool wxWindow::MSWOnActivate(int state
, bool WXUNUSED(minimized
), WXHWND
WXUNUSED(activate
))
1698 wxActivateEvent
event(wxEVT_ACTIVATE
, ((state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
)),
1700 event
.SetEventObject(this);
1701 GetEventHandler()->ProcessEvent(event
);
1705 bool wxWindow::MSWOnSetFocus(WXHWND
WXUNUSED(hwnd
))
1708 if (m_caretEnabled
&& (m_caretWidth
> 0) && (m_caretHeight
> 0))
1710 ::CreateCaret((HWND
) GetHWND(), NULL
, m_caretWidth
, m_caretHeight
);
1712 ::ShowCaret((HWND
) GetHWND());
1715 // panel wants to track the window which was the last to have focus in it
1716 wxWindow
*parent
= GetParent();
1717 if ( parent
&& parent
->IsKindOf(CLASSINFO(wxPanel
)) )
1719 ((wxPanel
*)parent
)->SetLastFocus(this);
1722 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
1723 event
.SetEventObject(this);
1724 if (!GetEventHandler()->ProcessEvent(event
))
1729 bool wxWindow::MSWOnKillFocus(WXHWND
WXUNUSED(hwnd
))
1737 wxFocusEvent
event(wxEVT_KILL_FOCUS
, m_windowId
);
1738 event
.SetEventObject(this);
1739 if (!GetEventHandler()->ProcessEvent(event
))
1744 void wxWindow::MSWOnDropFiles(WXWPARAM wParam
)
1747 HDROP hFilesInfo
= (HDROP
) wParam
;
1749 DragQueryPoint(hFilesInfo
, (LPPOINT
) &dropPoint
);
1751 // Get the total number of files dropped
1752 WORD gwFilesDropped
= (WORD
)DragQueryFile ((HDROP
)hFilesInfo
,
1757 wxString
*files
= new wxString
[gwFilesDropped
];
1759 for (wIndex
=0; wIndex
< (int)gwFilesDropped
; wIndex
++)
1761 DragQueryFile (hFilesInfo
, wIndex
, (LPSTR
) wxBuffer
, 1000);
1762 files
[wIndex
] = wxBuffer
;
1764 DragFinish (hFilesInfo
);
1766 wxDropFilesEvent
event(wxEVT_DROP_FILES
, gwFilesDropped
, files
);
1767 event
.m_eventObject
= this;
1768 event
.m_pos
.x
= dropPoint
.x
; event
.m_pos
.x
= dropPoint
.y
;
1770 if (!GetEventHandler()->ProcessEvent(event
))
1776 bool wxWindow::MSWOnDrawItem(int id
, WXDRAWITEMSTRUCT
*itemStruct
)
1778 #if wxUSE_OWNER_DRAWN
1779 if ( id
== 0 ) { // is it a menu item?
1780 DRAWITEMSTRUCT
*pDrawStruct
= (DRAWITEMSTRUCT
*)itemStruct
;
1781 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pDrawStruct
->itemData
);
1782 wxCHECK( pMenuItem
->IsKindOf(CLASSINFO(wxMenuItem
)), FALSE
);
1784 // prepare to call OnDrawItem()
1786 dc
.SetHDC((WXHDC
)pDrawStruct
->hDC
, FALSE
);
1787 wxRect
rect(pDrawStruct
->rcItem
.left
, pDrawStruct
->rcItem
.top
,
1788 pDrawStruct
->rcItem
.right
- pDrawStruct
->rcItem
.left
,
1789 pDrawStruct
->rcItem
.bottom
- pDrawStruct
->rcItem
.top
);
1790 return pMenuItem
->OnDrawItem(
1792 (wxOwnerDrawn::wxODAction
)pDrawStruct
->itemAction
,
1793 (wxOwnerDrawn::wxODStatus
)pDrawStruct
->itemState
1796 #endif // owner-drawn menus
1798 wxWindow
*item
= FindItem(id
);
1799 #if wxUSE_DYNAMIC_CLASSES
1800 if (item
&& item
->IsKindOf(CLASSINFO(wxControl
)))
1802 return ((wxControl
*)item
)->MSWOnDraw(itemStruct
);
1809 bool wxWindow::MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*itemStruct
)
1811 #if wxUSE_OWNER_DRAWN
1812 if ( id
== 0 ) { // is it a menu item?
1813 MEASUREITEMSTRUCT
*pMeasureStruct
= (MEASUREITEMSTRUCT
*)itemStruct
;
1814 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pMeasureStruct
->itemData
);
1815 wxCHECK( pMenuItem
->IsKindOf(CLASSINFO(wxMenuItem
)), FALSE
);
1817 return pMenuItem
->OnMeasureItem(&pMeasureStruct
->itemWidth
,
1818 &pMeasureStruct
->itemHeight
);
1820 #endif // owner-drawn menus
1822 wxWindow
*item
= FindItem(id
);
1823 #if wxUSE_DYNAMIC_CLASSES
1824 if (item
&& item
->IsKindOf(CLASSINFO(wxControl
)))
1826 return ((wxControl
*)item
)->MSWOnMeasure(itemStruct
);
1833 WXHBRUSH
wxWindow::MSWOnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
1834 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1836 if (nCtlColor
== CTLCOLOR_DLG
)
1838 return OnCtlColor(pDC
, pWnd
, nCtlColor
, message
, wParam
, lParam
);
1841 wxControl
*item
= (wxControl
*)FindItemByHWND(pWnd
, TRUE
);
1843 WXHBRUSH hBrush
= 0;
1846 hBrush
= item
->OnCtlColor(pDC
, pWnd
, nCtlColor
, message
, wParam
, lParam
);
1848 // I think that even for dialogs, we may need to call DefWindowProc (?)
1849 // Or maybe just rely on the usual default behaviour.
1851 hBrush
= (WXHBRUSH
) MSWDefWindowProc(message
, wParam
, lParam
);
1856 // Define for each class of dialog and control
1857 WXHBRUSH
wxWindow::OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
1858 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1860 return (WXHBRUSH
) MSWDefWindowProc(message
, wParam
, lParam
);
1863 bool wxWindow::MSWOnColorChange(WXHWND hWnd
, WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1865 wxSysColourChangedEvent event
;
1866 event
.SetEventObject(this);
1868 // Check if app handles this.
1869 if (GetEventHandler()->ProcessEvent(event
))
1872 // We didn't process it
1876 long wxWindow::MSWOnPaletteChanged(WXHWND hWndPalChange
)
1878 wxPaletteChangedEvent
event(GetId());
1879 event
.SetEventObject(this);
1880 event
.SetChangedWindow(wxFindWinFromHandle(hWndPalChange
));
1881 GetEventHandler()->ProcessEvent(event
);
1885 long wxWindow::MSWOnQueryNewPalette()
1887 wxQueryNewPaletteEvent
event(GetId());
1888 event
.SetEventObject(this);
1889 if (!GetEventHandler()->ProcessEvent(event
) || !event
.GetPaletteRealized())
1891 return (long) FALSE
;
1897 // Responds to colour changes: passes event on to children.
1898 void wxWindow::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1900 wxNode
*node
= GetChildren().First();
1903 // Only propagate to non-top-level windows
1904 wxWindow
*win
= (wxWindow
*)node
->Data();
1905 if ( win
->GetParent() )
1907 wxSysColourChangedEvent event2
;
1908 event
.m_eventObject
= win
;
1909 win
->GetEventHandler()->ProcessEvent(event2
);
1912 node
= node
->Next();
1916 long wxWindow::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1919 return ::CallWindowProc(CASTWNDPROC m_oldWndProc
, (HWND
) GetHWND(), (UINT
) nMsg
, (WPARAM
) wParam
, (LPARAM
) lParam
);
1921 return ::DefWindowProc((HWND
) GetHWND(), nMsg
, wParam
, lParam
);
1924 long wxWindow::Default()
1926 // Ignore 'fake' events (perhaps generated as a result of a separate real event)
1931 wxLogTrace(wxTraceMessages
, "Forwarding %s to DefWindowProc.",
1932 wxGetMessageName(m_lastMsg
));
1933 #endif // __WXDEBUG__
1935 return this->MSWDefWindowProc(m_lastMsg
, m_lastWParam
, m_lastLParam
);
1938 bool wxWindow::MSWProcessMessage(WXMSG
* pMsg
)
1940 if ( m_hWnd
!= 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL
) ) {
1941 // intercept dialog navigation keys
1942 MSG
*msg
= (MSG
*)pMsg
;
1943 bool bProcess
= TRUE
;
1944 if ( msg
->message
!= WM_KEYDOWN
)
1947 if ( bProcess
&& (HIWORD(msg
->lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
1952 bool bCtrlDown
= (::GetKeyState(VK_CONTROL
) & 0x100) != 0;
1954 // WM_GETDLGCODE: ask the control if it wants the key for itself,
1955 // don't process it if it's the case (except for Ctrl-Tab/Enter
1956 // combinations which are always processed)
1960 lDlgCode
= ::SendMessage(msg
->hwnd
, WM_GETDLGCODE
, 0, 0);
1963 bool bForward
= TRUE
,
1964 bWindowChange
= FALSE
;
1966 switch ( msg
->wParam
)
1969 if ( lDlgCode
& DLGC_WANTTAB
) {
1973 // Ctrl-Tab cycles thru notebook pages
1974 bWindowChange
= bCtrlDown
;
1975 bForward
= !(::GetKeyState(VK_SHIFT
) & 0x100);
1981 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
1989 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
1995 if ( lDlgCode
& DLGC_WANTMESSAGE
)
1997 // control wants to process Enter itself, don't
1998 // call IsDialogMessage() which would interpret
2003 wxButton
*btnDefault
= GetDefaultItem();
2004 if ( btnDefault
&& !bCtrlDown
)
2006 // if there is a default button, Enter should
2008 (void)::SendMessage((HWND
)btnDefault
->GetHWND(),
2012 // else: but if there is not it makes sense to make it
2013 // work like a TAB - and that's what we do.
2014 // Note that Ctrl-Enter always works this way.
2024 wxNavigationKeyEvent event
;
2025 event
.SetDirection(bForward
);
2026 event
.SetWindowChange(bWindowChange
);
2027 event
.SetEventObject(this);
2029 if ( GetEventHandler()->ProcessEvent(event
) )
2034 if ( ::IsDialogMessage((HWND
)GetHWND(), msg
) )
2040 // relay mouse move events to the tooltip control
2041 MSG
*msg
= (MSG
*)pMsg
;
2042 if ( msg
->message
== WM_MOUSEMOVE
)
2043 m_tooltip
->RelayEvent(pMsg
);
2045 #endif // wxUSE_TOOLTIPS
2050 bool wxWindow::MSWTranslateMessage(WXMSG
* pMsg
)
2052 if (m_acceleratorTable
.Ok() &&
2053 ::TranslateAccelerator((HWND
) GetHWND(), (HACCEL
) m_acceleratorTable
.GetHACCEL(), (MSG
*)pMsg
))
2059 long wxWindow::MSWOnMDIActivate(long WXUNUSED(flag
), WXHWND
WXUNUSED(activate
), WXHWND
WXUNUSED(deactivate
))
2064 void wxWindow::MSWDetachWindowMenu()
2068 int N
= GetMenuItemCount((HMENU
) m_hMenu
);
2070 for (i
= 0; i
< N
; i
++)
2073 int chars
= GetMenuString((HMENU
) m_hMenu
, i
, buf
, 100, MF_BYPOSITION
);
2074 if ((chars
> 0) && (strcmp(buf
, "&Window") == 0))
2076 RemoveMenu((HMENU
) m_hMenu
, i
, MF_BYPOSITION
);
2083 bool wxWindow::MSWOnPaint()
2086 HRGN hRegion
= ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
2087 ::GetUpdateRgn((HWND
) GetHWND(), hRegion
, FALSE
);
2089 m_updateRegion
= wxRegion((WXHRGN
) hRegion
);
2092 ::GetUpdateRect((HWND
) GetHWND(), & updateRect
, FALSE
);
2094 m_updateRegion
= wxRegion(updateRect
.left
, updateRect
.top
,
2095 updateRect
.right
- updateRect
.left
, updateRect
.bottom
- updateRect
.top
);
2098 wxPaintEvent
event(m_windowId
);
2099 event
.SetEventObject(this);
2100 if (!GetEventHandler()->ProcessEvent(event
))
2105 void wxWindow::MSWOnSize(int w
, int h
, WXUINT
WXUNUSED(flag
))
2115 wxSizeEvent
event(wxSize(w
, h
), m_windowId
);
2116 event
.SetEventObject(this);
2117 if (!GetEventHandler()->ProcessEvent(event
))
2123 void wxWindow::MSWOnWindowPosChanging(void *WXUNUSED(lpPos
))
2128 // Deal with child commands from buttons etc.
2129 bool wxWindow::MSWOnCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
2131 if (wxCurrentPopupMenu
)
2133 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
2134 wxCurrentPopupMenu
= NULL
;
2135 bool succ
= popupMenu
->MSWCommand(cmd
, id
);
2139 wxWindow
*item
= FindItem(id
);
2142 bool value
= item
->MSWCommand(cmd
, id
);
2147 wxWindow
*win
= wxFindWinFromHandle(control
);
2149 return win
->MSWCommand(cmd
, id
);
2154 long wxWindow::MSWOnSysCommand(WXWPARAM wParam
, WXLPARAM lParam
)
2160 wxMaximizeEvent
event(m_windowId
);
2161 event
.SetEventObject(this);
2162 if (!GetEventHandler()->ProcessEvent(event
))
2170 wxIconizeEvent
event(m_windowId
);
2171 event
.SetEventObject(this);
2172 if (!GetEventHandler()->ProcessEvent(event
))
2184 void wxWindow::MSWOnLButtonDown(int x
, int y
, WXUINT flags
)
2186 wxMouseEvent
event(wxEVT_LEFT_DOWN
);
2188 event
.m_x
= x
; event
.m_y
= y
;
2189 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2190 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2191 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2192 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2193 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2194 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2195 event
.m_eventObject
= this;
2197 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_LEFT_DOWN
;
2199 if (!GetEventHandler()->ProcessEvent(event
))
2203 void wxWindow::MSWOnLButtonUp(int x
, int y
, WXUINT flags
)
2205 wxMouseEvent
event(wxEVT_LEFT_UP
);
2207 event
.m_x
= x
; event
.m_y
= y
;
2208 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2209 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2210 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2211 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2212 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2213 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2214 event
.m_eventObject
= this;
2216 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_LEFT_UP
;
2218 if (!GetEventHandler()->ProcessEvent(event
))
2222 void wxWindow::MSWOnLButtonDClick(int x
, int y
, WXUINT flags
)
2224 wxMouseEvent
event(wxEVT_LEFT_DCLICK
);
2226 event
.m_x
= x
; event
.m_y
= y
;
2227 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2228 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2229 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2230 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2231 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2232 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2233 event
.m_eventObject
= this;
2235 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_LEFT_DCLICK
;
2237 if (!GetEventHandler()->ProcessEvent(event
))
2241 void wxWindow::MSWOnMButtonDown(int x
, int y
, WXUINT flags
)
2243 wxMouseEvent
event(wxEVT_MIDDLE_DOWN
);
2245 event
.m_x
= x
; event
.m_y
= y
;
2246 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2247 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2248 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2249 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2250 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2251 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2252 event
.m_eventObject
= this;
2254 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_MIDDLE_DOWN
;
2256 if (!GetEventHandler()->ProcessEvent(event
))
2260 void wxWindow::MSWOnMButtonUp(int x
, int y
, WXUINT flags
)
2262 wxMouseEvent
event(wxEVT_MIDDLE_UP
);
2264 event
.m_x
= x
; event
.m_y
= y
;
2265 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2266 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2267 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2268 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2269 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2270 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2271 event
.m_eventObject
= this;
2273 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_MIDDLE_UP
;
2275 if (!GetEventHandler()->ProcessEvent(event
))
2279 void wxWindow::MSWOnMButtonDClick(int x
, int y
, WXUINT flags
)
2281 wxMouseEvent
event(wxEVT_MIDDLE_DCLICK
);
2283 event
.m_x
= x
; event
.m_y
= y
;
2284 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2285 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2286 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2287 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2288 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2289 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2290 event
.m_eventObject
= this;
2292 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_MIDDLE_DCLICK
;
2294 if (!GetEventHandler()->ProcessEvent(event
))
2298 void wxWindow::MSWOnRButtonDown(int x
, int y
, WXUINT flags
)
2300 wxMouseEvent
event(wxEVT_RIGHT_DOWN
);
2302 event
.m_x
= x
; event
.m_y
= y
;
2303 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2304 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2305 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2306 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2307 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2308 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2309 event
.m_eventObject
= this;
2311 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_RIGHT_DOWN
;
2313 if (!GetEventHandler()->ProcessEvent(event
))
2317 void wxWindow::MSWOnRButtonUp(int x
, int y
, WXUINT flags
)
2319 wxMouseEvent
event(wxEVT_RIGHT_UP
);
2321 event
.m_x
= x
; event
.m_y
= y
;
2322 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2323 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2324 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2325 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2326 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2327 event
.m_eventObject
= this;
2328 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2330 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_RIGHT_UP
;
2332 if (!GetEventHandler()->ProcessEvent(event
))
2336 void wxWindow::MSWOnRButtonDClick(int x
, int y
, WXUINT flags
)
2338 wxMouseEvent
event(wxEVT_RIGHT_DCLICK
);
2340 event
.m_x
= x
; event
.m_y
= y
;
2341 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2342 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2343 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2344 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2345 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2346 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2347 event
.m_eventObject
= this;
2349 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_RIGHT_DCLICK
;
2351 if (!GetEventHandler()->ProcessEvent(event
))
2355 void wxWindow::MSWOnMouseMove(int x
, int y
, WXUINT flags
)
2357 // 'normal' move event...
2358 // Set cursor, but only if we're not in 'busy' mode
2360 // Trouble with this is that it sets the cursor for controls too :-(
2361 if (m_windowCursor
.Ok() && !wxIsBusy())
2362 ::SetCursor((HCURSOR
) m_windowCursor
.GetHCURSOR());
2364 if (!m_mouseInWindow
)
2366 // Generate an ENTER event
2367 m_mouseInWindow
= TRUE
;
2368 MSWOnMouseEnter(x
, y
, flags
);
2371 wxMouseEvent
event(wxEVT_MOTION
);
2373 event
.m_x
= x
; event
.m_y
= y
;
2374 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2375 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2376 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2377 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2378 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2379 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2380 event
.m_eventObject
= this;
2382 // Window gets a click down message followed by a mouse move
2383 // message even if position isn't changed! We want to discard
2384 // the trailing move event if x and y are the same.
2385 if ((m_lastEvent
== wxEVT_RIGHT_DOWN
|| m_lastEvent
== wxEVT_LEFT_DOWN
||
2386 m_lastEvent
== wxEVT_MIDDLE_DOWN
) &&
2387 (m_lastXPos
== event
.m_x
&& m_lastYPos
== event
.m_y
))
2389 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2390 m_lastEvent
= wxEVT_MOTION
;
2394 m_lastEvent
= wxEVT_MOTION
;
2395 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2397 if (!GetEventHandler()->ProcessEvent(event
))
2401 void wxWindow::MSWOnMouseEnter(int x
, int y
, WXUINT flags
)
2403 wxMouseEvent
event(wxEVT_ENTER_WINDOW
);
2405 event
.m_x
= x
; event
.m_y
= y
;
2406 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2407 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2408 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2409 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2410 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2411 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2412 event
.m_eventObject
= this;
2414 m_lastEvent
= wxEVT_ENTER_WINDOW
;
2415 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2416 // No message - ensure we don't try to call the default behaviour accidentally.
2418 GetEventHandler()->ProcessEvent(event
);
2421 void wxWindow::MSWOnMouseLeave(int x
, int y
, WXUINT flags
)
2423 wxMouseEvent
event(wxEVT_LEAVE_WINDOW
);
2425 event
.m_x
= x
; event
.m_y
= y
;
2426 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2427 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2428 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2429 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2430 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2431 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2432 event
.m_eventObject
= this;
2434 m_lastEvent
= wxEVT_LEAVE_WINDOW
;
2435 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2436 // No message - ensure we don't try to call the default behaviour accidentally.
2438 GetEventHandler()->ProcessEvent(event
);
2441 void wxWindow::MSWOnChar(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
)
2444 bool tempControlDown
= FALSE
;
2447 // If 1 -> 26, translate to CTRL plus a letter.
2449 if ((id
> 0) && (id
< 27))
2470 tempControlDown
= TRUE
;
2476 else if ((id
= wxCharCodeMSWToWX(wParam
)) == 0) {
2477 // it's ASCII and will be processed here only when called from
2478 // WM_CHAR (i.e. when isASCII = TRUE)
2484 wxKeyEvent
event(wxEVT_CHAR
);
2485 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
2486 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
2487 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
2488 event
.m_altDown
= TRUE
;
2490 event
.m_eventObject
= this;
2491 event
.m_keyCode
= id
;
2492 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2497 GetWindowRect((HWND
) GetHWND(),&rect
) ;
2501 event
.m_x
= pt
.x
; event
.m_y
= pt
.y
;
2503 if (!GetEventHandler()->ProcessEvent(event
))
2508 void wxWindow::MSWOnKeyDown(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
)
2512 if ((id
= wxCharCodeMSWToWX(wParam
)) == 0) {
2518 wxKeyEvent
event(wxEVT_KEY_DOWN
);
2519 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
2520 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
2521 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
2522 event
.m_altDown
= TRUE
;
2524 event
.m_eventObject
= this;
2525 event
.m_keyCode
= id
;
2526 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2531 GetWindowRect((HWND
) GetHWND(),&rect
) ;
2535 event
.m_x
= pt
.x
; event
.m_y
= pt
.y
;
2537 if (!GetEventHandler()->ProcessEvent(event
))
2542 void wxWindow::MSWOnKeyUp(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
)
2546 if ((id
= wxCharCodeMSWToWX(wParam
)) == 0) {
2552 wxKeyEvent
event(wxEVT_KEY_UP
);
2553 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
2554 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
2555 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
2556 event
.m_altDown
= TRUE
;
2558 event
.m_eventObject
= this;
2559 event
.m_keyCode
= id
;
2560 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2565 GetWindowRect((HWND
) GetHWND(),&rect
) ;
2569 event
.m_x
= pt
.x
; event
.m_y
= pt
.y
;
2571 if (!GetEventHandler()->ProcessEvent(event
))
2576 void wxWindow::MSWOnJoyDown(int joystick
, int x
, int y
, WXUINT flags
)
2580 if (flags
& JOY_BUTTON1CHG
)
2581 change
= wxJOY_BUTTON1
;
2582 if (flags
& JOY_BUTTON2CHG
)
2583 change
= wxJOY_BUTTON2
;
2584 if (flags
& JOY_BUTTON3CHG
)
2585 change
= wxJOY_BUTTON3
;
2586 if (flags
& JOY_BUTTON4CHG
)
2587 change
= wxJOY_BUTTON4
;
2589 if (flags
& JOY_BUTTON1
)
2590 buttons
|= wxJOY_BUTTON1
;
2591 if (flags
& JOY_BUTTON2
)
2592 buttons
|= wxJOY_BUTTON2
;
2593 if (flags
& JOY_BUTTON3
)
2594 buttons
|= wxJOY_BUTTON3
;
2595 if (flags
& JOY_BUTTON4
)
2596 buttons
|= wxJOY_BUTTON4
;
2598 wxJoystickEvent
event(wxEVT_JOY_BUTTON_DOWN
, buttons
, joystick
, change
);
2599 event
.SetPosition(wxPoint(x
, y
));
2600 event
.SetEventObject(this);
2602 GetEventHandler()->ProcessEvent(event
);
2605 void wxWindow::MSWOnJoyUp(int joystick
, int x
, int y
, WXUINT flags
)
2609 if (flags
& JOY_BUTTON1CHG
)
2610 change
= wxJOY_BUTTON1
;
2611 if (flags
& JOY_BUTTON2CHG
)
2612 change
= wxJOY_BUTTON2
;
2613 if (flags
& JOY_BUTTON3CHG
)
2614 change
= wxJOY_BUTTON3
;
2615 if (flags
& JOY_BUTTON4CHG
)
2616 change
= wxJOY_BUTTON4
;
2618 if (flags
& JOY_BUTTON1
)
2619 buttons
|= wxJOY_BUTTON1
;
2620 if (flags
& JOY_BUTTON2
)
2621 buttons
|= wxJOY_BUTTON2
;
2622 if (flags
& JOY_BUTTON3
)
2623 buttons
|= wxJOY_BUTTON3
;
2624 if (flags
& JOY_BUTTON4
)
2625 buttons
|= wxJOY_BUTTON4
;
2627 wxJoystickEvent
event(wxEVT_JOY_BUTTON_UP
, buttons
, joystick
, change
);
2628 event
.SetPosition(wxPoint(x
, y
));
2629 event
.SetEventObject(this);
2631 GetEventHandler()->ProcessEvent(event
);
2634 void wxWindow::MSWOnJoyMove(int joystick
, int x
, int y
, WXUINT flags
)
2637 if (flags
& JOY_BUTTON1
)
2638 buttons
|= wxJOY_BUTTON1
;
2639 if (flags
& JOY_BUTTON2
)
2640 buttons
|= wxJOY_BUTTON2
;
2641 if (flags
& JOY_BUTTON3
)
2642 buttons
|= wxJOY_BUTTON3
;
2643 if (flags
& JOY_BUTTON4
)
2644 buttons
|= wxJOY_BUTTON4
;
2646 wxJoystickEvent
event(wxEVT_JOY_MOVE
, buttons
, joystick
, 0);
2647 event
.SetPosition(wxPoint(x
, y
));
2648 event
.SetEventObject(this);
2650 GetEventHandler()->ProcessEvent(event
);
2653 void wxWindow::MSWOnJoyZMove(int joystick
, int z
, WXUINT flags
)
2656 if (flags
& JOY_BUTTON1
)
2657 buttons
|= wxJOY_BUTTON1
;
2658 if (flags
& JOY_BUTTON2
)
2659 buttons
|= wxJOY_BUTTON2
;
2660 if (flags
& JOY_BUTTON3
)
2661 buttons
|= wxJOY_BUTTON3
;
2662 if (flags
& JOY_BUTTON4
)
2663 buttons
|= wxJOY_BUTTON4
;
2665 wxJoystickEvent
event(wxEVT_JOY_ZMOVE
, buttons
, joystick
, 0);
2666 event
.SetZPosition(z
);
2667 event
.SetEventObject(this);
2669 GetEventHandler()->ProcessEvent(event
);
2672 void wxWindow::MSWOnVScroll(WXWORD wParam
, WXWORD pos
, WXHWND control
)
2676 wxWindow
*child
= wxFindWinFromHandle(control
);
2678 child
->MSWOnVScroll(wParam
, pos
, control
);
2682 wxScrollEvent event
;
2683 event
.SetPosition(pos
);
2684 event
.SetOrientation(wxVERTICAL
);
2685 event
.m_eventObject
= this;
2690 event
.m_eventType
= wxEVT_SCROLL_TOP
;
2694 event
.m_eventType
= wxEVT_SCROLL_BOTTOM
;
2698 event
.m_eventType
= wxEVT_SCROLL_LINEUP
;
2702 event
.m_eventType
= wxEVT_SCROLL_LINEDOWN
;
2706 event
.m_eventType
= wxEVT_SCROLL_PAGEUP
;
2710 event
.m_eventType
= wxEVT_SCROLL_PAGEDOWN
;
2714 case SB_THUMBPOSITION
:
2715 event
.m_eventType
= wxEVT_SCROLL_THUMBTRACK
;
2723 if (!GetEventHandler()->ProcessEvent(event
))
2727 void wxWindow::MSWOnHScroll( WXWORD wParam
, WXWORD pos
, WXHWND control
)
2731 wxWindow
*child
= wxFindWinFromHandle(control
);
2733 child
->MSWOnHScroll(wParam
, pos
, control
);
2739 wxScrollEvent event
;
2740 event
.SetPosition(pos
);
2741 event
.SetOrientation(wxHORIZONTAL
);
2742 event
.m_eventObject
= this;
2747 event
.m_eventType
= wxEVT_SCROLL_TOP
;
2751 event
.m_eventType
= wxEVT_SCROLL_BOTTOM
;
2755 event
.m_eventType
= wxEVT_SCROLL_LINEUP
;
2759 event
.m_eventType
= wxEVT_SCROLL_LINEDOWN
;
2763 event
.m_eventType
= wxEVT_SCROLL_PAGEUP
;
2767 event
.m_eventType
= wxEVT_SCROLL_PAGEDOWN
;
2771 case SB_THUMBPOSITION
:
2772 event
.m_eventType
= wxEVT_SCROLL_THUMBTRACK
;
2779 if ( GetEventHandler()->ProcessEvent(event
) )
2783 // call the default WM_HSCROLL handler: it's non trivial in some common
2784 // controls (up-down control for example)
2788 void wxWindow::MSWOnShow(bool show
, int status
)
2790 wxShowEvent
event(GetId(), show
);
2791 event
.m_eventObject
= this;
2792 GetEventHandler()->ProcessEvent(event
);
2795 bool wxWindow::MSWOnInitDialog(WXHWND
WXUNUSED(hWndFocus
))
2797 wxInitDialogEvent
event(GetId());
2798 event
.m_eventObject
= this;
2799 GetEventHandler()->ProcessEvent(event
);
2803 void wxWindow::InitDialog()
2805 wxInitDialogEvent
event(GetId());
2806 event
.SetEventObject( this );
2807 GetEventHandler()->ProcessEvent(event
);
2810 // Default init dialog behaviour is to transfer data to window
2811 void wxWindow::OnInitDialog(wxInitDialogEvent
& event
)
2813 TransferDataToWindow();
2816 void wxGetCharSize(WXHWND wnd
, int *x
, int *y
,wxFont
*the_font
)
2819 HDC dc
= ::GetDC((HWND
) wnd
);
2824 // the_font->UseResource();
2825 // the_font->RealizeResource();
2826 fnt
= (HFONT
)the_font
->GetResourceHandle();
2828 was
= (HFONT
) SelectObject(dc
,fnt
) ;
2830 GetTextMetrics(dc
, &tm
);
2831 if (the_font
&& fnt
&& was
)
2833 SelectObject(dc
,was
) ;
2835 ReleaseDC((HWND
)wnd
, dc
);
2836 *x
= tm
.tmAveCharWidth
;
2837 *y
= tm
.tmHeight
+ tm
.tmExternalLeading
;
2840 // the_font->ReleaseResource();
2843 // Returns 0 if was a normal ASCII value, not a special key. This indicates that
2844 // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
2845 int wxCharCodeMSWToWX(int keySym
)
2850 case VK_CANCEL
: id
= WXK_CANCEL
; break;
2851 case VK_BACK
: id
= WXK_BACK
; break;
2852 case VK_TAB
: id
= WXK_TAB
; break;
2853 case VK_CLEAR
: id
= WXK_CLEAR
; break;
2854 case VK_RETURN
: id
= WXK_RETURN
; break;
2855 case VK_SHIFT
: id
= WXK_SHIFT
; break;
2856 case VK_CONTROL
: id
= WXK_CONTROL
; break;
2857 case VK_MENU
: id
= WXK_MENU
; break;
2858 case VK_PAUSE
: id
= WXK_PAUSE
; break;
2859 case VK_SPACE
: id
= WXK_SPACE
; break;
2860 case VK_ESCAPE
: id
= WXK_ESCAPE
; break;
2861 case VK_PRIOR
: id
= WXK_PRIOR
; break;
2862 case VK_NEXT
: id
= WXK_NEXT
; break;
2863 case VK_END
: id
= WXK_END
; break;
2864 case VK_HOME
: id
= WXK_HOME
; break;
2865 case VK_LEFT
: id
= WXK_LEFT
; break;
2866 case VK_UP
: id
= WXK_UP
; break;
2867 case VK_RIGHT
: id
= WXK_RIGHT
; break;
2868 case VK_DOWN
: id
= WXK_DOWN
; break;
2869 case VK_SELECT
: id
= WXK_SELECT
; break;
2870 case VK_PRINT
: id
= WXK_PRINT
; break;
2871 case VK_EXECUTE
: id
= WXK_EXECUTE
; break;
2872 case VK_INSERT
: id
= WXK_INSERT
; break;
2873 case VK_DELETE
: id
= WXK_DELETE
; break;
2874 case VK_HELP
: id
= WXK_HELP
; break;
2875 case VK_NUMPAD0
: id
= WXK_NUMPAD0
; break;
2876 case VK_NUMPAD1
: id
= WXK_NUMPAD1
; break;
2877 case VK_NUMPAD2
: id
= WXK_NUMPAD2
; break;
2878 case VK_NUMPAD3
: id
= WXK_NUMPAD3
; break;
2879 case VK_NUMPAD4
: id
= WXK_NUMPAD4
; break;
2880 case VK_NUMPAD5
: id
= WXK_NUMPAD5
; break;
2881 case VK_NUMPAD6
: id
= WXK_NUMPAD6
; break;
2882 case VK_NUMPAD7
: id
= WXK_NUMPAD7
; break;
2883 case VK_NUMPAD8
: id
= WXK_NUMPAD8
; break;
2884 case VK_NUMPAD9
: id
= WXK_NUMPAD9
; break;
2885 case VK_MULTIPLY
: id
= WXK_MULTIPLY
; break;
2886 case VK_ADD
: id
= WXK_ADD
; break;
2887 case VK_SUBTRACT
: id
= WXK_SUBTRACT
; break;
2888 case VK_DECIMAL
: id
= WXK_DECIMAL
; break;
2889 case VK_DIVIDE
: id
= WXK_DIVIDE
; break;
2890 case VK_F1
: id
= WXK_F1
; break;
2891 case VK_F2
: id
= WXK_F2
; break;
2892 case VK_F3
: id
= WXK_F3
; break;
2893 case VK_F4
: id
= WXK_F4
; break;
2894 case VK_F5
: id
= WXK_F5
; break;
2895 case VK_F6
: id
= WXK_F6
; break;
2896 case VK_F7
: id
= WXK_F7
; break;
2897 case VK_F8
: id
= WXK_F8
; break;
2898 case VK_F9
: id
= WXK_F9
; break;
2899 case VK_F10
: id
= WXK_F10
; break;
2900 case VK_F11
: id
= WXK_F11
; break;
2901 case VK_F12
: id
= WXK_F12
; break;
2902 case VK_F13
: id
= WXK_F13
; break;
2903 case VK_F14
: id
= WXK_F14
; break;
2904 case VK_F15
: id
= WXK_F15
; break;
2905 case VK_F16
: id
= WXK_F16
; break;
2906 case VK_F17
: id
= WXK_F17
; break;
2907 case VK_F18
: id
= WXK_F18
; break;
2908 case VK_F19
: id
= WXK_F19
; break;
2909 case VK_F20
: id
= WXK_F20
; break;
2910 case VK_F21
: id
= WXK_F21
; break;
2911 case VK_F22
: id
= WXK_F22
; break;
2912 case VK_F23
: id
= WXK_F23
; break;
2913 case VK_F24
: id
= WXK_F24
; break;
2914 case VK_NUMLOCK
: id
= WXK_NUMLOCK
; break;
2915 case VK_SCROLL
: id
= WXK_SCROLL
; break;
2924 int wxCharCodeWXToMSW(int id
, bool *isVirtual
)
2930 case WXK_CANCEL
: keySym
= VK_CANCEL
; break;
2931 case WXK_CLEAR
: keySym
= VK_CLEAR
; break;
2932 case WXK_SHIFT
: keySym
= VK_SHIFT
; break;
2933 case WXK_CONTROL
: keySym
= VK_CONTROL
; break;
2934 case WXK_MENU
: keySym
= VK_MENU
; break;
2935 case WXK_PAUSE
: keySym
= VK_PAUSE
; break;
2936 case WXK_PRIOR
: keySym
= VK_PRIOR
; break;
2937 case WXK_NEXT
: keySym
= VK_NEXT
; break;
2938 case WXK_END
: keySym
= VK_END
; break;
2939 case WXK_HOME
: keySym
= VK_HOME
; break;
2940 case WXK_LEFT
: keySym
= VK_LEFT
; break;
2941 case WXK_UP
: keySym
= VK_UP
; break;
2942 case WXK_RIGHT
: keySym
= VK_RIGHT
; break;
2943 case WXK_DOWN
: keySym
= VK_DOWN
; break;
2944 case WXK_SELECT
: keySym
= VK_SELECT
; break;
2945 case WXK_PRINT
: keySym
= VK_PRINT
; break;
2946 case WXK_EXECUTE
: keySym
= VK_EXECUTE
; break;
2947 case WXK_INSERT
: keySym
= VK_INSERT
; break;
2948 case WXK_DELETE
: keySym
= VK_DELETE
; break;
2949 case WXK_HELP
: keySym
= VK_HELP
; break;
2950 case WXK_NUMPAD0
: keySym
= VK_NUMPAD0
; break;
2951 case WXK_NUMPAD1
: keySym
= VK_NUMPAD1
; break;
2952 case WXK_NUMPAD2
: keySym
= VK_NUMPAD2
; break;
2953 case WXK_NUMPAD3
: keySym
= VK_NUMPAD3
; break;
2954 case WXK_NUMPAD4
: keySym
= VK_NUMPAD4
; break;
2955 case WXK_NUMPAD5
: keySym
= VK_NUMPAD5
; break;
2956 case WXK_NUMPAD6
: keySym
= VK_NUMPAD6
; break;
2957 case WXK_NUMPAD7
: keySym
= VK_NUMPAD7
; break;
2958 case WXK_NUMPAD8
: keySym
= VK_NUMPAD8
; break;
2959 case WXK_NUMPAD9
: keySym
= VK_NUMPAD9
; break;
2960 case WXK_MULTIPLY
: keySym
= VK_MULTIPLY
; break;
2961 case WXK_ADD
: keySym
= VK_ADD
; break;
2962 case WXK_SUBTRACT
: keySym
= VK_SUBTRACT
; break;
2963 case WXK_DECIMAL
: keySym
= VK_DECIMAL
; break;
2964 case WXK_DIVIDE
: keySym
= VK_DIVIDE
; break;
2965 case WXK_F1
: keySym
= VK_F1
; break;
2966 case WXK_F2
: keySym
= VK_F2
; break;
2967 case WXK_F3
: keySym
= VK_F3
; break;
2968 case WXK_F4
: keySym
= VK_F4
; break;
2969 case WXK_F5
: keySym
= VK_F5
; break;
2970 case WXK_F6
: keySym
= VK_F6
; break;
2971 case WXK_F7
: keySym
= VK_F7
; break;
2972 case WXK_F8
: keySym
= VK_F8
; break;
2973 case WXK_F9
: keySym
= VK_F9
; break;
2974 case WXK_F10
: keySym
= VK_F10
; break;
2975 case WXK_F11
: keySym
= VK_F11
; break;
2976 case WXK_F12
: keySym
= VK_F12
; break;
2977 case WXK_F13
: keySym
= VK_F13
; break;
2978 case WXK_F14
: keySym
= VK_F14
; break;
2979 case WXK_F15
: keySym
= VK_F15
; break;
2980 case WXK_F16
: keySym
= VK_F16
; break;
2981 case WXK_F17
: keySym
= VK_F17
; break;
2982 case WXK_F18
: keySym
= VK_F18
; break;
2983 case WXK_F19
: keySym
= VK_F19
; break;
2984 case WXK_F20
: keySym
= VK_F20
; break;
2985 case WXK_F21
: keySym
= VK_F21
; break;
2986 case WXK_F22
: keySym
= VK_F22
; break;
2987 case WXK_F23
: keySym
= VK_F23
; break;
2988 case WXK_F24
: keySym
= VK_F24
; break;
2989 case WXK_NUMLOCK
: keySym
= VK_NUMLOCK
; break;
2990 case WXK_SCROLL
: keySym
= VK_SCROLL
; break;
3001 // Caret manipulation
3002 void wxWindow::CreateCaret(int w
, int h
)
3006 m_caretEnabled
= TRUE
;
3009 void wxWindow::CreateCaret(const wxBitmap
*WXUNUSED(bitmap
))
3014 void wxWindow::ShowCaret(bool show
)
3019 ::ShowCaret((HWND
) GetHWND());
3021 ::HideCaret((HWND
) GetHWND());
3022 m_caretShown
= show
;
3026 void wxWindow::DestroyCaret()
3028 m_caretEnabled
= FALSE
;
3031 void wxWindow::SetCaretPos(int x
, int y
)
3033 ::SetCaretPos(x
, y
);
3036 void wxWindow::GetCaretPos(int *x
, int *y
) const
3039 ::GetCaretPos(&point
);
3044 wxWindow
*wxGetActiveWindow()
3046 HWND hWnd
= GetActiveWindow();
3049 return wxFindWinFromHandle((WXHWND
) hWnd
);
3054 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
3055 // in active frames and dialogs, regardless of where the focus is.
3056 static HHOOK wxTheKeyboardHook
= 0;
3057 static FARPROC wxTheKeyboardHookProc
= 0;
3058 int APIENTRY _EXPORT
3059 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
);
3061 void wxSetKeyboardHook(bool doIt
)
3065 wxTheKeyboardHookProc
= MakeProcInstance((FARPROC
) wxKeyboardHook
, wxGetInstance());
3066 wxTheKeyboardHook
= SetWindowsHookEx(WH_KEYBOARD
, (HOOKPROC
) wxTheKeyboardHookProc
, wxGetInstance(),
3067 #if defined(__WIN32__) && !defined(__TWIN32__)
3068 GetCurrentThreadId());
3069 // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right?
3076 UnhookWindowsHookEx(wxTheKeyboardHook
);
3077 FreeProcInstance(wxTheKeyboardHookProc
);
3081 int APIENTRY _EXPORT
3082 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
)
3084 DWORD hiWord
= HIWORD(lParam
);
3085 if (nCode
!= HC_NOREMOVE
&& ((hiWord
& KF_UP
) == 0))
3088 if ((id
= wxCharCodeMSWToWX(wParam
)) != 0)
3090 wxKeyEvent
event(wxEVT_CHAR_HOOK
);
3091 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
3092 event
.m_altDown
= TRUE
;
3094 event
.m_eventObject
= NULL
;
3095 event
.m_keyCode
= id
;
3096 /* begin Albert's fix for control and shift key 26.5 */
3097 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
3098 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
3099 /* end Albert's fix for control and shift key 26.5 */
3100 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
3102 wxWindow
*win
= wxGetActiveWindow();
3105 if (win
->GetEventHandler()->ProcessEvent(event
))
3110 if ( wxTheApp
&& wxTheApp
->ProcessEvent(event
) )
3115 return (int)CallNextHookEx(wxTheKeyboardHook
, nCode
, wParam
, lParam
);
3118 void wxWindow::SetSizeHints(int minW
, int minH
, int maxW
, int maxH
, int WXUNUSED(incW
), int WXUNUSED(incH
))
3126 void wxWindow::Centre(int direction
)
3128 int x
, y
, width
, height
, panel_width
, panel_height
, new_x
, new_y
;
3130 wxWindow
*father
= (wxWindow
*)GetParent();
3134 father
->GetClientSize(&panel_width
, &panel_height
);
3135 GetSize(&width
, &height
);
3136 GetPosition(&x
, &y
);
3141 if (direction
& wxHORIZONTAL
)
3142 new_x
= (int)((panel_width
- width
)/2);
3144 if (direction
& wxVERTICAL
)
3145 new_y
= (int)((panel_height
- height
)/2);
3147 SetSize(new_x
, new_y
, -1, -1);
3151 void wxWindow::WarpPointer (int x_pos
, int y_pos
)
3153 // Move the pointer to (x_pos,y_pos) coordinates. They are expressed in
3154 // pixel coordinates, relatives to the canvas -- So, we first need to
3155 // substract origin of the window, then convert to screen position
3157 int x
= x_pos
; int y
= y_pos
;
3159 GetWindowRect ((HWND
) GetHWND(), &rect
);
3164 SetCursorPos (x
, y
);
3167 void wxWindow::MSWDeviceToLogical (float *x
, float *y
) const
3171 bool wxWindow::MSWOnEraseBkgnd (WXHDC pDC
)
3179 wxEraseEvent
event(m_windowId
, &dc
);
3180 event
.m_eventObject
= this;
3181 if (!GetEventHandler()->ProcessEvent(event
))
3184 dc
.SelectOldObjects(pDC
);
3190 dc
.SelectOldObjects(pDC
);
3193 dc
.SetHDC((WXHDC
) NULL
);
3197 void wxWindow::OnEraseBackground(wxEraseEvent
& event
)
3203 ::GetClientRect((HWND
) GetHWND(), &rect
);
3205 COLORREF ref
= PALETTERGB(m_backgroundColour
.Red(), m_backgroundColour
.Green(), m_backgroundColour
.Blue()) ;
3206 HBRUSH hBrush
= ::CreateSolidBrush(ref
);
3207 int mode
= ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), MM_TEXT
);
3209 // ::GetClipBox((HDC) event.GetDC()->GetHDC(), &rect);
3210 ::FillRect ((HDC
) event
.GetDC()->GetHDC(), &rect
, hBrush
);
3211 ::DeleteObject(hBrush
);
3212 ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), mode
);
3214 // Less efficient version (and doesn't account for scrolling)
3216 GetClientSize(& w, & h);
3217 wxBrush *brush = wxTheBrushList->FindOrCreateBrush(& GetBackgroundColour(), wxSOLID);
3218 event.GetDC()->SetBrush(brush);
3219 event.GetDC()->SetPen(wxTRANSPARENT_PEN);
3221 event.GetDC()->DrawRectangle(0, 0, w+1, h+1);
3225 #if WXWIN_COMPATIBILITY
3226 void wxWindow::SetScrollRange(int orient
, int range
, bool refresh
)
3228 #if defined(__WIN95__)
3232 // Try to adjust the range to cope with page size > 1
3233 // - a Windows API quirk
3234 int pageSize
= GetScrollPage(orient
);
3235 if ( pageSize
> 1 && range
> 0)
3237 range1
+= (pageSize
- 1);
3243 if (orient
== wxHORIZONTAL
) {
3249 info
.cbSize
= sizeof(SCROLLINFO
);
3250 info
.nPage
= pageSize
; // Have to set this, or scrollbar goes awry
3254 info
.fMask
= SIF_RANGE
| SIF_PAGE
;
3256 HWND hWnd
= (HWND
) GetHWND();
3258 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3261 if (orient
== wxHORIZONTAL
)
3266 HWND hWnd
= (HWND
) GetHWND();
3268 ::SetScrollRange(hWnd
, wOrient
, 0, range
, refresh
);
3272 void wxWindow::SetScrollPage(int orient
, int page
, bool refresh
)
3274 #if defined(__WIN95__)
3278 if (orient
== wxHORIZONTAL
) {
3280 m_xThumbSize
= page
;
3283 m_yThumbSize
= page
;
3286 info
.cbSize
= sizeof(SCROLLINFO
);
3289 info
.fMask
= SIF_PAGE
;
3291 HWND hWnd
= (HWND
) GetHWND();
3293 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3295 if (orient
== wxHORIZONTAL
)
3296 m_xThumbSize
= page
;
3298 m_yThumbSize
= page
;
3302 int wxWindow::OldGetScrollRange(int orient
) const
3305 if (orient
== wxHORIZONTAL
)
3310 #if __WATCOMC__ && defined(__WINDOWS_386__)
3311 short minPos
, maxPos
;
3315 HWND hWnd
= (HWND
) GetHWND();
3318 ::GetScrollRange(hWnd
, wOrient
, &minPos
, &maxPos
);
3319 #if defined(__WIN95__)
3320 // Try to adjust the range to cope with page size > 1
3321 // - a Windows API quirk
3322 int pageSize
= GetScrollPage(orient
);
3325 maxPos
-= (pageSize
- 1);
3334 int wxWindow::GetScrollPage(int orient
) const
3336 if (orient
== wxHORIZONTAL
)
3337 return m_xThumbSize
;
3339 return m_yThumbSize
;
3343 int wxWindow::GetScrollPos(int orient
) const
3346 if (orient
== wxHORIZONTAL
)
3350 HWND hWnd
= (HWND
) GetHWND();
3353 return ::GetScrollPos(hWnd
, wOrient
);
3359 // This now returns the whole range, not just the number
3360 // of positions that we can scroll.
3361 int wxWindow::GetScrollRange(int orient
) const
3364 if (orient
== wxHORIZONTAL
)
3369 #if __WATCOMC__ && defined(__WINDOWS_386__)
3370 short minPos
, maxPos
;
3374 HWND hWnd
= (HWND
) GetHWND();
3377 ::GetScrollRange(hWnd
, wOrient
, &minPos
, &maxPos
);
3378 #if defined(__WIN95__)
3379 // Try to adjust the range to cope with page size > 1
3380 // - a Windows API quirk
3381 int pageSize
= GetScrollThumb(orient
);
3384 maxPos
-= (pageSize
- 1);
3386 // October 10th: new range concept.
3396 int wxWindow::GetScrollThumb(int orient
) const
3398 if (orient
== wxHORIZONTAL
)
3399 return m_xThumbSize
;
3401 return m_yThumbSize
;
3404 void wxWindow::SetScrollPos(int orient
, int pos
, bool refresh
)
3406 #if defined(__WIN95__)
3410 if (orient
== wxHORIZONTAL
) {
3416 info
.cbSize
= sizeof(SCROLLINFO
);
3420 info
.fMask
= SIF_POS
;
3422 HWND hWnd
= (HWND
) GetHWND();
3424 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3427 if (orient
== wxHORIZONTAL
)
3432 HWND hWnd
= (HWND
) GetHWND();
3434 ::SetScrollPos(hWnd
, wOrient
, pos
, refresh
);
3438 // New function that will replace some of the above.
3439 void wxWindow::SetScrollbar(int orient
, int pos
, int thumbVisible
,
3440 int range
, bool refresh
)
3443 SetScrollPage(orient, thumbVisible, FALSE);
3445 int oldRange = range - thumbVisible ;
3446 SetScrollRange(orient, oldRange, FALSE);
3448 SetScrollPos(orient, pos, refresh);
3450 #if defined(__WIN95__)
3451 int oldRange
= range
- thumbVisible
;
3453 int range1
= oldRange
;
3455 // Try to adjust the range to cope with page size > 1
3456 // - a Windows API quirk
3457 int pageSize
= thumbVisible
;
3458 if ( pageSize
> 1 && range
> 0)
3460 range1
+= (pageSize
- 1);
3466 if (orient
== wxHORIZONTAL
) {
3472 info
.cbSize
= sizeof(SCROLLINFO
);
3473 info
.nPage
= pageSize
; // Have to set this, or scrollbar goes awry
3477 info
.fMask
= SIF_RANGE
| SIF_PAGE
| SIF_POS
;
3479 HWND hWnd
= (HWND
) GetHWND();
3481 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3484 if (orient
== wxHORIZONTAL
)
3489 HWND hWnd
= (HWND
) GetHWND();
3492 ::SetScrollRange(hWnd
, wOrient
, 0, range
, FALSE
);
3493 ::SetScrollPos(hWnd
, wOrient
, pos
, refresh
);
3496 if (orient
== wxHORIZONTAL
) {
3497 m_xThumbSize
= thumbVisible
;
3499 m_yThumbSize
= thumbVisible
;
3503 void wxWindow::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
3508 rect2
.left
= rect
->x
;
3509 rect2
.top
= rect
->y
;
3510 rect2
.right
= rect
->x
+ rect
->width
;
3511 rect2
.bottom
= rect
->y
+ rect
->height
;
3515 ::ScrollWindow((HWND
) GetHWND(), dx
, dy
, &rect2
, NULL
);
3517 ::ScrollWindow((HWND
) GetHWND(), dx
, dy
, NULL
, NULL
);
3520 void wxWindow::SetFont(const wxFont
& font
)
3522 m_windowFont
= font
;
3524 if (!m_windowFont
.Ok())
3527 HWND hWnd
= (HWND
) GetHWND();
3530 if (m_windowFont
.GetResourceHandle())
3531 SendMessage(hWnd
, WM_SETFONT
,
3532 (WPARAM
)m_windowFont
.GetResourceHandle(),TRUE
);
3536 void wxWindow::SubclassWin(WXHWND hWnd
)
3538 wxASSERT_MSG( !m_oldWndProc
, "subclassing window twice?" );
3540 wxAssociateWinWithHandle((HWND
)hWnd
, this);
3542 m_oldWndProc
= (WXFARPROC
) GetWindowLong((HWND
) hWnd
, GWL_WNDPROC
);
3543 SetWindowLong((HWND
) hWnd
, GWL_WNDPROC
, (LONG
) wxWndProc
);
3546 void wxWindow::UnsubclassWin()
3548 wxRemoveHandleAssociation(this);
3550 // Restore old Window proc
3551 if ((HWND
) GetHWND())
3553 FARPROC farProc
= (FARPROC
) GetWindowLong((HWND
) GetHWND(), GWL_WNDPROC
);
3554 if ((m_oldWndProc
!= 0) && (farProc
!= (FARPROC
) m_oldWndProc
))
3556 SetWindowLong((HWND
) GetHWND(), GWL_WNDPROC
, (LONG
) m_oldWndProc
);
3562 // Make a Windows extended style from the given wxWindows window style
3563 WXDWORD
wxWindow::MakeExtendedStyle(long style
, bool eliminateBorders
)
3565 WXDWORD exStyle
= 0;
3566 if ( style
& wxTRANSPARENT_WINDOW
)
3567 exStyle
|= WS_EX_TRANSPARENT
;
3569 if ( !eliminateBorders
)
3571 if ( style
& wxSUNKEN_BORDER
)
3572 exStyle
|= WS_EX_CLIENTEDGE
;
3573 if ( style
& wxDOUBLE_BORDER
)
3574 exStyle
|= WS_EX_DLGMODALFRAME
;
3575 #if defined(__WIN95__)
3576 if ( style
& wxRAISED_BORDER
)
3577 exStyle
|= WS_EX_WINDOWEDGE
;
3578 if ( style
& wxSTATIC_BORDER
)
3579 exStyle
|= WS_EX_STATICEDGE
;
3585 // Determines whether native 3D effects or CTL3D should be used,
3586 // applying a default border style if required, and returning an extended
3587 // style to pass to CreateWindowEx.
3588 WXDWORD
wxWindow::Determine3DEffects(WXDWORD defaultBorderStyle
, bool *want3D
)
3590 // If matches certain criteria, then assume no 3D effects
3591 // unless specifically requested (dealt with in MakeExtendedStyle)
3592 if ( !GetParent() || !IsKindOf(CLASSINFO(wxControl
)) || (m_windowStyle
& wxNO_BORDER
) )
3595 return MakeExtendedStyle(m_windowStyle
, FALSE
);
3598 // Determine whether we should be using 3D effects or not.
3599 bool nativeBorder
= FALSE
; // by default, we don't want a Win95 effect
3601 // 1) App can specify global 3D effects
3602 *want3D
= wxTheApp
->GetAuto3D();
3604 // 2) If the parent is being drawn with user colours, or simple border specified,
3605 // switch effects off. TODO: replace wxUSER_COLOURS with wxNO_3D
3606 if (GetParent() && (GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS
) || (m_windowStyle
& wxSIMPLE_BORDER
))
3609 // 3) Control can override this global setting by defining
3610 // a border style, e.g. wxSUNKEN_BORDER
3611 if (m_windowStyle
& wxSUNKEN_BORDER
)
3614 // 4) If it's a special border, CTL3D can't cope so we want a native border
3615 if ( (m_windowStyle
& wxDOUBLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
3616 (m_windowStyle
& wxSTATIC_BORDER
) )
3619 nativeBorder
= TRUE
;
3622 // 5) If this isn't a Win95 app, and we are using CTL3D, remove border
3623 // effects from extended style
3626 nativeBorder
= FALSE
;
3629 DWORD exStyle
= MakeExtendedStyle(m_windowStyle
, !nativeBorder
);
3631 // If we want 3D, but haven't specified a border here,
3632 // apply the default border style specified.
3633 // TODO what about non-Win95 WIN32? Does it have borders?
3634 #if defined(__WIN95__) && !wxUSE_CTL3D
3635 if (defaultBorderStyle
&& (*want3D
) && ! ((m_windowStyle
& wxDOUBLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
3636 (m_windowStyle
& wxSTATIC_BORDER
) || (m_windowStyle
& wxSIMPLE_BORDER
) ))
3637 exStyle
|= defaultBorderStyle
; // WS_EX_CLIENTEDGE ;
3643 void wxWindow::OnChar(wxKeyEvent
& event
)
3646 int id
= wxCharCodeWXToMSW((int)event
.KeyCode(), &isVirtual
);
3651 if ( !event
.ControlDown() )
3652 (void) MSWDefWindowProc(m_lastMsg
, (WPARAM
) id
, m_lastLParam
);
3655 bool wxWindow::IsEnabled(void) const
3657 return (::IsWindowEnabled((HWND
) GetHWND()) != 0);
3660 // Dialog support: override these and call
3661 // base class members to add functionality
3662 // that can't be done using validators.
3663 // NOTE: these functions assume that controls
3664 // are direct children of this window, not grandchildren
3665 // or other levels of descendant.
3667 // Transfer values to controls. If returns FALSE,
3668 // it's an application error (pops up a dialog)
3669 bool wxWindow::TransferDataToWindow()
3671 wxNode
*node
= GetChildren().First();
3674 wxWindow
*child
= (wxWindow
*)node
->Data();
3675 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */
3676 !child
->GetValidator()->TransferToWindow() )
3678 wxLogError(_("Could not transfer data to window"));
3682 node
= node
->Next();
3687 // Transfer values from controls. If returns FALSE,
3688 // validation failed: don't quit
3689 bool wxWindow::TransferDataFromWindow()
3691 wxNode
*node
= GetChildren().First();
3694 wxWindow
*child
= (wxWindow
*)node
->Data();
3695 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */ !child
->GetValidator()->TransferFromWindow() )
3700 node
= node
->Next();
3705 bool wxWindow::Validate()
3707 wxNode
*node
= GetChildren().First();
3710 wxWindow
*child
= (wxWindow
*)node
->Data();
3711 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */ !child
->GetValidator()->Validate(this) )
3716 node
= node
->Next();
3721 // Get the window with the focus
3722 wxWindow
*wxWindow::FindFocus()
3724 HWND hWnd
= ::GetFocus();
3727 return wxFindWinFromHandle((WXHWND
) hWnd
);
3732 void wxWindow::AddChild(wxWindow
*child
)
3734 GetChildren().Append(child
);
3735 child
->m_windowParent
= this;
3738 void wxWindow::RemoveChild(wxWindow
*child
)
3740 // if (GetChildren())
3741 GetChildren().DeleteObject(child
);
3742 child
->m_windowParent
= NULL
;
3745 void wxWindow::DestroyChildren()
3748 while ((node
= GetChildren().First()) != (wxNode
*)NULL
) {
3750 if ((child
= (wxWindow
*)node
->Data()) != (wxWindow
*)NULL
) {
3752 if ( GetChildren().Member(child
) )
3758 void wxWindow::MakeModal(bool modal
)
3760 // Disable all other windows
3761 if (this->IsKindOf(CLASSINFO(wxDialog
)) || this->IsKindOf(CLASSINFO(wxFrame
)))
3763 wxNode
*node
= wxTopLevelWindows
.First();
3766 wxWindow
*win
= (wxWindow
*)node
->Data();
3768 win
->Enable(!modal
);
3770 node
= node
->Next();
3775 // If nothing defined for this, try the parent.
3776 // E.g. we may be a button loaded from a resource, with no callback function
3778 void wxWindow::OnCommand(wxWindow
& win
, wxCommandEvent
& event
)
3780 if (GetEventHandler()->ProcessEvent(event
) )
3783 m_windowParent
->GetEventHandler()->OnCommand(win
, event
);
3786 void wxWindow::SetConstraints(wxLayoutConstraints
*c
)
3790 UnsetConstraints(m_constraints
);
3791 delete m_constraints
;
3796 // Make sure other windows know they're part of a 'meaningful relationship'
3797 if (m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this))
3798 m_constraints
->left
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3799 if (m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this))
3800 m_constraints
->top
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3801 if (m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this))
3802 m_constraints
->right
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3803 if (m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this))
3804 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3805 if (m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this))
3806 m_constraints
->width
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3807 if (m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this))
3808 m_constraints
->height
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3809 if (m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this))
3810 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3811 if (m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this))
3812 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3816 // This removes any dangling pointers to this window
3817 // in other windows' constraintsInvolvedIn lists.
3818 void wxWindow::UnsetConstraints(wxLayoutConstraints
*c
)
3822 if (c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
3823 c
->left
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3824 if (c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
3825 c
->top
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3826 if (c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this))
3827 c
->right
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3828 if (c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this))
3829 c
->bottom
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3830 if (c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this))
3831 c
->width
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3832 if (c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this))
3833 c
->height
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3834 if (c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this))
3835 c
->centreX
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3836 if (c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this))
3837 c
->centreY
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3841 // Back-pointer to other windows we're involved with, so if we delete
3842 // this window, we must delete any constraints we're involved with.
3843 void wxWindow::AddConstraintReference(wxWindow
*otherWin
)
3845 if (!m_constraintsInvolvedIn
)
3846 m_constraintsInvolvedIn
= new wxList
;
3847 if (!m_constraintsInvolvedIn
->Member(otherWin
))
3848 m_constraintsInvolvedIn
->Append(otherWin
);
3851 // REMOVE back-pointer to other windows we're involved with.
3852 void wxWindow::RemoveConstraintReference(wxWindow
*otherWin
)
3854 if (m_constraintsInvolvedIn
)
3855 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
3858 // Reset any constraints that mention this window
3859 void wxWindow::DeleteRelatedConstraints()
3861 if (m_constraintsInvolvedIn
)
3863 wxNode
*node
= m_constraintsInvolvedIn
->First();
3866 wxWindow
*win
= (wxWindow
*)node
->Data();
3867 wxNode
*next
= node
->Next();
3868 wxLayoutConstraints
*constr
= win
->GetConstraints();
3870 // Reset any constraints involving this window
3873 constr
->left
.ResetIfWin((wxWindow
*)this);
3874 constr
->top
.ResetIfWin((wxWindow
*)this);
3875 constr
->right
.ResetIfWin((wxWindow
*)this);
3876 constr
->bottom
.ResetIfWin((wxWindow
*)this);
3877 constr
->width
.ResetIfWin((wxWindow
*)this);
3878 constr
->height
.ResetIfWin((wxWindow
*)this);
3879 constr
->centreX
.ResetIfWin((wxWindow
*)this);
3880 constr
->centreY
.ResetIfWin((wxWindow
*)this);
3885 delete m_constraintsInvolvedIn
;
3886 m_constraintsInvolvedIn
= NULL
;
3890 void wxWindow::SetSizer(wxSizer
*sizer
)
3892 m_windowSizer
= sizer
;
3894 sizer
->SetSizerParent((wxWindow
*)this);
3901 bool wxWindow::Layout()
3903 if (GetConstraints())
3906 GetClientSize(&w
, &h
);
3907 GetConstraints()->width
.SetValue(w
);
3908 GetConstraints()->height
.SetValue(h
);
3911 // If top level (one sizer), evaluate the sizer's constraints.
3915 GetSizer()->ResetConstraints(); // Mark all constraints as unevaluated
3916 GetSizer()->LayoutPhase1(&noChanges
);
3917 GetSizer()->LayoutPhase2(&noChanges
);
3918 GetSizer()->SetConstraintSizes(); // Recursively set the real window sizes
3923 // Otherwise, evaluate child constraints
3924 ResetConstraints(); // Mark all constraints as unevaluated
3925 DoPhase(1); // Just one phase need if no sizers involved
3927 SetConstraintSizes(); // Recursively set the real window sizes
3933 // Do a phase of evaluating constraints:
3934 // the default behaviour. wxSizers may do a similar
3935 // thing, but also impose their own 'constraints'
3936 // and order the evaluation differently.
3937 bool wxWindow::LayoutPhase1(int *noChanges
)
3939 wxLayoutConstraints
*constr
= GetConstraints();
3942 return constr
->SatisfyConstraints((wxWindow
*)this, noChanges
);
3948 bool wxWindow::LayoutPhase2(int *noChanges
)
3958 // Do a phase of evaluating child constraints
3959 bool wxWindow::DoPhase(int phase
)
3961 int noIterations
= 0;
3962 int maxIterations
= 500;
3966 while ((noChanges
> 0) && (noIterations
< maxIterations
))
3970 wxNode
*node
= GetChildren().First();
3973 wxWindow
*child
= (wxWindow
*)node
->Data();
3974 if (!child
->IsKindOf(CLASSINFO(wxFrame
)) && !child
->IsKindOf(CLASSINFO(wxDialog
)))
3976 wxLayoutConstraints
*constr
= child
->GetConstraints();
3979 if (succeeded
.Member(child
))
3984 int tempNoChanges
= 0;
3985 bool success
= ( (phase
== 1) ? child
->LayoutPhase1(&tempNoChanges
) : child
->LayoutPhase2(&tempNoChanges
) ) ;
3986 noChanges
+= tempNoChanges
;
3989 succeeded
.Append(child
);
3994 node
= node
->Next();
4001 void wxWindow::ResetConstraints()
4003 wxLayoutConstraints
*constr
= GetConstraints();
4006 constr
->left
.SetDone(FALSE
);
4007 constr
->top
.SetDone(FALSE
);
4008 constr
->right
.SetDone(FALSE
);
4009 constr
->bottom
.SetDone(FALSE
);
4010 constr
->width
.SetDone(FALSE
);
4011 constr
->height
.SetDone(FALSE
);
4012 constr
->centreX
.SetDone(FALSE
);
4013 constr
->centreY
.SetDone(FALSE
);
4015 wxNode
*node
= GetChildren().First();
4018 wxWindow
*win
= (wxWindow
*)node
->Data();
4019 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
4020 win
->ResetConstraints();
4021 node
= node
->Next();
4025 // Need to distinguish between setting the 'fake' size for
4026 // windows and sizers, and setting the real values.
4027 void wxWindow::SetConstraintSizes(bool recurse
)
4029 wxLayoutConstraints
*constr
= GetConstraints();
4030 if (constr
&& constr
->left
.GetDone() && constr
->right
.GetDone() &&
4031 constr
->width
.GetDone() && constr
->height
.GetDone())
4033 int x
= constr
->left
.GetValue();
4034 int y
= constr
->top
.GetValue();
4035 int w
= constr
->width
.GetValue();
4036 int h
= constr
->height
.GetValue();
4038 // If we don't want to resize this window, just move it...
4039 if ((constr
->width
.GetRelationship() != wxAsIs
) ||
4040 (constr
->height
.GetRelationship() != wxAsIs
))
4042 // Calls Layout() recursively. AAAGH. How can we stop that.
4043 // Simply take Layout() out of non-top level OnSizes.
4044 SizerSetSize(x
, y
, w
, h
);
4053 char *windowClass
= this->GetClassInfo()->GetClassName();
4056 if (GetName() == "")
4057 winName
= "unnamed";
4059 winName
= GetName();
4060 wxLogDebug("Constraint(s) not satisfied for window of type %s, name %s:",
4061 (const char *)windowClass
, (const char *)winName
);
4062 if (!constr
->left
.GetDone())
4063 wxLogDebug(" unsatisfied 'left' constraint.");
4064 if (!constr
->right
.GetDone())
4065 wxLogDebug(" unsatisfied 'right' constraint.");
4066 if (!constr
->width
.GetDone())
4067 wxLogDebug(" unsatisfied 'width' constraint.");
4068 if (!constr
->height
.GetDone())
4069 wxLogDebug(" unsatisfied 'height' constraint.");
4070 wxLogDebug("Please check constraints: try adding AsIs() constraints.\n");
4075 wxNode
*node
= GetChildren().First();
4078 wxWindow
*win
= (wxWindow
*)node
->Data();
4079 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
4080 win
->SetConstraintSizes();
4081 node
= node
->Next();
4086 // This assumes that all sizers are 'on' the same
4087 // window, i.e. the parent of this window.
4088 void wxWindow::TransformSizerToActual(int *x
, int *y
) const
4090 if (!m_sizerParent
|| m_sizerParent
->IsKindOf(CLASSINFO(wxDialog
)) ||
4091 m_sizerParent
->IsKindOf(CLASSINFO(wxFrame
)) )
4095 m_sizerParent
->GetPosition(&xp
, &yp
);
4096 m_sizerParent
->TransformSizerToActual(&xp
, &yp
);
4101 void wxWindow::SizerSetSize(int x
, int y
, int w
, int h
)
4105 TransformSizerToActual(&xx
, &yy
);
4106 SetSize(xx
, yy
, w
, h
);
4109 void wxWindow::SizerMove(int x
, int y
)
4113 TransformSizerToActual(&xx
, &yy
);
4117 // Only set the size/position of the constraint (if any)
4118 void wxWindow::SetSizeConstraint(int x
, int y
, int w
, int h
)
4120 wxLayoutConstraints
*constr
= GetConstraints();
4125 constr
->left
.SetValue(x
);
4126 constr
->left
.SetDone(TRUE
);
4130 constr
->top
.SetValue(y
);
4131 constr
->top
.SetDone(TRUE
);
4135 constr
->width
.SetValue(w
);
4136 constr
->width
.SetDone(TRUE
);
4140 constr
->height
.SetValue(h
);
4141 constr
->height
.SetDone(TRUE
);
4146 void wxWindow::MoveConstraint(int x
, int y
)
4148 wxLayoutConstraints
*constr
= GetConstraints();
4153 constr
->left
.SetValue(x
);
4154 constr
->left
.SetDone(TRUE
);
4158 constr
->top
.SetValue(y
);
4159 constr
->top
.SetDone(TRUE
);
4164 void wxWindow::GetSizeConstraint(int *w
, int *h
) const
4166 wxLayoutConstraints
*constr
= GetConstraints();
4169 *w
= constr
->width
.GetValue();
4170 *h
= constr
->height
.GetValue();
4176 void wxWindow::GetClientSizeConstraint(int *w
, int *h
) const
4178 wxLayoutConstraints
*constr
= GetConstraints();
4181 *w
= constr
->width
.GetValue();
4182 *h
= constr
->height
.GetValue();
4185 GetClientSize(w
, h
);
4188 void wxWindow::GetPositionConstraint(int *x
, int *y
) const
4190 wxLayoutConstraints
*constr
= GetConstraints();
4193 *x
= constr
->left
.GetValue();
4194 *y
= constr
->top
.GetValue();
4200 bool wxWindow::Close(bool force
)
4202 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
4203 event
.SetEventObject(this);
4204 event
.SetForce(force
);
4205 event
.SetCanVeto(!force
);
4207 return (GetEventHandler()->ProcessEvent(event
) && !event
.GetVeto());
4210 wxObject
* wxWindow::GetChild(int number
) const
4212 // Return a pointer to the Nth object in the Panel
4213 // if (!GetChildren())
4215 wxNode
*node
= GetChildren().First();
4218 node
= node
->Next() ;
4221 wxObject
*obj
= (wxObject
*)node
->Data();
4228 void wxWindow::OnDefaultAction(wxControl
*initiatingItem
)
4230 /* This is obsolete now; if we wish to intercept listbox double-clicks,
4231 * we explicitly intercept the wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
4234 if (initiatingItem->IsKindOf(CLASSINFO(wxListBox)))
4236 wxListBox *lbox = (wxListBox *)initiatingItem;
4237 wxCommandEvent event(wxEVT_COMMAND_LEFT_DCLICK);
4238 event.m_commandInt = -1;
4239 if ((lbox->GetWindowStyleFlag() & wxLB_MULTIPLE) == 0)
4241 event.m_commandString = copystring(lbox->GetStringSelection());
4242 event.m_commandInt = lbox->GetSelection();
4243 event.m_clientData = lbox->wxListBox::GetClientData(event.m_commandInt);
4245 event.m_eventObject = lbox;
4247 lbox->ProcessCommand(event);
4249 if (event.m_commandString)
4250 delete[] event.m_commandString;
4254 wxButton *but = GetDefaultItem();
4257 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED);
4258 event.SetEventObject(but);
4259 but->Command(event);
4264 void wxWindow::Clear()
4266 wxClientDC
dc(this);
4267 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
4268 dc
.SetBackground(brush
);
4272 // Fits the panel around the items
4273 void wxWindow::Fit()
4277 wxNode
*node
= GetChildren().First();
4280 wxWindow
*win
= (wxWindow
*)node
->Data();
4282 win
->GetPosition(&wx
, &wy
);
4283 win
->GetSize(&ww
, &wh
);
4284 if ( wx
+ ww
> maxX
)
4286 if ( wy
+ wh
> maxY
)
4289 node
= node
->Next();
4291 SetClientSize(maxX
+ 5, maxY
+ 5);
4294 void wxWindow::SetValidator(const wxValidator
& validator
)
4296 if ( m_windowValidator
)
4297 delete m_windowValidator
;
4298 m_windowValidator
= validator
.Clone();
4300 if ( m_windowValidator
)
4301 m_windowValidator
->SetWindow(this) ;
4304 // Find a window by id or name
4305 wxWindow
*wxWindow::FindWindow(long id
)
4310 wxNode
*node
= GetChildren().First();
4313 wxWindow
*child
= (wxWindow
*)node
->Data();
4314 wxWindow
*found
= child
->FindWindow(id
);
4317 node
= node
->Next();
4322 wxWindow
*wxWindow::FindWindow(const wxString
& name
)
4324 if ( GetName() == name
)
4327 wxNode
*node
= GetChildren().First();
4330 wxWindow
*child
= (wxWindow
*)node
->Data();
4331 wxWindow
*found
= child
->FindWindow(name
);
4334 node
= node
->Next();
4340 // Default input behaviour for a scrolling canvas should be to scroll
4341 // according to the cursor keys pressed
4342 void wxWindow::OnChar(wxKeyEvent& event)
4354 GetScrollUnitsPerPage(&x_page, &y_page);
4356 GetVirtualSize(&v_width,&v_height);
4358 ViewStart(&start_x, &start_y);
4361 y_pages = (int)(v_height/vert_units) - y_page;
4369 switch (event.keyCode)
4376 if (start_y - y_page > 0)
4377 Scroll(start_x, start_y - y_page);
4387 if ((y_page > 0) && (start_y <= y_pages-y-1))
4389 if (y_pages + y < start_y + y_page)
4390 Scroll(start_x, y_pages + y);
4392 Scroll(start_x, start_y + y_page);
4399 if ((y_page > 0) && (start_y >= 1))
4400 Scroll(start_x, start_y - 1);
4406 if ((y_page > 0) && (start_y <= y_pages-y-1))
4409 Scroll(start_x, start_y + 1);
4415 if ((x_page > 0) && (start_x >= 1))
4416 Scroll(start_x - 1, start_y);
4422 Scroll(start_x + 1, start_y);
4433 Scroll(start_x, y_pages+y);
4441 // Setup background and foreground colours correctly
4442 void wxWindow::SetupColours()
4445 SetBackgroundColour(GetParent()->GetBackgroundColour());
4448 void wxWindow::OnIdle(wxIdleEvent
& event
)
4450 // Check if we need to send a LEAVE event
4451 if (m_mouseInWindow
)
4454 ::GetCursorPos(&pt
);
4455 if (::WindowFromPoint(pt
) != (HWND
) GetHWND())
4457 // Generate a LEAVE event
4458 m_mouseInWindow
= FALSE
;
4461 if (::GetKeyState(VK_SHIFT
) != 0)
4463 if (::GetKeyState(VK_CONTROL
) != 0)
4464 state
|= MK_CONTROL
;
4466 // Unfortunately the mouse button and keyboard state may have changed
4467 // by the time the OnIdle function is called, so 'state' may be
4470 MSWOnMouseLeave(pt
.x
, pt
.y
, state
);
4476 // Raise the window to the top of the Z order
4477 void wxWindow::Raise()
4479 ::BringWindowToTop((HWND
) GetHWND());
4482 // Lower the window to the bottom of the Z order
4483 void wxWindow::Lower()
4485 ::SetWindowPos((HWND
) GetHWND(), HWND_BOTTOM
, 0, 0, 0, 0, SWP_NOMOVE
|SWP_NOSIZE
|SWP_NOACTIVATE
);
4488 long wxWindow::MSWGetDlgCode()
4490 // default: just forward to def window proc (the msg has no parameters)
4491 return MSWDefWindowProc(WM_GETDLGCODE
, 0, 0);
4494 bool wxWindow::AcceptsFocus() const
4496 // invisible and disabled controls don't need focus
4497 return IsShown() && IsEnabled();
4500 // Update region access
4501 wxRegion
wxWindow::GetUpdateRegion() const
4503 return m_updateRegion
;
4506 bool wxWindow::IsExposed(int x
, int y
, int w
, int h
) const
4508 return (m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
);
4511 bool wxWindow::IsExposed(const wxPoint
& pt
) const
4513 return (m_updateRegion
.Contains(pt
) != wxOutRegion
);
4516 bool wxWindow::IsExposed(const wxRect
& rect
) const
4518 return (m_updateRegion
.Contains(rect
) != wxOutRegion
);
4521 // Set this window to be the child of 'parent'.
4522 bool wxWindow::Reparent(wxWindow
*parent
)
4524 if (parent
== GetParent())
4527 // Unlink this window from the existing parent.
4530 GetParent()->RemoveChild(this);
4533 wxTopLevelWindows
.DeleteObject(this);
4535 HWND hWndParent
= 0;
4536 HWND hWndChild
= (HWND
) GetHWND();
4537 if (parent
!= (wxWindow
*) NULL
)
4539 parent
->AddChild(this);
4540 hWndParent
= (HWND
) parent
->GetHWND();
4543 wxTopLevelWindows
.Append(this);
4545 ::SetParent(hWndChild
, hWndParent
);
4551 const char *wxGetMessageName(int message
)
4553 switch ( message
) {
4554 case 0x0000: return "WM_NULL";
4555 case 0x0001: return "WM_CREATE";
4556 case 0x0002: return "WM_DESTROY";
4557 case 0x0003: return "WM_MOVE";
4558 case 0x0005: return "WM_SIZE";
4559 case 0x0006: return "WM_ACTIVATE";
4560 case 0x0007: return "WM_SETFOCUS";
4561 case 0x0008: return "WM_KILLFOCUS";
4562 case 0x000A: return "WM_ENABLE";
4563 case 0x000B: return "WM_SETREDRAW";
4564 case 0x000C: return "WM_SETTEXT";
4565 case 0x000D: return "WM_GETTEXT";
4566 case 0x000E: return "WM_GETTEXTLENGTH";
4567 case 0x000F: return "WM_PAINT";
4568 case 0x0010: return "WM_CLOSE";
4569 case 0x0011: return "WM_QUERYENDSESSION";
4570 case 0x0012: return "WM_QUIT";
4571 case 0x0013: return "WM_QUERYOPEN";
4572 case 0x0014: return "WM_ERASEBKGND";
4573 case 0x0015: return "WM_SYSCOLORCHANGE";
4574 case 0x0016: return "WM_ENDSESSION";
4575 case 0x0017: return "WM_SYSTEMERROR";
4576 case 0x0018: return "WM_SHOWWINDOW";
4577 case 0x0019: return "WM_CTLCOLOR";
4578 case 0x001A: return "WM_WININICHANGE";
4579 case 0x001B: return "WM_DEVMODECHANGE";
4580 case 0x001C: return "WM_ACTIVATEAPP";
4581 case 0x001D: return "WM_FONTCHANGE";
4582 case 0x001E: return "WM_TIMECHANGE";
4583 case 0x001F: return "WM_CANCELMODE";
4584 case 0x0020: return "WM_SETCURSOR";
4585 case 0x0021: return "WM_MOUSEACTIVATE";
4586 case 0x0022: return "WM_CHILDACTIVATE";
4587 case 0x0023: return "WM_QUEUESYNC";
4588 case 0x0024: return "WM_GETMINMAXINFO";
4589 case 0x0026: return "WM_PAINTICON";
4590 case 0x0027: return "WM_ICONERASEBKGND";
4591 case 0x0028: return "WM_NEXTDLGCTL";
4592 case 0x002A: return "WM_SPOOLERSTATUS";
4593 case 0x002B: return "WM_DRAWITEM";
4594 case 0x002C: return "WM_MEASUREITEM";
4595 case 0x002D: return "WM_DELETEITEM";
4596 case 0x002E: return "WM_VKEYTOITEM";
4597 case 0x002F: return "WM_CHARTOITEM";
4598 case 0x0030: return "WM_SETFONT";
4599 case 0x0031: return "WM_GETFONT";
4600 case 0x0037: return "WM_QUERYDRAGICON";
4601 case 0x0039: return "WM_COMPAREITEM";
4602 case 0x0041: return "WM_COMPACTING";
4603 case 0x0044: return "WM_COMMNOTIFY";
4604 case 0x0046: return "WM_WINDOWPOSCHANGING";
4605 case 0x0047: return "WM_WINDOWPOSCHANGED";
4606 case 0x0048: return "WM_POWER";
4609 case 0x004A: return "WM_COPYDATA";
4610 case 0x004B: return "WM_CANCELJOURNAL";
4611 case 0x004E: return "WM_NOTIFY";
4612 case 0x0050: return "WM_INPUTLANGCHANGEREQUEST";
4613 case 0x0051: return "WM_INPUTLANGCHANGE";
4614 case 0x0052: return "WM_TCARD";
4615 case 0x0053: return "WM_HELP";
4616 case 0x0054: return "WM_USERCHANGED";
4617 case 0x0055: return "WM_NOTIFYFORMAT";
4618 case 0x007B: return "WM_CONTEXTMENU";
4619 case 0x007C: return "WM_STYLECHANGING";
4620 case 0x007D: return "WM_STYLECHANGED";
4621 case 0x007E: return "WM_DISPLAYCHANGE";
4622 case 0x007F: return "WM_GETICON";
4623 case 0x0080: return "WM_SETICON";
4626 case 0x0081: return "WM_NCCREATE";
4627 case 0x0082: return "WM_NCDESTROY";
4628 case 0x0083: return "WM_NCCALCSIZE";
4629 case 0x0084: return "WM_NCHITTEST";
4630 case 0x0085: return "WM_NCPAINT";
4631 case 0x0086: return "WM_NCACTIVATE";
4632 case 0x0087: return "WM_GETDLGCODE";
4633 case 0x00A0: return "WM_NCMOUSEMOVE";
4634 case 0x00A1: return "WM_NCLBUTTONDOWN";
4635 case 0x00A2: return "WM_NCLBUTTONUP";
4636 case 0x00A3: return "WM_NCLBUTTONDBLCLK";
4637 case 0x00A4: return "WM_NCRBUTTONDOWN";
4638 case 0x00A5: return "WM_NCRBUTTONUP";
4639 case 0x00A6: return "WM_NCRBUTTONDBLCLK";
4640 case 0x00A7: return "WM_NCMBUTTONDOWN";
4641 case 0x00A8: return "WM_NCMBUTTONUP";
4642 case 0x00A9: return "WM_NCMBUTTONDBLCLK";
4643 case 0x0100: return "WM_KEYDOWN";
4644 case 0x0101: return "WM_KEYUP";
4645 case 0x0102: return "WM_CHAR";
4646 case 0x0103: return "WM_DEADCHAR";
4647 case 0x0104: return "WM_SYSKEYDOWN";
4648 case 0x0105: return "WM_SYSKEYUP";
4649 case 0x0106: return "WM_SYSCHAR";
4650 case 0x0107: return "WM_SYSDEADCHAR";
4651 case 0x0108: return "WM_KEYLAST";
4654 case 0x010D: return "WM_IME_STARTCOMPOSITION";
4655 case 0x010E: return "WM_IME_ENDCOMPOSITION";
4656 case 0x010F: return "WM_IME_COMPOSITION";
4659 case 0x0110: return "WM_INITDIALOG";
4660 case 0x0111: return "WM_COMMAND";
4661 case 0x0112: return "WM_SYSCOMMAND";
4662 case 0x0113: return "WM_TIMER";
4663 case 0x0114: return "WM_HSCROLL";
4664 case 0x0115: return "WM_VSCROLL";
4665 case 0x0116: return "WM_INITMENU";
4666 case 0x0117: return "WM_INITMENUPOPUP";
4667 case 0x011F: return "WM_MENUSELECT";
4668 case 0x0120: return "WM_MENUCHAR";
4669 case 0x0121: return "WM_ENTERIDLE";
4670 case 0x0200: return "WM_MOUSEMOVE";
4671 case 0x0201: return "WM_LBUTTONDOWN";
4672 case 0x0202: return "WM_LBUTTONUP";
4673 case 0x0203: return "WM_LBUTTONDBLCLK";
4674 case 0x0204: return "WM_RBUTTONDOWN";
4675 case 0x0205: return "WM_RBUTTONUP";
4676 case 0x0206: return "WM_RBUTTONDBLCLK";
4677 case 0x0207: return "WM_MBUTTONDOWN";
4678 case 0x0208: return "WM_MBUTTONUP";
4679 case 0x0209: return "WM_MBUTTONDBLCLK";
4680 case 0x0210: return "WM_PARENTNOTIFY";
4681 case 0x0211: return "WM_ENTERMENULOOP";
4682 case 0x0212: return "WM_EXITMENULOOP";
4685 case 0x0213: return "WM_NEXTMENU";
4686 case 0x0214: return "WM_SIZING";
4687 case 0x0215: return "WM_CAPTURECHANGED";
4688 case 0x0216: return "WM_MOVING";
4689 case 0x0218: return "WM_POWERBROADCAST";
4690 case 0x0219: return "WM_DEVICECHANGE";
4693 case 0x0220: return "WM_MDICREATE";
4694 case 0x0221: return "WM_MDIDESTROY";
4695 case 0x0222: return "WM_MDIACTIVATE";
4696 case 0x0223: return "WM_MDIRESTORE";
4697 case 0x0224: return "WM_MDINEXT";
4698 case 0x0225: return "WM_MDIMAXIMIZE";
4699 case 0x0226: return "WM_MDITILE";
4700 case 0x0227: return "WM_MDICASCADE";
4701 case 0x0228: return "WM_MDIICONARRANGE";
4702 case 0x0229: return "WM_MDIGETACTIVE";
4703 case 0x0230: return "WM_MDISETMENU";
4704 case 0x0233: return "WM_DROPFILES";
4707 case 0x0281: return "WM_IME_SETCONTEXT";
4708 case 0x0282: return "WM_IME_NOTIFY";
4709 case 0x0283: return "WM_IME_CONTROL";
4710 case 0x0284: return "WM_IME_COMPOSITIONFULL";
4711 case 0x0285: return "WM_IME_SELECT";
4712 case 0x0286: return "WM_IME_CHAR";
4713 case 0x0290: return "WM_IME_KEYDOWN";
4714 case 0x0291: return "WM_IME_KEYUP";
4717 case 0x0300: return "WM_CUT";
4718 case 0x0301: return "WM_COPY";
4719 case 0x0302: return "WM_PASTE";
4720 case 0x0303: return "WM_CLEAR";
4721 case 0x0304: return "WM_UNDO";
4722 case 0x0305: return "WM_RENDERFORMAT";
4723 case 0x0306: return "WM_RENDERALLFORMATS";
4724 case 0x0307: return "WM_DESTROYCLIPBOARD";
4725 case 0x0308: return "WM_DRAWCLIPBOARD";
4726 case 0x0309: return "WM_PAINTCLIPBOARD";
4727 case 0x030A: return "WM_VSCROLLCLIPBOARD";
4728 case 0x030B: return "WM_SIZECLIPBOARD";
4729 case 0x030C: return "WM_ASKCBFORMATNAME";
4730 case 0x030D: return "WM_CHANGECBCHAIN";
4731 case 0x030E: return "WM_HSCROLLCLIPBOARD";
4732 case 0x030F: return "WM_QUERYNEWPALETTE";
4733 case 0x0310: return "WM_PALETTEISCHANGING";
4734 case 0x0311: return "WM_PALETTECHANGED";
4737 // common controls messages - although they're not strictly speaking
4738 // standard, it's nice to decode them nevertheless
4741 case 0x1000 + 0: return "LVM_GETBKCOLOR";
4742 case 0x1000 + 1: return "LVM_SETBKCOLOR";
4743 case 0x1000 + 2: return "LVM_GETIMAGELIST";
4744 case 0x1000 + 3: return "LVM_SETIMAGELIST";
4745 case 0x1000 + 4: return "LVM_GETITEMCOUNT";
4746 case 0x1000 + 5: return "LVM_GETITEMA";
4747 case 0x1000 + 75: return "LVM_GETITEMW";
4748 case 0x1000 + 6: return "LVM_SETITEMA";
4749 case 0x1000 + 76: return "LVM_SETITEMW";
4750 case 0x1000 + 7: return "LVM_INSERTITEMA";
4751 case 0x1000 + 77: return "LVM_INSERTITEMW";
4752 case 0x1000 + 8: return "LVM_DELETEITEM";
4753 case 0x1000 + 9: return "LVM_DELETEALLITEMS";
4754 case 0x1000 + 10: return "LVM_GETCALLBACKMASK";
4755 case 0x1000 + 11: return "LVM_SETCALLBACKMASK";
4756 case 0x1000 + 12: return "LVM_GETNEXTITEM";
4757 case 0x1000 + 13: return "LVM_FINDITEMA";
4758 case 0x1000 + 83: return "LVM_FINDITEMW";
4759 case 0x1000 + 14: return "LVM_GETITEMRECT";
4760 case 0x1000 + 15: return "LVM_SETITEMPOSITION";
4761 case 0x1000 + 16: return "LVM_GETITEMPOSITION";
4762 case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA";
4763 case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW";
4764 case 0x1000 + 18: return "LVM_HITTEST";
4765 case 0x1000 + 19: return "LVM_ENSUREVISIBLE";
4766 case 0x1000 + 20: return "LVM_SCROLL";
4767 case 0x1000 + 21: return "LVM_REDRAWITEMS";
4768 case 0x1000 + 22: return "LVM_ARRANGE";
4769 case 0x1000 + 23: return "LVM_EDITLABELA";
4770 case 0x1000 + 118: return "LVM_EDITLABELW";
4771 case 0x1000 + 24: return "LVM_GETEDITCONTROL";
4772 case 0x1000 + 25: return "LVM_GETCOLUMNA";
4773 case 0x1000 + 95: return "LVM_GETCOLUMNW";
4774 case 0x1000 + 26: return "LVM_SETCOLUMNA";
4775 case 0x1000 + 96: return "LVM_SETCOLUMNW";
4776 case 0x1000 + 27: return "LVM_INSERTCOLUMNA";
4777 case 0x1000 + 97: return "LVM_INSERTCOLUMNW";
4778 case 0x1000 + 28: return "LVM_DELETECOLUMN";
4779 case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH";
4780 case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH";
4781 case 0x1000 + 31: return "LVM_GETHEADER";
4782 case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE";
4783 case 0x1000 + 34: return "LVM_GETVIEWRECT";
4784 case 0x1000 + 35: return "LVM_GETTEXTCOLOR";
4785 case 0x1000 + 36: return "LVM_SETTEXTCOLOR";
4786 case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR";
4787 case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR";
4788 case 0x1000 + 39: return "LVM_GETTOPINDEX";
4789 case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE";
4790 case 0x1000 + 41: return "LVM_GETORIGIN";
4791 case 0x1000 + 42: return "LVM_UPDATE";
4792 case 0x1000 + 43: return "LVM_SETITEMSTATE";
4793 case 0x1000 + 44: return "LVM_GETITEMSTATE";
4794 case 0x1000 + 45: return "LVM_GETITEMTEXTA";
4795 case 0x1000 + 115: return "LVM_GETITEMTEXTW";
4796 case 0x1000 + 46: return "LVM_SETITEMTEXTA";
4797 case 0x1000 + 116: return "LVM_SETITEMTEXTW";
4798 case 0x1000 + 47: return "LVM_SETITEMCOUNT";
4799 case 0x1000 + 48: return "LVM_SORTITEMS";
4800 case 0x1000 + 49: return "LVM_SETITEMPOSITION32";
4801 case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT";
4802 case 0x1000 + 51: return "LVM_GETITEMSPACING";
4803 case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA";
4804 case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW";
4805 case 0x1000 + 53: return "LVM_SETICONSPACING";
4806 case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE";
4807 case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE";
4808 case 0x1000 + 56: return "LVM_GETSUBITEMRECT";
4809 case 0x1000 + 57: return "LVM_SUBITEMHITTEST";
4810 case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY";
4811 case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY";
4812 case 0x1000 + 60: return "LVM_SETHOTITEM";
4813 case 0x1000 + 61: return "LVM_GETHOTITEM";
4814 case 0x1000 + 62: return "LVM_SETHOTCURSOR";
4815 case 0x1000 + 63: return "LVM_GETHOTCURSOR";
4816 case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT";
4817 case 0x1000 + 65: return "LVM_SETWORKAREA";
4820 case 0x1100 + 0: return "TVM_INSERTITEMA";
4821 case 0x1100 + 50: return "TVM_INSERTITEMW";
4822 case 0x1100 + 1: return "TVM_DELETEITEM";
4823 case 0x1100 + 2: return "TVM_EXPAND";
4824 case 0x1100 + 4: return "TVM_GETITEMRECT";
4825 case 0x1100 + 5: return "TVM_GETCOUNT";
4826 case 0x1100 + 6: return "TVM_GETINDENT";
4827 case 0x1100 + 7: return "TVM_SETINDENT";
4828 case 0x1100 + 8: return "TVM_GETIMAGELIST";
4829 case 0x1100 + 9: return "TVM_SETIMAGELIST";
4830 case 0x1100 + 10: return "TVM_GETNEXTITEM";
4831 case 0x1100 + 11: return "TVM_SELECTITEM";
4832 case 0x1100 + 12: return "TVM_GETITEMA";
4833 case 0x1100 + 62: return "TVM_GETITEMW";
4834 case 0x1100 + 13: return "TVM_SETITEMA";
4835 case 0x1100 + 63: return "TVM_SETITEMW";
4836 case 0x1100 + 14: return "TVM_EDITLABELA";
4837 case 0x1100 + 65: return "TVM_EDITLABELW";
4838 case 0x1100 + 15: return "TVM_GETEDITCONTROL";
4839 case 0x1100 + 16: return "TVM_GETVISIBLECOUNT";
4840 case 0x1100 + 17: return "TVM_HITTEST";
4841 case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE";
4842 case 0x1100 + 19: return "TVM_SORTCHILDREN";
4843 case 0x1100 + 20: return "TVM_ENSUREVISIBLE";
4844 case 0x1100 + 21: return "TVM_SORTCHILDRENCB";
4845 case 0x1100 + 22: return "TVM_ENDEDITLABELNOW";
4846 case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA";
4847 case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW";
4848 case 0x1100 + 24: return "TVM_SETTOOLTIPS";
4849 case 0x1100 + 25: return "TVM_GETTOOLTIPS";
4852 case 0x1200 + 0: return "HDM_GETITEMCOUNT";
4853 case 0x1200 + 1: return "HDM_INSERTITEMA";
4854 case 0x1200 + 10: return "HDM_INSERTITEMW";
4855 case 0x1200 + 2: return "HDM_DELETEITEM";
4856 case 0x1200 + 3: return "HDM_GETITEMA";
4857 case 0x1200 + 11: return "HDM_GETITEMW";
4858 case 0x1200 + 4: return "HDM_SETITEMA";
4859 case 0x1200 + 12: return "HDM_SETITEMW";
4860 case 0x1200 + 5: return "HDM_LAYOUT";
4861 case 0x1200 + 6: return "HDM_HITTEST";
4862 case 0x1200 + 7: return "HDM_GETITEMRECT";
4863 case 0x1200 + 8: return "HDM_SETIMAGELIST";
4864 case 0x1200 + 9: return "HDM_GETIMAGELIST";
4865 case 0x1200 + 15: return "HDM_ORDERTOINDEX";
4866 case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE";
4867 case 0x1200 + 17: return "HDM_GETORDERARRAY";
4868 case 0x1200 + 18: return "HDM_SETORDERARRAY";
4869 case 0x1200 + 19: return "HDM_SETHOTDIVIDER";
4872 case 0x1300 + 2: return "TCM_GETIMAGELIST";
4873 case 0x1300 + 3: return "TCM_SETIMAGELIST";
4874 case 0x1300 + 4: return "TCM_GETITEMCOUNT";
4875 case 0x1300 + 5: return "TCM_GETITEMA";
4876 case 0x1300 + 60: return "TCM_GETITEMW";
4877 case 0x1300 + 6: return "TCM_SETITEMA";
4878 case 0x1300 + 61: return "TCM_SETITEMW";
4879 case 0x1300 + 7: return "TCM_INSERTITEMA";
4880 case 0x1300 + 62: return "TCM_INSERTITEMW";
4881 case 0x1300 + 8: return "TCM_DELETEITEM";
4882 case 0x1300 + 9: return "TCM_DELETEALLITEMS";
4883 case 0x1300 + 10: return "TCM_GETITEMRECT";
4884 case 0x1300 + 11: return "TCM_GETCURSEL";
4885 case 0x1300 + 12: return "TCM_SETCURSEL";
4886 case 0x1300 + 13: return "TCM_HITTEST";
4887 case 0x1300 + 14: return "TCM_SETITEMEXTRA";
4888 case 0x1300 + 40: return "TCM_ADJUSTRECT";
4889 case 0x1300 + 41: return "TCM_SETITEMSIZE";
4890 case 0x1300 + 42: return "TCM_REMOVEIMAGE";
4891 case 0x1300 + 43: return "TCM_SETPADDING";
4892 case 0x1300 + 44: return "TCM_GETROWCOUNT";
4893 case 0x1300 + 45: return "TCM_GETTOOLTIPS";
4894 case 0x1300 + 46: return "TCM_SETTOOLTIPS";
4895 case 0x1300 + 47: return "TCM_GETCURFOCUS";
4896 case 0x1300 + 48: return "TCM_SETCURFOCUS";
4897 case 0x1300 + 49: return "TCM_SETMINTABWIDTH";
4898 case 0x1300 + 50: return "TCM_DESELECTALL";
4901 case WM_USER
+1: return "TB_ENABLEBUTTON";
4902 case WM_USER
+2: return "TB_CHECKBUTTON";
4903 case WM_USER
+3: return "TB_PRESSBUTTON";
4904 case WM_USER
+4: return "TB_HIDEBUTTON";
4905 case WM_USER
+5: return "TB_INDETERMINATE";
4906 case WM_USER
+9: return "TB_ISBUTTONENABLED";
4907 case WM_USER
+10: return "TB_ISBUTTONCHECKED";
4908 case WM_USER
+11: return "TB_ISBUTTONPRESSED";
4909 case WM_USER
+12: return "TB_ISBUTTONHIDDEN";
4910 case WM_USER
+13: return "TB_ISBUTTONINDETERMINATE";
4911 case WM_USER
+17: return "TB_SETSTATE";
4912 case WM_USER
+18: return "TB_GETSTATE";
4913 case WM_USER
+19: return "TB_ADDBITMAP";
4914 case WM_USER
+20: return "TB_ADDBUTTONS";
4915 case WM_USER
+21: return "TB_INSERTBUTTON";
4916 case WM_USER
+22: return "TB_DELETEBUTTON";
4917 case WM_USER
+23: return "TB_GETBUTTON";
4918 case WM_USER
+24: return "TB_BUTTONCOUNT";
4919 case WM_USER
+25: return "TB_COMMANDTOINDEX";
4920 case WM_USER
+26: return "TB_SAVERESTOREA";
4921 case WM_USER
+76: return "TB_SAVERESTOREW";
4922 case WM_USER
+27: return "TB_CUSTOMIZE";
4923 case WM_USER
+28: return "TB_ADDSTRINGA";
4924 case WM_USER
+77: return "TB_ADDSTRINGW";
4925 case WM_USER
+29: return "TB_GETITEMRECT";
4926 case WM_USER
+30: return "TB_BUTTONSTRUCTSIZE";
4927 case WM_USER
+31: return "TB_SETBUTTONSIZE";
4928 case WM_USER
+32: return "TB_SETBITMAPSIZE";
4929 case WM_USER
+33: return "TB_AUTOSIZE";
4930 case WM_USER
+35: return "TB_GETTOOLTIPS";
4931 case WM_USER
+36: return "TB_SETTOOLTIPS";
4932 case WM_USER
+37: return "TB_SETPARENT";
4933 case WM_USER
+39: return "TB_SETROWS";
4934 case WM_USER
+40: return "TB_GETROWS";
4935 case WM_USER
+42: return "TB_SETCMDID";
4936 case WM_USER
+43: return "TB_CHANGEBITMAP";
4937 case WM_USER
+44: return "TB_GETBITMAP";
4938 case WM_USER
+45: return "TB_GETBUTTONTEXTA";
4939 case WM_USER
+75: return "TB_GETBUTTONTEXTW";
4940 case WM_USER
+46: return "TB_REPLACEBITMAP";
4941 case WM_USER
+47: return "TB_SETINDENT";
4942 case WM_USER
+48: return "TB_SETIMAGELIST";
4943 case WM_USER
+49: return "TB_GETIMAGELIST";
4944 case WM_USER
+50: return "TB_LOADIMAGES";
4945 case WM_USER
+51: return "TB_GETRECT";
4946 case WM_USER
+52: return "TB_SETHOTIMAGELIST";
4947 case WM_USER
+53: return "TB_GETHOTIMAGELIST";
4948 case WM_USER
+54: return "TB_SETDISABLEDIMAGELIST";
4949 case WM_USER
+55: return "TB_GETDISABLEDIMAGELIST";
4950 case WM_USER
+56: return "TB_SETSTYLE";
4951 case WM_USER
+57: return "TB_GETSTYLE";
4952 case WM_USER
+58: return "TB_GETBUTTONSIZE";
4953 case WM_USER
+59: return "TB_SETBUTTONWIDTH";
4954 case WM_USER
+60: return "TB_SETMAXTEXTROWS";
4955 case WM_USER
+61: return "TB_GETTEXTROWS";
4956 case WM_USER
+41: return "TB_GETBITMAPFLAGS";
4961 static char s_szBuf
[128];
4962 sprintf(s_szBuf
, "<unknown message = %d>", message
);
4966 #endif //__WXDEBUG__