1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: provide wxSizer class for layout
4 // Author: Robert Roebling and Robin Dunn
5 // Modified by: Ron Lee, Vadim Zeitlin (wxSizerFlags)
8 // Copyright: (c) Robin Dunn, Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
17 #include "wx/button.h"
18 #include "wx/window.h"
20 #include "wx/dialog.h"
22 //---------------------------------------------------------------------------
24 //---------------------------------------------------------------------------
26 class WXDLLEXPORT wxSizerItem
;
27 class WXDLLEXPORT wxSizer
;
28 class WXDLLEXPORT wxBoxSizer
;
31 // ----------------------------------------------------------------------------
32 // wxSizerFlags: flags used for an item in the sizer
33 // ----------------------------------------------------------------------------
35 class WXDLLEXPORT wxSizerFlags
38 // construct the flags object initialized with the given proportion (0 by
40 wxSizerFlags(int proportion
= 0) : m_proportion(proportion
)
46 // setters for all sizer flags, they all return the object itself so that
47 // calls to them can be chained
49 wxSizerFlags
& Proportion(int proportion
)
51 m_proportion
= proportion
;
55 wxSizerFlags
& Align(int alignment
) // combination of wxAlignment values
57 m_flags
&= ~wxALIGN_MASK
;
63 wxSizerFlags
& Expand()
69 // some shortcuts for Align()
70 wxSizerFlags
& Centre() { return Align(wxCENTRE
); }
71 wxSizerFlags
& Center() { return Centre(); }
72 wxSizerFlags
& Left() { return Align(wxALIGN_LEFT
); }
73 wxSizerFlags
& Right() { return Align(wxALIGN_RIGHT
); }
76 wxSizerFlags
& Border(int direction
, int borderInPixels
)
81 m_borderInPixels
= borderInPixels
;
86 wxSizerFlags
& Border(int direction
= wxALL
)
88 // FIXME: default border size shouldn't be hardcoded
90 // no borders by default on limited size screen
91 wxUnusedVar(direction
);
95 return Border(direction
, 5);
100 // accessors for wxSizer only
101 int GetProportion() const { return m_proportion
; }
102 int GetFlags() const { return m_flags
; }
103 int GetBorderInPixels() const { return m_borderInPixels
; }
108 int m_borderInPixels
;
112 // ----------------------------------------------------------------------------
113 // wxSizerSpacer: used by wxSizerItem to represent a spacer
114 // ----------------------------------------------------------------------------
116 class WXDLLEXPORT wxSizerSpacer
119 wxSizerSpacer(const wxSize
& size
) : m_size(size
), m_isShown(true) { }
121 void SetSize(const wxSize
& size
) { m_size
= size
; }
122 const wxSize
& GetSize() const { return m_size
; }
124 void Show(bool show
) { m_isShown
= show
; }
125 bool IsShown() const { return m_isShown
; }
128 // the size, in pixel
131 // is the spacer currently shown?
135 // ----------------------------------------------------------------------------
137 // ----------------------------------------------------------------------------
139 class WXDLLEXPORT wxSizerItem
: public wxObject
143 wxSizerItem( wxWindow
*window
,
147 wxObject
* userData
);
150 wxSizerItem(wxWindow
*window
, const wxSizerFlags
& flags
)
158 wxSizerItem( wxSizer
*sizer
,
162 wxObject
* userData
);
165 wxSizerItem(wxSizer
*sizer
, const wxSizerFlags
& flags
)
173 wxSizerItem( int width
,
181 wxSizerItem(int width
, int height
, const wxSizerFlags
& flags
)
185 SetSpacer(width
, height
);
189 virtual ~wxSizerItem();
191 virtual void DeleteWindows();
193 // Enable deleting the SizerItem without destroying the contained sizer.
194 void DetachSizer() { m_sizer
= NULL
; }
196 virtual wxSize
GetSize() const;
197 virtual wxSize
CalcMin();
198 virtual void SetDimension( const wxPoint
& pos
, const wxSize
& size
);
200 wxSize
GetMinSize() const
201 { return m_minSize
; }
202 wxSize
GetMinSizeWithBorder() const;
204 void SetMinSize(const wxSize
& size
)
207 m_window
->SetMinSize(size
);
210 void SetMinSize( int x
, int y
)
211 { SetMinSize(wxSize(x
, y
)); }
212 void SetInitSize( int x
, int y
)
213 { SetMinSize(wxSize(x
, y
)); }
215 // if either of dimensions is zero, ratio is assumed to be 1
216 // to avoid "divide by zero" errors
217 void SetRatio(int width
, int height
)
218 { m_ratio
= (width
&& height
) ? ((float) width
/ (float) height
) : 1; }
219 void SetRatio(const wxSize
& size
)
220 { SetRatio(size
.x
, size
.y
); }
221 void SetRatio(float ratio
)
223 float GetRatio() const
226 virtual wxRect
GetRect() { return m_rect
; }
228 bool IsWindow() const { return m_kind
== Item_Window
; }
229 bool IsSizer() const { return m_kind
== Item_Sizer
; }
230 bool IsSpacer() const { return m_kind
== Item_Spacer
; }
232 // Deprecated in 2.6, use {G,S}etProportion instead.
233 wxDEPRECATED( void SetOption( int option
) );
234 wxDEPRECATED( int GetOption() const );
236 void SetProportion( int proportion
)
237 { m_proportion
= proportion
; }
238 int GetProportion() const
239 { return m_proportion
; }
240 void SetFlag( int flag
)
244 void SetBorder( int border
)
245 { m_border
= border
; }
246 int GetBorder() const
249 wxWindow
*GetWindow() const
250 { return m_kind
== Item_Window
? m_window
: NULL
; }
251 wxSizer
*GetSizer() const
252 { return m_kind
== Item_Sizer
? m_sizer
: NULL
; }
253 wxSize
GetSpacer() const;
255 void Show(bool show
);
256 bool IsShown() const;
258 wxObject
* GetUserData() const
259 { return m_userData
; }
260 wxPoint
GetPosition() const
264 // these functions do not free old sizer/spacer
265 void SetWindow(wxWindow
*window
);
266 void SetSizer(wxSizer
*sizer
);
267 void SetSpacer(const wxSize
& size
);
268 void SetSpacer(int width
, int height
) { SetSpacer(wxSize(width
, height
)); }
271 // common part of several ctors
272 void Init() { m_userData
= NULL
; }
274 // common part of ctors taking wxSizerFlags
275 void Init(const wxSizerFlags
& flags
);
289 wxSizerSpacer
*m_spacer
;
298 // on screen rectangle of this item (not including borders)
301 // Aspect ratio can always be calculated from m_size,
302 // but this would cause precision loss when the window
303 // is shrunk. It is safer to preserve the initial value.
306 wxObject
*m_userData
;
309 DECLARE_CLASS(wxSizerItem
)
310 DECLARE_NO_COPY_CLASS(wxSizerItem
)
313 WX_DECLARE_EXPORTED_LIST( wxSizerItem
, wxSizerItemList
);
316 //---------------------------------------------------------------------------
318 //---------------------------------------------------------------------------
320 class WXDLLEXPORT wxSizer
: public wxObject
, public wxClientDataContainer
326 // methods for adding elements to the sizer: there are Add/Insert/Prepend
327 // overloads for each of window/sizer/spacer/wxSizerItem
328 inline wxSizerItem
* Add( wxWindow
*window
,
332 wxObject
* userData
= NULL
);
333 inline wxSizerItem
* Add( wxSizer
*sizer
,
337 wxObject
* userData
= NULL
);
338 inline wxSizerItem
* Add( int width
,
343 wxObject
* userData
= NULL
);
344 inline wxSizerItem
* Add( wxWindow
*window
, const wxSizerFlags
& flags
);
345 inline wxSizerItem
* Add( wxSizer
*sizer
, const wxSizerFlags
& flags
);
346 inline wxSizerItem
* Add( wxSizerItem
*item
);
348 inline wxSizerItem
* AddSpacer(int size
);
349 inline wxSizerItem
* AddStretchSpacer(int prop
= 1);
351 inline wxSizerItem
* Insert( size_t index
,
356 wxObject
* userData
= NULL
);
357 inline wxSizerItem
* Insert( size_t index
,
362 wxObject
* userData
= NULL
);
363 inline wxSizerItem
* Insert( size_t index
,
369 wxObject
* userData
= NULL
);
370 inline wxSizerItem
* Insert( size_t index
,
372 const wxSizerFlags
& flags
);
373 inline wxSizerItem
* Insert( size_t index
,
375 const wxSizerFlags
& flags
);
376 virtual wxSizerItem
* Insert( size_t index
, wxSizerItem
*item
);
378 inline wxSizerItem
* InsertSpacer(size_t index
, int size
);
379 inline wxSizerItem
* InsertStretchSpacer(size_t index
, int prop
= 1);
381 inline wxSizerItem
* Prepend( wxWindow
*window
,
385 wxObject
* userData
= NULL
);
386 inline wxSizerItem
* Prepend( wxSizer
*sizer
,
390 wxObject
* userData
= NULL
);
391 inline wxSizerItem
* Prepend( int width
,
396 wxObject
* userData
= NULL
);
397 inline wxSizerItem
* Prepend( wxWindow
*window
, const wxSizerFlags
& flags
);
398 inline wxSizerItem
* Prepend( wxSizer
*sizer
, const wxSizerFlags
& flags
);
399 inline wxSizerItem
* Prepend( wxSizerItem
*item
);
401 inline wxSizerItem
* PrependSpacer(int size
);
402 inline wxSizerItem
* PrependStretchSpacer(int prop
= 1);
405 // Deprecated in 2.6 since historically it does not delete the window,
406 // use Detach instead.
407 wxDEPRECATED( virtual bool Remove( wxWindow
*window
) );
408 virtual bool Remove( wxSizer
*sizer
);
409 virtual bool Remove( int index
);
411 virtual bool Detach( wxWindow
*window
);
412 virtual bool Detach( wxSizer
*sizer
);
413 virtual bool Detach( int index
);
415 virtual void Clear( bool delete_windows
= false );
416 virtual void DeleteWindows();
418 void SetMinSize( int width
, int height
)
419 { DoSetMinSize( width
, height
); }
420 void SetMinSize( const wxSize
& size
)
421 { DoSetMinSize( size
.x
, size
.y
); }
423 // Searches recursively
424 bool SetItemMinSize( wxWindow
*window
, int width
, int height
)
425 { return DoSetItemMinSize( window
, width
, height
); }
426 bool SetItemMinSize( wxWindow
*window
, const wxSize
& size
)
427 { return DoSetItemMinSize( window
, size
.x
, size
.y
); }
429 // Searches recursively
430 bool SetItemMinSize( wxSizer
*sizer
, int width
, int height
)
431 { return DoSetItemMinSize( sizer
, width
, height
); }
432 bool SetItemMinSize( wxSizer
*sizer
, const wxSize
& size
)
433 { return DoSetItemMinSize( sizer
, size
.x
, size
.y
); }
435 bool SetItemMinSize( size_t index
, int width
, int height
)
436 { return DoSetItemMinSize( index
, width
, height
); }
437 bool SetItemMinSize( size_t index
, const wxSize
& size
)
438 { return DoSetItemMinSize( index
, size
.x
, size
.y
); }
440 wxSize
GetSize() const
442 wxPoint
GetPosition() const
443 { return m_position
; }
445 // Calculate the minimal size or return m_minSize if bigger.
448 virtual void RecalcSizes() = 0;
449 virtual wxSize
CalcMin() = 0;
451 virtual void Layout();
453 wxSize
Fit( wxWindow
*window
);
454 void FitInside( wxWindow
*window
);
455 void SetSizeHints( wxWindow
*window
);
456 void SetVirtualSizeHints( wxWindow
*window
);
458 wxSizerItemList
& GetChildren()
459 { return m_children
; }
461 void SetDimension( int x
, int y
, int width
, int height
);
463 wxSizerItem
* GetItem( wxWindow
*window
, bool recursive
= false );
464 wxSizerItem
* GetItem( wxSizer
*sizer
, bool recursive
= false );
465 wxSizerItem
* GetItem( size_t index
);
467 // Manage whether individual scene items are considered
468 // in the layout calculations or not.
469 bool Show( wxWindow
*window
, bool show
= true, bool recursive
= false );
470 bool Show( wxSizer
*sizer
, bool show
= true, bool recursive
= false );
471 bool Show( size_t index
, bool show
= true );
473 bool Hide( wxSizer
*sizer
, bool recursive
= false )
474 { return Show( sizer
, false, recursive
); }
475 bool Hide( wxWindow
*window
, bool recursive
= false )
476 { return Show( window
, false, recursive
); }
477 bool Hide( size_t index
)
478 { return Show( index
, false ); }
480 bool IsShown( wxWindow
*window
) const;
481 bool IsShown( wxSizer
*sizer
) const;
482 bool IsShown( size_t index
) const;
484 // Recursively call wxWindow::Show () on all sizer items.
485 virtual void ShowItems (bool show
);
491 bool IsShown() const { return m_isShown
; }
497 wxSizerItemList m_children
;
500 wxSize
GetMaxWindowSize( wxWindow
*window
) const;
501 wxSize
GetMinWindowSize( wxWindow
*window
);
502 wxSize
GetMaxClientSize( wxWindow
*window
) const;
503 wxSize
GetMinClientSize( wxWindow
*window
);
504 wxSize
FitSize( wxWindow
*window
);
505 wxSize
VirtualFitSize( wxWindow
*window
);
507 virtual void DoSetMinSize( int width
, int height
);
508 virtual bool DoSetItemMinSize( wxWindow
*window
, int width
, int height
);
509 virtual bool DoSetItemMinSize( wxSizer
*sizer
, int width
, int height
);
510 virtual bool DoSetItemMinSize( size_t index
, int width
, int height
);
513 DECLARE_CLASS(wxSizer
)
516 //---------------------------------------------------------------------------
518 //---------------------------------------------------------------------------
520 class WXDLLEXPORT wxGridSizer
: public wxSizer
523 wxGridSizer( int rows
, int cols
, int vgap
, int hgap
);
524 wxGridSizer( int cols
, int vgap
= 0, int hgap
= 0 );
526 virtual void RecalcSizes();
527 virtual wxSize
CalcMin();
529 void SetCols( int cols
) { m_cols
= cols
; }
530 void SetRows( int rows
) { m_rows
= rows
; }
531 void SetVGap( int gap
) { m_vgap
= gap
; }
532 void SetHGap( int gap
) { m_hgap
= gap
; }
533 int GetCols() const { return m_cols
; }
534 int GetRows() const { return m_rows
; }
535 int GetVGap() const { return m_vgap
; }
536 int GetHGap() const { return m_hgap
; }
544 // return the number of total items and the number of columns and rows
545 int CalcRowsCols(int& rows
, int& cols
) const;
547 void SetItemBounds( wxSizerItem
*item
, int x
, int y
, int w
, int h
);
550 DECLARE_CLASS(wxGridSizer
)
553 //---------------------------------------------------------------------------
555 //---------------------------------------------------------------------------
557 // the bevaiour for resizing wxFlexGridSizer cells in the "non-flexible"
559 enum wxFlexSizerGrowMode
561 // don't resize the cells in non-flexible direction at all
562 wxFLEX_GROWMODE_NONE
,
564 // uniformly resize only the specified ones (default)
565 wxFLEX_GROWMODE_SPECIFIED
,
567 // uniformly resize all cells
571 class WXDLLEXPORT wxFlexGridSizer
: public wxGridSizer
575 wxFlexGridSizer( int rows
, int cols
, int vgap
, int hgap
);
576 wxFlexGridSizer( int cols
, int vgap
= 0, int hgap
= 0 );
577 virtual ~wxFlexGridSizer();
580 // set the rows/columns which will grow (the others will remain of the
581 // constant initial size)
582 void AddGrowableRow( size_t idx
, int proportion
= 0 );
583 void RemoveGrowableRow( size_t idx
);
584 void AddGrowableCol( size_t idx
, int proportion
= 0 );
585 void RemoveGrowableCol( size_t idx
);
588 // the sizer cells may grow in both directions, not grow at all or only
589 // grow in one direction but not the other
591 // the direction may be wxVERTICAL, wxHORIZONTAL or wxBOTH (default)
592 void SetFlexibleDirection(int direction
) { m_flexDirection
= direction
; }
593 int GetFlexibleDirection() const { return m_flexDirection
; }
595 // note that the grow mode only applies to the direction which is not
597 void SetNonFlexibleGrowMode(wxFlexSizerGrowMode mode
) { m_growMode
= mode
; }
598 wxFlexSizerGrowMode
GetNonFlexibleGrowMode() const { return m_growMode
; }
600 // Read-only access to the row heights and col widths arrays
601 const wxArrayInt
& GetRowHeights() const { return m_rowHeights
; }
602 const wxArrayInt
& GetColWidths() const { return m_colWidths
; }
605 virtual void RecalcSizes();
606 virtual wxSize
CalcMin();
609 void AdjustForFlexDirection();
610 void AdjustForGrowables(const wxSize
& sz
, const wxSize
& minsz
,
611 int nrows
, int ncols
);
613 // the heights/widths of all rows/columns
614 wxArrayInt m_rowHeights
,
617 // indices of the growable columns and rows
618 wxArrayInt m_growableRows
,
621 // proportion values of the corresponding growable rows and columns
622 wxArrayInt m_growableRowsProportions
,
623 m_growableColsProportions
;
625 // parameters describing whether the growable cells should be resized in
626 // both directions or only one
628 wxFlexSizerGrowMode m_growMode
;
630 // saves CalcMin result to optimize RecalcSizes
631 wxSize m_calculatedMinSize
;
634 DECLARE_CLASS(wxFlexGridSizer
)
635 DECLARE_NO_COPY_CLASS(wxFlexGridSizer
)
638 //---------------------------------------------------------------------------
640 //---------------------------------------------------------------------------
642 class WXDLLEXPORT wxBoxSizer
: public wxSizer
645 wxBoxSizer( int orient
);
650 int GetOrientation() const
653 void SetOrientation(int orient
)
654 { m_orient
= orient
; }
665 DECLARE_CLASS(wxBoxSizer
)
668 //---------------------------------------------------------------------------
670 //---------------------------------------------------------------------------
674 class WXDLLEXPORT wxStaticBox
;
676 class WXDLLEXPORT wxStaticBoxSizer
: public wxBoxSizer
679 wxStaticBoxSizer(wxStaticBox
*box
, int orient
);
680 wxStaticBoxSizer(int orient
, wxWindow
*win
, const wxString
& label
= wxEmptyString
);
685 wxStaticBox
*GetStaticBox() const
686 { return m_staticBox
; }
688 // override to hide/show the static box as well
689 virtual void ShowItems (bool show
);
692 wxStaticBox
*m_staticBox
;
695 DECLARE_CLASS(wxStaticBoxSizer
)
696 DECLARE_NO_COPY_CLASS(wxStaticBoxSizer
)
699 #endif // wxUSE_STATBOX
703 class WXDLLEXPORT wxStdDialogButtonSizer
: public wxBoxSizer
706 // Constructor just creates a new wxBoxSizer, not much else.
707 // Box sizer orientation is automatically determined here:
708 // vertical for PDAs, horizontal for everything else?
709 wxStdDialogButtonSizer();
711 // Checks button ID against system IDs and sets one of the pointers below
712 // to this button. Does not do any sizer-related things here.
713 void AddButton(wxButton
*button
);
715 // Use these if no standard ID can/should be used
716 void SetAffirmativeButton( wxButton
*button
);
717 void SetNegativeButton( wxButton
*button
);
718 void SetCancelButton( wxButton
*button
);
720 // All platform-specific code here, checks which buttons exist and add
721 // them to the sizer accordingly.
722 // Note - one potential hack on Mac we could use here,
723 // if m_buttonAffirmative is wxID_SAVE then ensure wxID_SAVE
724 // is set to _("Save") and m_buttonNegative is set to _("Don't Save")
725 // I wouldn't add any other hacks like that into here,
726 // but this one I can see being useful.
729 wxButton
*GetAffirmativeButton() const { return m_buttonAffirmative
; }
730 wxButton
*GetApplyButton() const { return m_buttonApply
; }
731 wxButton
*GetNegativeButton() const { return m_buttonNegative
; }
732 wxButton
*GetCancelButton() const { return m_buttonCancel
; }
733 wxButton
*GetHelpButton() const { return m_buttonHelp
; }
736 wxButton
*m_buttonAffirmative
; // wxID_OK, wxID_YES, wxID_SAVE go here
737 wxButton
*m_buttonApply
;
738 wxButton
*m_buttonNegative
; // wxID_NO
739 wxButton
*m_buttonCancel
;
740 wxButton
*m_buttonHelp
;
743 DECLARE_CLASS(wxStdDialogButtonSizer
)
744 DECLARE_NO_COPY_CLASS(wxStdDialogButtonSizer
)
747 #endif // wxUSE_BUTTON
749 #if WXWIN_COMPATIBILITY_2_4
750 // NB: wxBookCtrlSizer and wxNotebookSizer are deprecated, they
751 // don't do anything. wxBookCtrlBase::DoGetBestSize does the job now.
753 // ----------------------------------------------------------------------------
755 // ----------------------------------------------------------------------------
759 // this sizer works with wxNotebook/wxListbook/... and sizes the control to
761 class WXDLLEXPORT wxBookCtrlBase
;
763 class WXDLLEXPORT wxBookCtrlSizer
: public wxSizer
766 wxDEPRECATED( wxBookCtrlSizer(wxBookCtrlBase
*bookctrl
) );
768 wxBookCtrlBase
*GetControl() const { return m_bookctrl
; }
770 virtual void RecalcSizes();
771 virtual wxSize
CalcMin();
774 // this protected ctor lets us mark the real one above as deprecated
775 // and still have warning-free build of the library itself:
778 wxBookCtrlBase
*m_bookctrl
;
781 DECLARE_CLASS(wxBookCtrlSizer
)
782 DECLARE_NO_COPY_CLASS(wxBookCtrlSizer
)
788 // before wxBookCtrlBase we only had wxNotebookSizer, keep it for backwards
790 class WXDLLEXPORT wxNotebook
;
792 class WXDLLEXPORT wxNotebookSizer
: public wxBookCtrlSizer
795 wxDEPRECATED( wxNotebookSizer(wxNotebook
*nb
) );
797 wxNotebook
*GetNotebook() const { return (wxNotebook
*)m_bookctrl
; }
800 DECLARE_CLASS(wxNotebookSizer
)
801 DECLARE_NO_COPY_CLASS(wxNotebookSizer
)
804 #endif // wxUSE_NOTEBOOK
806 #endif // wxUSE_BOOKCTRL
808 #endif // WXWIN_COMPATIBILITY_2_4
810 // ----------------------------------------------------------------------------
811 // inline functions implementation
812 // ----------------------------------------------------------------------------
815 wxSizer::Add( wxWindow
*window
, int proportion
, int flag
, int border
, wxObject
* userData
)
817 return Add( new wxSizerItem( window
, proportion
, flag
, border
, userData
) );
821 wxSizer::Add( wxSizer
*sizer
, int proportion
, int flag
, int border
, wxObject
* userData
)
823 return Add( new wxSizerItem( sizer
, proportion
, flag
, border
, userData
) );
827 wxSizer::Add( int width
, int height
, int proportion
, int flag
, int border
, wxObject
* userData
)
829 return Add( new wxSizerItem( width
, height
, proportion
, flag
, border
, userData
) );
833 wxSizer::Add( wxWindow
*window
, const wxSizerFlags
& flags
)
835 return Add( new wxSizerItem(window
, flags
) );
839 wxSizer::Add( wxSizer
*sizer
, const wxSizerFlags
& flags
)
841 return Add( new wxSizerItem(sizer
, flags
) );
845 wxSizer::Add( wxSizerItem
*item
)
847 return Insert( m_children
.GetCount(), item
);
851 wxSizer::AddSpacer(int size
)
853 return Add(size
, size
);
857 wxSizer::AddStretchSpacer(int prop
)
859 return Add(0, 0, prop
);
863 wxSizer::Prepend( wxWindow
*window
, int proportion
, int flag
, int border
, wxObject
* userData
)
865 return Prepend( new wxSizerItem( window
, proportion
, flag
, border
, userData
) );
869 wxSizer::Prepend( wxSizer
*sizer
, int proportion
, int flag
, int border
, wxObject
* userData
)
871 return Prepend( new wxSizerItem( sizer
, proportion
, flag
, border
, userData
) );
875 wxSizer::Prepend( int width
, int height
, int proportion
, int flag
, int border
, wxObject
* userData
)
877 return Prepend( new wxSizerItem( width
, height
, proportion
, flag
, border
, userData
) );
881 wxSizer::Prepend( wxSizerItem
*item
)
883 return Insert( 0, item
);
887 wxSizer::PrependSpacer(int size
)
889 return Prepend(size
, size
);
893 wxSizer::PrependStretchSpacer(int prop
)
895 return Prepend(0, 0, prop
);
899 wxSizer::Prepend( wxWindow
*window
, const wxSizerFlags
& flags
)
901 return Prepend( new wxSizerItem(window
, flags
) );
905 wxSizer::Prepend( wxSizer
*sizer
, const wxSizerFlags
& flags
)
907 return Prepend( new wxSizerItem(sizer
, flags
) );
911 wxSizer::Insert( size_t index
,
918 return Insert( index
, new wxSizerItem( window
, proportion
, flag
, border
, userData
) );
922 wxSizer::Insert( size_t index
,
929 return Insert( index
, new wxSizerItem( sizer
, proportion
, flag
, border
, userData
) );
933 wxSizer::Insert( size_t index
,
941 return Insert( index
, new wxSizerItem( width
, height
, proportion
, flag
, border
, userData
) );
945 wxSizer::Insert( size_t index
, wxWindow
*window
, const wxSizerFlags
& flags
)
947 return Insert( index
, new wxSizerItem(window
, flags
) );
951 wxSizer::Insert( size_t index
, wxSizer
*sizer
, const wxSizerFlags
& flags
)
953 return Insert( index
, new wxSizerItem(sizer
, flags
) );
957 wxSizer::InsertSpacer(size_t index
, int size
)
959 return Insert(index
, size
, size
);
963 wxSizer::InsertStretchSpacer(size_t index
, int prop
)
965 return Insert(index
, 0, 0, prop
);
969 #endif // __WXSIZER_H__