1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/sizer.cpp
3 // Purpose: provide new wxSizer class for layout
4 // Author: Robert Roebling and Robin Dunn, contributions by
5 // Dirk Holtwick, Ron Lee
6 // Modified by: Ron Lee
9 // Copyright: (c) Robin Dunn, Robert Roebling
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 // For compilers that support precompilation, includes "wx.h".
14 #include "wx/wxprec.h"
20 #include "wx/display.h"
22 #include "wx/private/flagscheck.h"
25 #include "wx/string.h"
29 #include "wx/settings.h"
30 #include "wx/button.h"
31 #include "wx/statbox.h"
32 #include "wx/toplevel.h"
35 #include "wx/listimpl.cpp"
38 //---------------------------------------------------------------------------
40 IMPLEMENT_CLASS(wxSizerItem
, wxObject
)
41 IMPLEMENT_CLASS(wxSizer
, wxObject
)
42 IMPLEMENT_CLASS(wxGridSizer
, wxSizer
)
43 IMPLEMENT_CLASS(wxFlexGridSizer
, wxGridSizer
)
44 IMPLEMENT_CLASS(wxBoxSizer
, wxSizer
)
46 IMPLEMENT_CLASS(wxStaticBoxSizer
, wxBoxSizer
)
49 IMPLEMENT_CLASS(wxStdDialogButtonSizer
, wxBoxSizer
)
52 WX_DEFINE_EXPORTED_LIST( wxSizerItemList
)
87 // ----------------------------------------------------------------------------
89 // ----------------------------------------------------------------------------
91 // check for flags conflicts
92 static const int SIZER_FLAGS_MASK
=
94 wxADD_FLAG(wxHORIZONTAL
,
95 wxADD_FLAG(wxVERTICAL
,
100 wxADD_FLAG(wxALIGN_NOT
,
101 wxADD_FLAG(wxALIGN_CENTER_HORIZONTAL
,
102 wxADD_FLAG(wxALIGN_RIGHT
,
103 wxADD_FLAG(wxALIGN_BOTTOM
,
104 wxADD_FLAG(wxALIGN_CENTER_VERTICAL
,
105 wxADD_FLAG(wxFIXED_MINSIZE
,
106 wxADD_FLAG(wxRESERVE_SPACE_EVEN_IF_HIDDEN
,
107 wxADD_FLAG(wxSTRETCH_NOT
,
113 #define ASSERT_VALID_SIZER_FLAGS(f) wxASSERT_VALID_FLAGS(f, SIZER_FLAGS_MASK)
116 void wxSizerItem::Init(const wxSizerFlags
& flags
)
120 m_proportion
= flags
.GetProportion();
121 m_flag
= flags
.GetFlags();
122 m_border
= flags
.GetBorderInPixels();
124 ASSERT_VALID_SIZER_FLAGS( m_flag
);
127 wxSizerItem::wxSizerItem()
138 void wxSizerItem::DoSetWindow(wxWindow
*window
)
140 wxCHECK_RET( window
, _T("NULL window in wxSizerItem::SetWindow()") );
142 m_kind
= Item_Window
;
145 // window doesn't become smaller than its initial size, whatever happens
146 m_minSize
= window
->GetSize();
148 if ( m_flag
& wxFIXED_MINSIZE
)
149 window
->SetMinSize(m_minSize
);
151 // aspect ratio calculated from initial size
155 wxSizerItem::wxSizerItem(wxWindow
*window
,
161 m_proportion(proportion
),
167 ASSERT_VALID_SIZER_FLAGS( m_flag
);
173 void wxSizerItem::DoSetSizer(wxSizer
*sizer
)
179 wxSizerItem::wxSizerItem(wxSizer
*sizer
,
186 m_proportion(proportion
),
193 ASSERT_VALID_SIZER_FLAGS( m_flag
);
197 // m_minSize is set later
201 void wxSizerItem::DoSetSpacer(const wxSize
& size
)
203 m_kind
= Item_Spacer
;
204 m_spacer
= new wxSizerSpacer(size
);
209 wxSizerItem::wxSizerItem(int width
,
217 m_minSize(width
, height
), // minimal size is the initial size
218 m_proportion(proportion
),
224 ASSERT_VALID_SIZER_FLAGS( m_flag
);
226 DoSetSpacer(wxSize(width
, height
));
229 wxSizerItem::~wxSizerItem()
235 void wxSizerItem::Free()
243 m_window
->SetContainingSizer(NULL
);
256 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
262 wxSize
wxSizerItem::GetSpacer() const
265 if ( m_kind
== Item_Spacer
)
266 size
= m_spacer
->GetSize();
272 wxSize
wxSizerItem::GetSize() const
281 ret
= m_window
->GetSize();
285 ret
= m_sizer
->GetSize();
289 ret
= m_spacer
->GetSize();
294 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
301 if (m_flag
& wxNORTH
)
303 if (m_flag
& wxSOUTH
)
309 bool wxSizerItem::InformFirstDirection(int direction
, int size
, int availableOtherDir
)
311 // The size that come here will be including borders. Child items should get it
315 if( direction
==wxHORIZONTAL
)
322 else if( direction
==wxVERTICAL
)
324 if (m_flag
& wxNORTH
)
326 if (m_flag
& wxSOUTH
)
332 // Pass the information along to the held object
335 didUse
= GetSizer()->InformFirstDirection(direction
,size
,availableOtherDir
);
337 m_minSize
= GetSizer()->CalcMin();
341 didUse
= GetWindow()->InformFirstDirection(direction
,size
,availableOtherDir
);
343 m_minSize
= m_window
->GetEffectiveMinSize();
345 // This information is useful for items with wxSHAPED flag, since
346 // we can request an optimal min size for such an item. Even if
347 // we overwrite the m_minSize member here, we can read it back from
348 // the owned window (happens automatically).
349 if( (m_flag
& wxSHAPED
) && (m_flag
& wxEXPAND
) && direction
)
351 if( !wxIsNullDouble(m_ratio
) )
353 wxCHECK_MSG( (m_proportion
==0), false, _T("Shaped item, non-zero proportion in wxSizerItem::InformFirstDirection()") );
354 if( direction
==wxHORIZONTAL
&& !wxIsNullDouble(m_ratio
) )
356 // Clip size so that we don't take too much
357 if( availableOtherDir
>=0 && int(size
/m_ratio
)-m_minSize
.y
>availableOtherDir
)
358 size
= int((availableOtherDir
+m_minSize
.y
)*m_ratio
);
359 m_minSize
= wxSize(size
,int(size
/m_ratio
));
361 else if( direction
==wxVERTICAL
)
363 // Clip size so that we don't take too much
364 if( availableOtherDir
>=0 && int(size
*m_ratio
)-m_minSize
.x
>availableOtherDir
)
365 size
= int((availableOtherDir
+m_minSize
.x
)/m_ratio
);
366 m_minSize
= wxSize(int(size
*m_ratio
),size
);
376 wxSize
wxSizerItem::CalcMin()
380 m_minSize
= m_sizer
->GetMinSize();
382 // if we have to preserve aspect ratio _AND_ this is
383 // the first-time calculation, consider ret to be initial size
384 if ( (m_flag
& wxSHAPED
) && wxIsNullDouble(m_ratio
) )
387 else if ( IsWindow() )
389 // Since the size of the window may change during runtime, we
390 // should use the current minimal/best size.
391 m_minSize
= m_window
->GetEffectiveMinSize();
394 return GetMinSizeWithBorder();
397 wxSize
wxSizerItem::GetMinSizeWithBorder() const
399 wxSize ret
= m_minSize
;
405 if (m_flag
& wxNORTH
)
407 if (m_flag
& wxSOUTH
)
414 void wxSizerItem::SetDimension( const wxPoint
& pos_
, const wxSize
& size_
)
418 if (m_flag
& wxSHAPED
)
420 // adjust aspect ratio
421 int rwidth
= (int) (size
.y
* m_ratio
);
425 int rheight
= (int) (size
.x
/ m_ratio
);
426 // add vertical space
427 if (m_flag
& wxALIGN_CENTER_VERTICAL
)
428 pos
.y
+= (size
.y
- rheight
) / 2;
429 else if (m_flag
& wxALIGN_BOTTOM
)
430 pos
.y
+= (size
.y
- rheight
);
431 // use reduced dimensions
434 else if (rwidth
< size
.x
)
436 // add horizontal space
437 if (m_flag
& wxALIGN_CENTER_HORIZONTAL
)
438 pos
.x
+= (size
.x
- rwidth
) / 2;
439 else if (m_flag
& wxALIGN_RIGHT
)
440 pos
.x
+= (size
.x
- rwidth
);
445 // This is what GetPosition() returns. Since we calculate
446 // borders afterwards, GetPosition() will be the left/top
447 // corner of the surrounding border.
459 if (m_flag
& wxNORTH
)
464 if (m_flag
& wxSOUTH
)
474 m_rect
= wxRect(pos
, size
);
479 wxFAIL_MSG( _T("can't set size of uninitialized sizer item") );
483 m_window
->SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
,
484 wxSIZE_ALLOW_MINUS_ONE
);
488 m_sizer
->SetDimension(pos
, size
);
492 m_spacer
->SetSize(size
);
497 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
501 void wxSizerItem::DeleteWindows()
510 //We are deleting the window from this sizer - normally
511 //the window destroys the sizer associated with it,
512 //which might destroy this, which we don't want
513 m_window
->SetContainingSizer(NULL
);
515 //Putting this after the switch will result in a spacer
516 //not being deleted properly on destruction
521 m_sizer
->DeleteWindows();
526 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
531 void wxSizerItem::Show( bool show
)
536 wxFAIL_MSG( _T("can't show uninitialized sizer item") );
540 m_window
->Show(show
);
548 m_spacer
->Show(show
);
553 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
557 bool wxSizerItem::IsShown() const
559 if ( m_flag
& wxRESERVE_SPACE_EVEN_IF_HIDDEN
)
565 // we may be called from CalcMin(), just return false so that we're
570 return m_window
->IsShown();
573 // arbitrarily decide that if at least one of our elements is
574 // shown, so are we (this arbitrariness is the reason for
575 // deprecating this function)
577 // Some apps (such as dialog editors) depend on an empty sizer still
578 // being laid out correctly and reporting the correct size and position.
579 if (m_sizer
->GetChildren().GetCount() == 0)
582 for ( wxSizerItemList::compatibility_iterator
583 node
= m_sizer
->GetChildren().GetFirst();
585 node
= node
->GetNext() )
587 if ( node
->GetData()->IsShown() )
594 return m_spacer
->IsShown();
598 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
604 #if WXWIN_COMPATIBILITY_2_6
605 void wxSizerItem::SetOption( int option
)
607 SetProportion( option
);
610 int wxSizerItem::GetOption() const
612 return GetProportion();
614 #endif // WXWIN_COMPATIBILITY_2_6
617 //---------------------------------------------------------------------------
619 //---------------------------------------------------------------------------
623 WX_CLEAR_LIST(wxSizerItemList
, m_children
);
626 wxSizerItem
* wxSizer::Insert( size_t index
, wxSizerItem
*item
)
628 m_children
.Insert( index
, item
);
630 if ( item
->GetWindow() )
631 item
->GetWindow()->SetContainingSizer( this );
633 if ( item
->GetSizer() )
634 item
->GetSizer()->SetContainingWindow( m_containingWindow
);
639 void wxSizer::SetContainingWindow(wxWindow
*win
)
641 if ( win
== m_containingWindow
)
644 m_containingWindow
= win
;
646 // set the same window for all nested sizers as well, they also are in the
648 for ( wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
650 node
= node
->GetNext() )
652 wxSizerItem
*const item
= node
->GetData();
653 wxSizer
*const sizer
= item
->GetSizer();
657 sizer
->SetContainingWindow(win
);
662 #if WXWIN_COMPATIBILITY_2_6
663 bool wxSizer::Remove( wxWindow
*window
)
665 return Detach( window
);
667 #endif // WXWIN_COMPATIBILITY_2_6
669 bool wxSizer::Remove( wxSizer
*sizer
)
671 wxASSERT_MSG( sizer
, _T("Removing NULL sizer") );
673 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
676 wxSizerItem
*item
= node
->GetData();
678 if (item
->GetSizer() == sizer
)
681 m_children
.Erase( node
);
685 node
= node
->GetNext();
691 bool wxSizer::Remove( int index
)
693 wxCHECK_MSG( index
>= 0 && (size_t)index
< m_children
.GetCount(),
695 _T("Remove index is out of range") );
697 wxSizerItemList::compatibility_iterator node
= m_children
.Item( index
);
699 wxCHECK_MSG( node
, false, _T("Failed to find child node") );
701 delete node
->GetData();
702 m_children
.Erase( node
);
707 bool wxSizer::Detach( wxSizer
*sizer
)
709 wxASSERT_MSG( sizer
, _T("Detaching NULL sizer") );
711 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
714 wxSizerItem
*item
= node
->GetData();
716 if (item
->GetSizer() == sizer
)
720 m_children
.Erase( node
);
723 node
= node
->GetNext();
729 bool wxSizer::Detach( wxWindow
*window
)
731 wxASSERT_MSG( window
, _T("Detaching NULL window") );
733 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
736 wxSizerItem
*item
= node
->GetData();
738 if (item
->GetWindow() == window
)
741 m_children
.Erase( node
);
744 node
= node
->GetNext();
750 bool wxSizer::Detach( int index
)
752 wxCHECK_MSG( index
>= 0 && (size_t)index
< m_children
.GetCount(),
754 _T("Detach index is out of range") );
756 wxSizerItemList::compatibility_iterator node
= m_children
.Item( index
);
758 wxCHECK_MSG( node
, false, _T("Failed to find child node") );
760 wxSizerItem
*item
= node
->GetData();
762 if ( item
->IsSizer() )
766 m_children
.Erase( node
);
770 bool wxSizer::Replace( wxWindow
*oldwin
, wxWindow
*newwin
, bool recursive
)
772 wxASSERT_MSG( oldwin
, _T("Replacing NULL window") );
773 wxASSERT_MSG( newwin
, _T("Replacing with NULL window") );
775 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
778 wxSizerItem
*item
= node
->GetData();
780 if (item
->GetWindow() == oldwin
)
782 item
->AssignWindow(newwin
);
783 newwin
->SetContainingSizer( this );
786 else if (recursive
&& item
->IsSizer())
788 if (item
->GetSizer()->Replace( oldwin
, newwin
, true ))
792 node
= node
->GetNext();
798 bool wxSizer::Replace( wxSizer
*oldsz
, wxSizer
*newsz
, bool recursive
)
800 wxASSERT_MSG( oldsz
, _T("Replacing NULL sizer") );
801 wxASSERT_MSG( newsz
, _T("Replacing with NULL sizer") );
803 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
806 wxSizerItem
*item
= node
->GetData();
808 if (item
->GetSizer() == oldsz
)
810 item
->AssignSizer(newsz
);
813 else if (recursive
&& item
->IsSizer())
815 if (item
->GetSizer()->Replace( oldsz
, newsz
, true ))
819 node
= node
->GetNext();
825 bool wxSizer::Replace( size_t old
, wxSizerItem
*newitem
)
827 wxCHECK_MSG( old
< m_children
.GetCount(), false, _T("Replace index is out of range") );
828 wxASSERT_MSG( newitem
, _T("Replacing with NULL item") );
830 wxSizerItemList::compatibility_iterator node
= m_children
.Item( old
);
832 wxCHECK_MSG( node
, false, _T("Failed to find child node") );
834 wxSizerItem
*item
= node
->GetData();
835 node
->SetData(newitem
);
841 void wxSizer::Clear( bool delete_windows
)
843 // First clear the ContainingSizer pointers
844 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
847 wxSizerItem
*item
= node
->GetData();
849 if (item
->IsWindow())
850 item
->GetWindow()->SetContainingSizer( NULL
);
851 node
= node
->GetNext();
854 // Destroy the windows if needed
858 // Now empty the list
859 WX_CLEAR_LIST(wxSizerItemList
, m_children
);
862 void wxSizer::DeleteWindows()
864 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
867 wxSizerItem
*item
= node
->GetData();
869 item
->DeleteWindows();
870 node
= node
->GetNext();
874 wxSize
wxSizer::ComputeFittingClientSize(wxWindow
*window
)
876 wxCHECK_MSG( window
, wxDefaultSize
, "window can't be NULL" );
878 // take the min size by default and limit it by max size
879 wxSize size
= GetMinClientSize(window
);
882 wxTopLevelWindow
*tlw
= wxDynamicCast(window
, wxTopLevelWindow
);
885 // hack for small screen devices where TLWs are always full screen
886 if ( tlw
->IsAlwaysMaximized() )
888 return tlw
->GetClientSize();
891 // limit the window to the size of the display it is on
892 int disp
= wxDisplay::GetFromWindow(window
);
893 if ( disp
== wxNOT_FOUND
)
895 // or, if we don't know which one it is, of the main one
899 sizeMax
= wxDisplay(disp
).GetClientArea().GetSize();
901 // space for decorations and toolbars etc.
902 sizeMax
= tlw
->WindowToClientSize(sizeMax
);
906 sizeMax
= GetMaxClientSize(window
);
909 if ( sizeMax
.x
!= wxDefaultCoord
&& size
.x
> sizeMax
.x
)
911 if ( sizeMax
.y
!= wxDefaultCoord
&& size
.y
> sizeMax
.y
)
917 wxSize
wxSizer::ComputeFittingWindowSize(wxWindow
*window
)
919 wxCHECK_MSG( window
, wxDefaultSize
, "window can't be NULL" );
921 return window
->ClientToWindowSize(ComputeFittingClientSize(window
));
924 wxSize
wxSizer::Fit( wxWindow
*window
)
926 wxCHECK_MSG( window
, wxDefaultSize
, "window can't be NULL" );
929 window
->SetClientSize(ComputeFittingClientSize(window
));
931 // return entire size
932 return window
->GetSize();
935 void wxSizer::FitInside( wxWindow
*window
)
938 if (window
->IsTopLevel())
939 size
= VirtualFitSize( window
);
941 size
= GetMinClientSize( window
);
943 window
->SetVirtualSize( size
);
946 void wxSizer::Layout()
948 // (re)calculates minimums needed for each item and other preparations
952 // Applies the layout and repositions/resizes the items
956 void wxSizer::SetSizeHints( wxWindow
*window
)
958 // Preserve the window's max size hints, but set the
959 // lower bound according to the sizer calculations.
961 // This is equivalent to calling Fit(), except that we need to set
962 // the size hints _in between_ the two steps performed by Fit
963 // (1. ComputeFittingClientSize, 2. SetClientSize). That's because
964 // otherwise SetClientSize() could have no effect if there already are
965 // size hints in effect that forbid requested client size.
967 const wxSize clientSize
= ComputeFittingClientSize(window
);
969 window
->SetMinClientSize(clientSize
);
970 window
->SetClientSize(clientSize
);
973 #if WXWIN_COMPATIBILITY_2_8
974 void wxSizer::SetVirtualSizeHints( wxWindow
*window
)
978 #endif // WXWIN_COMPATIBILITY_2_8
980 // TODO on mac we need a function that determines how much free space this
981 // min size contains, in order to make sure that we have 20 pixels of free
982 // space around the controls
983 wxSize
wxSizer::GetMaxClientSize( wxWindow
*window
) const
985 return window
->WindowToClientSize(window
->GetMaxSize());
988 wxSize
wxSizer::GetMinClientSize( wxWindow
*WXUNUSED(window
) )
990 return GetMinSize(); // Already returns client size.
993 wxSize
wxSizer::VirtualFitSize( wxWindow
*window
)
995 wxSize size
= GetMinClientSize( window
);
996 wxSize sizeMax
= GetMaxClientSize( window
);
998 // Limit the size if sizeMax != wxDefaultSize
1000 if ( size
.x
> sizeMax
.x
&& sizeMax
.x
!= wxDefaultCoord
)
1002 if ( size
.y
> sizeMax
.y
&& sizeMax
.y
!= wxDefaultCoord
)
1008 wxSize
wxSizer::GetMinSize()
1010 wxSize
ret( CalcMin() );
1011 if (ret
.x
< m_minSize
.x
) ret
.x
= m_minSize
.x
;
1012 if (ret
.y
< m_minSize
.y
) ret
.y
= m_minSize
.y
;
1016 void wxSizer::DoSetMinSize( int width
, int height
)
1018 m_minSize
.x
= width
;
1019 m_minSize
.y
= height
;
1022 bool wxSizer::DoSetItemMinSize( wxWindow
*window
, int width
, int height
)
1024 wxASSERT_MSG( window
, _T("SetMinSize for NULL window") );
1026 // Is it our immediate child?
1028 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1031 wxSizerItem
*item
= node
->GetData();
1033 if (item
->GetWindow() == window
)
1035 item
->SetMinSize( width
, height
);
1038 node
= node
->GetNext();
1041 // No? Search any subsizers we own then
1043 node
= m_children
.GetFirst();
1046 wxSizerItem
*item
= node
->GetData();
1048 if ( item
->GetSizer() &&
1049 item
->GetSizer()->DoSetItemMinSize( window
, width
, height
) )
1051 // A child sizer found the requested windw, exit.
1054 node
= node
->GetNext();
1060 bool wxSizer::DoSetItemMinSize( wxSizer
*sizer
, int width
, int height
)
1062 wxASSERT_MSG( sizer
, _T("SetMinSize for NULL sizer") );
1064 // Is it our immediate child?
1066 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1069 wxSizerItem
*item
= node
->GetData();
1071 if (item
->GetSizer() == sizer
)
1073 item
->GetSizer()->DoSetMinSize( width
, height
);
1076 node
= node
->GetNext();
1079 // No? Search any subsizers we own then
1081 node
= m_children
.GetFirst();
1084 wxSizerItem
*item
= node
->GetData();
1086 if ( item
->GetSizer() &&
1087 item
->GetSizer()->DoSetItemMinSize( sizer
, width
, height
) )
1089 // A child found the requested sizer, exit.
1092 node
= node
->GetNext();
1098 bool wxSizer::DoSetItemMinSize( size_t index
, int width
, int height
)
1100 wxSizerItemList::compatibility_iterator node
= m_children
.Item( index
);
1102 wxCHECK_MSG( node
, false, _T("Failed to find child node") );
1104 wxSizerItem
*item
= node
->GetData();
1106 if (item
->GetSizer())
1108 // Sizers contains the minimal size in them, if not calculated ...
1109 item
->GetSizer()->DoSetMinSize( width
, height
);
1113 // ... but the minimal size of spacers and windows is stored via the item
1114 item
->SetMinSize( width
, height
);
1120 wxSizerItem
* wxSizer::GetItem( wxWindow
*window
, bool recursive
)
1122 wxASSERT_MSG( window
, _T("GetItem for NULL window") );
1124 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1127 wxSizerItem
*item
= node
->GetData();
1129 if (item
->GetWindow() == window
)
1133 else if (recursive
&& item
->IsSizer())
1135 wxSizerItem
*subitem
= item
->GetSizer()->GetItem( window
, true );
1140 node
= node
->GetNext();
1146 wxSizerItem
* wxSizer::GetItem( wxSizer
*sizer
, bool recursive
)
1148 wxASSERT_MSG( sizer
, _T("GetItem for NULL sizer") );
1150 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1153 wxSizerItem
*item
= node
->GetData();
1155 if (item
->GetSizer() == sizer
)
1159 else if (recursive
&& item
->IsSizer())
1161 wxSizerItem
*subitem
= item
->GetSizer()->GetItem( sizer
, true );
1166 node
= node
->GetNext();
1172 wxSizerItem
* wxSizer::GetItem( size_t index
)
1174 wxCHECK_MSG( index
< m_children
.GetCount(),
1176 _T("GetItem index is out of range") );
1178 return m_children
.Item( index
)->GetData();
1181 wxSizerItem
* wxSizer::GetItemById( int id
, bool recursive
)
1183 // This gets a sizer item by the id of the sizer item
1184 // and NOT the id of a window if the item is a window.
1186 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1189 wxSizerItem
*item
= node
->GetData();
1191 if (item
->GetId() == id
)
1195 else if (recursive
&& item
->IsSizer())
1197 wxSizerItem
*subitem
= item
->GetSizer()->GetItemById( id
, true );
1202 node
= node
->GetNext();
1208 bool wxSizer::Show( wxWindow
*window
, bool show
, bool recursive
)
1210 wxSizerItem
*item
= GetItem( window
, recursive
);
1221 bool wxSizer::Show( wxSizer
*sizer
, bool show
, bool recursive
)
1223 wxSizerItem
*item
= GetItem( sizer
, recursive
);
1234 bool wxSizer::Show( size_t index
, bool show
)
1236 wxSizerItem
*item
= GetItem( index
);
1247 void wxSizer::ShowItems( bool show
)
1249 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1252 node
->GetData()->Show( show
);
1253 node
= node
->GetNext();
1257 bool wxSizer::IsShown( wxWindow
*window
) const
1259 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1262 wxSizerItem
*item
= node
->GetData();
1264 if (item
->GetWindow() == window
)
1266 return item
->IsShown();
1268 node
= node
->GetNext();
1271 wxFAIL_MSG( _T("IsShown failed to find sizer item") );
1276 bool wxSizer::IsShown( wxSizer
*sizer
) const
1278 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1281 wxSizerItem
*item
= node
->GetData();
1283 if (item
->GetSizer() == sizer
)
1285 return item
->IsShown();
1287 node
= node
->GetNext();
1290 wxFAIL_MSG( _T("IsShown failed to find sizer item") );
1295 bool wxSizer::IsShown( size_t index
) const
1297 wxCHECK_MSG( index
< m_children
.GetCount(),
1299 _T("IsShown index is out of range") );
1301 return m_children
.Item( index
)->GetData()->IsShown();
1305 //---------------------------------------------------------------------------
1307 //---------------------------------------------------------------------------
1309 wxGridSizer::wxGridSizer( int rows
, int cols
, int vgap
, int hgap
)
1310 : m_rows( ( cols
== 0 && rows
== 0 ) ? 1 : rows
)
1317 wxGridSizer::wxGridSizer( int cols
, int vgap
, int hgap
)
1318 : m_rows( cols
== 0 ? 1 : 0 )
1325 int wxGridSizer::CalcRowsCols(int& nrows
, int& ncols
) const
1327 int nitems
= m_children
.GetCount();
1333 nrows
= (nitems
+ m_cols
- 1) / m_cols
;
1337 ncols
= (nitems
+ m_rows
- 1) / m_rows
;
1340 else // 0 columns, 0 rows?
1342 wxFAIL_MSG( _T("grid sizer must have either rows or columns fixed") );
1351 void wxGridSizer::RecalcSizes()
1353 int nitems
, nrows
, ncols
;
1354 if ( (nitems
= CalcRowsCols(nrows
, ncols
)) == 0 )
1357 wxSize
sz( GetSize() );
1358 wxPoint
pt( GetPosition() );
1360 int w
= (sz
.x
- (ncols
- 1) * m_hgap
) / ncols
;
1361 int h
= (sz
.y
- (nrows
- 1) * m_vgap
) / nrows
;
1364 for (int c
= 0; c
< ncols
; c
++)
1367 for (int r
= 0; r
< nrows
; r
++)
1369 int i
= r
* ncols
+ c
;
1372 wxSizerItemList::compatibility_iterator node
= m_children
.Item( i
);
1374 wxASSERT_MSG( node
, _T("Failed to find SizerItemList node") );
1376 SetItemBounds( node
->GetData(), x
, y
, w
, h
);
1384 wxSize
wxGridSizer::CalcMin()
1387 if ( CalcRowsCols(nrows
, ncols
) == 0 )
1390 // Find the max width and height for any component
1394 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1397 wxSizerItem
*item
= node
->GetData();
1398 wxSize
sz( item
->CalcMin() );
1400 w
= wxMax( w
, sz
.x
);
1401 h
= wxMax( h
, sz
.y
);
1403 node
= node
->GetNext();
1406 // In case we have a nested sizer with a two step algo , give it
1407 // a chance to adjust to that (we give it width component)
1408 node
= m_children
.GetFirst();
1409 bool didChangeMinSize
= false;
1412 wxSizerItem
*item
= node
->GetData();
1413 didChangeMinSize
|= item
->InformFirstDirection( wxHORIZONTAL
, w
, -1 );
1415 node
= node
->GetNext();
1418 // And redo iteration in case min size changed
1419 if( didChangeMinSize
)
1421 node
= m_children
.GetFirst();
1425 wxSizerItem
*item
= node
->GetData();
1426 wxSize
sz( item
->GetMinSizeWithBorder() );
1428 w
= wxMax( w
, sz
.x
);
1429 h
= wxMax( h
, sz
.y
);
1431 node
= node
->GetNext();
1435 return wxSize( ncols
* w
+ (ncols
-1) * m_hgap
,
1436 nrows
* h
+ (nrows
-1) * m_vgap
);
1439 void wxGridSizer::SetItemBounds( wxSizerItem
*item
, int x
, int y
, int w
, int h
)
1442 wxSize
sz( item
->GetMinSizeWithBorder() );
1443 int flag
= item
->GetFlag();
1445 if ((flag
& wxEXPAND
) || (flag
& wxSHAPED
))
1451 if (flag
& wxALIGN_CENTER_HORIZONTAL
)
1453 pt
.x
= x
+ (w
- sz
.x
) / 2;
1455 else if (flag
& wxALIGN_RIGHT
)
1457 pt
.x
= x
+ (w
- sz
.x
);
1460 if (flag
& wxALIGN_CENTER_VERTICAL
)
1462 pt
.y
= y
+ (h
- sz
.y
) / 2;
1464 else if (flag
& wxALIGN_BOTTOM
)
1466 pt
.y
= y
+ (h
- sz
.y
);
1470 item
->SetDimension(pt
, sz
);
1473 //---------------------------------------------------------------------------
1475 //---------------------------------------------------------------------------
1477 wxFlexGridSizer::wxFlexGridSizer( int rows
, int cols
, int vgap
, int hgap
)
1478 : wxGridSizer( rows
, cols
, vgap
, hgap
),
1479 m_flexDirection(wxBOTH
),
1480 m_growMode(wxFLEX_GROWMODE_SPECIFIED
)
1484 wxFlexGridSizer::wxFlexGridSizer( int cols
, int vgap
, int hgap
)
1485 : wxGridSizer( cols
, vgap
, hgap
),
1486 m_flexDirection(wxBOTH
),
1487 m_growMode(wxFLEX_GROWMODE_SPECIFIED
)
1491 wxFlexGridSizer::~wxFlexGridSizer()
1495 void wxFlexGridSizer::RecalcSizes()
1498 if ( !CalcRowsCols(nrows
, ncols
) )
1501 const wxPoint
pt(GetPosition());
1502 const wxSize
sz(GetSize());
1504 AdjustForGrowables(sz
);
1506 wxSizerItemList::const_iterator i
= m_children
.begin();
1507 const wxSizerItemList::const_iterator end
= m_children
.end();
1510 for ( int r
= 0; r
< nrows
; r
++ )
1512 if ( m_rowHeights
[r
] == -1 )
1514 // this row is entirely hidden, skip it
1515 for ( int c
= 0; c
< ncols
; c
++ )
1526 const int hrow
= m_rowHeights
[r
];
1527 int h
= sz
.y
- y
; // max remaining height, don't overflow it
1532 for ( int c
= 0; c
< ncols
&& i
!= end
; c
++, ++i
)
1534 const int wcol
= m_colWidths
[c
];
1539 int w
= sz
.x
- x
; // max possible value, ensure we don't overflow
1543 SetItemBounds(*i
, pt
.x
+ x
, pt
.y
+ y
, w
, h
);
1555 // helper function used in CalcMin() to sum up the sizes of non-hidden items
1556 static int SumArraySizes(const wxArrayInt
& sizes
, int gap
)
1558 // Sum total minimum size, including gaps between rows/columns.
1559 // -1 is used as a magic number meaning empty row/column.
1562 const size_t count
= sizes
.size();
1563 for ( size_t n
= 0; n
< count
; n
++ )
1565 if ( sizes
[n
] != -1 )
1568 total
+= gap
; // separate from the previous column
1577 void wxFlexGridSizer::FindWidthsAndHeights(int nrows
, int ncols
)
1579 // We have to recalculate the sizes in case the item minimum size has
1580 // changed since the previous layout, or the item has been hidden using
1581 // wxSizer::Show(). If all the items in a row/column are hidden, the final
1582 // dimension of the row/column will be -1, indicating that the column
1583 // itself is hidden.
1584 m_rowHeights
.assign(nrows
, -1);
1585 m_colWidths
.assign(ncols
, -1);
1587 // n is the index of the item in left-to-right top-to-bottom order
1589 for ( wxSizerItemList::iterator i
= m_children
.begin();
1590 i
!= m_children
.end();
1593 wxSizerItem
* const item
= *i
;
1594 if ( item
->IsShown() )
1596 // NOTE: Not doing the calculation here, this is just
1597 // for finding max values.
1598 const wxSize
sz(item
->GetMinSizeWithBorder());
1600 const int row
= n
/ ncols
;
1601 const int col
= n
% ncols
;
1603 if ( sz
.y
> m_rowHeights
[row
] )
1604 m_rowHeights
[row
] = sz
.y
;
1605 if ( sz
.x
> m_colWidths
[col
] )
1606 m_colWidths
[col
] = sz
.x
;
1610 AdjustForFlexDirection();
1612 m_calculatedMinSize
= wxSize(SumArraySizes(m_colWidths
, m_hgap
),
1613 SumArraySizes(m_rowHeights
, m_vgap
));
1616 wxSize
wxFlexGridSizer::CalcMin()
1621 // Number of rows/columns can change as items are added or removed.
1622 if ( !CalcRowsCols(nrows
, ncols
) )
1626 // We have to recalculate the sizes in case the item minimum size has
1627 // changed since the previous layout, or the item has been hidden using
1628 // wxSizer::Show(). If all the items in a row/column are hidden, the final
1629 // dimension of the row/column will be -1, indicating that the column
1630 // itself is hidden.
1631 m_rowHeights
.assign(nrows
, -1);
1632 m_colWidths
.assign(ncols
, -1);
1634 // n is the index of the item in left-to-right top-to-bottom order
1636 for ( wxSizerItemList::iterator i
= m_children
.begin();
1637 i
!= m_children
.end();
1640 wxSizerItem
* const item
= *i
;
1641 if ( item
->IsShown() )
1647 // The stage of looking for max values in each row/column has been
1648 // made a separate function, since it's reused in AdjustForGrowables.
1649 FindWidthsAndHeights(nrows
,ncols
);
1651 return m_calculatedMinSize
;
1654 void wxFlexGridSizer::AdjustForFlexDirection()
1656 // the logic in CalcMin works when we resize flexibly in both directions
1657 // but maybe this is not the case
1658 if ( m_flexDirection
!= wxBOTH
)
1660 // select the array corresponding to the direction in which we do *not*
1662 wxArrayInt
& array
= m_flexDirection
== wxVERTICAL
? m_colWidths
1665 const size_t count
= array
.GetCount();
1667 // find the largest value in this array
1671 for ( n
= 0; n
< count
; ++n
)
1673 if ( array
[n
] > largest
)
1677 // and now fill it with the largest value
1678 for ( n
= 0; n
< count
; ++n
)
1680 // don't touch hidden rows
1681 if ( array
[n
] != -1 )
1687 // helper of AdjustForGrowables() which is called for rows/columns separately
1690 // delta: the extra space, we do nothing unless it's positive
1691 // growable: indices or growable rows/cols in sizes array
1692 // sizes: the height/widths of rows/cols to adjust
1693 // proportions: proportions of the growable rows/cols or NULL if they all
1694 // should be assumed to have proportion of 1
1696 DoAdjustForGrowables(int delta
,
1697 const wxArrayInt
& growable
,
1699 const wxArrayInt
*proportions
)
1704 // total sum of proportions of all non-hidden rows
1705 int sum_proportions
= 0;
1707 // number of currently shown growable rows
1710 const int max_idx
= sizes
.size();
1712 const size_t count
= growable
.size();
1714 for ( idx
= 0; idx
< count
; idx
++ )
1716 // Since the number of rows/columns can change as items are
1717 // inserted/deleted, we need to verify at runtime that the
1718 // requested growable rows/columns are still valid.
1719 if ( growable
[idx
] >= max_idx
)
1722 // If all items in a row/column are hidden, that row/column will
1723 // have a dimension of -1. This causes the row/column to be
1724 // hidden completely.
1725 if ( sizes
[growable
[idx
]] == -1 )
1729 sum_proportions
+= (*proportions
)[idx
];
1737 // the remaining extra free space, adjusted during each iteration
1738 for ( idx
= 0; idx
< count
; idx
++ )
1740 if ( growable
[idx
] >= max_idx
)
1743 if ( sizes
[ growable
[idx
] ] == -1 )
1747 if ( sum_proportions
== 0 )
1749 // no growable rows -- divide extra space evenly among all
1750 cur_delta
= delta
/num
;
1753 else // allocate extra space proportionally
1755 const int cur_prop
= (*proportions
)[idx
];
1756 cur_delta
= (delta
*cur_prop
)/sum_proportions
;
1757 sum_proportions
-= cur_prop
;
1760 sizes
[growable
[idx
]] += cur_delta
;
1765 void wxFlexGridSizer::AdjustForGrowables(const wxSize
& sz
)
1767 if ( (m_flexDirection
& wxHORIZONTAL
) || (m_growMode
!= wxFLEX_GROWMODE_NONE
) )
1769 DoAdjustForGrowables
1771 sz
.x
- m_calculatedMinSize
.x
,
1774 m_growMode
== wxFLEX_GROWMODE_SPECIFIED
? &m_growableColsProportions
1778 // This gives nested objects that benefit from knowing one size
1779 // component in advance the chance to use that.
1780 bool didAdjustMinSize
= false;
1782 CalcRowsCols(nrows
, ncols
);
1784 // Iterate over all items and inform about column width
1786 for ( wxSizerItemList::iterator i
= m_children
.begin();
1787 i
!= m_children
.end();
1790 const int col
= n
% ncols
;
1791 didAdjustMinSize
|= (*i
)->InformFirstDirection(wxHORIZONTAL
, m_colWidths
[col
], sz
.y
- m_calculatedMinSize
.y
);
1794 // Only redo if info was actually used
1795 if( didAdjustMinSize
)
1797 DoAdjustForGrowables
1799 sz
.x
- m_calculatedMinSize
.x
,
1802 m_growMode
== wxFLEX_GROWMODE_SPECIFIED
? &m_growableColsProportions
1808 if ( (m_flexDirection
& wxVERTICAL
) || (m_growMode
!= wxFLEX_GROWMODE_NONE
) )
1810 // pass NULL instead of proportions if the grow mode is ALL as we
1811 // should treat all rows as having proportion of 1 then
1812 DoAdjustForGrowables
1814 sz
.y
- m_calculatedMinSize
.y
,
1817 m_growMode
== wxFLEX_GROWMODE_SPECIFIED
? &m_growableRowsProportions
1824 void wxFlexGridSizer::AddGrowableRow( size_t idx
, int proportion
)
1826 m_growableRows
.Add( idx
);
1827 m_growableRowsProportions
.Add( proportion
);
1830 void wxFlexGridSizer::AddGrowableCol( size_t idx
, int proportion
)
1832 m_growableCols
.Add( idx
);
1833 m_growableColsProportions
.Add( proportion
);
1836 // helper function for RemoveGrowableCol/Row()
1838 DoRemoveFromArrays(size_t idx
, wxArrayInt
& items
, wxArrayInt
& proportions
)
1840 const size_t count
= items
.size();
1841 for ( size_t n
= 0; n
< count
; n
++ )
1843 if ( (size_t)items
[n
] == idx
)
1846 proportions
.RemoveAt(n
);
1851 wxFAIL_MSG( _T("column/row is already not growable") );
1854 void wxFlexGridSizer::RemoveGrowableCol( size_t idx
)
1856 DoRemoveFromArrays(idx
, m_growableCols
, m_growableColsProportions
);
1859 void wxFlexGridSizer::RemoveGrowableRow( size_t idx
)
1861 DoRemoveFromArrays(idx
, m_growableRows
, m_growableRowsProportions
);
1864 //---------------------------------------------------------------------------
1866 //---------------------------------------------------------------------------
1868 void wxBoxSizer::RecalcSizes()
1870 if ( m_children
.empty() )
1873 const wxCoord totalMinorSize
= GetSizeInMinorDir(m_size
);
1875 // the amount of free space which we should redistribute among the
1876 // stretchable items (i.e. those with non zero proportion)
1877 int delta
= GetSizeInMajorDir(m_size
) - GetSizeInMajorDir(m_minSize
);
1880 // Inform child items about the size in minor direction, that can
1881 // change how much free space we have in major dir and how to distribute it.
1882 int majorMinSum
= 0;
1883 wxSizerItemList::const_iterator i
;
1884 for ( i
= m_children
.begin();
1885 i
!= m_children
.end();
1888 wxSizerItem
* const item
= *i
;
1890 if ( !item
->IsShown() )
1893 wxSize szMinPrev
= item
->GetMinSizeWithBorder();
1894 item
->InformFirstDirection(m_orient
^wxBOTH
,totalMinorSize
,delta
);
1895 wxSize szMin
= item
->GetMinSizeWithBorder();
1896 int deltaChange
= GetSizeInMajorDir(szMin
-szMinPrev
);
1899 // Since we passed available space along to the item, it should not
1900 // take too much, so delta should not become negative.
1901 delta
-= deltaChange
;
1903 majorMinSum
+= GetSizeInMajorDir(item
->GetMinSizeWithBorder());
1905 // And update our min size
1906 SizeInMajorDir(m_minSize
) = majorMinSum
;
1909 // might have a new delta now
1910 delta
= GetSizeInMajorDir(m_size
) - GetSizeInMajorDir(m_minSize
);
1912 // the position at which we put the next child
1913 wxPoint
pt(m_position
);
1915 int totalProportion
= m_totalProportion
;
1916 for ( i
= m_children
.begin();
1917 i
!= m_children
.end();
1920 wxSizerItem
* const item
= *i
;
1922 if ( !item
->IsShown() )
1925 const wxSize
sizeThis(item
->GetMinSizeWithBorder());
1927 // adjust the size in the major direction using the proportion
1928 wxCoord majorSize
= GetSizeInMajorDir(sizeThis
);
1929 const int propItem
= item
->GetProportion();
1932 const int deltaItem
= (delta
* propItem
) / totalProportion
;
1934 majorSize
+= deltaItem
;
1937 totalProportion
-= propItem
;
1941 // apply the alignment in the minor direction
1942 wxPoint
posChild(pt
);
1944 wxCoord minorSize
= GetSizeInMinorDir(sizeThis
);
1945 const int flag
= item
->GetFlag();
1946 if ( flag
& (wxEXPAND
| wxSHAPED
) )
1948 minorSize
= totalMinorSize
;
1950 else if ( flag
& (IsVertical() ? wxALIGN_RIGHT
: wxALIGN_BOTTOM
) )
1952 PosInMinorDir(posChild
) += totalMinorSize
- minorSize
;
1954 // NB: wxCENTRE is used here only for backwards compatibility,
1955 // wxALIGN_CENTRE should be used in new code
1956 else if ( flag
& (wxCENTER
| wxALIGN_CENTRE
) )
1958 PosInMinorDir(posChild
) += (totalMinorSize
- minorSize
) / 2;
1962 // apply RTL adjustment for horizontal sizers:
1963 if ( !IsVertical() && m_containingWindow
)
1965 posChild
.x
= m_containingWindow
->AdjustForLayoutDirection
1973 // finally set size of this child and advance to the next one
1974 item
->SetDimension(posChild
, SizeFromMajorMinor(majorSize
, minorSize
));
1976 PosInMajorDir(pt
) += majorSize
;
1980 wxSize
wxBoxSizer::CalcMin()
1982 m_totalProportion
= 0;
1983 m_minSize
= wxSize(0, 0);
1985 // calculate the minimal sizes for all items and count sum of proportions
1986 for ( wxSizerItemList::const_iterator i
= m_children
.begin();
1987 i
!= m_children
.end();
1990 wxSizerItem
* const item
= *i
;
1992 if ( !item
->IsShown() )
1995 const wxSize sizeMinThis
= item
->CalcMin();
1996 SizeInMajorDir(m_minSize
) += GetSizeInMajorDir(sizeMinThis
);
1997 if ( GetSizeInMinorDir(sizeMinThis
) > GetSizeInMinorDir(m_minSize
) )
1998 SizeInMinorDir(m_minSize
) = GetSizeInMinorDir(sizeMinThis
);
2000 m_totalProportion
+= item
->GetProportion();
2006 //---------------------------------------------------------------------------
2008 //---------------------------------------------------------------------------
2012 wxStaticBoxSizer::wxStaticBoxSizer( wxStaticBox
*box
, int orient
)
2013 : wxBoxSizer( orient
),
2016 wxASSERT_MSG( box
, wxT("wxStaticBoxSizer needs a static box") );
2018 // do this so that our Detach() is called if the static box is destroyed
2020 m_staticBox
->SetContainingSizer(this);
2023 wxStaticBoxSizer::wxStaticBoxSizer(int orient
, wxWindow
*win
, const wxString
& s
)
2024 : wxBoxSizer(orient
),
2025 m_staticBox(new wxStaticBox(win
, wxID_ANY
, s
))
2028 m_staticBox
->SetContainingSizer(this);
2031 wxStaticBoxSizer::~wxStaticBoxSizer()
2036 static void GetStaticBoxBorders( wxStaticBox
*box
,
2040 // this has to be done platform by platform as there is no way to
2041 // guess the thickness of a wxStaticBox border
2042 box
->GetBordersForSizer(borderTop
, borderOther
);
2045 void wxStaticBoxSizer::RecalcSizes()
2047 int top_border
, other_border
;
2048 GetStaticBoxBorders(m_staticBox
, &top_border
, &other_border
);
2050 m_staticBox
->SetSize( m_position
.x
, m_position
.y
, m_size
.x
, m_size
.y
);
2052 wxPoint
old_pos( m_position
);
2053 m_position
.x
+= other_border
;
2054 m_position
.y
+= top_border
;
2055 wxSize
old_size( m_size
);
2056 m_size
.x
-= 2*other_border
;
2057 m_size
.y
-= top_border
+ other_border
;
2059 wxBoxSizer::RecalcSizes();
2061 m_position
= old_pos
;
2065 wxSize
wxStaticBoxSizer::CalcMin()
2067 int top_border
, other_border
;
2068 GetStaticBoxBorders(m_staticBox
, &top_border
, &other_border
);
2070 wxSize
ret( wxBoxSizer::CalcMin() );
2071 ret
.x
+= 2*other_border
;
2072 ret
.y
+= other_border
+ top_border
;
2077 void wxStaticBoxSizer::ShowItems( bool show
)
2079 m_staticBox
->Show( show
);
2080 wxBoxSizer::ShowItems( show
);
2083 bool wxStaticBoxSizer::Detach( wxWindow
*window
)
2085 // avoid deleting m_staticBox in our dtor if it's being detached from the
2086 // sizer (which can happen because it's being already destroyed for
2088 if ( window
== m_staticBox
)
2094 return wxSizer::Detach( window
);
2097 #endif // wxUSE_STATBOX
2101 wxStdDialogButtonSizer::wxStdDialogButtonSizer()
2102 : wxBoxSizer(wxHORIZONTAL
)
2104 // Vertical buttons with lots of space on either side
2105 // looks rubbish on WinCE, so let's not do this for now.
2106 // If we are going to use vertical buttons, we should
2107 // put the sizer to the right of other controls in the dialog,
2108 // and that's beyond the scope of this sizer.
2110 bool is_pda
= (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
2111 // If we have a PDA screen, put yes/no button over
2112 // all other buttons, otherwise on the left side.
2114 m_orient
= wxVERTICAL
;
2117 m_buttonAffirmative
= NULL
;
2118 m_buttonApply
= NULL
;
2119 m_buttonNegative
= NULL
;
2120 m_buttonCancel
= NULL
;
2121 m_buttonHelp
= NULL
;
2124 void wxStdDialogButtonSizer::AddButton(wxButton
*mybutton
)
2126 switch (mybutton
->GetId())
2131 m_buttonAffirmative
= mybutton
;
2134 m_buttonApply
= mybutton
;
2137 m_buttonNegative
= mybutton
;
2141 m_buttonCancel
= mybutton
;
2144 case wxID_CONTEXT_HELP
:
2145 m_buttonHelp
= mybutton
;
2152 void wxStdDialogButtonSizer::SetAffirmativeButton( wxButton
*button
)
2154 m_buttonAffirmative
= button
;
2157 void wxStdDialogButtonSizer::SetNegativeButton( wxButton
*button
)
2159 m_buttonNegative
= button
;
2162 void wxStdDialogButtonSizer::SetCancelButton( wxButton
*button
)
2164 m_buttonCancel
= button
;
2167 void wxStdDialogButtonSizer::Realize()
2170 Add(0, 0, 0, wxLEFT
, 6);
2172 Add((wxWindow
*)m_buttonHelp
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 6);
2174 if (m_buttonNegative
){
2175 // HIG POLICE BULLETIN - destructive buttons need extra padding
2176 // 24 pixels on either side
2177 Add((wxWindow
*)m_buttonNegative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 12);
2180 // extra whitespace between help/negative and cancel/ok buttons
2181 Add(0, 0, 1, wxEXPAND
, 0);
2183 if (m_buttonCancel
){
2184 Add((wxWindow
*)m_buttonCancel
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 6);
2185 // Cancel or help should be default
2186 // m_buttonCancel->SetDefaultButton();
2189 // Ugh, Mac doesn't really have apply dialogs, so I'll just
2190 // figure the best place is between Cancel and OK
2192 Add((wxWindow
*)m_buttonApply
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 6);
2194 if (m_buttonAffirmative
){
2195 Add((wxWindow
*)m_buttonAffirmative
, 0, wxALIGN_CENTRE
| wxLEFT
, 6);
2197 if (m_buttonAffirmative
->GetId() == wxID_SAVE
){
2198 // these buttons have set labels under Mac so we should use them
2199 m_buttonAffirmative
->SetLabel(_("Save"));
2200 if (m_buttonNegative
)
2201 m_buttonNegative
->SetLabel(_("Don't Save"));
2205 // Extra space around and at the right
2207 #elif defined(__WXGTK20__)
2208 Add(0, 0, 0, wxLEFT
, 9);
2210 Add((wxWindow
*)m_buttonHelp
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 3);
2212 // extra whitespace between help and cancel/ok buttons
2213 Add(0, 0, 1, wxEXPAND
, 0);
2215 if (m_buttonNegative
){
2216 Add((wxWindow
*)m_buttonNegative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 3);
2219 // according to HIG, in explicit apply windows the order is:
2220 // [ Help Apply Cancel OK ]
2222 Add((wxWindow
*)m_buttonApply
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 3);
2224 if (m_buttonCancel
){
2225 Add((wxWindow
*)m_buttonCancel
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 3);
2226 // Cancel or help should be default
2227 // m_buttonCancel->SetDefaultButton();
2230 if (m_buttonAffirmative
)
2231 Add((wxWindow
*)m_buttonAffirmative
, 0, wxALIGN_CENTRE
| wxLEFT
, 6);
2232 #elif defined(__WXMSW__)
2235 // right-justify buttons
2236 Add(0, 0, 1, wxEXPAND
, 0);
2238 if (m_buttonAffirmative
){
2239 Add((wxWindow
*)m_buttonAffirmative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonAffirmative
->ConvertDialogToPixels(wxSize(2, 0)).x
);
2242 if (m_buttonNegative
){
2243 Add((wxWindow
*)m_buttonNegative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonNegative
->ConvertDialogToPixels(wxSize(2, 0)).x
);
2246 if (m_buttonCancel
){
2247 Add((wxWindow
*)m_buttonCancel
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonCancel
->ConvertDialogToPixels(wxSize(2, 0)).x
);
2250 Add((wxWindow
*)m_buttonApply
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonApply
->ConvertDialogToPixels(wxSize(2, 0)).x
);
2253 Add((wxWindow
*)m_buttonHelp
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonHelp
->ConvertDialogToPixels(wxSize(2, 0)).x
);
2255 // GTK+1 and any other platform
2257 // Add(0, 0, 0, wxLEFT, 5); // Not sure what this was for but it unbalances the dialog
2259 Add((wxWindow
*)m_buttonHelp
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonHelp
->ConvertDialogToPixels(wxSize(4, 0)).x
);
2261 // extra whitespace between help and cancel/ok buttons
2262 Add(0, 0, 1, wxEXPAND
, 0);
2265 Add((wxWindow
*)m_buttonApply
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonApply
->ConvertDialogToPixels(wxSize(4, 0)).x
);
2267 if (m_buttonAffirmative
){
2268 Add((wxWindow
*)m_buttonAffirmative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonAffirmative
->ConvertDialogToPixels(wxSize(4, 0)).x
);
2271 if (m_buttonNegative
){
2272 Add((wxWindow
*)m_buttonNegative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonNegative
->ConvertDialogToPixels(wxSize(4, 0)).x
);
2275 if (m_buttonCancel
){
2276 Add((wxWindow
*)m_buttonCancel
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonCancel
->ConvertDialogToPixels(wxSize(4, 0)).x
);
2277 // Cancel or help should be default
2278 // m_buttonCancel->SetDefaultButton();
2284 #endif // wxUSE_BUTTON