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/checkbox.h"
39 #include "wx/radiobut.h"
40 #include "wx/settings.h"
41 #include "wx/dialog.h"
45 #include "wx/layout.h"
46 #endif // wxUSE_CONSTRAINTS
48 #if wxUSE_DRAG_AND_DROP
50 #endif // wxUSE_DRAG_AND_DROP
53 #include "wx/tooltip.h"
54 #endif // wxUSE_TOOLTIPS
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
60 int wxWindowBase::ms_lastControlId
= 0;
62 IMPLEMENT_ABSTRACT_CLASS(wxWindowBase
, wxEvtHandler
)
64 // ----------------------------------------------------------------------------
66 // ----------------------------------------------------------------------------
68 BEGIN_EVENT_TABLE(wxWindowBase
, wxEvtHandler
)
69 EVT_SYS_COLOUR_CHANGED(wxWindowBase::OnSysColourChanged
)
70 EVT_INIT_DIALOG(wxWindowBase::OnInitDialog
)
73 // ============================================================================
74 // implementation of the common functionality of the wxWindow class
75 // ============================================================================
77 // ----------------------------------------------------------------------------
79 // ----------------------------------------------------------------------------
81 // the default initialization
82 void wxWindowBase::InitBase()
84 // no window yet, no parent nor children
85 m_parent
= (wxWindow
*)NULL
;
87 m_children
.DeleteContents( FALSE
); // don't auto delete node data
89 // no constraints on the minimal window size
95 // window is created enabled but it's not visible yet
100 m_clientObject
= (wxClientData
*)NULL
;
103 // the default event handler is just this window
104 m_eventHandler
= this;
107 m_windowValidator
= (wxValidator
*) NULL
;
109 // use the system default colours
110 wxSystemSettings settings
;
112 m_backgroundColour
= settings
.GetSystemColour(wxSYS_COLOUR_BTNFACE
);
113 m_foregroundColour
= *wxBLACK
; // TODO take this from sys settings too?
114 m_font
= *wxSWISS_FONT
; // and this?
119 // an optimization for the event processing: checking this flag is much
120 // faster than using IsKindOf(CLASSINFO(wxWindow))
123 #if wxUSE_CONSTRAINTS
124 // no constraints whatsoever
125 m_constraints
= (wxLayoutConstraints
*) NULL
;
126 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
127 m_windowSizer
= (wxSizer
*) NULL
;
128 m_sizerParent
= (wxWindowBase
*) NULL
;
129 m_autoLayout
= FALSE
;
130 #endif // wxUSE_CONSTRAINTS
132 #if wxUSE_DRAG_AND_DROP
133 m_dropTarget
= (wxDropTarget
*)NULL
;
134 #endif // wxUSE_DRAG_AND_DROP
137 m_tooltip
= (wxToolTip
*)NULL
;
138 #endif // wxUSE_TOOLTIPS
141 // common part of window creation process
142 bool wxWindowBase::CreateBase(wxWindowBase
*parent
,
144 const wxPoint
& WXUNUSED(pos
),
145 const wxSize
& WXUNUSED(size
),
147 const wxString
& name
)
149 // m_isWindow is set to TRUE in wxWindowBase::Init() as well as many other
150 // member variables - check that it has been called (will catch the case
151 // when a new ctor is added which doesn't call InitWindow)
152 wxASSERT_MSG( m_isWindow
, _T("Init() must have been called before!") );
154 // generate a new id if the user doesn't care about it
155 m_windowId
= id
== -1 ? NewControlId() : id
;
158 SetWindowStyleFlag(style
);
164 // ----------------------------------------------------------------------------
166 // ----------------------------------------------------------------------------
169 wxWindowBase::~wxWindowBase()
171 // FIXME if these 2 cases result from programming errors in the user code
172 // we should probably assert here instead of silently fixing them
174 // Just in case the window has been Closed, but we're then deleting
175 // immediately: don't leave dangling pointers.
176 wxPendingDelete
.DeleteObject(this);
178 // Just in case we've loaded a top-level window via LoadNativeDialog but
179 // we weren't a dialog class
180 wxTopLevelWindows
.DeleteObject(this);
182 wxASSERT_MSG( GetChildren().GetCount() == 0, "children not destroyed" );
184 if ( m_windowValidator
)
185 delete m_windowValidator
;
187 if ( m_clientObject
)
188 delete m_clientObject
;
190 #if wxUSE_CONSTRAINTS
191 // Have to delete constraints/sizer FIRST otherwise sizers may try to look
192 // at deleted windows as they delete themselves.
193 DeleteRelatedConstraints();
197 // This removes any dangling pointers to this window in other windows'
198 // constraintsInvolvedIn lists.
199 UnsetConstraints(m_constraints
);
200 delete m_constraints
;
201 m_constraints
= NULL
;
205 delete m_windowSizer
;
207 // If this is a child of a sizer, remove self from parent
209 m_sizerParent
->RemoveChild(this);
210 #endif // wxUSE_CONSTRAINTS
212 #if wxUSE_DRAG_AND_DROP
215 #endif // wxUSE_DRAG_AND_DROP
220 #endif // wxUSE_TOOLTIPS
223 bool wxWindowBase::Destroy()
230 bool wxWindowBase::Close(bool force
)
232 wxCloseEvent
event(wxEVT_CLOSE_WINDOW
, m_windowId
);
233 event
.SetEventObject(this);
234 #if WXWIN_COMPATIBILITY
235 event
.SetForce(force
);
236 #endif // WXWIN_COMPATIBILITY
237 event
.SetCanVeto(!force
);
239 // return FALSE if window wasn't closed because the application vetoed the
241 return GetEventHandler()->ProcessEvent(event
) && !event
.GetVeto();
244 bool wxWindowBase::DestroyChildren()
246 wxWindowList::Node
*node
;
247 while ( (node
= GetChildren().GetFirst()) )
249 wxWindow
*child
= node
->GetData();
251 wxASSERT_MSG( child
, "m_children contains empty nodes" );
255 wxASSERT_MSG( !GetChildren().Find(child
), "child didn't remove itself using RemoveChild()" );
261 // ----------------------------------------------------------------------------
262 // centre/fit the window
263 // ----------------------------------------------------------------------------
265 // centre the window with respect to its parent in either (or both) directions
266 void wxWindowBase::Centre(int direction
)
268 int widthParent
, heightParent
;
270 wxWindow
*parent
= GetParent();
273 parent
->GetClientSize(&widthParent
, &heightParent
);
277 // centre with respect to the whole screen
278 wxDisplaySize(&widthParent
, &heightParent
);
282 GetSize(&width
, &height
);
287 if ( direction
& wxHORIZONTAL
)
288 new_x
= (widthParent
- width
)/2;
290 if ( direction
& wxVERTICAL
)
291 new_y
= (heightParent
- height
)/2;
296 // fits the window around the children
297 void wxWindowBase::Fit()
302 wxWindowList::Node
*node
= GetChildren().GetFirst();
305 wxWindow
*win
= node
->GetData();
307 win
->GetPosition(&wx
, &wy
);
308 win
->GetSize(&ww
, &wh
);
309 if ( wx
+ ww
> maxX
)
311 if ( wy
+ wh
> maxY
)
314 node
= node
->GetNext();
318 SetClientSize(maxX
+ 7, maxY
+ 14);
321 // set the min/max size of the window
323 void wxWindowBase::SetSizeHints(int minW
, int minH
,
325 int WXUNUSED(incW
), int WXUNUSED(incH
))
333 // ----------------------------------------------------------------------------
334 // show/hide/enable/disable the window
335 // ----------------------------------------------------------------------------
337 bool wxWindowBase::Show(bool show
)
339 if ( show
!= m_isShown
)
351 bool wxWindowBase::Enable(bool enable
)
353 if ( enable
!= m_isEnabled
)
355 m_isEnabled
= enable
;
365 // ----------------------------------------------------------------------------
366 // reparenting the window
367 // ----------------------------------------------------------------------------
369 void wxWindowBase::AddChild(wxWindowBase
*child
)
371 wxCHECK_RET( child
, _T("can't add a NULL child") );
373 GetChildren().Append(child
);
374 child
->SetParent(this);
377 void wxWindowBase::RemoveChild(wxWindowBase
*child
)
379 wxCHECK_RET( child
, _T("can't remove a NULL child") );
381 GetChildren().DeleteObject(child
);
382 child
->SetParent((wxWindow
*)NULL
);
385 bool wxWindowBase::Reparent(wxWindowBase
*newParent
)
387 wxWindow
*oldParent
= GetParent();
388 if ( newParent
== oldParent
)
394 // unlink this window from the existing parent.
397 oldParent
->RemoveChild(this);
401 wxTopLevelWindows
.DeleteObject(this);
404 // add it to the new one
407 newParent
->AddChild(this);
411 wxTopLevelWindows
.Append(this);
417 // ----------------------------------------------------------------------------
418 // event handler stuff
419 // ----------------------------------------------------------------------------
421 void wxWindowBase::PushEventHandler(wxEvtHandler
*handler
)
423 handler
->SetNextHandler(GetEventHandler());
424 SetEventHandler(handler
);
427 wxEvtHandler
*wxWindowBase::PopEventHandler(bool deleteHandler
)
429 wxEvtHandler
*handlerA
= GetEventHandler();
432 wxEvtHandler
*handlerB
= handlerA
->GetNextHandler();
433 handlerA
->SetNextHandler((wxEvtHandler
*)NULL
);
434 SetEventHandler(handlerB
);
438 handlerA
= (wxEvtHandler
*)NULL
;
445 // ----------------------------------------------------------------------------
447 // ----------------------------------------------------------------------------
449 bool wxWindowBase::SetBackgroundColour( const wxColour
&colour
)
451 if ( !colour
.Ok() || (colour
== m_backgroundColour
) )
454 m_backgroundColour
= colour
;
459 bool wxWindowBase::SetForegroundColour( const wxColour
&colour
)
461 if ( !colour
.Ok() || (colour
== m_foregroundColour
) )
464 m_foregroundColour
= colour
;
469 bool wxWindowBase::SetCursor(const wxCursor
& cursor
)
471 // don't try to set invalid cursor, always fall back to the default
472 const wxCursor
& cursorOk
= cursor
.Ok() ? cursor
: *wxSTANDARD_CURSOR
;
474 if ( cursorOk
== m_cursor
)
485 bool wxWindowBase::SetFont(const wxFont
& font
)
487 // don't try to set invalid font, always fall back to the default
488 const wxFont
& fontOk
= font
.Ok() ? font
: *wxSWISS_FONT
;
490 if ( fontOk
== m_font
)
501 // ----------------------------------------------------------------------------
503 // ----------------------------------------------------------------------------
505 void wxWindowBase::SetValidator(const wxValidator
& validator
)
507 if ( m_windowValidator
)
508 delete m_windowValidator
;
510 m_windowValidator
= (wxValidator
*)validator
.Clone();
512 if ( m_windowValidator
)
513 m_windowValidator
->SetWindow(this) ;
516 // ----------------------------------------------------------------------------
517 // update region testing
518 // ----------------------------------------------------------------------------
520 bool wxWindowBase::IsExposed(int x
, int y
) const
522 return m_updateRegion
.Contains(x
, y
) != wxOutRegion
;
525 bool wxWindowBase::IsExposed(int x
, int y
, int w
, int h
) const
527 return m_updateRegion
.Contains(x
, y
, w
, h
) != wxOutRegion
;
530 // ----------------------------------------------------------------------------
531 // find window by id or name
532 // ----------------------------------------------------------------------------
534 wxWindow
*wxWindowBase::FindWindow( long id
)
536 if ( id
== m_windowId
)
537 return (wxWindow
*)this;
539 wxWindowBase
*res
= (wxWindow
*)NULL
;
540 wxWindowList::Node
*node
;
541 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
543 wxWindowBase
*child
= node
->GetData();
544 res
= child
->FindWindow( id
);
547 return (wxWindow
*)res
;
550 wxWindow
*wxWindowBase::FindWindow( const wxString
& name
)
552 if ( name
== m_windowName
)
553 return (wxWindow
*)this;
555 wxWindowBase
*res
= (wxWindow
*)NULL
;
556 wxWindowList::Node
*node
;
557 for ( node
= m_children
.GetFirst(); node
&& !res
; node
= node
->GetNext() )
559 wxWindow
*child
= node
->GetData();
560 res
= child
->FindWindow(name
);
563 return (wxWindow
*)res
;
566 // ----------------------------------------------------------------------------
567 // dialog oriented functions
568 // ----------------------------------------------------------------------------
570 void wxWindowBase::MakeModal(bool WXUNUSED(modal
))
575 bool wxWindowBase::Validate()
577 wxWindowList::Node
*node
;
578 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
580 wxWindowBase
*child
= node
->GetData();
581 wxValidator
*validator
= child
->GetValidator();
582 if ( validator
&& validator
->Validate(this) )
591 bool wxWindowBase::TransferDataToWindow()
593 wxWindowList::Node
*node
;
594 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
596 wxWindowBase
*child
= node
->GetData();
597 wxValidator
*validator
= child
->GetValidator();
598 if ( validator
&& !validator
->TransferToWindow() )
600 wxLog
*log
= wxLog::GetActiveTarget();
603 wxLogWarning(_("Could not transfer data to window"));
614 bool wxWindowBase::TransferDataFromWindow()
616 wxWindowList::Node
*node
;
617 for ( node
= m_children
.GetFirst(); node
; node
= node
->GetNext() )
619 wxWindow
*child
= node
->GetData();
620 if ( child
->GetValidator() &&
621 !child
->GetValidator()->TransferFromWindow() )
630 void wxWindowBase::InitDialog()
632 wxInitDialogEvent
event(GetId());
633 event
.SetEventObject( this );
634 GetEventHandler()->ProcessEvent(event
);
637 // ----------------------------------------------------------------------------
639 // ----------------------------------------------------------------------------
643 void wxWindowBase::SetToolTip( const wxString
&tip
)
645 // don't create the new tooltip if we already have one
648 m_tooltip
->SetTip( tip
);
652 SetToolTip( new wxToolTip( tip
) );
655 // setting empty tooltip text does not remove the tooltip any more - use
656 // SetToolTip((wxToolTip *)NULL) for this
659 void wxWindowBase::DoSetToolTip(wxToolTip
*tooltip
)
667 #endif // wxUSE_TOOLTIPS
669 // ----------------------------------------------------------------------------
670 // constraints and sizers
671 // ----------------------------------------------------------------------------
673 #if wxUSE_CONSTRAINTS
675 void wxWindowBase::SetConstraints( wxLayoutConstraints
*constraints
)
679 UnsetConstraints(m_constraints
);
680 delete m_constraints
;
682 m_constraints
= constraints
;
685 // Make sure other windows know they're part of a 'meaningful relationship'
686 if ( m_constraints
->left
.GetOtherWindow() && (m_constraints
->left
.GetOtherWindow() != this) )
687 m_constraints
->left
.GetOtherWindow()->AddConstraintReference(this);
688 if ( m_constraints
->top
.GetOtherWindow() && (m_constraints
->top
.GetOtherWindow() != this) )
689 m_constraints
->top
.GetOtherWindow()->AddConstraintReference(this);
690 if ( m_constraints
->right
.GetOtherWindow() && (m_constraints
->right
.GetOtherWindow() != this) )
691 m_constraints
->right
.GetOtherWindow()->AddConstraintReference(this);
692 if ( m_constraints
->bottom
.GetOtherWindow() && (m_constraints
->bottom
.GetOtherWindow() != this) )
693 m_constraints
->bottom
.GetOtherWindow()->AddConstraintReference(this);
694 if ( m_constraints
->width
.GetOtherWindow() && (m_constraints
->width
.GetOtherWindow() != this) )
695 m_constraints
->width
.GetOtherWindow()->AddConstraintReference(this);
696 if ( m_constraints
->height
.GetOtherWindow() && (m_constraints
->height
.GetOtherWindow() != this) )
697 m_constraints
->height
.GetOtherWindow()->AddConstraintReference(this);
698 if ( m_constraints
->centreX
.GetOtherWindow() && (m_constraints
->centreX
.GetOtherWindow() != this) )
699 m_constraints
->centreX
.GetOtherWindow()->AddConstraintReference(this);
700 if ( m_constraints
->centreY
.GetOtherWindow() && (m_constraints
->centreY
.GetOtherWindow() != this) )
701 m_constraints
->centreY
.GetOtherWindow()->AddConstraintReference(this);
705 // This removes any dangling pointers to this window in other windows'
706 // constraintsInvolvedIn lists.
707 void wxWindowBase::UnsetConstraints(wxLayoutConstraints
*c
)
711 if ( c
->left
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
712 c
->left
.GetOtherWindow()->RemoveConstraintReference(this);
713 if ( c
->top
.GetOtherWindow() && (c
->top
.GetOtherWindow() != this) )
714 c
->top
.GetOtherWindow()->RemoveConstraintReference(this);
715 if ( c
->right
.GetOtherWindow() && (c
->right
.GetOtherWindow() != this) )
716 c
->right
.GetOtherWindow()->RemoveConstraintReference(this);
717 if ( c
->bottom
.GetOtherWindow() && (c
->bottom
.GetOtherWindow() != this) )
718 c
->bottom
.GetOtherWindow()->RemoveConstraintReference(this);
719 if ( c
->width
.GetOtherWindow() && (c
->width
.GetOtherWindow() != this) )
720 c
->width
.GetOtherWindow()->RemoveConstraintReference(this);
721 if ( c
->height
.GetOtherWindow() && (c
->height
.GetOtherWindow() != this) )
722 c
->height
.GetOtherWindow()->RemoveConstraintReference(this);
723 if ( c
->centreX
.GetOtherWindow() && (c
->centreX
.GetOtherWindow() != this) )
724 c
->centreX
.GetOtherWindow()->RemoveConstraintReference(this);
725 if ( c
->centreY
.GetOtherWindow() && (c
->centreY
.GetOtherWindow() != this) )
726 c
->centreY
.GetOtherWindow()->RemoveConstraintReference(this);
730 // Back-pointer to other windows we're involved with, so if we delete this
731 // window, we must delete any constraints we're involved with.
732 void wxWindowBase::AddConstraintReference(wxWindowBase
*otherWin
)
734 if ( !m_constraintsInvolvedIn
)
735 m_constraintsInvolvedIn
= new wxWindowList
;
736 if ( !m_constraintsInvolvedIn
->Find(otherWin
) )
737 m_constraintsInvolvedIn
->Append(otherWin
);
740 // REMOVE back-pointer to other windows we're involved with.
741 void wxWindowBase::RemoveConstraintReference(wxWindowBase
*otherWin
)
743 if ( m_constraintsInvolvedIn
)
744 m_constraintsInvolvedIn
->DeleteObject(otherWin
);
747 // Reset any constraints that mention this window
748 void wxWindowBase::DeleteRelatedConstraints()
750 if ( m_constraintsInvolvedIn
)
752 wxWindowList::Node
*node
= m_constraintsInvolvedIn
->GetFirst();
755 wxWindow
*win
= node
->GetData();
756 wxLayoutConstraints
*constr
= win
->GetConstraints();
758 // Reset any constraints involving this window
761 constr
->left
.ResetIfWin(this);
762 constr
->top
.ResetIfWin(this);
763 constr
->right
.ResetIfWin(this);
764 constr
->bottom
.ResetIfWin(this);
765 constr
->width
.ResetIfWin(this);
766 constr
->height
.ResetIfWin(this);
767 constr
->centreX
.ResetIfWin(this);
768 constr
->centreY
.ResetIfWin(this);
771 wxWindowList::Node
*next
= node
->GetNext();
776 delete m_constraintsInvolvedIn
;
777 m_constraintsInvolvedIn
= (wxWindowList
*) NULL
;
781 void wxWindowBase::SetSizer(wxSizer
*sizer
)
783 m_windowSizer
= sizer
;
785 sizer
->SetSizerParent(this);
788 bool wxWindowBase::Layout()
790 if ( GetConstraints() )
793 GetClientSize(&w
, &h
);
794 GetConstraints()->width
.SetValue(w
);
795 GetConstraints()->height
.SetValue(h
);
798 // If top level (one sizer), evaluate the sizer's constraints.
802 GetSizer()->ResetConstraints(); // Mark all constraints as unevaluated
803 GetSizer()->LayoutPhase1(&noChanges
);
804 GetSizer()->LayoutPhase2(&noChanges
);
805 GetSizer()->SetConstraintSizes(); // Recursively set the real window sizes
810 // Otherwise, evaluate child constraints
811 ResetConstraints(); // Mark all constraints as unevaluated
812 DoPhase(1); // Just one phase need if no sizers involved
814 SetConstraintSizes(); // Recursively set the real window sizes
820 // Do a phase of evaluating constraints: the default behaviour. wxSizers may
821 // do a similar thing, but also impose their own 'constraints' and order the
822 // evaluation differently.
823 bool wxWindowBase::LayoutPhase1(int *noChanges
)
825 wxLayoutConstraints
*constr
= GetConstraints();
828 return constr
->SatisfyConstraints(this, noChanges
);
834 bool wxWindowBase::LayoutPhase2(int *noChanges
)
844 // Do a phase of evaluating child constraints
845 bool wxWindowBase::DoPhase(int phase
)
847 int noIterations
= 0;
848 int maxIterations
= 500;
851 wxWindowList succeeded
;
852 while ((noChanges
> 0) && (noIterations
< maxIterations
))
856 wxWindowList::Node
*node
= GetChildren().GetFirst();
859 wxWindow
*child
= node
->GetData();
860 if ( !child
->IsKindOf(CLASSINFO(wxFrame
)) && !child
->IsKindOf(CLASSINFO(wxDialog
)) )
862 wxLayoutConstraints
*constr
= child
->GetConstraints();
865 if ( !succeeded
.Find(child
) )
867 int tempNoChanges
= 0;
868 bool success
= ( (phase
== 1) ? child
->LayoutPhase1(&tempNoChanges
) : child
->LayoutPhase2(&tempNoChanges
) ) ;
869 noChanges
+= tempNoChanges
;
872 succeeded
.Append(child
);
877 node
= node
->GetNext();
886 void wxWindowBase::ResetConstraints()
888 wxLayoutConstraints
*constr
= GetConstraints();
891 constr
->left
.SetDone(FALSE
);
892 constr
->top
.SetDone(FALSE
);
893 constr
->right
.SetDone(FALSE
);
894 constr
->bottom
.SetDone(FALSE
);
895 constr
->width
.SetDone(FALSE
);
896 constr
->height
.SetDone(FALSE
);
897 constr
->centreX
.SetDone(FALSE
);
898 constr
->centreY
.SetDone(FALSE
);
900 wxWindowList::Node
*node
= GetChildren().GetFirst();
903 wxWindow
*win
= node
->GetData();
904 if ( !win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)) )
905 win
->ResetConstraints();
906 node
= node
->GetNext();
910 // Need to distinguish between setting the 'fake' size for windows and sizers,
911 // and setting the real values.
912 void wxWindowBase::SetConstraintSizes(bool recurse
)
914 wxLayoutConstraints
*constr
= GetConstraints();
915 if ( constr
&& constr
->left
.GetDone() && constr
->right
.GetDone( ) &&
916 constr
->width
.GetDone() && constr
->height
.GetDone())
918 int x
= constr
->left
.GetValue();
919 int y
= constr
->top
.GetValue();
920 int w
= constr
->width
.GetValue();
921 int h
= constr
->height
.GetValue();
923 // If we don't want to resize this window, just move it...
924 if ( (constr
->width
.GetRelationship() != wxAsIs
) ||
925 (constr
->height
.GetRelationship() != wxAsIs
))
927 // Calls Layout() recursively. AAAGH. How can we stop that.
928 // Simply take Layout() out of non-top level OnSizes.
929 SizerSetSize(x
, y
, w
, h
);
938 wxChar
*windowClass
= GetClassInfo()->GetClassName();
941 if ( GetName() == _T("") )
942 winName
= _T("unnamed");
945 wxLogDebug( _T("Constraint(s) not satisfied for window of type %s, name %s:\n"),
946 (const wxChar
*)windowClass
,
947 (const wxChar
*)winName
);
948 if ( !constr
->left
.GetDone()) wxLogDebug( _T(" unsatisfied 'left' constraint.\n") );
949 if ( !constr
->right
.GetDone()) wxLogDebug( _T(" unsatisfied 'right' constraint.\n") );
950 if ( !constr
->width
.GetDone()) wxLogDebug( _T(" unsatisfied 'width' constraint.\n") );
951 if ( !constr
->height
.GetDone()) wxLogDebug( _T(" unsatisfied 'height' constraint.\n") );
952 wxLogDebug( _T("Please check constraints: try adding AsIs() constraints.\n") );
957 wxWindowList::Node
*node
= GetChildren().GetFirst();
960 wxWindow
*win
= node
->GetData();
961 if ( !win
->IsKindOf(CLASSINFO(wxFrame
)) && !win
->IsKindOf(CLASSINFO(wxDialog
)) )
962 win
->SetConstraintSizes();
963 node
= node
->GetNext();
968 // This assumes that all sizers are 'on' the same window, i.e. the parent of
970 void wxWindowBase::TransformSizerToActual(int *x
, int *y
) const
972 if ( !m_sizerParent
|| m_sizerParent
->IsKindOf(CLASSINFO(wxDialog
) ) ||
973 m_sizerParent
->IsKindOf(CLASSINFO(wxFrame
)) )
977 m_sizerParent
->GetPosition(&xp
, &yp
);
978 m_sizerParent
->TransformSizerToActual(&xp
, &yp
);
983 void wxWindowBase::SizerSetSize(int x
, int y
, int w
, int h
)
987 TransformSizerToActual(&xx
, &yy
);
988 SetSize(xx
, yy
, w
, h
);
991 void wxWindowBase::SizerMove(int x
, int y
)
995 TransformSizerToActual(&xx
, &yy
);
999 // Only set the size/position of the constraint (if any)
1000 void wxWindowBase::SetSizeConstraint(int x
, int y
, int w
, int h
)
1002 wxLayoutConstraints
*constr
= GetConstraints();
1007 constr
->left
.SetValue(x
);
1008 constr
->left
.SetDone(TRUE
);
1012 constr
->top
.SetValue(y
);
1013 constr
->top
.SetDone(TRUE
);
1017 constr
->width
.SetValue(w
);
1018 constr
->width
.SetDone(TRUE
);
1022 constr
->height
.SetValue(h
);
1023 constr
->height
.SetDone(TRUE
);
1028 void wxWindowBase::MoveConstraint(int x
, int y
)
1030 wxLayoutConstraints
*constr
= GetConstraints();
1035 constr
->left
.SetValue(x
);
1036 constr
->left
.SetDone(TRUE
);
1040 constr
->top
.SetValue(y
);
1041 constr
->top
.SetDone(TRUE
);
1046 void wxWindowBase::GetSizeConstraint(int *w
, int *h
) const
1048 wxLayoutConstraints
*constr
= GetConstraints();
1051 *w
= constr
->width
.GetValue();
1052 *h
= constr
->height
.GetValue();
1058 void wxWindowBase::GetClientSizeConstraint(int *w
, int *h
) const
1060 wxLayoutConstraints
*constr
= GetConstraints();
1063 *w
= constr
->width
.GetValue();
1064 *h
= constr
->height
.GetValue();
1067 GetClientSize(w
, h
);
1070 void wxWindowBase::GetPositionConstraint(int *x
, int *y
) const
1072 wxLayoutConstraints
*constr
= GetConstraints();
1075 *x
= constr
->left
.GetValue();
1076 *y
= constr
->top
.GetValue();
1082 #endif // wxUSE_CONSTRAINTS
1084 // ----------------------------------------------------------------------------
1085 // do Update UI processing for child controls
1086 // ----------------------------------------------------------------------------
1088 // TODO: should this be implemented for the child window rather
1089 // than the parent? Then you can override it e.g. for wxCheckBox
1090 // to do the Right Thing rather than having to assume a fixed number
1091 // of control classes.
1092 void wxWindowBase::UpdateWindowUI()
1094 wxWindowID id
= GetId();
1097 wxUpdateUIEvent
event(id
);
1098 event
.m_eventObject
= this;
1100 if ( GetEventHandler()->ProcessEvent(event
) )
1102 if ( event
.GetSetEnabled() )
1103 Enable(event
.GetEnabled());
1105 if ( event
.GetSetText() && IsKindOf(CLASSINFO(wxControl
)) )
1106 ((wxControl
*)this)->SetLabel(event
.GetText());
1108 if ( IsKindOf(CLASSINFO(wxCheckBox
)) )
1110 if ( event
.GetSetChecked() )
1111 ((wxCheckBox
*)this)->SetValue(event
.GetChecked());
1113 // TODO No radio buttons in wxGTK yet
1115 else if ( IsKindOf(CLASSINFO(wxRadioButton
)) )
1117 if ( event
.GetSetChecked() )
1118 ((wxRadioButton
*) this)->SetValue(event
.GetChecked());
1125 // ----------------------------------------------------------------------------
1126 // dialog units translations
1127 // ----------------------------------------------------------------------------
1129 wxPoint
wxWindowBase::ConvertPixelsToDialog(const wxPoint
& pt
)
1131 int charWidth
= GetCharWidth();
1132 int charHeight
= GetCharHeight();
1134 pt2
.x
= (int) ((pt
.x
* 4) / charWidth
) ;
1135 pt2
.y
= (int) ((pt
.y
* 8) / charHeight
) ;
1140 wxPoint
wxWindowBase::ConvertDialogToPixels(const wxPoint
& pt
)
1142 int charWidth
= GetCharWidth();
1143 int charHeight
= GetCharHeight();
1145 pt2
.x
= (int) ((pt
.x
* charWidth
) / 4) ;
1146 pt2
.y
= (int) ((pt
.y
* charHeight
) / 8) ;
1151 // ----------------------------------------------------------------------------
1153 // ----------------------------------------------------------------------------
1155 // propagate the colour change event to the subwindows
1156 void wxWindowBase::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1158 wxWindowList::Node
*node
= GetChildren().GetFirst();
1161 // Only propagate to non-top-level windows
1162 wxWindow
*win
= node
->GetData();
1163 if ( !win
->IsTopLevel() )
1165 wxSysColourChangedEvent event2
;
1166 event
.m_eventObject
= win
;
1167 win
->GetEventHandler()->ProcessEvent(event2
);
1170 node
= node
->GetNext();
1174 // the default action is to populate dialog with data when it's created
1175 void wxWindowBase::OnInitDialog( wxInitDialogEvent
&WXUNUSED(event
) )
1177 TransferDataToWindow();
1180 // ----------------------------------------------------------------------------
1181 // list classes implementation
1182 // ----------------------------------------------------------------------------
1184 void wxWindowListNode::DeleteData()
1186 delete (wxWindow
*)GetData();