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
;
178 m_minVirtualWidth
= -1;
179 m_minVirtualHeight
= -1;
180 m_maxVirtualWidth
= -1;
181 m_maxVirtualHeight
= -1;
183 // Whether we're using the current theme for this window (wxGTK only for now)
184 m_themeEnabled
= FALSE
;
187 // common part of window creation process
188 bool wxWindowBase::CreateBase(wxWindowBase
*parent
,
190 const wxPoint
& WXUNUSED(pos
),
191 const wxSize
& WXUNUSED(size
),
193 const wxValidator
& validator
,
194 const wxString
& name
)
196 // m_isWindow is set to TRUE in wxWindowBase::Init() as well as many other
197 // member variables - check that it has been called (will catch the case
198 // when a new ctor is added which doesn't call InitWindow)
199 wxASSERT_MSG( m_isWindow
, wxT("Init() must have been called before!") );
201 // generate a new id if the user doesn't care about it
202 m_windowId
= id
== -1 ? NewControlId() : id
;
205 SetWindowStyleFlag(style
);
209 SetValidator(validator
);
210 #endif // wxUSE_VALIDATORS
212 // if the parent window has wxWS_EX_VALIDATE_RECURSIVELY set, we want to
213 // have it too - like this it's possible to set it only in the top level
214 // dialog/frame and all children will inherit it by defult
215 if ( parent
&& (parent
->GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) )
217 SetExtraStyle(wxWS_EX_VALIDATE_RECURSIVELY
);
223 // ----------------------------------------------------------------------------
225 // ----------------------------------------------------------------------------
228 wxWindowBase::~wxWindowBase()
230 wxASSERT_MSG( GetCapture() != this, wxT("attempt to destroy window with mouse capture") );
232 // FIXME if these 2 cases result from programming errors in the user code
233 // we should probably assert here instead of silently fixing them
235 // Just in case the window has been Closed, but we're then deleting
236 // immediately: don't leave dangling pointers.
237 wxPendingDelete
.DeleteObject(this);
239 // Just in case we've loaded a top-level window via LoadNativeDialog but
240 // we weren't a dialog class
241 wxTopLevelWindows
.DeleteObject(this);
243 wxASSERT_MSG( GetChildren().GetCount() == 0, wxT("children not destroyed") );
248 #endif // wxUSE_CARET
251 if ( m_windowValidator
)
252 delete m_windowValidator
;
253 #endif // wxUSE_VALIDATORS
255 #if wxUSE_CONSTRAINTS
256 // Have to delete constraints/sizer FIRST otherwise sizers may try to look
257 // at deleted windows as they delete themselves.
258 DeleteRelatedConstraints();
262 // This removes any dangling pointers to this window in other windows'
263 // constraintsInvolvedIn lists.
264 UnsetConstraints(m_constraints
);
265 delete m_constraints
;
266 m_constraints
= NULL
;
269 #endif // wxUSE_CONSTRAINTS
271 if ( m_containingSizer
)
272 m_containingSizer
->Remove((wxWindow
*)this);
275 delete m_windowSizer
;
277 #if wxUSE_DRAG_AND_DROP
280 #endif // wxUSE_DRAG_AND_DROP
285 #endif // wxUSE_TOOLTIPS
287 // reset the dangling pointer our parent window may keep to us
288 if ( m_parent
&& m_parent
->GetDefaultItem() == this )
290 m_parent
->SetDefaultItem(NULL
);
294 bool wxWindowBase::Destroy()
301 bool wxWindowBase::Close(bool force
)
303 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
304 event
.SetEventObject(this);
305 #if WXWIN_COMPATIBILITY
306 event
.SetForce(force
);
307 #endif // WXWIN_COMPATIBILITY
308 event
.SetCanVeto(!force
);
310 // return FALSE if window wasn't closed because the application vetoed the
312 return GetEventHandler()->ProcessEvent(event
) && !event
.GetVeto();
315 bool wxWindowBase::DestroyChildren()
317 wxWindowList::Node
*node
;
320 // we iterate until the list becomes empty
321 node
= GetChildren().GetFirst();
325 wxWindow
*child
= node
->GetData();
327 wxASSERT_MSG( child
, wxT("children list contains empty nodes") );
332 wxASSERT_MSG( !GetChildren().Find(child
),
333 wxT("child didn't remove itself using RemoveChild()") );
339 // ----------------------------------------------------------------------------
340 // size/position related methods
341 // ----------------------------------------------------------------------------
343 // centre the window with respect to its parent in either (or both) directions
344 void wxWindowBase::Centre(int direction
)
346 // the position/size of the parent window or of the entire screen
348 int widthParent
, heightParent
;
350 wxWindow
*parent
= NULL
;
352 if ( !(direction
& wxCENTRE_ON_SCREEN
) )
354 // find the parent to centre this window on: it should be the
355 // immediate parent for the controls but the top level parent for the
356 // top level windows (like dialogs)
357 parent
= GetParent();
360 while ( parent
&& !parent
->IsTopLevel() )
362 parent
= parent
->GetParent();
366 // did we find the parent?
370 direction
|= wxCENTRE_ON_SCREEN
;
374 if ( direction
& wxCENTRE_ON_SCREEN
)
376 // centre with respect to the whole screen
377 wxDisplaySize(&widthParent
, &heightParent
);
383 // centre on the parent
384 parent
->GetSize(&widthParent
, &heightParent
);
386 // adjust to the parents position
387 posParent
= parent
->GetPosition();
391 // centre inside the parents client rectangle
392 parent
->GetClientSize(&widthParent
, &heightParent
);
397 GetSize(&width
, &height
);
402 if ( direction
& wxHORIZONTAL
)
403 xNew
= (widthParent
- width
)/2;
405 if ( direction
& wxVERTICAL
)
406 yNew
= (heightParent
- height
)/2;
411 // Base size of the visible dimensions of the display
412 // to take into account the taskbar
413 wxRect rect
= wxGetClientDisplayRect();
414 wxSize
size (rect
.width
,rect
.height
);
416 // NB: in wxMSW, negative position may not neccessary mean "out of screen",
417 // but it may mean that the window is placed on other than the main
418 // display. Therefore we only make sure centered window is on the main display
419 // if the parent is at least partially present here.
420 if (posParent
.x
+ widthParent
>= 0) // if parent is (partially) on the main display
424 else if (xNew
+width
> size
.x
)
425 xNew
= size
.x
-width
-1;
427 if (posParent
.y
+ heightParent
>= 0) // if parent is (partially) on the main display
429 if (yNew
+height
> size
.y
)
430 yNew
= size
.y
-height
-1;
432 // Make certain that the title bar is initially visible
433 // always, even if this would push the bottom of the
434 // dialog of the visible area of the display
439 // move the window to this position (keeping the old size but using
440 // SetSize() and not Move() to allow xNew and/or yNew to be -1)
441 SetSize(xNew
, yNew
, width
, height
, wxSIZE_ALLOW_MINUS_ONE
);
444 // fits the window around the children
445 void wxWindowBase::Fit()
447 if ( GetChildren().GetCount() > 0 )
449 SetClientSize(DoGetBestSize());
451 //else: do nothing if we have no children
454 // return the size best suited for the current window
455 wxSize
wxWindowBase::DoGetBestSize() const
459 return m_windowSizer
->GetMinSize();
461 #if wxUSE_CONSTRAINTS
462 else if ( m_constraints
)
464 wxConstCast(this, wxWindowBase
)->SatisfyConstraints();
466 // our minimal acceptable size is such that all our windows fit inside
470 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
472 node
= node
->GetNext() )
474 wxLayoutConstraints
*c
= node
->GetData()->GetConstraints();
477 // it's not normal that we have an unconstrained child, but
478 // what can we do about it?
482 int x
= c
->right
.GetValue(),
483 y
= c
->bottom
.GetValue();
491 // TODO: we must calculate the overlaps somehow, otherwise we
492 // will never return a size bigger than the current one :-(
495 return wxSize(maxX
, maxY
);
497 #endif // wxUSE_CONSTRAINTS
498 else if ( GetChildren().GetCount() > 0 )
500 // our minimal acceptable size is such that all our windows fit inside
504 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
506 node
= node
->GetNext() )
508 wxWindow
*win
= node
->GetData();
509 if ( win
->IsTopLevel()
511 || wxDynamicCast(win
, wxStatusBar
)
512 #endif // wxUSE_STATUSBAR
515 // dialogs and frames lie in different top level windows -
516 // don't deal with them here; as for the status bars, they
517 // don't lie in the client area at all
522 win
->GetPosition(&wx
, &wy
);
524 // if the window hadn't been positioned yet, assume that it is in
531 win
->GetSize(&ww
, &wh
);
532 if ( wx
+ ww
> maxX
)
534 if ( wy
+ wh
> maxY
)
538 // for compatibility with the old versions and because it really looks
539 // slightly more pretty like this, add a pad
543 return wxSize(maxX
, maxY
);
547 // for a generic window there is no natural best size - just use the
553 // by default the origin is not shifted
554 wxPoint
wxWindowBase::GetClientAreaOrigin() const
556 return wxPoint(0, 0);
559 // set the min/max size of the window
560 void wxWindowBase::SetSizeHints(int minW
, int minH
,
562 int WXUNUSED(incW
), int WXUNUSED(incH
))
570 void wxWindowBase::SetVirtualSizeHints( int minW
, int minH
,
573 m_minVirtualWidth
= minW
;
574 m_maxVirtualWidth
= maxW
;
575 m_minVirtualHeight
= minH
;
576 m_maxVirtualHeight
= maxH
;
578 SetVirtualSize( GetClientSize() );
581 void wxWindowBase::DoSetVirtualSize( int x
, int y
)
583 if( m_minVirtualWidth
!= -1 && m_minVirtualWidth
> x
) x
= m_minVirtualWidth
;
584 if( m_maxVirtualWidth
!= -1 && m_maxVirtualWidth
< x
) x
= m_maxVirtualWidth
;
585 if( m_minVirtualHeight
!= -1 && m_minVirtualHeight
> y
) y
= m_minVirtualHeight
;
586 if( m_maxVirtualHeight
!= -1 && m_maxVirtualHeight
< y
) y
= m_maxVirtualHeight
;
588 m_virtualSize
.SetWidth( x
);
589 m_virtualSize
.SetHeight( y
);
592 wxSize
wxWindowBase::DoGetVirtualSize() const
594 wxSize
s( GetClientSize() );
596 if( m_virtualSize
.GetWidth() != -1 )
597 s
.SetWidth( m_virtualSize
.GetWidth() );
598 if( m_virtualSize
.GetHeight() != -1 )
599 s
.SetHeight( m_virtualSize
.GetHeight() );
604 // ----------------------------------------------------------------------------
605 // show/hide/enable/disable the window
606 // ----------------------------------------------------------------------------
608 bool wxWindowBase::Show(bool show
)
610 if ( show
!= m_isShown
)
622 bool wxWindowBase::Enable(bool enable
)
624 if ( enable
!= m_isEnabled
)
626 m_isEnabled
= enable
;
635 // ----------------------------------------------------------------------------
637 // ----------------------------------------------------------------------------
639 bool wxWindowBase::IsTopLevel() const
644 // ----------------------------------------------------------------------------
645 // reparenting the window
646 // ----------------------------------------------------------------------------
648 void wxWindowBase::AddChild(wxWindowBase
*child
)
650 wxCHECK_RET( child
, wxT("can't add a NULL child") );
652 // this should never happen and it will lead to a crash later if it does
653 // because RemoveChild() will remove only one node from the children list
654 // and the other(s) one(s) will be left with dangling pointers in them
655 wxASSERT_MSG( !GetChildren().Find(child
), _T("AddChild() called twice") );
657 GetChildren().Append(child
);
658 child
->SetParent(this);
661 void wxWindowBase::RemoveChild(wxWindowBase
*child
)
663 wxCHECK_RET( child
, wxT("can't remove a NULL child") );
665 GetChildren().DeleteObject(child
);
666 child
->SetParent((wxWindow
*)NULL
);
669 bool wxWindowBase::Reparent(wxWindowBase
*newParent
)
671 wxWindow
*oldParent
= GetParent();
672 if ( newParent
== oldParent
)
678 // unlink this window from the existing parent.
681 oldParent
->RemoveChild(this);
685 wxTopLevelWindows
.DeleteObject(this);
688 // add it to the new one
691 newParent
->AddChild(this);
695 wxTopLevelWindows
.Append(this);
701 // ----------------------------------------------------------------------------
702 // event handler stuff
703 // ----------------------------------------------------------------------------
705 void wxWindowBase::PushEventHandler(wxEvtHandler
*handler
)
707 handler
->SetNextHandler(GetEventHandler());
708 SetEventHandler(handler
);
711 wxEvtHandler
*wxWindowBase::PopEventHandler(bool deleteHandler
)
713 wxEvtHandler
*handlerA
= GetEventHandler();
716 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
717 handlerA
->SetNextHandler((wxEvtHandler
*)NULL
);
718 SetEventHandler(handlerB
);
722 handlerA
= (wxEvtHandler
*)NULL
;
729 bool wxWindowBase::RemoveEventHandler(wxEvtHandler
*handler
)
731 wxCHECK_MSG( handler
, FALSE
, _T("RemoveEventHandler(NULL) called") );
733 wxEvtHandler
*handlerPrev
= NULL
,
734 *handlerCur
= GetEventHandler();
737 wxEvtHandler
*handlerNext
= handlerCur
->GetNextHandler();
739 if ( handlerCur
== handler
)
743 handlerPrev
->SetNextHandler(handlerNext
);
747 SetEventHandler(handlerNext
);
750 handler
->SetNextHandler(NULL
);
755 handlerPrev
= handlerCur
;
756 handlerCur
= handlerNext
;
759 wxFAIL_MSG( _T("where has the event handler gone?") );
764 // ----------------------------------------------------------------------------
766 // ----------------------------------------------------------------------------
768 bool wxWindowBase::SetBackgroundColour( const wxColour
&colour
)
770 if ( !colour
.Ok() || (colour
== m_backgroundColour
) )
773 m_backgroundColour
= colour
;
780 bool wxWindowBase::SetForegroundColour( const wxColour
&colour
)
782 if ( !colour
.Ok() || (colour
== m_foregroundColour
) )
785 m_foregroundColour
= colour
;
792 bool wxWindowBase::SetCursor(const wxCursor
& cursor
)
794 // setting an invalid cursor is ok, it means that we don't have any special
796 if ( m_cursor
== cursor
)
807 bool wxWindowBase::SetFont(const wxFont
& font
)
809 // don't try to set invalid font, always fall back to the default
810 const wxFont
& fontOk
= font
.Ok() ? font
: *wxSWISS_FONT
;
812 if ( fontOk
== m_font
)
827 void wxWindowBase::SetPalette(const wxPalette
& pal
)
829 m_hasCustomPalette
= TRUE
;
832 // VZ: can anyone explain me what do we do here?
833 wxWindowDC
d((wxWindow
*) this);
837 wxWindow
*wxWindowBase::GetAncestorWithCustomPalette() const
839 wxWindow
*win
= (wxWindow
*)this;
840 while ( win
&& !win
->HasCustomPalette() )
842 win
= win
->GetParent();
848 #endif // wxUSE_PALETTE
851 void wxWindowBase::SetCaret(wxCaret
*caret
)
862 wxASSERT_MSG( m_caret
->GetWindow() == this,
863 wxT("caret should be created associated to this window") );
866 #endif // wxUSE_CARET
869 // ----------------------------------------------------------------------------
871 // ----------------------------------------------------------------------------
873 void wxWindowBase::SetValidator(const wxValidator
& validator
)
875 if ( m_windowValidator
)
876 delete m_windowValidator
;
878 m_windowValidator
= (wxValidator
*)validator
.Clone();
880 if ( m_windowValidator
)
881 m_windowValidator
->SetWindow(this) ;
883 #endif // wxUSE_VALIDATORS
885 // ----------------------------------------------------------------------------
886 // update region stuff
887 // ----------------------------------------------------------------------------
889 wxRect
wxWindowBase::GetUpdateClientRect() const
891 wxRegion rgnUpdate
= GetUpdateRegion();
892 rgnUpdate
.Intersect(GetClientRect());
893 wxRect rectUpdate
= rgnUpdate
.GetBox();
894 wxPoint ptOrigin
= GetClientAreaOrigin();
895 rectUpdate
.x
-= ptOrigin
.x
;
896 rectUpdate
.y
-= ptOrigin
.y
;
901 bool wxWindowBase::IsExposed(int x
, int y
) const
903 return m_updateRegion
.Contains(x
, y
) != wxOutRegion
;
906 bool wxWindowBase::IsExposed(int x
, int y
, int w
, int h
) const
908 return m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
;
911 // ----------------------------------------------------------------------------
912 // find child window by id or name
913 // ----------------------------------------------------------------------------
915 wxWindow
*wxWindowBase::FindWindow( long id
)
917 if ( id
== m_windowId
)
918 return (wxWindow
*)this;
920 wxWindowBase
*res
= (wxWindow
*)NULL
;
921 wxWindowList::Node
*node
;
922 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
924 wxWindowBase
*child
= node
->GetData();
925 res
= child
->FindWindow( id
);
928 return (wxWindow
*)res
;
931 wxWindow
*wxWindowBase::FindWindow( const wxString
& name
)
933 if ( name
== m_windowName
)
934 return (wxWindow
*)this;
936 wxWindowBase
*res
= (wxWindow
*)NULL
;
937 wxWindowList::Node
*node
;
938 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
940 wxWindow
*child
= node
->GetData();
941 res
= child
->FindWindow(name
);
944 return (wxWindow
*)res
;
948 // find any window by id or name or label: If parent is non-NULL, look through
949 // children for a label or title matching the specified string. If NULL, look
950 // through all top-level windows.
952 // to avoid duplicating code we reuse the same helper function but with
953 // different comparators
955 typedef bool (*wxFindWindowCmp
)(const wxWindow
*win
,
956 const wxString
& label
, long id
);
959 bool wxFindWindowCmpLabels(const wxWindow
*win
, const wxString
& label
,
962 return win
->GetLabel() == label
;
966 bool wxFindWindowCmpNames(const wxWindow
*win
, const wxString
& label
,
969 return win
->GetName() == label
;
973 bool wxFindWindowCmpIds(const wxWindow
*win
, const wxString
& WXUNUSED(label
),
976 return win
->GetId() == id
;
979 // recursive helper for the FindWindowByXXX() functions
981 wxWindow
*wxFindWindowRecursively(const wxWindow
*parent
,
982 const wxString
& label
,
988 // see if this is the one we're looking for
989 if ( (*cmp
)(parent
, label
, id
) )
990 return (wxWindow
*)parent
;
992 // It wasn't, so check all its children
993 for ( wxWindowList::Node
* node
= parent
->GetChildren().GetFirst();
995 node
= node
->GetNext() )
997 // recursively check each child
998 wxWindow
*win
= (wxWindow
*)node
->GetData();
999 wxWindow
*retwin
= wxFindWindowRecursively(win
, label
, id
, cmp
);
1009 // helper for FindWindowByXXX()
1011 wxWindow
*wxFindWindowHelper(const wxWindow
*parent
,
1012 const wxString
& label
,
1014 wxFindWindowCmp cmp
)
1018 // just check parent and all its children
1019 return wxFindWindowRecursively(parent
, label
, id
, cmp
);
1022 // start at very top of wx's windows
1023 for ( wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
1025 node
= node
->GetNext() )
1027 // recursively check each window & its children
1028 wxWindow
*win
= node
->GetData();
1029 wxWindow
*retwin
= wxFindWindowRecursively(win
, label
, id
, cmp
);
1039 wxWindowBase::FindWindowByLabel(const wxString
& title
, const wxWindow
*parent
)
1041 return wxFindWindowHelper(parent
, title
, 0, wxFindWindowCmpLabels
);
1046 wxWindowBase::FindWindowByName(const wxString
& title
, const wxWindow
*parent
)
1048 wxWindow
*win
= wxFindWindowHelper(parent
, title
, 0, wxFindWindowCmpNames
);
1052 // fall back to the label
1053 win
= FindWindowByLabel(title
, parent
);
1061 wxWindowBase::FindWindowById( long id
, const wxWindow
* parent
)
1063 return wxFindWindowHelper(parent
, _T(""), id
, wxFindWindowCmpIds
);
1066 // ----------------------------------------------------------------------------
1067 // dialog oriented functions
1068 // ----------------------------------------------------------------------------
1070 void wxWindowBase::MakeModal(bool modal
)
1072 // Disable all other windows
1075 wxWindowList::Node
*node
= wxTopLevelWindows
.GetFirst();
1078 wxWindow
*win
= node
->GetData();
1080 win
->Enable(!modal
);
1082 node
= node
->GetNext();
1087 bool wxWindowBase::Validate()
1089 #if wxUSE_VALIDATORS
1090 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1092 wxWindowList::Node
*node
;
1093 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1095 wxWindowBase
*child
= node
->GetData();
1096 wxValidator
*validator
= child
->GetValidator();
1097 if ( validator
&& !validator
->Validate((wxWindow
*)this) )
1102 if ( recurse
&& !child
->Validate() )
1107 #endif // wxUSE_VALIDATORS
1112 bool wxWindowBase::TransferDataToWindow()
1114 #if wxUSE_VALIDATORS
1115 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1117 wxWindowList::Node
*node
;
1118 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1120 wxWindowBase
*child
= node
->GetData();
1121 wxValidator
*validator
= child
->GetValidator();
1122 if ( validator
&& !validator
->TransferToWindow() )
1124 wxLogWarning(_("Could not transfer data to window"));
1125 wxLog::FlushActive();
1132 if ( !child
->TransferDataToWindow() )
1134 // warning already given
1139 #endif // wxUSE_VALIDATORS
1144 bool wxWindowBase::TransferDataFromWindow()
1146 #if wxUSE_VALIDATORS
1147 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1149 wxWindowList::Node
*node
;
1150 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1152 wxWindow
*child
= node
->GetData();
1153 wxValidator
*validator
= child
->GetValidator();
1154 if ( validator
&& !validator
->TransferFromWindow() )
1156 // nop warning here because the application is supposed to give
1157 // one itself - we don't know here what might have gone wrongly
1164 if ( !child
->TransferDataFromWindow() )
1166 // warning already given
1171 #endif // wxUSE_VALIDATORS
1176 void wxWindowBase::InitDialog()
1178 wxInitDialogEvent
event(GetId());
1179 event
.SetEventObject( this );
1180 GetEventHandler()->ProcessEvent(event
);
1183 // ----------------------------------------------------------------------------
1184 // context-sensitive help support
1185 // ----------------------------------------------------------------------------
1189 // associate this help text with this window
1190 void wxWindowBase::SetHelpText(const wxString
& text
)
1192 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1195 helpProvider
->AddHelp(this, text
);
1199 // associate this help text with all windows with the same id as this
1201 void wxWindowBase::SetHelpTextForId(const wxString
& text
)
1203 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1206 helpProvider
->AddHelp(GetId(), text
);
1210 // get the help string associated with this window (may be empty)
1211 wxString
wxWindowBase::GetHelpText() const
1214 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1217 text
= helpProvider
->GetHelp(this);
1223 // show help for this window
1224 void wxWindowBase::OnHelp(wxHelpEvent
& event
)
1226 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1229 if ( helpProvider
->ShowHelp(this) )
1231 // skip the event.Skip() below
1239 #endif // wxUSE_HELP
1241 // ----------------------------------------------------------------------------
1242 // tooltipsroot.Replace("\\", "/");
1243 // ----------------------------------------------------------------------------
1247 void wxWindowBase::SetToolTip( const wxString
&tip
)
1249 // don't create the new tooltip if we already have one
1252 m_tooltip
->SetTip( tip
);
1256 SetToolTip( new wxToolTip( tip
) );
1259 // setting empty tooltip text does not remove the tooltip any more - use
1260 // SetToolTip((wxToolTip *)NULL) for this
1263 void wxWindowBase::DoSetToolTip(wxToolTip
*tooltip
)
1268 m_tooltip
= tooltip
;
1271 #endif // wxUSE_TOOLTIPS
1273 // ----------------------------------------------------------------------------
1274 // constraints and sizers
1275 // ----------------------------------------------------------------------------
1277 #if wxUSE_CONSTRAINTS
1279 void wxWindowBase::SetConstraints( wxLayoutConstraints
*constraints
)
1281 if ( m_constraints
)
1283 UnsetConstraints(m_constraints
);
1284 delete m_constraints
;
1286 m_constraints
= constraints
;
1287 if ( m_constraints
)
1289 // Make sure other windows know they're part of a 'meaningful relationship'
1290 if ( m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this) )
1291 m_constraints
->left
.GetOtherWindow()->AddConstraintReference(this);
1292 if ( m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this) )
1293 m_constraints
->top
.GetOtherWindow()->AddConstraintReference(this);
1294 if ( m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this) )
1295 m_constraints
->right
.GetOtherWindow()->AddConstraintReference(this);
1296 if ( m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this) )
1297 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference(this);
1298 if ( m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this) )
1299 m_constraints
->width
.GetOtherWindow()->AddConstraintReference(this);
1300 if ( m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this) )
1301 m_constraints
->height
.GetOtherWindow()->AddConstraintReference(this);
1302 if ( m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this) )
1303 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference(this);
1304 if ( m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this) )
1305 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference(this);
1309 // This removes any dangling pointers to this window in other windows'
1310 // constraintsInvolvedIn lists.
1311 void wxWindowBase::UnsetConstraints(wxLayoutConstraints
*c
)
1315 if ( c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1316 c
->left
.GetOtherWindow()->RemoveConstraintReference(this);
1317 if ( c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1318 c
->top
.GetOtherWindow()->RemoveConstraintReference(this);
1319 if ( c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this) )
1320 c
->right
.GetOtherWindow()->RemoveConstraintReference(this);
1321 if ( c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this) )
1322 c
->bottom
.GetOtherWindow()->RemoveConstraintReference(this);
1323 if ( c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this) )
1324 c
->width
.GetOtherWindow()->RemoveConstraintReference(this);
1325 if ( c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this) )
1326 c
->height
.GetOtherWindow()->RemoveConstraintReference(this);
1327 if ( c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this) )
1328 c
->centreX
.GetOtherWindow()->RemoveConstraintReference(this);
1329 if ( c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this) )
1330 c
->centreY
.GetOtherWindow()->RemoveConstraintReference(this);
1334 // Back-pointer to other windows we're involved with, so if we delete this
1335 // window, we must delete any constraints we're involved with.
1336 void wxWindowBase::AddConstraintReference(wxWindowBase
*otherWin
)
1338 if ( !m_constraintsInvolvedIn
)
1339 m_constraintsInvolvedIn
= new wxWindowList
;
1340 if ( !m_constraintsInvolvedIn
->Find(otherWin
) )
1341 m_constraintsInvolvedIn
->Append(otherWin
);
1344 // REMOVE back-pointer to other windows we're involved with.
1345 void wxWindowBase::RemoveConstraintReference(wxWindowBase
*otherWin
)
1347 if ( m_constraintsInvolvedIn
)
1348 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
1351 // Reset any constraints that mention this window
1352 void wxWindowBase::DeleteRelatedConstraints()
1354 if ( m_constraintsInvolvedIn
)
1356 wxWindowList::Node
*node
= m_constraintsInvolvedIn
->GetFirst();
1359 wxWindow
*win
= node
->GetData();
1360 wxLayoutConstraints
*constr
= win
->GetConstraints();
1362 // Reset any constraints involving this window
1365 constr
->left
.ResetIfWin(this);
1366 constr
->top
.ResetIfWin(this);
1367 constr
->right
.ResetIfWin(this);
1368 constr
->bottom
.ResetIfWin(this);
1369 constr
->width
.ResetIfWin(this);
1370 constr
->height
.ResetIfWin(this);
1371 constr
->centreX
.ResetIfWin(this);
1372 constr
->centreY
.ResetIfWin(this);
1375 wxWindowList::Node
*next
= node
->GetNext();
1380 delete m_constraintsInvolvedIn
;
1381 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
1385 #endif // wxUSE_CONSTRAINTS
1387 void wxWindowBase::SetSizer(wxSizer
*sizer
, bool deleteOld
)
1390 delete m_windowSizer
;
1392 m_windowSizer
= sizer
;
1394 SetAutoLayout( sizer
!= NULL
);
1397 void wxWindowBase::SetSizerAndFit(wxSizer
*sizer
, bool deleteOld
)
1399 SetSizer( sizer
, deleteOld
);
1400 sizer
->SetSizeHints( (wxWindow
*) this );
1403 #if wxUSE_CONSTRAINTS
1405 void wxWindowBase::SatisfyConstraints()
1407 wxLayoutConstraints
*constr
= GetConstraints();
1408 bool wasOk
= constr
&& constr
->AreSatisfied();
1410 ResetConstraints(); // Mark all constraints as unevaluated
1414 // if we're a top level panel (i.e. our parent is frame/dialog), our
1415 // own constraints will never be satisfied any more unless we do it
1419 while ( noChanges
> 0 )
1421 LayoutPhase1(&noChanges
);
1425 LayoutPhase2(&noChanges
);
1428 #endif // wxUSE_CONSTRAINTS
1430 bool wxWindowBase::Layout()
1432 // If there is a sizer, use it instead of the constraints
1436 GetVirtualSize(&w
, &h
);
1437 GetSizer()->SetDimension( 0, 0, w
, h
);
1439 #if wxUSE_CONSTRAINTS
1442 SatisfyConstraints(); // Find the right constraints values
1443 SetConstraintSizes(); // Recursively set the real window sizes
1450 #if wxUSE_CONSTRAINTS
1452 // first phase of the constraints evaluation: set our own constraints
1453 bool wxWindowBase::LayoutPhase1(int *noChanges
)
1455 wxLayoutConstraints
*constr
= GetConstraints();
1457 return !constr
|| constr
->SatisfyConstraints(this, noChanges
);
1460 // second phase: set the constraints for our children
1461 bool wxWindowBase::LayoutPhase2(int *noChanges
)
1468 // Layout grand children
1474 // Do a phase of evaluating child constraints
1475 bool wxWindowBase::DoPhase(int phase
)
1477 // the list containing the children for which the constraints are already
1479 wxWindowList succeeded
;
1481 // the max number of iterations we loop before concluding that we can't set
1483 static const int maxIterations
= 500;
1485 for ( int noIterations
= 0; noIterations
< maxIterations
; noIterations
++ )
1489 // loop over all children setting their constraints
1490 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
1492 node
= node
->GetNext() )
1494 wxWindow
*child
= node
->GetData();
1495 if ( child
->IsTopLevel() )
1497 // top level children are not inside our client area
1501 if ( !child
->GetConstraints() || succeeded
.Find(child
) )
1503 // this one is either already ok or nothing we can do about it
1507 int tempNoChanges
= 0;
1508 bool success
= phase
== 1 ? child
->LayoutPhase1(&tempNoChanges
)
1509 : child
->LayoutPhase2(&tempNoChanges
);
1510 noChanges
+= tempNoChanges
;
1514 succeeded
.Append(child
);
1520 // constraints are set
1528 void wxWindowBase::ResetConstraints()
1530 wxLayoutConstraints
*constr
= GetConstraints();
1533 constr
->left
.SetDone(FALSE
);
1534 constr
->top
.SetDone(FALSE
);
1535 constr
->right
.SetDone(FALSE
);
1536 constr
->bottom
.SetDone(FALSE
);
1537 constr
->width
.SetDone(FALSE
);
1538 constr
->height
.SetDone(FALSE
);
1539 constr
->centreX
.SetDone(FALSE
);
1540 constr
->centreY
.SetDone(FALSE
);
1543 wxWindowList::Node
*node
= GetChildren().GetFirst();
1546 wxWindow
*win
= node
->GetData();
1547 if ( !win
->IsTopLevel() )
1548 win
->ResetConstraints();
1549 node
= node
->GetNext();
1553 // Need to distinguish between setting the 'fake' size for windows and sizers,
1554 // and setting the real values.
1555 void wxWindowBase::SetConstraintSizes(bool recurse
)
1557 wxLayoutConstraints
*constr
= GetConstraints();
1558 if ( constr
&& constr
->AreSatisfied() )
1560 int x
= constr
->left
.GetValue();
1561 int y
= constr
->top
.GetValue();
1562 int w
= constr
->width
.GetValue();
1563 int h
= constr
->height
.GetValue();
1565 if ( (constr
->width
.GetRelationship() != wxAsIs
) ||
1566 (constr
->height
.GetRelationship() != wxAsIs
) )
1568 SetSize(x
, y
, w
, h
);
1572 // If we don't want to resize this window, just move it...
1578 wxLogDebug(wxT("Constraints not satisfied for %s named '%s'."),
1579 GetClassInfo()->GetClassName(),
1585 wxWindowList::Node
*node
= GetChildren().GetFirst();
1588 wxWindow
*win
= node
->GetData();
1589 if ( !win
->IsTopLevel() && win
->GetConstraints() )
1590 win
->SetConstraintSizes();
1591 node
= node
->GetNext();
1596 // Only set the size/position of the constraint (if any)
1597 void wxWindowBase::SetSizeConstraint(int x
, int y
, int w
, int h
)
1599 wxLayoutConstraints
*constr
= GetConstraints();
1604 constr
->left
.SetValue(x
);
1605 constr
->left
.SetDone(TRUE
);
1609 constr
->top
.SetValue(y
);
1610 constr
->top
.SetDone(TRUE
);
1614 constr
->width
.SetValue(w
);
1615 constr
->width
.SetDone(TRUE
);
1619 constr
->height
.SetValue(h
);
1620 constr
->height
.SetDone(TRUE
);
1625 void wxWindowBase::MoveConstraint(int x
, int y
)
1627 wxLayoutConstraints
*constr
= GetConstraints();
1632 constr
->left
.SetValue(x
);
1633 constr
->left
.SetDone(TRUE
);
1637 constr
->top
.SetValue(y
);
1638 constr
->top
.SetDone(TRUE
);
1643 void wxWindowBase::GetSizeConstraint(int *w
, int *h
) const
1645 wxLayoutConstraints
*constr
= GetConstraints();
1648 *w
= constr
->width
.GetValue();
1649 *h
= constr
->height
.GetValue();
1655 void wxWindowBase::GetClientSizeConstraint(int *w
, int *h
) const
1657 wxLayoutConstraints
*constr
= GetConstraints();
1660 *w
= constr
->width
.GetValue();
1661 *h
= constr
->height
.GetValue();
1664 GetClientSize(w
, h
);
1667 void wxWindowBase::GetPositionConstraint(int *x
, int *y
) const
1669 wxLayoutConstraints
*constr
= GetConstraints();
1672 *x
= constr
->left
.GetValue();
1673 *y
= constr
->top
.GetValue();
1679 #endif // wxUSE_CONSTRAINTS
1681 void wxWindowBase::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
) const
1683 // don't do it for the dialogs/frames - they float independently of their
1685 if ( !IsTopLevel() )
1687 wxWindow
*parent
= GetParent();
1688 if ( !(sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) && parent
)
1690 wxPoint
pt(parent
->GetClientAreaOrigin());
1697 // ----------------------------------------------------------------------------
1698 // do Update UI processing for child controls
1699 // ----------------------------------------------------------------------------
1701 // TODO: should this be implemented for the child window rather
1702 // than the parent? Then you can override it e.g. for wxCheckBox
1703 // to do the Right Thing rather than having to assume a fixed number
1704 // of control classes.
1705 void wxWindowBase::UpdateWindowUI()
1708 wxUpdateUIEvent
event(GetId());
1709 event
.m_eventObject
= this;
1711 if ( GetEventHandler()->ProcessEvent(event
) )
1713 if ( event
.GetSetEnabled() )
1714 Enable(event
.GetEnabled());
1716 if ( event
.GetSetText() )
1718 wxControl
*control
= wxDynamicCastThis(wxControl
);
1722 wxTextCtrl
*text
= wxDynamicCast(control
, wxTextCtrl
);
1724 text
->SetValue(event
.GetText());
1726 #endif // wxUSE_TEXTCTRL
1727 control
->SetLabel(event
.GetText());
1732 wxCheckBox
*checkbox
= wxDynamicCastThis(wxCheckBox
);
1735 if ( event
.GetSetChecked() )
1736 checkbox
->SetValue(event
.GetChecked());
1738 #endif // wxUSE_CHECKBOX
1741 wxRadioButton
*radiobtn
= wxDynamicCastThis(wxRadioButton
);
1744 if ( event
.GetSetChecked() )
1745 radiobtn
->SetValue(event
.GetChecked());
1747 #endif // wxUSE_RADIOBTN
1749 #endif // wxUSE_CONTROLS
1752 // ----------------------------------------------------------------------------
1753 // dialog units translations
1754 // ----------------------------------------------------------------------------
1756 wxPoint
wxWindowBase::ConvertPixelsToDialog(const wxPoint
& pt
)
1758 int charWidth
= GetCharWidth();
1759 int charHeight
= GetCharHeight();
1760 wxPoint
pt2(-1, -1);
1762 pt2
.x
= (int) ((pt
.x
* 4) / charWidth
) ;
1764 pt2
.y
= (int) ((pt
.y
* 8) / charHeight
) ;
1769 wxPoint
wxWindowBase::ConvertDialogToPixels(const wxPoint
& pt
)
1771 int charWidth
= GetCharWidth();
1772 int charHeight
= GetCharHeight();
1773 wxPoint
pt2(-1, -1);
1775 pt2
.x
= (int) ((pt
.x
* charWidth
) / 4) ;
1777 pt2
.y
= (int) ((pt
.y
* charHeight
) / 8) ;
1782 // ----------------------------------------------------------------------------
1784 // ----------------------------------------------------------------------------
1786 // propagate the colour change event to the subwindows
1787 void wxWindowBase::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1789 wxWindowList::Node
*node
= GetChildren().GetFirst();
1792 // Only propagate to non-top-level windows
1793 wxWindow
*win
= node
->GetData();
1794 if ( !win
->IsTopLevel() )
1796 wxSysColourChangedEvent event2
;
1797 event
.m_eventObject
= win
;
1798 win
->GetEventHandler()->ProcessEvent(event2
);
1801 node
= node
->GetNext();
1805 // the default action is to populate dialog with data when it's created
1806 void wxWindowBase::OnInitDialog( wxInitDialogEvent
&WXUNUSED(event
) )
1808 TransferDataToWindow();
1811 // process Ctrl-Alt-mclick
1812 void wxWindowBase::OnMiddleClick( wxMouseEvent
& event
)
1815 if ( event
.ControlDown() && event
.AltDown() )
1817 // don't translate these strings
1820 #ifdef __WXUNIVERSAL__
1822 #endif // __WXUNIVERSAL__
1824 switch ( wxGetOsVersion() )
1826 case wxMOTIF_X
: port
= _T("Motif"); break;
1828 case wxMAC_DARWIN
: port
= _T("Mac"); break;
1829 case wxBEOS
: port
= _T("BeOS"); break;
1833 case wxGTK_BEOS
: port
= _T("GTK"); break;
1839 case wxWIN386
: port
= _T("MS Windows"); break;
1843 case wxMGL_OS2
: port
= _T("MGL"); break;
1845 case wxOS2_PM
: port
= _T("OS/2"); break;
1846 default: port
= _T("unknown"); break;
1849 wxMessageBox(wxString::Format(
1851 " wxWindows Library (%s port)\nVersion %u.%u.%u%s, compiled at %s %s\n Copyright (c) 1995-2002 wxWindows team"
1865 _T("wxWindows information"),
1866 wxICON_INFORMATION
| wxOK
,
1870 #endif // wxUSE_MSGDLG
1876 // ----------------------------------------------------------------------------
1877 // list classes implementation
1878 // ----------------------------------------------------------------------------
1880 void wxWindowListNode::DeleteData()
1882 delete (wxWindow
*)GetData();
1885 // ----------------------------------------------------------------------------
1887 // ----------------------------------------------------------------------------
1889 wxBorder
wxWindowBase::GetBorder() const
1891 wxBorder border
= (wxBorder
)(m_windowStyle
& wxBORDER_MASK
);
1892 if ( border
== wxBORDER_DEFAULT
)
1894 border
= GetDefaultBorder();
1900 wxBorder
wxWindowBase::GetDefaultBorder() const
1902 return wxBORDER_NONE
;
1905 // ----------------------------------------------------------------------------
1907 // ----------------------------------------------------------------------------
1909 wxHitTest
wxWindowBase::DoHitTest(wxCoord x
, wxCoord y
) const
1911 // here we just check if the point is inside the window or not
1913 // check the top and left border first
1914 bool outside
= x
< 0 || y
< 0;
1917 // check the right and bottom borders too
1918 wxSize size
= GetSize();
1919 outside
= x
>= size
.x
|| y
>= size
.y
;
1922 return outside
? wxHT_WINDOW_OUTSIDE
: wxHT_WINDOW_INSIDE
;
1925 // ----------------------------------------------------------------------------
1927 // ----------------------------------------------------------------------------
1929 struct WXDLLEXPORT wxWindowNext
1933 } *wxWindowBase::ms_winCaptureNext
= NULL
;
1935 void wxWindowBase::CaptureMouse()
1937 wxLogTrace(_T("mousecapture"), _T("CaptureMouse(0x%08x)"), this);
1939 wxWindow
*winOld
= GetCapture();
1942 ((wxWindowBase
*) winOld
)->DoReleaseMouse();
1945 wxWindowNext
*item
= new wxWindowNext
;
1947 item
->next
= ms_winCaptureNext
;
1948 ms_winCaptureNext
= item
;
1950 //else: no mouse capture to save
1955 void wxWindowBase::ReleaseMouse()
1957 wxLogTrace(_T("mousecapture"), _T("ReleaseMouse(0x%08x)"), this);
1959 wxASSERT_MSG( GetCapture() == this, wxT("attempt to release mouse, but this window hasn't captured it") )
1963 if ( ms_winCaptureNext
)
1965 ((wxWindowBase
*)ms_winCaptureNext
->win
)->DoCaptureMouse();
1967 wxWindowNext
*item
= ms_winCaptureNext
;
1968 ms_winCaptureNext
= item
->next
;
1971 //else: stack is empty, no previous capture
1973 wxLogTrace(_T("mousecapture"),
1974 _T("After ReleaseMouse() mouse is captured by 0x%08x"),
1978 // ----------------------------------------------------------------------------
1980 // ----------------------------------------------------------------------------
1982 wxWindow
* wxGetTopLevelParent(wxWindow
*win
)
1984 while ( win
&& !win
->IsTopLevel() )
1985 win
= win
->GetParent();