1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "window.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 #include "wx/dcclient.h"
31 #include "wx/layout.h"
32 #include "wx/dialog.h"
34 #include "wx/listbox.h"
35 #include "wx/button.h"
36 #include "wx/settings.h"
37 #include "wx/msgdlg.h"
43 #include "wx/ownerdrw.h"
46 #if wxUSE_DRAG_AND_DROP
47 #include "wx/msw/ole/droptgt.h"
50 #include "wx/menuitem.h"
54 #include "wx/tooltip.h"
60 #include "wx/msw/private.h"
73 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__)
79 #include <wx/msw/gnuwin32/extra.h>
83 // all these are defined in <windows.h>
101 const char *wxGetMessageName(int message
);
104 #define WINDOW_MARGIN 3 // This defines sensitivity of Leave events
106 wxMenu
*wxCurrentPopupMenu
= NULL
;
107 extern wxList WXDLLEXPORT wxPendingDelete
;
109 void wxRemoveHandleAssociation(wxWindow
*win
);
110 void wxAssociateWinWithHandle(HWND hWnd
, wxWindow
*win
);
111 wxWindow
*wxFindWinFromHandle(WXHWND hWnd
);
113 #if !USE_SHARED_LIBRARY
114 IMPLEMENT_DYNAMIC_CLASS(wxWindow
, wxEvtHandler
)
117 BEGIN_EVENT_TABLE(wxWindow
, wxEvtHandler
)
118 EVT_CHAR(wxWindow::OnChar
)
119 EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground
)
120 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged
)
121 EVT_INIT_DIALOG(wxWindow::OnInitDialog
)
122 EVT_IDLE(wxWindow::OnIdle
)
125 // Find an item given the MS Windows id
126 wxWindow
*wxWindow::FindItem(int id
) const
128 // if (!GetChildren())
130 wxNode
*current
= GetChildren().First();
133 wxWindow
*childWin
= (wxWindow
*)current
->Data();
135 wxWindow
*wnd
= childWin
->FindItem(id
) ;
139 if (childWin
->IsKindOf(CLASSINFO(wxControl
)))
141 wxControl
*item
= (wxControl
*)childWin
;
142 if (item
->GetId() == id
)
146 // In case it's a 'virtual' control (e.g. radiobox)
147 if (item
->GetSubcontrols().Member((wxObject
*)id
))
151 current
= current
->Next();
156 // Find an item given the MS Windows handle
157 wxWindow
*wxWindow::FindItemByHWND(WXHWND hWnd
, bool controlOnly
) const
159 // if (!GetChildren())
161 wxNode
*current
= GetChildren().First();
164 wxObject
*obj
= (wxObject
*)current
->Data() ;
165 // Do a recursive search.
166 wxWindow
*parent
= (wxWindow
*)obj
;
167 wxWindow
*wnd
= parent
->FindItemByHWND(hWnd
) ;
171 if ((!controlOnly
) || obj
->IsKindOf(CLASSINFO(wxControl
)))
173 wxWindow
*item
= (wxWindow
*)current
->Data();
174 if ((HWND
)(item
->GetHWND()) == (HWND
) hWnd
)
178 if ( item
->ContainsHWND(hWnd
) )
182 current
= current
->Next();
187 // Default command handler
188 bool wxWindow::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD
WXUNUSED(id
))
193 bool wxWindow::MSWNotify(WXWPARAM
WXUNUSED(wParam
),
195 WXLPARAM
* WXUNUSED(result
))
199 NMHDR
* hdr
= (NMHDR
*)lParam
;
200 if ( hdr
->code
== TTN_NEEDTEXT
&& m_tooltip
)
202 TOOLTIPTEXT
*ttt
= (TOOLTIPTEXT
*)lParam
;
203 ttt
->lpszText
= (char *)m_tooltip
->GetTip().c_str();
214 void wxWindow::PreDelete(WXHDC
WXUNUSED(dc
))
218 WXHWND
wxWindow::GetHWND(void) const
220 return (WXHWND
) m_hWnd
;
223 void wxWindow::SetHWND(WXHWND hWnd
)
228 // ----------------------------------------------------------------------------
229 // constructors and such
230 // ----------------------------------------------------------------------------
232 void wxWindow::Init()
238 m_windowParent
= NULL
;
239 m_windowEventHandler
= this;
240 m_windowCursor
= *wxSTANDARD_CURSOR
;
241 m_children
= new wxList
;
242 m_doubleClickAllowed
= 0 ;
243 m_winCaptured
= FALSE
;
244 m_constraints
= NULL
;
245 m_constraintsInvolvedIn
= NULL
;
246 m_windowSizer
= NULL
;
247 m_sizerParent
= NULL
;
248 m_autoLayout
= FALSE
;
249 m_windowValidator
= NULL
;
254 m_caretWidth
= m_caretHeight
= 0;
256 m_caretShown
= FALSE
;
263 m_isBeingDeleted
= FALSE
;
269 m_mouseInWindow
= FALSE
;
271 m_windowParent
= NULL
;
272 m_defaultItem
= NULL
;
274 wxSystemSettings settings
;
276 m_backgroundColour
= settings
.GetSystemColour(wxSYS_COLOUR_3DFACE
) ;
277 m_foregroundColour
= *wxBLACK
;
287 m_backgroundTransparent
= FALSE
;
289 m_lastXPos
= (float)-1.0;
290 m_lastYPos
= (float)-1.0;
294 #if wxUSE_DRAG_AND_DROP
295 m_pDropTarget
= NULL
;
309 wxWindow::~wxWindow()
311 // Remove potential dangling pointer
312 if (GetParent() && GetParent()->IsKindOf(CLASSINFO(wxPanel
)))
314 wxPanel
* panel
= (wxPanel
*) GetParent();
315 if (panel
->GetLastFocus() == this)
316 panel
->SetLastFocus((wxWindow
*) NULL
);
319 m_isBeingDeleted
= TRUE
;
321 // first of all, delete the things on which nothing else depends
327 // JACS - if behaviour is odd, restore this
328 // to the start of ~wxWindow. Vadim has changed
329 // it to nearer the end. Unsure of side-effects
330 // e.g. when deleting associated global data.
331 // Restore old Window proc, if required
334 // Have to delete constraints/sizer FIRST otherwise
335 // sizers may try to look at deleted windows as they
336 // delete themselves.
337 #if wxUSE_CONSTRAINTS
338 DeleteRelatedConstraints();
342 // This removes any dangling pointers to this window
343 // in other windows' constraintsInvolvedIn lists.
344 UnsetConstraints(m_constraints
);
345 delete m_constraints
;
346 m_constraints
= NULL
;
349 wxDELETE(m_windowSizer
);
351 // If this is a child of a sizer, remove self from parent
353 m_sizerParent
->RemoveChild((wxWindow
*)this);
357 MSWDetachWindowMenu();
360 m_windowParent
->RemoveChild(this);
365 ::DestroyWindow((HWND
)m_hWnd
);
367 wxRemoveHandleAssociation(this);
372 GlobalFree((HGLOBAL
) m_globalHandle
);
380 // Just in case the window has been Closed, but
381 // we're then deleting immediately: don't leave
382 // dangling pointers.
383 wxPendingDelete
.DeleteObject(this);
385 // Just in case we've loaded a top-level window via
386 // wxWindow::LoadNativeDialog but we weren't a dialog
388 wxTopLevelWindows
.DeleteObject(this);
390 if ( m_windowValidator
)
391 delete m_windowValidator
;
393 // Restore old Window proc, if required
394 // and remove hWnd <-> wxWindow association
398 // Destroy the window (delayed, if a managed window)
399 bool wxWindow::Destroy()
405 extern char wxCanvasClassName
[];
407 // real construction (Init() must have been called before!)
408 bool wxWindow::Create(wxWindow
*parent
, wxWindowID id
,
412 const wxString
& name
)
414 wxCHECK_MSG( parent
, FALSE
, "can't create wxWindow without parent" );
416 parent
->AddChild(this);
421 m_windowId
= (int)NewControlId();
430 // To be consistent with wxGTK
436 wxSystemSettings settings
;
438 m_windowStyle
= style
;
441 if (style
& wxBORDER
)
442 msflags
|= WS_BORDER
;
443 if (style
& wxTHICK_FRAME
)
444 msflags
|= WS_THICKFRAME
;
446 msflags
|= WS_CHILD
| WS_VISIBLE
;
447 if (style
& wxCLIP_CHILDREN
)
448 msflags
|= WS_CLIPCHILDREN
;
451 WXDWORD exStyle
= Determine3DEffects(WS_EX_CLIENTEDGE
, &want3D
) ;
453 // Even with extended styles, need to combine with WS_BORDER
454 // for them to look right.
455 if (want3D
|| (m_windowStyle
& wxSIMPLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
456 (m_windowStyle
& wxSUNKEN_BORDER
) || (m_windowStyle
& wxDOUBLE_BORDER
))
457 msflags
|= WS_BORDER
;
459 MSWCreate(m_windowId
, parent
, wxCanvasClassName
, this, NULL
,
460 x
, y
, width
, height
, msflags
, NULL
, exStyle
);
465 void wxWindow::SetFocus()
467 HWND hWnd
= (HWND
) GetHWND();
472 void wxWindow::Enable(bool enable
)
474 m_winEnabled
= enable
;
475 HWND hWnd
= (HWND
) GetHWND();
477 ::EnableWindow(hWnd
, (BOOL
)enable
);
480 void wxWindow::CaptureMouse()
482 HWND hWnd
= (HWND
) GetHWND();
483 if (hWnd
&& !m_winCaptured
)
486 m_winCaptured
= TRUE
;
490 void wxWindow::ReleaseMouse()
495 m_winCaptured
= FALSE
;
499 void wxWindow::SetAcceleratorTable(const wxAcceleratorTable
& accel
)
501 m_acceleratorTable
= accel
;
505 // Push/pop event handler (i.e. allow a chain of event handlers
507 void wxWindow::PushEventHandler(wxEvtHandler
*handler
)
509 handler
->SetNextHandler(GetEventHandler());
510 SetEventHandler(handler
);
513 wxEvtHandler
*wxWindow::PopEventHandler(bool deleteHandler
)
515 if ( GetEventHandler() )
517 wxEvtHandler
*handlerA
= GetEventHandler();
518 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
519 handlerA
->SetNextHandler(NULL
);
520 SetEventHandler(handlerB
);
533 #if wxUSE_DRAG_AND_DROP
535 void wxWindow::SetDropTarget(wxDropTarget
*pDropTarget
)
537 if ( m_pDropTarget
!= 0 ) {
538 m_pDropTarget
->Revoke(m_hWnd
);
539 delete m_pDropTarget
;
542 m_pDropTarget
= pDropTarget
;
543 if ( m_pDropTarget
!= 0 )
544 m_pDropTarget
->Register(m_hWnd
);
547 #endif // wxUSE_DRAG_AND_DROP
550 //old style file-manager drag&drop support
551 // I think we should retain the old-style
552 // DragAcceptFiles in parallel with SetDropTarget.
554 void wxWindow::DragAcceptFiles(bool accept
)
556 HWND hWnd
= (HWND
) GetHWND();
558 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
561 // ----------------------------------------------------------------------------
563 // ----------------------------------------------------------------------------
567 void wxWindow::SetToolTip(const wxString
&tip
)
569 SetToolTip(new wxToolTip(tip
));
572 void wxWindow::SetToolTip(wxToolTip
*tooltip
)
578 m_tooltip
->SetWindow(this);
581 #endif // wxUSE_TOOLTIPS
584 void wxWindow::GetSize(int *x
, int *y
) const
586 HWND hWnd
= (HWND
) GetHWND();
588 GetWindowRect(hWnd
, &rect
);
589 *x
= rect
.right
- rect
.left
;
590 *y
= rect
.bottom
- rect
.top
;
593 void wxWindow::GetPosition(int *x
, int *y
) const
595 HWND hWnd
= (HWND
) GetHWND();
598 hParentWnd
= (HWND
) GetParent()->GetHWND();
601 GetWindowRect(hWnd
, &rect
);
603 // Since we now have the absolute screen coords,
604 // if there's a parent we must subtract its top left corner
610 ::ScreenToClient(hParentWnd
, &point
);
613 // We may be faking the client origin.
614 // So a window that's really at (0, 30) may appear
615 // (to wxWin apps) to be at (0, 0).
618 wxPoint
pt(GetParent()->GetClientAreaOrigin());
626 void wxWindow::ScreenToClient(int *x
, int *y
) const
628 HWND hWnd
= (HWND
) GetHWND();
633 ::ScreenToClient(hWnd
, &pt
);
639 void wxWindow::ClientToScreen(int *x
, int *y
) const
641 HWND hWnd
= (HWND
) GetHWND();
646 ::ClientToScreen(hWnd
, &pt
);
652 void wxWindow::SetCursor(const wxCursor
& cursor
)
654 m_windowCursor
= cursor
;
655 if (m_windowCursor
.Ok())
657 HWND hWnd
= (HWND
) GetHWND();
659 // Change the cursor NOW if we're within the correct window
661 ::GetCursorPos(&point
);
664 ::GetWindowRect(hWnd
, &rect
);
666 if (::PtInRect(&rect
, point
) && !wxIsBusy())
667 ::SetCursor((HCURSOR
) m_windowCursor
.GetHCURSOR());
670 // This will cause big reentrancy problems if wxFlushEvents is implemented.
672 // return old_cursor;
676 // Get size *available for subwindows* i.e. excluding menu bar etc.
677 void wxWindow::GetClientSize(int *x
, int *y
) const
679 HWND hWnd
= (HWND
) GetHWND();
681 GetClientRect(hWnd
, &rect
);
686 void wxWindow::SetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
688 int currentX
, currentY
;
689 GetPosition(¤tX
, ¤tY
);
690 int currentW
,currentH
;
691 GetSize(¤tW
, ¤tH
);
693 if (x
== currentX
&& y
== currentY
&& width
== currentW
&& height
== currentH
)
696 int actualWidth
= width
;
697 int actualHeight
= height
;
700 if (x
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
702 if (y
== -1 || (sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
))
705 AdjustForParentClientOrigin(actualX
, actualY
, sizeFlags
);
708 actualWidth
= currentW
;
710 actualHeight
= currentH
;
712 HWND hWnd
= (HWND
) GetHWND();
714 MoveWindow(hWnd
, actualX
, actualY
, actualWidth
, actualHeight
, (BOOL
)TRUE
);
717 void wxWindow::SetClientSize(int width
, int height
)
719 wxWindow
*parent
= GetParent();
720 HWND hWnd
= (HWND
) GetHWND();
721 HWND hParentWnd
= (HWND
) (HWND
) parent
->GetHWND();
724 GetClientRect(hWnd
, &rect
);
727 GetWindowRect(hWnd
, &rect2
);
729 // Find the difference between the entire window (title bar and all)
730 // and the client area; add this to the new client size to move the
732 int actual_width
= rect2
.right
- rect2
.left
- rect
.right
+ width
;
733 int actual_height
= rect2
.bottom
- rect2
.top
- rect
.bottom
+ height
;
735 // If there's a parent, must subtract the parent's top left corner
736 // since MoveWindow moves relative to the parent
739 point
.x
= rect2
.left
;
743 ::ScreenToClient(hParentWnd
, &point
);
746 MoveWindow(hWnd
, point
.x
, point
.y
, actual_width
, actual_height
, (BOOL
)TRUE
);
748 wxSizeEvent
event(wxSize(width
, height
), m_windowId
);
749 event
.SetEventObject(this);
750 GetEventHandler()->ProcessEvent(event
);
753 // For implementation purposes - sometimes decorations make the client area
755 wxPoint
wxWindow::GetClientAreaOrigin() const
757 return wxPoint(0, 0);
760 // Makes an adjustment to the window position (for example, a frame that has
761 // a toolbar that it manages itself).
762 void wxWindow::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
)
764 if (((sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) == 0) && GetParent())
766 wxPoint
pt(GetParent()->GetClientAreaOrigin());
767 x
+= pt
.x
; y
+= pt
.y
;
771 bool wxWindow::Show(bool show
)
774 HWND hWnd
= (HWND
) GetHWND();
780 ShowWindow(hWnd
, cshow
);
783 BringWindowToTop(hWnd
);
784 // Next line causes a crash on NT, apparently.
785 // UpdateWindow(hWnd); // Should this be here or will it cause inefficiency?
790 bool wxWindow::IsShown(void) const
792 // Can't rely on IsWindowVisible, since it will return FALSE
793 // if the parent is not visible.
795 // int ret = ::IsWindowVisible((HWND) GetHWND()) ;
796 // return (ret != 0);
799 int wxWindow::GetCharHeight(void) const
801 TEXTMETRIC lpTextMetric
;
802 HWND hWnd
= (HWND
) GetHWND();
803 HDC dc
= ::GetDC(hWnd
);
805 GetTextMetrics(dc
, &lpTextMetric
);
806 ::ReleaseDC(hWnd
, dc
);
808 return lpTextMetric
.tmHeight
;
811 int wxWindow::GetCharWidth(void) const
813 TEXTMETRIC lpTextMetric
;
814 HWND hWnd
= (HWND
) GetHWND();
815 HDC dc
= ::GetDC(hWnd
);
817 GetTextMetrics(dc
, &lpTextMetric
);
818 ::ReleaseDC(hWnd
, dc
);
820 return lpTextMetric
.tmAveCharWidth
;
823 void wxWindow::GetTextExtent(const wxString
& string
, int *x
, int *y
,
824 int *descent
, int *externalLeading
, const wxFont
*theFont
, bool) const
826 wxFont
*fontToUse
= (wxFont
*)theFont
;
828 fontToUse
= (wxFont
*) & m_windowFont
;
830 HWND hWnd
= (HWND
) GetHWND();
831 HDC dc
= ::GetDC(hWnd
);
835 if (fontToUse
&& fontToUse
->Ok())
837 fnt
= (HFONT
)fontToUse
->GetResourceHandle();
839 was
= (HFONT
) SelectObject(dc
,fnt
) ;
844 GetTextExtentPoint(dc
, (const char *)string
, (int)string
.Length(), &sizeRect
);
845 GetTextMetrics(dc
, &tm
);
847 if (fontToUse
&& fnt
&& was
)
848 SelectObject(dc
,was
) ;
854 if (descent
) *descent
= tm
.tmDescent
;
855 if (externalLeading
) *externalLeading
= tm
.tmExternalLeading
;
858 // fontToUse->ReleaseResource();
861 void wxWindow::Refresh(bool eraseBack
, const wxRect
*rect
)
863 HWND hWnd
= (HWND
) GetHWND();
869 mswRect
.left
= rect
->x
;
870 mswRect
.top
= rect
->y
;
871 mswRect
.right
= rect
->x
+ rect
->width
;
872 mswRect
.bottom
= rect
->y
+ rect
->height
;
874 ::InvalidateRect(hWnd
, &mswRect
, eraseBack
);
877 ::InvalidateRect(hWnd
, NULL
, eraseBack
);
881 bool wxWindow::ProcessEvent(wxEvent
& event
)
883 // we save here the information about the last message because it might be
884 // overwritten if the event handler sends any messages to our window (case
885 // in point: wxNotebook::OnSize) - and then if we call Default() later
886 // (which is done quite often if the message is not processed) it will use
887 // incorrect values for m_lastXXX variables
888 WXUINT lastMsg
= m_lastMsg
;
889 WXWPARAM lastWParam
= m_lastWParam
;
890 WXLPARAM lastLParam
= m_lastLParam
;
892 // call the base version
893 bool bProcessed
= wxEvtHandler::ProcessEvent(event
);
897 m_lastWParam
= lastWParam
;
898 m_lastLParam
= lastLParam
;
903 // Hook for new window just as it's being created,
904 // when the window isn't yet associated with the handle
905 wxWindow
*wxWndHook
= NULL
;
908 LRESULT APIENTRY _EXPORT
wxWndProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
910 wxWindow
*wnd
= wxFindWinFromHandle((WXHWND
) hWnd
);
912 if (!wnd
&& wxWndHook
)
914 wxAssociateWinWithHandle(hWnd
, wxWndHook
);
917 wnd
->m_hWnd
= (WXHWND
) hWnd
;
920 // Stop right here if we don't have a valid handle in our wxWindow object.
921 if (wnd
&& !wnd
->m_hWnd
) {
922 wnd
->m_hWnd
= (WXHWND
) hWnd
;
923 long res
= wnd
->MSWDefWindowProc(message
, wParam
, lParam
);
929 wnd
->m_lastMsg
= message
;
930 wnd
->m_lastWParam
= wParam
;
931 wnd
->m_lastLParam
= lParam
;
934 return wnd
->MSWWindowProc(message
, wParam
, lParam
);
936 return DefWindowProc( hWnd
, message
, wParam
, lParam
);
939 // Should probably have a test for 'genuine' NT
940 #if defined(__WIN32__)
941 #define DIMENSION_TYPE short
943 #define DIMENSION_TYPE int
946 // Main Windows 3 window proc
947 long wxWindow::MSWWindowProc(WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
949 wxASSERT( m_lastMsg
== message
&&
950 m_lastWParam
== wParam
&& m_lastLParam
== lParam
);
953 wxLogTrace(wxTraceMessages
, "Processing %s(%lx, %lx)",
954 wxGetMessageName(message
), wParam
, lParam
);
955 #endif // __WXDEBUG__
957 HWND hWnd
= (HWND
)m_hWnd
;
964 WORD state
= LOWORD(wParam
);
965 WORD minimized
= HIWORD(wParam
);
966 HWND hwnd
= (HWND
)lParam
;
968 WORD state
= (WORD
)wParam
;
969 WORD minimized
= LOWORD(lParam
);
970 HWND hwnd
= (HWND
)HIWORD(lParam
);
972 MSWOnActivate(state
, (minimized
!= 0), (WXHWND
) hwnd
);
978 HWND hwnd
= (HWND
)wParam
;
979 // return OnSetFocus(hwnd);
981 if (MSWOnSetFocus((WXHWND
) hwnd
))
983 else return MSWDefWindowProc(message
, wParam
, lParam
);
988 HWND hwnd
= (HWND
)lParam
;
989 // return OnKillFocus(hwnd);
990 if (MSWOnKillFocus((WXHWND
) hwnd
))
993 return MSWDefWindowProc(message
, wParam
, lParam
);
998 MSWOnCreate((WXLPCREATESTRUCT
) (LPCREATESTRUCT
)lParam
);
1004 MSWOnShow((wParam
!= 0), (int) lParam
);
1011 else return MSWDefWindowProc(message
, wParam
, lParam
);
1014 case WM_QUERYDRAGICON
:
1016 HICON hIcon
= (HICON
)MSWOnQueryDragIcon();
1020 return MSWDefWindowProc(message
, wParam
, lParam
);
1026 int width
= LOWORD(lParam
);
1027 int height
= HIWORD(lParam
);
1028 MSWOnSize(width
, height
, wParam
);
1034 wxMoveEvent
event(wxPoint(LOWORD(lParam
), HIWORD(lParam
)),
1036 event
.SetEventObject(this);
1037 if ( !GetEventHandler()->ProcessEvent(event
) )
1042 case WM_WINDOWPOSCHANGING
:
1044 MSWOnWindowPosChanging((void *)lParam
);
1048 case WM_RBUTTONDOWN
:
1050 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1051 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1052 MSWOnRButtonDown(x
, y
, wParam
);
1057 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1058 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1059 MSWOnRButtonUp(x
, y
, wParam
);
1062 case WM_RBUTTONDBLCLK
:
1064 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1065 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1066 MSWOnRButtonDClick(x
, y
, wParam
);
1069 case WM_MBUTTONDOWN
:
1071 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1072 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1073 MSWOnMButtonDown(x
, y
, wParam
);
1078 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1079 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1080 MSWOnMButtonUp(x
, y
, wParam
);
1083 case WM_MBUTTONDBLCLK
:
1085 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1086 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1087 MSWOnMButtonDClick(x
, y
, wParam
);
1090 case WM_LBUTTONDOWN
:
1092 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1093 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1094 MSWOnLButtonDown(x
, y
, wParam
);
1099 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1100 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1101 MSWOnLButtonUp(x
, y
, wParam
);
1104 case WM_LBUTTONDBLCLK
:
1106 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1107 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1108 MSWOnLButtonDClick(x
, y
, wParam
);
1113 int x
= (DIMENSION_TYPE
) LOWORD(lParam
);
1114 int y
= (DIMENSION_TYPE
) HIWORD(lParam
);
1115 MSWOnMouseMove(x
, y
, wParam
);
1118 case MM_JOY1BUTTONDOWN
:
1120 int x
= LOWORD(lParam
);
1121 int y
= HIWORD(lParam
);
1122 MSWOnJoyDown(wxJOYSTICK1
, x
, y
, wParam
);
1125 case MM_JOY2BUTTONDOWN
:
1127 int x
= LOWORD(lParam
);
1128 int y
= HIWORD(lParam
);
1129 MSWOnJoyDown(wxJOYSTICK2
, x
, y
, wParam
);
1132 case MM_JOY1BUTTONUP
:
1134 int x
= LOWORD(lParam
);
1135 int y
= HIWORD(lParam
);
1136 MSWOnJoyUp(wxJOYSTICK1
, x
, y
, wParam
);
1139 case MM_JOY2BUTTONUP
:
1141 int x
= LOWORD(lParam
);
1142 int y
= HIWORD(lParam
);
1143 MSWOnJoyUp(wxJOYSTICK2
, x
, y
, wParam
);
1148 int x
= LOWORD(lParam
);
1149 int y
= HIWORD(lParam
);
1150 MSWOnJoyMove(wxJOYSTICK1
, x
, y
, wParam
);
1155 int x
= LOWORD(lParam
);
1156 int y
= HIWORD(lParam
);
1157 MSWOnJoyMove(wxJOYSTICK2
, x
, y
, wParam
);
1162 int z
= LOWORD(lParam
);
1163 MSWOnJoyZMove(wxJOYSTICK1
, z
, wParam
);
1168 int z
= LOWORD(lParam
);
1169 MSWOnJoyZMove(wxJOYSTICK2
, z
, wParam
);
1176 else return MSWDefWindowProc(message
, wParam
, lParam
);
1181 return MSWOnSysCommand(wParam
, lParam
);
1187 WORD id
= LOWORD(wParam
);
1188 HWND hwnd
= (HWND
)lParam
;
1189 WORD cmd
= HIWORD(wParam
);
1191 WORD id
= (WORD
)wParam
;
1192 HWND hwnd
= (HWND
)LOWORD(lParam
) ;
1193 WORD cmd
= HIWORD(lParam
);
1195 if (!MSWOnCommand(id
, cmd
, (WXHWND
) hwnd
))
1196 return MSWDefWindowProc(message
, wParam
, lParam
);
1199 #if defined(__WIN95__)
1202 // for some messages (TVN_ITEMEXPANDING for example), the return
1203 // value of WM_NOTIFY handler is important, so don't just return 0
1204 // if we processed the message
1205 return MSWOnNotify(wParam
, lParam
);
1211 WORD flags
= HIWORD(wParam
);
1212 HMENU sysmenu
= (HMENU
)lParam
;
1214 WORD flags
= LOWORD(lParam
);
1215 HMENU sysmenu
= (HMENU
)HIWORD(lParam
);
1217 MSWOnMenuHighlight((WORD
)wParam
, flags
, (WXHMENU
) sysmenu
);
1220 case WM_INITMENUPOPUP
:
1222 MSWOnInitMenuPopup((WXHMENU
) (HMENU
)wParam
, (int)LOWORD(lParam
), (HIWORD(lParam
) != 0));
1227 return MSWOnDrawItem((int)wParam
, (WXDRAWITEMSTRUCT
*)lParam
);
1230 case WM_MEASUREITEM
:
1232 return MSWOnMeasureItem((int)wParam
, (WXMEASUREITEMSTRUCT
*)lParam
);
1238 // If this has been processed by an event handler,
1239 // return 0 now (we've handled it).
1240 if (MSWOnKeyDown((WORD
) wParam
, lParam
))
1245 // we consider these message "not interesting" to OnChar
1246 if ( wParam
== VK_SHIFT
|| wParam
== VK_CONTROL
)
1251 // Avoid duplicate messages to OnChar for these special keys
1264 // if ( ::GetKeyState(VK_CONTROL) & 0x100 ) // Don't understand purpose of this test
1265 if (!MSWOnChar((WORD)wParam, lParam))
1270 if (!MSWOnChar((WORD
)wParam
, lParam
))
1275 if ( ::GetKeyState(VK_CONTROL) & 0x100 )
1285 if (!MSWOnKeyUp((WORD
) wParam
, lParam
))
1289 case WM_CHAR
: // Always an ASCII character
1291 if (!MSWOnChar((WORD
)wParam
, lParam
, TRUE
))
1299 WORD code
= LOWORD(wParam
);
1300 WORD pos
= HIWORD(wParam
);
1301 HWND control
= (HWND
)lParam
;
1303 WORD code
= (WORD
)wParam
;
1304 WORD pos
= LOWORD(lParam
);
1305 HWND control
= (HWND
)HIWORD(lParam
);
1307 MSWOnHScroll(code
, pos
, (WXHWND
) control
);
1313 WORD code
= LOWORD(wParam
);
1314 WORD pos
= HIWORD(wParam
);
1315 HWND control
= (HWND
)lParam
;
1317 WORD code
= (WORD
)wParam
;
1318 WORD pos
= LOWORD(lParam
);
1319 HWND control
= (HWND
)HIWORD(lParam
);
1321 MSWOnVScroll(code
, pos
, (WXHWND
) control
);
1325 case WM_CTLCOLORBTN
:
1327 int nCtlColor
= CTLCOLOR_BTN
;
1328 HWND control
= (HWND
)lParam
;
1329 HDC pDC
= (HDC
)wParam
;
1330 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1331 message
, wParam
, lParam
);
1334 case WM_CTLCOLORDLG
:
1336 int nCtlColor
= CTLCOLOR_DLG
;
1337 HWND control
= (HWND
)lParam
;
1338 HDC pDC
= (HDC
)wParam
;
1339 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1340 message
, wParam
, lParam
);\
1343 case WM_CTLCOLORLISTBOX
:
1345 int nCtlColor
= CTLCOLOR_LISTBOX
;
1346 HWND control
= (HWND
)lParam
;
1347 HDC pDC
= (HDC
)wParam
;
1348 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1349 message
, wParam
, lParam
);
1352 case WM_CTLCOLORMSGBOX
:
1354 int nCtlColor
= CTLCOLOR_MSGBOX
;
1355 HWND control
= (HWND
)lParam
;
1356 HDC pDC
= (HDC
)wParam
;
1357 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1358 message
, wParam
, lParam
);
1361 case WM_CTLCOLORSCROLLBAR
:
1363 int nCtlColor
= CTLCOLOR_SCROLLBAR
;
1364 HWND control
= (HWND
)lParam
;
1365 HDC pDC
= (HDC
)wParam
;
1366 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1367 message
, wParam
, lParam
);
1370 case WM_CTLCOLORSTATIC
:
1372 int nCtlColor
= CTLCOLOR_STATIC
;
1373 HWND control
= (HWND
)lParam
;
1374 HDC pDC
= (HDC
)wParam
;
1375 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1376 message
, wParam
, lParam
);
1379 case WM_CTLCOLOREDIT
:
1381 int nCtlColor
= CTLCOLOR_EDIT
;
1382 HWND control
= (HWND
)lParam
;
1383 HDC pDC
= (HDC
)wParam
;
1384 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1385 message
, wParam
, lParam
);
1391 HWND control
= (HWND
)LOWORD(lParam
);
1392 int nCtlColor
= (int)HIWORD(lParam
);
1393 HDC pDC
= (HDC
)wParam
;
1394 return (DWORD
)MSWOnCtlColor((WXHDC
) pDC
, (WXHWND
) control
, nCtlColor
,
1395 message
, wParam
, lParam
);
1399 case WM_SYSCOLORCHANGE
:
1401 // Return value of 0 means, we processed it.
1402 if (MSWOnColorChange((WXHWND
) hWnd
, message
, wParam
, lParam
) == 0)
1405 return MSWDefWindowProc(message
, wParam
, lParam
);
1408 case WM_PALETTECHANGED
:
1410 return MSWOnPaletteChanged((WXHWND
) (HWND
) wParam
);
1413 case WM_QUERYNEWPALETTE
:
1415 return MSWOnQueryNewPalette();
1420 // Prevents flicker when dragging
1421 if (IsIconic(hWnd
)) return 1;
1423 if (!MSWOnEraseBkgnd((WXHDC
) (HDC
)wParam
))
1424 return 0; // Default(); MSWDefWindowProc(message, wParam, lParam );
1428 case WM_MDIACTIVATE
:
1431 HWND hWndActivate
= GET_WM_MDIACTIVATE_HWNDACTIVATE(wParam
,lParam
);
1432 HWND hWndDeactivate
= GET_WM_MDIACTIVATE_HWNDDEACT(wParam
,lParam
);
1433 BOOL activate
= GET_WM_MDIACTIVATE_FACTIVATE(hWnd
,wParam
,lParam
);
1434 return MSWOnMDIActivate((long) activate
, (WXHWND
) hWndActivate
, (WXHWND
) hWndDeactivate
);
1436 return MSWOnMDIActivate((BOOL
)wParam
, (HWND
)LOWORD(lParam
),
1437 (HWND
)HIWORD(lParam
));
1442 MSWOnDropFiles(wParam
);
1447 return 0; // MSWOnInitDialog((WXHWND)(HWND)wParam);
1450 case WM_QUERYENDSESSION
:
1452 // Same as WM_CLOSE, but inverted results. Thx Microsoft :-)
1453 // return MSWOnClose();
1455 return MSWOnQueryEndSession(lParam
);
1460 // Same as WM_CLOSE, but inverted results. Thx Microsoft :-)
1461 MSWOnEndSession((wParam
!= 0), lParam
);
1474 case WM_GETMINMAXINFO
:
1476 MINMAXINFO
*info
= (MINMAXINFO
*)lParam
;
1477 if (m_minSizeX
!= -1)
1478 info
->ptMinTrackSize
.x
= (int)m_minSizeX
;
1479 if (m_minSizeY
!= -1)
1480 info
->ptMinTrackSize
.y
= (int)m_minSizeY
;
1481 if (m_maxSizeX
!= -1)
1482 info
->ptMaxTrackSize
.x
= (int)m_maxSizeX
;
1483 if (m_maxSizeY
!= -1)
1484 info
->ptMaxTrackSize
.y
= (int)m_maxSizeY
;
1485 return MSWDefWindowProc(message
, wParam
, lParam
);
1490 return MSWGetDlgCode();
1493 return MSWDefWindowProc(message
, wParam
, lParam
);
1496 return 0; // Success: we processed this command.
1499 // Dialog window proc
1500 LONG APIENTRY _EXPORT
1501 wxDlgProc(HWND hWnd
, UINT message
, WPARAM wParam
, LPARAM lParam
)
1506 wxList
*wxWinHandleList
= NULL
;
1507 wxWindow
*wxFindWinFromHandle(WXHWND hWnd
)
1509 wxNode
*node
= wxWinHandleList
->Find((long)hWnd
);
1512 return (wxWindow
*)node
->Data();
1515 void wxAssociateWinWithHandle(HWND hWnd
, wxWindow
*win
)
1517 // adding NULL hWnd is (first) surely a result of an error and
1518 // (secondly) breaks menu command processing
1519 wxCHECK_RET( hWnd
!= (HWND
) NULL
, "attempt to add a NULL hWnd to window list" );
1521 if ( !wxWinHandleList
->Find((long)hWnd
) )
1522 wxWinHandleList
->Append((long)hWnd
, win
);
1525 void wxRemoveHandleAssociation(wxWindow
*win
)
1527 wxWinHandleList
->DeleteObject(win
);
1530 // Default destroyer - override if you destroy it in some other way
1531 // (e.g. with MDI child windows)
1532 void wxWindow::MSWDestroyWindow()
1536 void wxWindow::MSWCreate(int id
, wxWindow
*parent
, const char *wclass
, wxWindow
*wx_win
, const char *title
,
1537 int x
, int y
, int width
, int height
,
1538 WXDWORD style
, const char *dialog_template
, WXDWORD extendedStyle
)
1540 bool is_dialog
= (dialog_template
!= NULL
);
1541 int x1
= CW_USEDEFAULT
;
1543 int width1
= CW_USEDEFAULT
;
1546 // Find parent's size, if it exists, to set up a possible default
1547 // panel size the size of the parent window
1551 // Was GetWindowRect: JACS 5/5/95
1552 ::GetClientRect((HWND
) parent
->GetHWND(), &parent_rect
);
1554 width1
= parent_rect
.right
- parent_rect
.left
;
1555 height1
= parent_rect
.bottom
- parent_rect
.top
;
1560 if (width
> -1) width1
= width
;
1561 if (height
> -1) height1
= height
;
1563 HWND hParent
= NULL
;
1565 hParent
= (HWND
) parent
->GetHWND();
1571 // MakeProcInstance doesn't seem to be needed in C7. Is it needed for
1572 // other compilers???
1573 // VZ: it's always needed for Win16 and never for Win32
1575 m_hWnd
= (WXHWND
) ::CreateDialog(wxGetInstance(), dialog_template
, hParent
,
1576 (DLGPROC
)wxDlgProc
);
1578 // N.B.: if we _don't_ use this form,
1579 // then with VC++ 1.5, it crashes horribly.
1581 m_hWnd
= (WXHWND
) ::CreateDialog(wxGetInstance(), dialog_template
, hParent
,
1582 (DLGPROC
)wxDlgProc
);
1584 // Crashes when we use this.
1585 DLGPROC dlgproc
= (DLGPROC
)MakeProcInstance((DLGPROC
)wxWndProc
, wxGetInstance());
1587 m_hWnd
= (WXHWND
) ::CreateDialog(wxGetInstance(), dialog_template
, hParent
,
1593 MessageBox(NULL
, "Can't find dummy dialog template!\nCheck resource include path for finding wx.rc.",
1594 "wxWindows Error", MB_ICONEXCLAMATION
| MB_OK
);
1595 else MoveWindow((HWND
) m_hWnd
, x1
, y1
, width1
, height1
, FALSE
);
1600 if (style
& WS_CHILD
)
1605 m_hWnd
= (WXHWND
)CreateWindowEx(extendedStyle
, wclass
,
1610 hParent
, (HMENU
)controlId
, wxGetInstance(),
1614 wxLogError("Can't create window of class %s!\n"
1615 "Possible Windows 3.x compatibility problem?", wclass
);
1620 wxWinHandleList
->Append((long)m_hWnd
, this);
1623 void wxWindow::MSWOnCreate(WXLPCREATESTRUCT
WXUNUSED(cs
))
1627 bool wxWindow::MSWOnClose()
1632 // Some compilers don't define this
1633 #ifndef ENDSESSION_LOGOFF
1634 #define ENDSESSION_LOGOFF 0x80000000
1637 // Return TRUE to end session, FALSE to veto end session.
1638 bool wxWindow::MSWOnQueryEndSession(long logOff
)
1640 wxCloseEvent
event(wxEVT_QUERY_END_SESSION
, -1);
1641 event
.SetEventObject(wxTheApp
);
1642 event
.SetCanVeto(TRUE
);
1643 event
.SetLoggingOff( (logOff
== ENDSESSION_LOGOFF
) );
1644 if ((this == wxTheApp
->GetTopWindow()) && // Only send once
1645 wxTheApp
->ProcessEvent(event
) && event
.GetVeto())
1647 return FALSE
; // Veto!
1651 return TRUE
; // Don't veto
1655 bool wxWindow::MSWOnEndSession(bool endSession
, long logOff
)
1657 wxCloseEvent
event(wxEVT_END_SESSION
, -1);
1658 event
.SetEventObject(wxTheApp
);
1659 event
.SetCanVeto(FALSE
);
1660 event
.SetLoggingOff( (logOff
== ENDSESSION_LOGOFF
) );
1661 if (endSession
&& // No need to send if the session isn't ending
1662 (this == wxTheApp
->GetTopWindow()) && // Only send once
1663 wxTheApp
->ProcessEvent(event
))
1669 bool wxWindow::MSWOnDestroy()
1671 // delete our drop target if we've got one
1672 #if wxUSE_DRAG_AND_DROP
1673 if ( m_pDropTarget
!= NULL
) {
1674 m_pDropTarget
->Revoke(m_hWnd
);
1676 delete m_pDropTarget
;
1677 m_pDropTarget
= NULL
;
1684 // Deal with child commands from buttons etc.
1686 long wxWindow::MSWOnNotify(WXWPARAM wParam
, WXLPARAM lParam
)
1688 #if defined(__WIN95__)
1689 // Find a child window to send the notification to, e.g. a toolbar.
1690 // There's a problem here. NMHDR::hwndFrom doesn't give us the
1691 // handle of the toolbar; it's probably the handle of the tooltip
1692 // window (anyway, it's parent is also the toolbar's parent).
1693 // So, since we don't know which hWnd or wxWindow originated the
1694 // WM_NOTIFY, we'll need to go through all the children of this window
1695 // trying out MSWNotify.
1696 // This won't work now, though, because any number of controls
1697 // could respond to the same generic messages :-(
1699 /* This doesn't work for toolbars, but try for other controls first.
1701 NMHDR
*hdr
= (NMHDR
*)lParam
;
1702 HWND hWnd
= (HWND
)hdr
->hwndFrom
;
1703 wxWindow
*win
= wxFindWinFromHandle((WXHWND
) hWnd
);
1705 WXLPARAM result
= 0;
1709 if ( win
->MSWNotify(wParam
, lParam
, &result
) )
1714 // Rely on MSWNotify to check whether the message
1715 // belongs to the window or not
1716 wxNode
*node
= GetChildren().First();
1719 wxWindow
*child
= (wxWindow
*)node
->Data();
1720 if ( child
->MSWNotify(wParam
, lParam
, &result
) )
1722 node
= node
->Next();
1725 // finally try this window too (catches toolbar case)
1726 if ( MSWNotify(wParam
, lParam
, &result
) )
1735 void wxWindow::MSWOnMenuHighlight(WXWORD
WXUNUSED(item
), WXWORD
WXUNUSED(flags
), WXHMENU
WXUNUSED(sysmenu
))
1739 void wxWindow::MSWOnInitMenuPopup(WXHMENU menu
, int pos
, bool isSystem
)
1743 bool wxWindow::MSWOnActivate(int state
, bool WXUNUSED(minimized
), WXHWND
WXUNUSED(activate
))
1745 wxActivateEvent
event(wxEVT_ACTIVATE
, ((state
== WA_ACTIVE
) || (state
== WA_CLICKACTIVE
)),
1747 event
.SetEventObject(this);
1748 GetEventHandler()->ProcessEvent(event
);
1752 bool wxWindow::MSWOnSetFocus(WXHWND
WXUNUSED(hwnd
))
1755 if (m_caretEnabled
&& (m_caretWidth
> 0) && (m_caretHeight
> 0))
1757 ::CreateCaret((HWND
) GetHWND(), NULL
, m_caretWidth
, m_caretHeight
);
1759 ::ShowCaret((HWND
) GetHWND());
1762 // panel wants to track the window which was the last to have focus in it
1763 wxWindow
*parent
= GetParent();
1764 if ( parent
&& parent
->IsKindOf(CLASSINFO(wxPanel
)) )
1766 ((wxPanel
*)parent
)->SetLastFocus(this);
1769 wxFocusEvent
event(wxEVT_SET_FOCUS
, m_windowId
);
1770 event
.SetEventObject(this);
1771 if (!GetEventHandler()->ProcessEvent(event
))
1776 bool wxWindow::MSWOnKillFocus(WXHWND
WXUNUSED(hwnd
))
1784 wxFocusEvent
event(wxEVT_KILL_FOCUS
, m_windowId
);
1785 event
.SetEventObject(this);
1786 if (!GetEventHandler()->ProcessEvent(event
))
1791 void wxWindow::MSWOnDropFiles(WXWPARAM wParam
)
1794 HDROP hFilesInfo
= (HDROP
) wParam
;
1796 DragQueryPoint(hFilesInfo
, (LPPOINT
) &dropPoint
);
1798 // Get the total number of files dropped
1799 WORD gwFilesDropped
= (WORD
)DragQueryFile ((HDROP
)hFilesInfo
,
1804 wxString
*files
= new wxString
[gwFilesDropped
];
1806 for (wIndex
=0; wIndex
< (int)gwFilesDropped
; wIndex
++)
1808 DragQueryFile (hFilesInfo
, wIndex
, (LPSTR
) wxBuffer
, 1000);
1809 files
[wIndex
] = wxBuffer
;
1811 DragFinish (hFilesInfo
);
1813 wxDropFilesEvent
event(wxEVT_DROP_FILES
, gwFilesDropped
, files
);
1814 event
.m_eventObject
= this;
1815 event
.m_pos
.x
= dropPoint
.x
; event
.m_pos
.x
= dropPoint
.y
;
1817 if (!GetEventHandler()->ProcessEvent(event
))
1823 bool wxWindow::MSWOnDrawItem(int id
, WXDRAWITEMSTRUCT
*itemStruct
)
1825 #if wxUSE_OWNER_DRAWN
1826 if ( id
== 0 ) { // is it a menu item?
1827 DRAWITEMSTRUCT
*pDrawStruct
= (DRAWITEMSTRUCT
*)itemStruct
;
1828 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pDrawStruct
->itemData
);
1829 wxCHECK( pMenuItem
->IsKindOf(CLASSINFO(wxMenuItem
)), FALSE
);
1831 // prepare to call OnDrawItem()
1833 dc
.SetHDC((WXHDC
)pDrawStruct
->hDC
, FALSE
);
1834 wxRect
rect(pDrawStruct
->rcItem
.left
, pDrawStruct
->rcItem
.top
,
1835 pDrawStruct
->rcItem
.right
- pDrawStruct
->rcItem
.left
,
1836 pDrawStruct
->rcItem
.bottom
- pDrawStruct
->rcItem
.top
);
1837 return pMenuItem
->OnDrawItem(
1839 (wxOwnerDrawn::wxODAction
)pDrawStruct
->itemAction
,
1840 (wxOwnerDrawn::wxODStatus
)pDrawStruct
->itemState
1843 #endif // owner-drawn menus
1845 wxWindow
*item
= FindItem(id
);
1846 #if wxUSE_DYNAMIC_CLASSES
1847 if (item
&& item
->IsKindOf(CLASSINFO(wxControl
)))
1849 return ((wxControl
*)item
)->MSWOnDraw(itemStruct
);
1856 bool wxWindow::MSWOnMeasureItem(int id
, WXMEASUREITEMSTRUCT
*itemStruct
)
1858 #if wxUSE_OWNER_DRAWN
1859 if ( id
== 0 ) { // is it a menu item?
1860 MEASUREITEMSTRUCT
*pMeasureStruct
= (MEASUREITEMSTRUCT
*)itemStruct
;
1861 wxMenuItem
*pMenuItem
= (wxMenuItem
*)(pMeasureStruct
->itemData
);
1862 wxCHECK( pMenuItem
->IsKindOf(CLASSINFO(wxMenuItem
)), FALSE
);
1864 return pMenuItem
->OnMeasureItem(&pMeasureStruct
->itemWidth
,
1865 &pMeasureStruct
->itemHeight
);
1867 #endif // owner-drawn menus
1869 wxWindow
*item
= FindItem(id
);
1870 #if wxUSE_DYNAMIC_CLASSES
1871 if (item
&& item
->IsKindOf(CLASSINFO(wxControl
)))
1873 return ((wxControl
*)item
)->MSWOnMeasure(itemStruct
);
1880 WXHBRUSH
wxWindow::MSWOnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
1881 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1883 if (nCtlColor
== CTLCOLOR_DLG
)
1885 return OnCtlColor(pDC
, pWnd
, nCtlColor
, message
, wParam
, lParam
);
1888 wxControl
*item
= (wxControl
*)FindItemByHWND(pWnd
, TRUE
);
1890 WXHBRUSH hBrush
= 0;
1893 hBrush
= item
->OnCtlColor(pDC
, pWnd
, nCtlColor
, message
, wParam
, lParam
);
1895 // I think that even for dialogs, we may need to call DefWindowProc (?)
1896 // Or maybe just rely on the usual default behaviour.
1898 hBrush
= (WXHBRUSH
) MSWDefWindowProc(message
, wParam
, lParam
);
1903 // Define for each class of dialog and control
1904 WXHBRUSH
wxWindow::OnCtlColor(WXHDC pDC
, WXHWND pWnd
, WXUINT nCtlColor
,
1905 WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1907 return (WXHBRUSH
) MSWDefWindowProc(message
, wParam
, lParam
);
1910 bool wxWindow::MSWOnColorChange(WXHWND hWnd
, WXUINT message
, WXWPARAM wParam
, WXLPARAM lParam
)
1912 wxSysColourChangedEvent event
;
1913 event
.SetEventObject(this);
1915 // Check if app handles this.
1916 if (GetEventHandler()->ProcessEvent(event
))
1919 // We didn't process it
1923 long wxWindow::MSWOnPaletteChanged(WXHWND hWndPalChange
)
1925 wxPaletteChangedEvent
event(GetId());
1926 event
.SetEventObject(this);
1927 event
.SetChangedWindow(wxFindWinFromHandle(hWndPalChange
));
1928 GetEventHandler()->ProcessEvent(event
);
1932 long wxWindow::MSWOnQueryNewPalette()
1934 wxQueryNewPaletteEvent
event(GetId());
1935 event
.SetEventObject(this);
1936 if (!GetEventHandler()->ProcessEvent(event
) || !event
.GetPaletteRealized())
1938 return (long) FALSE
;
1944 // Responds to colour changes: passes event on to children.
1945 void wxWindow::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1947 wxNode
*node
= GetChildren().First();
1950 // Only propagate to non-top-level windows
1951 wxWindow
*win
= (wxWindow
*)node
->Data();
1952 if ( win
->GetParent() )
1954 wxSysColourChangedEvent event2
;
1955 event
.m_eventObject
= win
;
1956 win
->GetEventHandler()->ProcessEvent(event2
);
1959 node
= node
->Next();
1963 long wxWindow::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1966 return ::CallWindowProc(CASTWNDPROC m_oldWndProc
, (HWND
) GetHWND(), (UINT
) nMsg
, (WPARAM
) wParam
, (LPARAM
) lParam
);
1968 return ::DefWindowProc((HWND
) GetHWND(), nMsg
, wParam
, lParam
);
1971 long wxWindow::Default()
1973 // Ignore 'fake' events (perhaps generated as a result of a separate real event)
1978 wxLogTrace(wxTraceMessages
, "Forwarding %s to DefWindowProc.",
1979 wxGetMessageName(m_lastMsg
));
1980 #endif // __WXDEBUG__
1982 return this->MSWDefWindowProc(m_lastMsg
, m_lastWParam
, m_lastLParam
);
1985 bool wxWindow::MSWProcessMessage(WXMSG
* pMsg
)
1987 if ( m_hWnd
!= 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL
) ) {
1988 // intercept dialog navigation keys
1989 MSG
*msg
= (MSG
*)pMsg
;
1990 bool bProcess
= TRUE
;
1991 if ( msg
->message
!= WM_KEYDOWN
)
1994 if ( bProcess
&& (HIWORD(msg
->lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
1999 bool bCtrlDown
= (::GetKeyState(VK_CONTROL
) & 0x100) != 0;
2001 // WM_GETDLGCODE: ask the control if it wants the key for itself,
2002 // don't process it if it's the case (except for Ctrl-Tab/Enter
2003 // combinations which are always processed)
2007 lDlgCode
= ::SendMessage(msg
->hwnd
, WM_GETDLGCODE
, 0, 0);
2010 bool bForward
= TRUE
,
2011 bWindowChange
= FALSE
;
2013 switch ( msg
->wParam
)
2016 if ( lDlgCode
& DLGC_WANTTAB
) {
2020 // Ctrl-Tab cycles thru notebook pages
2021 bWindowChange
= bCtrlDown
;
2022 bForward
= !(::GetKeyState(VK_SHIFT
) & 0x100);
2028 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2036 if ( (lDlgCode
& DLGC_WANTARROWS
) || bCtrlDown
)
2042 if ( lDlgCode
& DLGC_WANTMESSAGE
)
2044 // control wants to process Enter itself, don't
2045 // call IsDialogMessage() which would interpret
2050 wxButton
*btnDefault
= GetDefaultItem();
2051 if ( btnDefault
&& !bCtrlDown
)
2053 // if there is a default button, Enter should
2055 (void)::SendMessage((HWND
)btnDefault
->GetHWND(),
2059 // else: but if there is not it makes sense to make it
2060 // work like a TAB - and that's what we do.
2061 // Note that Ctrl-Enter always works this way.
2072 wxNavigationKeyEvent event
;
2073 event
.SetDirection(bForward
);
2074 event
.SetWindowChange(bWindowChange
);
2075 event
.SetEventObject(this);
2077 if ( GetEventHandler()->ProcessEvent(event
) )
2082 if ( ::IsDialogMessage((HWND
)GetHWND(), msg
) )
2088 // relay mouse move events to the tooltip control
2089 MSG
*msg
= (MSG
*)pMsg
;
2090 if ( msg
->message
== WM_MOUSEMOVE
)
2091 m_tooltip
->RelayEvent(pMsg
);
2093 #endif // wxUSE_TOOLTIPS
2098 bool wxWindow::MSWTranslateMessage(WXMSG
* pMsg
)
2100 if (m_acceleratorTable
.Ok() &&
2101 ::TranslateAccelerator((HWND
) GetHWND(), (HACCEL
) m_acceleratorTable
.GetHACCEL(), (MSG
*)pMsg
))
2107 long wxWindow::MSWOnMDIActivate(long WXUNUSED(flag
), WXHWND
WXUNUSED(activate
), WXHWND
WXUNUSED(deactivate
))
2112 void wxWindow::MSWDetachWindowMenu()
2116 int N
= GetMenuItemCount((HMENU
) m_hMenu
);
2118 for (i
= 0; i
< N
; i
++)
2121 int chars
= GetMenuString((HMENU
) m_hMenu
, i
, buf
, 100, MF_BYPOSITION
);
2122 if ((chars
> 0) && (strcmp(buf
, "&Window") == 0))
2124 RemoveMenu((HMENU
) m_hMenu
, i
, MF_BYPOSITION
);
2131 bool wxWindow::MSWOnPaint()
2134 HRGN hRegion
= ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
2135 ::GetUpdateRgn((HWND
) GetHWND(), hRegion
, FALSE
);
2137 m_updateRegion
= wxRegion((WXHRGN
) hRegion
);
2140 ::GetUpdateRect((HWND
) GetHWND(), & updateRect
, FALSE
);
2142 m_updateRegion
= wxRegion(updateRect
.left
, updateRect
.top
,
2143 updateRect
.right
- updateRect
.left
, updateRect
.bottom
- updateRect
.top
);
2146 wxPaintEvent
event(m_windowId
);
2147 event
.SetEventObject(this);
2148 if (!GetEventHandler()->ProcessEvent(event
))
2153 void wxWindow::MSWOnSize(int w
, int h
, WXUINT
WXUNUSED(flag
))
2163 wxSizeEvent
event(wxSize(w
, h
), m_windowId
);
2164 event
.SetEventObject(this);
2165 if (!GetEventHandler()->ProcessEvent(event
))
2171 void wxWindow::MSWOnWindowPosChanging(void *WXUNUSED(lpPos
))
2176 // Deal with child commands from buttons etc.
2177 bool wxWindow::MSWOnCommand(WXWORD id
, WXWORD cmd
, WXHWND control
)
2179 if (wxCurrentPopupMenu
)
2181 wxMenu
*popupMenu
= wxCurrentPopupMenu
;
2182 wxCurrentPopupMenu
= NULL
;
2183 bool succ
= popupMenu
->MSWCommand(cmd
, id
);
2187 wxWindow
*item
= FindItem(id
);
2190 bool value
= item
->MSWCommand(cmd
, id
);
2195 wxWindow
*win
= wxFindWinFromHandle(control
);
2197 return win
->MSWCommand(cmd
, id
);
2202 long wxWindow::MSWOnSysCommand(WXWPARAM wParam
, WXLPARAM lParam
)
2204 switch (wParam
&& 0xFFFFFFF0)
2208 wxMaximizeEvent
event(m_windowId
);
2209 event
.SetEventObject(this);
2210 if (!GetEventHandler()->ProcessEvent(event
))
2218 wxIconizeEvent
event(m_windowId
);
2219 event
.SetEventObject(this);
2220 if (!GetEventHandler()->ProcessEvent(event
))
2232 void wxWindow::MSWOnLButtonDown(int x
, int y
, WXUINT flags
)
2234 wxMouseEvent
event(wxEVT_LEFT_DOWN
);
2236 event
.m_x
= x
; event
.m_y
= y
;
2237 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2238 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2239 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2240 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2241 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2242 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2243 event
.m_eventObject
= this;
2245 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_LEFT_DOWN
;
2247 if (!GetEventHandler()->ProcessEvent(event
))
2251 void wxWindow::MSWOnLButtonUp(int x
, int y
, WXUINT flags
)
2253 wxMouseEvent
event(wxEVT_LEFT_UP
);
2255 event
.m_x
= x
; event
.m_y
= y
;
2256 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2257 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2258 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2259 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2260 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2261 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2262 event
.m_eventObject
= this;
2264 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_LEFT_UP
;
2266 if (!GetEventHandler()->ProcessEvent(event
))
2270 void wxWindow::MSWOnLButtonDClick(int x
, int y
, WXUINT flags
)
2272 wxMouseEvent
event(wxEVT_LEFT_DCLICK
);
2274 event
.m_x
= x
; event
.m_y
= y
;
2275 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2276 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2277 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2278 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2279 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2280 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2281 event
.m_eventObject
= this;
2283 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_LEFT_DCLICK
;
2285 if (!GetEventHandler()->ProcessEvent(event
))
2289 void wxWindow::MSWOnMButtonDown(int x
, int y
, WXUINT flags
)
2291 wxMouseEvent
event(wxEVT_MIDDLE_DOWN
);
2293 event
.m_x
= x
; event
.m_y
= y
;
2294 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2295 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2296 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2297 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2298 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2299 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2300 event
.m_eventObject
= this;
2302 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_MIDDLE_DOWN
;
2304 if (!GetEventHandler()->ProcessEvent(event
))
2308 void wxWindow::MSWOnMButtonUp(int x
, int y
, WXUINT flags
)
2310 wxMouseEvent
event(wxEVT_MIDDLE_UP
);
2312 event
.m_x
= x
; event
.m_y
= y
;
2313 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2314 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2315 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2316 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2317 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2318 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2319 event
.m_eventObject
= this;
2321 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_MIDDLE_UP
;
2323 if (!GetEventHandler()->ProcessEvent(event
))
2327 void wxWindow::MSWOnMButtonDClick(int x
, int y
, WXUINT flags
)
2329 wxMouseEvent
event(wxEVT_MIDDLE_DCLICK
);
2331 event
.m_x
= x
; event
.m_y
= y
;
2332 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2333 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2334 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2335 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2336 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2337 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2338 event
.m_eventObject
= this;
2340 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_MIDDLE_DCLICK
;
2342 if (!GetEventHandler()->ProcessEvent(event
))
2346 void wxWindow::MSWOnRButtonDown(int x
, int y
, WXUINT flags
)
2348 wxMouseEvent
event(wxEVT_RIGHT_DOWN
);
2350 event
.m_x
= x
; event
.m_y
= y
;
2351 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2352 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2353 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2354 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2355 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2356 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2357 event
.m_eventObject
= this;
2359 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_RIGHT_DOWN
;
2361 if (!GetEventHandler()->ProcessEvent(event
))
2365 void wxWindow::MSWOnRButtonUp(int x
, int y
, WXUINT flags
)
2367 wxMouseEvent
event(wxEVT_RIGHT_UP
);
2369 event
.m_x
= x
; event
.m_y
= y
;
2370 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2371 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2372 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2373 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2374 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2375 event
.m_eventObject
= this;
2376 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2378 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_RIGHT_UP
;
2380 if (!GetEventHandler()->ProcessEvent(event
))
2384 void wxWindow::MSWOnRButtonDClick(int x
, int y
, WXUINT flags
)
2386 wxMouseEvent
event(wxEVT_RIGHT_DCLICK
);
2388 event
.m_x
= x
; event
.m_y
= y
;
2389 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2390 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2391 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2392 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2393 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2394 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2395 event
.m_eventObject
= this;
2397 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
; m_lastEvent
= wxEVT_RIGHT_DCLICK
;
2399 if (!GetEventHandler()->ProcessEvent(event
))
2403 void wxWindow::MSWOnMouseMove(int x
, int y
, WXUINT flags
)
2405 // 'normal' move event...
2406 // Set cursor, but only if we're not in 'busy' mode
2408 // Trouble with this is that it sets the cursor for controls too :-(
2409 if (m_windowCursor
.Ok() && !wxIsBusy())
2410 ::SetCursor((HCURSOR
) m_windowCursor
.GetHCURSOR());
2412 if (!m_mouseInWindow
)
2414 // Generate an ENTER event
2415 m_mouseInWindow
= TRUE
;
2416 MSWOnMouseEnter(x
, y
, flags
);
2419 wxMouseEvent
event(wxEVT_MOTION
);
2421 event
.m_x
= x
; event
.m_y
= y
;
2422 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2423 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2424 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2425 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2426 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2427 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2428 event
.m_eventObject
= this;
2430 // Window gets a click down message followed by a mouse move
2431 // message even if position isn't changed! We want to discard
2432 // the trailing move event if x and y are the same.
2433 if ((m_lastEvent
== wxEVT_RIGHT_DOWN
|| m_lastEvent
== wxEVT_LEFT_DOWN
||
2434 m_lastEvent
== wxEVT_MIDDLE_DOWN
) &&
2435 (m_lastXPos
== event
.m_x
&& m_lastYPos
== event
.m_y
))
2437 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2438 m_lastEvent
= wxEVT_MOTION
;
2442 m_lastEvent
= wxEVT_MOTION
;
2443 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2445 if (!GetEventHandler()->ProcessEvent(event
))
2449 void wxWindow::MSWOnMouseEnter(int x
, int y
, WXUINT flags
)
2451 wxMouseEvent
event(wxEVT_ENTER_WINDOW
);
2453 event
.m_x
= x
; event
.m_y
= y
;
2454 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2455 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2456 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2457 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2458 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2459 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2460 event
.m_eventObject
= this;
2462 m_lastEvent
= wxEVT_ENTER_WINDOW
;
2463 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2464 // No message - ensure we don't try to call the default behaviour accidentally.
2466 GetEventHandler()->ProcessEvent(event
);
2469 void wxWindow::MSWOnMouseLeave(int x
, int y
, WXUINT flags
)
2471 wxMouseEvent
event(wxEVT_LEAVE_WINDOW
);
2473 event
.m_x
= x
; event
.m_y
= y
;
2474 event
.m_shiftDown
= ((flags
& MK_SHIFT
) != 0);
2475 event
.m_controlDown
= ((flags
& MK_CONTROL
) != 0);
2476 event
.m_leftDown
= ((flags
& MK_LBUTTON
) != 0);
2477 event
.m_middleDown
= ((flags
& MK_MBUTTON
) != 0);
2478 event
.m_rightDown
= ((flags
& MK_RBUTTON
) != 0);
2479 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2480 event
.m_eventObject
= this;
2482 m_lastEvent
= wxEVT_LEAVE_WINDOW
;
2483 m_lastXPos
= event
.m_x
; m_lastYPos
= event
.m_y
;
2484 // No message - ensure we don't try to call the default behaviour accidentally.
2486 GetEventHandler()->ProcessEvent(event
);
2489 bool wxWindow::MSWOnChar(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
)
2492 bool tempControlDown
= FALSE
;
2495 // If 1 -> 26, translate to CTRL plus a letter.
2497 if ((id
> 0) && (id
< 27))
2518 tempControlDown
= TRUE
;
2524 else if ((id
= wxCharCodeMSWToWX(wParam
)) == 0) {
2525 // it's ASCII and will be processed here only when called from
2526 // WM_CHAR (i.e. when isASCII = TRUE)
2532 wxKeyEvent
event(wxEVT_CHAR
);
2533 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
2534 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
2535 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
2536 event
.m_altDown
= TRUE
;
2538 event
.m_eventObject
= this;
2539 event
.m_keyCode
= id
;
2540 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2545 GetWindowRect((HWND
) GetHWND(),&rect
) ;
2549 event
.m_x
= pt
.x
; event
.m_y
= pt
.y
;
2551 if (GetEventHandler()->ProcessEvent(event
))
2560 bool wxWindow::MSWOnKeyDown(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
)
2564 if ((id
= wxCharCodeMSWToWX(wParam
)) == 0) {
2570 wxKeyEvent
event(wxEVT_KEY_DOWN
);
2571 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
2572 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
2573 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
2574 event
.m_altDown
= TRUE
;
2576 event
.m_eventObject
= this;
2577 event
.m_keyCode
= id
;
2578 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2583 GetWindowRect((HWND
) GetHWND(),&rect
) ;
2587 event
.m_x
= pt
.x
; event
.m_y
= pt
.y
;
2589 if (GetEventHandler()->ProcessEvent(event
))
2601 bool wxWindow::MSWOnKeyUp(WXWORD wParam
, WXLPARAM lParam
, bool isASCII
)
2605 if ((id
= wxCharCodeMSWToWX(wParam
)) == 0) {
2611 wxKeyEvent
event(wxEVT_KEY_UP
);
2612 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
2613 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
2614 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
2615 event
.m_altDown
= TRUE
;
2617 event
.m_eventObject
= this;
2618 event
.m_keyCode
= id
;
2619 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
2624 GetWindowRect((HWND
) GetHWND(),&rect
) ;
2628 event
.m_x
= pt
.x
; event
.m_y
= pt
.y
;
2630 if (GetEventHandler()->ProcessEvent(event
))
2639 void wxWindow::MSWOnJoyDown(int joystick
, int x
, int y
, WXUINT flags
)
2643 if (flags
& JOY_BUTTON1CHG
)
2644 change
= wxJOY_BUTTON1
;
2645 if (flags
& JOY_BUTTON2CHG
)
2646 change
= wxJOY_BUTTON2
;
2647 if (flags
& JOY_BUTTON3CHG
)
2648 change
= wxJOY_BUTTON3
;
2649 if (flags
& JOY_BUTTON4CHG
)
2650 change
= wxJOY_BUTTON4
;
2652 if (flags
& JOY_BUTTON1
)
2653 buttons
|= wxJOY_BUTTON1
;
2654 if (flags
& JOY_BUTTON2
)
2655 buttons
|= wxJOY_BUTTON2
;
2656 if (flags
& JOY_BUTTON3
)
2657 buttons
|= wxJOY_BUTTON3
;
2658 if (flags
& JOY_BUTTON4
)
2659 buttons
|= wxJOY_BUTTON4
;
2661 wxJoystickEvent
event(wxEVT_JOY_BUTTON_DOWN
, buttons
, joystick
, change
);
2662 event
.SetPosition(wxPoint(x
, y
));
2663 event
.SetEventObject(this);
2665 GetEventHandler()->ProcessEvent(event
);
2668 void wxWindow::MSWOnJoyUp(int joystick
, int x
, int y
, WXUINT flags
)
2672 if (flags
& JOY_BUTTON1CHG
)
2673 change
= wxJOY_BUTTON1
;
2674 if (flags
& JOY_BUTTON2CHG
)
2675 change
= wxJOY_BUTTON2
;
2676 if (flags
& JOY_BUTTON3CHG
)
2677 change
= wxJOY_BUTTON3
;
2678 if (flags
& JOY_BUTTON4CHG
)
2679 change
= wxJOY_BUTTON4
;
2681 if (flags
& JOY_BUTTON1
)
2682 buttons
|= wxJOY_BUTTON1
;
2683 if (flags
& JOY_BUTTON2
)
2684 buttons
|= wxJOY_BUTTON2
;
2685 if (flags
& JOY_BUTTON3
)
2686 buttons
|= wxJOY_BUTTON3
;
2687 if (flags
& JOY_BUTTON4
)
2688 buttons
|= wxJOY_BUTTON4
;
2690 wxJoystickEvent
event(wxEVT_JOY_BUTTON_UP
, buttons
, joystick
, change
);
2691 event
.SetPosition(wxPoint(x
, y
));
2692 event
.SetEventObject(this);
2694 GetEventHandler()->ProcessEvent(event
);
2697 void wxWindow::MSWOnJoyMove(int joystick
, int x
, int y
, WXUINT flags
)
2700 if (flags
& JOY_BUTTON1
)
2701 buttons
|= wxJOY_BUTTON1
;
2702 if (flags
& JOY_BUTTON2
)
2703 buttons
|= wxJOY_BUTTON2
;
2704 if (flags
& JOY_BUTTON3
)
2705 buttons
|= wxJOY_BUTTON3
;
2706 if (flags
& JOY_BUTTON4
)
2707 buttons
|= wxJOY_BUTTON4
;
2709 wxJoystickEvent
event(wxEVT_JOY_MOVE
, buttons
, joystick
, 0);
2710 event
.SetPosition(wxPoint(x
, y
));
2711 event
.SetEventObject(this);
2713 GetEventHandler()->ProcessEvent(event
);
2716 void wxWindow::MSWOnJoyZMove(int joystick
, int z
, WXUINT flags
)
2719 if (flags
& JOY_BUTTON1
)
2720 buttons
|= wxJOY_BUTTON1
;
2721 if (flags
& JOY_BUTTON2
)
2722 buttons
|= wxJOY_BUTTON2
;
2723 if (flags
& JOY_BUTTON3
)
2724 buttons
|= wxJOY_BUTTON3
;
2725 if (flags
& JOY_BUTTON4
)
2726 buttons
|= wxJOY_BUTTON4
;
2728 wxJoystickEvent
event(wxEVT_JOY_ZMOVE
, buttons
, joystick
, 0);
2729 event
.SetZPosition(z
);
2730 event
.SetEventObject(this);
2732 GetEventHandler()->ProcessEvent(event
);
2735 void wxWindow::MSWOnVScroll(WXWORD wParam
, WXWORD pos
, WXHWND control
)
2739 wxWindow
*child
= wxFindWinFromHandle(control
);
2741 child
->MSWOnVScroll(wParam
, pos
, control
);
2745 wxScrollEvent event
;
2746 event
.SetPosition(pos
);
2747 event
.SetOrientation(wxVERTICAL
);
2748 event
.m_eventObject
= this;
2753 event
.m_eventType
= wxEVT_SCROLL_TOP
;
2757 event
.m_eventType
= wxEVT_SCROLL_BOTTOM
;
2761 event
.m_eventType
= wxEVT_SCROLL_LINEUP
;
2765 event
.m_eventType
= wxEVT_SCROLL_LINEDOWN
;
2769 event
.m_eventType
= wxEVT_SCROLL_PAGEUP
;
2773 event
.m_eventType
= wxEVT_SCROLL_PAGEDOWN
;
2777 case SB_THUMBPOSITION
:
2778 event
.m_eventType
= wxEVT_SCROLL_THUMBTRACK
;
2786 if (!GetEventHandler()->ProcessEvent(event
))
2790 void wxWindow::MSWOnHScroll( WXWORD wParam
, WXWORD pos
, WXHWND control
)
2794 wxWindow
*child
= wxFindWinFromHandle(control
);
2796 child
->MSWOnHScroll(wParam
, pos
, control
);
2802 wxScrollEvent event
;
2803 event
.SetPosition(pos
);
2804 event
.SetOrientation(wxHORIZONTAL
);
2805 event
.m_eventObject
= this;
2810 event
.m_eventType
= wxEVT_SCROLL_TOP
;
2814 event
.m_eventType
= wxEVT_SCROLL_BOTTOM
;
2818 event
.m_eventType
= wxEVT_SCROLL_LINEUP
;
2822 event
.m_eventType
= wxEVT_SCROLL_LINEDOWN
;
2826 event
.m_eventType
= wxEVT_SCROLL_PAGEUP
;
2830 event
.m_eventType
= wxEVT_SCROLL_PAGEDOWN
;
2834 case SB_THUMBPOSITION
:
2835 event
.m_eventType
= wxEVT_SCROLL_THUMBTRACK
;
2842 if ( GetEventHandler()->ProcessEvent(event
) )
2846 // call the default WM_HSCROLL handler: it's non trivial in some common
2847 // controls (up-down control for example)
2851 void wxWindow::MSWOnShow(bool show
, int status
)
2853 wxShowEvent
event(GetId(), show
);
2854 event
.m_eventObject
= this;
2855 GetEventHandler()->ProcessEvent(event
);
2858 bool wxWindow::MSWOnInitDialog(WXHWND
WXUNUSED(hWndFocus
))
2860 wxInitDialogEvent
event(GetId());
2861 event
.m_eventObject
= this;
2862 GetEventHandler()->ProcessEvent(event
);
2866 void wxWindow::InitDialog()
2868 wxInitDialogEvent
event(GetId());
2869 event
.SetEventObject( this );
2870 GetEventHandler()->ProcessEvent(event
);
2873 // Default init dialog behaviour is to transfer data to window
2874 void wxWindow::OnInitDialog(wxInitDialogEvent
& event
)
2876 TransferDataToWindow();
2879 void wxGetCharSize(WXHWND wnd
, int *x
, int *y
,wxFont
*the_font
)
2882 HDC dc
= ::GetDC((HWND
) wnd
);
2887 // the_font->UseResource();
2888 // the_font->RealizeResource();
2889 fnt
= (HFONT
)the_font
->GetResourceHandle();
2891 was
= (HFONT
) SelectObject(dc
,fnt
) ;
2893 GetTextMetrics(dc
, &tm
);
2894 if (the_font
&& fnt
&& was
)
2896 SelectObject(dc
,was
) ;
2898 ReleaseDC((HWND
)wnd
, dc
);
2899 *x
= tm
.tmAveCharWidth
;
2900 *y
= tm
.tmHeight
+ tm
.tmExternalLeading
;
2903 // the_font->ReleaseResource();
2906 // Returns 0 if was a normal ASCII value, not a special key. This indicates that
2907 // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
2908 int wxCharCodeMSWToWX(int keySym
)
2913 case VK_CANCEL
: id
= WXK_CANCEL
; break;
2914 case VK_BACK
: id
= WXK_BACK
; break;
2915 case VK_TAB
: id
= WXK_TAB
; break;
2916 case VK_CLEAR
: id
= WXK_CLEAR
; break;
2917 case VK_RETURN
: id
= WXK_RETURN
; break;
2918 case VK_SHIFT
: id
= WXK_SHIFT
; break;
2919 case VK_CONTROL
: id
= WXK_CONTROL
; break;
2920 case VK_MENU
: id
= WXK_MENU
; break;
2921 case VK_PAUSE
: id
= WXK_PAUSE
; break;
2922 case VK_SPACE
: id
= WXK_SPACE
; break;
2923 case VK_ESCAPE
: id
= WXK_ESCAPE
; break;
2924 case VK_PRIOR
: id
= WXK_PRIOR
; break;
2925 case VK_NEXT
: id
= WXK_NEXT
; break;
2926 case VK_END
: id
= WXK_END
; break;
2927 case VK_HOME
: id
= WXK_HOME
; break;
2928 case VK_LEFT
: id
= WXK_LEFT
; break;
2929 case VK_UP
: id
= WXK_UP
; break;
2930 case VK_RIGHT
: id
= WXK_RIGHT
; break;
2931 case VK_DOWN
: id
= WXK_DOWN
; break;
2932 case VK_SELECT
: id
= WXK_SELECT
; break;
2933 case VK_PRINT
: id
= WXK_PRINT
; break;
2934 case VK_EXECUTE
: id
= WXK_EXECUTE
; break;
2935 case VK_INSERT
: id
= WXK_INSERT
; break;
2936 case VK_DELETE
: id
= WXK_DELETE
; break;
2937 case VK_HELP
: id
= WXK_HELP
; break;
2938 case VK_NUMPAD0
: id
= WXK_NUMPAD0
; break;
2939 case VK_NUMPAD1
: id
= WXK_NUMPAD1
; break;
2940 case VK_NUMPAD2
: id
= WXK_NUMPAD2
; break;
2941 case VK_NUMPAD3
: id
= WXK_NUMPAD3
; break;
2942 case VK_NUMPAD4
: id
= WXK_NUMPAD4
; break;
2943 case VK_NUMPAD5
: id
= WXK_NUMPAD5
; break;
2944 case VK_NUMPAD6
: id
= WXK_NUMPAD6
; break;
2945 case VK_NUMPAD7
: id
= WXK_NUMPAD7
; break;
2946 case VK_NUMPAD8
: id
= WXK_NUMPAD8
; break;
2947 case VK_NUMPAD9
: id
= WXK_NUMPAD9
; break;
2948 case VK_MULTIPLY
: id
= WXK_MULTIPLY
; break;
2949 case VK_ADD
: id
= WXK_ADD
; break;
2950 case VK_SUBTRACT
: id
= WXK_SUBTRACT
; break;
2951 case VK_DECIMAL
: id
= WXK_DECIMAL
; break;
2952 case VK_DIVIDE
: id
= WXK_DIVIDE
; break;
2953 case VK_F1
: id
= WXK_F1
; break;
2954 case VK_F2
: id
= WXK_F2
; break;
2955 case VK_F3
: id
= WXK_F3
; break;
2956 case VK_F4
: id
= WXK_F4
; break;
2957 case VK_F5
: id
= WXK_F5
; break;
2958 case VK_F6
: id
= WXK_F6
; break;
2959 case VK_F7
: id
= WXK_F7
; break;
2960 case VK_F8
: id
= WXK_F8
; break;
2961 case VK_F9
: id
= WXK_F9
; break;
2962 case VK_F10
: id
= WXK_F10
; break;
2963 case VK_F11
: id
= WXK_F11
; break;
2964 case VK_F12
: id
= WXK_F12
; break;
2965 case VK_F13
: id
= WXK_F13
; break;
2966 case VK_F14
: id
= WXK_F14
; break;
2967 case VK_F15
: id
= WXK_F15
; break;
2968 case VK_F16
: id
= WXK_F16
; break;
2969 case VK_F17
: id
= WXK_F17
; break;
2970 case VK_F18
: id
= WXK_F18
; break;
2971 case VK_F19
: id
= WXK_F19
; break;
2972 case VK_F20
: id
= WXK_F20
; break;
2973 case VK_F21
: id
= WXK_F21
; break;
2974 case VK_F22
: id
= WXK_F22
; break;
2975 case VK_F23
: id
= WXK_F23
; break;
2976 case VK_F24
: id
= WXK_F24
; break;
2977 case VK_NUMLOCK
: id
= WXK_NUMLOCK
; break;
2978 case VK_SCROLL
: id
= WXK_SCROLL
; break;
2987 int wxCharCodeWXToMSW(int id
, bool *isVirtual
)
2993 case WXK_CANCEL
: keySym
= VK_CANCEL
; break;
2994 case WXK_CLEAR
: keySym
= VK_CLEAR
; break;
2995 case WXK_SHIFT
: keySym
= VK_SHIFT
; break;
2996 case WXK_CONTROL
: keySym
= VK_CONTROL
; break;
2997 case WXK_MENU
: keySym
= VK_MENU
; break;
2998 case WXK_PAUSE
: keySym
= VK_PAUSE
; break;
2999 case WXK_PRIOR
: keySym
= VK_PRIOR
; break;
3000 case WXK_NEXT
: keySym
= VK_NEXT
; break;
3001 case WXK_END
: keySym
= VK_END
; break;
3002 case WXK_HOME
: keySym
= VK_HOME
; break;
3003 case WXK_LEFT
: keySym
= VK_LEFT
; break;
3004 case WXK_UP
: keySym
= VK_UP
; break;
3005 case WXK_RIGHT
: keySym
= VK_RIGHT
; break;
3006 case WXK_DOWN
: keySym
= VK_DOWN
; break;
3007 case WXK_SELECT
: keySym
= VK_SELECT
; break;
3008 case WXK_PRINT
: keySym
= VK_PRINT
; break;
3009 case WXK_EXECUTE
: keySym
= VK_EXECUTE
; break;
3010 case WXK_INSERT
: keySym
= VK_INSERT
; break;
3011 case WXK_DELETE
: keySym
= VK_DELETE
; break;
3012 case WXK_HELP
: keySym
= VK_HELP
; break;
3013 case WXK_NUMPAD0
: keySym
= VK_NUMPAD0
; break;
3014 case WXK_NUMPAD1
: keySym
= VK_NUMPAD1
; break;
3015 case WXK_NUMPAD2
: keySym
= VK_NUMPAD2
; break;
3016 case WXK_NUMPAD3
: keySym
= VK_NUMPAD3
; break;
3017 case WXK_NUMPAD4
: keySym
= VK_NUMPAD4
; break;
3018 case WXK_NUMPAD5
: keySym
= VK_NUMPAD5
; break;
3019 case WXK_NUMPAD6
: keySym
= VK_NUMPAD6
; break;
3020 case WXK_NUMPAD7
: keySym
= VK_NUMPAD7
; break;
3021 case WXK_NUMPAD8
: keySym
= VK_NUMPAD8
; break;
3022 case WXK_NUMPAD9
: keySym
= VK_NUMPAD9
; break;
3023 case WXK_MULTIPLY
: keySym
= VK_MULTIPLY
; break;
3024 case WXK_ADD
: keySym
= VK_ADD
; break;
3025 case WXK_SUBTRACT
: keySym
= VK_SUBTRACT
; break;
3026 case WXK_DECIMAL
: keySym
= VK_DECIMAL
; break;
3027 case WXK_DIVIDE
: keySym
= VK_DIVIDE
; break;
3028 case WXK_F1
: keySym
= VK_F1
; break;
3029 case WXK_F2
: keySym
= VK_F2
; break;
3030 case WXK_F3
: keySym
= VK_F3
; break;
3031 case WXK_F4
: keySym
= VK_F4
; break;
3032 case WXK_F5
: keySym
= VK_F5
; break;
3033 case WXK_F6
: keySym
= VK_F6
; break;
3034 case WXK_F7
: keySym
= VK_F7
; break;
3035 case WXK_F8
: keySym
= VK_F8
; break;
3036 case WXK_F9
: keySym
= VK_F9
; break;
3037 case WXK_F10
: keySym
= VK_F10
; break;
3038 case WXK_F11
: keySym
= VK_F11
; break;
3039 case WXK_F12
: keySym
= VK_F12
; break;
3040 case WXK_F13
: keySym
= VK_F13
; break;
3041 case WXK_F14
: keySym
= VK_F14
; break;
3042 case WXK_F15
: keySym
= VK_F15
; break;
3043 case WXK_F16
: keySym
= VK_F16
; break;
3044 case WXK_F17
: keySym
= VK_F17
; break;
3045 case WXK_F18
: keySym
= VK_F18
; break;
3046 case WXK_F19
: keySym
= VK_F19
; break;
3047 case WXK_F20
: keySym
= VK_F20
; break;
3048 case WXK_F21
: keySym
= VK_F21
; break;
3049 case WXK_F22
: keySym
= VK_F22
; break;
3050 case WXK_F23
: keySym
= VK_F23
; break;
3051 case WXK_F24
: keySym
= VK_F24
; break;
3052 case WXK_NUMLOCK
: keySym
= VK_NUMLOCK
; break;
3053 case WXK_SCROLL
: keySym
= VK_SCROLL
; break;
3064 // Caret manipulation
3065 void wxWindow::CreateCaret(int w
, int h
)
3069 m_caretEnabled
= TRUE
;
3072 void wxWindow::CreateCaret(const wxBitmap
*WXUNUSED(bitmap
))
3077 void wxWindow::ShowCaret(bool show
)
3082 ::ShowCaret((HWND
) GetHWND());
3084 ::HideCaret((HWND
) GetHWND());
3085 m_caretShown
= show
;
3089 void wxWindow::DestroyCaret()
3091 m_caretEnabled
= FALSE
;
3094 void wxWindow::SetCaretPos(int x
, int y
)
3096 ::SetCaretPos(x
, y
);
3099 void wxWindow::GetCaretPos(int *x
, int *y
) const
3102 ::GetCaretPos(&point
);
3107 wxWindow
*wxGetActiveWindow()
3109 HWND hWnd
= GetActiveWindow();
3112 return wxFindWinFromHandle((WXHWND
) hWnd
);
3117 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
3118 // in active frames and dialogs, regardless of where the focus is.
3119 static HHOOK wxTheKeyboardHook
= 0;
3120 static FARPROC wxTheKeyboardHookProc
= 0;
3121 int APIENTRY _EXPORT
3122 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
);
3124 void wxSetKeyboardHook(bool doIt
)
3128 wxTheKeyboardHookProc
= MakeProcInstance((FARPROC
) wxKeyboardHook
, wxGetInstance());
3129 wxTheKeyboardHook
= SetWindowsHookEx(WH_KEYBOARD
, (HOOKPROC
) wxTheKeyboardHookProc
, wxGetInstance(),
3130 #if defined(__WIN32__) && !defined(__TWIN32__)
3131 GetCurrentThreadId());
3132 // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right?
3139 UnhookWindowsHookEx(wxTheKeyboardHook
);
3140 FreeProcInstance(wxTheKeyboardHookProc
);
3144 int APIENTRY _EXPORT
3145 wxKeyboardHook(int nCode
, WORD wParam
, DWORD lParam
)
3147 DWORD hiWord
= HIWORD(lParam
);
3148 if (nCode
!= HC_NOREMOVE
&& ((hiWord
& KF_UP
) == 0))
3151 if ((id
= wxCharCodeMSWToWX(wParam
)) != 0)
3153 wxKeyEvent
event(wxEVT_CHAR_HOOK
);
3154 if ((HIWORD(lParam
) & KF_ALTDOWN
) == KF_ALTDOWN
)
3155 event
.m_altDown
= TRUE
;
3157 event
.m_eventObject
= NULL
;
3158 event
.m_keyCode
= id
;
3159 /* begin Albert's fix for control and shift key 26.5 */
3160 event
.m_shiftDown
= (::GetKeyState(VK_SHIFT
)&0x100?TRUE
:FALSE
);
3161 event
.m_controlDown
= (::GetKeyState(VK_CONTROL
)&0x100?TRUE
:FALSE
);
3162 /* end Albert's fix for control and shift key 26.5 */
3163 event
.SetTimestamp(wxApp::sm_lastMessageTime
);
3165 wxWindow
*win
= wxGetActiveWindow();
3168 if (win
->GetEventHandler()->ProcessEvent(event
))
3173 if ( wxTheApp
&& wxTheApp
->ProcessEvent(event
) )
3178 return (int)CallNextHookEx(wxTheKeyboardHook
, nCode
, wParam
, lParam
);
3181 void wxWindow::SetSizeHints(int minW
, int minH
, int maxW
, int maxH
, int WXUNUSED(incW
), int WXUNUSED(incH
))
3189 void wxWindow::Centre(int direction
)
3191 int x
, y
, width
, height
, panel_width
, panel_height
, new_x
, new_y
;
3193 wxWindow
*father
= (wxWindow
*)GetParent();
3197 father
->GetClientSize(&panel_width
, &panel_height
);
3198 GetSize(&width
, &height
);
3199 GetPosition(&x
, &y
);
3204 if (direction
& wxHORIZONTAL
)
3205 new_x
= (int)((panel_width
- width
)/2);
3207 if (direction
& wxVERTICAL
)
3208 new_y
= (int)((panel_height
- height
)/2);
3210 SetSize(new_x
, new_y
, -1, -1);
3214 void wxWindow::WarpPointer (int x_pos
, int y_pos
)
3216 // Move the pointer to (x_pos,y_pos) coordinates. They are expressed in
3217 // pixel coordinates, relatives to the canvas -- So, we first need to
3218 // substract origin of the window, then convert to screen position
3220 int x
= x_pos
; int y
= y_pos
;
3222 GetWindowRect ((HWND
) GetHWND(), &rect
);
3227 SetCursorPos (x
, y
);
3230 void wxWindow::MSWDeviceToLogical (float *x
, float *y
) const
3234 bool wxWindow::MSWOnEraseBkgnd (WXHDC pDC
)
3242 wxEraseEvent
event(m_windowId
, &dc
);
3243 event
.m_eventObject
= this;
3244 if (!GetEventHandler()->ProcessEvent(event
))
3247 dc
.SelectOldObjects(pDC
);
3253 dc
.SelectOldObjects(pDC
);
3256 dc
.SetHDC((WXHDC
) NULL
);
3260 void wxWindow::OnEraseBackground(wxEraseEvent
& event
)
3266 ::GetClientRect((HWND
) GetHWND(), &rect
);
3268 COLORREF ref
= PALETTERGB(m_backgroundColour
.Red(), m_backgroundColour
.Green(), m_backgroundColour
.Blue()) ;
3269 HBRUSH hBrush
= ::CreateSolidBrush(ref
);
3270 int mode
= ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), MM_TEXT
);
3272 // ::GetClipBox((HDC) event.GetDC()->GetHDC(), &rect);
3273 ::FillRect ((HDC
) event
.GetDC()->GetHDC(), &rect
, hBrush
);
3274 ::DeleteObject(hBrush
);
3275 ::SetMapMode((HDC
) event
.GetDC()->GetHDC(), mode
);
3277 // Less efficient version (and doesn't account for scrolling)
3279 GetClientSize(& w, & h);
3280 wxBrush *brush = wxTheBrushList->FindOrCreateBrush(& GetBackgroundColour(), wxSOLID);
3281 event.GetDC()->SetBrush(brush);
3282 event.GetDC()->SetPen(wxTRANSPARENT_PEN);
3284 event.GetDC()->DrawRectangle(0, 0, w+1, h+1);
3288 #if WXWIN_COMPATIBILITY
3289 void wxWindow::SetScrollRange(int orient
, int range
, bool refresh
)
3291 #if defined(__WIN95__)
3295 // Try to adjust the range to cope with page size > 1
3296 // - a Windows API quirk
3297 int pageSize
= GetScrollPage(orient
);
3298 if ( pageSize
> 1 && range
> 0)
3300 range1
+= (pageSize
- 1);
3306 if (orient
== wxHORIZONTAL
) {
3312 info
.cbSize
= sizeof(SCROLLINFO
);
3313 info
.nPage
= pageSize
; // Have to set this, or scrollbar goes awry
3317 info
.fMask
= SIF_RANGE
| SIF_PAGE
;
3319 HWND hWnd
= (HWND
) GetHWND();
3321 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3324 if (orient
== wxHORIZONTAL
)
3329 HWND hWnd
= (HWND
) GetHWND();
3331 ::SetScrollRange(hWnd
, wOrient
, 0, range
, refresh
);
3335 void wxWindow::SetScrollPage(int orient
, int page
, bool refresh
)
3337 #if defined(__WIN95__)
3341 if (orient
== wxHORIZONTAL
) {
3343 m_xThumbSize
= page
;
3346 m_yThumbSize
= page
;
3349 info
.cbSize
= sizeof(SCROLLINFO
);
3352 info
.fMask
= SIF_PAGE
;
3354 HWND hWnd
= (HWND
) GetHWND();
3356 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3358 if (orient
== wxHORIZONTAL
)
3359 m_xThumbSize
= page
;
3361 m_yThumbSize
= page
;
3365 int wxWindow::OldGetScrollRange(int orient
) const
3368 if (orient
== wxHORIZONTAL
)
3373 #if __WATCOMC__ && defined(__WINDOWS_386__)
3374 short minPos
, maxPos
;
3378 HWND hWnd
= (HWND
) GetHWND();
3381 ::GetScrollRange(hWnd
, wOrient
, &minPos
, &maxPos
);
3382 #if defined(__WIN95__)
3383 // Try to adjust the range to cope with page size > 1
3384 // - a Windows API quirk
3385 int pageSize
= GetScrollPage(orient
);
3388 maxPos
-= (pageSize
- 1);
3397 int wxWindow::GetScrollPage(int orient
) const
3399 if (orient
== wxHORIZONTAL
)
3400 return m_xThumbSize
;
3402 return m_yThumbSize
;
3406 int wxWindow::GetScrollPos(int orient
) const
3409 if (orient
== wxHORIZONTAL
)
3413 HWND hWnd
= (HWND
) GetHWND();
3416 return ::GetScrollPos(hWnd
, wOrient
);
3422 // This now returns the whole range, not just the number
3423 // of positions that we can scroll.
3424 int wxWindow::GetScrollRange(int orient
) const
3427 if (orient
== wxHORIZONTAL
)
3432 #if __WATCOMC__ && defined(__WINDOWS_386__)
3433 short minPos
, maxPos
;
3437 HWND hWnd
= (HWND
) GetHWND();
3440 ::GetScrollRange(hWnd
, wOrient
, &minPos
, &maxPos
);
3441 #if defined(__WIN95__)
3442 // Try to adjust the range to cope with page size > 1
3443 // - a Windows API quirk
3444 int pageSize
= GetScrollThumb(orient
);
3447 maxPos
-= (pageSize
- 1);
3449 // October 10th: new range concept.
3459 int wxWindow::GetScrollThumb(int orient
) const
3461 if (orient
== wxHORIZONTAL
)
3462 return m_xThumbSize
;
3464 return m_yThumbSize
;
3467 void wxWindow::SetScrollPos(int orient
, int pos
, bool refresh
)
3469 #if defined(__WIN95__)
3473 if (orient
== wxHORIZONTAL
) {
3479 info
.cbSize
= sizeof(SCROLLINFO
);
3483 info
.fMask
= SIF_POS
;
3485 HWND hWnd
= (HWND
) GetHWND();
3487 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3490 if (orient
== wxHORIZONTAL
)
3495 HWND hWnd
= (HWND
) GetHWND();
3497 ::SetScrollPos(hWnd
, wOrient
, pos
, refresh
);
3501 // New function that will replace some of the above.
3502 void wxWindow::SetScrollbar(int orient
, int pos
, int thumbVisible
,
3503 int range
, bool refresh
)
3506 SetScrollPage(orient, thumbVisible, FALSE);
3508 int oldRange = range - thumbVisible ;
3509 SetScrollRange(orient, oldRange, FALSE);
3511 SetScrollPos(orient, pos, refresh);
3513 #if defined(__WIN95__)
3514 int oldRange
= range
- thumbVisible
;
3516 int range1
= oldRange
;
3518 // Try to adjust the range to cope with page size > 1
3519 // - a Windows API quirk
3520 int pageSize
= thumbVisible
;
3521 if ( pageSize
> 1 && range
> 0)
3523 range1
+= (pageSize
- 1);
3529 if (orient
== wxHORIZONTAL
) {
3535 info
.cbSize
= sizeof(SCROLLINFO
);
3536 info
.nPage
= pageSize
; // Have to set this, or scrollbar goes awry
3540 info
.fMask
= SIF_RANGE
| SIF_PAGE
| SIF_POS
;
3542 HWND hWnd
= (HWND
) GetHWND();
3544 ::SetScrollInfo(hWnd
, dir
, &info
, refresh
);
3547 if (orient
== wxHORIZONTAL
)
3552 HWND hWnd
= (HWND
) GetHWND();
3555 ::SetScrollRange(hWnd
, wOrient
, 0, range
, FALSE
);
3556 ::SetScrollPos(hWnd
, wOrient
, pos
, refresh
);
3559 if (orient
== wxHORIZONTAL
) {
3560 m_xThumbSize
= thumbVisible
;
3562 m_yThumbSize
= thumbVisible
;
3566 void wxWindow::ScrollWindow(int dx
, int dy
, const wxRect
*rect
)
3571 rect2
.left
= rect
->x
;
3572 rect2
.top
= rect
->y
;
3573 rect2
.right
= rect
->x
+ rect
->width
;
3574 rect2
.bottom
= rect
->y
+ rect
->height
;
3578 ::ScrollWindow((HWND
) GetHWND(), dx
, dy
, &rect2
, NULL
);
3580 ::ScrollWindow((HWND
) GetHWND(), dx
, dy
, NULL
, NULL
);
3583 void wxWindow::SetFont(const wxFont
& font
)
3585 m_windowFont
= font
;
3587 if (!m_windowFont
.Ok())
3590 HWND hWnd
= (HWND
) GetHWND();
3593 if (m_windowFont
.GetResourceHandle())
3594 SendMessage(hWnd
, WM_SETFONT
,
3595 (WPARAM
)m_windowFont
.GetResourceHandle(),TRUE
);
3599 void wxWindow::SubclassWin(WXHWND hWnd
)
3601 wxASSERT_MSG( !m_oldWndProc
, "subclassing window twice?" );
3603 wxAssociateWinWithHandle((HWND
)hWnd
, this);
3605 m_oldWndProc
= (WXFARPROC
) GetWindowLong((HWND
) hWnd
, GWL_WNDPROC
);
3606 SetWindowLong((HWND
) hWnd
, GWL_WNDPROC
, (LONG
) wxWndProc
);
3609 void wxWindow::UnsubclassWin()
3611 wxRemoveHandleAssociation(this);
3613 // Restore old Window proc
3614 if ((HWND
) GetHWND())
3616 FARPROC farProc
= (FARPROC
) GetWindowLong((HWND
) GetHWND(), GWL_WNDPROC
);
3617 if ((m_oldWndProc
!= 0) && (farProc
!= (FARPROC
) m_oldWndProc
))
3619 SetWindowLong((HWND
) GetHWND(), GWL_WNDPROC
, (LONG
) m_oldWndProc
);
3625 // Make a Windows extended style from the given wxWindows window style
3626 WXDWORD
wxWindow::MakeExtendedStyle(long style
, bool eliminateBorders
)
3628 WXDWORD exStyle
= 0;
3629 if ( style
& wxTRANSPARENT_WINDOW
)
3630 exStyle
|= WS_EX_TRANSPARENT
;
3632 if ( !eliminateBorders
)
3634 if ( style
& wxSUNKEN_BORDER
)
3635 exStyle
|= WS_EX_CLIENTEDGE
;
3636 if ( style
& wxDOUBLE_BORDER
)
3637 exStyle
|= WS_EX_DLGMODALFRAME
;
3638 #if defined(__WIN95__)
3639 if ( style
& wxRAISED_BORDER
)
3640 exStyle
|= WS_EX_WINDOWEDGE
;
3641 if ( style
& wxSTATIC_BORDER
)
3642 exStyle
|= WS_EX_STATICEDGE
;
3648 // Determines whether native 3D effects or CTL3D should be used,
3649 // applying a default border style if required, and returning an extended
3650 // style to pass to CreateWindowEx.
3651 WXDWORD
wxWindow::Determine3DEffects(WXDWORD defaultBorderStyle
, bool *want3D
)
3653 // If matches certain criteria, then assume no 3D effects
3654 // unless specifically requested (dealt with in MakeExtendedStyle)
3655 if ( !GetParent() || !IsKindOf(CLASSINFO(wxControl
)) || (m_windowStyle
& wxNO_BORDER
) )
3658 return MakeExtendedStyle(m_windowStyle
, FALSE
);
3661 // Determine whether we should be using 3D effects or not.
3662 bool nativeBorder
= FALSE
; // by default, we don't want a Win95 effect
3664 // 1) App can specify global 3D effects
3665 *want3D
= wxTheApp
->GetAuto3D();
3667 // 2) If the parent is being drawn with user colours, or simple border specified,
3668 // switch effects off. TODO: replace wxUSER_COLOURS with wxNO_3D
3669 if (GetParent() && (GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS
) || (m_windowStyle
& wxSIMPLE_BORDER
))
3672 // 3) Control can override this global setting by defining
3673 // a border style, e.g. wxSUNKEN_BORDER
3674 if (m_windowStyle
& wxSUNKEN_BORDER
)
3677 // 4) If it's a special border, CTL3D can't cope so we want a native border
3678 if ( (m_windowStyle
& wxDOUBLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
3679 (m_windowStyle
& wxSTATIC_BORDER
) )
3682 nativeBorder
= TRUE
;
3685 // 5) If this isn't a Win95 app, and we are using CTL3D, remove border
3686 // effects from extended style
3689 nativeBorder
= FALSE
;
3692 DWORD exStyle
= MakeExtendedStyle(m_windowStyle
, !nativeBorder
);
3694 // If we want 3D, but haven't specified a border here,
3695 // apply the default border style specified.
3696 // TODO what about non-Win95 WIN32? Does it have borders?
3697 #if defined(__WIN95__) && !wxUSE_CTL3D
3698 if (defaultBorderStyle
&& (*want3D
) && ! ((m_windowStyle
& wxDOUBLE_BORDER
) || (m_windowStyle
& wxRAISED_BORDER
) ||
3699 (m_windowStyle
& wxSTATIC_BORDER
) || (m_windowStyle
& wxSIMPLE_BORDER
) ))
3700 exStyle
|= defaultBorderStyle
; // WS_EX_CLIENTEDGE ;
3706 void wxWindow::OnChar(wxKeyEvent
& event
)
3709 int id
= wxCharCodeWXToMSW((int)event
.KeyCode(), &isVirtual
);
3714 if ( !event
.ControlDown() ) // Why this test?
3715 (void) MSWDefWindowProc(m_lastMsg
, (WPARAM
) id
, m_lastLParam
);
3718 void wxWindow::OnKeyDown(wxKeyEvent
& event
)
3723 void wxWindow::OnKeyUp(wxKeyEvent
& event
)
3728 void wxWindow::OnPaint(wxPaintEvent
& event
)
3733 bool wxWindow::IsEnabled(void) const
3735 return (::IsWindowEnabled((HWND
) GetHWND()) != 0);
3738 // Dialog support: override these and call
3739 // base class members to add functionality
3740 // that can't be done using validators.
3741 // NOTE: these functions assume that controls
3742 // are direct children of this window, not grandchildren
3743 // or other levels of descendant.
3745 // Transfer values to controls. If returns FALSE,
3746 // it's an application error (pops up a dialog)
3747 bool wxWindow::TransferDataToWindow()
3749 wxNode
*node
= GetChildren().First();
3752 wxWindow
*child
= (wxWindow
*)node
->Data();
3753 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */
3754 !child
->GetValidator()->TransferToWindow() )
3756 wxLogError(_("Could not transfer data to window"));
3760 node
= node
->Next();
3765 // Transfer values from controls. If returns FALSE,
3766 // validation failed: don't quit
3767 bool wxWindow::TransferDataFromWindow()
3769 wxNode
*node
= GetChildren().First();
3772 wxWindow
*child
= (wxWindow
*)node
->Data();
3773 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */ !child
->GetValidator()->TransferFromWindow() )
3778 node
= node
->Next();
3783 bool wxWindow::Validate()
3785 wxNode
*node
= GetChildren().First();
3788 wxWindow
*child
= (wxWindow
*)node
->Data();
3789 if ( child
->GetValidator() && /* child->GetValidator()->Ok() && */ !child
->GetValidator()->Validate(this) )
3794 node
= node
->Next();
3799 // Get the window with the focus
3800 wxWindow
*wxWindow::FindFocus()
3802 HWND hWnd
= ::GetFocus();
3805 return wxFindWinFromHandle((WXHWND
) hWnd
);
3810 void wxWindow::AddChild(wxWindow
*child
)
3812 GetChildren().Append(child
);
3813 child
->m_windowParent
= this;
3816 void wxWindow::RemoveChild(wxWindow
*child
)
3818 // if (GetChildren())
3819 GetChildren().DeleteObject(child
);
3820 child
->m_windowParent
= NULL
;
3823 void wxWindow::DestroyChildren()
3826 while ((node
= GetChildren().First()) != (wxNode
*)NULL
) {
3828 if ((child
= (wxWindow
*)node
->Data()) != (wxWindow
*)NULL
) {
3830 if ( GetChildren().Member(child
) )
3836 void wxWindow::MakeModal(bool modal
)
3838 // Disable all other windows
3839 if (this->IsKindOf(CLASSINFO(wxDialog
)) || this->IsKindOf(CLASSINFO(wxFrame
)))
3841 wxNode
*node
= wxTopLevelWindows
.First();
3844 wxWindow
*win
= (wxWindow
*)node
->Data();
3846 win
->Enable(!modal
);
3848 node
= node
->Next();
3853 // If nothing defined for this, try the parent.
3854 // E.g. we may be a button loaded from a resource, with no callback function
3856 void wxWindow::OnCommand(wxWindow
& win
, wxCommandEvent
& event
)
3858 if (GetEventHandler()->ProcessEvent(event
) )
3861 m_windowParent
->GetEventHandler()->OnCommand(win
, event
);
3864 void wxWindow::SetConstraints(wxLayoutConstraints
*c
)
3868 UnsetConstraints(m_constraints
);
3869 delete m_constraints
;
3874 // Make sure other windows know they're part of a 'meaningful relationship'
3875 if (m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this))
3876 m_constraints
->left
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3877 if (m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this))
3878 m_constraints
->top
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3879 if (m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this))
3880 m_constraints
->right
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3881 if (m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this))
3882 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3883 if (m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this))
3884 m_constraints
->width
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3885 if (m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this))
3886 m_constraints
->height
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3887 if (m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this))
3888 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3889 if (m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this))
3890 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference((wxWindow
*)this);
3894 // This removes any dangling pointers to this window
3895 // in other windows' constraintsInvolvedIn lists.
3896 void wxWindow::UnsetConstraints(wxLayoutConstraints
*c
)
3900 if (c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
3901 c
->left
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3902 if (c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this))
3903 c
->top
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3904 if (c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this))
3905 c
->right
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3906 if (c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this))
3907 c
->bottom
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3908 if (c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this))
3909 c
->width
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3910 if (c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this))
3911 c
->height
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3912 if (c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this))
3913 c
->centreX
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3914 if (c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this))
3915 c
->centreY
.GetOtherWindow()->RemoveConstraintReference((wxWindow
*)this);
3919 // Back-pointer to other windows we're involved with, so if we delete
3920 // this window, we must delete any constraints we're involved with.
3921 void wxWindow::AddConstraintReference(wxWindow
*otherWin
)
3923 if (!m_constraintsInvolvedIn
)
3924 m_constraintsInvolvedIn
= new wxList
;
3925 if (!m_constraintsInvolvedIn
->Member(otherWin
))
3926 m_constraintsInvolvedIn
->Append(otherWin
);
3929 // REMOVE back-pointer to other windows we're involved with.
3930 void wxWindow::RemoveConstraintReference(wxWindow
*otherWin
)
3932 if (m_constraintsInvolvedIn
)
3933 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
3936 // Reset any constraints that mention this window
3937 void wxWindow::DeleteRelatedConstraints()
3939 if (m_constraintsInvolvedIn
)
3941 wxNode
*node
= m_constraintsInvolvedIn
->First();
3944 wxWindow
*win
= (wxWindow
*)node
->Data();
3945 wxNode
*next
= node
->Next();
3946 wxLayoutConstraints
*constr
= win
->GetConstraints();
3948 // Reset any constraints involving this window
3951 constr
->left
.ResetIfWin((wxWindow
*)this);
3952 constr
->top
.ResetIfWin((wxWindow
*)this);
3953 constr
->right
.ResetIfWin((wxWindow
*)this);
3954 constr
->bottom
.ResetIfWin((wxWindow
*)this);
3955 constr
->width
.ResetIfWin((wxWindow
*)this);
3956 constr
->height
.ResetIfWin((wxWindow
*)this);
3957 constr
->centreX
.ResetIfWin((wxWindow
*)this);
3958 constr
->centreY
.ResetIfWin((wxWindow
*)this);
3963 delete m_constraintsInvolvedIn
;
3964 m_constraintsInvolvedIn
= NULL
;
3968 void wxWindow::SetSizer(wxSizer
*sizer
)
3970 m_windowSizer
= sizer
;
3972 sizer
->SetSizerParent((wxWindow
*)this);
3979 bool wxWindow::Layout()
3981 if (GetConstraints())
3984 GetClientSize(&w
, &h
);
3985 GetConstraints()->width
.SetValue(w
);
3986 GetConstraints()->height
.SetValue(h
);
3989 // If top level (one sizer), evaluate the sizer's constraints.
3993 GetSizer()->ResetConstraints(); // Mark all constraints as unevaluated
3994 GetSizer()->LayoutPhase1(&noChanges
);
3995 GetSizer()->LayoutPhase2(&noChanges
);
3996 GetSizer()->SetConstraintSizes(); // Recursively set the real window sizes
4001 // Otherwise, evaluate child constraints
4002 ResetConstraints(); // Mark all constraints as unevaluated
4003 DoPhase(1); // Just one phase need if no sizers involved
4005 SetConstraintSizes(); // Recursively set the real window sizes
4011 // Do a phase of evaluating constraints:
4012 // the default behaviour. wxSizers may do a similar
4013 // thing, but also impose their own 'constraints'
4014 // and order the evaluation differently.
4015 bool wxWindow::LayoutPhase1(int *noChanges
)
4017 wxLayoutConstraints
*constr
= GetConstraints();
4020 return constr
->SatisfyConstraints((wxWindow
*)this, noChanges
);
4026 bool wxWindow::LayoutPhase2(int *noChanges
)
4036 // Do a phase of evaluating child constraints
4037 bool wxWindow::DoPhase(int phase
)
4039 int noIterations
= 0;
4040 int maxIterations
= 500;
4044 while ((noChanges
> 0) && (noIterations
< maxIterations
))
4048 wxNode
*node
= GetChildren().First();
4051 wxWindow
*child
= (wxWindow
*)node
->Data();
4052 if (!child
->IsKindOf(CLASSINFO(wxFrame
)) && !child
->IsKindOf(CLASSINFO(wxDialog
)))
4054 wxLayoutConstraints
*constr
= child
->GetConstraints();
4057 if (succeeded
.Member(child
))
4062 int tempNoChanges
= 0;
4063 bool success
= ( (phase
== 1) ? child
->LayoutPhase1(&tempNoChanges
) : child
->LayoutPhase2(&tempNoChanges
) ) ;
4064 noChanges
+= tempNoChanges
;
4067 succeeded
.Append(child
);
4072 node
= node
->Next();
4079 void wxWindow::ResetConstraints()
4081 wxLayoutConstraints
*constr
= GetConstraints();
4084 constr
->left
.SetDone(FALSE
);
4085 constr
->top
.SetDone(FALSE
);
4086 constr
->right
.SetDone(FALSE
);
4087 constr
->bottom
.SetDone(FALSE
);
4088 constr
->width
.SetDone(FALSE
);
4089 constr
->height
.SetDone(FALSE
);
4090 constr
->centreX
.SetDone(FALSE
);
4091 constr
->centreY
.SetDone(FALSE
);
4093 wxNode
*node
= GetChildren().First();
4096 wxWindow
*win
= (wxWindow
*)node
->Data();
4097 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
4098 win
->ResetConstraints();
4099 node
= node
->Next();
4103 // Need to distinguish between setting the 'fake' size for
4104 // windows and sizers, and setting the real values.
4105 void wxWindow::SetConstraintSizes(bool recurse
)
4107 wxLayoutConstraints
*constr
= GetConstraints();
4108 if (constr
&& constr
->left
.GetDone() && constr
->right
.GetDone() &&
4109 constr
->width
.GetDone() && constr
->height
.GetDone())
4111 int x
= constr
->left
.GetValue();
4112 int y
= constr
->top
.GetValue();
4113 int w
= constr
->width
.GetValue();
4114 int h
= constr
->height
.GetValue();
4116 // If we don't want to resize this window, just move it...
4117 if ((constr
->width
.GetRelationship() != wxAsIs
) ||
4118 (constr
->height
.GetRelationship() != wxAsIs
))
4120 // Calls Layout() recursively. AAAGH. How can we stop that.
4121 // Simply take Layout() out of non-top level OnSizes.
4122 SizerSetSize(x
, y
, w
, h
);
4131 char *windowClass
= this->GetClassInfo()->GetClassName();
4134 if (GetName() == "")
4135 winName
= "unnamed";
4137 winName
= GetName();
4138 wxLogDebug("Constraint(s) not satisfied for window of type %s, name %s:",
4139 (const char *)windowClass
, (const char *)winName
);
4140 if (!constr
->left
.GetDone())
4141 wxLogDebug(" unsatisfied 'left' constraint.");
4142 if (!constr
->right
.GetDone())
4143 wxLogDebug(" unsatisfied 'right' constraint.");
4144 if (!constr
->width
.GetDone())
4145 wxLogDebug(" unsatisfied 'width' constraint.");
4146 if (!constr
->height
.GetDone())
4147 wxLogDebug(" unsatisfied 'height' constraint.");
4148 wxLogDebug("Please check constraints: try adding AsIs() constraints.\n");
4153 wxNode
*node
= GetChildren().First();
4156 wxWindow
*win
= (wxWindow
*)node
->Data();
4157 if (!win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)))
4158 win
->SetConstraintSizes();
4159 node
= node
->Next();
4164 // This assumes that all sizers are 'on' the same
4165 // window, i.e. the parent of this window.
4166 void wxWindow::TransformSizerToActual(int *x
, int *y
) const
4168 if (!m_sizerParent
|| m_sizerParent
->IsKindOf(CLASSINFO(wxDialog
)) ||
4169 m_sizerParent
->IsKindOf(CLASSINFO(wxFrame
)) )
4173 m_sizerParent
->GetPosition(&xp
, &yp
);
4174 m_sizerParent
->TransformSizerToActual(&xp
, &yp
);
4179 void wxWindow::SizerSetSize(int x
, int y
, int w
, int h
)
4183 TransformSizerToActual(&xx
, &yy
);
4184 SetSize(xx
, yy
, w
, h
);
4187 void wxWindow::SizerMove(int x
, int y
)
4191 TransformSizerToActual(&xx
, &yy
);
4195 // Only set the size/position of the constraint (if any)
4196 void wxWindow::SetSizeConstraint(int x
, int y
, int w
, int h
)
4198 wxLayoutConstraints
*constr
= GetConstraints();
4203 constr
->left
.SetValue(x
);
4204 constr
->left
.SetDone(TRUE
);
4208 constr
->top
.SetValue(y
);
4209 constr
->top
.SetDone(TRUE
);
4213 constr
->width
.SetValue(w
);
4214 constr
->width
.SetDone(TRUE
);
4218 constr
->height
.SetValue(h
);
4219 constr
->height
.SetDone(TRUE
);
4224 void wxWindow::MoveConstraint(int x
, int y
)
4226 wxLayoutConstraints
*constr
= GetConstraints();
4231 constr
->left
.SetValue(x
);
4232 constr
->left
.SetDone(TRUE
);
4236 constr
->top
.SetValue(y
);
4237 constr
->top
.SetDone(TRUE
);
4242 void wxWindow::GetSizeConstraint(int *w
, int *h
) const
4244 wxLayoutConstraints
*constr
= GetConstraints();
4247 *w
= constr
->width
.GetValue();
4248 *h
= constr
->height
.GetValue();
4254 void wxWindow::GetClientSizeConstraint(int *w
, int *h
) const
4256 wxLayoutConstraints
*constr
= GetConstraints();
4259 *w
= constr
->width
.GetValue();
4260 *h
= constr
->height
.GetValue();
4263 GetClientSize(w
, h
);
4266 void wxWindow::GetPositionConstraint(int *x
, int *y
) const
4268 wxLayoutConstraints
*constr
= GetConstraints();
4271 *x
= constr
->left
.GetValue();
4272 *y
= constr
->top
.GetValue();
4278 bool wxWindow::Close(bool force
)
4280 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
4281 event
.SetEventObject(this);
4282 #if WXWIN_COMPATIBILITY
4283 event
.SetForce(force
);
4285 event
.SetCanVeto(!force
);
4287 return (GetEventHandler()->ProcessEvent(event
) && !event
.GetVeto());
4290 wxObject
* wxWindow::GetChild(int number
) const
4292 // Return a pointer to the Nth object in the Panel
4293 // if (!GetChildren())
4295 wxNode
*node
= GetChildren().First();
4298 node
= node
->Next() ;
4301 wxObject
*obj
= (wxObject
*)node
->Data();
4308 void wxWindow::OnDefaultAction(wxControl
*initiatingItem
)
4310 /* This is obsolete now; if we wish to intercept listbox double-clicks,
4311 * we explicitly intercept the wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
4314 if (initiatingItem->IsKindOf(CLASSINFO(wxListBox)))
4316 wxListBox *lbox = (wxListBox *)initiatingItem;
4317 wxCommandEvent event(wxEVT_COMMAND_LEFT_DCLICK);
4318 event.m_commandInt = -1;
4319 if ((lbox->GetWindowStyleFlag() & wxLB_MULTIPLE) == 0)
4321 event.m_commandString = copystring(lbox->GetStringSelection());
4322 event.m_commandInt = lbox->GetSelection();
4323 event.m_clientData = lbox->wxListBox::GetClientData(event.m_commandInt);
4325 event.m_eventObject = lbox;
4327 lbox->ProcessCommand(event);
4329 if (event.m_commandString)
4330 delete[] event.m_commandString;
4334 wxButton *but = GetDefaultItem();
4337 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED);
4338 event.SetEventObject(but);
4339 but->Command(event);
4344 void wxWindow::Clear()
4346 wxClientDC
dc(this);
4347 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
4348 dc
.SetBackground(brush
);
4352 // Fits the panel around the items
4353 void wxWindow::Fit()
4357 wxNode
*node
= GetChildren().First();
4360 wxWindow
*win
= (wxWindow
*)node
->Data();
4362 win
->GetPosition(&wx
, &wy
);
4363 win
->GetSize(&ww
, &wh
);
4364 if ( wx
+ ww
> maxX
)
4366 if ( wy
+ wh
> maxY
)
4369 node
= node
->Next();
4371 SetClientSize(maxX
+ 5, maxY
+ 5);
4374 void wxWindow::SetValidator(const wxValidator
& validator
)
4376 if ( m_windowValidator
)
4377 delete m_windowValidator
;
4378 m_windowValidator
= validator
.Clone();
4380 if ( m_windowValidator
)
4381 m_windowValidator
->SetWindow(this) ;
4384 // Find a window by id or name
4385 wxWindow
*wxWindow::FindWindow(long id
)
4390 wxNode
*node
= GetChildren().First();
4393 wxWindow
*child
= (wxWindow
*)node
->Data();
4394 wxWindow
*found
= child
->FindWindow(id
);
4397 node
= node
->Next();
4402 wxWindow
*wxWindow::FindWindow(const wxString
& name
)
4404 if ( GetName() == name
)
4407 wxNode
*node
= GetChildren().First();
4410 wxWindow
*child
= (wxWindow
*)node
->Data();
4411 wxWindow
*found
= child
->FindWindow(name
);
4414 node
= node
->Next();
4420 // Default input behaviour for a scrolling canvas should be to scroll
4421 // according to the cursor keys pressed
4422 void wxWindow::OnChar(wxKeyEvent& event)
4434 GetScrollUnitsPerPage(&x_page, &y_page);
4436 GetVirtualSize(&v_width,&v_height);
4438 ViewStart(&start_x, &start_y);
4441 y_pages = (int)(v_height/vert_units) - y_page;
4449 switch (event.keyCode)
4456 if (start_y - y_page > 0)
4457 Scroll(start_x, start_y - y_page);
4467 if ((y_page > 0) && (start_y <= y_pages-y-1))
4469 if (y_pages + y < start_y + y_page)
4470 Scroll(start_x, y_pages + y);
4472 Scroll(start_x, start_y + y_page);
4479 if ((y_page > 0) && (start_y >= 1))
4480 Scroll(start_x, start_y - 1);
4486 if ((y_page > 0) && (start_y <= y_pages-y-1))
4489 Scroll(start_x, start_y + 1);
4495 if ((x_page > 0) && (start_x >= 1))
4496 Scroll(start_x - 1, start_y);
4502 Scroll(start_x + 1, start_y);
4513 Scroll(start_x, y_pages+y);
4521 // Setup background and foreground colours correctly
4522 void wxWindow::SetupColours()
4525 SetBackgroundColour(GetParent()->GetBackgroundColour());
4528 void wxWindow::OnIdle(wxIdleEvent
& event
)
4530 // Check if we need to send a LEAVE event
4531 if (m_mouseInWindow
)
4534 ::GetCursorPos(&pt
);
4535 if (::WindowFromPoint(pt
) != (HWND
) GetHWND())
4537 // Generate a LEAVE event
4538 m_mouseInWindow
= FALSE
;
4541 if (::GetKeyState(VK_SHIFT
) != 0)
4543 if (::GetKeyState(VK_CONTROL
) != 0)
4544 state
|= MK_CONTROL
;
4546 // Unfortunately the mouse button and keyboard state may have changed
4547 // by the time the OnIdle function is called, so 'state' may be
4550 MSWOnMouseLeave(pt
.x
, pt
.y
, state
);
4556 // Raise the window to the top of the Z order
4557 void wxWindow::Raise()
4559 ::BringWindowToTop((HWND
) GetHWND());
4562 // Lower the window to the bottom of the Z order
4563 void wxWindow::Lower()
4565 ::SetWindowPos((HWND
) GetHWND(), HWND_BOTTOM
, 0, 0, 0, 0, SWP_NOMOVE
|SWP_NOSIZE
|SWP_NOACTIVATE
);
4568 long wxWindow::MSWGetDlgCode()
4570 // default: just forward to def window proc (the msg has no parameters)
4571 return MSWDefWindowProc(WM_GETDLGCODE
, 0, 0);
4574 bool wxWindow::AcceptsFocus() const
4576 // invisible and disabled controls don't need focus
4577 return IsShown() && IsEnabled();
4580 // Update region access
4581 wxRegion
wxWindow::GetUpdateRegion() const
4583 return m_updateRegion
;
4586 bool wxWindow::IsExposed(int x
, int y
, int w
, int h
) const
4588 return (m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
);
4591 bool wxWindow::IsExposed(const wxPoint
& pt
) const
4593 return (m_updateRegion
.Contains(pt
) != wxOutRegion
);
4596 bool wxWindow::IsExposed(const wxRect
& rect
) const
4598 return (m_updateRegion
.Contains(rect
) != wxOutRegion
);
4601 // Set this window to be the child of 'parent'.
4602 bool wxWindow::Reparent(wxWindow
*parent
)
4604 if (parent
== GetParent())
4607 // Unlink this window from the existing parent.
4610 GetParent()->RemoveChild(this);
4613 wxTopLevelWindows
.DeleteObject(this);
4615 HWND hWndParent
= 0;
4616 HWND hWndChild
= (HWND
) GetHWND();
4617 if (parent
!= (wxWindow
*) NULL
)
4619 parent
->AddChild(this);
4620 hWndParent
= (HWND
) parent
->GetHWND();
4623 wxTopLevelWindows
.Append(this);
4625 ::SetParent(hWndChild
, hWndParent
);
4631 const char *wxGetMessageName(int message
)
4633 switch ( message
) {
4634 case 0x0000: return "WM_NULL";
4635 case 0x0001: return "WM_CREATE";
4636 case 0x0002: return "WM_DESTROY";
4637 case 0x0003: return "WM_MOVE";
4638 case 0x0005: return "WM_SIZE";
4639 case 0x0006: return "WM_ACTIVATE";
4640 case 0x0007: return "WM_SETFOCUS";
4641 case 0x0008: return "WM_KILLFOCUS";
4642 case 0x000A: return "WM_ENABLE";
4643 case 0x000B: return "WM_SETREDRAW";
4644 case 0x000C: return "WM_SETTEXT";
4645 case 0x000D: return "WM_GETTEXT";
4646 case 0x000E: return "WM_GETTEXTLENGTH";
4647 case 0x000F: return "WM_PAINT";
4648 case 0x0010: return "WM_CLOSE";
4649 case 0x0011: return "WM_QUERYENDSESSION";
4650 case 0x0012: return "WM_QUIT";
4651 case 0x0013: return "WM_QUERYOPEN";
4652 case 0x0014: return "WM_ERASEBKGND";
4653 case 0x0015: return "WM_SYSCOLORCHANGE";
4654 case 0x0016: return "WM_ENDSESSION";
4655 case 0x0017: return "WM_SYSTEMERROR";
4656 case 0x0018: return "WM_SHOWWINDOW";
4657 case 0x0019: return "WM_CTLCOLOR";
4658 case 0x001A: return "WM_WININICHANGE";
4659 case 0x001B: return "WM_DEVMODECHANGE";
4660 case 0x001C: return "WM_ACTIVATEAPP";
4661 case 0x001D: return "WM_FONTCHANGE";
4662 case 0x001E: return "WM_TIMECHANGE";
4663 case 0x001F: return "WM_CANCELMODE";
4664 case 0x0020: return "WM_SETCURSOR";
4665 case 0x0021: return "WM_MOUSEACTIVATE";
4666 case 0x0022: return "WM_CHILDACTIVATE";
4667 case 0x0023: return "WM_QUEUESYNC";
4668 case 0x0024: return "WM_GETMINMAXINFO";
4669 case 0x0026: return "WM_PAINTICON";
4670 case 0x0027: return "WM_ICONERASEBKGND";
4671 case 0x0028: return "WM_NEXTDLGCTL";
4672 case 0x002A: return "WM_SPOOLERSTATUS";
4673 case 0x002B: return "WM_DRAWITEM";
4674 case 0x002C: return "WM_MEASUREITEM";
4675 case 0x002D: return "WM_DELETEITEM";
4676 case 0x002E: return "WM_VKEYTOITEM";
4677 case 0x002F: return "WM_CHARTOITEM";
4678 case 0x0030: return "WM_SETFONT";
4679 case 0x0031: return "WM_GETFONT";
4680 case 0x0037: return "WM_QUERYDRAGICON";
4681 case 0x0039: return "WM_COMPAREITEM";
4682 case 0x0041: return "WM_COMPACTING";
4683 case 0x0044: return "WM_COMMNOTIFY";
4684 case 0x0046: return "WM_WINDOWPOSCHANGING";
4685 case 0x0047: return "WM_WINDOWPOSCHANGED";
4686 case 0x0048: return "WM_POWER";
4689 case 0x004A: return "WM_COPYDATA";
4690 case 0x004B: return "WM_CANCELJOURNAL";
4691 case 0x004E: return "WM_NOTIFY";
4692 case 0x0050: return "WM_INPUTLANGCHANGEREQUEST";
4693 case 0x0051: return "WM_INPUTLANGCHANGE";
4694 case 0x0052: return "WM_TCARD";
4695 case 0x0053: return "WM_HELP";
4696 case 0x0054: return "WM_USERCHANGED";
4697 case 0x0055: return "WM_NOTIFYFORMAT";
4698 case 0x007B: return "WM_CONTEXTMENU";
4699 case 0x007C: return "WM_STYLECHANGING";
4700 case 0x007D: return "WM_STYLECHANGED";
4701 case 0x007E: return "WM_DISPLAYCHANGE";
4702 case 0x007F: return "WM_GETICON";
4703 case 0x0080: return "WM_SETICON";
4706 case 0x0081: return "WM_NCCREATE";
4707 case 0x0082: return "WM_NCDESTROY";
4708 case 0x0083: return "WM_NCCALCSIZE";
4709 case 0x0084: return "WM_NCHITTEST";
4710 case 0x0085: return "WM_NCPAINT";
4711 case 0x0086: return "WM_NCACTIVATE";
4712 case 0x0087: return "WM_GETDLGCODE";
4713 case 0x00A0: return "WM_NCMOUSEMOVE";
4714 case 0x00A1: return "WM_NCLBUTTONDOWN";
4715 case 0x00A2: return "WM_NCLBUTTONUP";
4716 case 0x00A3: return "WM_NCLBUTTONDBLCLK";
4717 case 0x00A4: return "WM_NCRBUTTONDOWN";
4718 case 0x00A5: return "WM_NCRBUTTONUP";
4719 case 0x00A6: return "WM_NCRBUTTONDBLCLK";
4720 case 0x00A7: return "WM_NCMBUTTONDOWN";
4721 case 0x00A8: return "WM_NCMBUTTONUP";
4722 case 0x00A9: return "WM_NCMBUTTONDBLCLK";
4723 case 0x0100: return "WM_KEYDOWN";
4724 case 0x0101: return "WM_KEYUP";
4725 case 0x0102: return "WM_CHAR";
4726 case 0x0103: return "WM_DEADCHAR";
4727 case 0x0104: return "WM_SYSKEYDOWN";
4728 case 0x0105: return "WM_SYSKEYUP";
4729 case 0x0106: return "WM_SYSCHAR";
4730 case 0x0107: return "WM_SYSDEADCHAR";
4731 case 0x0108: return "WM_KEYLAST";
4734 case 0x010D: return "WM_IME_STARTCOMPOSITION";
4735 case 0x010E: return "WM_IME_ENDCOMPOSITION";
4736 case 0x010F: return "WM_IME_COMPOSITION";
4739 case 0x0110: return "WM_INITDIALOG";
4740 case 0x0111: return "WM_COMMAND";
4741 case 0x0112: return "WM_SYSCOMMAND";
4742 case 0x0113: return "WM_TIMER";
4743 case 0x0114: return "WM_HSCROLL";
4744 case 0x0115: return "WM_VSCROLL";
4745 case 0x0116: return "WM_INITMENU";
4746 case 0x0117: return "WM_INITMENUPOPUP";
4747 case 0x011F: return "WM_MENUSELECT";
4748 case 0x0120: return "WM_MENUCHAR";
4749 case 0x0121: return "WM_ENTERIDLE";
4750 case 0x0200: return "WM_MOUSEMOVE";
4751 case 0x0201: return "WM_LBUTTONDOWN";
4752 case 0x0202: return "WM_LBUTTONUP";
4753 case 0x0203: return "WM_LBUTTONDBLCLK";
4754 case 0x0204: return "WM_RBUTTONDOWN";
4755 case 0x0205: return "WM_RBUTTONUP";
4756 case 0x0206: return "WM_RBUTTONDBLCLK";
4757 case 0x0207: return "WM_MBUTTONDOWN";
4758 case 0x0208: return "WM_MBUTTONUP";
4759 case 0x0209: return "WM_MBUTTONDBLCLK";
4760 case 0x0210: return "WM_PARENTNOTIFY";
4761 case 0x0211: return "WM_ENTERMENULOOP";
4762 case 0x0212: return "WM_EXITMENULOOP";
4765 case 0x0213: return "WM_NEXTMENU";
4766 case 0x0214: return "WM_SIZING";
4767 case 0x0215: return "WM_CAPTURECHANGED";
4768 case 0x0216: return "WM_MOVING";
4769 case 0x0218: return "WM_POWERBROADCAST";
4770 case 0x0219: return "WM_DEVICECHANGE";
4773 case 0x0220: return "WM_MDICREATE";
4774 case 0x0221: return "WM_MDIDESTROY";
4775 case 0x0222: return "WM_MDIACTIVATE";
4776 case 0x0223: return "WM_MDIRESTORE";
4777 case 0x0224: return "WM_MDINEXT";
4778 case 0x0225: return "WM_MDIMAXIMIZE";
4779 case 0x0226: return "WM_MDITILE";
4780 case 0x0227: return "WM_MDICASCADE";
4781 case 0x0228: return "WM_MDIICONARRANGE";
4782 case 0x0229: return "WM_MDIGETACTIVE";
4783 case 0x0230: return "WM_MDISETMENU";
4784 case 0x0233: return "WM_DROPFILES";
4787 case 0x0281: return "WM_IME_SETCONTEXT";
4788 case 0x0282: return "WM_IME_NOTIFY";
4789 case 0x0283: return "WM_IME_CONTROL";
4790 case 0x0284: return "WM_IME_COMPOSITIONFULL";
4791 case 0x0285: return "WM_IME_SELECT";
4792 case 0x0286: return "WM_IME_CHAR";
4793 case 0x0290: return "WM_IME_KEYDOWN";
4794 case 0x0291: return "WM_IME_KEYUP";
4797 case 0x0300: return "WM_CUT";
4798 case 0x0301: return "WM_COPY";
4799 case 0x0302: return "WM_PASTE";
4800 case 0x0303: return "WM_CLEAR";
4801 case 0x0304: return "WM_UNDO";
4802 case 0x0305: return "WM_RENDERFORMAT";
4803 case 0x0306: return "WM_RENDERALLFORMATS";
4804 case 0x0307: return "WM_DESTROYCLIPBOARD";
4805 case 0x0308: return "WM_DRAWCLIPBOARD";
4806 case 0x0309: return "WM_PAINTCLIPBOARD";
4807 case 0x030A: return "WM_VSCROLLCLIPBOARD";
4808 case 0x030B: return "WM_SIZECLIPBOARD";
4809 case 0x030C: return "WM_ASKCBFORMATNAME";
4810 case 0x030D: return "WM_CHANGECBCHAIN";
4811 case 0x030E: return "WM_HSCROLLCLIPBOARD";
4812 case 0x030F: return "WM_QUERYNEWPALETTE";
4813 case 0x0310: return "WM_PALETTEISCHANGING";
4814 case 0x0311: return "WM_PALETTECHANGED";
4817 // common controls messages - although they're not strictly speaking
4818 // standard, it's nice to decode them nevertheless
4821 case 0x1000 + 0: return "LVM_GETBKCOLOR";
4822 case 0x1000 + 1: return "LVM_SETBKCOLOR";
4823 case 0x1000 + 2: return "LVM_GETIMAGELIST";
4824 case 0x1000 + 3: return "LVM_SETIMAGELIST";
4825 case 0x1000 + 4: return "LVM_GETITEMCOUNT";
4826 case 0x1000 + 5: return "LVM_GETITEMA";
4827 case 0x1000 + 75: return "LVM_GETITEMW";
4828 case 0x1000 + 6: return "LVM_SETITEMA";
4829 case 0x1000 + 76: return "LVM_SETITEMW";
4830 case 0x1000 + 7: return "LVM_INSERTITEMA";
4831 case 0x1000 + 77: return "LVM_INSERTITEMW";
4832 case 0x1000 + 8: return "LVM_DELETEITEM";
4833 case 0x1000 + 9: return "LVM_DELETEALLITEMS";
4834 case 0x1000 + 10: return "LVM_GETCALLBACKMASK";
4835 case 0x1000 + 11: return "LVM_SETCALLBACKMASK";
4836 case 0x1000 + 12: return "LVM_GETNEXTITEM";
4837 case 0x1000 + 13: return "LVM_FINDITEMA";
4838 case 0x1000 + 83: return "LVM_FINDITEMW";
4839 case 0x1000 + 14: return "LVM_GETITEMRECT";
4840 case 0x1000 + 15: return "LVM_SETITEMPOSITION";
4841 case 0x1000 + 16: return "LVM_GETITEMPOSITION";
4842 case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA";
4843 case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW";
4844 case 0x1000 + 18: return "LVM_HITTEST";
4845 case 0x1000 + 19: return "LVM_ENSUREVISIBLE";
4846 case 0x1000 + 20: return "LVM_SCROLL";
4847 case 0x1000 + 21: return "LVM_REDRAWITEMS";
4848 case 0x1000 + 22: return "LVM_ARRANGE";
4849 case 0x1000 + 23: return "LVM_EDITLABELA";
4850 case 0x1000 + 118: return "LVM_EDITLABELW";
4851 case 0x1000 + 24: return "LVM_GETEDITCONTROL";
4852 case 0x1000 + 25: return "LVM_GETCOLUMNA";
4853 case 0x1000 + 95: return "LVM_GETCOLUMNW";
4854 case 0x1000 + 26: return "LVM_SETCOLUMNA";
4855 case 0x1000 + 96: return "LVM_SETCOLUMNW";
4856 case 0x1000 + 27: return "LVM_INSERTCOLUMNA";
4857 case 0x1000 + 97: return "LVM_INSERTCOLUMNW";
4858 case 0x1000 + 28: return "LVM_DELETECOLUMN";
4859 case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH";
4860 case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH";
4861 case 0x1000 + 31: return "LVM_GETHEADER";
4862 case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE";
4863 case 0x1000 + 34: return "LVM_GETVIEWRECT";
4864 case 0x1000 + 35: return "LVM_GETTEXTCOLOR";
4865 case 0x1000 + 36: return "LVM_SETTEXTCOLOR";
4866 case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR";
4867 case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR";
4868 case 0x1000 + 39: return "LVM_GETTOPINDEX";
4869 case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE";
4870 case 0x1000 + 41: return "LVM_GETORIGIN";
4871 case 0x1000 + 42: return "LVM_UPDATE";
4872 case 0x1000 + 43: return "LVM_SETITEMSTATE";
4873 case 0x1000 + 44: return "LVM_GETITEMSTATE";
4874 case 0x1000 + 45: return "LVM_GETITEMTEXTA";
4875 case 0x1000 + 115: return "LVM_GETITEMTEXTW";
4876 case 0x1000 + 46: return "LVM_SETITEMTEXTA";
4877 case 0x1000 + 116: return "LVM_SETITEMTEXTW";
4878 case 0x1000 + 47: return "LVM_SETITEMCOUNT";
4879 case 0x1000 + 48: return "LVM_SORTITEMS";
4880 case 0x1000 + 49: return "LVM_SETITEMPOSITION32";
4881 case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT";
4882 case 0x1000 + 51: return "LVM_GETITEMSPACING";
4883 case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA";
4884 case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW";
4885 case 0x1000 + 53: return "LVM_SETICONSPACING";
4886 case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE";
4887 case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE";
4888 case 0x1000 + 56: return "LVM_GETSUBITEMRECT";
4889 case 0x1000 + 57: return "LVM_SUBITEMHITTEST";
4890 case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY";
4891 case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY";
4892 case 0x1000 + 60: return "LVM_SETHOTITEM";
4893 case 0x1000 + 61: return "LVM_GETHOTITEM";
4894 case 0x1000 + 62: return "LVM_SETHOTCURSOR";
4895 case 0x1000 + 63: return "LVM_GETHOTCURSOR";
4896 case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT";
4897 case 0x1000 + 65: return "LVM_SETWORKAREA";
4900 case 0x1100 + 0: return "TVM_INSERTITEMA";
4901 case 0x1100 + 50: return "TVM_INSERTITEMW";
4902 case 0x1100 + 1: return "TVM_DELETEITEM";
4903 case 0x1100 + 2: return "TVM_EXPAND";
4904 case 0x1100 + 4: return "TVM_GETITEMRECT";
4905 case 0x1100 + 5: return "TVM_GETCOUNT";
4906 case 0x1100 + 6: return "TVM_GETINDENT";
4907 case 0x1100 + 7: return "TVM_SETINDENT";
4908 case 0x1100 + 8: return "TVM_GETIMAGELIST";
4909 case 0x1100 + 9: return "TVM_SETIMAGELIST";
4910 case 0x1100 + 10: return "TVM_GETNEXTITEM";
4911 case 0x1100 + 11: return "TVM_SELECTITEM";
4912 case 0x1100 + 12: return "TVM_GETITEMA";
4913 case 0x1100 + 62: return "TVM_GETITEMW";
4914 case 0x1100 + 13: return "TVM_SETITEMA";
4915 case 0x1100 + 63: return "TVM_SETITEMW";
4916 case 0x1100 + 14: return "TVM_EDITLABELA";
4917 case 0x1100 + 65: return "TVM_EDITLABELW";
4918 case 0x1100 + 15: return "TVM_GETEDITCONTROL";
4919 case 0x1100 + 16: return "TVM_GETVISIBLECOUNT";
4920 case 0x1100 + 17: return "TVM_HITTEST";
4921 case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE";
4922 case 0x1100 + 19: return "TVM_SORTCHILDREN";
4923 case 0x1100 + 20: return "TVM_ENSUREVISIBLE";
4924 case 0x1100 + 21: return "TVM_SORTCHILDRENCB";
4925 case 0x1100 + 22: return "TVM_ENDEDITLABELNOW";
4926 case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA";
4927 case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW";
4928 case 0x1100 + 24: return "TVM_SETTOOLTIPS";
4929 case 0x1100 + 25: return "TVM_GETTOOLTIPS";
4932 case 0x1200 + 0: return "HDM_GETITEMCOUNT";
4933 case 0x1200 + 1: return "HDM_INSERTITEMA";
4934 case 0x1200 + 10: return "HDM_INSERTITEMW";
4935 case 0x1200 + 2: return "HDM_DELETEITEM";
4936 case 0x1200 + 3: return "HDM_GETITEMA";
4937 case 0x1200 + 11: return "HDM_GETITEMW";
4938 case 0x1200 + 4: return "HDM_SETITEMA";
4939 case 0x1200 + 12: return "HDM_SETITEMW";
4940 case 0x1200 + 5: return "HDM_LAYOUT";
4941 case 0x1200 + 6: return "HDM_HITTEST";
4942 case 0x1200 + 7: return "HDM_GETITEMRECT";
4943 case 0x1200 + 8: return "HDM_SETIMAGELIST";
4944 case 0x1200 + 9: return "HDM_GETIMAGELIST";
4945 case 0x1200 + 15: return "HDM_ORDERTOINDEX";
4946 case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE";
4947 case 0x1200 + 17: return "HDM_GETORDERARRAY";
4948 case 0x1200 + 18: return "HDM_SETORDERARRAY";
4949 case 0x1200 + 19: return "HDM_SETHOTDIVIDER";
4952 case 0x1300 + 2: return "TCM_GETIMAGELIST";
4953 case 0x1300 + 3: return "TCM_SETIMAGELIST";
4954 case 0x1300 + 4: return "TCM_GETITEMCOUNT";
4955 case 0x1300 + 5: return "TCM_GETITEMA";
4956 case 0x1300 + 60: return "TCM_GETITEMW";
4957 case 0x1300 + 6: return "TCM_SETITEMA";
4958 case 0x1300 + 61: return "TCM_SETITEMW";
4959 case 0x1300 + 7: return "TCM_INSERTITEMA";
4960 case 0x1300 + 62: return "TCM_INSERTITEMW";
4961 case 0x1300 + 8: return "TCM_DELETEITEM";
4962 case 0x1300 + 9: return "TCM_DELETEALLITEMS";
4963 case 0x1300 + 10: return "TCM_GETITEMRECT";
4964 case 0x1300 + 11: return "TCM_GETCURSEL";
4965 case 0x1300 + 12: return "TCM_SETCURSEL";
4966 case 0x1300 + 13: return "TCM_HITTEST";
4967 case 0x1300 + 14: return "TCM_SETITEMEXTRA";
4968 case 0x1300 + 40: return "TCM_ADJUSTRECT";
4969 case 0x1300 + 41: return "TCM_SETITEMSIZE";
4970 case 0x1300 + 42: return "TCM_REMOVEIMAGE";
4971 case 0x1300 + 43: return "TCM_SETPADDING";
4972 case 0x1300 + 44: return "TCM_GETROWCOUNT";
4973 case 0x1300 + 45: return "TCM_GETTOOLTIPS";
4974 case 0x1300 + 46: return "TCM_SETTOOLTIPS";
4975 case 0x1300 + 47: return "TCM_GETCURFOCUS";
4976 case 0x1300 + 48: return "TCM_SETCURFOCUS";
4977 case 0x1300 + 49: return "TCM_SETMINTABWIDTH";
4978 case 0x1300 + 50: return "TCM_DESELECTALL";
4981 case WM_USER
+1: return "TB_ENABLEBUTTON";
4982 case WM_USER
+2: return "TB_CHECKBUTTON";
4983 case WM_USER
+3: return "TB_PRESSBUTTON";
4984 case WM_USER
+4: return "TB_HIDEBUTTON";
4985 case WM_USER
+5: return "TB_INDETERMINATE";
4986 case WM_USER
+9: return "TB_ISBUTTONENABLED";
4987 case WM_USER
+10: return "TB_ISBUTTONCHECKED";
4988 case WM_USER
+11: return "TB_ISBUTTONPRESSED";
4989 case WM_USER
+12: return "TB_ISBUTTONHIDDEN";
4990 case WM_USER
+13: return "TB_ISBUTTONINDETERMINATE";
4991 case WM_USER
+17: return "TB_SETSTATE";
4992 case WM_USER
+18: return "TB_GETSTATE";
4993 case WM_USER
+19: return "TB_ADDBITMAP";
4994 case WM_USER
+20: return "TB_ADDBUTTONS";
4995 case WM_USER
+21: return "TB_INSERTBUTTON";
4996 case WM_USER
+22: return "TB_DELETEBUTTON";
4997 case WM_USER
+23: return "TB_GETBUTTON";
4998 case WM_USER
+24: return "TB_BUTTONCOUNT";
4999 case WM_USER
+25: return "TB_COMMANDTOINDEX";
5000 case WM_USER
+26: return "TB_SAVERESTOREA";
5001 case WM_USER
+76: return "TB_SAVERESTOREW";
5002 case WM_USER
+27: return "TB_CUSTOMIZE";
5003 case WM_USER
+28: return "TB_ADDSTRINGA";
5004 case WM_USER
+77: return "TB_ADDSTRINGW";
5005 case WM_USER
+29: return "TB_GETITEMRECT";
5006 case WM_USER
+30: return "TB_BUTTONSTRUCTSIZE";
5007 case WM_USER
+31: return "TB_SETBUTTONSIZE";
5008 case WM_USER
+32: return "TB_SETBITMAPSIZE";
5009 case WM_USER
+33: return "TB_AUTOSIZE";
5010 case WM_USER
+35: return "TB_GETTOOLTIPS";
5011 case WM_USER
+36: return "TB_SETTOOLTIPS";
5012 case WM_USER
+37: return "TB_SETPARENT";
5013 case WM_USER
+39: return "TB_SETROWS";
5014 case WM_USER
+40: return "TB_GETROWS";
5015 case WM_USER
+42: return "TB_SETCMDID";
5016 case WM_USER
+43: return "TB_CHANGEBITMAP";
5017 case WM_USER
+44: return "TB_GETBITMAP";
5018 case WM_USER
+45: return "TB_GETBUTTONTEXTA";
5019 case WM_USER
+75: return "TB_GETBUTTONTEXTW";
5020 case WM_USER
+46: return "TB_REPLACEBITMAP";
5021 case WM_USER
+47: return "TB_SETINDENT";
5022 case WM_USER
+48: return "TB_SETIMAGELIST";
5023 case WM_USER
+49: return "TB_GETIMAGELIST";
5024 case WM_USER
+50: return "TB_LOADIMAGES";
5025 case WM_USER
+51: return "TB_GETRECT";
5026 case WM_USER
+52: return "TB_SETHOTIMAGELIST";
5027 case WM_USER
+53: return "TB_GETHOTIMAGELIST";
5028 case WM_USER
+54: return "TB_SETDISABLEDIMAGELIST";
5029 case WM_USER
+55: return "TB_GETDISABLEDIMAGELIST";
5030 case WM_USER
+56: return "TB_SETSTYLE";
5031 case WM_USER
+57: return "TB_GETSTYLE";
5032 case WM_USER
+58: return "TB_GETBUTTONSIZE";
5033 case WM_USER
+59: return "TB_SETBUTTONWIDTH";
5034 case WM_USER
+60: return "TB_SETMAXTEXTROWS";
5035 case WM_USER
+61: return "TB_GETTEXTROWS";
5036 case WM_USER
+41: return "TB_GETBITMAPFLAGS";
5041 static char s_szBuf
[128];
5042 sprintf(s_szBuf
, "<unknown message = %d>", message
);
5046 #endif //__WXDEBUG__