]> git.saurik.com Git - wxWidgets.git/blame - include/wx/sizer.h
Committing in .
[wxWidgets.git] / include / wx / sizer.h
CommitLineData
5279a24d 1/////////////////////////////////////////////////////////////////////////////
ce7208d4 2// Name: wx/sizer.h
a4ab8ed5 3// Purpose: provide wxSizer class for layout
5279a24d 4// Author: Robert Roebling and Robin Dunn
5f813ad6 5// Modified by: Ron Lee, Vadim Zeitlin (wxSizerFlags)
0c0d686f 6// Created:
5279a24d 7// RCS-ID: $Id$
a4ab8ed5 8// Copyright: (c) Robin Dunn, Robert Roebling
65571936 9// Licence: wxWindows licence
5279a24d
RR
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef __WXSIZER_H__
13#define __WXSIZER_H__
14
5279a24d
RR
15#include "wx/defs.h"
16
17#include "wx/window.h"
5279a24d
RR
18
19//---------------------------------------------------------------------------
20// classes
21//---------------------------------------------------------------------------
22
ca8d899f
VZ
23class WXDLLEXPORT wxButton;
24class WXDLLEXPORT wxBoxSizer;
446e5259
VS
25class WXDLLEXPORT wxSizerItem;
26class WXDLLEXPORT wxSizer;
5f813ad6 27
97ebfd54
VZ
28#ifndef wxUSE_BORDER_BY_DEFAULT
29 #ifdef __SMARTPHONE__
30 // no borders by default on limited size screen
31 #define wxUSE_BORDER_BY_DEFAULT 0
32 #else
33 #define wxUSE_BORDER_BY_DEFAULT 1
34 #endif
35#endif
36
5f813ad6
VZ
37// ----------------------------------------------------------------------------
38// wxSizerFlags: flags used for an item in the sizer
39// ----------------------------------------------------------------------------
40
41class WXDLLEXPORT wxSizerFlags
42{
43public:
44 // construct the flags object initialized with the given proportion (0 by
45 // default)
46 wxSizerFlags(int proportion = 0) : m_proportion(proportion)
47 {
48 m_flags = 0;
49 m_borderInPixels = 0;
50 }
51
52 // setters for all sizer flags, they all return the object itself so that
53 // calls to them can be chained
54
55 wxSizerFlags& Proportion(int proportion)
56 {
57 m_proportion = proportion;
58 return *this;
59 }
60
61 wxSizerFlags& Align(int alignment) // combination of wxAlignment values
62 {
ddfcd9aa 63 m_flags &= ~wxALIGN_MASK;
5f813ad6
VZ
64 m_flags |= alignment;
65
66 return *this;
67 }
68
00dc67b8
VZ
69 wxSizerFlags& Expand()
70 {
71 m_flags |= wxEXPAND;
72 return *this;
73 }
74
5f813ad6 75 // some shortcuts for Align()
5f813ad6
VZ
76 wxSizerFlags& Centre() { return Align(wxCENTRE); }
77 wxSizerFlags& Center() { return Centre(); }
e72ac082
VZ
78 wxSizerFlags& Left() { return Align(wxALIGN_LEFT); }
79 wxSizerFlags& Right() { return Align(wxALIGN_RIGHT); }
5f813ad6 80
2be7beda
VZ
81 // default border size used by Border() below
82 static int GetDefaultBorder()
83 {
97ebfd54 84#if wxUSE_BORDER_BY_DEFAULT
2be7beda
VZ
85 // FIXME: default border size shouldn't be hardcoded and at the very
86 // least they should depend on the current font size
87 return 5;
97ebfd54
VZ
88#else
89 return 0;
90#endif
2be7beda
VZ
91 }
92
5f813ad6
VZ
93
94 wxSizerFlags& Border(int direction, int borderInPixels)
95 {
96 m_flags &= ~wxALL;
97 m_flags |= direction;
98
99 m_borderInPixels = borderInPixels;
100
101 return *this;
102 }
103
104 wxSizerFlags& Border(int direction = wxALL)
105 {
97ebfd54
VZ
106#if wxUSE_BORDER_BY_DEFAULT
107 return Border(direction, GetDefaultBorder());
108#else
92b0cd9e
VZ
109 // no borders by default on limited size screen
110 wxUnusedVar(direction);
111
112 return *this;
97ebfd54
VZ
113#endif
114 }
115
116 wxSizerFlags& DoubleBorder(int direction = wxALL)
117 {
118#if wxUSE_BORDER_BY_DEFAULT
119 return Border(direction, 2*GetDefaultBorder());
92b0cd9e 120#else
97ebfd54
VZ
121 wxUnusedVar(direction);
122
123 return *this;
92b0cd9e 124#endif
5f813ad6
VZ
125 }
126
97ebfd54
VZ
127 wxSizerFlags& TripleBorder(int direction = wxALL)
128 {
129#if wxUSE_BORDER_BY_DEFAULT
130 return Border(direction, 3*GetDefaultBorder());
131#else
132 wxUnusedVar(direction);
133
134 return *this;
135#endif
136 }
137
138 wxSizerFlags& HorzBorder()
139 {
140#if wxUSE_BORDER_BY_DEFAULT
141 return Border(wxLEFT | wxRIGHT, GetDefaultBorder());
142#else
143 return *this;
144#endif
145 }
146
147 wxSizerFlags& DoubleHorzBorder()
148 {
149#if wxUSE_BORDER_BY_DEFAULT
150 return Border(wxLEFT | wxRIGHT, 2*GetDefaultBorder());
151#else
152 return *this;
153#endif
154 }
5f813ad6 155
d95527de
VZ
156#if wxABI_VERSION >= 20802
157 // setters for the others flags
158 wxSizerFlags& Shaped()
159 {
160 m_flags |= wxSHAPED;
161
162 return *this;
163 }
164
165 wxSizerFlags& FixedMinSize()
166 {
167 m_flags |= wxFIXED_MINSIZE;
168
169 return *this;
170 }
171#endif // wx 2.8.2+
172
5f813ad6
VZ
173 // accessors for wxSizer only
174 int GetProportion() const { return m_proportion; }
175 int GetFlags() const { return m_flags; }
176 int GetBorderInPixels() const { return m_borderInPixels; }
177
178private:
179 int m_proportion;
180 int m_flags;
181 int m_borderInPixels;
182};
183
184
50c06297
VZ
185// ----------------------------------------------------------------------------
186// wxSizerSpacer: used by wxSizerItem to represent a spacer
187// ----------------------------------------------------------------------------
5279a24d 188
50c06297 189class WXDLLEXPORT wxSizerSpacer
5279a24d
RR
190{
191public:
50c06297 192 wxSizerSpacer(const wxSize& size) : m_size(size), m_isShown(true) { }
5f813ad6 193
50c06297
VZ
194 void SetSize(const wxSize& size) { m_size = size; }
195 const wxSize& GetSize() const { return m_size; }
5f813ad6 196
50c06297
VZ
197 void Show(bool show) { m_isShown = show; }
198 bool IsShown() const { return m_isShown; }
5f813ad6 199
50c06297
VZ
200private:
201 // the size, in pixel
202 wxSize m_size;
df5ddbca 203
50c06297
VZ
204 // is the spacer currently shown?
205 bool m_isShown;
206};
207
208// ----------------------------------------------------------------------------
209// wxSizerItem
210// ----------------------------------------------------------------------------
211
212class WXDLLEXPORT wxSizerItem : public wxObject
213{
214public:
df5ddbca 215 // window
12a3f227
RL
216 wxSizerItem( wxWindow *window,
217 int proportion,
218 int flag,
219 int border,
220 wxObject* userData );
df5ddbca 221
50c06297
VZ
222 // window with flags
223 wxSizerItem(wxWindow *window, const wxSizerFlags& flags)
224 {
225 Init(flags);
226
227 SetWindow(window);
228 }
229
df5ddbca 230 // subsizer
12a3f227
RL
231 wxSizerItem( wxSizer *sizer,
232 int proportion,
233 int flag,
234 int border,
235 wxObject* userData );
df5ddbca 236
50c06297
VZ
237 // sizer with flags
238 wxSizerItem(wxSizer *sizer, const wxSizerFlags& flags)
239 {
240 Init(flags);
241
242 SetSizer(sizer);
243 }
244
5f813ad6
VZ
245 // spacer
246 wxSizerItem( int width,
247 int height,
248 int proportion,
249 int flag,
250 int border,
251 wxObject* userData);
252
50c06297
VZ
253 // spacer with flags
254 wxSizerItem(int width, int height, const wxSizerFlags& flags)
255 {
256 Init(flags);
257
258 SetSpacer(width, height);
259 }
260
20b35a69
RD
261 wxSizerItem();
262 virtual ~wxSizerItem();
dc259b79 263
84f7908b 264 virtual void DeleteWindows();
df5ddbca 265
96fdbb60 266 // Enable deleting the SizerItem without destroying the contained sizer.
50c06297 267 void DetachSizer() { m_sizer = NULL; }
96fdbb60 268
9cbee2ce 269 virtual wxSize GetSize() const;
df5ddbca 270 virtual wxSize CalcMin();
fbfb8bcc 271 virtual void SetDimension( const wxPoint& pos, const wxSize& size );
df5ddbca 272
9cbee2ce 273 wxSize GetMinSize() const
df5ddbca 274 { return m_minSize; }
ba763a45
RD
275 wxSize GetMinSizeWithBorder() const;
276
1eba2193 277 void SetMinSize(const wxSize& size)
50c06297
VZ
278 {
279 if ( IsWindow() )
280 m_window->SetMinSize(size);
281 m_minSize = size;
282 }
1eba2193 283 void SetMinSize( int x, int y )
8b2bac62 284 { SetMinSize(wxSize(x, y)); }
12a3f227 285 void SetInitSize( int x, int y )
1eba2193 286 { SetMinSize(wxSize(x, y)); }
df5ddbca 287
50c06297
VZ
288 // if either of dimensions is zero, ratio is assumed to be 1
289 // to avoid "divide by zero" errors
290 void SetRatio(int width, int height)
df5ddbca 291 { m_ratio = (width && height) ? ((float) width / (float) height) : 1; }
50c06297
VZ
292 void SetRatio(const wxSize& size)
293 { SetRatio(size.x, size.y); }
294 void SetRatio(float ratio)
df5ddbca 295 { m_ratio = ratio; }
2aab8f16 296 float GetRatio() const
df5ddbca
RR
297 { return m_ratio; }
298
50c06297 299 virtual wxRect GetRect() { return m_rect; }
56eee37f 300
50c06297
VZ
301 bool IsWindow() const { return m_kind == Item_Window; }
302 bool IsSizer() const { return m_kind == Item_Sizer; }
303 bool IsSpacer() const { return m_kind == Item_Spacer; }
2aab8f16 304
6a9e54bd 305#if WXWIN_COMPATIBILITY_2_6
12a3f227
RL
306 // Deprecated in 2.6, use {G,S}etProportion instead.
307 wxDEPRECATED( void SetOption( int option ) );
308 wxDEPRECATED( int GetOption() const );
6a9e54bd 309#endif // WXWIN_COMPATIBILITY_2_6
12a3f227
RL
310
311 void SetProportion( int proportion )
312 { m_proportion = proportion; }
313 int GetProportion() const
314 { return m_proportion; }
df5ddbca
RR
315 void SetFlag( int flag )
316 { m_flag = flag; }
12a3f227
RL
317 int GetFlag() const
318 { return m_flag; }
df5ddbca
RR
319 void SetBorder( int border )
320 { m_border = border; }
12a3f227
RL
321 int GetBorder() const
322 { return m_border; }
df5ddbca
RR
323
324 wxWindow *GetWindow() const
50c06297 325 { return m_kind == Item_Window ? m_window : NULL; }
df5ddbca 326 wxSizer *GetSizer() const
50c06297
VZ
327 { return m_kind == Item_Sizer ? m_sizer : NULL; }
328 wxSize GetSpacer() const;
12a3f227 329
c86fd3a7
VZ
330 // this function behaves obviously for the windows and spacers but for the
331 // sizers it returns true if any sizer element is shown and only returns
332 // false if all of them are hidden
333 bool IsShown() const;
50c06297 334 void Show(bool show);
12a3f227 335
e8c1be04 336 void SetUserData(wxObject* userData)
1737dac2 337 { delete m_userData; m_userData = userData; }
9cbee2ce 338 wxObject* GetUserData() const
df5ddbca 339 { return m_userData; }
9cbee2ce 340 wxPoint GetPosition() const
df5ddbca 341 { return m_pos; }
0c0d686f 342
50c06297
VZ
343
344 // these functions do not free old sizer/spacer
345 void SetWindow(wxWindow *window);
346 void SetSizer(wxSizer *sizer);
347 void SetSpacer(const wxSize& size);
348 void SetSpacer(int width, int height) { SetSpacer(wxSize(width, height)); }
349
c62ac5b6 350protected:
5f813ad6 351 // common part of several ctors
50c06297 352 void Init() { m_userData = NULL; }
5f813ad6
VZ
353
354 // common part of ctors taking wxSizerFlags
355 void Init(const wxSizerFlags& flags);
356
f303d69f
VZ
357
358 // discriminated union: depending on m_kind one of the fields is valid
50c06297
VZ
359 enum
360 {
361 Item_None,
362 Item_Window,
363 Item_Sizer,
364 Item_Spacer,
365 Item_Max
366 } m_kind;
367 union
368 {
369 wxWindow *m_window;
370 wxSizer *m_sizer;
371 wxSizerSpacer *m_spacer;
372 };
5f813ad6 373
df5ddbca
RR
374 wxPoint m_pos;
375 wxSize m_minSize;
12a3f227 376 int m_proportion;
df5ddbca
RR
377 int m_border;
378 int m_flag;
2b5f62a0 379
50c06297
VZ
380 // on screen rectangle of this item (not including borders)
381 wxRect m_rect;
12a3f227
RL
382
383 // Aspect ratio can always be calculated from m_size,
384 // but this would cause precision loss when the window
385 // is shrunk. It is safer to preserve the initial value.
df5ddbca 386 float m_ratio;
2b5f62a0 387
df5ddbca 388 wxObject *m_userData;
2aab8f16 389
9cbee2ce 390private:
4393b50c 391 DECLARE_CLASS(wxSizerItem)
22f3361e 392 DECLARE_NO_COPY_CLASS(wxSizerItem)
c62ac5b6 393};
5279a24d 394
12a3f227
RL
395WX_DECLARE_EXPORTED_LIST( wxSizerItem, wxSizerItemList );
396
5f813ad6 397
5279a24d 398//---------------------------------------------------------------------------
3417c2cd 399// wxSizer
5279a24d
RR
400//---------------------------------------------------------------------------
401
2aab8f16 402class WXDLLEXPORT wxSizer: public wxObject, public wxClientDataContainer
5279a24d
RR
403{
404public:
e8cfff87 405 wxSizer() { m_containingWindow = NULL; }
d3c7fc99 406 virtual ~wxSizer();
f6bcfd97 407
436ae7cf
VZ
408 // methods for adding elements to the sizer: there are Add/Insert/Prepend
409 // overloads for each of window/sizer/spacer/wxSizerItem
ca8d899f
VZ
410 wxSizerItem* Add(wxWindow *window,
411 int proportion = 0,
412 int flag = 0,
413 int border = 0,
414 wxObject* userData = NULL);
415 wxSizerItem* Add(wxSizer *sizer,
416 int proportion = 0,
417 int flag = 0,
418 int border = 0,
419 wxObject* userData = NULL);
420 wxSizerItem* Add(int width,
421 int height,
422 int proportion = 0,
423 int flag = 0,
424 int border = 0,
425 wxObject* userData = NULL);
426 wxSizerItem* Add( wxWindow *window, const wxSizerFlags& flags);
427 wxSizerItem* Add( wxSizer *sizer, const wxSizerFlags& flags);
428 wxSizerItem* Add( wxSizerItem *item);
429
430 wxSizerItem* AddSpacer(int size);
431 wxSizerItem* AddStretchSpacer(int prop = 1);
432
433 wxSizerItem* Insert(size_t index,
434 wxWindow *window,
435 int proportion = 0,
436 int flag = 0,
437 int border = 0,
438 wxObject* userData = NULL);
439 wxSizerItem* Insert(size_t index,
440 wxSizer *sizer,
441 int proportion = 0,
442 int flag = 0,
443 int border = 0,
444 wxObject* userData = NULL);
445 wxSizerItem* Insert(size_t index,
446 int width,
447 int height,
448 int proportion = 0,
449 int flag = 0,
450 int border = 0,
451 wxObject* userData = NULL);
452 wxSizerItem* Insert(size_t index,
453 wxWindow *window,
454 const wxSizerFlags& flags);
455 wxSizerItem* Insert(size_t index,
456 wxSizer *sizer,
457 const wxSizerFlags& flags);
458 virtual wxSizerItem* Insert( size_t index, wxSizerItem *item);
459
460 wxSizerItem* InsertSpacer(size_t index, int size);
461 wxSizerItem* InsertStretchSpacer(size_t index, int prop = 1);
462
463 wxSizerItem* Prepend(wxWindow *window,
464 int proportion = 0,
465 int flag = 0,
466 int border = 0,
467 wxObject* userData = NULL);
468 wxSizerItem* Prepend(wxSizer *sizer,
469 int proportion = 0,
470 int flag = 0,
471 int border = 0,
472 wxObject* userData = NULL);
473 wxSizerItem* Prepend(int width,
474 int height,
475 int proportion = 0,
476 int flag = 0,
477 int border = 0,
478 wxObject* userData = NULL);
479 wxSizerItem* Prepend(wxWindow *window, const wxSizerFlags& flags);
480 wxSizerItem* Prepend(wxSizer *sizer, const wxSizerFlags& flags);
481 wxSizerItem* Prepend(wxSizerItem *item);
482
483 wxSizerItem* PrependSpacer(int size);
484 wxSizerItem* PrependStretchSpacer(int prop = 1);
8e32ea1c 485
e8cfff87 486 // set (or possibly unset if window is NULL) or get the window this sizer
ce7208d4 487 // is used in
e8cfff87
VZ
488 void SetContainingWindow(wxWindow *window);
489 wxWindow *GetContainingWindow() const { return m_containingWindow; }
749bb9f1 490
6a9e54bd 491#if WXWIN_COMPATIBILITY_2_6
12a3f227
RL
492 // Deprecated in 2.6 since historically it does not delete the window,
493 // use Detach instead.
494 wxDEPRECATED( virtual bool Remove( wxWindow *window ) );
6a9e54bd
WS
495#endif // WXWIN_COMPATIBILITY_2_6
496
f6bcfd97 497 virtual bool Remove( wxSizer *sizer );
e0d8fb45 498 virtual bool Remove( int index );
00976fe5 499
12a3f227 500 virtual bool Detach( wxWindow *window );
00976fe5 501 virtual bool Detach( wxSizer *sizer );
e0d8fb45 502 virtual bool Detach( int index );
00976fe5 503
ce7208d4
WS
504 virtual bool Replace( wxWindow *oldwin, wxWindow *newwin, bool recursive = false );
505 virtual bool Replace( wxSizer *oldsz, wxSizer *newsz, bool recursive = false );
506 virtual bool Replace( size_t index, wxSizerItem *newitem );
eae0338f 507
e0d8fb45 508 virtual void Clear( bool delete_windows = false );
84f7908b 509 virtual void DeleteWindows();
f6bcfd97
BP
510
511 void SetMinSize( int width, int height )
512 { DoSetMinSize( width, height ); }
fbfb8bcc 513 void SetMinSize( const wxSize& size )
f6bcfd97 514 { DoSetMinSize( size.x, size.y ); }
1e6feb95 515
50c06297 516 // Searches recursively
f6bcfd97
BP
517 bool SetItemMinSize( wxWindow *window, int width, int height )
518 { return DoSetItemMinSize( window, width, height ); }
fbfb8bcc 519 bool SetItemMinSize( wxWindow *window, const wxSize& size )
f6bcfd97 520 { return DoSetItemMinSize( window, size.x, size.y ); }
1e6feb95 521
50c06297 522 // Searches recursively
f6bcfd97
BP
523 bool SetItemMinSize( wxSizer *sizer, int width, int height )
524 { return DoSetItemMinSize( sizer, width, height ); }
fbfb8bcc 525 bool SetItemMinSize( wxSizer *sizer, const wxSize& size )
f6bcfd97 526 { return DoSetItemMinSize( sizer, size.x, size.y ); }
1e6feb95 527
12a3f227
RL
528 bool SetItemMinSize( size_t index, int width, int height )
529 { return DoSetItemMinSize( index, width, height ); }
fbfb8bcc 530 bool SetItemMinSize( size_t index, const wxSize& size )
12a3f227 531 { return DoSetItemMinSize( index, size.x, size.y ); }
1e6feb95 532
9cbee2ce 533 wxSize GetSize() const
f6bcfd97 534 { return m_size; }
9cbee2ce 535 wxPoint GetPosition() const
f6bcfd97 536 { return m_position; }
1e6feb95 537
50c06297 538 // Calculate the minimal size or return m_minSize if bigger.
f6bcfd97
BP
539 wxSize GetMinSize();
540
541 virtual void RecalcSizes() = 0;
542 virtual wxSize CalcMin() = 0;
543
544 virtual void Layout();
545
e5251d4f 546 wxSize Fit( wxWindow *window );
566d84a7 547 void FitInside( wxWindow *window );
f6bcfd97 548 void SetSizeHints( wxWindow *window );
566d84a7 549 void SetVirtualSizeHints( wxWindow *window );
f6bcfd97 550
12a3f227 551 wxSizerItemList& GetChildren()
f6bcfd97
BP
552 { return m_children; }
553
554 void SetDimension( int x, int y, int width, int height );
0c0d686f 555
9f13661f
WS
556 wxSizerItem* GetItem( wxWindow *window, bool recursive = false );
557 wxSizerItem* GetItem( wxSizer *sizer, bool recursive = false );
558 wxSizerItem* GetItem( size_t index );
559
12a3f227 560 // Manage whether individual scene items are considered
2b5f62a0 561 // in the layout calculations or not.
8b2bac62
WS
562 bool Show( wxWindow *window, bool show = true, bool recursive = false );
563 bool Show( wxSizer *sizer, bool show = true, bool recursive = false );
564 bool Show( size_t index, bool show = true );
12a3f227 565
8b2bac62
WS
566 bool Hide( wxSizer *sizer, bool recursive = false )
567 { return Show( sizer, false, recursive ); }
568 bool Hide( wxWindow *window, bool recursive = false )
569 { return Show( window, false, recursive ); }
570 bool Hide( size_t index )
571 { return Show( index, false ); }
2b5f62a0 572
9cbee2ce
RL
573 bool IsShown( wxWindow *window ) const;
574 bool IsShown( wxSizer *sizer ) const;
575 bool IsShown( size_t index ) const;
dc259b79 576
2b5f62a0 577 // Recursively call wxWindow::Show () on all sizer items.
eb2a7883 578 virtual void ShowItems (bool show);
2b5f62a0 579
f303d69f 580 void Show(bool show) { ShowItems(show); }
50c06297 581
f6bcfd97 582protected:
12a3f227
RL
583 wxSize m_size;
584 wxSize m_minSize;
585 wxPoint m_position;
586 wxSizerItemList m_children;
f6bcfd97 587
e8cfff87
VZ
588 // the window this sizer is used in, can be NULL
589 wxWindow *m_containingWindow;
590
9cbee2ce 591 wxSize GetMaxWindowSize( wxWindow *window ) const;
f6bcfd97 592 wxSize GetMinWindowSize( wxWindow *window );
9cbee2ce 593 wxSize GetMaxClientSize( wxWindow *window ) const;
566d84a7 594 wxSize GetMinClientSize( wxWindow *window );
566d84a7 595 wxSize VirtualFitSize( wxWindow *window );
65ba4113 596
f6bcfd97
BP
597 virtual void DoSetMinSize( int width, int height );
598 virtual bool DoSetItemMinSize( wxWindow *window, int width, int height );
599 virtual bool DoSetItemMinSize( wxSizer *sizer, int width, int height );
12a3f227 600 virtual bool DoSetItemMinSize( size_t index, int width, int height );
1e6feb95 601
9cbee2ce 602private:
4393b50c 603 DECLARE_CLASS(wxSizer)
f6bcfd97 604};
c62ac5b6 605
f6bcfd97
BP
606//---------------------------------------------------------------------------
607// wxGridSizer
608//---------------------------------------------------------------------------
0c0d686f 609
f6bcfd97
BP
610class WXDLLEXPORT wxGridSizer: public wxSizer
611{
612public:
613 wxGridSizer( int rows, int cols, int vgap, int hgap );
614 wxGridSizer( int cols, int vgap = 0, int hgap = 0 );
1e6feb95 615
5d76f462
VZ
616 virtual void RecalcSizes();
617 virtual wxSize CalcMin();
f6bcfd97
BP
618
619 void SetCols( int cols ) { m_cols = cols; }
620 void SetRows( int rows ) { m_rows = rows; }
621 void SetVGap( int gap ) { m_vgap = gap; }
622 void SetHGap( int gap ) { m_hgap = gap; }
9cbee2ce
RL
623 int GetCols() const { return m_cols; }
624 int GetRows() const { return m_rows; }
625 int GetVGap() const { return m_vgap; }
626 int GetHGap() const { return m_hgap; }
1e6feb95 627
f6bcfd97
BP
628protected:
629 int m_rows;
630 int m_cols;
631 int m_vgap;
632 int m_hgap;
1e6feb95 633
0ca5105b
VZ
634 // return the number of total items and the number of columns and rows
635 int CalcRowsCols(int& rows, int& cols) const;
636
f6bcfd97 637 void SetItemBounds( wxSizerItem *item, int x, int y, int w, int h );
1e6feb95 638
9cbee2ce 639private:
4393b50c 640 DECLARE_CLASS(wxGridSizer)
f6bcfd97 641};
5279a24d 642
f6bcfd97
BP
643//---------------------------------------------------------------------------
644// wxFlexGridSizer
645//---------------------------------------------------------------------------
0c0d686f 646
5d76f462
VZ
647// the bevaiour for resizing wxFlexGridSizer cells in the "non-flexible"
648// direction
649enum wxFlexSizerGrowMode
650{
651 // don't resize the cells in non-flexible direction at all
652 wxFLEX_GROWMODE_NONE,
653
654 // uniformly resize only the specified ones (default)
655 wxFLEX_GROWMODE_SPECIFIED,
656
657 // uniformly resize all cells
658 wxFLEX_GROWMODE_ALL
659};
660
f6bcfd97
BP
661class WXDLLEXPORT wxFlexGridSizer: public wxGridSizer
662{
663public:
5d76f462 664 // ctors/dtor
f6bcfd97
BP
665 wxFlexGridSizer( int rows, int cols, int vgap, int hgap );
666 wxFlexGridSizer( int cols, int vgap = 0, int hgap = 0 );
5d76f462 667 virtual ~wxFlexGridSizer();
1e6feb95 668
1e6feb95 669
5d76f462
VZ
670 // set the rows/columns which will grow (the others will remain of the
671 // constant initial size)
e8800dcf 672 void AddGrowableRow( size_t idx, int proportion = 0 );
f6bcfd97 673 void RemoveGrowableRow( size_t idx );
e8800dcf 674 void AddGrowableCol( size_t idx, int proportion = 0 );
f6bcfd97 675 void RemoveGrowableCol( size_t idx );
0c0d686f 676
1e6feb95 677
5d76f462
VZ
678 // the sizer cells may grow in both directions, not grow at all or only
679 // grow in one direction but not the other
680
681 // the direction may be wxVERTICAL, wxHORIZONTAL or wxBOTH (default)
682 void SetFlexibleDirection(int direction) { m_flexDirection = direction; }
683 int GetFlexibleDirection() const { return m_flexDirection; }
684
685 // note that the grow mode only applies to the direction which is not
686 // flexible
687 void SetNonFlexibleGrowMode(wxFlexSizerGrowMode mode) { m_growMode = mode; }
688 wxFlexSizerGrowMode GetNonFlexibleGrowMode() const { return m_growMode; }
689
fc1fcd0e
RD
690 // Read-only access to the row heights and col widths arrays
691 const wxArrayInt& GetRowHeights() const { return m_rowHeights; }
692 const wxArrayInt& GetColWidths() const { return m_colWidths; }
8b2bac62 693
5d76f462
VZ
694 // implementation
695 virtual void RecalcSizes();
696 virtual wxSize CalcMin();
697
698protected:
20b35a69
RD
699 void AdjustForFlexDirection();
700 void AdjustForGrowables(const wxSize& sz, const wxSize& minsz,
701 int nrows, int ncols);
8b2bac62 702
5d76f462
VZ
703 // the heights/widths of all rows/columns
704 wxArrayInt m_rowHeights,
705 m_colWidths;
706
707 // indices of the growable columns and rows
708 wxArrayInt m_growableRows,
709 m_growableCols;
710
e8800dcf
VZ
711 // proportion values of the corresponding growable rows and columns
712 wxArrayInt m_growableRowsProportions,
713 m_growableColsProportions;
714
5d76f462
VZ
715 // parameters describing whether the growable cells should be resized in
716 // both directions or only one
717 int m_flexDirection;
718 wxFlexSizerGrowMode m_growMode;
1e6feb95 719
ba763a45
RD
720 // saves CalcMin result to optimize RecalcSizes
721 wxSize m_calculatedMinSize;
722
9cbee2ce 723private:
4393b50c 724 DECLARE_CLASS(wxFlexGridSizer)
22f3361e 725 DECLARE_NO_COPY_CLASS(wxFlexGridSizer)
c62ac5b6
RR
726};
727
728//---------------------------------------------------------------------------
92afa2b1 729// wxBoxSizer
c62ac5b6
RR
730//---------------------------------------------------------------------------
731
92afa2b1 732class WXDLLEXPORT wxBoxSizer: public wxSizer
61d514bb
RR
733{
734public:
f6bcfd97 735 wxBoxSizer( int orient );
0c0d686f 736
f6bcfd97
BP
737 void RecalcSizes();
738 wxSize CalcMin();
0c0d686f 739
9cbee2ce 740 int GetOrientation() const
f6bcfd97 741 { return m_orient; }
0c0d686f 742
b657b4c9
JS
743 void SetOrientation(int orient)
744 { m_orient = orient; }
745
61d514bb
RR
746protected:
747 int m_orient;
748 int m_stretchable;
749 int m_minWidth;
750 int m_minHeight;
751 int m_fixedWidth;
752 int m_fixedHeight;
1e6feb95 753
9cbee2ce 754private:
4393b50c 755 DECLARE_CLASS(wxBoxSizer)
61d514bb 756};
0c0d686f 757
27ea1d8a
RR
758//---------------------------------------------------------------------------
759// wxStaticBoxSizer
760//---------------------------------------------------------------------------
761
1e6feb95
VZ
762#if wxUSE_STATBOX
763
649cfca1 764class WXDLLEXPORT wxStaticBox;
1e6feb95 765
27ea1d8a
RR
766class WXDLLEXPORT wxStaticBoxSizer: public wxBoxSizer
767{
768public:
6c1635b5 769 wxStaticBoxSizer(wxStaticBox *box, int orient);
450a1593 770 wxStaticBoxSizer(int orient, wxWindow *win, const wxString& label = wxEmptyString);
649cfca1 771 virtual ~wxStaticBoxSizer();
0c0d686f 772
f6bcfd97
BP
773 void RecalcSizes();
774 wxSize CalcMin();
0c0d686f 775
9cbee2ce 776 wxStaticBox *GetStaticBox() const
f6bcfd97 777 { return m_staticBox; }
0c0d686f 778
eb2a7883
VZ
779 // override to hide/show the static box as well
780 virtual void ShowItems (bool show);
7e2b7860 781
e978011a 782 virtual bool Detach( wxWindow *window );
7e2b7860
VZ
783 virtual bool Detach( wxSizer *sizer ) { return wxBoxSizer::Detach(sizer); }
784 virtual bool Detach( int index ) { return wxBoxSizer::Detach(index); }
eb2a7883 785
27ea1d8a 786protected:
f6bcfd97 787 wxStaticBox *m_staticBox;
1e6feb95 788
9cbee2ce 789private:
4393b50c 790 DECLARE_CLASS(wxStaticBoxSizer)
22f3361e 791 DECLARE_NO_COPY_CLASS(wxStaticBoxSizer)
27ea1d8a
RR
792};
793
1e6feb95
VZ
794#endif // wxUSE_STATBOX
795
974c2a59
WS
796#if wxUSE_BUTTON
797
acf2ac37
RR
798class WXDLLEXPORT wxStdDialogButtonSizer: public wxBoxSizer
799{
800public:
acf2ac37
RR
801 // Constructor just creates a new wxBoxSizer, not much else.
802 // Box sizer orientation is automatically determined here:
803 // vertical for PDAs, horizontal for everything else?
b181a505 804 wxStdDialogButtonSizer();
acf2ac37 805
acf2ac37 806 // Checks button ID against system IDs and sets one of the pointers below
b181a505
RR
807 // to this button. Does not do any sizer-related things here.
808 void AddButton(wxButton *button);
acf2ac37 809
b181a505
RR
810 // Use these if no standard ID can/should be used
811 void SetAffirmativeButton( wxButton *button );
812 void SetNegativeButton( wxButton *button );
813 void SetCancelButton( wxButton *button );
acf2ac37 814
acf2ac37
RR
815 // All platform-specific code here, checks which buttons exist and add
816 // them to the sizer accordingly.
817 // Note - one potential hack on Mac we could use here,
818 // if m_buttonAffirmative is wxID_SAVE then ensure wxID_SAVE
819 // is set to _("Save") and m_buttonNegative is set to _("Don't Save")
820 // I wouldn't add any other hacks like that into here,
821 // but this one I can see being useful.
718903fe 822 void Realize();
974c2a59 823
acf2ac37
RR
824 wxButton *GetAffirmativeButton() const { return m_buttonAffirmative; }
825 wxButton *GetApplyButton() const { return m_buttonApply; }
826 wxButton *GetNegativeButton() const { return m_buttonNegative; }
827 wxButton *GetCancelButton() const { return m_buttonCancel; }
828 wxButton *GetHelpButton() const { return m_buttonHelp; }
829
830protected:
b181a505 831 wxButton *m_buttonAffirmative; // wxID_OK, wxID_YES, wxID_SAVE go here
acf2ac37 832 wxButton *m_buttonApply;
b181a505 833 wxButton *m_buttonNegative; // wxID_NO
acf2ac37
RR
834 wxButton *m_buttonCancel;
835 wxButton *m_buttonHelp;
974c2a59 836
acf2ac37
RR
837private:
838 DECLARE_CLASS(wxStdDialogButtonSizer)
b181a505 839 DECLARE_NO_COPY_CLASS(wxStdDialogButtonSizer)
acf2ac37 840};
adbf2d73 841
6b5c4761 842#endif // wxUSE_BUTTON
974c2a59 843
adbf2d73
VS
844#if WXWIN_COMPATIBILITY_2_4
845// NB: wxBookCtrlSizer and wxNotebookSizer are deprecated, they
61c083e7 846// don't do anything. wxBookCtrlBase::DoGetBestSize does the job now.
adbf2d73 847
ade4eb65
VZ
848// ----------------------------------------------------------------------------
849// wxBookCtrlSizer
850// ----------------------------------------------------------------------------
83edc0a5 851
ade4eb65 852#if wxUSE_BOOKCTRL
65e4f9b9 853
8e32ea1c 854// this sizer works with wxNotebook/wxListbook/... and sizes the control to
ade4eb65 855// fit its pages
61c083e7 856class WXDLLEXPORT wxBookCtrlBase;
1e6feb95 857
ade4eb65 858class WXDLLEXPORT wxBookCtrlSizer : public wxSizer
83edc0a5 859{
83edc0a5 860public:
6a9e54bd 861#if WXWIN_COMPATIBILITY_2_6
61c083e7 862 wxDEPRECATED( wxBookCtrlSizer(wxBookCtrlBase *bookctrl) );
6a9e54bd 863#endif // WXWIN_COMPATIBILITY_2_6
83edc0a5 864
61c083e7 865 wxBookCtrlBase *GetControl() const { return m_bookctrl; }
8b2bac62 866
ade4eb65
VZ
867 virtual void RecalcSizes();
868 virtual wxSize CalcMin();
83edc0a5 869
83edc0a5 870protected:
adbf2d73 871 // this protected ctor lets us mark the real one above as deprecated
749bb9f1 872 // and still have warning-free build of the library itself:
adbf2d73 873 wxBookCtrlSizer() {}
8b2bac62 874
61c083e7 875 wxBookCtrlBase *m_bookctrl;
ade4eb65
VZ
876
877private:
878 DECLARE_CLASS(wxBookCtrlSizer)
879 DECLARE_NO_COPY_CLASS(wxBookCtrlSizer)
880};
881
882
883#if wxUSE_NOTEBOOK
884
61c083e7 885// before wxBookCtrlBase we only had wxNotebookSizer, keep it for backwards
ade4eb65
VZ
886// compatibility
887class WXDLLEXPORT wxNotebook;
888
889class WXDLLEXPORT wxNotebookSizer : public wxBookCtrlSizer
890{
891public:
6a9e54bd 892#if WXWIN_COMPATIBILITY_2_6
adbf2d73 893 wxDEPRECATED( wxNotebookSizer(wxNotebook *nb) );
6a9e54bd 894#endif // WXWIN_COMPATIBILITY_2_6
ade4eb65
VZ
895
896 wxNotebook *GetNotebook() const { return (wxNotebook *)m_bookctrl; }
1e6feb95 897
9cbee2ce 898private:
4393b50c 899 DECLARE_CLASS(wxNotebookSizer)
22f3361e 900 DECLARE_NO_COPY_CLASS(wxNotebookSizer)
83edc0a5
RR
901};
902
1e6feb95 903#endif // wxUSE_NOTEBOOK
65e4f9b9 904
ade4eb65
VZ
905#endif // wxUSE_BOOKCTRL
906
adbf2d73
VS
907#endif // WXWIN_COMPATIBILITY_2_4
908
8e32ea1c
VZ
909// ----------------------------------------------------------------------------
910// inline functions implementation
911// ----------------------------------------------------------------------------
912
50961a35
PC
913inline wxSizerItem*
914wxSizer::Add( wxSizerItem *item )
915{
916 return Insert( m_children.GetCount(), item );
917}
918
56eee37f 919inline wxSizerItem*
8e32ea1c
VZ
920wxSizer::Add( wxWindow *window, int proportion, int flag, int border, wxObject* userData )
921{
56eee37f 922 return Add( new wxSizerItem( window, proportion, flag, border, userData ) );
8e32ea1c
VZ
923}
924
56eee37f 925inline wxSizerItem*
8e32ea1c
VZ
926wxSizer::Add( wxSizer *sizer, int proportion, int flag, int border, wxObject* userData )
927{
56eee37f 928 return Add( new wxSizerItem( sizer, proportion, flag, border, userData ) );
8e32ea1c
VZ
929}
930
56eee37f 931inline wxSizerItem*
8e32ea1c
VZ
932wxSizer::Add( int width, int height, int proportion, int flag, int border, wxObject* userData )
933{
56eee37f 934 return Add( new wxSizerItem( width, height, proportion, flag, border, userData ) );
8e32ea1c
VZ
935}
936
56eee37f 937inline wxSizerItem*
5f813ad6
VZ
938wxSizer::Add( wxWindow *window, const wxSizerFlags& flags )
939{
56eee37f 940 return Add( new wxSizerItem(window, flags) );
5f813ad6
VZ
941}
942
56eee37f 943inline wxSizerItem*
5f813ad6
VZ
944wxSizer::Add( wxSizer *sizer, const wxSizerFlags& flags )
945{
56eee37f 946 return Add( new wxSizerItem(sizer, flags) );
5f813ad6
VZ
947}
948
56eee37f 949inline wxSizerItem*
8e32ea1c
VZ
950wxSizer::AddSpacer(int size)
951{
56eee37f 952 return Add(size, size);
8e32ea1c
VZ
953}
954
56eee37f 955inline wxSizerItem*
8e32ea1c
VZ
956wxSizer::AddStretchSpacer(int prop)
957{
56eee37f 958 return Add(0, 0, prop);
8e32ea1c
VZ
959}
960
50961a35
PC
961inline wxSizerItem*
962wxSizer::Prepend( wxSizerItem *item )
963{
964 return Insert( 0, item );
965}
966
56eee37f 967inline wxSizerItem*
8e32ea1c
VZ
968wxSizer::Prepend( wxWindow *window, int proportion, int flag, int border, wxObject* userData )
969{
56eee37f 970 return Prepend( new wxSizerItem( window, proportion, flag, border, userData ) );
8e32ea1c
VZ
971}
972
56eee37f 973inline wxSizerItem*
8e32ea1c
VZ
974wxSizer::Prepend( wxSizer *sizer, int proportion, int flag, int border, wxObject* userData )
975{
56eee37f 976 return Prepend( new wxSizerItem( sizer, proportion, flag, border, userData ) );
8e32ea1c
VZ
977}
978
56eee37f 979inline wxSizerItem*
8e32ea1c
VZ
980wxSizer::Prepend( int width, int height, int proportion, int flag, int border, wxObject* userData )
981{
56eee37f 982 return Prepend( new wxSizerItem( width, height, proportion, flag, border, userData ) );
8e32ea1c
VZ
983}
984
56eee37f 985inline wxSizerItem*
8e32ea1c
VZ
986wxSizer::PrependSpacer(int size)
987{
56eee37f 988 return Prepend(size, size);
8e32ea1c
VZ
989}
990
56eee37f 991inline wxSizerItem*
8e32ea1c
VZ
992wxSizer::PrependStretchSpacer(int prop)
993{
56eee37f 994 return Prepend(0, 0, prop);
8e32ea1c
VZ
995}
996
56eee37f 997inline wxSizerItem*
5f813ad6
VZ
998wxSizer::Prepend( wxWindow *window, const wxSizerFlags& flags )
999{
56eee37f 1000 return Prepend( new wxSizerItem(window, flags) );
5f813ad6
VZ
1001}
1002
56eee37f 1003inline wxSizerItem*
5f813ad6
VZ
1004wxSizer::Prepend( wxSizer *sizer, const wxSizerFlags& flags )
1005{
56eee37f 1006 return Prepend( new wxSizerItem(sizer, flags) );
5f813ad6
VZ
1007}
1008
56eee37f 1009inline wxSizerItem*
8e32ea1c 1010wxSizer::Insert( size_t index,
5f813ad6
VZ
1011 wxWindow *window,
1012 int proportion,
1013 int flag,
1014 int border,
1015 wxObject* userData )
8e32ea1c 1016{
56eee37f 1017 return Insert( index, new wxSizerItem( window, proportion, flag, border, userData ) );
8e32ea1c
VZ
1018}
1019
56eee37f 1020inline wxSizerItem*
8e32ea1c 1021wxSizer::Insert( size_t index,
5f813ad6
VZ
1022 wxSizer *sizer,
1023 int proportion,
1024 int flag,
1025 int border,
1026 wxObject* userData )
8e32ea1c 1027{
56eee37f 1028 return Insert( index, new wxSizerItem( sizer, proportion, flag, border, userData ) );
8e32ea1c
VZ
1029}
1030
56eee37f 1031inline wxSizerItem*
8e32ea1c 1032wxSizer::Insert( size_t index,
5f813ad6
VZ
1033 int width,
1034 int height,
1035 int proportion,
1036 int flag,
1037 int border,
1038 wxObject* userData )
8e32ea1c 1039{
56eee37f 1040 return Insert( index, new wxSizerItem( width, height, proportion, flag, border, userData ) );
8e32ea1c
VZ
1041}
1042
56eee37f 1043inline wxSizerItem*
5f813ad6
VZ
1044wxSizer::Insert( size_t index, wxWindow *window, const wxSizerFlags& flags )
1045{
56eee37f 1046 return Insert( index, new wxSizerItem(window, flags) );
5f813ad6
VZ
1047}
1048
56eee37f 1049inline wxSizerItem*
5f813ad6
VZ
1050wxSizer::Insert( size_t index, wxSizer *sizer, const wxSizerFlags& flags )
1051{
56eee37f 1052 return Insert( index, new wxSizerItem(sizer, flags) );
5f813ad6
VZ
1053}
1054
56eee37f 1055inline wxSizerItem*
8e32ea1c
VZ
1056wxSizer::InsertSpacer(size_t index, int size)
1057{
56eee37f 1058 return Insert(index, size, size);
8e32ea1c
VZ
1059}
1060
56eee37f 1061inline wxSizerItem*
8e32ea1c
VZ
1062wxSizer::InsertStretchSpacer(size_t index, int prop)
1063{
56eee37f 1064 return Insert(index, 0, 0, prop);
8e32ea1c
VZ
1065}
1066
adbf2d73 1067
ade4eb65 1068#endif // __WXSIZER_H__