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"
51 #endif // wxUSE_CONSTRAINTS
53 #if wxUSE_DRAG_AND_DROP
55 #endif // wxUSE_DRAG_AND_DROP
58 #include "wx/cshelp.h"
62 #include "wx/tooltip.h"
63 #endif // wxUSE_TOOLTIPS
69 // ----------------------------------------------------------------------------
71 // ----------------------------------------------------------------------------
73 int wxWindowBase::ms_lastControlId
= -200;
75 IMPLEMENT_ABSTRACT_CLASS(wxWindowBase
, wxEvtHandler
)
77 // ----------------------------------------------------------------------------
79 // ----------------------------------------------------------------------------
81 BEGIN_EVENT_TABLE(wxWindowBase
, wxEvtHandler
)
82 EVT_SYS_COLOUR_CHANGED(wxWindowBase::OnSysColourChanged
)
83 EVT_INIT_DIALOG(wxWindowBase::OnInitDialog
)
84 EVT_MIDDLE_DOWN(wxWindowBase::OnMiddleClick
)
87 EVT_HELP(-1, wxWindowBase::OnHelp
)
92 // ============================================================================
93 // implementation of the common functionality of the wxWindow class
94 // ============================================================================
96 // ----------------------------------------------------------------------------
98 // ----------------------------------------------------------------------------
100 // the default initialization
101 void wxWindowBase::InitBase()
103 // no window yet, no parent nor children
104 m_parent
= (wxWindow
*)NULL
;
106 m_children
.DeleteContents( FALSE
); // don't auto delete node data
108 // no constraints on the minimal window size
114 // window is created enabled but it's not visible yet
118 // the default event handler is just this window
119 m_eventHandler
= this;
123 m_windowValidator
= (wxValidator
*) NULL
;
124 #endif // wxUSE_VALIDATORS
126 // use the system default colours
127 m_backgroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
);
128 m_foregroundColour
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
130 // don't set the font here for wxMSW as we don't call WM_SETFONT here and
131 // so the font is *not* really set - but calls to SetFont() later won't do
132 // anything because m_font appears to be already set!
134 m_font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
137 // the colours/fonts are default for now
146 // an optimization for the event processing: checking this flag is much
147 // faster than using IsKindOf(CLASSINFO(wxWindow))
150 #if wxUSE_CONSTRAINTS
151 // no constraints whatsoever
152 m_constraints
= (wxLayoutConstraints
*) NULL
;
153 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
154 m_windowSizer
= (wxSizer
*) NULL
;
155 m_autoLayout
= FALSE
;
156 #endif // wxUSE_CONSTRAINTS
158 #if wxUSE_DRAG_AND_DROP
159 m_dropTarget
= (wxDropTarget
*)NULL
;
160 #endif // wxUSE_DRAG_AND_DROP
163 m_tooltip
= (wxToolTip
*)NULL
;
164 #endif // wxUSE_TOOLTIPS
167 m_caret
= (wxCaret
*)NULL
;
168 #endif // wxUSE_CARET
170 // Whether we're using the current theme for this window (wxGTK only for now)
171 m_themeEnabled
= FALSE
;
174 // common part of window creation process
175 bool wxWindowBase::CreateBase(wxWindowBase
*parent
,
177 const wxPoint
& WXUNUSED(pos
),
178 const wxSize
& WXUNUSED(size
),
180 const wxValidator
& validator
,
181 const wxString
& name
)
183 // m_isWindow is set to TRUE in wxWindowBase::Init() as well as many other
184 // member variables - check that it has been called (will catch the case
185 // when a new ctor is added which doesn't call InitWindow)
186 wxASSERT_MSG( m_isWindow
, wxT("Init() must have been called before!") );
188 // generate a new id if the user doesn't care about it
189 m_windowId
= id
== -1 ? NewControlId() : id
;
192 SetWindowStyleFlag(style
);
196 SetValidator(validator
);
197 #endif // wxUSE_VALIDATORS
199 // if the parent window has wxWS_EX_VALIDATE_RECURSIVELY set, we want to
200 // have it too - like this it's possible to set it only in the top level
201 // dialog/frame and all children will inherit it by defult
202 if ( parent
&& (parent
->GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) )
204 SetExtraStyle(wxWS_EX_VALIDATE_RECURSIVELY
);
210 // ----------------------------------------------------------------------------
212 // ----------------------------------------------------------------------------
215 wxWindowBase::~wxWindowBase()
217 wxASSERT_MSG( GetCapture() != this, wxT("attempt to destroy window with mouse capture") );
219 // FIXME if these 2 cases result from programming errors in the user code
220 // we should probably assert here instead of silently fixing them
222 // Just in case the window has been Closed, but we're then deleting
223 // immediately: don't leave dangling pointers.
224 wxPendingDelete
.DeleteObject(this);
226 // Just in case we've loaded a top-level window via LoadNativeDialog but
227 // we weren't a dialog class
228 wxTopLevelWindows
.DeleteObject(this);
230 wxASSERT_MSG( GetChildren().GetCount() == 0, wxT("children not destroyed") );
235 #endif // wxUSE_CARET
238 if ( m_windowValidator
)
239 delete m_windowValidator
;
240 #endif // wxUSE_VALIDATORS
242 #if wxUSE_CONSTRAINTS
243 // Have to delete constraints/sizer FIRST otherwise sizers may try to look
244 // at deleted windows as they delete themselves.
245 DeleteRelatedConstraints();
249 // This removes any dangling pointers to this window in other windows'
250 // constraintsInvolvedIn lists.
251 UnsetConstraints(m_constraints
);
252 delete m_constraints
;
253 m_constraints
= NULL
;
257 delete m_windowSizer
;
259 #endif // wxUSE_CONSTRAINTS
261 #if wxUSE_DRAG_AND_DROP
264 #endif // wxUSE_DRAG_AND_DROP
269 #endif // wxUSE_TOOLTIPS
271 // reset the dangling pointer our parent window may keep to us
272 if ( m_parent
&& m_parent
->GetDefaultItem() == this )
274 m_parent
->SetDefaultItem(NULL
);
278 bool wxWindowBase::Destroy()
285 bool wxWindowBase::Close(bool force
)
287 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
288 event
.SetEventObject(this);
289 #if WXWIN_COMPATIBILITY
290 event
.SetForce(force
);
291 #endif // WXWIN_COMPATIBILITY
292 event
.SetCanVeto(!force
);
294 // return FALSE if window wasn't closed because the application vetoed the
296 return GetEventHandler()->ProcessEvent(event
) && !event
.GetVeto();
299 bool wxWindowBase::DestroyChildren()
301 wxWindowList::Node
*node
;
304 // we iterate until the list becomes empty
305 node
= GetChildren().GetFirst();
309 wxWindow
*child
= node
->GetData();
311 wxASSERT_MSG( child
, wxT("children list contains empty nodes") );
316 wxASSERT_MSG( !GetChildren().Find(child
),
317 wxT("child didn't remove itself using RemoveChild()") );
323 // ----------------------------------------------------------------------------
324 // size/position related methods
325 // ----------------------------------------------------------------------------
327 // centre the window with respect to its parent in either (or both) directions
328 void wxWindowBase::Centre(int direction
)
330 // the position/size of the parent window or of the entire screen
332 int widthParent
, heightParent
;
334 wxWindow
*parent
= NULL
;
336 if ( !(direction
& wxCENTRE_ON_SCREEN
) )
338 // find the parent to centre this window on: it should be the
339 // immediate parent for the controls but the top level parent for the
340 // top level windows (like dialogs)
341 parent
= GetParent();
344 while ( parent
&& !parent
->IsTopLevel() )
346 parent
= parent
->GetParent();
350 // did we find the parent?
354 direction
|= wxCENTRE_ON_SCREEN
;
358 if ( direction
& wxCENTRE_ON_SCREEN
)
360 // centre with respect to the whole screen
361 wxDisplaySize(&widthParent
, &heightParent
);
367 // centre on the parent
368 parent
->GetSize(&widthParent
, &heightParent
);
370 // adjust to the parents position
371 posParent
= parent
->GetPosition();
375 // centre inside the parents client rectangle
376 parent
->GetClientSize(&widthParent
, &heightParent
);
381 GetSize(&width
, &height
);
386 if ( direction
& wxHORIZONTAL
)
387 xNew
= (widthParent
- width
)/2;
389 if ( direction
& wxVERTICAL
)
390 yNew
= (heightParent
- height
)/2;
395 // Base size of the visible dimensions of the display
396 // to take into account the taskbar
397 wxRect rect
= wxGetClientDisplayRect();
398 wxSize
size (rect
.width
,rect
.height
);
400 if (posParent
.x
>= 0) // if parent is on the main display
404 else if (xNew
+width
> size
.x
)
405 xNew
= size
.x
-width
-1;
407 if (posParent
.y
>= 0) // if parent is on the main display
409 if (yNew
+height
> size
.y
)
410 yNew
= size
.y
-height
-1;
412 // Make certain that the title bar is initially visible
413 // always, even if this would push the bottom of the
414 // dialog of the visible area of the display
419 // move the window to this position (keeping the old size but using
420 // SetSize() and not Move() to allow xNew and/or yNew to be -1)
421 SetSize(xNew
, yNew
, width
, height
, wxSIZE_ALLOW_MINUS_ONE
);
424 // fits the window around the children
425 void wxWindowBase::Fit()
427 if ( GetChildren().GetCount() > 0 )
429 wxSize size
= DoGetBestSize();
431 // for compatibility with the old versions and because it really looks
432 // slightly more pretty like this, add a pad
438 //else: do nothing if we have no children
441 // return the size best suited for the current window
442 wxSize
wxWindowBase::DoGetBestSize() const
444 if ( GetChildren().GetCount() > 0 )
446 // our minimal acceptable size is such that all our windows fit inside
450 for ( wxWindowList::Node
*node
= GetChildren().GetFirst();
452 node
= node
->GetNext() )
454 wxWindow
*win
= node
->GetData();
455 if ( win
->IsTopLevel()
457 || wxDynamicCast(win
, wxStatusBar
)
458 #endif // wxUSE_STATUSBAR
461 // dialogs and frames lie in different top level windows -
462 // don't deal with them here; as for the status bars, they
463 // don't lie in the client area at all
468 win
->GetPosition(&wx
, &wy
);
470 // if the window hadn't been positioned yet, assume that it is in
477 win
->GetSize(&ww
, &wh
);
478 if ( wx
+ ww
> maxX
)
480 if ( wy
+ wh
> maxY
)
484 return wxSize(maxX
, maxY
);
488 // for a generic window there is no natural best size - just use the
494 // by default the origin is not shifted
495 wxPoint
wxWindowBase::GetClientAreaOrigin() const
497 return wxPoint(0, 0);
500 // set the min/max size of the window
501 void wxWindowBase::SetSizeHints(int minW
, int minH
,
503 int WXUNUSED(incW
), int WXUNUSED(incH
))
511 // ----------------------------------------------------------------------------
512 // show/hide/enable/disable the window
513 // ----------------------------------------------------------------------------
515 bool wxWindowBase::Show(bool show
)
517 if ( show
!= m_isShown
)
529 bool wxWindowBase::Enable(bool enable
)
531 if ( enable
!= m_isEnabled
)
533 m_isEnabled
= enable
;
542 // ----------------------------------------------------------------------------
544 // ----------------------------------------------------------------------------
546 bool wxWindowBase::IsTopLevel() const
551 // ----------------------------------------------------------------------------
552 // reparenting the window
553 // ----------------------------------------------------------------------------
555 void wxWindowBase::AddChild(wxWindowBase
*child
)
557 wxCHECK_RET( child
, wxT("can't add a NULL child") );
559 // this should never happen and it will lead to a crash later if it does
560 // because RemoveChild() will remove only one node from the children list
561 // and the other(s) one(s) will be left with dangling pointers in them
562 wxASSERT_MSG( !GetChildren().Find(child
), _T("AddChild() called twice") );
564 GetChildren().Append(child
);
565 child
->SetParent(this);
568 void wxWindowBase::RemoveChild(wxWindowBase
*child
)
570 wxCHECK_RET( child
, wxT("can't remove a NULL child") );
572 GetChildren().DeleteObject(child
);
573 child
->SetParent((wxWindow
*)NULL
);
576 bool wxWindowBase::Reparent(wxWindowBase
*newParent
)
578 wxWindow
*oldParent
= GetParent();
579 if ( newParent
== oldParent
)
585 // unlink this window from the existing parent.
588 oldParent
->RemoveChild(this);
592 wxTopLevelWindows
.DeleteObject(this);
595 // add it to the new one
598 newParent
->AddChild(this);
602 wxTopLevelWindows
.Append(this);
608 // ----------------------------------------------------------------------------
609 // event handler stuff
610 // ----------------------------------------------------------------------------
612 void wxWindowBase::PushEventHandler(wxEvtHandler
*handler
)
614 handler
->SetNextHandler(GetEventHandler());
615 SetEventHandler(handler
);
618 wxEvtHandler
*wxWindowBase::PopEventHandler(bool deleteHandler
)
620 wxEvtHandler
*handlerA
= GetEventHandler();
623 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
624 handlerA
->SetNextHandler((wxEvtHandler
*)NULL
);
625 SetEventHandler(handlerB
);
629 handlerA
= (wxEvtHandler
*)NULL
;
636 // ----------------------------------------------------------------------------
638 // ----------------------------------------------------------------------------
640 bool wxWindowBase::SetBackgroundColour( const wxColour
&colour
)
642 if ( !colour
.Ok() || (colour
== m_backgroundColour
) )
645 m_backgroundColour
= colour
;
652 bool wxWindowBase::SetForegroundColour( const wxColour
&colour
)
654 if ( !colour
.Ok() || (colour
== m_foregroundColour
) )
657 m_foregroundColour
= colour
;
664 bool wxWindowBase::SetCursor(const wxCursor
& cursor
)
666 // setting an invalid cursor is ok, it means that we don't have any special
668 if ( m_cursor
== cursor
)
679 bool wxWindowBase::SetFont(const wxFont
& font
)
681 // don't try to set invalid font, always fall back to the default
682 const wxFont
& fontOk
= font
.Ok() ? font
: *wxSWISS_FONT
;
684 if ( fontOk
== m_font
)
698 void wxWindowBase::SetCaret(wxCaret
*caret
)
709 wxASSERT_MSG( m_caret
->GetWindow() == this,
710 wxT("caret should be created associated to this window") );
713 #endif // wxUSE_CARET
716 // ----------------------------------------------------------------------------
718 // ----------------------------------------------------------------------------
720 void wxWindowBase::SetValidator(const wxValidator
& validator
)
722 if ( m_windowValidator
)
723 delete m_windowValidator
;
725 m_windowValidator
= (wxValidator
*)validator
.Clone();
727 if ( m_windowValidator
)
728 m_windowValidator
->SetWindow(this) ;
730 #endif // wxUSE_VALIDATORS
732 // ----------------------------------------------------------------------------
733 // update region stuff
734 // ----------------------------------------------------------------------------
736 wxRect
wxWindowBase::GetUpdateClientRect() const
738 wxRegion rgnUpdate
= GetUpdateRegion();
739 rgnUpdate
.Intersect(GetClientRect());
740 wxRect rectUpdate
= rgnUpdate
.GetBox();
741 wxPoint ptOrigin
= GetClientAreaOrigin();
742 rectUpdate
.x
-= ptOrigin
.x
;
743 rectUpdate
.y
-= ptOrigin
.y
;
748 bool wxWindowBase::IsExposed(int x
, int y
) const
750 return m_updateRegion
.Contains(x
, y
) != wxOutRegion
;
753 bool wxWindowBase::IsExposed(int x
, int y
, int w
, int h
) const
755 return m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
;
758 // ----------------------------------------------------------------------------
759 // find window by id or name
760 // ----------------------------------------------------------------------------
762 wxWindow
*wxWindowBase::FindWindow( long id
)
764 if ( id
== m_windowId
)
765 return (wxWindow
*)this;
767 wxWindowBase
*res
= (wxWindow
*)NULL
;
768 wxWindowList::Node
*node
;
769 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
771 wxWindowBase
*child
= node
->GetData();
772 res
= child
->FindWindow( id
);
775 return (wxWindow
*)res
;
778 wxWindow
*wxWindowBase::FindWindow( const wxString
& name
)
780 if ( name
== m_windowName
)
781 return (wxWindow
*)this;
783 wxWindowBase
*res
= (wxWindow
*)NULL
;
784 wxWindowList::Node
*node
;
785 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
787 wxWindow
*child
= node
->GetData();
788 res
= child
->FindWindow(name
);
791 return (wxWindow
*)res
;
794 // ----------------------------------------------------------------------------
795 // dialog oriented functions
796 // ----------------------------------------------------------------------------
798 void wxWindowBase::MakeModal(bool modal
)
800 // Disable all other windows
803 wxWindowList::Node
*node
= wxTopLevelWindows
.GetFirst();
806 wxWindow
*win
= node
->GetData();
810 node
= node
->GetNext();
815 bool wxWindowBase::Validate()
818 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
820 wxWindowList::Node
*node
;
821 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
823 wxWindowBase
*child
= node
->GetData();
824 wxValidator
*validator
= child
->GetValidator();
825 if ( validator
&& !validator
->Validate((wxWindow
*)this) )
830 if ( recurse
&& !child
->Validate() )
835 #endif // wxUSE_VALIDATORS
840 bool wxWindowBase::TransferDataToWindow()
843 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
845 wxWindowList::Node
*node
;
846 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
848 wxWindowBase
*child
= node
->GetData();
849 wxValidator
*validator
= child
->GetValidator();
850 if ( validator
&& !validator
->TransferToWindow() )
852 wxLogWarning(_("Could not transfer data to window"));
853 wxLog::FlushActive();
860 if ( !child
->TransferDataToWindow() )
862 // warning already given
867 #endif // wxUSE_VALIDATORS
872 bool wxWindowBase::TransferDataFromWindow()
875 bool recurse
= (GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY
) != 0;
877 wxWindowList::Node
*node
;
878 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
880 wxWindow
*child
= node
->GetData();
881 wxValidator
*validator
= child
->GetValidator();
882 if ( validator
&& !validator
->TransferFromWindow() )
884 // nop warning here because the application is supposed to give
885 // one itself - we don't know here what might have gone wrongly
892 if ( !child
->TransferDataFromWindow() )
894 // warning already given
899 #endif // wxUSE_VALIDATORS
904 void wxWindowBase::InitDialog()
906 wxInitDialogEvent
event(GetId());
907 event
.SetEventObject( this );
908 GetEventHandler()->ProcessEvent(event
);
911 // ----------------------------------------------------------------------------
912 // context-sensitive help support
913 // ----------------------------------------------------------------------------
917 // associate this help text with this window
918 void wxWindowBase::SetHelpText(const wxString
& text
)
920 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
923 helpProvider
->AddHelp(this, text
);
927 // associate this help text with all windows with the same id as this
929 void wxWindowBase::SetHelpTextForId(const wxString
& text
)
931 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
934 helpProvider
->AddHelp(GetId(), text
);
938 // get the help string associated with this window (may be empty)
939 wxString
wxWindowBase::GetHelpText() const
942 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
945 text
= helpProvider
->GetHelp(this);
951 // show help for this window
952 void wxWindowBase::OnHelp(wxHelpEvent
& event
)
954 wxHelpProvider
*helpProvider
= wxHelpProvider::Get();
957 if ( helpProvider
->ShowHelp(this) )
959 // skip the event.Skip() below
969 // ----------------------------------------------------------------------------
971 // ----------------------------------------------------------------------------
975 void wxWindowBase::SetToolTip( const wxString
&tip
)
977 // don't create the new tooltip if we already have one
980 m_tooltip
->SetTip( tip
);
984 SetToolTip( new wxToolTip( tip
) );
987 // setting empty tooltip text does not remove the tooltip any more - use
988 // SetToolTip((wxToolTip *)NULL) for this
991 void wxWindowBase::DoSetToolTip(wxToolTip
*tooltip
)
999 #endif // wxUSE_TOOLTIPS
1001 // ----------------------------------------------------------------------------
1002 // constraints and sizers
1003 // ----------------------------------------------------------------------------
1005 #if wxUSE_CONSTRAINTS
1007 void wxWindowBase::SetConstraints( wxLayoutConstraints
*constraints
)
1009 if ( m_constraints
)
1011 UnsetConstraints(m_constraints
);
1012 delete m_constraints
;
1014 m_constraints
= constraints
;
1015 if ( m_constraints
)
1017 // Make sure other windows know they're part of a 'meaningful relationship'
1018 if ( m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this) )
1019 m_constraints
->left
.GetOtherWindow()->AddConstraintReference(this);
1020 if ( m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this) )
1021 m_constraints
->top
.GetOtherWindow()->AddConstraintReference(this);
1022 if ( m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this) )
1023 m_constraints
->right
.GetOtherWindow()->AddConstraintReference(this);
1024 if ( m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this) )
1025 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference(this);
1026 if ( m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this) )
1027 m_constraints
->width
.GetOtherWindow()->AddConstraintReference(this);
1028 if ( m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this) )
1029 m_constraints
->height
.GetOtherWindow()->AddConstraintReference(this);
1030 if ( m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this) )
1031 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference(this);
1032 if ( m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this) )
1033 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference(this);
1037 // This removes any dangling pointers to this window in other windows'
1038 // constraintsInvolvedIn lists.
1039 void wxWindowBase::UnsetConstraints(wxLayoutConstraints
*c
)
1043 if ( c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1044 c
->left
.GetOtherWindow()->RemoveConstraintReference(this);
1045 if ( c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
1046 c
->top
.GetOtherWindow()->RemoveConstraintReference(this);
1047 if ( c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this) )
1048 c
->right
.GetOtherWindow()->RemoveConstraintReference(this);
1049 if ( c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this) )
1050 c
->bottom
.GetOtherWindow()->RemoveConstraintReference(this);
1051 if ( c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this) )
1052 c
->width
.GetOtherWindow()->RemoveConstraintReference(this);
1053 if ( c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this) )
1054 c
->height
.GetOtherWindow()->RemoveConstraintReference(this);
1055 if ( c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this) )
1056 c
->centreX
.GetOtherWindow()->RemoveConstraintReference(this);
1057 if ( c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this) )
1058 c
->centreY
.GetOtherWindow()->RemoveConstraintReference(this);
1062 // Back-pointer to other windows we're involved with, so if we delete this
1063 // window, we must delete any constraints we're involved with.
1064 void wxWindowBase::AddConstraintReference(wxWindowBase
*otherWin
)
1066 if ( !m_constraintsInvolvedIn
)
1067 m_constraintsInvolvedIn
= new wxWindowList
;
1068 if ( !m_constraintsInvolvedIn
->Find(otherWin
) )
1069 m_constraintsInvolvedIn
->Append(otherWin
);
1072 // REMOVE back-pointer to other windows we're involved with.
1073 void wxWindowBase::RemoveConstraintReference(wxWindowBase
*otherWin
)
1075 if ( m_constraintsInvolvedIn
)
1076 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
1079 // Reset any constraints that mention this window
1080 void wxWindowBase::DeleteRelatedConstraints()
1082 if ( m_constraintsInvolvedIn
)
1084 wxWindowList::Node
*node
= m_constraintsInvolvedIn
->GetFirst();
1087 wxWindow
*win
= node
->GetData();
1088 wxLayoutConstraints
*constr
= win
->GetConstraints();
1090 // Reset any constraints involving this window
1093 constr
->left
.ResetIfWin(this);
1094 constr
->top
.ResetIfWin(this);
1095 constr
->right
.ResetIfWin(this);
1096 constr
->bottom
.ResetIfWin(this);
1097 constr
->width
.ResetIfWin(this);
1098 constr
->height
.ResetIfWin(this);
1099 constr
->centreX
.ResetIfWin(this);
1100 constr
->centreY
.ResetIfWin(this);
1103 wxWindowList::Node
*next
= node
->GetNext();
1108 delete m_constraintsInvolvedIn
;
1109 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
1113 void wxWindowBase::SetSizer(wxSizer
*sizer
)
1115 if (m_windowSizer
) delete m_windowSizer
;
1117 m_windowSizer
= sizer
;
1120 bool wxWindowBase::Layout()
1122 // If there is a sizer, use it instead of the constraints
1126 GetClientSize(&w
, &h
);
1128 GetSizer()->SetDimension( 0, 0, w
, h
);
1132 wxLayoutConstraints
*constr
= GetConstraints();
1133 bool wasOk
= constr
&& constr
->AreSatisfied();
1135 ResetConstraints(); // Mark all constraints as unevaluated
1137 // if we're a top level panel (i.e. our parent is frame/dialog), our
1138 // own constraints will never be satisfied any more unless we do it
1143 while ( noChanges
> 0 )
1145 constr
->SatisfyConstraints(this, &noChanges
);
1149 DoPhase(1); // Layout children
1150 DoPhase(2); // Layout grand children
1151 SetConstraintSizes(); // Recursively set the real window sizes
1158 // Do a phase of evaluating constraints: the default behaviour. wxSizers may
1159 // do a similar thing, but also impose their own 'constraints' and order the
1160 // evaluation differently.
1161 bool wxWindowBase::LayoutPhase1(int *noChanges
)
1163 wxLayoutConstraints
*constr
= GetConstraints();
1166 return constr
->SatisfyConstraints(this, noChanges
);
1172 bool wxWindowBase::LayoutPhase2(int *noChanges
)
1182 // Do a phase of evaluating child constraints
1183 bool wxWindowBase::DoPhase(int phase
)
1185 int noIterations
= 0;
1186 int maxIterations
= 500;
1189 wxWindowList succeeded
;
1190 while ((noChanges
> 0) && (noIterations
< maxIterations
))
1194 wxWindowList::Node
*node
= GetChildren().GetFirst();
1197 wxWindow
*child
= node
->GetData();
1198 if ( !child
->IsTopLevel() )
1200 wxLayoutConstraints
*constr
= child
->GetConstraints();
1203 if ( !succeeded
.Find(child
) )
1205 int tempNoChanges
= 0;
1206 bool success
= ( (phase
== 1) ? child
->LayoutPhase1(&tempNoChanges
) : child
->LayoutPhase2(&tempNoChanges
) ) ;
1207 noChanges
+= tempNoChanges
;
1210 succeeded
.Append(child
);
1215 node
= node
->GetNext();
1224 void wxWindowBase::ResetConstraints()
1226 wxLayoutConstraints
*constr
= GetConstraints();
1229 constr
->left
.SetDone(FALSE
);
1230 constr
->top
.SetDone(FALSE
);
1231 constr
->right
.SetDone(FALSE
);
1232 constr
->bottom
.SetDone(FALSE
);
1233 constr
->width
.SetDone(FALSE
);
1234 constr
->height
.SetDone(FALSE
);
1235 constr
->centreX
.SetDone(FALSE
);
1236 constr
->centreY
.SetDone(FALSE
);
1239 wxWindowList::Node
*node
= GetChildren().GetFirst();
1242 wxWindow
*win
= node
->GetData();
1243 if ( !win
->IsTopLevel() )
1244 win
->ResetConstraints();
1245 node
= node
->GetNext();
1249 // Need to distinguish between setting the 'fake' size for windows and sizers,
1250 // and setting the real values.
1251 void wxWindowBase::SetConstraintSizes(bool recurse
)
1253 wxLayoutConstraints
*constr
= GetConstraints();
1254 if ( constr
&& constr
->AreSatisfied() )
1256 int x
= constr
->left
.GetValue();
1257 int y
= constr
->top
.GetValue();
1258 int w
= constr
->width
.GetValue();
1259 int h
= constr
->height
.GetValue();
1261 if ( (constr
->width
.GetRelationship() != wxAsIs
) ||
1262 (constr
->height
.GetRelationship() != wxAsIs
) )
1264 SetSize(x
, y
, w
, h
);
1268 // If we don't want to resize this window, just move it...
1274 wxLogDebug(wxT("Constraints not satisfied for %s named '%s'."),
1275 GetClassInfo()->GetClassName(),
1281 wxWindowList::Node
*node
= GetChildren().GetFirst();
1284 wxWindow
*win
= node
->GetData();
1285 if ( !win
->IsTopLevel() && win
->GetConstraints() )
1286 win
->SetConstraintSizes();
1287 node
= node
->GetNext();
1292 // Only set the size/position of the constraint (if any)
1293 void wxWindowBase::SetSizeConstraint(int x
, int y
, int w
, int h
)
1295 wxLayoutConstraints
*constr
= GetConstraints();
1300 constr
->left
.SetValue(x
);
1301 constr
->left
.SetDone(TRUE
);
1305 constr
->top
.SetValue(y
);
1306 constr
->top
.SetDone(TRUE
);
1310 constr
->width
.SetValue(w
);
1311 constr
->width
.SetDone(TRUE
);
1315 constr
->height
.SetValue(h
);
1316 constr
->height
.SetDone(TRUE
);
1321 void wxWindowBase::MoveConstraint(int x
, int y
)
1323 wxLayoutConstraints
*constr
= GetConstraints();
1328 constr
->left
.SetValue(x
);
1329 constr
->left
.SetDone(TRUE
);
1333 constr
->top
.SetValue(y
);
1334 constr
->top
.SetDone(TRUE
);
1339 void wxWindowBase::GetSizeConstraint(int *w
, int *h
) const
1341 wxLayoutConstraints
*constr
= GetConstraints();
1344 *w
= constr
->width
.GetValue();
1345 *h
= constr
->height
.GetValue();
1351 void wxWindowBase::GetClientSizeConstraint(int *w
, int *h
) const
1353 wxLayoutConstraints
*constr
= GetConstraints();
1356 *w
= constr
->width
.GetValue();
1357 *h
= constr
->height
.GetValue();
1360 GetClientSize(w
, h
);
1363 void wxWindowBase::AdjustForParentClientOrigin(int& x
, int& y
, int sizeFlags
)
1365 // don't do it for the dialogs/frames - they float independently of their
1367 if ( !IsTopLevel() )
1369 wxWindow
*parent
= GetParent();
1370 if ( !(sizeFlags
& wxSIZE_NO_ADJUSTMENTS
) && parent
)
1372 wxPoint
pt(parent
->GetClientAreaOrigin());
1380 void wxWindowBase::GetPositionConstraint(int *x
, int *y
) const
1382 wxLayoutConstraints
*constr
= GetConstraints();
1385 *x
= constr
->left
.GetValue();
1386 *y
= constr
->top
.GetValue();
1392 #endif // wxUSE_CONSTRAINTS
1394 // ----------------------------------------------------------------------------
1395 // do Update UI processing for child controls
1396 // ----------------------------------------------------------------------------
1398 // TODO: should this be implemented for the child window rather
1399 // than the parent? Then you can override it e.g. for wxCheckBox
1400 // to do the Right Thing rather than having to assume a fixed number
1401 // of control classes.
1402 void wxWindowBase::UpdateWindowUI()
1405 wxUpdateUIEvent
event(GetId());
1406 event
.m_eventObject
= this;
1408 if ( GetEventHandler()->ProcessEvent(event
) )
1410 if ( event
.GetSetEnabled() )
1411 Enable(event
.GetEnabled());
1413 if ( event
.GetSetText() )
1415 wxControl
*control
= wxDynamicCastThis(wxControl
);
1419 wxTextCtrl
*text
= wxDynamicCast(control
, wxTextCtrl
);
1421 text
->SetValue(event
.GetText());
1423 #endif // wxUSE_TEXTCTRL
1424 control
->SetLabel(event
.GetText());
1429 wxCheckBox
*checkbox
= wxDynamicCastThis(wxCheckBox
);
1432 if ( event
.GetSetChecked() )
1433 checkbox
->SetValue(event
.GetChecked());
1435 #endif // wxUSE_CHECKBOX
1438 wxRadioButton
*radiobtn
= wxDynamicCastThis(wxRadioButton
);
1441 if ( event
.GetSetChecked() )
1442 radiobtn
->SetValue(event
.GetChecked());
1444 #endif // wxUSE_RADIOBTN
1446 #endif // wxUSE_CONTROLS
1449 // ----------------------------------------------------------------------------
1450 // dialog units translations
1451 // ----------------------------------------------------------------------------
1453 wxPoint
wxWindowBase::ConvertPixelsToDialog(const wxPoint
& pt
)
1455 int charWidth
= GetCharWidth();
1456 int charHeight
= GetCharHeight();
1457 wxPoint
pt2(-1, -1);
1459 pt2
.x
= (int) ((pt
.x
* 4) / charWidth
) ;
1461 pt2
.y
= (int) ((pt
.y
* 8) / charHeight
) ;
1466 wxPoint
wxWindowBase::ConvertDialogToPixels(const wxPoint
& pt
)
1468 int charWidth
= GetCharWidth();
1469 int charHeight
= GetCharHeight();
1470 wxPoint
pt2(-1, -1);
1472 pt2
.x
= (int) ((pt
.x
* charWidth
) / 4) ;
1474 pt2
.y
= (int) ((pt
.y
* charHeight
) / 8) ;
1479 // ----------------------------------------------------------------------------
1481 // ----------------------------------------------------------------------------
1483 // propagate the colour change event to the subwindows
1484 void wxWindowBase::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1486 wxWindowList::Node
*node
= GetChildren().GetFirst();
1489 // Only propagate to non-top-level windows
1490 wxWindow
*win
= node
->GetData();
1491 if ( !win
->IsTopLevel() )
1493 wxSysColourChangedEvent event2
;
1494 event
.m_eventObject
= win
;
1495 win
->GetEventHandler()->ProcessEvent(event2
);
1498 node
= node
->GetNext();
1502 // the default action is to populate dialog with data when it's created
1503 void wxWindowBase::OnInitDialog( wxInitDialogEvent
&WXUNUSED(event
) )
1505 TransferDataToWindow();
1508 // process Ctrl-Alt-mclick
1509 void wxWindowBase::OnMiddleClick( wxMouseEvent
& event
)
1512 if ( event
.ControlDown() && event
.AltDown() )
1514 // don't translate these strings
1516 switch ( wxGetOsVersion() )
1518 case wxMOTIF_X
: port
= _T("Motif"); break;
1520 case wxMAC_DARWIN
: port
= _T("Mac"); break;
1521 case wxBEOS
: port
= _T("BeOS"); break;
1525 case wxGTK_BEOS
: port
= _T("GTK"); break;
1531 case wxWIN386
: port
= _T("MS Windows"); break;
1535 case wxMGL_OS2
: port
= _T("MGL"); break;
1537 case wxOS2_PM
: port
= _T("OS/2"); break;
1538 default: port
= _T("unknown"); break;
1541 wxMessageBox(wxString::Format(
1543 " wxWindows Library (%s port)\nVersion %u.%u.%u%s, compiled at %s %s\n Copyright (c) 1995-2001 wxWindows team"
1557 _T("wxWindows information"),
1558 wxICON_INFORMATION
| wxOK
,
1562 #endif // wxUSE_MSGDLG
1568 // ----------------------------------------------------------------------------
1569 // list classes implementation
1570 // ----------------------------------------------------------------------------
1572 void wxWindowListNode::DeleteData()
1574 delete (wxWindow
*)GetData();
1577 // ----------------------------------------------------------------------------
1579 // ----------------------------------------------------------------------------
1581 wxBorder
wxWindowBase::GetBorder() const
1583 wxBorder border
= (wxBorder
)(m_windowStyle
& wxBORDER_MASK
);
1584 if ( border
== wxBORDER_DEFAULT
)
1586 border
= GetDefaultBorder();
1592 wxBorder
wxWindowBase::GetDefaultBorder() const
1594 return wxBORDER_NONE
;
1597 // ----------------------------------------------------------------------------
1599 // ----------------------------------------------------------------------------
1601 wxHitTest
wxWindowBase::DoHitTest(wxCoord x
, wxCoord y
) const
1603 // here we just check if the point is inside the window or not
1605 // check the top and left border first
1606 bool outside
= x
< 0 || y
< 0;
1609 // check the right and bottom borders too
1610 wxSize size
= GetSize();
1611 outside
= x
>= size
.x
|| y
>= size
.y
;
1614 return outside
? wxHT_WINDOW_OUTSIDE
: wxHT_WINDOW_INSIDE
;
1617 // ----------------------------------------------------------------------------
1619 // ----------------------------------------------------------------------------
1621 struct WXDLLEXPORT wxWindowNext
1625 } *wxWindowBase::ms_winCaptureNext
= NULL
;
1627 void wxWindowBase::CaptureMouse()
1629 wxLogTrace(_T("mousecapture"), _T("CaptureMouse(0x%08x)"), this);
1631 wxWindow
*winOld
= GetCapture();
1635 wxWindowNext
*item
= new wxWindowNext
;
1637 item
->next
= ms_winCaptureNext
;
1638 ms_winCaptureNext
= item
;
1640 //else: no mouse capture to save
1645 void wxWindowBase::ReleaseMouse()
1647 wxLogTrace(_T("mousecapture"), _T("ReleaseMouse(0x%08x)"), this);
1649 wxASSERT_MSG( GetCapture() == this, wxT("attempt to release mouse, but this window hasn't captured it") )
1653 if ( ms_winCaptureNext
)
1655 ms_winCaptureNext
->win
->CaptureMouse();
1657 wxWindowNext
*item
= ms_winCaptureNext
;
1658 ms_winCaptureNext
= item
->next
;
1661 //else: stack is empty, no previous capture
1663 wxLogTrace(_T("mousecapture"),
1664 _T("After ReleaseMouse() mouse is captured by 0x%08x"),