1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: provide wxSizer class for layouting
4 // Author: Robert Roebling and Robin Dunn
5 // Modified by: Ron Lee
8 // Copyright: (c) Robin Dunn, Dirk Holtwick and Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #if defined(__GNUG__) && !defined(__APPLE__)
16 #pragma interface "sizer.h"
21 #include "wx/window.h"
23 #include "wx/dialog.h"
25 //---------------------------------------------------------------------------
27 //---------------------------------------------------------------------------
33 //---------------------------------------------------------------------------
35 //---------------------------------------------------------------------------
37 class WXDLLEXPORT wxSizerItem
: public wxObject
41 wxSizerItem( int width
, int height
, int option
, int flag
, int border
, wxObject
* userData
);
44 wxSizerItem( wxWindow
*window
, int option
, int flag
, int border
, wxObject
* userData
);
47 wxSizerItem( wxSizer
*sizer
, int option
, int flag
, int border
, wxObject
* userData
);
51 virtual void DeleteWindows();
53 virtual wxSize
GetSize();
54 virtual wxSize
CalcMin();
55 virtual void SetDimension( wxPoint pos
, wxSize size
);
60 void SetRatio( int width
, int height
)
61 // if either of dimensions is zero, ratio is assumed to be 1
62 // to avoid "divide by zero" errors
63 { m_ratio
= (width
&& height
) ? ((float) width
/ (float) height
) : 1; }
64 void SetRatio( wxSize size
)
65 { m_ratio
= (size
.x
&& size
.y
) ? ((float) size
.x
/ (float) size
.y
) : 1; }
66 void SetRatio( float ratio
)
68 float GetRatio() const
75 void SetInitSize( int x
, int y
)
76 { m_minSize
.x
= x
; m_minSize
.y
= y
; }
77 void SetOption( int option
)
78 { m_option
= option
; }
79 void SetFlag( int flag
)
81 void SetBorder( int border
)
82 { m_border
= border
; }
83 void Show ( bool show
)
85 void SetDeleteItem( bool deleteItem
= TRUE
)
86 { m_deleteItem
= deleteItem
; }
88 wxWindow
*GetWindow() const
90 void SetWindow( wxWindow
*window
)
91 { m_window
= window
; }
92 wxSizer
*GetSizer() const
94 void SetSizer( wxSizer
*sizer
)
100 int GetBorder() const
104 wxObject
* GetUserData()
105 { return m_userData
; }
106 wxPoint
GetPosition()
119 // If TRUE, then this item is considered in the layout
120 // calculation. Otherwise, it is skipped over.
122 // als: aspect ratio can always be calculated from m_size,
123 // but this would cause precision loss when the window
124 // is shrinked. it is safer to preserve initial value.
127 // If TRUE, and the item is a sizer, delete it when the
128 // sizeritem is destroyed. Not used for any other type
129 // of item right now.
132 wxObject
*m_userData
;
135 DECLARE_CLASS(wxSizerItem
);
138 //---------------------------------------------------------------------------
140 //---------------------------------------------------------------------------
142 class WXDLLEXPORT wxSizer
: public wxObject
, public wxClientDataContainer
148 /* These should be called Append() really. */
149 virtual void Add( wxWindow
*window
, int option
= 0, int flag
= 0, int border
= 0, wxObject
* userData
= NULL
);
150 virtual void Add( wxSizer
*sizer
, int option
= 0, int flag
= 0, int border
= 0, wxObject
* userData
= NULL
);
151 virtual void Add( int width
, int height
, int option
= 0, int flag
= 0, int border
= 0, wxObject
* userData
= NULL
);
153 virtual void Insert( int before
, wxWindow
*window
, int option
= 0, int flag
= 0, int border
= 0, wxObject
* userData
= NULL
);
154 virtual void Insert( int before
, wxSizer
*sizer
, int option
= 0, int flag
= 0, int border
= 0, wxObject
* userData
= NULL
);
155 virtual void Insert( int before
, int width
, int height
, int option
= 0, int flag
= 0, int border
= 0, wxObject
* userData
= NULL
);
157 virtual void Prepend( wxWindow
*window
, int option
= 0, int flag
= 0, int border
= 0, wxObject
* userData
= NULL
);
158 virtual void Prepend( wxSizer
*sizer
, int option
= 0, int flag
= 0, int border
= 0, wxObject
* userData
= NULL
);
159 virtual void Prepend( int width
, int height
, int option
= 0, int flag
= 0, int border
= 0, wxObject
* userData
= NULL
);
161 // Remove will delete a sizer, but not a window.
162 virtual bool Remove( wxWindow
*window
);
163 virtual bool Remove( wxSizer
*sizer
);
164 virtual bool Remove( int pos
);
166 // Detach will never destroy a sizer or window.
167 virtual bool Detach( wxWindow
*window
)
168 { return Remove( window
); }
169 virtual bool Detach( wxSizer
*sizer
);
170 virtual bool Detach( int pos
);
172 virtual void Clear( bool delete_windows
=FALSE
);
173 virtual void DeleteWindows();
175 void SetMinSize( int width
, int height
)
176 { DoSetMinSize( width
, height
); }
177 void SetMinSize( wxSize size
)
178 { DoSetMinSize( size
.x
, size
.y
); }
180 /* Searches recursively */
181 bool SetItemMinSize( wxWindow
*window
, int width
, int height
)
182 { return DoSetItemMinSize( window
, width
, height
); }
183 bool SetItemMinSize( wxWindow
*window
, wxSize size
)
184 { return DoSetItemMinSize( window
, size
.x
, size
.y
); }
186 /* Searches recursively */
187 bool SetItemMinSize( wxSizer
*sizer
, int width
, int height
)
188 { return DoSetItemMinSize( sizer
, width
, height
); }
189 bool SetItemMinSize( wxSizer
*sizer
, wxSize size
)
190 { return DoSetItemMinSize( sizer
, size
.x
, size
.y
); }
192 bool SetItemMinSize( int pos
, int width
, int height
)
193 { return DoSetItemMinSize( pos
, width
, height
); }
194 bool SetItemMinSize( int pos
, wxSize size
)
195 { return DoSetItemMinSize( pos
, size
.x
, size
.y
); }
199 wxPoint
GetPosition()
200 { return m_position
; }
202 /* Calculate the minimal size or return m_minSize if bigger. */
205 virtual void RecalcSizes() = 0;
206 virtual wxSize
CalcMin() = 0;
208 virtual void Layout();
210 wxSize
Fit( wxWindow
*window
);
211 void FitInside( wxWindow
*window
);
212 void SetSizeHints( wxWindow
*window
);
213 void SetVirtualSizeHints( wxWindow
*window
);
215 wxList
& GetChildren()
216 { return m_children
; }
218 void SetDimension( int x
, int y
, int width
, int height
);
220 // Manage whether individual windows or sub-sizers are considered
221 // in the layout calculations or not.
222 void Show( wxWindow
*window
, bool show
= TRUE
);
223 void Hide( wxWindow
*window
)
224 { Show (window
, FALSE
); }
225 void Show( wxSizer
*sizer
, bool show
= TRUE
);
226 void Hide( wxSizer
*sizer
)
227 { Show (sizer
, FALSE
); }
229 bool IsShown( wxWindow
*window
);
230 bool IsShown( wxSizer
*sizer
);
232 // Recursively call wxWindow::Show () on all sizer items.
233 void ShowItems (bool show
);
241 wxSize
GetMaxWindowSize( wxWindow
*window
);
242 wxSize
GetMinWindowSize( wxWindow
*window
);
243 wxSize
GetMaxClientSize( wxWindow
*window
);
244 wxSize
GetMinClientSize( wxWindow
*window
);
245 wxSize
FitSize( wxWindow
*window
);
246 wxSize
VirtualFitSize( wxWindow
*window
);
248 virtual void DoSetMinSize( int width
, int height
);
249 virtual bool DoSetItemMinSize( wxWindow
*window
, int width
, int height
);
250 virtual bool DoSetItemMinSize( wxSizer
*sizer
, int width
, int height
);
251 virtual bool DoSetItemMinSize( int pos
, int width
, int height
);
254 DECLARE_CLASS(wxSizer
);
257 //---------------------------------------------------------------------------
259 //---------------------------------------------------------------------------
261 class WXDLLEXPORT wxGridSizer
: public wxSizer
264 wxGridSizer( int rows
, int cols
, int vgap
, int hgap
);
265 wxGridSizer( int cols
, int vgap
= 0, int hgap
= 0 );
270 void SetCols( int cols
) { m_cols
= cols
; }
271 void SetRows( int rows
) { m_rows
= rows
; }
272 void SetVGap( int gap
) { m_vgap
= gap
; }
273 void SetHGap( int gap
) { m_hgap
= gap
; }
274 int GetCols() { return m_cols
; }
275 int GetRows() { return m_rows
; }
276 int GetVGap() { return m_vgap
; }
277 int GetHGap() { return m_hgap
; }
285 // return the number of total items and the number of columns and rows
286 int CalcRowsCols(int& rows
, int& cols
) const;
288 void SetItemBounds( wxSizerItem
*item
, int x
, int y
, int w
, int h
);
291 DECLARE_CLASS(wxGridSizer
);
294 //---------------------------------------------------------------------------
296 //---------------------------------------------------------------------------
298 class WXDLLEXPORT wxFlexGridSizer
: public wxGridSizer
301 wxFlexGridSizer( int rows
, int cols
, int vgap
, int hgap
);
302 wxFlexGridSizer( int cols
, int vgap
= 0, int hgap
= 0 );
308 void AddGrowableRow( size_t idx
);
309 void RemoveGrowableRow( size_t idx
);
310 void AddGrowableCol( size_t idx
);
311 void RemoveGrowableCol( size_t idx
);
316 wxArrayInt m_growableRows
;
317 wxArrayInt m_growableCols
;
322 DECLARE_CLASS(wxFlexGridSizer
);
325 //---------------------------------------------------------------------------
327 //---------------------------------------------------------------------------
329 class WXDLLEXPORT wxBoxSizer
: public wxSizer
332 wxBoxSizer( int orient
);
340 void SetOrientation(int orient
)
341 { m_orient
= orient
; }
352 DECLARE_CLASS(wxBoxSizer
);
355 //---------------------------------------------------------------------------
357 //---------------------------------------------------------------------------
361 class WXDLLEXPORT wxStaticBox
;
363 class WXDLLEXPORT wxStaticBoxSizer
: public wxBoxSizer
366 wxStaticBoxSizer( wxStaticBox
*box
, int orient
);
371 wxStaticBox
*GetStaticBox()
372 { return m_staticBox
; }
375 wxStaticBox
*m_staticBox
;
378 DECLARE_CLASS(wxStaticBoxSizer
);
381 #endif // wxUSE_STATBOX
383 //---------------------------------------------------------------------------
385 //---------------------------------------------------------------------------
389 class WXDLLEXPORT wxNotebook
;
391 class WXDLLEXPORT wxNotebookSizer
: public wxSizer
394 wxNotebookSizer( wxNotebook
*nb
);
399 wxNotebook
*GetNotebook()
400 { return m_notebook
; }
403 wxNotebook
*m_notebook
;
406 DECLARE_CLASS(wxNotebookSizer
);
409 #endif // wxUSE_NOTEBOOK