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 wxSize size
= DoGetBestSize();
451 // for compatibility with the old versions and because it really looks
452 // slightly more pretty like this, add a pad
458 //else: do nothing if we have no children
461 // return the size best suited for the current window
462 wxSize
wxWindowBase::DoGetBestSize() const
464 if ( GetChildren().GetCount() > 0 )
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 wxWindow
*win
= node
->GetData();
475 if ( win
->IsTopLevel()
477 || wxDynamicCast(win
, wxStatusBar
)
478 #endif // wxUSE_STATUSBAR
481 // dialogs and frames lie in different top level windows -
482 // don't deal with them here; as for the status bars, they
483 // don't lie in the client area at all
488 win
->GetPosition(&wx
, &wy
);
490 // if the window hadn't been positioned yet, assume that it is in
497 win
->GetSize(&ww
, &wh
);
498 if ( wx
+ ww
> maxX
)
500 if ( wy
+ wh
> maxY
)
504 return wxSize(maxX
, maxY
);
508 // for a generic window there is no natural best size - just use the
514 // by default the origin is not shifted
515 wxPoint
wxWindowBase::GetClientAreaOrigin() const
517 return wxPoint(0, 0);
520 // set the min/max size of the window
521 void wxWindowBase::SetSizeHints(int minW
, int minH
,
523 int WXUNUSED(incW
), int WXUNUSED(incH
))
531 void wxWindowBase::SetVirtualSizeHints( int minW
, int minH
,
534 m_minVirtualWidth
= minW
;
535 m_maxVirtualWidth
= maxW
;
536 m_minVirtualHeight
= minH
;
537 m_maxVirtualHeight
= maxH
;
539 SetVirtualSize( GetClientSize() );
542 void wxWindowBase::DoSetVirtualSize( int x
, int y
)
544 if( m_minVirtualWidth
!= -1 && m_minVirtualWidth
> x
) x
= m_minVirtualWidth
;
545 if( m_maxVirtualWidth
!= -1 && m_maxVirtualWidth
< x
) x
= m_maxVirtualWidth
;
546 if( m_minVirtualHeight
!= -1 && m_minVirtualHeight
> y
) y
= m_minVirtualHeight
;
547 if( m_maxVirtualHeight
!= -1 && m_maxVirtualHeight
< y
) y
= m_maxVirtualHeight
;
549 m_virtualSize
.SetWidth( x
);
550 m_virtualSize
.SetHeight( y
);
553 wxSize
wxWindowBase::DoGetVirtualSize() const
555 wxSize
s( GetClientSize() );
557 if( m_virtualSize
.GetWidth() != -1 )
558 s
.SetWidth( m_virtualSize
.GetWidth() );
559 if( m_virtualSize
.GetHeight() != -1 )
560 s
.SetHeight( m_virtualSize
.GetHeight() );
565 // ----------------------------------------------------------------------------
566 // show/hide/enable/disable the window
567 // ----------------------------------------------------------------------------
569 bool wxWindowBase::Show(bool show
)
571 if ( show
!= m_isShown
)
583 bool wxWindowBase::Enable(bool enable
)
585 if ( enable
!= m_isEnabled
)
587 m_isEnabled
= enable
;
596 // ----------------------------------------------------------------------------
598 // ----------------------------------------------------------------------------
600 bool wxWindowBase::IsTopLevel() const
605 // ----------------------------------------------------------------------------
606 // reparenting the window
607 // ----------------------------------------------------------------------------
609 void wxWindowBase::AddChild(wxWindowBase
*child
)
611 wxCHECK_RET( child
, wxT("can't add a NULL child") );
613 // this should never happen and it will lead to a crash later if it does
614 // because RemoveChild() will remove only one node from the children list
615 // and the other(s) one(s) will be left with dangling pointers in them
616 wxASSERT_MSG( !GetChildren().Find(child
), _T("AddChild() called twice") );
618 GetChildren().Append(child
);
619 child
->SetParent(this);
622 void wxWindowBase::RemoveChild(wxWindowBase
*child
)
624 wxCHECK_RET( child
, wxT("can't remove a NULL child") );
626 GetChildren().DeleteObject(child
);
627 child
->SetParent((wxWindow
*)NULL
);
630 bool wxWindowBase::Reparent(wxWindowBase
*newParent
)
632 wxWindow
*oldParent
= GetParent();
633 if ( newParent
== oldParent
)
639 // unlink this window from the existing parent.
642 oldParent
->RemoveChild(this);
646 wxTopLevelWindows
.DeleteObject(this);
649 // add it to the new one
652 newParent
->AddChild(this);
656 wxTopLevelWindows
.Append(this);
662 // ----------------------------------------------------------------------------
663 // event handler stuff
664 // ----------------------------------------------------------------------------
666 void wxWindowBase::PushEventHandler(wxEvtHandler
*handler
)
668 handler
->SetNextHandler(GetEventHandler());
669 SetEventHandler(handler
);
672 wxEvtHandler
*wxWindowBase::PopEventHandler(bool deleteHandler
)
674 wxEvtHandler
*handlerA
= GetEventHandler();
677 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
678 handlerA
->SetNextHandler((wxEvtHandler
*)NULL
);
679 SetEventHandler(handlerB
);
683 handlerA
= (wxEvtHandler
*)NULL
;
690 bool wxWindowBase::RemoveEventHandler(wxEvtHandler
*handler
)
692 wxCHECK_MSG( handler
, FALSE
, _T("RemoveEventHandler(NULL) called") );
694 wxEvtHandler
*handlerPrev
= NULL
,
695 *handlerCur
= GetEventHandler();
698 wxEvtHandler
*handlerNext
= handlerCur
->GetNextHandler();
700 if ( handlerCur
== handler
)
704 handlerPrev
->SetNextHandler(handlerNext
);
708 SetEventHandler(handlerNext
);
711 handler
->SetNextHandler(NULL
);
716 handlerPrev
= handlerCur
;
717 handlerCur
= handlerNext
;
720 wxFAIL_MSG( _T("where has the event handler gone?") );
725 // ----------------------------------------------------------------------------
727 // ----------------------------------------------------------------------------
729 bool wxWindowBase::SetBackgroundColour( const wxColour
&colour
)
731 if ( !colour
.Ok() || (colour
== m_backgroundColour
) )
734 m_backgroundColour
= colour
;
741 bool wxWindowBase::SetForegroundColour( const wxColour
&colour
)
743 if ( !colour
.Ok() || (colour
== m_foregroundColour
) )
746 m_foregroundColour
= colour
;
753 bool wxWindowBase::SetCursor(const wxCursor
& cursor
)
755 // setting an invalid cursor is ok, it means that we don't have any special
757 if ( m_cursor
== cursor
)
768 bool wxWindowBase::SetFont(const wxFont
& font
)
770 // don't try to set invalid font, always fall back to the default
771 const wxFont
& fontOk
= font
.Ok() ? font
: *wxSWISS_FONT
;
773 if ( fontOk
== m_font
)
788 void wxWindowBase::SetPalette(const wxPalette
& pal
)
790 m_hasCustomPalette
= TRUE
;
793 // VZ: can anyone explain me what do we do here?
794 wxWindowDC
d((wxWindow
*) this);
798 wxWindow
*wxWindowBase::GetAncestorWithCustomPalette() const
800 wxWindow
*win
= (wxWindow
*)this;
801 while ( win
&& !win
->HasCustomPalette() )
803 win
= win
->GetParent();
809 #endif // wxUSE_PALETTE
812 void wxWindowBase::SetCaret(wxCaret
*caret
)
823 wxASSERT_MSG( m_caret
->GetWindow() == this,
824 wxT("caret should be created associated to this window") );
827 #endif // wxUSE_CARET
830 // ----------------------------------------------------------------------------
832 // ----------------------------------------------------------------------------
834 void wxWindowBase::SetValidator(const wxValidator
& validator
)
836 if ( m_windowValidator
)
837 delete m_windowValidator
;
839 m_windowValidator
= (wxValidator
*)validator
.Clone();
841 if ( m_windowValidator
)
842 m_windowValidator
->SetWindow(this) ;
844 #endif // wxUSE_VALIDATORS
846 // ----------------------------------------------------------------------------
847 // update region stuff
848 // ----------------------------------------------------------------------------
850 wxRect
wxWindowBase::GetUpdateClientRect() const
852 wxRegion rgnUpdate
= GetUpdateRegion();
853 rgnUpdate
.Intersect(GetClientRect());
854 wxRect rectUpdate
= rgnUpdate
.GetBox();
855 wxPoint ptOrigin
= GetClientAreaOrigin();
856 rectUpdate
.x
-= ptOrigin
.x
;
857 rectUpdate
.y
-= ptOrigin
.y
;
862 bool wxWindowBase::IsExposed(int x
, int y
) const
864 return m_updateRegion
.Contains(x
, y
) != wxOutRegion
;
867 bool wxWindowBase::IsExposed(int x
, int y
, int w
, int h
) const
869 return m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
;
872 // ----------------------------------------------------------------------------
873 // find window by id or name
874 // ----------------------------------------------------------------------------
876 wxWindow
*wxWindowBase::FindWindow( long id
)
878 if ( id
== m_windowId
)
879 return (wxWindow
*)this;
881 wxWindowBase
*res
= (wxWindow
*)NULL
;
882 wxWindowList::Node
*node
;
883 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
885 wxWindowBase
*child
= node
->GetData();
886 res
= child
->FindWindow( id
);
889 return (wxWindow
*)res
;
892 wxWindow
*wxWindowBase::FindWindow( const wxString
& name
)
894 if ( name
== m_windowName
)
895 return (wxWindow
*)this;
897 wxWindowBase
*res
= (wxWindow
*)NULL
;
898 wxWindowList::Node
*node
;
899 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
901 wxWindow
*child
= node
->GetData();
902 res
= child
->FindWindow(name
);
905 return (wxWindow
*)res
;
908 // ----------------------------------------------------------------------------
909 // dialog oriented functions
910 // ----------------------------------------------------------------------------
912 void wxWindowBase::MakeModal(bool modal
)
914 // Disable all other windows
917 wxWindowList::Node
*node
= wxTopLevelWindows
.GetFirst();
920 wxWindow
*win
= node
->GetData();
924 node
= node
->GetNext();
929 bool wxWindowBase::Validate()
932 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
934 wxWindowList::Node
*node
;
935 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
937 wxWindowBase
*child
= node
->GetData();
938 wxValidator
*validator
= child
->GetValidator();
939 if ( validator
&& !validator
->Validate((wxWindow
*)this) )
944 if ( recurse
&& !child
->Validate() )
949 #endif // wxUSE_VALIDATORS
954 bool wxWindowBase::TransferDataToWindow()
957 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
959 wxWindowList::Node
*node
;
960 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
962 wxWindowBase
*child
= node
->GetData();
963 wxValidator
*validator
= child
->GetValidator();
964 if ( validator
&& !validator
->TransferToWindow() )
966 wxLogWarning(_("Could not transfer data to window"));
967 wxLog::FlushActive();
974 if ( !child
->TransferDataToWindow() )
976 // warning already given
981 #endif // wxUSE_VALIDATORS
986 bool wxWindowBase::TransferDataFromWindow()
989 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
991 wxWindowList::Node
*node
;
992 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
994 wxWindow
*child
= node
->GetData();
995 wxValidator
*validator
= child
->GetValidator();
996 if ( validator
&& !validator
->TransferFromWindow() )
998 // nop warning here because the application is supposed to give
999 // one itself - we don't know here what might have gone wrongly
1006 if ( !child
->TransferDataFromWindow() )
1008 // warning already given
1013 #endif // wxUSE_VALIDATORS
1018 void wxWindowBase::InitDialog()
1020 wxInitDialogEvent
event(GetId());
1021 event
.SetEventObject( this );
1022 GetEventHandler()->ProcessEvent(event
);
1025 // ----------------------------------------------------------------------------
1026 // context-sensitive help support
1027 // ----------------------------------------------------------------------------
1031 // associate this help text with this window
1032 void wxWindowBase::SetHelpText(const wxString
& text
)
1034 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1037 helpProvider
->AddHelp(this, text
);
1041 // associate this help text with all windows with the same id as this
1043 void wxWindowBase::SetHelpTextForId(const wxString
& text
)
1045 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1048 helpProvider
->AddHelp(GetId(), text
);
1052 // get the help string associated with this window (may be empty)
1053 wxString
wxWindowBase::GetHelpText() const
1056 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1059 text
= helpProvider
->GetHelp(this);
1065 // show help for this window
1066 void wxWindowBase::OnHelp(wxHelpEvent
& event
)
1068 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
1071 if ( helpProvider
->ShowHelp(this) )
1073 // skip the event.Skip() below
1081 #endif // wxUSE_HELP
1083 // ----------------------------------------------------------------------------
1084 // tooltipsroot.Replace("\\", "/");
1085 // ----------------------------------------------------------------------------
1089 void wxWindowBase::SetToolTip( const wxString
&tip
)
1091 // don't create the new tooltip if we already have one
1094 m_tooltip
->SetTip( tip
);
1098 SetToolTip( new wxToolTip( tip
) );
1101 // setting empty tooltip text does not remove the tooltip any more - use
1102 // SetToolTip((wxToolTip *)NULL) for this
1105 void wxWindowBase::DoSetToolTip(wxToolTip
*tooltip
)
1110 m_tooltip
= tooltip
;
1113 #endif // wxUSE_TOOLTIPS
1115 // ----------------------------------------------------------------------------
1116 // constraints and sizers
1117 // ----------------------------------------------------------------------------
1119 #if wxUSE_CONSTRAINTS
1121 void wxWindowBase::SetConstraints( wxLayoutConstraints
*constraints
)
1123 if ( m_constraints
)
1125 UnsetConstraints(m_constraints
);
1126 delete m_constraints
;
1128 m_constraints
= constraints
;
1129 if ( m_constraints
)
1131 // Make sure other windows know they're part of a 'meaningful relationship'
1132 if ( m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this) )
1133 m_constraints
->left
.GetOtherWindow()->AddConstraintReference(this);
1134 if ( m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this) )
1135 m_constraints
->top
.GetOtherWindow()->AddConstraintReference(this);
1136 if ( m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this) )
1137 m_constraints
->right
.GetOtherWindow()->AddConstraintReference(this);
1138 if ( m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this) )
1139 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference(this);
1140 if ( m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this) )
1141 m_constraints
->width
.GetOtherWindow()->AddConstraintReference(this);
1142 if ( m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this) )
1143 m_constraints
->height
.GetOtherWindow()->AddConstraintReference(this);
1144 if ( m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this) )
1145 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference(this);
1146 if ( m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this) )
1147 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference(this);
1151 // This removes any dangling pointers to this window in other windows'
1152 // constraintsInvolvedIn lists.
1153 void wxWindowBase::UnsetConstraints(wxLayoutConstraints
*c
)
1157 if ( c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1158 c
->left
.GetOtherWindow()->RemoveConstraintReference(this);
1159 if ( c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1160 c
->top
.GetOtherWindow()->RemoveConstraintReference(this);
1161 if ( c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this) )
1162 c
->right
.GetOtherWindow()->RemoveConstraintReference(this);
1163 if ( c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this) )
1164 c
->bottom
.GetOtherWindow()->RemoveConstraintReference(this);
1165 if ( c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this) )
1166 c
->width
.GetOtherWindow()->RemoveConstraintReference(this);
1167 if ( c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this) )
1168 c
->height
.GetOtherWindow()->RemoveConstraintReference(this);
1169 if ( c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this) )
1170 c
->centreX
.GetOtherWindow()->RemoveConstraintReference(this);
1171 if ( c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this) )
1172 c
->centreY
.GetOtherWindow()->RemoveConstraintReference(this);
1176 // Back-pointer to other windows we're involved with, so if we delete this
1177 // window, we must delete any constraints we're involved with.
1178 void wxWindowBase::AddConstraintReference(wxWindowBase
*otherWin
)
1180 if ( !m_constraintsInvolvedIn
)
1181 m_constraintsInvolvedIn
= new wxWindowList
;
1182 if ( !m_constraintsInvolvedIn
->Find(otherWin
) )
1183 m_constraintsInvolvedIn
->Append(otherWin
);
1186 // REMOVE back-pointer to other windows we're involved with.
1187 void wxWindowBase::RemoveConstraintReference(wxWindowBase
*otherWin
)
1189 if ( m_constraintsInvolvedIn
)
1190 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
1193 // Reset any constraints that mention this window
1194 void wxWindowBase::DeleteRelatedConstraints()
1196 if ( m_constraintsInvolvedIn
)
1198 wxWindowList::Node
*node
= m_constraintsInvolvedIn
->GetFirst();
1201 wxWindow
*win
= node
->GetData();
1202 wxLayoutConstraints
*constr
= win
->GetConstraints();
1204 // Reset any constraints involving this window
1207 constr
->left
.ResetIfWin(this);
1208 constr
->top
.ResetIfWin(this);
1209 constr
->right
.ResetIfWin(this);
1210 constr
->bottom
.ResetIfWin(this);
1211 constr
->width
.ResetIfWin(this);
1212 constr
->height
.ResetIfWin(this);
1213 constr
->centreX
.ResetIfWin(this);
1214 constr
->centreY
.ResetIfWin(this);
1217 wxWindowList::Node
*next
= node
->GetNext();
1222 delete m_constraintsInvolvedIn
;
1223 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
1228 void wxWindowBase::SetSizer(wxSizer
*sizer
, bool deleteOld
)
1230 if (m_windowSizer
&& deleteOld
) delete m_windowSizer
;
1232 m_windowSizer
= sizer
;
1234 SetAutoLayout( sizer
!= 0 );
1237 void wxWindowBase::SetSizerAndFit(wxSizer
*sizer
, bool deleteOld
)
1239 SetSizer( sizer
, deleteOld
);
1240 sizer
->SetSizeHints( (wxWindow
*) this );
1243 bool wxWindowBase::Layout()
1245 // If there is a sizer, use it instead of the constraints
1249 GetVirtualSize(&w
, &h
);
1250 GetSizer()->SetDimension( 0, 0, w
, h
);
1252 #if wxUSE_CONSTRAINTS
1255 wxLayoutConstraints
*constr
= GetConstraints();
1256 bool wasOk
= constr
&& constr
->AreSatisfied();
1258 ResetConstraints(); // Mark all constraints as unevaluated
1260 // if we're a top level panel (i.e. our parent is frame/dialog), our
1261 // own constraints will never be satisfied any more unless we do it
1266 while ( noChanges
> 0 )
1268 constr
->SatisfyConstraints(this, &noChanges
);
1272 DoPhase(1); // Layout children
1273 DoPhase(2); // Layout grand children
1274 SetConstraintSizes(); // Recursively set the real window sizes
1281 #if wxUSE_CONSTRAINTS
1282 // Do a phase of evaluating constraints: the default behaviour. wxSizers may
1283 // do a similar thing, but also impose their own 'constraints' and order the
1284 // evaluation differently.
1285 bool wxWindowBase::LayoutPhase1(int *noChanges
)
1287 wxLayoutConstraints
*constr
= GetConstraints();
1290 return constr
->SatisfyConstraints(this, noChanges
);
1296 bool wxWindowBase::LayoutPhase2(int *noChanges
)
1306 // Do a phase of evaluating child constraints
1307 bool wxWindowBase::DoPhase(int phase
)
1309 int noIterations
= 0;
1310 int maxIterations
= 500;
1313 wxWindowList succeeded
;
1314 while ((noChanges
> 0) && (noIterations
< maxIterations
))
1318 wxWindowList::Node
*node
= GetChildren().GetFirst();
1321 wxWindow
*child
= node
->GetData();
1322 if ( !child
->IsTopLevel() )
1324 wxLayoutConstraints
*constr
= child
->GetConstraints();
1327 if ( !succeeded
.Find(child
) )
1329 int tempNoChanges
= 0;
1330 bool success
= ( (phase
== 1) ? child
->LayoutPhase1(&tempNoChanges
) : child
->LayoutPhase2(&tempNoChanges
) ) ;
1331 noChanges
+= tempNoChanges
;
1334 succeeded
.Append(child
);
1339 node
= node
->GetNext();
1348 void wxWindowBase::ResetConstraints()
1350 wxLayoutConstraints
*constr
= GetConstraints();
1353 constr
->left
.SetDone(FALSE
);
1354 constr
->top
.SetDone(FALSE
);
1355 constr
->right
.SetDone(FALSE
);
1356 constr
->bottom
.SetDone(FALSE
);
1357 constr
->width
.SetDone(FALSE
);
1358 constr
->height
.SetDone(FALSE
);
1359 constr
->centreX
.SetDone(FALSE
);
1360 constr
->centreY
.SetDone(FALSE
);
1363 wxWindowList::Node
*node
= GetChildren().GetFirst();
1366 wxWindow
*win
= node
->GetData();
1367 if ( !win
->IsTopLevel() )
1368 win
->ResetConstraints();
1369 node
= node
->GetNext();
1373 // Need to distinguish between setting the 'fake' size for windows and sizers,
1374 // and setting the real values.
1375 void wxWindowBase::SetConstraintSizes(bool recurse
)
1377 wxLayoutConstraints
*constr
= GetConstraints();
1378 if ( constr
&& constr
->AreSatisfied() )
1380 int x
= constr
->left
.GetValue();
1381 int y
= constr
->top
.GetValue();
1382 int w
= constr
->width
.GetValue();
1383 int h
= constr
->height
.GetValue();
1385 if ( (constr
->width
.GetRelationship() != wxAsIs
) ||
1386 (constr
->height
.GetRelationship() != wxAsIs
) )
1388 SetSize(x
, y
, w
, h
);
1392 // If we don't want to resize this window, just move it...
1398 wxLogDebug(wxT("Constraints not satisfied for %s named '%s'."),
1399 GetClassInfo()->GetClassName(),
1405 wxWindowList::Node
*node
= GetChildren().GetFirst();
1408 wxWindow
*win
= node
->GetData();
1409 if ( !win
->IsTopLevel() && win
->GetConstraints() )
1410 win
->SetConstraintSizes();
1411 node
= node
->GetNext();
1416 // Only set the size/position of the constraint (if any)
1417 void wxWindowBase::SetSizeConstraint(int x
, int y
, int w
, int h
)
1419 wxLayoutConstraints
*constr
= GetConstraints();
1424 constr
->left
.SetValue(x
);
1425 constr
->left
.SetDone(TRUE
);
1429 constr
->top
.SetValue(y
);
1430 constr
->top
.SetDone(TRUE
);
1434 constr
->width
.SetValue(w
);
1435 constr
->width
.SetDone(TRUE
);
1439 constr
->height
.SetValue(h
);
1440 constr
->height
.SetDone(TRUE
);
1445 void wxWindowBase::MoveConstraint(int x
, int y
)
1447 wxLayoutConstraints
*constr
= GetConstraints();
1452 constr
->left
.SetValue(x
);
1453 constr
->left
.SetDone(TRUE
);
1457 constr
->top
.SetValue(y
);
1458 constr
->top
.SetDone(TRUE
);
1463 void wxWindowBase::GetSizeConstraint(int *w
, int *h
) const
1465 wxLayoutConstraints
*constr
= GetConstraints();
1468 *w
= constr
->width
.GetValue();
1469 *h
= constr
->height
.GetValue();
1475 void wxWindowBase::GetClientSizeConstraint(int *w
, int *h
) const
1477 wxLayoutConstraints
*constr
= GetConstraints();
1480 *w
= constr
->width
.GetValue();
1481 *h
= constr
->height
.GetValue();
1484 GetClientSize(w
, h
);
1487 void wxWindowBase::GetPositionConstraint(int *x
, int *y
) const
1489 wxLayoutConstraints
*constr
= GetConstraints();
1492 *x
= constr
->left
.GetValue();
1493 *y
= constr
->top
.GetValue();
1499 #endif // wxUSE_CONSTRAINTS
1501 void wxWindowBase::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
) const
1503 // don't do it for the dialogs/frames - they float independently of their
1505 if ( !IsTopLevel() )
1507 wxWindow
*parent
= GetParent();
1508 if ( !(sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) && parent
)
1510 wxPoint
pt(parent
->GetClientAreaOrigin());
1517 // ----------------------------------------------------------------------------
1518 // do Update UI processing for child controls
1519 // ----------------------------------------------------------------------------
1521 // TODO: should this be implemented for the child window rather
1522 // than the parent? Then you can override it e.g. for wxCheckBox
1523 // to do the Right Thing rather than having to assume a fixed number
1524 // of control classes.
1525 void wxWindowBase::UpdateWindowUI()
1528 wxUpdateUIEvent
event(GetId());
1529 event
.m_eventObject
= this;
1531 if ( GetEventHandler()->ProcessEvent(event
) )
1533 if ( event
.GetSetEnabled() )
1534 Enable(event
.GetEnabled());
1536 if ( event
.GetSetText() )
1538 wxControl
*control
= wxDynamicCastThis(wxControl
);
1542 wxTextCtrl
*text
= wxDynamicCast(control
, wxTextCtrl
);
1544 text
->SetValue(event
.GetText());
1546 #endif // wxUSE_TEXTCTRL
1547 control
->SetLabel(event
.GetText());
1552 wxCheckBox
*checkbox
= wxDynamicCastThis(wxCheckBox
);
1555 if ( event
.GetSetChecked() )
1556 checkbox
->SetValue(event
.GetChecked());
1558 #endif // wxUSE_CHECKBOX
1561 wxRadioButton
*radiobtn
= wxDynamicCastThis(wxRadioButton
);
1564 if ( event
.GetSetChecked() )
1565 radiobtn
->SetValue(event
.GetChecked());
1567 #endif // wxUSE_RADIOBTN
1569 #endif // wxUSE_CONTROLS
1572 // ----------------------------------------------------------------------------
1573 // dialog units translations
1574 // ----------------------------------------------------------------------------
1576 wxPoint
wxWindowBase::ConvertPixelsToDialog(const wxPoint
& pt
)
1578 int charWidth
= GetCharWidth();
1579 int charHeight
= GetCharHeight();
1580 wxPoint
pt2(-1, -1);
1582 pt2
.x
= (int) ((pt
.x
* 4) / charWidth
) ;
1584 pt2
.y
= (int) ((pt
.y
* 8) / charHeight
) ;
1589 wxPoint
wxWindowBase::ConvertDialogToPixels(const wxPoint
& pt
)
1591 int charWidth
= GetCharWidth();
1592 int charHeight
= GetCharHeight();
1593 wxPoint
pt2(-1, -1);
1595 pt2
.x
= (int) ((pt
.x
* charWidth
) / 4) ;
1597 pt2
.y
= (int) ((pt
.y
* charHeight
) / 8) ;
1602 // ----------------------------------------------------------------------------
1604 // ----------------------------------------------------------------------------
1606 // propagate the colour change event to the subwindows
1607 void wxWindowBase::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1609 wxWindowList::Node
*node
= GetChildren().GetFirst();
1612 // Only propagate to non-top-level windows
1613 wxWindow
*win
= node
->GetData();
1614 if ( !win
->IsTopLevel() )
1616 wxSysColourChangedEvent event2
;
1617 event
.m_eventObject
= win
;
1618 win
->GetEventHandler()->ProcessEvent(event2
);
1621 node
= node
->GetNext();
1625 // the default action is to populate dialog with data when it's created
1626 void wxWindowBase::OnInitDialog( wxInitDialogEvent
&WXUNUSED(event
) )
1628 TransferDataToWindow();
1631 // process Ctrl-Alt-mclick
1632 void wxWindowBase::OnMiddleClick( wxMouseEvent
& event
)
1635 if ( event
.ControlDown() && event
.AltDown() )
1637 // don't translate these strings
1640 #ifdef __WXUNIVERSAL__
1642 #endif // __WXUNIVERSAL__
1644 switch ( wxGetOsVersion() )
1646 case wxMOTIF_X
: port
= _T("Motif"); break;
1648 case wxMAC_DARWIN
: port
= _T("Mac"); break;
1649 case wxBEOS
: port
= _T("BeOS"); break;
1653 case wxGTK_BEOS
: port
= _T("GTK"); break;
1659 case wxWIN386
: port
= _T("MS Windows"); break;
1663 case wxMGL_OS2
: port
= _T("MGL"); break;
1665 case wxOS2_PM
: port
= _T("OS/2"); break;
1666 default: port
= _T("unknown"); break;
1669 wxMessageBox(wxString::Format(
1671 " wxWindows Library (%s port)\nVersion %u.%u.%u%s, compiled at %s %s\n Copyright (c) 1995-2002 wxWindows team"
1685 _T("wxWindows information"),
1686 wxICON_INFORMATION
| wxOK
,
1690 #endif // wxUSE_MSGDLG
1696 // ----------------------------------------------------------------------------
1697 // list classes implementation
1698 // ----------------------------------------------------------------------------
1700 void wxWindowListNode::DeleteData()
1702 delete (wxWindow
*)GetData();
1705 // ----------------------------------------------------------------------------
1707 // ----------------------------------------------------------------------------
1709 wxBorder
wxWindowBase::GetBorder() const
1711 wxBorder border
= (wxBorder
)(m_windowStyle
& wxBORDER_MASK
);
1712 if ( border
== wxBORDER_DEFAULT
)
1714 border
= GetDefaultBorder();
1720 wxBorder
wxWindowBase::GetDefaultBorder() const
1722 return wxBORDER_NONE
;
1725 // ----------------------------------------------------------------------------
1727 // ----------------------------------------------------------------------------
1729 wxHitTest
wxWindowBase::DoHitTest(wxCoord x
, wxCoord y
) const
1731 // here we just check if the point is inside the window or not
1733 // check the top and left border first
1734 bool outside
= x
< 0 || y
< 0;
1737 // check the right and bottom borders too
1738 wxSize size
= GetSize();
1739 outside
= x
>= size
.x
|| y
>= size
.y
;
1742 return outside
? wxHT_WINDOW_OUTSIDE
: wxHT_WINDOW_INSIDE
;
1745 // ----------------------------------------------------------------------------
1747 // ----------------------------------------------------------------------------
1749 struct WXDLLEXPORT wxWindowNext
1753 } *wxWindowBase::ms_winCaptureNext
= NULL
;
1755 void wxWindowBase::CaptureMouse()
1757 wxLogTrace(_T("mousecapture"), _T("CaptureMouse(0x%08x)"), this);
1759 wxWindow
*winOld
= GetCapture();
1762 ((wxWindowBase
*) winOld
)->DoReleaseMouse();
1765 wxWindowNext
*item
= new wxWindowNext
;
1767 item
->next
= ms_winCaptureNext
;
1768 ms_winCaptureNext
= item
;
1770 //else: no mouse capture to save
1775 void wxWindowBase::ReleaseMouse()
1777 wxLogTrace(_T("mousecapture"), _T("ReleaseMouse(0x%08x)"), this);
1779 wxASSERT_MSG( GetCapture() == this, wxT("attempt to release mouse, but this window hasn't captured it") )
1783 if ( ms_winCaptureNext
)
1785 ((wxWindowBase
*)ms_winCaptureNext
->win
)->DoCaptureMouse();
1787 wxWindowNext
*item
= ms_winCaptureNext
;
1788 ms_winCaptureNext
= item
->next
;
1791 //else: stack is empty, no previous capture
1793 wxLogTrace(_T("mousecapture"),
1794 _T("After ReleaseMouse() mouse is captured by 0x%08x"),
1798 // ----------------------------------------------------------------------------
1800 // ----------------------------------------------------------------------------
1802 wxWindow
* wxGetTopLevelParent(wxWindow
*win
)
1804 while ( win
&& !win
->IsTopLevel() )
1805 win
= win
->GetParent();