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"
24 #include "wx/string.h"
28 #include "wx/settings.h"
29 #include "wx/button.h"
30 #include "wx/statbox.h"
31 #include "wx/toplevel.h"
34 #include "wx/listimpl.cpp"
37 //---------------------------------------------------------------------------
39 IMPLEMENT_CLASS(wxSizerItem
, wxObject
)
40 IMPLEMENT_CLASS(wxSizer
, wxObject
)
41 IMPLEMENT_CLASS(wxGridSizer
, wxSizer
)
42 IMPLEMENT_CLASS(wxFlexGridSizer
, wxGridSizer
)
43 IMPLEMENT_CLASS(wxBoxSizer
, wxSizer
)
45 IMPLEMENT_CLASS(wxStaticBoxSizer
, wxBoxSizer
)
48 IMPLEMENT_CLASS(wxStdDialogButtonSizer
, wxBoxSizer
)
51 WX_DEFINE_EXPORTED_LIST( wxSizerItemList
)
86 // ----------------------------------------------------------------------------
88 // ----------------------------------------------------------------------------
90 void wxSizerItem::Init(const wxSizerFlags
& flags
)
94 m_proportion
= flags
.GetProportion();
95 m_flag
= flags
.GetFlags();
96 m_border
= flags
.GetBorderInPixels();
99 wxSizerItem::wxSizerItem()
110 void wxSizerItem::DoSetWindow(wxWindow
*window
)
112 wxCHECK_RET( window
, _T("NULL window in wxSizerItem::SetWindow()") );
114 m_kind
= Item_Window
;
117 // window doesn't become smaller than its initial size, whatever happens
118 m_minSize
= window
->GetSize();
120 if ( m_flag
& wxFIXED_MINSIZE
)
121 window
->SetMinSize(m_minSize
);
123 // aspect ratio calculated from initial size
127 wxSizerItem::wxSizerItem(wxWindow
*window
,
133 m_proportion(proportion
),
143 void wxSizerItem::DoSetSizer(wxSizer
*sizer
)
149 wxSizerItem::wxSizerItem(wxSizer
*sizer
,
156 m_proportion(proportion
),
165 // m_minSize is set later
169 void wxSizerItem::DoSetSpacer(const wxSize
& size
)
171 m_kind
= Item_Spacer
;
172 m_spacer
= new wxSizerSpacer(size
);
177 wxSizerItem::wxSizerItem(int width
,
185 m_minSize(width
, height
), // minimal size is the initial size
186 m_proportion(proportion
),
192 DoSetSpacer(wxSize(width
, height
));
195 wxSizerItem::~wxSizerItem()
201 void wxSizerItem::Free()
209 m_window
->SetContainingSizer(NULL
);
222 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
228 wxSize
wxSizerItem::GetSpacer() const
231 if ( m_kind
== Item_Spacer
)
232 size
= m_spacer
->GetSize();
238 wxSize
wxSizerItem::GetSize() const
247 ret
= m_window
->GetSize();
251 ret
= m_sizer
->GetSize();
255 ret
= m_spacer
->GetSize();
260 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
267 if (m_flag
& wxNORTH
)
269 if (m_flag
& wxSOUTH
)
275 bool wxSizerItem::InformFirstDirection(int direction
, int size
, int availableOtherDir
)
277 // The size that come here will be including borders. Child items should get it
281 if( direction
==wxHORIZONTAL
)
288 else if( direction
==wxVERTICAL
)
290 if (m_flag
& wxNORTH
)
292 if (m_flag
& wxSOUTH
)
298 // Pass the information along to the held object
301 didUse
= GetSizer()->InformFirstDirection(direction
,size
,availableOtherDir
);
303 m_minSize
= GetSizer()->CalcMin();
307 didUse
= GetWindow()->InformFirstDirection(direction
,size
,availableOtherDir
);
309 m_minSize
= m_window
->GetEffectiveMinSize();
311 // This information is useful for items with wxSHAPED flag, since
312 // we can request an optimal min size for such an item. Even if
313 // we overwrite the m_minSize member here, we can read it back from
314 // the owned window (happens automatically).
315 if( (m_flag
& wxSHAPED
) && (m_flag
& wxEXPAND
) && direction
)
317 if( !wxIsNullDouble(m_ratio
) )
319 wxCHECK_MSG( (m_proportion
==0), false, _T("Shaped item, non-zero proportion in wxSizerItem::InformFirstDirection()") );
320 if( direction
==wxHORIZONTAL
&& !wxIsNullDouble(m_ratio
) )
322 // Clip size so that we don't take too much
323 if( availableOtherDir
>=0 && int(size
/m_ratio
)-m_minSize
.y
>availableOtherDir
)
324 size
= int((availableOtherDir
+m_minSize
.y
)*m_ratio
);
325 m_minSize
= wxSize(size
,int(size
/m_ratio
));
327 else if( direction
==wxVERTICAL
)
329 // Clip size so that we don't take too much
330 if( availableOtherDir
>=0 && int(size
*m_ratio
)-m_minSize
.x
>availableOtherDir
)
331 size
= int((availableOtherDir
+m_minSize
.x
)/m_ratio
);
332 m_minSize
= wxSize(int(size
*m_ratio
),size
);
342 wxSize
wxSizerItem::CalcMin()
346 m_minSize
= m_sizer
->GetMinSize();
348 // if we have to preserve aspect ratio _AND_ this is
349 // the first-time calculation, consider ret to be initial size
350 if ( (m_flag
& wxSHAPED
) && wxIsNullDouble(m_ratio
) )
353 else if ( IsWindow() )
355 // Since the size of the window may change during runtime, we
356 // should use the current minimal/best size.
357 m_minSize
= m_window
->GetEffectiveMinSize();
360 return GetMinSizeWithBorder();
363 wxSize
wxSizerItem::GetMinSizeWithBorder() const
365 wxSize ret
= m_minSize
;
371 if (m_flag
& wxNORTH
)
373 if (m_flag
& wxSOUTH
)
380 void wxSizerItem::SetDimension( const wxPoint
& pos_
, const wxSize
& size_
)
384 if (m_flag
& wxSHAPED
)
386 // adjust aspect ratio
387 int rwidth
= (int) (size
.y
* m_ratio
);
391 int rheight
= (int) (size
.x
/ m_ratio
);
392 // add vertical space
393 if (m_flag
& wxALIGN_CENTER_VERTICAL
)
394 pos
.y
+= (size
.y
- rheight
) / 2;
395 else if (m_flag
& wxALIGN_BOTTOM
)
396 pos
.y
+= (size
.y
- rheight
);
397 // use reduced dimensions
400 else if (rwidth
< size
.x
)
402 // add horizontal space
403 if (m_flag
& wxALIGN_CENTER_HORIZONTAL
)
404 pos
.x
+= (size
.x
- rwidth
) / 2;
405 else if (m_flag
& wxALIGN_RIGHT
)
406 pos
.x
+= (size
.x
- rwidth
);
411 // This is what GetPosition() returns. Since we calculate
412 // borders afterwards, GetPosition() will be the left/top
413 // corner of the surrounding border.
425 if (m_flag
& wxNORTH
)
430 if (m_flag
& wxSOUTH
)
440 m_rect
= wxRect(pos
, size
);
445 wxFAIL_MSG( _T("can't set size of uninitialized sizer item") );
449 m_window
->SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
,
450 wxSIZE_ALLOW_MINUS_ONE
);
454 m_sizer
->SetDimension(pos
.x
, pos
.y
, size
.x
, size
.y
);
458 m_spacer
->SetSize(size
);
463 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
467 void wxSizerItem::DeleteWindows()
476 //We are deleting the window from this sizer - normally
477 //the window destroys the sizer associated with it,
478 //which might destroy this, which we don't want
479 m_window
->SetContainingSizer(NULL
);
481 //Putting this after the switch will result in a spacer
482 //not being deleted properly on destruction
487 m_sizer
->DeleteWindows();
492 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
497 void wxSizerItem::Show( bool show
)
502 wxFAIL_MSG( _T("can't show uninitialized sizer item") );
506 m_window
->Show(show
);
514 m_spacer
->Show(show
);
519 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
523 bool wxSizerItem::IsShown() const
528 // we may be called from CalcMin(), just return false so that we're
533 return m_window
->IsShown();
536 // arbitrarily decide that if at least one of our elements is
537 // shown, so are we (this arbitrariness is the reason for
538 // deprecating this function)
540 // Some apps (such as dialog editors) depend on an empty sizer still
541 // being laid out correctly and reporting the correct size and position.
542 if (m_sizer
->GetChildren().GetCount() == 0)
545 for ( wxSizerItemList::compatibility_iterator
546 node
= m_sizer
->GetChildren().GetFirst();
548 node
= node
->GetNext() )
550 if ( node
->GetData()->IsShown() )
557 return m_spacer
->IsShown();
561 wxFAIL_MSG( _T("unexpected wxSizerItem::m_kind") );
567 #if WXWIN_COMPATIBILITY_2_6
568 void wxSizerItem::SetOption( int option
)
570 SetProportion( option
);
573 int wxSizerItem::GetOption() const
575 return GetProportion();
577 #endif // WXWIN_COMPATIBILITY_2_6
580 //---------------------------------------------------------------------------
582 //---------------------------------------------------------------------------
586 WX_CLEAR_LIST(wxSizerItemList
, m_children
);
589 wxSizerItem
* wxSizer::Insert( size_t index
, wxSizerItem
*item
)
591 m_children
.Insert( index
, item
);
593 if ( item
->GetWindow() )
594 item
->GetWindow()->SetContainingSizer( this );
596 if ( item
->GetSizer() )
597 item
->GetSizer()->SetContainingWindow( m_containingWindow
);
602 void wxSizer::SetContainingWindow(wxWindow
*win
)
604 if ( win
== m_containingWindow
)
607 m_containingWindow
= win
;
609 // set the same window for all nested sizers as well, they also are in the
611 for ( wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
613 node
= node
->GetNext() )
615 wxSizerItem
*const item
= node
->GetData();
616 wxSizer
*const sizer
= item
->GetSizer();
620 sizer
->SetContainingWindow(win
);
625 #if WXWIN_COMPATIBILITY_2_6
626 bool wxSizer::Remove( wxWindow
*window
)
628 return Detach( window
);
630 #endif // WXWIN_COMPATIBILITY_2_6
632 bool wxSizer::Remove( wxSizer
*sizer
)
634 wxASSERT_MSG( sizer
, _T("Removing NULL sizer") );
636 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
639 wxSizerItem
*item
= node
->GetData();
641 if (item
->GetSizer() == sizer
)
644 m_children
.Erase( node
);
648 node
= node
->GetNext();
654 bool wxSizer::Remove( int index
)
656 wxCHECK_MSG( index
>= 0 && (size_t)index
< m_children
.GetCount(),
658 _T("Remove index is out of range") );
660 wxSizerItemList::compatibility_iterator node
= m_children
.Item( index
);
662 wxCHECK_MSG( node
, false, _T("Failed to find child node") );
664 delete node
->GetData();
665 m_children
.Erase( node
);
670 bool wxSizer::Detach( wxSizer
*sizer
)
672 wxASSERT_MSG( sizer
, _T("Detaching NULL sizer") );
674 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
677 wxSizerItem
*item
= node
->GetData();
679 if (item
->GetSizer() == sizer
)
683 m_children
.Erase( node
);
686 node
= node
->GetNext();
692 bool wxSizer::Detach( wxWindow
*window
)
694 wxASSERT_MSG( window
, _T("Detaching NULL window") );
696 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
699 wxSizerItem
*item
= node
->GetData();
701 if (item
->GetWindow() == window
)
704 m_children
.Erase( node
);
707 node
= node
->GetNext();
713 bool wxSizer::Detach( int index
)
715 wxCHECK_MSG( index
>= 0 && (size_t)index
< m_children
.GetCount(),
717 _T("Detach index is out of range") );
719 wxSizerItemList::compatibility_iterator node
= m_children
.Item( index
);
721 wxCHECK_MSG( node
, false, _T("Failed to find child node") );
723 wxSizerItem
*item
= node
->GetData();
725 if ( item
->IsSizer() )
729 m_children
.Erase( node
);
733 bool wxSizer::Replace( wxWindow
*oldwin
, wxWindow
*newwin
, bool recursive
)
735 wxASSERT_MSG( oldwin
, _T("Replacing NULL window") );
736 wxASSERT_MSG( newwin
, _T("Replacing with NULL window") );
738 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
741 wxSizerItem
*item
= node
->GetData();
743 if (item
->GetWindow() == oldwin
)
745 item
->AssignWindow(newwin
);
746 newwin
->SetContainingSizer( this );
749 else if (recursive
&& item
->IsSizer())
751 if (item
->GetSizer()->Replace( oldwin
, newwin
, true ))
755 node
= node
->GetNext();
761 bool wxSizer::Replace( wxSizer
*oldsz
, wxSizer
*newsz
, bool recursive
)
763 wxASSERT_MSG( oldsz
, _T("Replacing NULL sizer") );
764 wxASSERT_MSG( newsz
, _T("Replacing with NULL sizer") );
766 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
769 wxSizerItem
*item
= node
->GetData();
771 if (item
->GetSizer() == oldsz
)
773 item
->AssignSizer(newsz
);
776 else if (recursive
&& item
->IsSizer())
778 if (item
->GetSizer()->Replace( oldsz
, newsz
, true ))
782 node
= node
->GetNext();
788 bool wxSizer::Replace( size_t old
, wxSizerItem
*newitem
)
790 wxCHECK_MSG( old
< m_children
.GetCount(), false, _T("Replace index is out of range") );
791 wxASSERT_MSG( newitem
, _T("Replacing with NULL item") );
793 wxSizerItemList::compatibility_iterator node
= m_children
.Item( old
);
795 wxCHECK_MSG( node
, false, _T("Failed to find child node") );
797 wxSizerItem
*item
= node
->GetData();
798 node
->SetData(newitem
);
804 void wxSizer::Clear( bool delete_windows
)
806 // First clear the ContainingSizer pointers
807 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
810 wxSizerItem
*item
= node
->GetData();
812 if (item
->IsWindow())
813 item
->GetWindow()->SetContainingSizer( NULL
);
814 node
= node
->GetNext();
817 // Destroy the windows if needed
821 // Now empty the list
822 WX_CLEAR_LIST(wxSizerItemList
, m_children
);
825 void wxSizer::DeleteWindows()
827 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
830 wxSizerItem
*item
= node
->GetData();
832 item
->DeleteWindows();
833 node
= node
->GetNext();
837 wxSize
wxSizer::Fit( wxWindow
*window
)
839 // take the min size by default and limit it by max size
840 wxSize size
= GetMinWindowSize(window
);
841 wxSize sizeMax
= GetMaxWindowSize(window
);
843 wxTopLevelWindow
*tlw
= wxDynamicCast(window
, wxTopLevelWindow
);
846 // hack for small screen devices where TLWs are always full screen
847 if ( tlw
->IsAlwaysMaximized() )
849 size
= tlw
->GetSize();
851 else // normal situation
853 // limit the window to the size of the display it is on
854 int disp
= wxDisplay::GetFromWindow(window
);
855 if ( disp
== wxNOT_FOUND
)
857 // or, if we don't know which one it is, of the main one
861 sizeMax
= wxDisplay(disp
).GetClientArea().GetSize();
865 if ( sizeMax
.x
!= wxDefaultCoord
&& size
.x
> sizeMax
.x
)
867 if ( sizeMax
.y
!= wxDefaultCoord
&& size
.y
> sizeMax
.y
)
871 window
->SetSize( size
);
876 void wxSizer::FitInside( wxWindow
*window
)
879 if (window
->IsTopLevel())
880 size
= VirtualFitSize( window
);
882 size
= GetMinClientSize( window
);
884 window
->SetVirtualSize( size
);
887 void wxSizer::Layout()
889 // (re)calculates minimums needed for each item and other preparations
893 // Applies the layout and repositions/resizes the items
897 void wxSizer::SetSizeHints( wxWindow
*window
)
899 // Preserve the window's max size hints, but set the
900 // lower bound according to the sizer calculations.
902 wxSize size
= Fit( window
);
904 window
->SetSizeHints( size
.x
,
906 window
->GetMaxWidth(),
907 window
->GetMaxHeight() );
910 #if WXWIN_COMPATIBILITY_2_8
911 void wxSizer::SetVirtualSizeHints( wxWindow
*window
)
915 #endif // WXWIN_COMPATIBILITY_2_8
917 wxSize
wxSizer::GetMaxWindowSize( wxWindow
*window
) const
919 return window
->GetMaxSize();
922 wxSize
wxSizer::GetMinWindowSize( wxWindow
*window
)
924 wxSize
minSize( GetMinSize() );
925 wxSize
size( window
->GetSize() );
926 wxSize
client_size( window
->GetClientSize() );
928 return wxSize( minSize
.x
+size
.x
-client_size
.x
,
929 minSize
.y
+size
.y
-client_size
.y
);
932 // TODO on mac we need a function that determines how much free space this
933 // min size contains, in order to make sure that we have 20 pixels of free
934 // space around the controls
935 wxSize
wxSizer::GetMaxClientSize( wxWindow
*window
) const
937 wxSize
maxSize( window
->GetMaxSize() );
939 if ( maxSize
!= wxDefaultSize
)
941 wxSize
size( window
->GetSize() );
942 wxSize
client_size( window
->GetClientSize() );
944 return wxSize( maxSize
.x
+ client_size
.x
- size
.x
,
945 maxSize
.y
+ client_size
.y
- size
.y
);
948 return wxDefaultSize
;
951 wxSize
wxSizer::GetMinClientSize( wxWindow
*WXUNUSED(window
) )
953 return GetMinSize(); // Already returns client size.
956 wxSize
wxSizer::VirtualFitSize( wxWindow
*window
)
958 wxSize size
= GetMinClientSize( window
);
959 wxSize sizeMax
= GetMaxClientSize( window
);
961 // Limit the size if sizeMax != wxDefaultSize
963 if ( size
.x
> sizeMax
.x
&& sizeMax
.x
!= wxDefaultCoord
)
965 if ( size
.y
> sizeMax
.y
&& sizeMax
.y
!= wxDefaultCoord
)
971 void wxSizer::SetDimension( int x
, int y
, int width
, int height
)
980 wxSize
wxSizer::GetMinSize()
982 wxSize
ret( CalcMin() );
983 if (ret
.x
< m_minSize
.x
) ret
.x
= m_minSize
.x
;
984 if (ret
.y
< m_minSize
.y
) ret
.y
= m_minSize
.y
;
988 void wxSizer::DoSetMinSize( int width
, int height
)
991 m_minSize
.y
= height
;
994 bool wxSizer::DoSetItemMinSize( wxWindow
*window
, int width
, int height
)
996 wxASSERT_MSG( window
, _T("SetMinSize for NULL window") );
998 // Is it our immediate child?
1000 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1003 wxSizerItem
*item
= node
->GetData();
1005 if (item
->GetWindow() == window
)
1007 item
->SetMinSize( width
, height
);
1010 node
= node
->GetNext();
1013 // No? Search any subsizers we own then
1015 node
= m_children
.GetFirst();
1018 wxSizerItem
*item
= node
->GetData();
1020 if ( item
->GetSizer() &&
1021 item
->GetSizer()->DoSetItemMinSize( window
, width
, height
) )
1023 // A child sizer found the requested windw, exit.
1026 node
= node
->GetNext();
1032 bool wxSizer::DoSetItemMinSize( wxSizer
*sizer
, int width
, int height
)
1034 wxASSERT_MSG( sizer
, _T("SetMinSize for NULL sizer") );
1036 // Is it our immediate child?
1038 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1041 wxSizerItem
*item
= node
->GetData();
1043 if (item
->GetSizer() == sizer
)
1045 item
->GetSizer()->DoSetMinSize( width
, height
);
1048 node
= node
->GetNext();
1051 // No? Search any subsizers we own then
1053 node
= m_children
.GetFirst();
1056 wxSizerItem
*item
= node
->GetData();
1058 if ( item
->GetSizer() &&
1059 item
->GetSizer()->DoSetItemMinSize( sizer
, width
, height
) )
1061 // A child found the requested sizer, exit.
1064 node
= node
->GetNext();
1070 bool wxSizer::DoSetItemMinSize( size_t index
, int width
, int height
)
1072 wxSizerItemList::compatibility_iterator node
= m_children
.Item( index
);
1074 wxCHECK_MSG( node
, false, _T("Failed to find child node") );
1076 wxSizerItem
*item
= node
->GetData();
1078 if (item
->GetSizer())
1080 // Sizers contains the minimal size in them, if not calculated ...
1081 item
->GetSizer()->DoSetMinSize( width
, height
);
1085 // ... but the minimal size of spacers and windows is stored via the item
1086 item
->SetMinSize( width
, height
);
1092 wxSizerItem
* wxSizer::GetItem( wxWindow
*window
, bool recursive
)
1094 wxASSERT_MSG( window
, _T("GetItem for NULL window") );
1096 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1099 wxSizerItem
*item
= node
->GetData();
1101 if (item
->GetWindow() == window
)
1105 else if (recursive
&& item
->IsSizer())
1107 wxSizerItem
*subitem
= item
->GetSizer()->GetItem( window
, true );
1112 node
= node
->GetNext();
1118 wxSizerItem
* wxSizer::GetItem( wxSizer
*sizer
, bool recursive
)
1120 wxASSERT_MSG( sizer
, _T("GetItem for NULL sizer") );
1122 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1125 wxSizerItem
*item
= node
->GetData();
1127 if (item
->GetSizer() == sizer
)
1131 else if (recursive
&& item
->IsSizer())
1133 wxSizerItem
*subitem
= item
->GetSizer()->GetItem( sizer
, true );
1138 node
= node
->GetNext();
1144 wxSizerItem
* wxSizer::GetItem( size_t index
)
1146 wxCHECK_MSG( index
< m_children
.GetCount(),
1148 _T("GetItem index is out of range") );
1150 return m_children
.Item( index
)->GetData();
1153 wxSizerItem
* wxSizer::GetItemById( int id
, bool recursive
)
1155 // This gets a sizer item by the id of the sizer item
1156 // and NOT the id of a window if the item is a window.
1158 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1161 wxSizerItem
*item
= node
->GetData();
1163 if (item
->GetId() == id
)
1167 else if (recursive
&& item
->IsSizer())
1169 wxSizerItem
*subitem
= item
->GetSizer()->GetItemById( id
, true );
1174 node
= node
->GetNext();
1180 bool wxSizer::Show( wxWindow
*window
, bool show
, bool recursive
)
1182 wxSizerItem
*item
= GetItem( window
, recursive
);
1193 bool wxSizer::Show( wxSizer
*sizer
, bool show
, bool recursive
)
1195 wxSizerItem
*item
= GetItem( sizer
, recursive
);
1206 bool wxSizer::Show( size_t index
, bool show
)
1208 wxSizerItem
*item
= GetItem( index
);
1219 void wxSizer::ShowItems( bool show
)
1221 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1224 node
->GetData()->Show( show
);
1225 node
= node
->GetNext();
1229 bool wxSizer::IsShown( wxWindow
*window
) const
1231 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1234 wxSizerItem
*item
= node
->GetData();
1236 if (item
->GetWindow() == window
)
1238 return item
->IsShown();
1240 node
= node
->GetNext();
1243 wxFAIL_MSG( _T("IsShown failed to find sizer item") );
1248 bool wxSizer::IsShown( wxSizer
*sizer
) const
1250 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1253 wxSizerItem
*item
= node
->GetData();
1255 if (item
->GetSizer() == sizer
)
1257 return item
->IsShown();
1259 node
= node
->GetNext();
1262 wxFAIL_MSG( _T("IsShown failed to find sizer item") );
1267 bool wxSizer::IsShown( size_t index
) const
1269 wxCHECK_MSG( index
< m_children
.GetCount(),
1271 _T("IsShown index is out of range") );
1273 return m_children
.Item( index
)->GetData()->IsShown();
1277 //---------------------------------------------------------------------------
1279 //---------------------------------------------------------------------------
1281 wxGridSizer::wxGridSizer( int rows
, int cols
, int vgap
, int hgap
)
1282 : m_rows( ( cols
== 0 && rows
== 0 ) ? 1 : rows
)
1289 wxGridSizer::wxGridSizer( int cols
, int vgap
, int hgap
)
1290 : m_rows( cols
== 0 ? 1 : 0 )
1297 int wxGridSizer::CalcRowsCols(int& nrows
, int& ncols
) const
1299 int nitems
= m_children
.GetCount();
1305 nrows
= (nitems
+ m_cols
- 1) / m_cols
;
1309 ncols
= (nitems
+ m_rows
- 1) / m_rows
;
1312 else // 0 columns, 0 rows?
1314 wxFAIL_MSG( _T("grid sizer must have either rows or columns fixed") );
1323 void wxGridSizer::RecalcSizes()
1325 int nitems
, nrows
, ncols
;
1326 if ( (nitems
= CalcRowsCols(nrows
, ncols
)) == 0 )
1329 wxSize
sz( GetSize() );
1330 wxPoint
pt( GetPosition() );
1332 int w
= (sz
.x
- (ncols
- 1) * m_hgap
) / ncols
;
1333 int h
= (sz
.y
- (nrows
- 1) * m_vgap
) / nrows
;
1336 for (int c
= 0; c
< ncols
; c
++)
1339 for (int r
= 0; r
< nrows
; r
++)
1341 int i
= r
* ncols
+ c
;
1344 wxSizerItemList::compatibility_iterator node
= m_children
.Item( i
);
1346 wxASSERT_MSG( node
, _T("Failed to find SizerItemList node") );
1348 SetItemBounds( node
->GetData(), x
, y
, w
, h
);
1356 wxSize
wxGridSizer::CalcMin()
1359 if ( CalcRowsCols(nrows
, ncols
) == 0 )
1362 // Find the max width and height for any component
1366 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
1369 wxSizerItem
*item
= node
->GetData();
1370 wxSize
sz( item
->CalcMin() );
1372 w
= wxMax( w
, sz
.x
);
1373 h
= wxMax( h
, sz
.y
);
1375 node
= node
->GetNext();
1378 // In case we have a nested sizer with a two step algo , give it
1379 // a chance to adjust to that (we give it width component)
1380 node
= m_children
.GetFirst();
1381 bool didChangeMinSize
= false;
1384 wxSizerItem
*item
= node
->GetData();
1385 didChangeMinSize
|= item
->InformFirstDirection( wxHORIZONTAL
, w
, -1 );
1387 node
= node
->GetNext();
1390 // And redo iteration in case min size changed
1391 if( didChangeMinSize
)
1393 node
= m_children
.GetFirst();
1397 wxSizerItem
*item
= node
->GetData();
1398 wxSize
sz( item
->GetMinSizeWithBorder() );
1400 w
= wxMax( w
, sz
.x
);
1401 h
= wxMax( h
, sz
.y
);
1403 node
= node
->GetNext();
1407 return wxSize( ncols
* w
+ (ncols
-1) * m_hgap
,
1408 nrows
* h
+ (nrows
-1) * m_vgap
);
1411 void wxGridSizer::SetItemBounds( wxSizerItem
*item
, int x
, int y
, int w
, int h
)
1414 wxSize
sz( item
->GetMinSizeWithBorder() );
1415 int flag
= item
->GetFlag();
1417 if ((flag
& wxEXPAND
) || (flag
& wxSHAPED
))
1423 if (flag
& wxALIGN_CENTER_HORIZONTAL
)
1425 pt
.x
= x
+ (w
- sz
.x
) / 2;
1427 else if (flag
& wxALIGN_RIGHT
)
1429 pt
.x
= x
+ (w
- sz
.x
);
1432 if (flag
& wxALIGN_CENTER_VERTICAL
)
1434 pt
.y
= y
+ (h
- sz
.y
) / 2;
1436 else if (flag
& wxALIGN_BOTTOM
)
1438 pt
.y
= y
+ (h
- sz
.y
);
1442 item
->SetDimension(pt
, sz
);
1445 //---------------------------------------------------------------------------
1447 //---------------------------------------------------------------------------
1449 wxFlexGridSizer::wxFlexGridSizer( int rows
, int cols
, int vgap
, int hgap
)
1450 : wxGridSizer( rows
, cols
, vgap
, hgap
),
1451 m_flexDirection(wxBOTH
),
1452 m_growMode(wxFLEX_GROWMODE_SPECIFIED
)
1456 wxFlexGridSizer::wxFlexGridSizer( int cols
, int vgap
, int hgap
)
1457 : wxGridSizer( cols
, vgap
, hgap
),
1458 m_flexDirection(wxBOTH
),
1459 m_growMode(wxFLEX_GROWMODE_SPECIFIED
)
1463 wxFlexGridSizer::~wxFlexGridSizer()
1467 void wxFlexGridSizer::RecalcSizes()
1470 if ( !CalcRowsCols(nrows
, ncols
) )
1473 const wxPoint
pt(GetPosition());
1474 const wxSize
sz(GetSize());
1476 AdjustForGrowables(sz
);
1478 wxSizerItemList::const_iterator i
= m_children
.begin();
1479 const wxSizerItemList::const_iterator end
= m_children
.end();
1482 for ( int r
= 0; r
< nrows
; r
++ )
1484 if ( m_rowHeights
[r
] == -1 )
1486 // this row is entirely hidden, skip it
1487 for ( int c
= 0; c
< ncols
; c
++ )
1498 const int hrow
= m_rowHeights
[r
];
1499 int h
= sz
.y
- y
; // max remaining height, don't overflow it
1504 for ( int c
= 0; c
< ncols
&& i
!= end
; c
++, ++i
)
1506 const int wcol
= m_colWidths
[c
];
1511 int w
= sz
.x
- x
; // max possible value, ensure we don't overflow
1515 SetItemBounds(*i
, pt
.x
+ x
, pt
.y
+ y
, w
, h
);
1527 // helper function used in CalcMin() to sum up the sizes of non-hidden items
1528 static int SumArraySizes(const wxArrayInt
& sizes
, int gap
)
1530 // Sum total minimum size, including gaps between rows/columns.
1531 // -1 is used as a magic number meaning empty row/column.
1534 const size_t count
= sizes
.size();
1535 for ( size_t n
= 0; n
< count
; n
++ )
1537 if ( sizes
[n
] != -1 )
1540 total
+= gap
; // separate from the previous column
1549 void wxFlexGridSizer::FindWidthsAndHeights(int nrows
, int ncols
)
1551 // We have to recalculate the sizes in case the item minimum size has
1552 // changed since the previous layout, or the item has been hidden using
1553 // wxSizer::Show(). If all the items in a row/column are hidden, the final
1554 // dimension of the row/column will be -1, indicating that the column
1555 // itself is hidden.
1556 m_rowHeights
.assign(nrows
, -1);
1557 m_colWidths
.assign(ncols
, -1);
1559 // n is the index of the item in left-to-right top-to-bottom order
1561 for ( wxSizerItemList::iterator i
= m_children
.begin();
1562 i
!= m_children
.end();
1565 wxSizerItem
* const item
= *i
;
1566 if ( item
->IsShown() )
1568 // NOTE: Not doing the calculation here, this is just
1569 // for finding max values.
1570 const wxSize
sz(item
->GetMinSizeWithBorder());
1572 const int row
= n
/ ncols
;
1573 const int col
= n
% ncols
;
1575 if ( sz
.y
> m_rowHeights
[row
] )
1576 m_rowHeights
[row
] = sz
.y
;
1577 if ( sz
.x
> m_colWidths
[col
] )
1578 m_colWidths
[col
] = sz
.x
;
1582 AdjustForFlexDirection();
1584 m_calculatedMinSize
= wxSize(SumArraySizes(m_colWidths
, m_hgap
),
1585 SumArraySizes(m_rowHeights
, m_vgap
));
1588 wxSize
wxFlexGridSizer::CalcMin()
1593 // Number of rows/columns can change as items are added or removed.
1594 if ( !CalcRowsCols(nrows
, ncols
) )
1598 // We have to recalculate the sizes in case the item minimum size has
1599 // changed since the previous layout, or the item has been hidden using
1600 // wxSizer::Show(). If all the items in a row/column are hidden, the final
1601 // dimension of the row/column will be -1, indicating that the column
1602 // itself is hidden.
1603 m_rowHeights
.assign(nrows
, -1);
1604 m_colWidths
.assign(ncols
, -1);
1606 // n is the index of the item in left-to-right top-to-bottom order
1608 for ( wxSizerItemList::iterator i
= m_children
.begin();
1609 i
!= m_children
.end();
1612 wxSizerItem
* const item
= *i
;
1613 if ( item
->IsShown() )
1619 // The stage of looking for max values in each row/column has been
1620 // made a separate function, since it's reused in AdjustForGrowables.
1621 FindWidthsAndHeights(nrows
,ncols
);
1623 return m_calculatedMinSize
;
1626 void wxFlexGridSizer::AdjustForFlexDirection()
1628 // the logic in CalcMin works when we resize flexibly in both directions
1629 // but maybe this is not the case
1630 if ( m_flexDirection
!= wxBOTH
)
1632 // select the array corresponding to the direction in which we do *not*
1634 wxArrayInt
& array
= m_flexDirection
== wxVERTICAL
? m_colWidths
1637 const size_t count
= array
.GetCount();
1639 // find the largest value in this array
1643 for ( n
= 0; n
< count
; ++n
)
1645 if ( array
[n
] > largest
)
1649 // and now fill it with the largest value
1650 for ( n
= 0; n
< count
; ++n
)
1652 // don't touch hidden rows
1653 if ( array
[n
] != -1 )
1659 // helper of AdjustForGrowables() which is called for rows/columns separately
1662 // delta: the extra space, we do nothing unless it's positive
1663 // growable: indices or growable rows/cols in sizes array
1664 // sizes: the height/widths of rows/cols to adjust
1665 // proportions: proportions of the growable rows/cols or NULL if they all
1666 // should be assumed to have proportion of 1
1668 DoAdjustForGrowables(int delta
,
1669 const wxArrayInt
& growable
,
1671 const wxArrayInt
*proportions
)
1676 // total sum of proportions of all non-hidden rows
1677 int sum_proportions
= 0;
1679 // number of currently shown growable rows
1682 const int max_idx
= sizes
.size();
1684 const size_t count
= growable
.size();
1686 for ( idx
= 0; idx
< count
; idx
++ )
1688 // Since the number of rows/columns can change as items are
1689 // inserted/deleted, we need to verify at runtime that the
1690 // requested growable rows/columns are still valid.
1691 if ( growable
[idx
] >= max_idx
)
1694 // If all items in a row/column are hidden, that row/column will
1695 // have a dimension of -1. This causes the row/column to be
1696 // hidden completely.
1697 if ( sizes
[growable
[idx
]] == -1 )
1701 sum_proportions
+= (*proportions
)[idx
];
1709 // the remaining extra free space, adjusted during each iteration
1710 for ( idx
= 0; idx
< count
; idx
++ )
1712 if ( growable
[idx
] >= max_idx
)
1715 if ( sizes
[ growable
[idx
] ] == -1 )
1719 if ( sum_proportions
== 0 )
1721 // no growable rows -- divide extra space evenly among all
1722 cur_delta
= delta
/num
;
1725 else // allocate extra space proportionally
1727 const int cur_prop
= (*proportions
)[idx
];
1728 cur_delta
= (delta
*cur_prop
)/sum_proportions
;
1729 sum_proportions
-= cur_prop
;
1732 sizes
[growable
[idx
]] += cur_delta
;
1737 void wxFlexGridSizer::AdjustForGrowables(const wxSize
& sz
)
1739 if ( (m_flexDirection
& wxHORIZONTAL
) || (m_growMode
!= wxFLEX_GROWMODE_NONE
) )
1741 DoAdjustForGrowables
1743 sz
.x
- m_calculatedMinSize
.x
,
1746 m_growMode
== wxFLEX_GROWMODE_SPECIFIED
? &m_growableColsProportions
1750 // This gives nested objects that benefit from knowing one size
1751 // component in advance the chance to use that.
1752 bool didAdjustMinSize
= false;
1754 CalcRowsCols(nrows
, ncols
);
1756 // Iterate over all items and inform about column width
1758 for ( wxSizerItemList::iterator i
= m_children
.begin();
1759 i
!= m_children
.end();
1762 const int col
= n
% ncols
;
1763 didAdjustMinSize
|= (*i
)->InformFirstDirection(wxHORIZONTAL
, m_colWidths
[col
], sz
.y
- m_calculatedMinSize
.y
);
1766 // Only redo if info was actually used
1767 if( didAdjustMinSize
)
1769 DoAdjustForGrowables
1771 sz
.x
- m_calculatedMinSize
.x
,
1774 m_growMode
== wxFLEX_GROWMODE_SPECIFIED
? &m_growableColsProportions
1780 if ( (m_flexDirection
& wxVERTICAL
) || (m_growMode
!= wxFLEX_GROWMODE_NONE
) )
1782 // pass NULL instead of proportions if the grow mode is ALL as we
1783 // should treat all rows as having proportion of 1 then
1784 DoAdjustForGrowables
1786 sz
.y
- m_calculatedMinSize
.y
,
1789 m_growMode
== wxFLEX_GROWMODE_SPECIFIED
? &m_growableRowsProportions
1796 void wxFlexGridSizer::AddGrowableRow( size_t idx
, int proportion
)
1798 m_growableRows
.Add( idx
);
1799 m_growableRowsProportions
.Add( proportion
);
1802 void wxFlexGridSizer::AddGrowableCol( size_t idx
, int proportion
)
1804 m_growableCols
.Add( idx
);
1805 m_growableColsProportions
.Add( proportion
);
1808 // helper function for RemoveGrowableCol/Row()
1810 DoRemoveFromArrays(size_t idx
, wxArrayInt
& items
, wxArrayInt
& proportions
)
1812 const size_t count
= items
.size();
1813 for ( size_t n
= 0; n
< count
; n
++ )
1815 if ( (size_t)items
[n
] == idx
)
1818 proportions
.RemoveAt(n
);
1823 wxFAIL_MSG( _T("column/row is already not growable") );
1826 void wxFlexGridSizer::RemoveGrowableCol( size_t idx
)
1828 DoRemoveFromArrays(idx
, m_growableCols
, m_growableColsProportions
);
1831 void wxFlexGridSizer::RemoveGrowableRow( size_t idx
)
1833 DoRemoveFromArrays(idx
, m_growableRows
, m_growableRowsProportions
);
1836 //---------------------------------------------------------------------------
1838 //---------------------------------------------------------------------------
1840 void wxBoxSizer::RecalcSizes()
1842 if ( m_children
.empty() )
1845 const wxCoord totalMinorSize
= GetSizeInMinorDir(m_size
);
1847 // the amount of free space which we should redistribute among the
1848 // stretchable items (i.e. those with non zero proportion)
1849 int delta
= GetSizeInMajorDir(m_size
) - GetSizeInMajorDir(m_minSize
);
1852 // Inform child items about the size in minor direction, that can
1853 // change how much free space we have in major dir and how to distribute it.
1854 int majorMinSum
= 0;
1855 wxSizerItemList::const_iterator i
;
1856 for ( i
= m_children
.begin();
1857 i
!= m_children
.end();
1860 wxSizerItem
* const item
= *i
;
1862 if ( !item
->IsShown() )
1865 wxSize szMinPrev
= item
->GetMinSizeWithBorder();
1866 item
->InformFirstDirection(m_orient
^wxBOTH
,totalMinorSize
,delta
);
1867 wxSize szMin
= item
->GetMinSizeWithBorder();
1868 int deltaChange
= GetSizeInMajorDir(szMin
-szMinPrev
);
1871 // Since we passed available space along to the item, it should not
1872 // take too much, so delta should not become negative.
1873 delta
-= deltaChange
;
1875 majorMinSum
+= GetSizeInMajorDir(item
->GetMinSizeWithBorder());
1877 // And update our min size
1878 SizeInMajorDir(m_minSize
) = majorMinSum
;
1881 // might have a new delta now
1882 delta
= GetSizeInMajorDir(m_size
) - GetSizeInMajorDir(m_minSize
);
1884 // the position at which we put the next child
1885 wxPoint
pt(m_position
);
1887 int totalProportion
= m_totalProportion
;
1888 for ( i
= m_children
.begin();
1889 i
!= m_children
.end();
1892 wxSizerItem
* const item
= *i
;
1894 if ( !item
->IsShown() )
1897 const wxSize
sizeThis(item
->GetMinSizeWithBorder());
1899 // adjust the size in the major direction using the proportion
1900 wxCoord majorSize
= GetSizeInMajorDir(sizeThis
);
1901 const int propItem
= item
->GetProportion();
1904 const int deltaItem
= (delta
* propItem
) / totalProportion
;
1906 majorSize
+= deltaItem
;
1909 totalProportion
-= propItem
;
1913 // apply the alignment in the minor direction
1914 wxPoint
posChild(pt
);
1916 wxCoord minorSize
= GetSizeInMinorDir(sizeThis
);
1917 const int flag
= item
->GetFlag();
1918 if ( flag
& (wxEXPAND
| wxSHAPED
) )
1920 minorSize
= totalMinorSize
;
1922 else if ( flag
& (IsVertical() ? wxALIGN_RIGHT
: wxALIGN_BOTTOM
) )
1924 PosInMinorDir(posChild
) += totalMinorSize
- minorSize
;
1926 // NB: wxCENTRE is used here only for backwards compatibility,
1927 // wxALIGN_CENTRE should be used in new code
1928 else if ( flag
& (wxCENTER
| wxALIGN_CENTRE
) )
1930 PosInMinorDir(posChild
) += (totalMinorSize
- minorSize
) / 2;
1934 // apply RTL adjustment for horizontal sizers:
1935 if ( !IsVertical() && m_containingWindow
)
1937 posChild
.x
= m_containingWindow
->AdjustForLayoutDirection
1945 // finally set size of this child and advance to the next one
1946 item
->SetDimension(posChild
, SizeFromMajorMinor(majorSize
, minorSize
));
1948 PosInMajorDir(pt
) += majorSize
;
1952 wxSize
wxBoxSizer::CalcMin()
1954 m_totalProportion
= 0;
1955 m_minSize
= wxSize(0, 0);
1957 // calculate the minimal sizes for all items and count sum of proportions
1958 for ( wxSizerItemList::const_iterator i
= m_children
.begin();
1959 i
!= m_children
.end();
1962 wxSizerItem
* const item
= *i
;
1964 if ( !item
->IsShown() )
1967 const wxSize sizeMinThis
= item
->CalcMin();
1968 SizeInMajorDir(m_minSize
) += GetSizeInMajorDir(sizeMinThis
);
1969 if ( GetSizeInMinorDir(sizeMinThis
) > GetSizeInMinorDir(m_minSize
) )
1970 SizeInMinorDir(m_minSize
) = GetSizeInMinorDir(sizeMinThis
);
1972 m_totalProportion
+= item
->GetProportion();
1978 //---------------------------------------------------------------------------
1980 //---------------------------------------------------------------------------
1982 #define wxDEFAULT_PROPORTION_LAST 1000000
1984 // User data to hold old proportion for last item on line
1985 // (which might be extended)
1986 struct wxPropHolder
: public wxObject
1988 wxPropHolder( ) : m_item(0), m_propOld(0) { }
1989 void Init( wxSizerItem
*item
, int propOld
) { m_item
=item
; m_propOld
=propOld
; }
1991 wxSizerItem
*m_item
;
1995 IMPLEMENT_DYNAMIC_CLASS(wxWrapSizer
, wxBoxSizer
);
1997 wxWrapSizer::wxWrapSizer( int orient
, int flags
)
1998 : wxBoxSizer(orient
),
1999 m_prim_size_last( -1 ),
2000 m_rows(orient
^wxBOTH
),
2005 wxWrapSizer::~wxWrapSizer()
2007 // Have to clear grand child items so that they're not deleted twice
2008 for( int ix
=m_rows
.GetChildren().GetCount()-1; ix
>=0; ix
-- )
2010 wxSizer
*psz
= m_rows
.GetItem((size_t)ix
)->GetSizer();
2011 wxSizerItemList
&sl
= psz
->GetChildren();
2012 while( sl
.GetLast() )
2013 sl
.Erase( sl
.GetLast() );
2018 bool wxWrapSizer::InformFirstDirection( int direction
, int size
, int WXUNUSED(availableOtherDir
) )
2022 // Better to keep value, then CalcMin will work better
2023 //m_prim_size_last = -1;
2026 if( direction
==m_orient
)
2028 // The direction is same as our primary, so we can make use of it
2029 m_prim_size_last
= size
;
2037 void wxWrapSizer::AdjustPropLastItem(wxSizer
*psz
, wxSizerItem
*itemLast
)
2039 wxSizerItem
*psi
= m_rows
.GetItem(psz
);
2041 wxPropHolder
*pph
= (wxPropHolder
*)psi
->GetUserData();
2043 psi
->SetUserData( pph
=new wxPropHolder
);
2045 pph
->Init( itemLast
, itemLast
->GetProportion() );
2046 itemLast
->SetProportion( wxDEFAULT_PROPORTION_LAST
);
2049 void wxWrapSizer::RecalcSizes()
2051 wxASSERT( m_orient
&wxBOTH
);
2052 if (m_children
.GetCount() == 0)
2055 // What we do here is to put our items into child box sizers,
2056 // as many of them as we have lines.
2058 // Empty all items in all rows in owned sizer.
2059 // We have to access the list directly, since we don't want to
2060 // destroy the wxSizerItems.
2061 for( int ix
=m_rows
.GetChildren().GetCount()-1; ix
>=0; ix
-- ){
2062 wxSizerItem
*psi
= m_rows
.GetItem( (size_t)ix
);
2064 // Restore proportion for last item on line (if item has not been deleted)
2065 wxPropHolder
*pph
= (wxPropHolder
*)psi
->GetUserData();
2066 if( pph
&& GetChildren().Find(pph
->m_item
) )
2067 pph
->m_item
->SetProportion(pph
->m_propOld
);
2069 wxSizer
*psz
= psi
->GetSizer();
2071 wxSizerItemList
&sl
= psz
->GetChildren();
2072 while( sl
.GetLast() )
2073 sl
.Erase( sl
.GetLast() );
2076 int lineSumMajor
= 0;
2077 int majorSize
= GetSizeInMajorDir(m_size
);
2079 // Make sure we have at least one child sizer
2081 if( !m_rows
.GetChildren().GetCount() )
2082 m_rows
.Add( new wxBoxSizer(GetOrientation()), 1, wxEXPAND
);
2084 // The sizer where to insert items in
2085 wxSizer
*psz
= m_rows
.GetItem((size_t)0)->GetSizer();
2088 // Now put our child items into child sizers instead
2089 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
2090 wxSizerItem
*item
= NULL
, *itemLast
=NULL
;
2093 item
= node
->GetData();
2094 if ( item
->IsShown() )
2096 wxSize minSz
= item
->GetMinSize();
2097 int minSzMajor
= GetSizeInMajorDir(minSz
);
2099 // More space on this line?
2100 if( !lineSumMajor
|| lineSumMajor
+minSzMajor
<=majorSize
)
2102 lineSumMajor
+= minSzMajor
;
2106 lineSumMajor
= minSzMajor
;
2107 // Get a new empty sizer to insert into
2108 if( (int)m_rows
.GetChildren().GetCount()<=m_n_line
)
2109 m_rows
.Add( new wxBoxSizer(GetOrientation()), 1, wxEXPAND
);
2111 // If we have extend-last-on-each-line mode, then do so now
2112 // Note: We must store old proportion value then.
2113 if( m_flags
&wxEXTEND_LAST_ON_EACH_LINE
)
2114 AdjustPropLastItem(psz
,itemLast
);
2116 // The sizer where to insert items in
2117 psz
= m_rows
.GetItem(m_n_line
++)->GetSizer();
2121 // If item is a window, it now has a pointer to the child sizer,
2122 // which is wrong. Set it to point to us.
2123 if( item
->GetWindow() )
2124 item
->GetWindow()->SetContainingSizer( this );
2126 node
= node
->GetNext();
2129 // If we have extend-last-on-each-line mode, then do so now
2130 if( m_flags
&wxEXTEND_LAST_ON_EACH_LINE
)
2131 AdjustPropLastItem(psz
,itemLast
);
2133 // If we have more sizers than lines, remove them
2134 while( (int)m_rows
.GetChildren().GetCount()>m_n_line
)
2135 m_rows
.Remove( m_n_line
);
2137 // Now do layout on row sizer
2138 m_rows
.SetDimension( m_position
.x
, m_position
.y
, m_size
.x
, m_size
.y
);
2140 // Remember this to next time (will be overridden by InformFirstDirection if used)
2141 m_prim_size_last
= GetSizeInMajorDir(m_size
);
2145 wxSize
wxWrapSizer::CalcMin()
2147 if (m_children
.GetCount() == 0)
2150 // Algorithm for calculating min size: (assuming horizontal orientation)
2151 // X: Max width of all members
2152 // Y: Based on last X, calculate how many lines needed
2153 // First time around, assume all items fits on one line
2157 int lineMaxMinor
= 0;
2158 int lineSumMajor
= 0;
2161 // precalc item minsizes and fit on lines (preliminary)
2162 wxSizerItemList::compatibility_iterator node
= m_children
.GetFirst();
2165 wxSizerItem
*item
= node
->GetData();
2166 if ( item
->IsShown() )
2168 wxSize minSz
= item
->CalcMin();
2169 int szMajor
= GetSizeInMajorDir(minSz
);
2170 int szMinor
= GetSizeInMinorDir(minSz
);
2171 if( szMajor
>maxMajor
) maxMajor
= szMajor
;
2172 // More space on this line?
2173 if( m_prim_size_last
<0 || !lineSumMajor
||
2174 lineSumMajor
+szMajor
<=m_prim_size_last
)
2176 lineSumMajor
+= szMajor
;
2177 if( szMinor
>lineMaxMinor
)
2178 lineMaxMinor
= szMinor
;
2182 minorSum
+= lineMaxMinor
; // Add height of highest item on last line
2184 lineMaxMinor
= szMinor
;
2185 lineSumMajor
= szMajor
;
2188 node
= node
->GetNext();
2190 minorSum
+= lineMaxMinor
; // Add height of highest item on last line
2192 m_minSize
= SizeFromMajorMinor(maxMajor
, minorSum
);
2196 //---------------------------------------------------------------------------
2198 //---------------------------------------------------------------------------
2202 wxStaticBoxSizer::wxStaticBoxSizer( wxStaticBox
*box
, int orient
)
2203 : wxBoxSizer( orient
),
2206 wxASSERT_MSG( box
, wxT("wxStaticBoxSizer needs a static box") );
2208 // do this so that our Detach() is called if the static box is destroyed
2210 m_staticBox
->SetContainingSizer(this);
2213 wxStaticBoxSizer::wxStaticBoxSizer(int orient
, wxWindow
*win
, const wxString
& s
)
2214 : wxBoxSizer(orient
),
2215 m_staticBox(new wxStaticBox(win
, wxID_ANY
, s
))
2218 m_staticBox
->SetContainingSizer(this);
2221 wxStaticBoxSizer::~wxStaticBoxSizer()
2226 static void GetStaticBoxBorders( wxStaticBox
*box
,
2230 // this has to be done platform by platform as there is no way to
2231 // guess the thickness of a wxStaticBox border
2232 box
->GetBordersForSizer(borderTop
, borderOther
);
2235 void wxStaticBoxSizer::RecalcSizes()
2237 int top_border
, other_border
;
2238 GetStaticBoxBorders(m_staticBox
, &top_border
, &other_border
);
2240 m_staticBox
->SetSize( m_position
.x
, m_position
.y
, m_size
.x
, m_size
.y
);
2242 wxPoint
old_pos( m_position
);
2243 m_position
.x
+= other_border
;
2244 m_position
.y
+= top_border
;
2245 wxSize
old_size( m_size
);
2246 m_size
.x
-= 2*other_border
;
2247 m_size
.y
-= top_border
+ other_border
;
2249 wxBoxSizer::RecalcSizes();
2251 m_position
= old_pos
;
2255 wxSize
wxStaticBoxSizer::CalcMin()
2257 int top_border
, other_border
;
2258 GetStaticBoxBorders(m_staticBox
, &top_border
, &other_border
);
2260 wxSize
ret( wxBoxSizer::CalcMin() );
2261 ret
.x
+= 2*other_border
;
2262 ret
.y
+= other_border
+ top_border
;
2267 void wxStaticBoxSizer::ShowItems( bool show
)
2269 m_staticBox
->Show( show
);
2270 wxBoxSizer::ShowItems( show
);
2273 bool wxStaticBoxSizer::Detach( wxWindow
*window
)
2275 // avoid deleting m_staticBox in our dtor if it's being detached from the
2276 // sizer (which can happen because it's being already destroyed for
2278 if ( window
== m_staticBox
)
2284 return wxSizer::Detach( window
);
2287 #endif // wxUSE_STATBOX
2291 wxStdDialogButtonSizer::wxStdDialogButtonSizer()
2292 : wxBoxSizer(wxHORIZONTAL
)
2294 // Vertical buttons with lots of space on either side
2295 // looks rubbish on WinCE, so let's not do this for now.
2296 // If we are going to use vertical buttons, we should
2297 // put the sizer to the right of other controls in the dialog,
2298 // and that's beyond the scope of this sizer.
2300 bool is_pda
= (wxSystemSettings::GetScreenType() <= wxSYS_SCREEN_PDA
);
2301 // If we have a PDA screen, put yes/no button over
2302 // all other buttons, otherwise on the left side.
2304 m_orient
= wxVERTICAL
;
2307 m_buttonAffirmative
= NULL
;
2308 m_buttonApply
= NULL
;
2309 m_buttonNegative
= NULL
;
2310 m_buttonCancel
= NULL
;
2311 m_buttonHelp
= NULL
;
2314 void wxStdDialogButtonSizer::AddButton(wxButton
*mybutton
)
2316 switch (mybutton
->GetId())
2321 m_buttonAffirmative
= mybutton
;
2324 m_buttonApply
= mybutton
;
2327 m_buttonNegative
= mybutton
;
2331 m_buttonCancel
= mybutton
;
2334 case wxID_CONTEXT_HELP
:
2335 m_buttonHelp
= mybutton
;
2342 void wxStdDialogButtonSizer::SetAffirmativeButton( wxButton
*button
)
2344 m_buttonAffirmative
= button
;
2347 void wxStdDialogButtonSizer::SetNegativeButton( wxButton
*button
)
2349 m_buttonNegative
= button
;
2352 void wxStdDialogButtonSizer::SetCancelButton( wxButton
*button
)
2354 m_buttonCancel
= button
;
2357 void wxStdDialogButtonSizer::Realize()
2360 Add(0, 0, 0, wxLEFT
, 6);
2362 Add((wxWindow
*)m_buttonHelp
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 6);
2364 if (m_buttonNegative
){
2365 // HIG POLICE BULLETIN - destructive buttons need extra padding
2366 // 24 pixels on either side
2367 Add((wxWindow
*)m_buttonNegative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 12);
2370 // extra whitespace between help/negative and cancel/ok buttons
2371 Add(0, 0, 1, wxEXPAND
, 0);
2373 if (m_buttonCancel
){
2374 Add((wxWindow
*)m_buttonCancel
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 6);
2375 // Cancel or help should be default
2376 // m_buttonCancel->SetDefaultButton();
2379 // Ugh, Mac doesn't really have apply dialogs, so I'll just
2380 // figure the best place is between Cancel and OK
2382 Add((wxWindow
*)m_buttonApply
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 6);
2384 if (m_buttonAffirmative
){
2385 Add((wxWindow
*)m_buttonAffirmative
, 0, wxALIGN_CENTRE
| wxLEFT
, 6);
2387 if (m_buttonAffirmative
->GetId() == wxID_SAVE
){
2388 // these buttons have set labels under Mac so we should use them
2389 m_buttonAffirmative
->SetLabel(_("Save"));
2390 if (m_buttonNegative
)
2391 m_buttonNegative
->SetLabel(_("Don't Save"));
2395 // Extra space around and at the right
2397 #elif defined(__WXGTK20__)
2398 Add(0, 0, 0, wxLEFT
, 9);
2400 Add((wxWindow
*)m_buttonHelp
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 3);
2402 // extra whitespace between help and cancel/ok buttons
2403 Add(0, 0, 1, wxEXPAND
, 0);
2405 if (m_buttonNegative
){
2406 Add((wxWindow
*)m_buttonNegative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 3);
2409 // according to HIG, in explicit apply windows the order is:
2410 // [ Help Apply Cancel OK ]
2412 Add((wxWindow
*)m_buttonApply
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 3);
2414 if (m_buttonCancel
){
2415 Add((wxWindow
*)m_buttonCancel
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, 3);
2416 // Cancel or help should be default
2417 // m_buttonCancel->SetDefaultButton();
2420 if (m_buttonAffirmative
)
2421 Add((wxWindow
*)m_buttonAffirmative
, 0, wxALIGN_CENTRE
| wxLEFT
, 6);
2422 #elif defined(__WXMSW__)
2425 // right-justify buttons
2426 Add(0, 0, 1, wxEXPAND
, 0);
2428 if (m_buttonAffirmative
){
2429 Add((wxWindow
*)m_buttonAffirmative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonAffirmative
->ConvertDialogToPixels(wxSize(2, 0)).x
);
2432 if (m_buttonNegative
){
2433 Add((wxWindow
*)m_buttonNegative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonNegative
->ConvertDialogToPixels(wxSize(2, 0)).x
);
2436 if (m_buttonCancel
){
2437 Add((wxWindow
*)m_buttonCancel
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonCancel
->ConvertDialogToPixels(wxSize(2, 0)).x
);
2440 Add((wxWindow
*)m_buttonApply
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonApply
->ConvertDialogToPixels(wxSize(2, 0)).x
);
2443 Add((wxWindow
*)m_buttonHelp
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonHelp
->ConvertDialogToPixels(wxSize(2, 0)).x
);
2445 // GTK+1 and any other platform
2447 // Add(0, 0, 0, wxLEFT, 5); // Not sure what this was for but it unbalances the dialog
2449 Add((wxWindow
*)m_buttonHelp
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonHelp
->ConvertDialogToPixels(wxSize(4, 0)).x
);
2451 // extra whitespace between help and cancel/ok buttons
2452 Add(0, 0, 1, wxEXPAND
, 0);
2455 Add((wxWindow
*)m_buttonApply
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonApply
->ConvertDialogToPixels(wxSize(4, 0)).x
);
2457 if (m_buttonAffirmative
){
2458 Add((wxWindow
*)m_buttonAffirmative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonAffirmative
->ConvertDialogToPixels(wxSize(4, 0)).x
);
2461 if (m_buttonNegative
){
2462 Add((wxWindow
*)m_buttonNegative
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonNegative
->ConvertDialogToPixels(wxSize(4, 0)).x
);
2465 if (m_buttonCancel
){
2466 Add((wxWindow
*)m_buttonCancel
, 0, wxALIGN_CENTRE
| wxLEFT
| wxRIGHT
, m_buttonCancel
->ConvertDialogToPixels(wxSize(4, 0)).x
);
2467 // Cancel or help should be default
2468 // m_buttonCancel->SetDefaultButton();
2474 #endif // wxUSE_BUTTON