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