]> git.saurik.com Git - wxWidgets.git/blame - include/wx/sizer.h
Upported combobox changes and another fix.
[wxWidgets.git] / include / wx / sizer.h
CommitLineData
5279a24d
RR
1/////////////////////////////////////////////////////////////////////////////
2// Name: sizer.h
0c0d686f 3// Purpose: provide wxSizer class for layouting
5279a24d 4// Author: Robert Roebling and Robin Dunn
566d84a7 5// Modified by: Ron Lee
0c0d686f 6// Created:
5279a24d
RR
7// RCS-ID: $Id$
8// Copyright: (c) Robin Dunn, Dirk Holtwick and Robert Roebling
12a3f227 9// (c) 2003, Ron Lee
5279a24d
RR
10// Licence: wxWindows licence
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef __WXSIZER_H__
14#define __WXSIZER_H__
15
af49c4b8 16#if defined(__GNUG__) && !defined(__APPLE__)
5279a24d
RR
17#pragma interface "sizer.h"
18#endif
19
20#include "wx/defs.h"
21
22#include "wx/window.h"
23#include "wx/frame.h"
24#include "wx/dialog.h"
25
26//---------------------------------------------------------------------------
27// classes
28//---------------------------------------------------------------------------
29
3417c2cd
RR
30class wxSizerItem;
31class wxSizer;
92afa2b1 32class wxBoxSizer;
5279a24d
RR
33
34//---------------------------------------------------------------------------
3417c2cd 35// wxSizerItem
5279a24d
RR
36//---------------------------------------------------------------------------
37
3417c2cd 38class WXDLLEXPORT wxSizerItem: public wxObject
5279a24d
RR
39{
40public:
df5ddbca 41 // spacer
12a3f227
RL
42 wxSizerItem( int width,
43 int height,
44 int proportion,
45 int flag,
46 int border,
47 wxObject* userData);
df5ddbca
RR
48
49 // window
12a3f227
RL
50 wxSizerItem( wxWindow *window,
51 int proportion,
52 int flag,
53 int border,
54 wxObject* userData );
df5ddbca
RR
55
56 // subsizer
12a3f227
RL
57 wxSizerItem( wxSizer *sizer,
58 int proportion,
59 int flag,
60 int border,
61 wxObject* userData );
df5ddbca
RR
62
63 ~wxSizerItem();
dc259b79 64
84f7908b 65 virtual void DeleteWindows();
df5ddbca 66
96fdbb60
RL
67 // Enable deleting the SizerItem without destroying the contained sizer.
68 void DetachSizer()
69 { m_sizer = 0; }
70
9cbee2ce 71 virtual wxSize GetSize() const;
df5ddbca
RR
72 virtual wxSize CalcMin();
73 virtual void SetDimension( wxPoint pos, wxSize size );
74
9cbee2ce 75 wxSize GetMinSize() const
df5ddbca 76 { return m_minSize; }
12a3f227
RL
77 void SetInitSize( int x, int y )
78 { m_minSize.x = x; m_minSize.y = y; }
df5ddbca
RR
79
80 void SetRatio( int width, int height )
81 // if either of dimensions is zero, ratio is assumed to be 1
82 // to avoid "divide by zero" errors
83 { m_ratio = (width && height) ? ((float) width / (float) height) : 1; }
84 void SetRatio( wxSize size )
85 { m_ratio = (size.x && size.y) ? ((float) size.x / (float) size.y) : 1; }
2aab8f16 86 void SetRatio( float ratio )
df5ddbca 87 { m_ratio = ratio; }
2aab8f16 88 float GetRatio() const
df5ddbca
RR
89 { return m_ratio; }
90
9cbee2ce
RL
91 bool IsWindow() const;
92 bool IsSizer() const;
93 bool IsSpacer() const;
2aab8f16 94
12a3f227
RL
95 // Deprecated in 2.6, use {G,S}etProportion instead.
96 wxDEPRECATED( void SetOption( int option ) );
97 wxDEPRECATED( int GetOption() const );
98
99 void SetProportion( int proportion )
100 { m_proportion = proportion; }
101 int GetProportion() const
102 { return m_proportion; }
df5ddbca
RR
103 void SetFlag( int flag )
104 { m_flag = flag; }
12a3f227
RL
105 int GetFlag() const
106 { return m_flag; }
df5ddbca
RR
107 void SetBorder( int border )
108 { m_border = border; }
12a3f227
RL
109 int GetBorder() const
110 { return m_border; }
df5ddbca
RR
111
112 wxWindow *GetWindow() const
113 { return m_window; }
114 void SetWindow( wxWindow *window )
115 { m_window = window; }
116 wxSizer *GetSizer() const
117 { return m_sizer; }
118 void SetSizer( wxSizer *sizer )
119 { m_sizer = sizer; }
12a3f227
RL
120 const wxSize &GetSpacer() const
121 { return m_size; }
122 void SetSpacer( const wxSize &size )
123 { m_size = size; m_minSize = size; }
124
125 void Show ( bool show );
2b5f62a0
VZ
126 bool IsShown() const
127 { return m_show; }
12a3f227 128
9cbee2ce 129 wxObject* GetUserData() const
df5ddbca 130 { return m_userData; }
9cbee2ce 131 wxPoint GetPosition() const
df5ddbca 132 { return m_pos; }
0c0d686f 133
c62ac5b6 134protected:
df5ddbca
RR
135 wxWindow *m_window;
136 wxSizer *m_sizer;
137 wxSize m_size;
138 wxPoint m_pos;
139 wxSize m_minSize;
12a3f227 140 int m_proportion;
df5ddbca
RR
141 int m_border;
142 int m_flag;
2b5f62a0 143
e0d8fb45 144 // If true, then this item is considered in the layout
dc259b79 145 // calculation. Otherwise, it is skipped over.
2b5f62a0 146 bool m_show;
12a3f227
RL
147
148 // Aspect ratio can always be calculated from m_size,
149 // but this would cause precision loss when the window
150 // is shrunk. It is safer to preserve the initial value.
df5ddbca 151 float m_ratio;
2b5f62a0 152
df5ddbca 153 wxObject *m_userData;
2aab8f16 154
9cbee2ce
RL
155private:
156 DECLARE_CLASS(wxSizerItem);
22f3361e 157 DECLARE_NO_COPY_CLASS(wxSizerItem)
c62ac5b6 158};
5279a24d 159
12a3f227
RL
160WX_DECLARE_EXPORTED_LIST( wxSizerItem, wxSizerItemList );
161
162
5279a24d 163//---------------------------------------------------------------------------
3417c2cd 164// wxSizer
5279a24d
RR
165//---------------------------------------------------------------------------
166
2aab8f16 167class WXDLLEXPORT wxSizer: public wxObject, public wxClientDataContainer
5279a24d
RR
168{
169public:
f6bcfd97
BP
170 wxSizer();
171 ~wxSizer();
172
173 /* These should be called Append() really. */
12a3f227
RL
174 virtual void Add( wxWindow *window,
175 int proportion = 0,
176 int flag = 0,
177 int border = 0,
178 wxObject* userData = NULL );
179 virtual void Add( wxSizer *sizer,
180 int proportion = 0,
181 int flag = 0,
182 int border = 0,
183 wxObject* userData = NULL );
184 virtual void Add( int width,
185 int height,
186 int proportion = 0,
187 int flag = 0,
188 int border = 0,
189 wxObject* userData = NULL );
190 virtual void Add( wxSizerItem *item );
191
192 virtual void Insert( size_t index,
193 wxWindow *window,
194 int proportion = 0,
195 int flag = 0,
196 int border = 0,
197 wxObject* userData = NULL );
198 virtual void Insert( size_t index,
199 wxSizer *sizer,
200 int proportion = 0,
201 int flag = 0,
202 int border = 0,
203 wxObject* userData = NULL );
204 virtual void Insert( size_t index,
205 int width,
206 int height,
207 int proportion = 0,
208 int flag = 0,
209 int border = 0,
210 wxObject* userData = NULL );
211 virtual void Insert( size_t index,
212 wxSizerItem *item );
213
214 virtual void Prepend( wxWindow *window,
215 int proportion = 0,
216 int flag = 0,
217 int border = 0,
218 wxObject* userData = NULL );
219 virtual void Prepend( wxSizer *sizer,
220 int proportion = 0,
221 int flag = 0,
222 int border = 0,
223 wxObject* userData = NULL );
224 virtual void Prepend( int width,
225 int height,
226 int proportion = 0,
227 int flag = 0,
228 int border = 0,
229 wxObject* userData = NULL );
230 virtual void Prepend( wxSizerItem *item );
231
232 // Deprecated in 2.6 since historically it does not delete the window,
233 // use Detach instead.
234 wxDEPRECATED( virtual bool Remove( wxWindow *window ) );
f6bcfd97 235 virtual bool Remove( wxSizer *sizer );
e0d8fb45 236 virtual bool Remove( int index );
00976fe5 237
12a3f227 238 virtual bool Detach( wxWindow *window );
00976fe5 239 virtual bool Detach( wxSizer *sizer );
e0d8fb45 240 virtual bool Detach( int index );
00976fe5 241
e0d8fb45 242 virtual void Clear( bool delete_windows = false );
84f7908b 243 virtual void DeleteWindows();
f6bcfd97
BP
244
245 void SetMinSize( int width, int height )
246 { DoSetMinSize( width, height ); }
247 void SetMinSize( wxSize size )
248 { DoSetMinSize( size.x, size.y ); }
1e6feb95 249
f6bcfd97
BP
250 /* Searches recursively */
251 bool SetItemMinSize( wxWindow *window, int width, int height )
252 { return DoSetItemMinSize( window, width, height ); }
253 bool SetItemMinSize( wxWindow *window, wxSize size )
254 { return DoSetItemMinSize( window, size.x, size.y ); }
1e6feb95 255
f6bcfd97
BP
256 /* Searches recursively */
257 bool SetItemMinSize( wxSizer *sizer, int width, int height )
258 { return DoSetItemMinSize( sizer, width, height ); }
259 bool SetItemMinSize( wxSizer *sizer, wxSize size )
260 { return DoSetItemMinSize( sizer, size.x, size.y ); }
1e6feb95 261
12a3f227
RL
262 bool SetItemMinSize( size_t index, int width, int height )
263 { return DoSetItemMinSize( index, width, height ); }
264 bool SetItemMinSize( size_t index, wxSize size )
265 { return DoSetItemMinSize( index, size.x, size.y ); }
1e6feb95 266
9cbee2ce 267 wxSize GetSize() const
f6bcfd97 268 { return m_size; }
9cbee2ce 269 wxPoint GetPosition() const
f6bcfd97 270 { return m_position; }
1e6feb95 271
f6bcfd97
BP
272 /* Calculate the minimal size or return m_minSize if bigger. */
273 wxSize GetMinSize();
274
275 virtual void RecalcSizes() = 0;
276 virtual wxSize CalcMin() = 0;
277
278 virtual void Layout();
279
e5251d4f 280 wxSize Fit( wxWindow *window );
566d84a7 281 void FitInside( wxWindow *window );
f6bcfd97 282 void SetSizeHints( wxWindow *window );
566d84a7 283 void SetVirtualSizeHints( wxWindow *window );
f6bcfd97 284
12a3f227 285 wxSizerItemList& GetChildren()
f6bcfd97
BP
286 { return m_children; }
287
288 void SetDimension( int x, int y, int width, int height );
0c0d686f 289
12a3f227 290 // Manage whether individual scene items are considered
2b5f62a0 291 // in the layout calculations or not.
e0d8fb45
VZ
292 void Show( wxWindow *window, bool show = true );
293 void Show( wxSizer *sizer, bool show = true );
294 void Show( size_t index, bool show = true );
12a3f227 295
2b5f62a0 296 void Hide( wxSizer *sizer )
e0d8fb45 297 { Show( sizer, false ); }
12a3f227 298 void Hide( wxWindow *window )
e0d8fb45 299 { Show( window, false ); }
12a3f227 300 void Hide( size_t index )
e0d8fb45 301 { Show( index, false ); }
2b5f62a0 302
9cbee2ce
RL
303 bool IsShown( wxWindow *window ) const;
304 bool IsShown( wxSizer *sizer ) const;
305 bool IsShown( size_t index ) const;
dc259b79 306
2b5f62a0
VZ
307 // Recursively call wxWindow::Show () on all sizer items.
308 void ShowItems (bool show);
309
f6bcfd97 310protected:
12a3f227
RL
311 wxSize m_size;
312 wxSize m_minSize;
313 wxPoint m_position;
314 wxSizerItemList m_children;
f6bcfd97 315
9cbee2ce 316 wxSize GetMaxWindowSize( wxWindow *window ) const;
f6bcfd97 317 wxSize GetMinWindowSize( wxWindow *window );
9cbee2ce 318 wxSize GetMaxClientSize( wxWindow *window ) const;
566d84a7 319 wxSize GetMinClientSize( wxWindow *window );
65ba4113 320 wxSize FitSize( wxWindow *window );
566d84a7 321 wxSize VirtualFitSize( wxWindow *window );
65ba4113 322
f6bcfd97
BP
323 virtual void DoSetMinSize( int width, int height );
324 virtual bool DoSetItemMinSize( wxWindow *window, int width, int height );
325 virtual bool DoSetItemMinSize( wxSizer *sizer, int width, int height );
12a3f227 326 virtual bool DoSetItemMinSize( size_t index, int width, int height );
1e6feb95 327
9cbee2ce
RL
328private:
329 DECLARE_CLASS(wxSizer);
f6bcfd97 330};
c62ac5b6 331
f6bcfd97
BP
332//---------------------------------------------------------------------------
333// wxGridSizer
334//---------------------------------------------------------------------------
0c0d686f 335
f6bcfd97
BP
336class WXDLLEXPORT wxGridSizer: public wxSizer
337{
338public:
339 wxGridSizer( int rows, int cols, int vgap, int hgap );
340 wxGridSizer( int cols, int vgap = 0, int hgap = 0 );
1e6feb95 341
5d76f462
VZ
342 virtual void RecalcSizes();
343 virtual wxSize CalcMin();
f6bcfd97
BP
344
345 void SetCols( int cols ) { m_cols = cols; }
346 void SetRows( int rows ) { m_rows = rows; }
347 void SetVGap( int gap ) { m_vgap = gap; }
348 void SetHGap( int gap ) { m_hgap = gap; }
9cbee2ce
RL
349 int GetCols() const { return m_cols; }
350 int GetRows() const { return m_rows; }
351 int GetVGap() const { return m_vgap; }
352 int GetHGap() const { return m_hgap; }
1e6feb95 353
f6bcfd97
BP
354protected:
355 int m_rows;
356 int m_cols;
357 int m_vgap;
358 int m_hgap;
1e6feb95 359
0ca5105b
VZ
360 // return the number of total items and the number of columns and rows
361 int CalcRowsCols(int& rows, int& cols) const;
362
f6bcfd97 363 void SetItemBounds( wxSizerItem *item, int x, int y, int w, int h );
1e6feb95 364
9cbee2ce
RL
365private:
366 DECLARE_CLASS(wxGridSizer);
f6bcfd97 367};
5279a24d 368
f6bcfd97
BP
369//---------------------------------------------------------------------------
370// wxFlexGridSizer
371//---------------------------------------------------------------------------
0c0d686f 372
5d76f462
VZ
373// the bevaiour for resizing wxFlexGridSizer cells in the "non-flexible"
374// direction
375enum wxFlexSizerGrowMode
376{
377 // don't resize the cells in non-flexible direction at all
378 wxFLEX_GROWMODE_NONE,
379
380 // uniformly resize only the specified ones (default)
381 wxFLEX_GROWMODE_SPECIFIED,
382
383 // uniformly resize all cells
384 wxFLEX_GROWMODE_ALL
385};
386
f6bcfd97
BP
387class WXDLLEXPORT wxFlexGridSizer: public wxGridSizer
388{
389public:
5d76f462 390 // ctors/dtor
f6bcfd97
BP
391 wxFlexGridSizer( int rows, int cols, int vgap, int hgap );
392 wxFlexGridSizer( int cols, int vgap = 0, int hgap = 0 );
5d76f462 393 virtual ~wxFlexGridSizer();
1e6feb95 394
1e6feb95 395
5d76f462
VZ
396 // set the rows/columns which will grow (the others will remain of the
397 // constant initial size)
e8800dcf 398 void AddGrowableRow( size_t idx, int proportion = 0 );
f6bcfd97 399 void RemoveGrowableRow( size_t idx );
e8800dcf 400 void AddGrowableCol( size_t idx, int proportion = 0 );
f6bcfd97 401 void RemoveGrowableCol( size_t idx );
0c0d686f 402
1e6feb95 403
5d76f462
VZ
404 // the sizer cells may grow in both directions, not grow at all or only
405 // grow in one direction but not the other
406
407 // the direction may be wxVERTICAL, wxHORIZONTAL or wxBOTH (default)
408 void SetFlexibleDirection(int direction) { m_flexDirection = direction; }
409 int GetFlexibleDirection() const { return m_flexDirection; }
410
411 // note that the grow mode only applies to the direction which is not
412 // flexible
413 void SetNonFlexibleGrowMode(wxFlexSizerGrowMode mode) { m_growMode = mode; }
414 wxFlexSizerGrowMode GetNonFlexibleGrowMode() const { return m_growMode; }
415
416
417 // implementation
418 virtual void RecalcSizes();
419 virtual wxSize CalcMin();
420
421protected:
422 // the heights/widths of all rows/columns
423 wxArrayInt m_rowHeights,
424 m_colWidths;
425
426 // indices of the growable columns and rows
427 wxArrayInt m_growableRows,
428 m_growableCols;
429
e8800dcf
VZ
430 // proportion values of the corresponding growable rows and columns
431 wxArrayInt m_growableRowsProportions,
432 m_growableColsProportions;
433
5d76f462
VZ
434 // parameters describing whether the growable cells should be resized in
435 // both directions or only one
436 int m_flexDirection;
437 wxFlexSizerGrowMode m_growMode;
1e6feb95 438
9cbee2ce
RL
439private:
440 DECLARE_CLASS(wxFlexGridSizer);
22f3361e 441 DECLARE_NO_COPY_CLASS(wxFlexGridSizer)
c62ac5b6
RR
442};
443
444//---------------------------------------------------------------------------
92afa2b1 445// wxBoxSizer
c62ac5b6
RR
446//---------------------------------------------------------------------------
447
92afa2b1 448class WXDLLEXPORT wxBoxSizer: public wxSizer
61d514bb
RR
449{
450public:
f6bcfd97 451 wxBoxSizer( int orient );
0c0d686f 452
f6bcfd97
BP
453 void RecalcSizes();
454 wxSize CalcMin();
0c0d686f 455
9cbee2ce 456 int GetOrientation() const
f6bcfd97 457 { return m_orient; }
0c0d686f 458
b657b4c9
JS
459 void SetOrientation(int orient)
460 { m_orient = orient; }
461
61d514bb
RR
462protected:
463 int m_orient;
464 int m_stretchable;
465 int m_minWidth;
466 int m_minHeight;
467 int m_fixedWidth;
468 int m_fixedHeight;
1e6feb95 469
9cbee2ce
RL
470private:
471 DECLARE_CLASS(wxBoxSizer);
61d514bb 472};
0c0d686f 473
27ea1d8a
RR
474//---------------------------------------------------------------------------
475// wxStaticBoxSizer
476//---------------------------------------------------------------------------
477
1e6feb95
VZ
478#if wxUSE_STATBOX
479
480class WXDLLEXPORT wxStaticBox;
481
27ea1d8a
RR
482class WXDLLEXPORT wxStaticBoxSizer: public wxBoxSizer
483{
484public:
f6bcfd97 485 wxStaticBoxSizer( wxStaticBox *box, int orient );
0c0d686f 486
f6bcfd97
BP
487 void RecalcSizes();
488 wxSize CalcMin();
0c0d686f 489
9cbee2ce 490 wxStaticBox *GetStaticBox() const
f6bcfd97 491 { return m_staticBox; }
0c0d686f 492
27ea1d8a 493protected:
f6bcfd97 494 wxStaticBox *m_staticBox;
1e6feb95 495
9cbee2ce
RL
496private:
497 DECLARE_CLASS(wxStaticBoxSizer);
22f3361e 498 DECLARE_NO_COPY_CLASS(wxStaticBoxSizer)
27ea1d8a
RR
499};
500
1e6feb95
VZ
501#endif // wxUSE_STATBOX
502
83edc0a5
RR
503//---------------------------------------------------------------------------
504// wxNotebookSizer
505//---------------------------------------------------------------------------
506
65e4f9b9
VS
507#if wxUSE_NOTEBOOK
508
1e6feb95
VZ
509class WXDLLEXPORT wxNotebook;
510
83edc0a5
RR
511class WXDLLEXPORT wxNotebookSizer: public wxSizer
512{
83edc0a5 513public:
f6bcfd97 514 wxNotebookSizer( wxNotebook *nb );
83edc0a5 515
f6bcfd97
BP
516 void RecalcSizes();
517 wxSize CalcMin();
83edc0a5 518
9cbee2ce 519 wxNotebook *GetNotebook() const
f6bcfd97 520 { return m_notebook; }
83edc0a5
RR
521
522protected:
f6bcfd97 523 wxNotebook *m_notebook;
1e6feb95 524
9cbee2ce
RL
525private:
526 DECLARE_CLASS(wxNotebookSizer);
22f3361e 527 DECLARE_NO_COPY_CLASS(wxNotebookSizer)
83edc0a5
RR
528};
529
1e6feb95 530#endif // wxUSE_NOTEBOOK
65e4f9b9
VS
531
532
5279a24d
RR
533#endif
534 // __WXSIZER_H__