1 /////////////////////////////////////////////////////////////////////////////
2 // Name: common/window.cpp
3 // Purpose: common (to all ports) wxWindow functions
4 // Author: Julian Smart, Vadim Zeitlin
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "windowbase.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/string.h"
37 #include "wx/window.h"
38 #include "wx/control.h"
39 #include "wx/checkbox.h"
40 #include "wx/radiobut.h"
41 #include "wx/textctrl.h"
42 #include "wx/settings.h"
43 #include "wx/dialog.h"
44 #include "wx/msgdlg.h"
45 #include "wx/statusbr.h"
49 #include "wx/layout.h"
50 #endif // wxUSE_CONSTRAINTS
54 #if wxUSE_DRAG_AND_DROP
56 #endif // wxUSE_DRAG_AND_DROP
59 #include "wx/cshelp.h"
63 #include "wx/tooltip.h"
64 #endif // wxUSE_TOOLTIPS
70 // ----------------------------------------------------------------------------
72 // ----------------------------------------------------------------------------
74 int wxWindowBase::ms_lastControlId
= -200;
76 IMPLEMENT_ABSTRACT_CLASS(wxWindowBase
, wxEvtHandler
)
78 // ----------------------------------------------------------------------------
80 // ----------------------------------------------------------------------------
82 BEGIN_EVENT_TABLE(wxWindowBase
, wxEvtHandler
)
83 EVT_SYS_COLOUR_CHANGED(wxWindowBase::OnSysColourChanged
)
84 EVT_INIT_DIALOG(wxWindowBase::OnInitDialog
)
85 EVT_MIDDLE_DOWN(wxWindowBase::OnMiddleClick
)
88 EVT_HELP(-1, wxWindowBase::OnHelp
)
93 // ============================================================================
94 // implementation of the common functionality of the wxWindow class
95 // ============================================================================
97 // ----------------------------------------------------------------------------
99 // ----------------------------------------------------------------------------
101 // the default initialization
102 void wxWindowBase::InitBase()
104 // no window yet, no parent nor children
105 m_parent
= (wxWindow
*)NULL
;
107 m_children
.DeleteContents( FALSE
); // don't auto delete node data
109 // no constraints on the minimal window size
115 // window is created enabled but it's not visible yet
119 // the default event handler is just this window
120 m_eventHandler
= this;
124 m_windowValidator
= (wxValidator
*) NULL
;
125 #endif // wxUSE_VALIDATORS
127 // use the system default colours
128 m_backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
);
129 m_foregroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
131 // don't set the font here for wxMSW as we don't call WM_SETFONT here and
132 // so the font is *not* really set - but calls to SetFont() later won't do
133 // anything because m_font appears to be already set!
135 m_font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
138 // the colours/fonts are default for now
147 // an optimization for the event processing: checking this flag is much
148 // faster than using IsKindOf(CLASSINFO(wxWindow))
151 #if wxUSE_CONSTRAINTS
152 // no constraints whatsoever
153 m_constraints
= (wxLayoutConstraints
*) NULL
;
154 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
155 #endif // wxUSE_CONSTRAINTS
157 m_windowSizer
= (wxSizer
*) NULL
;
158 m_containingSizer
= (wxSizer
*) NULL
;
159 m_autoLayout
= FALSE
;
161 #if wxUSE_DRAG_AND_DROP
162 m_dropTarget
= (wxDropTarget
*)NULL
;
163 #endif // wxUSE_DRAG_AND_DROP
166 m_tooltip
= (wxToolTip
*)NULL
;
167 #endif // wxUSE_TOOLTIPS
170 m_caret
= (wxCaret
*)NULL
;
171 #endif // wxUSE_CARET
174 m_hasCustomPalette
= FALSE
;
175 #endif // wxUSE_PALETTE
177 m_virtualSize
= wxDefaultSize
;
182 m_maxVirtualHeight
= -1;
184 // Whether we're using the current theme for this window (wxGTK only for now)
185 m_themeEnabled
= FALSE
;
188 // common part of window creation process
189 bool wxWindowBase::CreateBase(wxWindowBase
*parent
,
191 const wxPoint
& WXUNUSED(pos
),
192 const wxSize
& WXUNUSED(size
),
194 const wxValidator
& validator
,
195 const wxString
& name
)
197 // m_isWindow is set to TRUE in wxWindowBase::Init() as well as many other
198 // member variables - check that it has been called (will catch the case
199 // when a new ctor is added which doesn't call InitWindow)
200 wxASSERT_MSG( m_isWindow
, wxT("Init() must have been called before!") );
202 // generate a new id if the user doesn't care about it
203 m_windowId
= id
== -1 ? NewControlId() : id
;
206 SetWindowStyleFlag(style
);
210 SetValidator(validator
);
211 #endif // wxUSE_VALIDATORS
213 // if the parent window has wxWS_EX_VALIDATE_RECURSIVELY set, we want to
214 // have it too - like this it's possible to set it only in the top level
215 // dialog/frame and all children will inherit it by defult
216 if ( parent
&& (parent
->GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) )
218 SetExtraStyle(wxWS_EX_VALIDATE_RECURSIVELY
);
224 // ----------------------------------------------------------------------------
226 // ----------------------------------------------------------------------------
229 wxWindowBase::~wxWindowBase()
231 wxASSERT_MSG( GetCapture() != this, wxT("attempt to destroy window with mouse capture") );
233 // FIXME if these 2 cases result from programming errors in the user code
234 // we should probably assert here instead of silently fixing them
236 // Just in case the window has been Closed, but we're then deleting
237 // immediately: don't leave dangling pointers.
238 wxPendingDelete
.DeleteObject(this);
240 // Just in case we've loaded a top-level window via LoadNativeDialog but
241 // we weren't a dialog class
242 wxTopLevelWindows
.DeleteObject(this);
244 wxASSERT_MSG( GetChildren().GetCount() == 0, wxT("children not destroyed") );
249 #endif // wxUSE_CARET
252 if ( m_windowValidator
)
253 delete m_windowValidator
;
254 #endif // wxUSE_VALIDATORS
256 #if wxUSE_CONSTRAINTS
257 // Have to delete constraints/sizer FIRST otherwise sizers may try to look
258 // at deleted windows as they delete themselves.
259 DeleteRelatedConstraints();
263 // This removes any dangling pointers to this window in other windows'
264 // constraintsInvolvedIn lists.
265 UnsetConstraints(m_constraints
);
266 delete m_constraints
;
267 m_constraints
= NULL
;
270 #endif // wxUSE_CONSTRAINTS
272 if ( m_containingSizer
)
273 m_containingSizer
->Remove((wxWindow
*)this);
276 delete m_windowSizer
;
278 #if wxUSE_DRAG_AND_DROP
281 #endif // wxUSE_DRAG_AND_DROP
286 #endif // wxUSE_TOOLTIPS
288 // reset the dangling pointer our parent window may keep to us
289 if ( m_parent
&& m_parent
->GetDefaultItem() == this )
291 m_parent
->SetDefaultItem(NULL
);
295 bool wxWindowBase::Destroy()
302 bool wxWindowBase::Close(bool force
)
304 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
305 event
.SetEventObject(this);
306 #if WXWIN_COMPATIBILITY
307 event
.SetForce(force
);
308 #endif // WXWIN_COMPATIBILITY
309 event
.SetCanVeto(!force
);
311 // return FALSE if window wasn't closed because the application vetoed the
313 return GetEventHandler()->ProcessEvent(event
) && !event
.GetVeto();
316 bool wxWindowBase::DestroyChildren()
318 wxWindowList::Node
*node
;
321 // we iterate until the list becomes empty
322 node
= GetChildren().GetFirst();
326 wxWindow
*child
= node
->GetData();
328 wxASSERT_MSG( child
, wxT("children list contains empty nodes") );
333 wxASSERT_MSG( !GetChildren().Find(child
),
334 wxT("child didn't remove itself using RemoveChild()") );
340 // ----------------------------------------------------------------------------
341 // size/position related methods
342 // ----------------------------------------------------------------------------
344 // centre the window with respect to its parent in either (or both) directions
345 void wxWindowBase::Centre(int direction
)
347 // the position/size of the parent window or of the entire screen
349 int widthParent
, heightParent
;
351 wxWindow
*parent
= NULL
;
353 if ( !(direction
& wxCENTRE_ON_SCREEN
) )
355 // find the parent to centre this window on: it should be the
356 // immediate parent for the controls but the top level parent for the
357 // top level windows (like dialogs)
358 parent
= GetParent();
361 while ( parent
&& !parent
->IsTopLevel() )
363 parent
= parent
->GetParent();
367 // did we find the parent?
371 direction
|= wxCENTRE_ON_SCREEN
;
375 if ( direction
& wxCENTRE_ON_SCREEN
)
377 // centre with respect to the whole screen
378 wxDisplaySize(&widthParent
, &heightParent
);
384 // centre on the parent
385 parent
->GetSize(&widthParent
, &heightParent
);
387 // adjust to the parents position
388 posParent
= parent
->GetPosition();
392 // centre inside the parents client rectangle
393 parent
->GetClientSize(&widthParent
, &heightParent
);
398 GetSize(&width
, &height
);
403 if ( direction
& wxHORIZONTAL
)
404 xNew
= (widthParent
- width
)/2;
406 if ( direction
& wxVERTICAL
)
407 yNew
= (heightParent
- height
)/2;
412 // Base size of the visible dimensions of the display
413 // to take into account the taskbar
414 wxRect rect
= wxGetClientDisplayRect();
415 wxSize
size (rect
.width
,rect
.height
);
417 // NB: in wxMSW, negative position may not neccessary mean "out of screen",
418 // but it may mean that the window is placed on other than the main
419 // display. Therefore we only make sure centered window is on the main display
420 // if the parent is at least partially present here.
421 if (posParent
.x
+ widthParent
>= 0) // if parent is (partially) on the main display
425 else if (xNew
+width
> size
.x
)
426 xNew
= size
.x
-width
-1;
428 if (posParent
.y
+ heightParent
>= 0) // if parent is (partially) on the main display
430 if (yNew
+height
> size
.y
)
431 yNew
= size
.y
-height
-1;
433 // Make certain that the title bar is initially visible
434 // always, even if this would push the bottom of the
435 // dialog of the visible area of the display
440 // move the window to this position (keeping the old size but using
441 // SetSize() and not Move() to allow xNew and/or yNew to be -1)
442 SetSize(xNew
, yNew
, width
, height
, wxSIZE_ALLOW_MINUS_ONE
);
445 // fits the window around the children
446 void wxWindowBase::Fit()
448 if ( GetChildren().GetCount() > 0 )
450 SetClientSize(DoGetBestSize());
452 //else: do nothing if we have no children
455 // return the size best suited for the current window
456 wxSize
wxWindowBase::DoGetBestSize() const
460 return m_windowSizer
->GetMinSize();
462 #if wxUSE_CONSTRAINTS
463 else if ( m_constraints
)
465 wxConstCast(this, wxWindowBase
)->SatisfyConstraints();
467 // our minimal acceptable size is such that all our windows fit inside
471 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
473 node
= node
->GetNext() )
475 wxLayoutConstraints
*c
= node
->GetData()->GetConstraints();
478 // it's not normal that we have an unconstrained child, but
479 // what can we do about it?
483 int x
= c
->right
.GetValue(),
484 y
= c
->bottom
.GetValue();
492 // TODO: we must calculate the overlaps somehow, otherwise we
493 // will never return a size bigger than the current one :-(
496 return wxSize(maxX
, maxY
);
498 #endif // wxUSE_CONSTRAINTS
499 else if ( GetChildren().GetCount() > 0 )
501 // our minimal acceptable size is such that all our windows fit inside
505 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
507 node
= node
->GetNext() )
509 wxWindow
*win
= node
->GetData();
510 if ( win
->IsTopLevel()
512 || wxDynamicCast(win
, wxStatusBar
)
513 #endif // wxUSE_STATUSBAR
516 // dialogs and frames lie in different top level windows -
517 // don't deal with them here; as for the status bars, they
518 // don't lie in the client area at all
523 win
->GetPosition(&wx
, &wy
);
525 // if the window hadn't been positioned yet, assume that it is in
532 win
->GetSize(&ww
, &wh
);
533 if ( wx
+ ww
> maxX
)
535 if ( wy
+ wh
> maxY
)
539 // for compatibility with the old versions and because it really looks
540 // slightly more pretty like this, add a pad
544 return wxSize(maxX
, maxY
);
548 // for a generic window there is no natural best size - just use the
554 // by default the origin is not shifted
555 wxPoint
wxWindowBase::GetClientAreaOrigin() const
557 return wxPoint(0, 0);
560 // set the min/max size of the window
561 void wxWindowBase::SetSizeHints(int minW
, int minH
,
563 int WXUNUSED(incW
), int WXUNUSED(incH
))
571 void wxWindowBase::SetVirtualSizeHints( int minW
, int minH
,
574 m_minVirtualWidth
= minW
;
575 m_maxVirtualWidth
= maxW
;
576 m_minVirtualHeight
= minH
;
577 m_maxVirtualHeight
= maxH
;
579 SetVirtualSize( GetClientSize() );
582 void wxWindowBase::DoSetVirtualSize( int x
, int y
)
584 if ( m_minVirtualWidth
!= -1 && m_minVirtualWidth
> x
)
585 x
= m_minVirtualWidth
;
586 if ( m_maxVirtualWidth
!= -1 && m_maxVirtualWidth
< x
)
587 x
= m_maxVirtualWidth
;
588 if ( m_minVirtualHeight
!= -1 && m_minVirtualHeight
> y
)
589 y
= m_minVirtualHeight
;
590 if ( m_maxVirtualHeight
!= -1 && m_maxVirtualHeight
< y
)
591 y
= m_maxVirtualHeight
;
593 m_virtualSize
= wxSize(x
, y
);
596 wxSize
wxWindowBase::DoGetVirtualSize() const
598 wxSize
s( GetClientSize() );
600 if( m_virtualSize
.GetWidth() != -1 )
601 s
.SetWidth( m_virtualSize
.GetWidth() );
602 if( m_virtualSize
.GetHeight() != -1 )
603 s
.SetHeight( m_virtualSize
.GetHeight() );
608 // ----------------------------------------------------------------------------
609 // show/hide/enable/disable the window
610 // ----------------------------------------------------------------------------
612 bool wxWindowBase::Show(bool show
)
614 if ( show
!= m_isShown
)
626 bool wxWindowBase::Enable(bool enable
)
628 if ( enable
!= m_isEnabled
)
630 m_isEnabled
= enable
;
639 // ----------------------------------------------------------------------------
641 // ----------------------------------------------------------------------------
643 bool wxWindowBase::IsTopLevel() const
648 // ----------------------------------------------------------------------------
649 // reparenting the window
650 // ----------------------------------------------------------------------------
652 void wxWindowBase::AddChild(wxWindowBase
*child
)
654 wxCHECK_RET( child
, wxT("can't add a NULL child") );
656 // this should never happen and it will lead to a crash later if it does
657 // because RemoveChild() will remove only one node from the children list
658 // and the other(s) one(s) will be left with dangling pointers in them
659 wxASSERT_MSG( !GetChildren().Find(child
), _T("AddChild() called twice") );
661 GetChildren().Append(child
);
662 child
->SetParent(this);
665 void wxWindowBase::RemoveChild(wxWindowBase
*child
)
667 wxCHECK_RET( child
, wxT("can't remove a NULL child") );
669 GetChildren().DeleteObject(child
);
670 child
->SetParent((wxWindow
*)NULL
);
673 bool wxWindowBase::Reparent(wxWindowBase
*newParent
)
675 wxWindow
*oldParent
= GetParent();
676 if ( newParent
== oldParent
)
682 // unlink this window from the existing parent.
685 oldParent
->RemoveChild(this);
689 wxTopLevelWindows
.DeleteObject(this);
692 // add it to the new one
695 newParent
->AddChild(this);
699 wxTopLevelWindows
.Append(this);
705 // ----------------------------------------------------------------------------
706 // event handler stuff
707 // ----------------------------------------------------------------------------
709 void wxWindowBase::PushEventHandler(wxEvtHandler
*handler
)
711 handler
->SetNextHandler(GetEventHandler());
712 SetEventHandler(handler
);
715 wxEvtHandler
*wxWindowBase::PopEventHandler(bool deleteHandler
)
717 wxEvtHandler
*handlerA
= GetEventHandler();
720 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
721 handlerA
->SetNextHandler((wxEvtHandler
*)NULL
);
722 SetEventHandler(handlerB
);
726 handlerA
= (wxEvtHandler
*)NULL
;
733 bool wxWindowBase::RemoveEventHandler(wxEvtHandler
*handler
)
735 wxCHECK_MSG( handler
, FALSE
, _T("RemoveEventHandler(NULL) called") );
737 wxEvtHandler
*handlerPrev
= NULL
,
738 *handlerCur
= GetEventHandler();
741 wxEvtHandler
*handlerNext
= handlerCur
->GetNextHandler();
743 if ( handlerCur
== handler
)
747 handlerPrev
->SetNextHandler(handlerNext
);
751 SetEventHandler(handlerNext
);
754 handler
->SetNextHandler(NULL
);
759 handlerPrev
= handlerCur
;
760 handlerCur
= handlerNext
;
763 wxFAIL_MSG( _T("where has the event handler gone?") );
768 // ----------------------------------------------------------------------------
770 // ----------------------------------------------------------------------------
772 bool wxWindowBase::SetBackgroundColour( const wxColour
&colour
)
774 if ( !colour
.Ok() || (colour
== m_backgroundColour
) )
777 m_backgroundColour
= colour
;
784 bool wxWindowBase::SetForegroundColour( const wxColour
&colour
)
786 if ( !colour
.Ok() || (colour
== m_foregroundColour
) )
789 m_foregroundColour
= colour
;
796 bool wxWindowBase::SetCursor(const wxCursor
& cursor
)
798 // setting an invalid cursor is ok, it means that we don't have any special
800 if ( m_cursor
== cursor
)
811 bool wxWindowBase::SetFont(const wxFont
& font
)
813 // don't try to set invalid font, always fall back to the default
814 const wxFont
& fontOk
= font
.Ok() ? font
: *wxSWISS_FONT
;
816 if ( fontOk
== m_font
)
831 void wxWindowBase::SetPalette(const wxPalette
& pal
)
833 m_hasCustomPalette
= TRUE
;
836 // VZ: can anyone explain me what do we do here?
837 wxWindowDC
d((wxWindow
*) this);
841 wxWindow
*wxWindowBase::GetAncestorWithCustomPalette() const
843 wxWindow
*win
= (wxWindow
*)this;
844 while ( win
&& !win
->HasCustomPalette() )
846 win
= win
->GetParent();
852 #endif // wxUSE_PALETTE
855 void wxWindowBase::SetCaret(wxCaret
*caret
)
866 wxASSERT_MSG( m_caret
->GetWindow() == this,
867 wxT("caret should be created associated to this window") );
870 #endif // wxUSE_CARET
873 // ----------------------------------------------------------------------------
875 // ----------------------------------------------------------------------------
877 void wxWindowBase::SetValidator(const wxValidator
& validator
)
879 if ( m_windowValidator
)
880 delete m_windowValidator
;
882 m_windowValidator
= (wxValidator
*)validator
.Clone();
884 if ( m_windowValidator
)
885 m_windowValidator
->SetWindow(this) ;
887 #endif // wxUSE_VALIDATORS
889 // ----------------------------------------------------------------------------
890 // update region stuff
891 // ----------------------------------------------------------------------------
893 wxRect
wxWindowBase::GetUpdateClientRect() const
895 wxRegion rgnUpdate
= GetUpdateRegion();
896 rgnUpdate
.Intersect(GetClientRect());
897 wxRect rectUpdate
= rgnUpdate
.GetBox();
898 wxPoint ptOrigin
= GetClientAreaOrigin();
899 rectUpdate
.x
-= ptOrigin
.x
;
900 rectUpdate
.y
-= ptOrigin
.y
;
905 bool wxWindowBase::IsExposed(int x
, int y
) const
907 return m_updateRegion
.Contains(x
, y
) != wxOutRegion
;
910 bool wxWindowBase::IsExposed(int x
, int y
, int w
, int h
) const
912 return m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
;
915 // ----------------------------------------------------------------------------
916 // find child window by id or name
917 // ----------------------------------------------------------------------------
919 wxWindow
*wxWindowBase::FindWindow( long id
)
921 if ( id
== m_windowId
)
922 return (wxWindow
*)this;
924 wxWindowBase
*res
= (wxWindow
*)NULL
;
925 wxWindowList::Node
*node
;
926 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
928 wxWindowBase
*child
= node
->GetData();
929 res
= child
->FindWindow( id
);
932 return (wxWindow
*)res
;
935 wxWindow
*wxWindowBase::FindWindow( const wxString
& name
)
937 if ( name
== m_windowName
)
938 return (wxWindow
*)this;
940 wxWindowBase
*res
= (wxWindow
*)NULL
;
941 wxWindowList::Node
*node
;
942 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
944 wxWindow
*child
= node
->GetData();
945 res
= child
->FindWindow(name
);
948 return (wxWindow
*)res
;
952 // find any window by id or name or label: If parent is non-NULL, look through
953 // children for a label or title matching the specified string. If NULL, look
954 // through all top-level windows.
956 // to avoid duplicating code we reuse the same helper function but with
957 // different comparators
959 typedef bool (*wxFindWindowCmp
)(const wxWindow
*win
,
960 const wxString
& label
, long id
);
963 bool wxFindWindowCmpLabels(const wxWindow
*win
, const wxString
& label
,
966 return win
->GetLabel() == label
;
970 bool wxFindWindowCmpNames(const wxWindow
*win
, const wxString
& label
,
973 return win
->GetName() == label
;
977 bool wxFindWindowCmpIds(const wxWindow
*win
, const wxString
& WXUNUSED(label
),
980 return win
->GetId() == id
;
983 // recursive helper for the FindWindowByXXX() functions
985 wxWindow
*wxFindWindowRecursively(const wxWindow
*parent
,
986 const wxString
& label
,
992 // see if this is the one we're looking for
993 if ( (*cmp
)(parent
, label
, id
) )
994 return (wxWindow
*)parent
;
996 // It wasn't, so check all its children
997 for ( wxWindowList::Node
* node
= parent
->GetChildren().GetFirst();
999 node
= node
->GetNext() )
1001 // recursively check each child
1002 wxWindow
*win
= (wxWindow
*)node
->GetData();
1003 wxWindow
*retwin
= wxFindWindowRecursively(win
, label
, id
, cmp
);
1013 // helper for FindWindowByXXX()
1015 wxWindow
*wxFindWindowHelper(const wxWindow
*parent
,
1016 const wxString
& label
,
1018 wxFindWindowCmp cmp
)
1022 // just check parent and all its children
1023 return wxFindWindowRecursively(parent
, label
, id
, cmp
);
1026 // start at very top of wx's windows
1027 for ( wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
1029 node
= node
->GetNext() )
1031 // recursively check each window & its children
1032 wxWindow
*win
= node
->GetData();
1033 wxWindow
*retwin
= wxFindWindowRecursively(win
, label
, id
, cmp
);
1043 wxWindowBase::FindWindowByLabel(const wxString
& title
, const wxWindow
*parent
)
1045 return wxFindWindowHelper(parent
, title
, 0, wxFindWindowCmpLabels
);
1050 wxWindowBase::FindWindowByName(const wxString
& title
, const wxWindow
*parent
)
1052 wxWindow
*win
= wxFindWindowHelper(parent
, title
, 0, wxFindWindowCmpNames
);
1056 // fall back to the label
1057 win
= FindWindowByLabel(title
, parent
);
1065 wxWindowBase::FindWindowById( long id
, const wxWindow
* parent
)
1067 return wxFindWindowHelper(parent
, _T(""), id
, wxFindWindowCmpIds
);
1070 // ----------------------------------------------------------------------------
1071 // dialog oriented functions
1072 // ----------------------------------------------------------------------------
1074 void wxWindowBase::MakeModal(bool modal
)
1076 // Disable all other windows
1079 wxWindowList::Node
*node
= wxTopLevelWindows
.GetFirst();
1082 wxWindow
*win
= node
->GetData();
1084 win
->Enable(!modal
);
1086 node
= node
->GetNext();
1091 bool wxWindowBase::Validate()
1093 #if wxUSE_VALIDATORS
1094 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1096 wxWindowList::Node
*node
;
1097 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1099 wxWindowBase
*child
= node
->GetData();
1100 wxValidator
*validator
= child
->GetValidator();
1101 if ( validator
&& !validator
->Validate((wxWindow
*)this) )
1106 if ( recurse
&& !child
->Validate() )
1111 #endif // wxUSE_VALIDATORS
1116 bool wxWindowBase::TransferDataToWindow()
1118 #if wxUSE_VALIDATORS
1119 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1121 wxWindowList::Node
*node
;
1122 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1124 wxWindowBase
*child
= node
->GetData();
1125 wxValidator
*validator
= child
->GetValidator();
1126 if ( validator
&& !validator
->TransferToWindow() )
1128 wxLogWarning(_("Could not transfer data to window"));
1129 wxLog::FlushActive();
1136 if ( !child
->TransferDataToWindow() )
1138 // warning already given
1143 #endif // wxUSE_VALIDATORS
1148 bool wxWindowBase::TransferDataFromWindow()
1150 #if wxUSE_VALIDATORS
1151 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1153 wxWindowList::Node
*node
;
1154 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1156 wxWindow
*child
= node
->GetData();
1157 wxValidator
*validator
= child
->GetValidator();
1158 if ( validator
&& !validator
->TransferFromWindow() )
1160 // nop warning here because the application is supposed to give
1161 // one itself - we don't know here what might have gone wrongly
1168 if ( !child
->TransferDataFromWindow() )
1170 // warning already given
1175 #endif // wxUSE_VALIDATORS
1180 void wxWindowBase::InitDialog()
1182 wxInitDialogEvent
event(GetId());
1183 event
.SetEventObject( this );
1184 GetEventHandler()->ProcessEvent(event
);
1187 // ----------------------------------------------------------------------------
1188 // context-sensitive help support
1189 // ----------------------------------------------------------------------------
1193 // associate this help text with this window
1194 void wxWindowBase::SetHelpText(const wxString
& text
)
1196 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1199 helpProvider
->AddHelp(this, text
);
1203 // associate this help text with all windows with the same id as this
1205 void wxWindowBase::SetHelpTextForId(const wxString
& text
)
1207 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1210 helpProvider
->AddHelp(GetId(), text
);
1214 // get the help string associated with this window (may be empty)
1215 wxString
wxWindowBase::GetHelpText() const
1218 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1221 text
= helpProvider
->GetHelp(this);
1227 // show help for this window
1228 void wxWindowBase::OnHelp(wxHelpEvent
& event
)
1230 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1233 if ( helpProvider
->ShowHelp(this) )
1235 // skip the event.Skip() below
1243 #endif // wxUSE_HELP
1245 // ----------------------------------------------------------------------------
1246 // tooltipsroot.Replace("\\", "/");
1247 // ----------------------------------------------------------------------------
1251 void wxWindowBase::SetToolTip( const wxString
&tip
)
1253 // don't create the new tooltip if we already have one
1256 m_tooltip
->SetTip( tip
);
1260 SetToolTip( new wxToolTip( tip
) );
1263 // setting empty tooltip text does not remove the tooltip any more - use
1264 // SetToolTip((wxToolTip *)NULL) for this
1267 void wxWindowBase::DoSetToolTip(wxToolTip
*tooltip
)
1272 m_tooltip
= tooltip
;
1275 #endif // wxUSE_TOOLTIPS
1277 // ----------------------------------------------------------------------------
1278 // constraints and sizers
1279 // ----------------------------------------------------------------------------
1281 #if wxUSE_CONSTRAINTS
1283 void wxWindowBase::SetConstraints( wxLayoutConstraints
*constraints
)
1285 if ( m_constraints
)
1287 UnsetConstraints(m_constraints
);
1288 delete m_constraints
;
1290 m_constraints
= constraints
;
1291 if ( m_constraints
)
1293 // Make sure other windows know they're part of a 'meaningful relationship'
1294 if ( m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this) )
1295 m_constraints
->left
.GetOtherWindow()->AddConstraintReference(this);
1296 if ( m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this) )
1297 m_constraints
->top
.GetOtherWindow()->AddConstraintReference(this);
1298 if ( m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this) )
1299 m_constraints
->right
.GetOtherWindow()->AddConstraintReference(this);
1300 if ( m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this) )
1301 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference(this);
1302 if ( m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this) )
1303 m_constraints
->width
.GetOtherWindow()->AddConstraintReference(this);
1304 if ( m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this) )
1305 m_constraints
->height
.GetOtherWindow()->AddConstraintReference(this);
1306 if ( m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this) )
1307 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference(this);
1308 if ( m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this) )
1309 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference(this);
1313 // This removes any dangling pointers to this window in other windows'
1314 // constraintsInvolvedIn lists.
1315 void wxWindowBase::UnsetConstraints(wxLayoutConstraints
*c
)
1319 if ( c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1320 c
->left
.GetOtherWindow()->RemoveConstraintReference(this);
1321 if ( c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1322 c
->top
.GetOtherWindow()->RemoveConstraintReference(this);
1323 if ( c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this) )
1324 c
->right
.GetOtherWindow()->RemoveConstraintReference(this);
1325 if ( c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this) )
1326 c
->bottom
.GetOtherWindow()->RemoveConstraintReference(this);
1327 if ( c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this) )
1328 c
->width
.GetOtherWindow()->RemoveConstraintReference(this);
1329 if ( c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this) )
1330 c
->height
.GetOtherWindow()->RemoveConstraintReference(this);
1331 if ( c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this) )
1332 c
->centreX
.GetOtherWindow()->RemoveConstraintReference(this);
1333 if ( c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this) )
1334 c
->centreY
.GetOtherWindow()->RemoveConstraintReference(this);
1338 // Back-pointer to other windows we're involved with, so if we delete this
1339 // window, we must delete any constraints we're involved with.
1340 void wxWindowBase::AddConstraintReference(wxWindowBase
*otherWin
)
1342 if ( !m_constraintsInvolvedIn
)
1343 m_constraintsInvolvedIn
= new wxWindowList
;
1344 if ( !m_constraintsInvolvedIn
->Find(otherWin
) )
1345 m_constraintsInvolvedIn
->Append(otherWin
);
1348 // REMOVE back-pointer to other windows we're involved with.
1349 void wxWindowBase::RemoveConstraintReference(wxWindowBase
*otherWin
)
1351 if ( m_constraintsInvolvedIn
)
1352 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
1355 // Reset any constraints that mention this window
1356 void wxWindowBase::DeleteRelatedConstraints()
1358 if ( m_constraintsInvolvedIn
)
1360 wxWindowList::Node
*node
= m_constraintsInvolvedIn
->GetFirst();
1363 wxWindow
*win
= node
->GetData();
1364 wxLayoutConstraints
*constr
= win
->GetConstraints();
1366 // Reset any constraints involving this window
1369 constr
->left
.ResetIfWin(this);
1370 constr
->top
.ResetIfWin(this);
1371 constr
->right
.ResetIfWin(this);
1372 constr
->bottom
.ResetIfWin(this);
1373 constr
->width
.ResetIfWin(this);
1374 constr
->height
.ResetIfWin(this);
1375 constr
->centreX
.ResetIfWin(this);
1376 constr
->centreY
.ResetIfWin(this);
1379 wxWindowList::Node
*next
= node
->GetNext();
1384 delete m_constraintsInvolvedIn
;
1385 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
1389 #endif // wxUSE_CONSTRAINTS
1391 void wxWindowBase::SetSizer(wxSizer
*sizer
, bool deleteOld
)
1394 delete m_windowSizer
;
1396 m_windowSizer
= sizer
;
1398 SetAutoLayout( sizer
!= NULL
);
1401 void wxWindowBase::SetSizerAndFit(wxSizer
*sizer
, bool deleteOld
)
1403 SetSizer( sizer
, deleteOld
);
1404 sizer
->SetSizeHints( (wxWindow
*) this );
1407 #if wxUSE_CONSTRAINTS
1409 void wxWindowBase::SatisfyConstraints()
1411 wxLayoutConstraints
*constr
= GetConstraints();
1412 bool wasOk
= constr
&& constr
->AreSatisfied();
1414 ResetConstraints(); // Mark all constraints as unevaluated
1418 // if we're a top level panel (i.e. our parent is frame/dialog), our
1419 // own constraints will never be satisfied any more unless we do it
1423 while ( noChanges
> 0 )
1425 LayoutPhase1(&noChanges
);
1429 LayoutPhase2(&noChanges
);
1432 #endif // wxUSE_CONSTRAINTS
1434 bool wxWindowBase::Layout()
1436 // If there is a sizer, use it instead of the constraints
1440 GetVirtualSize(&w
, &h
);
1441 GetSizer()->SetDimension( 0, 0, w
, h
);
1443 #if wxUSE_CONSTRAINTS
1446 SatisfyConstraints(); // Find the right constraints values
1447 SetConstraintSizes(); // Recursively set the real window sizes
1454 #if wxUSE_CONSTRAINTS
1456 // first phase of the constraints evaluation: set our own constraints
1457 bool wxWindowBase::LayoutPhase1(int *noChanges
)
1459 wxLayoutConstraints
*constr
= GetConstraints();
1461 return !constr
|| constr
->SatisfyConstraints(this, noChanges
);
1464 // second phase: set the constraints for our children
1465 bool wxWindowBase::LayoutPhase2(int *noChanges
)
1472 // Layout grand children
1478 // Do a phase of evaluating child constraints
1479 bool wxWindowBase::DoPhase(int phase
)
1481 // the list containing the children for which the constraints are already
1483 wxWindowList succeeded
;
1485 // the max number of iterations we loop before concluding that we can't set
1487 static const int maxIterations
= 500;
1489 for ( int noIterations
= 0; noIterations
< maxIterations
; noIterations
++ )
1493 // loop over all children setting their constraints
1494 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
1496 node
= node
->GetNext() )
1498 wxWindow
*child
= node
->GetData();
1499 if ( child
->IsTopLevel() )
1501 // top level children are not inside our client area
1505 if ( !child
->GetConstraints() || succeeded
.Find(child
) )
1507 // this one is either already ok or nothing we can do about it
1511 int tempNoChanges
= 0;
1512 bool success
= phase
== 1 ? child
->LayoutPhase1(&tempNoChanges
)
1513 : child
->LayoutPhase2(&tempNoChanges
);
1514 noChanges
+= tempNoChanges
;
1518 succeeded
.Append(child
);
1524 // constraints are set
1532 void wxWindowBase::ResetConstraints()
1534 wxLayoutConstraints
*constr
= GetConstraints();
1537 constr
->left
.SetDone(FALSE
);
1538 constr
->top
.SetDone(FALSE
);
1539 constr
->right
.SetDone(FALSE
);
1540 constr
->bottom
.SetDone(FALSE
);
1541 constr
->width
.SetDone(FALSE
);
1542 constr
->height
.SetDone(FALSE
);
1543 constr
->centreX
.SetDone(FALSE
);
1544 constr
->centreY
.SetDone(FALSE
);
1547 wxWindowList::Node
*node
= GetChildren().GetFirst();
1550 wxWindow
*win
= node
->GetData();
1551 if ( !win
->IsTopLevel() )
1552 win
->ResetConstraints();
1553 node
= node
->GetNext();
1557 // Need to distinguish between setting the 'fake' size for windows and sizers,
1558 // and setting the real values.
1559 void wxWindowBase::SetConstraintSizes(bool recurse
)
1561 wxLayoutConstraints
*constr
= GetConstraints();
1562 if ( constr
&& constr
->AreSatisfied() )
1564 int x
= constr
->left
.GetValue();
1565 int y
= constr
->top
.GetValue();
1566 int w
= constr
->width
.GetValue();
1567 int h
= constr
->height
.GetValue();
1569 if ( (constr
->width
.GetRelationship() != wxAsIs
) ||
1570 (constr
->height
.GetRelationship() != wxAsIs
) )
1572 SetSize(x
, y
, w
, h
);
1576 // If we don't want to resize this window, just move it...
1582 wxLogDebug(wxT("Constraints not satisfied for %s named '%s'."),
1583 GetClassInfo()->GetClassName(),
1589 wxWindowList::Node
*node
= GetChildren().GetFirst();
1592 wxWindow
*win
= node
->GetData();
1593 if ( !win
->IsTopLevel() && win
->GetConstraints() )
1594 win
->SetConstraintSizes();
1595 node
= node
->GetNext();
1600 // Only set the size/position of the constraint (if any)
1601 void wxWindowBase::SetSizeConstraint(int x
, int y
, int w
, int h
)
1603 wxLayoutConstraints
*constr
= GetConstraints();
1608 constr
->left
.SetValue(x
);
1609 constr
->left
.SetDone(TRUE
);
1613 constr
->top
.SetValue(y
);
1614 constr
->top
.SetDone(TRUE
);
1618 constr
->width
.SetValue(w
);
1619 constr
->width
.SetDone(TRUE
);
1623 constr
->height
.SetValue(h
);
1624 constr
->height
.SetDone(TRUE
);
1629 void wxWindowBase::MoveConstraint(int x
, int y
)
1631 wxLayoutConstraints
*constr
= GetConstraints();
1636 constr
->left
.SetValue(x
);
1637 constr
->left
.SetDone(TRUE
);
1641 constr
->top
.SetValue(y
);
1642 constr
->top
.SetDone(TRUE
);
1647 void wxWindowBase::GetSizeConstraint(int *w
, int *h
) const
1649 wxLayoutConstraints
*constr
= GetConstraints();
1652 *w
= constr
->width
.GetValue();
1653 *h
= constr
->height
.GetValue();
1659 void wxWindowBase::GetClientSizeConstraint(int *w
, int *h
) const
1661 wxLayoutConstraints
*constr
= GetConstraints();
1664 *w
= constr
->width
.GetValue();
1665 *h
= constr
->height
.GetValue();
1668 GetClientSize(w
, h
);
1671 void wxWindowBase::GetPositionConstraint(int *x
, int *y
) const
1673 wxLayoutConstraints
*constr
= GetConstraints();
1676 *x
= constr
->left
.GetValue();
1677 *y
= constr
->top
.GetValue();
1683 #endif // wxUSE_CONSTRAINTS
1685 void wxWindowBase::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
) const
1687 // don't do it for the dialogs/frames - they float independently of their
1689 if ( !IsTopLevel() )
1691 wxWindow
*parent
= GetParent();
1692 if ( !(sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) && parent
)
1694 wxPoint
pt(parent
->GetClientAreaOrigin());
1701 // ----------------------------------------------------------------------------
1702 // do Update UI processing for child controls
1703 // ----------------------------------------------------------------------------
1705 // TODO: should this be implemented for the child window rather
1706 // than the parent? Then you can override it e.g. for wxCheckBox
1707 // to do the Right Thing rather than having to assume a fixed number
1708 // of control classes.
1709 void wxWindowBase::UpdateWindowUI()
1712 wxUpdateUIEvent
event(GetId());
1713 event
.m_eventObject
= this;
1715 if ( GetEventHandler()->ProcessEvent(event
) )
1717 if ( event
.GetSetEnabled() )
1718 Enable(event
.GetEnabled());
1720 if ( event
.GetSetText() )
1722 wxControl
*control
= wxDynamicCastThis(wxControl
);
1726 wxTextCtrl
*text
= wxDynamicCast(control
, wxTextCtrl
);
1728 text
->SetValue(event
.GetText());
1730 #endif // wxUSE_TEXTCTRL
1731 control
->SetLabel(event
.GetText());
1736 wxCheckBox
*checkbox
= wxDynamicCastThis(wxCheckBox
);
1739 if ( event
.GetSetChecked() )
1740 checkbox
->SetValue(event
.GetChecked());
1742 #endif // wxUSE_CHECKBOX
1745 wxRadioButton
*radiobtn
= wxDynamicCastThis(wxRadioButton
);
1748 if ( event
.GetSetChecked() )
1749 radiobtn
->SetValue(event
.GetChecked());
1751 #endif // wxUSE_RADIOBTN
1753 #endif // wxUSE_CONTROLS
1756 // ----------------------------------------------------------------------------
1757 // dialog units translations
1758 // ----------------------------------------------------------------------------
1760 wxPoint
wxWindowBase::ConvertPixelsToDialog(const wxPoint
& pt
)
1762 int charWidth
= GetCharWidth();
1763 int charHeight
= GetCharHeight();
1764 wxPoint
pt2(-1, -1);
1766 pt2
.x
= (int) ((pt
.x
* 4) / charWidth
) ;
1768 pt2
.y
= (int) ((pt
.y
* 8) / charHeight
) ;
1773 wxPoint
wxWindowBase::ConvertDialogToPixels(const wxPoint
& pt
)
1775 int charWidth
= GetCharWidth();
1776 int charHeight
= GetCharHeight();
1777 wxPoint
pt2(-1, -1);
1779 pt2
.x
= (int) ((pt
.x
* charWidth
) / 4) ;
1781 pt2
.y
= (int) ((pt
.y
* charHeight
) / 8) ;
1786 // ----------------------------------------------------------------------------
1788 // ----------------------------------------------------------------------------
1790 // propagate the colour change event to the subwindows
1791 void wxWindowBase::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1793 wxWindowList::Node
*node
= GetChildren().GetFirst();
1796 // Only propagate to non-top-level windows
1797 wxWindow
*win
= node
->GetData();
1798 if ( !win
->IsTopLevel() )
1800 wxSysColourChangedEvent event2
;
1801 event
.m_eventObject
= win
;
1802 win
->GetEventHandler()->ProcessEvent(event2
);
1805 node
= node
->GetNext();
1809 // the default action is to populate dialog with data when it's created
1810 void wxWindowBase::OnInitDialog( wxInitDialogEvent
&WXUNUSED(event
) )
1812 TransferDataToWindow();
1815 // process Ctrl-Alt-mclick
1816 void wxWindowBase::OnMiddleClick( wxMouseEvent
& event
)
1819 if ( event
.ControlDown() && event
.AltDown() )
1821 // don't translate these strings
1824 #ifdef __WXUNIVERSAL__
1826 #endif // __WXUNIVERSAL__
1828 switch ( wxGetOsVersion() )
1830 case wxMOTIF_X
: port
= _T("Motif"); break;
1832 case wxMAC_DARWIN
: port
= _T("Mac"); break;
1833 case wxBEOS
: port
= _T("BeOS"); break;
1837 case wxGTK_BEOS
: port
= _T("GTK"); break;
1843 case wxWIN386
: port
= _T("MS Windows"); break;
1847 case wxMGL_OS2
: port
= _T("MGL"); break;
1849 case wxOS2_PM
: port
= _T("OS/2"); break;
1850 default: port
= _T("unknown"); break;
1853 wxMessageBox(wxString::Format(
1855 " wxWindows Library (%s port)\nVersion %u.%u.%u%s, compiled at %s %s\n Copyright (c) 1995-2002 wxWindows team"
1869 _T("wxWindows information"),
1870 wxICON_INFORMATION
| wxOK
,
1874 #endif // wxUSE_MSGDLG
1880 // ----------------------------------------------------------------------------
1881 // list classes implementation
1882 // ----------------------------------------------------------------------------
1884 void wxWindowListNode::DeleteData()
1886 delete (wxWindow
*)GetData();
1889 // ----------------------------------------------------------------------------
1891 // ----------------------------------------------------------------------------
1893 wxBorder
wxWindowBase::GetBorder() const
1895 wxBorder border
= (wxBorder
)(m_windowStyle
& wxBORDER_MASK
);
1896 if ( border
== wxBORDER_DEFAULT
)
1898 border
= GetDefaultBorder();
1904 wxBorder
wxWindowBase::GetDefaultBorder() const
1906 return wxBORDER_NONE
;
1909 // ----------------------------------------------------------------------------
1911 // ----------------------------------------------------------------------------
1913 wxHitTest
wxWindowBase::DoHitTest(wxCoord x
, wxCoord y
) const
1915 // here we just check if the point is inside the window or not
1917 // check the top and left border first
1918 bool outside
= x
< 0 || y
< 0;
1921 // check the right and bottom borders too
1922 wxSize size
= GetSize();
1923 outside
= x
>= size
.x
|| y
>= size
.y
;
1926 return outside
? wxHT_WINDOW_OUTSIDE
: wxHT_WINDOW_INSIDE
;
1929 // ----------------------------------------------------------------------------
1931 // ----------------------------------------------------------------------------
1933 struct WXDLLEXPORT wxWindowNext
1937 } *wxWindowBase::ms_winCaptureNext
= NULL
;
1939 void wxWindowBase::CaptureMouse()
1941 wxLogTrace(_T("mousecapture"), _T("CaptureMouse(0x%08x)"), this);
1943 wxWindow
*winOld
= GetCapture();
1946 ((wxWindowBase
*) winOld
)->DoReleaseMouse();
1949 wxWindowNext
*item
= new wxWindowNext
;
1951 item
->next
= ms_winCaptureNext
;
1952 ms_winCaptureNext
= item
;
1954 //else: no mouse capture to save
1959 void wxWindowBase::ReleaseMouse()
1961 wxLogTrace(_T("mousecapture"), _T("ReleaseMouse(0x%08x)"), this);
1963 wxASSERT_MSG( GetCapture() == this, wxT("attempt to release mouse, but this window hasn't captured it") );
1967 if ( ms_winCaptureNext
)
1969 ((wxWindowBase
*)ms_winCaptureNext
->win
)->DoCaptureMouse();
1971 wxWindowNext
*item
= ms_winCaptureNext
;
1972 ms_winCaptureNext
= item
->next
;
1975 //else: stack is empty, no previous capture
1977 wxLogTrace(_T("mousecapture"),
1978 _T("After ReleaseMouse() mouse is captured by 0x%08x"),
1982 // ----------------------------------------------------------------------------
1984 // ----------------------------------------------------------------------------
1986 wxWindow
* wxGetTopLevelParent(wxWindow
*win
)
1988 while ( win
&& !win
->IsTopLevel() )
1989 win
= win
->GetParent();