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/statbox.h"
42 #include "wx/textctrl.h"
43 #include "wx/settings.h"
44 #include "wx/dialog.h"
45 #include "wx/msgdlg.h"
46 #include "wx/statusbr.h"
50 #include "wx/layout.h"
51 #endif // wxUSE_CONSTRAINTS
55 #if wxUSE_DRAG_AND_DROP
57 #endif // wxUSE_DRAG_AND_DROP
60 #include "wx/cshelp.h"
64 #include "wx/tooltip.h"
65 #endif // wxUSE_TOOLTIPS
71 // ----------------------------------------------------------------------------
73 // ----------------------------------------------------------------------------
76 int wxWindowBase::ms_lastControlId
= 2000;
78 int wxWindowBase::ms_lastControlId
= -200;
81 IMPLEMENT_ABSTRACT_CLASS(wxWindowBase
, wxEvtHandler
)
83 // ----------------------------------------------------------------------------
85 // ----------------------------------------------------------------------------
87 BEGIN_EVENT_TABLE(wxWindowBase
, wxEvtHandler
)
88 EVT_SYS_COLOUR_CHANGED(wxWindowBase::OnSysColourChanged
)
89 EVT_INIT_DIALOG(wxWindowBase::OnInitDialog
)
90 EVT_MIDDLE_DOWN(wxWindowBase::OnMiddleClick
)
93 EVT_HELP(-1, wxWindowBase::OnHelp
)
98 // ============================================================================
99 // implementation of the common functionality of the wxWindow class
100 // ============================================================================
102 // ----------------------------------------------------------------------------
104 // ----------------------------------------------------------------------------
106 // the default initialization
107 void wxWindowBase::InitBase()
109 // no window yet, no parent nor children
110 m_parent
= (wxWindow
*)NULL
;
112 m_children
.DeleteContents( FALSE
); // don't auto delete node data
114 // no constraints on the minimal window size
120 // window is created enabled but it's not visible yet
124 // the default event handler is just this window
125 m_eventHandler
= this;
129 m_windowValidator
= (wxValidator
*) NULL
;
130 #endif // wxUSE_VALIDATORS
132 // use the system default colours
133 m_backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
);
134 m_foregroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
136 // don't set the font here for wxMSW as we don't call WM_SETFONT here and
137 // so the font is *not* really set - but calls to SetFont() later won't do
138 // anything because m_font appears to be already set!
140 m_font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
143 // the colours/fonts are default for now
152 // an optimization for the event processing: checking this flag is much
153 // faster than using IsKindOf(CLASSINFO(wxWindow))
156 #if wxUSE_CONSTRAINTS
157 // no constraints whatsoever
158 m_constraints
= (wxLayoutConstraints
*) NULL
;
159 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
160 #endif // wxUSE_CONSTRAINTS
162 m_windowSizer
= (wxSizer
*) NULL
;
163 m_containingSizer
= (wxSizer
*) NULL
;
164 m_autoLayout
= FALSE
;
166 #if wxUSE_DRAG_AND_DROP
167 m_dropTarget
= (wxDropTarget
*)NULL
;
168 #endif // wxUSE_DRAG_AND_DROP
171 m_tooltip
= (wxToolTip
*)NULL
;
172 #endif // wxUSE_TOOLTIPS
175 m_caret
= (wxCaret
*)NULL
;
176 #endif // wxUSE_CARET
179 m_hasCustomPalette
= FALSE
;
180 #endif // wxUSE_PALETTE
182 m_virtualSize
= wxDefaultSize
;
187 m_maxVirtualHeight
= -1;
189 // Whether we're using the current theme for this window (wxGTK only for now)
190 m_themeEnabled
= FALSE
;
193 // common part of window creation process
194 bool wxWindowBase::CreateBase(wxWindowBase
*parent
,
196 const wxPoint
& WXUNUSED(pos
),
197 const wxSize
& WXUNUSED(size
),
199 const wxValidator
& validator
,
200 const wxString
& name
)
202 // m_isWindow is set to TRUE in wxWindowBase::Init() as well as many other
203 // member variables - check that it has been called (will catch the case
204 // when a new ctor is added which doesn't call InitWindow)
205 wxASSERT_MSG( m_isWindow
, wxT("Init() must have been called before!") );
208 // wxGTK doesn't allow to create controls with static box as the parent so
209 // this will result in a crash when the program is ported to wxGTK so warn
212 // if you get this assert, the correct solution is to create the controls
213 // as siblings of the static box
214 wxASSERT_MSG( !parent
|| !wxDynamicCast(parent
, wxStaticBox
),
215 _T("wxStaticBox can't be used as a window parent!") );
216 #endif // wxUSE_STATBOX
218 // generate a new id if the user doesn't care about it
219 m_windowId
= id
== -1 ? NewControlId() : id
;
222 SetWindowStyleFlag(style
);
226 SetValidator(validator
);
227 #endif // wxUSE_VALIDATORS
229 // if the parent window has wxWS_EX_VALIDATE_RECURSIVELY set, we want to
230 // have it too - like this it's possible to set it only in the top level
231 // dialog/frame and all children will inherit it by defult
232 if ( parent
&& (parent
->GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) )
234 SetExtraStyle(wxWS_EX_VALIDATE_RECURSIVELY
);
240 // ----------------------------------------------------------------------------
242 // ----------------------------------------------------------------------------
245 wxWindowBase::~wxWindowBase()
247 wxASSERT_MSG( GetCapture() != this, wxT("attempt to destroy window with mouse capture") );
249 // FIXME if these 2 cases result from programming errors in the user code
250 // we should probably assert here instead of silently fixing them
252 // Just in case the window has been Closed, but we're then deleting
253 // immediately: don't leave dangling pointers.
254 wxPendingDelete
.DeleteObject(this);
256 // Just in case we've loaded a top-level window via LoadNativeDialog but
257 // we weren't a dialog class
258 wxTopLevelWindows
.DeleteObject(this);
260 wxASSERT_MSG( GetChildren().GetCount() == 0, wxT("children not destroyed") );
265 #endif // wxUSE_CARET
268 if ( m_windowValidator
)
269 delete m_windowValidator
;
270 #endif // wxUSE_VALIDATORS
272 #if wxUSE_CONSTRAINTS
273 // Have to delete constraints/sizer FIRST otherwise sizers may try to look
274 // at deleted windows as they delete themselves.
275 DeleteRelatedConstraints();
279 // This removes any dangling pointers to this window in other windows'
280 // constraintsInvolvedIn lists.
281 UnsetConstraints(m_constraints
);
282 delete m_constraints
;
283 m_constraints
= NULL
;
286 #endif // wxUSE_CONSTRAINTS
288 if ( m_containingSizer
)
289 m_containingSizer
->Detach( (wxWindow
*)this );
292 delete m_windowSizer
;
294 #if wxUSE_DRAG_AND_DROP
297 #endif // wxUSE_DRAG_AND_DROP
302 #endif // wxUSE_TOOLTIPS
304 // reset the dangling pointer our parent window may keep to us
305 if ( m_parent
&& m_parent
->GetDefaultItem() == this )
307 m_parent
->SetDefaultItem(NULL
);
311 bool wxWindowBase::Destroy()
318 bool wxWindowBase::Close(bool force
)
320 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
321 event
.SetEventObject(this);
322 #if WXWIN_COMPATIBILITY
323 event
.SetForce(force
);
324 #endif // WXWIN_COMPATIBILITY
325 event
.SetCanVeto(!force
);
327 // return FALSE if window wasn't closed because the application vetoed the
329 return GetEventHandler()->ProcessEvent(event
) && !event
.GetVeto();
332 bool wxWindowBase::DestroyChildren()
334 wxWindowList::Node
*node
;
337 // we iterate until the list becomes empty
338 node
= GetChildren().GetFirst();
342 wxWindow
*child
= node
->GetData();
344 wxASSERT_MSG( child
, wxT("children list contains empty nodes") );
349 wxASSERT_MSG( !GetChildren().Find(child
),
350 wxT("child didn't remove itself using RemoveChild()") );
356 // ----------------------------------------------------------------------------
357 // size/position related methods
358 // ----------------------------------------------------------------------------
360 // centre the window with respect to its parent in either (or both) directions
361 void wxWindowBase::Centre(int direction
)
363 // the position/size of the parent window or of the entire screen
365 int widthParent
, heightParent
;
367 wxWindow
*parent
= NULL
;
369 if ( !(direction
& wxCENTRE_ON_SCREEN
) )
371 // find the parent to centre this window on: it should be the
372 // immediate parent for the controls but the top level parent for the
373 // top level windows (like dialogs)
374 parent
= GetParent();
377 while ( parent
&& !parent
->IsTopLevel() )
379 parent
= parent
->GetParent();
383 // there is no wxTopLevelWindow under wxMotif yet
385 // we shouldn't center the dialog on the iconized window: under
386 // Windows, for example, this places it completely off the screen
389 wxTopLevelWindow
*winTop
= wxDynamicCast(parent
, wxTopLevelWindow
);
390 if ( winTop
&& winTop
->IsIconized() )
395 #endif // __WXMOTIF__
397 // did we find the parent?
401 direction
|= wxCENTRE_ON_SCREEN
;
405 if ( direction
& wxCENTRE_ON_SCREEN
)
407 // centre with respect to the whole screen
408 wxDisplaySize(&widthParent
, &heightParent
);
414 // centre on the parent
415 parent
->GetSize(&widthParent
, &heightParent
);
417 // adjust to the parents position
418 posParent
= parent
->GetPosition();
422 // centre inside the parents client rectangle
423 parent
->GetClientSize(&widthParent
, &heightParent
);
428 GetSize(&width
, &height
);
433 if ( direction
& wxHORIZONTAL
)
434 xNew
= (widthParent
- width
)/2;
436 if ( direction
& wxVERTICAL
)
437 yNew
= (heightParent
- height
)/2;
442 // Base size of the visible dimensions of the display
443 // to take into account the taskbar
444 wxRect rect
= wxGetClientDisplayRect();
445 wxSize
size (rect
.width
,rect
.height
);
447 // NB: in wxMSW, negative position may not neccessary mean "out of screen",
448 // but it may mean that the window is placed on other than the main
449 // display. Therefore we only make sure centered window is on the main display
450 // if the parent is at least partially present here.
451 if (posParent
.x
+ widthParent
>= 0) // if parent is (partially) on the main display
455 else if (xNew
+width
> size
.x
)
456 xNew
= size
.x
-width
-1;
458 if (posParent
.y
+ heightParent
>= 0) // if parent is (partially) on the main display
460 if (yNew
+height
> size
.y
)
461 yNew
= size
.y
-height
-1;
463 // Make certain that the title bar is initially visible
464 // always, even if this would push the bottom of the
465 // dialog of the visible area of the display
470 // move the window to this position (keeping the old size but using
471 // SetSize() and not Move() to allow xNew and/or yNew to be -1)
472 SetSize(xNew
, yNew
, width
, height
, wxSIZE_ALLOW_MINUS_ONE
);
475 // fits the window around the children
476 void wxWindowBase::Fit()
478 if ( GetChildren().GetCount() > 0 )
480 SetClientSize(DoGetBestSize());
482 //else: do nothing if we have no children
485 // fits virtual size (ie. scrolled area etc.) around children
486 void wxWindowBase::FitInside()
488 if ( GetChildren().GetCount() > 0 )
490 SetVirtualSize( GetBestVirtualSize() );
494 // return the size best suited for the current window
495 wxSize
wxWindowBase::DoGetBestSize() const
499 return m_windowSizer
->GetMinSize();
501 #if wxUSE_CONSTRAINTS
502 else if ( m_constraints
)
504 wxConstCast(this, wxWindowBase
)->SatisfyConstraints();
506 // our minimal acceptable size is such that all our windows fit inside
510 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
512 node
= node
->GetNext() )
514 wxLayoutConstraints
*c
= node
->GetData()->GetConstraints();
517 // it's not normal that we have an unconstrained child, but
518 // what can we do about it?
522 int x
= c
->right
.GetValue(),
523 y
= c
->bottom
.GetValue();
531 // TODO: we must calculate the overlaps somehow, otherwise we
532 // will never return a size bigger than the current one :-(
535 return wxSize(maxX
, maxY
);
537 #endif // wxUSE_CONSTRAINTS
538 else if ( GetChildren().GetCount() > 0 )
540 // our minimal acceptable size is such that all our windows fit inside
544 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
546 node
= node
->GetNext() )
548 wxWindow
*win
= node
->GetData();
549 if ( win
->IsTopLevel()
551 || wxDynamicCast(win
, wxStatusBar
)
552 #endif // wxUSE_STATUSBAR
555 // dialogs and frames lie in different top level windows -
556 // don't deal with them here; as for the status bars, they
557 // don't lie in the client area at all
562 win
->GetPosition(&wx
, &wy
);
564 // if the window hadn't been positioned yet, assume that it is in
571 win
->GetSize(&ww
, &wh
);
572 if ( wx
+ ww
> maxX
)
574 if ( wy
+ wh
> maxY
)
578 // for compatibility with the old versions and because it really looks
579 // slightly more pretty like this, add a pad
583 return wxSize(maxX
, maxY
);
587 // for a generic window there is no natural best size - just use the
593 // by default the origin is not shifted
594 wxPoint
wxWindowBase::GetClientAreaOrigin() const
596 return wxPoint(0, 0);
599 // set the min/max size of the window
600 void wxWindowBase::SetSizeHints(int minW
, int minH
,
602 int WXUNUSED(incW
), int WXUNUSED(incH
))
610 void wxWindowBase::SetVirtualSizeHints( int minW
, int minH
,
613 m_minVirtualWidth
= minW
;
614 m_maxVirtualWidth
= maxW
;
615 m_minVirtualHeight
= minH
;
616 m_maxVirtualHeight
= maxH
;
619 void wxWindowBase::DoSetVirtualSize( int x
, int y
)
621 if ( m_minVirtualWidth
!= -1 && m_minVirtualWidth
> x
)
622 x
= m_minVirtualWidth
;
623 if ( m_maxVirtualWidth
!= -1 && m_maxVirtualWidth
< x
)
624 x
= m_maxVirtualWidth
;
625 if ( m_minVirtualHeight
!= -1 && m_minVirtualHeight
> y
)
626 y
= m_minVirtualHeight
;
627 if ( m_maxVirtualHeight
!= -1 && m_maxVirtualHeight
< y
)
628 y
= m_maxVirtualHeight
;
630 m_virtualSize
= wxSize(x
, y
);
633 wxSize
wxWindowBase::DoGetVirtualSize() const
635 wxSize
s( GetClientSize() );
637 return wxSize( wxMax( m_virtualSize
.GetWidth(), s
.GetWidth() ),
638 wxMax( m_virtualSize
.GetHeight(), s
.GetHeight() ) );
641 // ----------------------------------------------------------------------------
642 // show/hide/enable/disable the window
643 // ----------------------------------------------------------------------------
645 bool wxWindowBase::Show(bool show
)
647 if ( show
!= m_isShown
)
659 bool wxWindowBase::Enable(bool enable
)
661 if ( enable
!= m_isEnabled
)
663 m_isEnabled
= enable
;
672 // ----------------------------------------------------------------------------
674 // ----------------------------------------------------------------------------
676 bool wxWindowBase::IsTopLevel() const
681 // ----------------------------------------------------------------------------
682 // reparenting the window
683 // ----------------------------------------------------------------------------
685 void wxWindowBase::AddChild(wxWindowBase
*child
)
687 wxCHECK_RET( child
, wxT("can't add a NULL child") );
689 // this should never happen and it will lead to a crash later if it does
690 // because RemoveChild() will remove only one node from the children list
691 // and the other(s) one(s) will be left with dangling pointers in them
692 wxASSERT_MSG( !GetChildren().Find(child
), _T("AddChild() called twice") );
694 GetChildren().Append(child
);
695 child
->SetParent(this);
698 void wxWindowBase::RemoveChild(wxWindowBase
*child
)
700 wxCHECK_RET( child
, wxT("can't remove a NULL child") );
702 GetChildren().DeleteObject(child
);
703 child
->SetParent((wxWindow
*)NULL
);
706 bool wxWindowBase::Reparent(wxWindowBase
*newParent
)
708 wxWindow
*oldParent
= GetParent();
709 if ( newParent
== oldParent
)
715 // unlink this window from the existing parent.
718 oldParent
->RemoveChild(this);
722 wxTopLevelWindows
.DeleteObject(this);
725 // add it to the new one
728 newParent
->AddChild(this);
732 wxTopLevelWindows
.Append(this);
738 // ----------------------------------------------------------------------------
739 // event handler stuff
740 // ----------------------------------------------------------------------------
742 void wxWindowBase::PushEventHandler(wxEvtHandler
*handler
)
744 wxEvtHandler
*handlerOld
= GetEventHandler();
746 handler
->SetNextHandler(handlerOld
);
749 GetEventHandler()->SetPreviousHandler(handler
);
751 SetEventHandler(handler
);
754 wxEvtHandler
*wxWindowBase::PopEventHandler(bool deleteHandler
)
756 wxEvtHandler
*handlerA
= GetEventHandler();
759 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
760 handlerA
->SetNextHandler((wxEvtHandler
*)NULL
);
763 handlerB
->SetPreviousHandler((wxEvtHandler
*)NULL
);
764 SetEventHandler(handlerB
);
769 handlerA
= (wxEvtHandler
*)NULL
;
776 bool wxWindowBase::RemoveEventHandler(wxEvtHandler
*handler
)
778 wxCHECK_MSG( handler
, FALSE
, _T("RemoveEventHandler(NULL) called") );
780 wxEvtHandler
*handlerPrev
= NULL
,
781 *handlerCur
= GetEventHandler();
784 wxEvtHandler
*handlerNext
= handlerCur
->GetNextHandler();
786 if ( handlerCur
== handler
)
790 handlerPrev
->SetNextHandler(handlerNext
);
794 SetEventHandler(handlerNext
);
799 handlerNext
->SetPreviousHandler ( handlerPrev
);
801 handler
->SetNextHandler(NULL
);
806 handlerPrev
= handlerCur
;
807 handlerCur
= handlerNext
;
810 wxFAIL_MSG( _T("where has the event handler gone?") );
815 // ----------------------------------------------------------------------------
817 // ----------------------------------------------------------------------------
819 bool wxWindowBase::SetBackgroundColour( const wxColour
&colour
)
821 if ( !colour
.Ok() || (colour
== m_backgroundColour
) )
824 m_backgroundColour
= colour
;
831 bool wxWindowBase::SetForegroundColour( const wxColour
&colour
)
833 if ( !colour
.Ok() || (colour
== m_foregroundColour
) )
836 m_foregroundColour
= colour
;
843 bool wxWindowBase::SetCursor(const wxCursor
& cursor
)
845 // setting an invalid cursor is ok, it means that we don't have any special
847 if ( m_cursor
== cursor
)
858 bool wxWindowBase::SetFont(const wxFont
& font
)
860 // don't try to set invalid font, always fall back to the default
861 const wxFont
& fontOk
= font
.Ok() ? font
: *wxSWISS_FONT
;
863 if ( fontOk
== m_font
)
878 void wxWindowBase::SetPalette(const wxPalette
& pal
)
880 m_hasCustomPalette
= TRUE
;
883 // VZ: can anyone explain me what do we do here?
884 wxWindowDC
d((wxWindow
*) this);
888 wxWindow
*wxWindowBase::GetAncestorWithCustomPalette() const
890 wxWindow
*win
= (wxWindow
*)this;
891 while ( win
&& !win
->HasCustomPalette() )
893 win
= win
->GetParent();
899 #endif // wxUSE_PALETTE
902 void wxWindowBase::SetCaret(wxCaret
*caret
)
913 wxASSERT_MSG( m_caret
->GetWindow() == this,
914 wxT("caret should be created associated to this window") );
917 #endif // wxUSE_CARET
920 // ----------------------------------------------------------------------------
922 // ----------------------------------------------------------------------------
924 void wxWindowBase::SetValidator(const wxValidator
& validator
)
926 if ( m_windowValidator
)
927 delete m_windowValidator
;
929 m_windowValidator
= (wxValidator
*)validator
.Clone();
931 if ( m_windowValidator
)
932 m_windowValidator
->SetWindow(this) ;
934 #endif // wxUSE_VALIDATORS
936 // ----------------------------------------------------------------------------
937 // update region stuff
938 // ----------------------------------------------------------------------------
940 wxRect
wxWindowBase::GetUpdateClientRect() const
942 wxRegion rgnUpdate
= GetUpdateRegion();
943 rgnUpdate
.Intersect(GetClientRect());
944 wxRect rectUpdate
= rgnUpdate
.GetBox();
945 wxPoint ptOrigin
= GetClientAreaOrigin();
946 rectUpdate
.x
-= ptOrigin
.x
;
947 rectUpdate
.y
-= ptOrigin
.y
;
952 bool wxWindowBase::IsExposed(int x
, int y
) const
954 return m_updateRegion
.Contains(x
, y
) != wxOutRegion
;
957 bool wxWindowBase::IsExposed(int x
, int y
, int w
, int h
) const
959 return m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
;
962 // ----------------------------------------------------------------------------
963 // find child window by id or name
964 // ----------------------------------------------------------------------------
966 wxWindow
*wxWindowBase::FindWindow( long id
)
968 if ( id
== m_windowId
)
969 return (wxWindow
*)this;
971 wxWindowBase
*res
= (wxWindow
*)NULL
;
972 wxWindowList::Node
*node
;
973 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
975 wxWindowBase
*child
= node
->GetData();
976 res
= child
->FindWindow( id
);
979 return (wxWindow
*)res
;
982 wxWindow
*wxWindowBase::FindWindow( const wxString
& name
)
984 if ( name
== m_windowName
)
985 return (wxWindow
*)this;
987 wxWindowBase
*res
= (wxWindow
*)NULL
;
988 wxWindowList::Node
*node
;
989 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
991 wxWindow
*child
= node
->GetData();
992 res
= child
->FindWindow(name
);
995 return (wxWindow
*)res
;
999 // find any window by id or name or label: If parent is non-NULL, look through
1000 // children for a label or title matching the specified string. If NULL, look
1001 // through all top-level windows.
1003 // to avoid duplicating code we reuse the same helper function but with
1004 // different comparators
1006 typedef bool (*wxFindWindowCmp
)(const wxWindow
*win
,
1007 const wxString
& label
, long id
);
1010 bool wxFindWindowCmpLabels(const wxWindow
*win
, const wxString
& label
,
1013 return win
->GetLabel() == label
;
1017 bool wxFindWindowCmpNames(const wxWindow
*win
, const wxString
& label
,
1020 return win
->GetName() == label
;
1024 bool wxFindWindowCmpIds(const wxWindow
*win
, const wxString
& WXUNUSED(label
),
1027 return win
->GetId() == id
;
1030 // recursive helper for the FindWindowByXXX() functions
1032 wxWindow
*wxFindWindowRecursively(const wxWindow
*parent
,
1033 const wxString
& label
,
1035 wxFindWindowCmp cmp
)
1039 // see if this is the one we're looking for
1040 if ( (*cmp
)(parent
, label
, id
) )
1041 return (wxWindow
*)parent
;
1043 // It wasn't, so check all its children
1044 for ( wxWindowList::Node
* node
= parent
->GetChildren().GetFirst();
1046 node
= node
->GetNext() )
1048 // recursively check each child
1049 wxWindow
*win
= (wxWindow
*)node
->GetData();
1050 wxWindow
*retwin
= wxFindWindowRecursively(win
, label
, id
, cmp
);
1060 // helper for FindWindowByXXX()
1062 wxWindow
*wxFindWindowHelper(const wxWindow
*parent
,
1063 const wxString
& label
,
1065 wxFindWindowCmp cmp
)
1069 // just check parent and all its children
1070 return wxFindWindowRecursively(parent
, label
, id
, cmp
);
1073 // start at very top of wx's windows
1074 for ( wxWindowList::Node
* node
= wxTopLevelWindows
.GetFirst();
1076 node
= node
->GetNext() )
1078 // recursively check each window & its children
1079 wxWindow
*win
= node
->GetData();
1080 wxWindow
*retwin
= wxFindWindowRecursively(win
, label
, id
, cmp
);
1090 wxWindowBase::FindWindowByLabel(const wxString
& title
, const wxWindow
*parent
)
1092 return wxFindWindowHelper(parent
, title
, 0, wxFindWindowCmpLabels
);
1097 wxWindowBase::FindWindowByName(const wxString
& title
, const wxWindow
*parent
)
1099 wxWindow
*win
= wxFindWindowHelper(parent
, title
, 0, wxFindWindowCmpNames
);
1103 // fall back to the label
1104 win
= FindWindowByLabel(title
, parent
);
1112 wxWindowBase::FindWindowById( long id
, const wxWindow
* parent
)
1114 return wxFindWindowHelper(parent
, _T(""), id
, wxFindWindowCmpIds
);
1117 // ----------------------------------------------------------------------------
1118 // dialog oriented functions
1119 // ----------------------------------------------------------------------------
1121 void wxWindowBase::MakeModal(bool modal
)
1123 // Disable all other windows
1126 wxWindowList::Node
*node
= wxTopLevelWindows
.GetFirst();
1129 wxWindow
*win
= node
->GetData();
1131 win
->Enable(!modal
);
1133 node
= node
->GetNext();
1138 bool wxWindowBase::Validate()
1140 #if wxUSE_VALIDATORS
1141 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1143 wxWindowList::Node
*node
;
1144 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1146 wxWindowBase
*child
= node
->GetData();
1147 wxValidator
*validator
= child
->GetValidator();
1148 if ( validator
&& !validator
->Validate((wxWindow
*)this) )
1153 if ( recurse
&& !child
->Validate() )
1158 #endif // wxUSE_VALIDATORS
1163 bool wxWindowBase::TransferDataToWindow()
1165 #if wxUSE_VALIDATORS
1166 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1168 wxWindowList::Node
*node
;
1169 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1171 wxWindowBase
*child
= node
->GetData();
1172 wxValidator
*validator
= child
->GetValidator();
1173 if ( validator
&& !validator
->TransferToWindow() )
1175 wxLogWarning(_("Could not transfer data to window"));
1177 wxLog::FlushActive();
1185 if ( !child
->TransferDataToWindow() )
1187 // warning already given
1192 #endif // wxUSE_VALIDATORS
1197 bool wxWindowBase::TransferDataFromWindow()
1199 #if wxUSE_VALIDATORS
1200 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
1202 wxWindowList::Node
*node
;
1203 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
1205 wxWindow
*child
= node
->GetData();
1206 wxValidator
*validator
= child
->GetValidator();
1207 if ( validator
&& !validator
->TransferFromWindow() )
1209 // nop warning here because the application is supposed to give
1210 // one itself - we don't know here what might have gone wrongly
1217 if ( !child
->TransferDataFromWindow() )
1219 // warning already given
1224 #endif // wxUSE_VALIDATORS
1229 void wxWindowBase::InitDialog()
1231 wxInitDialogEvent
event(GetId());
1232 event
.SetEventObject( this );
1233 GetEventHandler()->ProcessEvent(event
);
1236 // ----------------------------------------------------------------------------
1237 // context-sensitive help support
1238 // ----------------------------------------------------------------------------
1242 // associate this help text with this window
1243 void wxWindowBase::SetHelpText(const wxString
& text
)
1245 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1248 helpProvider
->AddHelp(this, text
);
1252 // associate this help text with all windows with the same id as this
1254 void wxWindowBase::SetHelpTextForId(const wxString
& text
)
1256 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1259 helpProvider
->AddHelp(GetId(), text
);
1263 // get the help string associated with this window (may be empty)
1264 wxString
wxWindowBase::GetHelpText() const
1267 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1270 text
= helpProvider
->GetHelp(this);
1276 // show help for this window
1277 void wxWindowBase::OnHelp(wxHelpEvent
& event
)
1279 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1282 if ( helpProvider
->ShowHelp(this) )
1284 // skip the event.Skip() below
1292 #endif // wxUSE_HELP
1294 // ----------------------------------------------------------------------------
1295 // tooltipsroot.Replace("\\", "/");
1296 // ----------------------------------------------------------------------------
1300 void wxWindowBase::SetToolTip( const wxString
&tip
)
1302 // don't create the new tooltip if we already have one
1305 m_tooltip
->SetTip( tip
);
1309 SetToolTip( new wxToolTip( tip
) );
1312 // setting empty tooltip text does not remove the tooltip any more - use
1313 // SetToolTip((wxToolTip *)NULL) for this
1316 void wxWindowBase::DoSetToolTip(wxToolTip
*tooltip
)
1321 m_tooltip
= tooltip
;
1324 #endif // wxUSE_TOOLTIPS
1326 // ----------------------------------------------------------------------------
1327 // constraints and sizers
1328 // ----------------------------------------------------------------------------
1330 #if wxUSE_CONSTRAINTS
1332 void wxWindowBase::SetConstraints( wxLayoutConstraints
*constraints
)
1334 if ( m_constraints
)
1336 UnsetConstraints(m_constraints
);
1337 delete m_constraints
;
1339 m_constraints
= constraints
;
1340 if ( m_constraints
)
1342 // Make sure other windows know they're part of a 'meaningful relationship'
1343 if ( m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this) )
1344 m_constraints
->left
.GetOtherWindow()->AddConstraintReference(this);
1345 if ( m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this) )
1346 m_constraints
->top
.GetOtherWindow()->AddConstraintReference(this);
1347 if ( m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this) )
1348 m_constraints
->right
.GetOtherWindow()->AddConstraintReference(this);
1349 if ( m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this) )
1350 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference(this);
1351 if ( m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this) )
1352 m_constraints
->width
.GetOtherWindow()->AddConstraintReference(this);
1353 if ( m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this) )
1354 m_constraints
->height
.GetOtherWindow()->AddConstraintReference(this);
1355 if ( m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this) )
1356 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference(this);
1357 if ( m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this) )
1358 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference(this);
1362 // This removes any dangling pointers to this window in other windows'
1363 // constraintsInvolvedIn lists.
1364 void wxWindowBase::UnsetConstraints(wxLayoutConstraints
*c
)
1368 if ( c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1369 c
->left
.GetOtherWindow()->RemoveConstraintReference(this);
1370 if ( c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1371 c
->top
.GetOtherWindow()->RemoveConstraintReference(this);
1372 if ( c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this) )
1373 c
->right
.GetOtherWindow()->RemoveConstraintReference(this);
1374 if ( c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this) )
1375 c
->bottom
.GetOtherWindow()->RemoveConstraintReference(this);
1376 if ( c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this) )
1377 c
->width
.GetOtherWindow()->RemoveConstraintReference(this);
1378 if ( c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this) )
1379 c
->height
.GetOtherWindow()->RemoveConstraintReference(this);
1380 if ( c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this) )
1381 c
->centreX
.GetOtherWindow()->RemoveConstraintReference(this);
1382 if ( c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this) )
1383 c
->centreY
.GetOtherWindow()->RemoveConstraintReference(this);
1387 // Back-pointer to other windows we're involved with, so if we delete this
1388 // window, we must delete any constraints we're involved with.
1389 void wxWindowBase::AddConstraintReference(wxWindowBase
*otherWin
)
1391 if ( !m_constraintsInvolvedIn
)
1392 m_constraintsInvolvedIn
= new wxWindowList
;
1393 if ( !m_constraintsInvolvedIn
->Find(otherWin
) )
1394 m_constraintsInvolvedIn
->Append(otherWin
);
1397 // REMOVE back-pointer to other windows we're involved with.
1398 void wxWindowBase::RemoveConstraintReference(wxWindowBase
*otherWin
)
1400 if ( m_constraintsInvolvedIn
)
1401 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
1404 // Reset any constraints that mention this window
1405 void wxWindowBase::DeleteRelatedConstraints()
1407 if ( m_constraintsInvolvedIn
)
1409 wxWindowList::Node
*node
= m_constraintsInvolvedIn
->GetFirst();
1412 wxWindow
*win
= node
->GetData();
1413 wxLayoutConstraints
*constr
= win
->GetConstraints();
1415 // Reset any constraints involving this window
1418 constr
->left
.ResetIfWin(this);
1419 constr
->top
.ResetIfWin(this);
1420 constr
->right
.ResetIfWin(this);
1421 constr
->bottom
.ResetIfWin(this);
1422 constr
->width
.ResetIfWin(this);
1423 constr
->height
.ResetIfWin(this);
1424 constr
->centreX
.ResetIfWin(this);
1425 constr
->centreY
.ResetIfWin(this);
1428 wxWindowList::Node
*next
= node
->GetNext();
1433 delete m_constraintsInvolvedIn
;
1434 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
1438 #endif // wxUSE_CONSTRAINTS
1440 void wxWindowBase::SetSizer(wxSizer
*sizer
, bool deleteOld
)
1443 delete m_windowSizer
;
1445 m_windowSizer
= sizer
;
1447 SetAutoLayout( sizer
!= NULL
);
1450 void wxWindowBase::SetSizerAndFit(wxSizer
*sizer
, bool deleteOld
)
1452 SetSizer( sizer
, deleteOld
);
1453 sizer
->SetSizeHints( (wxWindow
*) this );
1456 #if wxUSE_CONSTRAINTS
1458 void wxWindowBase::SatisfyConstraints()
1460 wxLayoutConstraints
*constr
= GetConstraints();
1461 bool wasOk
= constr
&& constr
->AreSatisfied();
1463 ResetConstraints(); // Mark all constraints as unevaluated
1467 // if we're a top level panel (i.e. our parent is frame/dialog), our
1468 // own constraints will never be satisfied any more unless we do it
1472 while ( noChanges
> 0 )
1474 LayoutPhase1(&noChanges
);
1478 LayoutPhase2(&noChanges
);
1481 #endif // wxUSE_CONSTRAINTS
1483 bool wxWindowBase::Layout()
1485 // If there is a sizer, use it instead of the constraints
1489 GetVirtualSize(&w
, &h
);
1490 GetSizer()->SetDimension( 0, 0, w
, h
);
1492 #if wxUSE_CONSTRAINTS
1495 SatisfyConstraints(); // Find the right constraints values
1496 SetConstraintSizes(); // Recursively set the real window sizes
1503 #if wxUSE_CONSTRAINTS
1505 // first phase of the constraints evaluation: set our own constraints
1506 bool wxWindowBase::LayoutPhase1(int *noChanges
)
1508 wxLayoutConstraints
*constr
= GetConstraints();
1510 return !constr
|| constr
->SatisfyConstraints(this, noChanges
);
1513 // second phase: set the constraints for our children
1514 bool wxWindowBase::LayoutPhase2(int *noChanges
)
1521 // Layout grand children
1527 // Do a phase of evaluating child constraints
1528 bool wxWindowBase::DoPhase(int phase
)
1530 // the list containing the children for which the constraints are already
1532 wxWindowList succeeded
;
1534 // the max number of iterations we loop before concluding that we can't set
1536 static const int maxIterations
= 500;
1538 for ( int noIterations
= 0; noIterations
< maxIterations
; noIterations
++ )
1542 // loop over all children setting their constraints
1543 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
1545 node
= node
->GetNext() )
1547 wxWindow
*child
= node
->GetData();
1548 if ( child
->IsTopLevel() )
1550 // top level children are not inside our client area
1554 if ( !child
->GetConstraints() || succeeded
.Find(child
) )
1556 // this one is either already ok or nothing we can do about it
1560 int tempNoChanges
= 0;
1561 bool success
= phase
== 1 ? child
->LayoutPhase1(&tempNoChanges
)
1562 : child
->LayoutPhase2(&tempNoChanges
);
1563 noChanges
+= tempNoChanges
;
1567 succeeded
.Append(child
);
1573 // constraints are set
1581 void wxWindowBase::ResetConstraints()
1583 wxLayoutConstraints
*constr
= GetConstraints();
1586 constr
->left
.SetDone(FALSE
);
1587 constr
->top
.SetDone(FALSE
);
1588 constr
->right
.SetDone(FALSE
);
1589 constr
->bottom
.SetDone(FALSE
);
1590 constr
->width
.SetDone(FALSE
);
1591 constr
->height
.SetDone(FALSE
);
1592 constr
->centreX
.SetDone(FALSE
);
1593 constr
->centreY
.SetDone(FALSE
);
1596 wxWindowList::Node
*node
= GetChildren().GetFirst();
1599 wxWindow
*win
= node
->GetData();
1600 if ( !win
->IsTopLevel() )
1601 win
->ResetConstraints();
1602 node
= node
->GetNext();
1606 // Need to distinguish between setting the 'fake' size for windows and sizers,
1607 // and setting the real values.
1608 void wxWindowBase::SetConstraintSizes(bool recurse
)
1610 wxLayoutConstraints
*constr
= GetConstraints();
1611 if ( constr
&& constr
->AreSatisfied() )
1613 int x
= constr
->left
.GetValue();
1614 int y
= constr
->top
.GetValue();
1615 int w
= constr
->width
.GetValue();
1616 int h
= constr
->height
.GetValue();
1618 if ( (constr
->width
.GetRelationship() != wxAsIs
) ||
1619 (constr
->height
.GetRelationship() != wxAsIs
) )
1621 SetSize(x
, y
, w
, h
);
1625 // If we don't want to resize this window, just move it...
1631 wxLogDebug(wxT("Constraints not satisfied for %s named '%s'."),
1632 GetClassInfo()->GetClassName(),
1638 wxWindowList::Node
*node
= GetChildren().GetFirst();
1641 wxWindow
*win
= node
->GetData();
1642 if ( !win
->IsTopLevel() && win
->GetConstraints() )
1643 win
->SetConstraintSizes();
1644 node
= node
->GetNext();
1649 // Only set the size/position of the constraint (if any)
1650 void wxWindowBase::SetSizeConstraint(int x
, int y
, int w
, int h
)
1652 wxLayoutConstraints
*constr
= GetConstraints();
1657 constr
->left
.SetValue(x
);
1658 constr
->left
.SetDone(TRUE
);
1662 constr
->top
.SetValue(y
);
1663 constr
->top
.SetDone(TRUE
);
1667 constr
->width
.SetValue(w
);
1668 constr
->width
.SetDone(TRUE
);
1672 constr
->height
.SetValue(h
);
1673 constr
->height
.SetDone(TRUE
);
1678 void wxWindowBase::MoveConstraint(int x
, int y
)
1680 wxLayoutConstraints
*constr
= GetConstraints();
1685 constr
->left
.SetValue(x
);
1686 constr
->left
.SetDone(TRUE
);
1690 constr
->top
.SetValue(y
);
1691 constr
->top
.SetDone(TRUE
);
1696 void wxWindowBase::GetSizeConstraint(int *w
, int *h
) const
1698 wxLayoutConstraints
*constr
= GetConstraints();
1701 *w
= constr
->width
.GetValue();
1702 *h
= constr
->height
.GetValue();
1708 void wxWindowBase::GetClientSizeConstraint(int *w
, int *h
) const
1710 wxLayoutConstraints
*constr
= GetConstraints();
1713 *w
= constr
->width
.GetValue();
1714 *h
= constr
->height
.GetValue();
1717 GetClientSize(w
, h
);
1720 void wxWindowBase::GetPositionConstraint(int *x
, int *y
) const
1722 wxLayoutConstraints
*constr
= GetConstraints();
1725 *x
= constr
->left
.GetValue();
1726 *y
= constr
->top
.GetValue();
1732 #endif // wxUSE_CONSTRAINTS
1734 void wxWindowBase::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
) const
1736 // don't do it for the dialogs/frames - they float independently of their
1738 if ( !IsTopLevel() )
1740 wxWindow
*parent
= GetParent();
1741 if ( !(sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) && parent
)
1743 wxPoint
pt(parent
->GetClientAreaOrigin());
1750 // ----------------------------------------------------------------------------
1751 // do Update UI processing for child controls
1752 // ----------------------------------------------------------------------------
1754 // TODO: should this be implemented for the child window rather
1755 // than the parent? Then you can override it e.g. for wxCheckBox
1756 // to do the Right Thing rather than having to assume a fixed number
1757 // of control classes.
1758 void wxWindowBase::UpdateWindowUI()
1761 wxUpdateUIEvent
event(GetId());
1762 event
.m_eventObject
= this;
1764 if ( GetEventHandler()->ProcessEvent(event
) )
1766 if ( event
.GetSetEnabled() )
1767 Enable(event
.GetEnabled());
1769 if ( event
.GetSetText() )
1771 wxControl
*control
= wxDynamicCastThis(wxControl
);
1775 wxTextCtrl
*text
= wxDynamicCast(control
, wxTextCtrl
);
1778 if ( event
.GetText() != text
->GetValue() )
1779 text
->SetValue(event
.GetText());
1782 #endif // wxUSE_TEXTCTRL
1784 if ( event
.GetText() != control
->GetLabel() )
1785 control
->SetLabel(event
.GetText());
1791 wxCheckBox
*checkbox
= wxDynamicCastThis(wxCheckBox
);
1794 if ( event
.GetSetChecked() )
1795 checkbox
->SetValue(event
.GetChecked());
1797 #endif // wxUSE_CHECKBOX
1800 wxRadioButton
*radiobtn
= wxDynamicCastThis(wxRadioButton
);
1803 if ( event
.GetSetChecked() )
1804 radiobtn
->SetValue(event
.GetChecked());
1806 #endif // wxUSE_RADIOBTN
1808 #endif // wxUSE_CONTROLS
1811 // ----------------------------------------------------------------------------
1812 // dialog units translations
1813 // ----------------------------------------------------------------------------
1815 wxPoint
wxWindowBase::ConvertPixelsToDialog(const wxPoint
& pt
)
1817 int charWidth
= GetCharWidth();
1818 int charHeight
= GetCharHeight();
1819 wxPoint
pt2(-1, -1);
1821 pt2
.x
= (int) ((pt
.x
* 4) / charWidth
) ;
1823 pt2
.y
= (int) ((pt
.y
* 8) / charHeight
) ;
1828 wxPoint
wxWindowBase::ConvertDialogToPixels(const wxPoint
& pt
)
1830 int charWidth
= GetCharWidth();
1831 int charHeight
= GetCharHeight();
1832 wxPoint
pt2(-1, -1);
1834 pt2
.x
= (int) ((pt
.x
* charWidth
) / 4) ;
1836 pt2
.y
= (int) ((pt
.y
* charHeight
) / 8) ;
1841 // ----------------------------------------------------------------------------
1843 // ----------------------------------------------------------------------------
1845 // propagate the colour change event to the subwindows
1846 void wxWindowBase::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1848 wxWindowList::Node
*node
= GetChildren().GetFirst();
1851 // Only propagate to non-top-level windows
1852 wxWindow
*win
= node
->GetData();
1853 if ( !win
->IsTopLevel() )
1855 wxSysColourChangedEvent event2
;
1856 event
.m_eventObject
= win
;
1857 win
->GetEventHandler()->ProcessEvent(event2
);
1860 node
= node
->GetNext();
1864 // the default action is to populate dialog with data when it's created
1865 void wxWindowBase::OnInitDialog( wxInitDialogEvent
&WXUNUSED(event
) )
1867 TransferDataToWindow();
1870 // process Ctrl-Alt-mclick
1871 void wxWindowBase::OnMiddleClick( wxMouseEvent
& event
)
1874 if ( event
.ControlDown() && event
.AltDown() )
1876 // don't translate these strings
1879 #ifdef __WXUNIVERSAL__
1881 #endif // __WXUNIVERSAL__
1883 switch ( wxGetOsVersion() )
1885 case wxMOTIF_X
: port
+= _T("Motif"); break;
1887 case wxMAC_DARWIN
: port
+= _T("Mac"); break;
1888 case wxBEOS
: port
+= _T("BeOS"); break;
1892 case wxGTK_BEOS
: port
+= _T("GTK"); break;
1898 case wxWIN386
: port
+= _T("MS Windows"); break;
1902 case wxMGL_OS2
: port
+= _T("MGL"); break;
1904 case wxOS2_PM
: port
+= _T("OS/2"); break;
1905 default: port
+= _T("unknown"); break;
1908 wxMessageBox(wxString::Format(
1910 " wxWindows Library (%s port)\nVersion %u.%u.%u%s, compiled at %s %s\n Copyright (c) 1995-2002 wxWindows team"
1924 _T("wxWindows information"),
1925 wxICON_INFORMATION
| wxOK
,
1929 #endif // wxUSE_MSGDLG
1935 // ----------------------------------------------------------------------------
1936 // list classes implementation
1937 // ----------------------------------------------------------------------------
1939 void wxWindowListNode::DeleteData()
1941 delete (wxWindow
*)GetData();
1944 // ----------------------------------------------------------------------------
1946 // ----------------------------------------------------------------------------
1948 wxBorder
wxWindowBase::GetBorder() const
1950 wxBorder border
= (wxBorder
)(m_windowStyle
& wxBORDER_MASK
);
1951 if ( border
== wxBORDER_DEFAULT
)
1953 border
= GetDefaultBorder();
1959 wxBorder
wxWindowBase::GetDefaultBorder() const
1961 return wxBORDER_NONE
;
1964 // ----------------------------------------------------------------------------
1966 // ----------------------------------------------------------------------------
1968 wxHitTest
wxWindowBase::DoHitTest(wxCoord x
, wxCoord y
) const
1970 // here we just check if the point is inside the window or not
1972 // check the top and left border first
1973 bool outside
= x
< 0 || y
< 0;
1976 // check the right and bottom borders too
1977 wxSize size
= GetSize();
1978 outside
= x
>= size
.x
|| y
>= size
.y
;
1981 return outside
? wxHT_WINDOW_OUTSIDE
: wxHT_WINDOW_INSIDE
;
1984 // ----------------------------------------------------------------------------
1986 // ----------------------------------------------------------------------------
1988 struct WXDLLEXPORT wxWindowNext
1992 } *wxWindowBase::ms_winCaptureNext
= NULL
;
1994 void wxWindowBase::CaptureMouse()
1996 wxLogTrace(_T("mousecapture"), _T("CaptureMouse(%p)"), this);
1998 wxWindow
*winOld
= GetCapture();
2001 ((wxWindowBase
*) winOld
)->DoReleaseMouse();
2004 wxWindowNext
*item
= new wxWindowNext
;
2006 item
->next
= ms_winCaptureNext
;
2007 ms_winCaptureNext
= item
;
2009 //else: no mouse capture to save
2014 void wxWindowBase::ReleaseMouse()
2016 wxLogTrace(_T("mousecapture"), _T("ReleaseMouse(%p)"), this);
2018 wxASSERT_MSG( GetCapture() == this, wxT("attempt to release mouse, but this window hasn't captured it") );
2022 if ( ms_winCaptureNext
)
2024 ((wxWindowBase
*)ms_winCaptureNext
->win
)->DoCaptureMouse();
2026 wxWindowNext
*item
= ms_winCaptureNext
;
2027 ms_winCaptureNext
= item
->next
;
2030 //else: stack is empty, no previous capture
2032 wxLogTrace(_T("mousecapture"),
2033 _T("After ReleaseMouse() mouse is captured by %p"),
2037 // ----------------------------------------------------------------------------
2039 // ----------------------------------------------------------------------------
2041 wxWindow
* wxGetTopLevelParent(wxWindow
*win
)
2043 while ( win
&& !win
->IsTopLevel() )
2044 win
= win
->GetParent();