]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/sizer.tex
more LaTeX error fixes
[wxWidgets.git] / docs / latex / wx / sizer.tex
CommitLineData
8fe05782
VZ
1\section{\class{wxSizer}}\label{wxsizer}
2
7e9a386e 3wxSizer is the abstract base class used for laying out subwindows in a window. You
3baaf313
VZ
4cannot use wxSizer directly; instead, you will have to use one of the sizer
5classes derived from it. Currently there are \helpref{wxBoxSizer}{wxboxsizer},
6\helpref{wxStaticBoxSizer}{wxstaticboxsizer},
15f7c305
RR
7\helpref{wxGridSizer}{wxgridsizer},
8\helpref{wxFlexGridSizer}{wxflexgridsizer},
9\helpref{wxWrapSizer}{wxwrapsizer}
10 and \helpref{wxGridBagSizer}{wxgridbagsizer}.
515da557 11
fc2171bd 12The layout algorithm used by sizers in wxWidgets is closely related to layout
515da557
RR
13in other GUI toolkits, such as Java's AWT, the GTK toolkit or the Qt toolkit. It is
14based upon the idea of the individual subwindows reporting their minimal required
15size and their ability to get stretched if the size of the parent window has changed.
749bb9f1
DS
16This will most often mean that the programmer does not set the original size of
17a dialog in the beginning, rather the dialog will be assigned a sizer and this sizer
1193d8fa
RR
18will be queried about the recommended size. The sizer in turn will query its
19children, which can be normal windows, empty space or other sizers, so that
20a hierarchy of sizers can be constructed. Note that wxSizer does not derive from wxWindow
749bb9f1 21and thus does not interfere with tab ordering and requires very little resources compared
515da557
RR
22to a real window on screen.
23
fc2171bd 24What makes sizers so well fitted for use in wxWidgets is the fact that every control
515da557
RR
25reports its own minimal size and the algorithm can handle differences in font sizes
26or different window (dialog item) sizes on different platforms without problems. If e.g.
27the standard font as well as the overall design of Motif widgets requires more space than
f6bcfd97 28on Windows, the initial dialog size will automatically be bigger on Motif than on Windows.
8fe05782 29
e6994168
VZ
30Sizers may also be used to control the layout of custom drawn items on the window. The
31Add, Insert, and Prepend functions return a pointer to the newly added wxSizerItem. Just
32add empty space of the desired size and attributes, and then use the wxSizerItem::GetRect
33method to determine where the drawing operations should take place.
34
35
c1073b57
VZ
36Please notice that sizers, like child windows, are owned by the library and
37will be deleted by it which implies that they must be allocated on the heap.
38However if you create a sizer and do not add it to another sizer or window, the
39library wouldn't be able to delete such an orphan sizer and in this, and only
40this, case it should be deleted explicitly.
41
76e1c2de 42\pythonnote{If you wish to create a sizer class in wxPython you should
c9110876 43derive the class from {\tt wxPySizer} in order to get Python-aware
76e1c2de
RD
44capabilities for the various virtual methods.}
45
8fe05782
VZ
46\wxheading{Derived from}
47
7376079d 48\helpref{wxObject}{wxobject}
8fe05782 49
0bf97466
RN
50\wxheading{Include files}
51
52<wx/sizer.h>
53
a7af285d
VZ
54\wxheading{Library}
55
56\helpref{wxCore}{librarieslist}
57
1c0c339c
JS
58\wxheading{See also}
59
60\helpref{Sizer overview}{sizeroverview}
61
8fe05782
VZ
62\latexignore{\rtfignore{\wxheading{Members}}}
63
02c6137e 64
8fe05782
VZ
65\membersection{wxSizer::wxSizer}\label{wxsizerwxsizer}
66
67\func{}{wxSizer}{\void}
68
9c884972
RR
69The constructor. Note that wxSizer is an abstract base class and may not
70be instantiated.
8fe05782 71
02c6137e 72
8fe05782
VZ
73\membersection{wxSizer::\destruct{wxSizer}}\label{wxsizerdtor}
74
75\func{}{\destruct{wxSizer}}{\void}
76
9c884972 77The destructor.
8fe05782 78
02c6137e 79
8fe05782
VZ
80\membersection{wxSizer::Add}\label{wxsizeradd}
81
40210d8a
RN
82\func{wxSizerItem*}{Add}{\param{wxWindow* }{window}, \param{const wxSizerFlags\& }{flags}}
83
56eee37f 84\func{wxSizerItem*}{Add}{\param{wxWindow* }{window}, \param{int }{proportion = 0},\param{int }{flag = 0}, \param{int }{border = 0}, \param{wxObject* }{userData = NULL}}
8fe05782 85
40210d8a
RN
86\func{wxSizerItem*}{Add}{\param{wxSizer* }{sizer}, \param{const wxSizerFlags\& }{flags}}
87
56eee37f 88\func{wxSizerItem*}{Add}{\param{wxSizer* }{sizer}, \param{int }{proportion = 0}, \param{int }{flag = 0}, \param{int }{border = 0}, \param{wxObject* }{userData = NULL}}
8fe05782 89
56eee37f 90\func{wxSizerItem*}{Add}{\param{int }{width}, \param{int }{height}, \param{int }{proportion = 0}, \param{int }{flag = 0}, \param{int }{border = 0}, \param{wxObject* }{userData = NULL}}
8fe05782 91
00976fe5
RL
92Appends a child to the sizer. wxSizer itself is an abstract class, but the parameters are
93equivalent in the derived classes that you will instantiate to use it so they are described
94here:
8fe05782 95
4130b487
RR
96\docparam{window}{The window to be added to the sizer. Its initial size (either set explicitly by the
97user or calculated internally when using wxDefaultSize) is interpreted as the minimal and in many
fd52f255 98cases also the initial size.}
4130b487
RR
99
100\docparam{sizer}{The (child-)sizer to be added to the sizer. This allows placing a child sizer in a
101sizer and thus to create hierarchies of sizers (typically a vertical box as the top sizer and several
102horizontal boxes on the level beneath).}
103
104\docparam{width and height}{The dimension of a spacer to be added to the sizer. Adding spacers to sizers
2edb0bde 105gives more flexibility in the design of dialogs; imagine for example a horizontal box with two buttons at the
4130b487 106bottom of a dialog: you might want to insert a space between the two buttons and make that space stretchable
e3950b18 107using the \arg{proportion} flag and the result will be that the left button will be aligned with the left
4130b487
RR
108side of the dialog and the right button with the right side - the space in between will shrink and grow with
109the dialog.}
110
2b5f62a0 111\docparam{proportion}{Although the meaning of this parameter is undefined in wxSizer, it is used in wxBoxSizer
a6f3598d 112to indicate if a child of a sizer can change its size in the main orientation of the wxBoxSizer - where
2edb0bde 1130 stands for not changeable and a value of more than zero is interpreted relative to the value of other
f6bcfd97
BP
114children of the same wxBoxSizer. For example, you might have a horizontal wxBoxSizer with three children, two
115of which are supposed to change their size with the sizer. Then the two stretchable windows would get a
fc9c7c09 116value of 1 each to make them grow and shrink equally with the sizer's horizontal dimension.}
a6f3598d 117
caa251e0
RD
118\docparam{flag}{This parameter can be used to set a number of flags
119which can be combined using the binary OR operator |. Two main
120behaviours are defined using these flags. One is the border around a
e3950b18 121window: the \arg{border} parameter determines the border width whereas
caa251e0
RD
122the flags given here determine which side(s) of the item that the
123border will be added. The other flags determine how the sizer item
124behaves when the space allotted to the sizer changes, and is somewhat
125dependent on the specific kind of sizer used.
126
127\twocolwidtha{5cm}%
128\begin{twocollist}\itemsep=0pt
129\twocolitem{\windowstyle{wxTOP}\\
130\windowstyle{wxBOTTOM}\\
131\windowstyle{wxLEFT}\\
132\windowstyle{wxRIGHT}\\
133\windowstyle{wxALL}}{These flags are used to specify which side(s) of
e3950b18 134 the sizer item the \arg{border} width will apply to. }
75173186 135
a70b2f80
DS
136\twocolitem{\windowstyle{wxEXPAND}}{The item will be expanded to fill
137the space assigned to the item.}
caa251e0
RD
138\twocolitem{\windowstyle{wxSHAPED}}{The item will be expanded as much
139as possible while also maintaining its aspect ratio}
2fa2b11b
JS
140\twocolitem{\windowstyle{wxFIXED\_MINSIZE}}{Normally wxSizers will use
141\helpref{GetAdjustedBestSize}{wxwindowgetadjustedbestsize} to
142determine what the minimal size of window items should be, and will
143use that size to calculate the layout. This allows layouts to
e3950b18 144adjust when an item changes and its \arg{best size} becomes
2fa2b11b
JS
145different. If you would rather have a window item stay the size it
146started with then use wxFIXED\_MINSIZE.}
b219a1a9 147\twocolitem{\windowstyle{wxALIGN\_CENTER wxALIGN\_CENTRE}\\
caa251e0
RD
148\windowstyle{wxALIGN\_LEFT}\\
149\windowstyle{wxALIGN\_RIGHT}\\
150\windowstyle{wxALIGN\_TOP}\\
151\windowstyle{wxALIGN\_BOTTOM}\\
b219a1a9
VZ
152\windowstyle{wxALIGN\_CENTER\_VERTICAL wxALIGN\_CENTRE\_VERTICAL}\\
153\windowstyle{wxALIGN\_CENTER\_HORIZONTAL wxALIGN\_CENTRE\_HORIZONTAL}}{The wxALIGN flags allow you to
2fa2b11b
JS
154specify the alignment of the item within the space allotted to it by
155the sizer, adjusted for the border if any.}
caa251e0
RD
156\end{twocollist}
157}
158
e3950b18 159\docparam{border}{Determines the border width, if the \arg{flag}
caa251e0 160 parameter is set to include any border flag.}
a6f3598d 161
76e1c2de
RD
162\docparam{userData}{Allows an extra object to be attached to the sizer
163item, for use in derived classes when sizing information is more
e3950b18 164complex than the \arg{proportion} and \arg{flag} will allow for.}
f6bcfd97 165
40210d8a
RN
166\docparam{flags}{A \helpref{wxSizerFlags}{wxsizerflags} object that
167enables you to specify most of the above parameters more conveniently.}
02c6137e 168
749bb9f1
DS
169\membersection{wxSizer::AddSpacer}\label{wxsizeraddspacer}
170
56eee37f 171\func{wxSizerItem*}{AddSpacer}{\param{int }{size}}
749bb9f1
DS
172
173Adds non-stretchable space to the sizer. More readable way of calling
174\helpref{Add}{wxsizeradd}(size, size, 0).
175
176
177\membersection{wxSizer::AddStretchSpacer}\label{wxsizeraddstretchspacer}
178
56eee37f 179\func{wxSizerItem*}{AddStretchSpacer}{\param{int }{prop = 1}}
749bb9f1
DS
180
181Adds stretchable space to the sizer. More readable way of calling
182\helpref{Add}{wxsizeradd}(0, 0, prop).
183
184
f6bcfd97
BP
185\membersection{wxSizer::CalcMin}\label{wxsizercalcmin}
186
187\func{wxSize}{CalcMin}{\void}
188
189This method is abstract and has to be overwritten by any derived class.
576b18f2 190Here, the sizer will do the actual calculation of its children's minimal sizes.
f6bcfd97 191
02c6137e 192
e3950b18
VZ
193\membersection{wxSizer::Clear}\label{wxsizerclear}
194
195\func{void}{Clear}{\param{bool }{delete\_windows = false}}
196
197Detaches all children from the sizer. If \arg{delete\_windows} is \true then child windows will also be deleted.
198
199
00976fe5
RL
200\membersection{wxSizer::Detach}\label{wxsizerdetach}
201
202\func{bool}{Detach}{\param{wxWindow* }{window}}
203
204\func{bool}{Detach}{\param{wxSizer* }{sizer}}
205
12a3f227 206\func{bool}{Detach}{\param{size\_t }{index}}
00976fe5 207
e3950b18
VZ
208Detach a child from the sizer without destroying it. \arg{window} is the window to be
209detached, \arg{sizer} is the equivalent sizer and \arg{index} is the position of
00976fe5
RL
210the child in the sizer, typically 0 for the first item. This method does not
211cause any layout or resizing to take place, call \helpref{wxSizer::Layout}{wxsizerlayout}
212to update the layout "on screen" after detaching a child from the sizer.
213
cc81d32f 214Returns true if the child item was found and detached, false otherwise.
00976fe5
RL
215
216\wxheading{See also}
217
218\helpref{wxSizer::Remove}{wxsizerremove}
219
02c6137e 220
f6bcfd97
BP
221\membersection{wxSizer::Fit}\label{wxsizerfit}
222
e5251d4f 223\func{wxSize}{Fit}{\param{wxWindow* }{window}}
f6bcfd97 224
c30199bf
RR
225Tell the sizer to resize the \arg{window} so that its client area matchesthe
226sizer's minimal size. This is commonly done in the constructor of the window
227itself, see sample in the description
e5251d4f 228of \helpref{wxBoxSizer}{wxboxsizer}. Returns the new size.
f6bcfd97 229
566d84a7
RL
230\membersection{wxSizer::FitInside}\label{wxsizerfitinside}
231
232\func{void}{FitInside}{\param{wxWindow* }{window}}
233
e3950b18 234Tell the sizer to resize the virtual size of the \arg{window} to match the sizer's
566d84a7
RL
235minimal size. This will not alter the on screen size of the window, but may cause
236the addition/removal/alteration of scrollbars required to view the virtual area in
237windows which manage it.
238
239\wxheading{See also}
240
241\helpref{wxScrolledWindow::SetScrollbars}{wxscrolledwindowsetscrollbars},\rtfsp
242\helpref{wxSizer::SetVirtualSizeHints}{wxsizersetvirtualsizehints}
243
02c6137e 244
f86d9a8b
VZ
245\membersection{wxSizer::GetChildren}\label{wxsizergetchildren}
246
f9b5691a
VZ
247\constfunc{const wxSizerItemList\&}{GetChildren}{\void}
248
f86d9a8b
VZ
249\func{wxSizerItemList\&}{GetChildren}{\void}
250
251Returns the list of the items in this sizer. The elements of type-safe
252\helpref{wxList}{wxlist} \texttt{wxSizerItemList} are objects of type
253\helpref{wxSizerItem *}{wxsizeritem}.
254
255
e8cfff87
VZ
256\membersection{wxSizer::GetContainingWindow}\label{wxsizergetcontainingwindow}
257
258\constfunc{wxWindow *}{GetContainingWindow}{\void}
259
260Returns the window this sizer is used in or \NULL if none.
261
262
9f13661f
WS
263\membersection{wxSizer::GetItem}\label{wxsizergetitem}
264
265\func{wxSizerItem *}{GetItem}{\param{wxWindow* }{window}, \param{bool }{recursive = false}}
266
267\func{wxSizerItem *}{GetItem}{\param{wxSizer* }{sizer}, \param{bool }{recursive = false}}
268
269\func{wxSizerItem *}{GetItem}{\param{size\_t }{index}}
270
e3950b18
VZ
271Finds item of the sizer which holds given \arg{window}, \arg{sizer} or is located
272in sizer at position \arg{index}.
273Use parameter \arg{recursive} to search in subsizers too.
9f13661f
WS
274
275Returns pointer to item or NULL.
276
86909f4c
VZ
277\membersection{wxSizer::GetItemById}\label{wxsizergetitembyid}
278
279\func{wxSizerItem *}{GetItemById}{\param{int }{id}, \param{bool }{recursive = false}}
280
281Finds item of the sizer which has the given \arg{id}. This \arg{id} is not the
282window id but the id of the wxSizerItem itself. This is mainly useful for
283retrieving the sizers created from XRC resources.
284
285Use parameter \arg{recursive} to search in subsizers too.
286
287Returns pointer to item or \NULL.
288
9f13661f 289
f6bcfd97
BP
290\membersection{wxSizer::GetSize}\label{wxsizergetsize}
291
292\func{wxSize}{GetSize}{\void}
293
294Returns the current size of the sizer.
295
02c6137e 296
f6bcfd97
BP
297\membersection{wxSizer::GetPosition}\label{wxsizergetposition}
298
299\func{wxPoint}{GetPosition}{\void}
300
301Returns the current position of the sizer.
302
02c6137e 303
f6bcfd97
BP
304\membersection{wxSizer::GetMinSize}\label{wxsizergetminsize}
305
306\func{wxSize}{GetMinSize}{\void}
307
308Returns the minimal size of the sizer. This is either the combined minimal
309size of all the children and their borders or the minimal size set by
310\helpref{SetMinSize}{wxsizersetminsize}, depending on which is bigger.
311
02c6137e 312
e3950b18
VZ
313\membersection{wxSizer::Hide}\label{wxsizerhide}
314
315\func{bool}{Hide}{\param{wxWindow* }{window}, \param{bool }{recursive = false}}
316
317\func{bool}{Hide}{\param{wxSizer* }{sizer}, \param{bool }{recursive = false}}
318
319\func{bool}{Hide}{\param{size\_t }{index}}
320
321Hides the \arg{window}, \arg{sizer}, or item at \arg{index}.
322To make a sizer item disappear, use Hide() followed by \helpref{Layout()}{wxsizerlayout}.
323Use parameter \arg{recursive} to hide elements found in subsizers.
324
325Returns \true if the child item was found, \false otherwise.
326
327\wxheading{See also}
328
329\helpref{wxSizer::IsShown}{wxsizerisshown},\rtfsp
330\helpref{wxSizer::Show}{wxsizershow}
331
332
00976fe5
RL
333\membersection{wxSizer::Insert}\label{wxsizerinsert}
334
40210d8a
RN
335\func{wxSizerItem*}{Insert}{\param{size\_t }{index}, \param{wxWindow* }{window}, \param{const wxSizerFlags\& }{flags}}
336
56eee37f 337\func{wxSizerItem*}{Insert}{\param{size\_t }{index}, \param{wxWindow* }{window}, \param{int }{proportion = 0},\param{int }{flag = 0}, \param{int }{border = 0}, \param{wxObject* }{userData = NULL}}
00976fe5 338
40210d8a
RN
339\func{wxSizerItem*}{Insert}{\param{size\_t }{index}, \param{wxSizer* }{sizer}, \param{const wxSizerFlags\& }{flags}}
340
56eee37f 341\func{wxSizerItem*}{Insert}{\param{size\_t }{index}, \param{wxSizer* }{sizer}, \param{int }{proportion = 0}, \param{int }{flag = 0}, \param{int }{border = 0}, \param{wxObject* }{userData = NULL}}
00976fe5 342
56eee37f 343\func{wxSizerItem*}{Insert}{\param{size\_t }{index}, \param{int }{width}, \param{int }{height}, \param{int }{proportion = 0}, \param{int }{flag = 0}, \param{int }{border = 0}, \param{wxObject* }{userData = NULL}}
00976fe5 344
e3950b18 345Insert a child into the sizer before any existing item at \arg{index}.
00976fe5 346
12a3f227 347\docparam{index}{The position this child should assume in the sizer.}
00976fe5
RL
348
349See \helpref{wxSizer::Add}{wxsizeradd} for the meaning of the other parameters.
350
02c6137e 351
749bb9f1
DS
352\membersection{wxSizer::InsertSpacer}\label{wxsizerinsertspacer}
353
56eee37f 354\func{wxSizerItem*}{InsertSpacer}{\param{size\_t }{index}, \param{int }{size}}
749bb9f1
DS
355
356Inserts non-stretchable space to the sizer. More readable way of calling
357\helpref{Insert}{wxsizerinsert}(size, size, 0).
358
359
360\membersection{wxSizer::InsertStretchSpacer}\label{wxsizerinsertstretchspacer}
361
56eee37f 362\func{wxSizerItem*}{InsertStretchSpacer}{\param{size\_t }{index}, \param{int }{prop = 1}}
749bb9f1
DS
363
364Inserts stretchable space to the sizer. More readable way of calling
365\helpref{Insert}{wxsizerinsert}(0, 0, prop).
366
367
e3950b18
VZ
368\membersection{wxSizer::IsShown}\label{wxsizerisshown}
369
370\constfunc{bool}{IsShown}{\param{wxWindow* }{window}}
371
372\constfunc{bool}{IsShown}{\param{wxSizer* }{sizer}}
373
374\constfunc{bool}{IsShown}{\param{size\_t }{index}}
375
376Returns \true if the \arg{window}, \arg{sizer}, or item at \arg{index} is shown.
377
378\wxheading{See also}
379
380\helpref{wxSizer::Hide}{wxsizerhide},\rtfsp
381\helpref{wxSizer::Show}{wxsizershow}
382
383
f6bcfd97
BP
384\membersection{wxSizer::Layout}\label{wxsizerlayout}
385
386\func{void}{Layout}{\void}
387
388Call this to force layout of the children anew, e.g. after having added a child
389to or removed a child (window, other sizer or space) from the sizer while keeping
390the current dimension.
76e1c2de 391
02c6137e 392
9c884972 393\membersection{wxSizer::Prepend}\label{wxsizerprepend}
8fe05782 394
40210d8a
RN
395\func{wxSizerItem*}{Prepend}{\param{wxWindow* }{window}, \param{const wxSizerFlags\& }{flags}}
396
56eee37f 397\func{wxSizerItem*}{Prepend}{\param{wxWindow* }{window}, \param{int }{proportion = 0}, \param{int }{flag = 0}, \param{int }{border = 0}, \param{wxObject* }{userData = NULL}}
8fe05782 398
40210d8a
RN
399\func{wxSizerItem*}{Prepend}{\param{wxSizer* }{sizer}, \param{const wxSizerFlags\& }{flags}}
400
56eee37f 401\func{wxSizerItem*}{Prepend}{\param{wxSizer* }{sizer}, \param{int }{proportion = 0}, \param{int }{flag = 0}, \param{int }{border = 0}, \param{wxObject* }{userData = NULL}}
9c884972 402
56eee37f 403\func{wxSizerItem*}{Prepend}{\param{int }{width}, \param{int }{height}, \param{int }{proportion = 0}, \param{int }{flag = 0}, \param{int }{border= 0}, \param{wxObject* }{userData = NULL}}
9c884972
RR
404
405Same as \helpref{wxSizer::Add}{wxsizeradd}, but prepends the items to the beginning of the
4130b487 406list of items (windows, subsizers or spaces) owned by this sizer.
8fe05782 407
02c6137e 408
749bb9f1
DS
409\membersection{wxSizer::PrependSpacer}\label{wxsizerprependspacer}
410
56eee37f 411\func{wxSizerItem*}{PrependSpacer}{\param{int }{size}}
749bb9f1
DS
412
413Prepends non-stretchable space to the sizer. More readable way of calling
414\helpref{Prepend}{wxsizerprepend}(size, size, 0).
415
416
417\membersection{wxSizer::PrependStretchSpacer}\label{wxsizerprependstretchspacer}
418
56eee37f 419\func{wxSizerItem*}{PrependStretchSpacer}{\param{int }{prop = 1}}
749bb9f1
DS
420
421Prepends stretchable space to the sizer. More readable way of calling
422\helpref{Prepend}{wxsizerprepend}(0, 0, prop).
423
424
f6bcfd97
BP
425\membersection{wxSizer::RecalcSizes}\label{wxsizerrecalcsizes}
426
427\func{void}{RecalcSizes}{\void}
428
429This method is abstract and has to be overwritten by any derived class.
430Here, the sizer will do the actual calculation of its children's positions
431and sizes.
432
02c6137e 433
9c884972
RR
434\membersection{wxSizer::Remove}\label{wxsizerremove}
435
436\func{bool}{Remove}{\param{wxWindow* }{window}}
437
438\func{bool}{Remove}{\param{wxSizer* }{sizer}}
439
12a3f227 440\func{bool}{Remove}{\param{size\_t }{index}}
9c884972 441
8258c3dd
VZ
442Removes a child from the sizer and destroys it if it is a sizer or a spacer,
443but not if it is a window (because windows are owned by their parent window,
444not the sizer). \arg{sizer} is the wxSizer to be removed,
445\arg{index} is the position of the child in the sizer, e.g. $0$ for the first item.
12a3f227 446This method does not cause any layout or resizing to take place, call
00976fe5
RL
447\helpref{wxSizer::Layout}{wxsizerlayout} to update the layout "on screen" after removing a
448child from the sizer.
449
8258c3dd
VZ
450{\bf NB:} The method taking a wxWindow* parameter is deprecated as it does not
451destroy the window as would usually be expected from Remove. You should use
452\helpref{wxSizer::Detach}{wxsizerdetach} in new code instead. There is
453currently no wxSizer method that will both detach and destroy a wxWindow item.
9c884972 454
cc81d32f 455Returns true if the child item was found and removed, false otherwise.
8fe05782 456
02c6137e 457
eae0338f
RR
458\membersection{wxSizer::Replace}\label{wxsizerreplace}
459
460\func{bool}{Replace}{\param{wxWindow* }{oldwin}, \param{wxWindow* }{newwin}, \param{bool }{recursive = false}}
461
462\func{bool}{Replace}{\param{wxSizer* }{oldsz}, \param{wxSizer* }{newsz}, \param{bool }{recursive = false}}
463
464\func{bool}{Remove}{\param{size\_t }{oldindex}, \param{wxSizerItem* }{newitem}}
465
466Detaches the given \arg{oldwin}, \arg{oldsz} child from the sizer and
467replaces it with the given window, sizer, or wxSizerItem.
468
469The detached child is removed {\bf only} if it is a sizer or a spacer
470(because windows are owned by their parent window, not the sizer).
471
472Use parameter \arg{recursive} to search the given element recursively in subsizers.
473
474
475This method does not cause any layout or resizing to take place, call
476\helpref{wxSizer::Layout}{wxsizerlayout} to update the layout "on screen" after replacing a
477child from the sizer.
478
479Returns true if the child item was found and removed, false otherwise.
480
481
8fe05782
VZ
482\membersection{wxSizer::SetDimension}\label{wxsizersetdimension}
483
484\func{void}{SetDimension}{\param{int }{x}, \param{int }{y}, \param{int }{width}, \param{int }{height}}
485
9c884972 486Call this to force the sizer to take the given dimension and thus force the items owned
2edb0bde 487by the sizer to resize themselves according to the rules defined by the parameter in the
f6bcfd97 488\helpref{Add}{wxsizeradd} and \helpref{Prepend}{wxsizerprepend} methods.
8fe05782 489
02c6137e 490
f6bcfd97 491\membersection{wxSizer::SetMinSize}\label{wxsizersetminsize}
8fe05782 492
f6bcfd97 493\func{void}{SetMinSize}{\param{int }{width}, \param{int }{height}}
8fe05782 494
fbfb8bcc 495\func{void}{SetMinSize}{\param{const wxSize\& }{size}}
8fe05782 496
f6bcfd97
BP
497Call this to give the sizer a minimal size. Normally, the sizer will calculate its
498minimal size based purely on how much space its children need. After calling this
499method \helpref{GetMinSize}{wxsizergetminsize} will return either the minimal size
500as requested by its children or the minimal size set here, depending on which is
501bigger.
8fe05782 502
02c6137e 503
f6bcfd97 504\membersection{wxSizer::SetItemMinSize}\label{wxsizersetitemminsize}
8fe05782 505
f6bcfd97 506\func{void}{SetItemMinSize}{\param{wxWindow* }{window}, \param{int}{ width}, \param{int}{ height}}
8fe05782 507
f6bcfd97 508\func{void}{SetItemMinSize}{\param{wxSizer* }{sizer}, \param{int}{ width}, \param{int}{ height}}
8fe05782 509
12a3f227 510\func{void}{SetItemMinSize}{\param{size\_t }{index}, \param{int}{ width}, \param{int}{ height}}
8fe05782 511
f6bcfd97
BP
512Set an item's minimum size by window, sizer, or position. The item will be found recursively
513in the sizer's descendants. This function enables an application to set the size of an item
514after initial creation.
8fe05782 515
02c6137e 516
8fe05782
VZ
517\membersection{wxSizer::SetSizeHints}\label{wxsizersetsizehints}
518
519\func{void}{SetSizeHints}{\param{wxWindow* }{window}}
520
fd52f255
RR
521This method first calls \helpref{wxSizer::Fit}{wxsizerfit} and then
522\helpref{SetSizeHints}{wxtoplevelwindowsetsizehints} on the {\it window}
523passed to it. This only makes sense when {\it window} is actually a
524\helpref{wxTopLevelWindow}{wxtoplevelwindow} such as a wxFrame or a
525wxDialog, since SetSizeHints only has any effect in these classes.
526It does nothing in normal windows or controls.
566d84a7 527
702a26fd
VZ
528This method is implicitly used by \helpref{wxWindow::SetSizerAndFit}{wxwindowsetsizerandfit}
529which is commonly invoked in the constructor of a toplevel window itself (see
530the sample in the description of \helpref{wxBoxSizer}{wxboxsizer}) if the
fd52f255 531toplevel window is resizable.
02c6137e 532
702a26fd 533
566d84a7
RL
534\membersection{wxSizer::SetVirtualSizeHints}\label{wxsizersetvirtualsizehints}
535
536\func{void}{SetVirtualSizeHints}{\param{wxWindow* }{window}}
537
e3950b18 538Tell the sizer to set the minimal size of the \arg{window} virtual area to match the sizer's
2b5f62a0 539minimal size. For windows with managed scrollbars this will set them appropriately.
566d84a7
RL
540
541\wxheading{See also}
542
543\helpref{wxScrolledWindow::SetScrollbars}{wxscrolledwindowsetscrollbars}
7e9a386e 544
02c6137e 545
2b5f62a0
VZ
546\membersection{wxSizer::Show}\label{wxsizershow}
547
8b2bac62 548\func{bool}{Show}{\param{wxWindow* }{window}, \param{bool }{show = true}, \param{bool }{recursive = false}}
2b5f62a0 549
8b2bac62 550\func{bool}{Show}{\param{wxSizer* }{sizer}, \param{bool }{show = true}, \param{bool }{recursive = false}}
2b5f62a0 551
8b2bac62 552\func{bool}{Show}{\param{size\_t }{index}, \param{bool }{show = true}}
12a3f227 553
e3950b18
VZ
554Shows or hides the \arg{window}, \arg{sizer}, or item at \arg{index}.
555To make a sizer item disappear or reappear, use Show() followed by \helpref{Layout()}{wxsizerlayout}.
556Use parameter \arg{recursive} to show or hide elements found in subsizers.
8b2bac62
WS
557
558Returns true if the child item was found, false otherwise.
2b5f62a0 559
e3950b18
VZ
560\wxheading{See also}
561
562\helpref{wxSizer::Hide}{wxsizerhide},\rtfsp
563\helpref{wxSizer::IsShown}{wxsizerisshown}
0497e172 564
2a3c8b65
RN
565
566
567
568\section{\class{wxSizerFlags}}\label{wxsizerflags}
569
62637495
VZ
570Normally, when you add an item to a sizer via
571\helpref{wxSizer::Add}{wxsizeradd}, you have to specify a lot of flags and
572parameters which can be unwieldy. This is where wxSizerFlags comes in: it
573allows you to specify all parameters using the named methods instead. For
574example, instead of
40210d8a 575
62637495 576\begin{verbatim}
58611b5a 577 sizer->Add(ctrl, 0, wxEXPAND | wxALL, 10);
62637495 578\end{verbatim}
2a3c8b65 579
62637495 580you can now write
2a3c8b65 581
62637495
VZ
582\begin{verbatim}
583 sizer->Add(ctrl, wxSizerFlags().Expand().Border(10));
584\end{verbatim}
585
586This is more readable and also allows you to create wxSizerFlags objects which
587can be reused for several sizer items.
588\begin{verbatim}
589 wxSizerFlags flagsExpand(1);
590 flagsExpand.Expand().Border(10);
591
592 sizer->Add(ctrl1, flagsExpand);
593 sizer->Add(ctrl2, flagsExpand);
594\end{verbatim}
595
596Note that by specification, all methods of wxSizerFlags return the wxSizerFlags
597object itself to allowing chaining multiple methods calls like in the examples
598above.
2a3c8b65 599
991ad6cd
VZ
600\wxheading{See also}
601
602\helpref{wxSizer}{wxsizer}
603
604\wxheading{Derived from}
605
606No base class
607
608\wxheading{Include files}
609
610<wx/sizer.h>
611
a7af285d
VZ
612\wxheading{Library}
613
614\helpref{wxCore}{librarieslist}
615
991ad6cd 616\latexignore{\rtfignore{\wxheading{Members}}}
f2fe4f67 617
9a75ba66 618\membersection{wxSizerFlags::wxSizerFlags}\label{wxsizerflagsctor}
2a3c8b65
RN
619
620\func{}{wxSizerFlags}{\param{int }{proportion = 0}}
621
2be7beda 622Creates the wxSizer with the proportion specified by \arg{proportion}.
2a3c8b65
RN
623
624
f2fe4f67 625\membersection{wxSizerFlags::Align}\label{wxsizerflagsalign}
2a3c8b65
RN
626
627\func{wxSizerFlags\& }{Align}{\param{int }{align = 0}}
628
2be7beda 629Sets the alignment of this wxSizerFlags to \arg{align}.
2a3c8b65
RN
630
631Note that if this method is not called, the wxSizerFlags has no specified alignment.
632
e72ac082
VZ
633\wxheading{See also}
634
ccee328e 635\helpref{Top}{wxsizerflagstop},\\
e72ac082
VZ
636\helpref{Left}{wxsizerflagsleft},\\
637\helpref{Right}{wxsizerflagsright},\\
ccee328e 638\helpref{Bottom}{wxsizerflagsbottom},\\
e72ac082
VZ
639\helpref{Centre}{wxsizerflagscentre}
640
2a3c8b65 641
f2fe4f67 642\membersection{wxSizerFlags::Border}\label{wxsizerflagsborder}
2a3c8b65
RN
643
644\func{wxSizerFlags\& }{Border}{\param{int }{direction}, \param{int }{borderinpixels}}
645
2a3c8b65
RN
646\func{wxSizerFlags\& }{Border}{\param{int }{direction = wxALL}}
647
2be7beda
VZ
648Sets the wxSizerFlags to have a border of a number of pixels specified by
649\arg{borderinpixels} with the directions specified by \arg{direction}.
650
651In the overloaded version without \arg{borderinpixels} parameter, the border of
652default size, as returned by \helpref{GetDefaultBorder}{wxsizerflagsgetdefaultborder},
653is used.
2a3c8b65
RN
654
655
ccee328e
VZ
656\membersection{wxSizerFlags::Bottom}\label{wxsizerflagsbottom}
657
658\func{wxSizerFlags\& }{Bottom}{\void}
659
660Aligns the object to the bottom, shortcut for \texttt{Align(wxALIGN\_BOTTOM)}
661
662\wxheading{See also}
663
664\helpref{Align}{wxsizerflagsalign}
665
666
f2fe4f67 667\membersection{wxSizerFlags::Center}\label{wxsizerflagscenter}
2a3c8b65
RN
668
669\func{wxSizerFlags\& }{Center}{\void}
670
671Sets the object of the wxSizerFlags to center itself in the area it is given.
672
673
f2fe4f67 674\membersection{wxSizerFlags::Centre}\label{wxsizerflagscentre}
2a3c8b65
RN
675
676\func{wxSizerFlags\& }{Centre}{\void}
677
678\helpref{wxSizerFlags::Center}{wxsizerflagscenter} for people with the other dialect of english.
679
680
25eb10d2
VZ
681\membersection{wxSizerFlags::DoubleBorder}\label{wxsizerflagsdoubleborder}
682
683\func{wxSizerFlags\& }{DoubleBorder}{\param{int }{direction = wxALL}}
684
685Sets the border in the given \arg{direction} having twice the default border
686size.
687
688
689\membersection{wxSizerFlags::DoubleHorzBorder}\label{wxsizerflagsdoublehorzborder}
690
691\func{wxSizerFlags\& }{DoubleHorzBorder}{\void}
692
693Sets the border in left and right directions having twice the default border
694size.
695
696
f2fe4f67 697\membersection{wxSizerFlags::Expand}\label{wxsizerflagsexpand}
2a3c8b65 698
0f353563 699\func{wxSizerFlags\& }{Expand}{\void}
2a3c8b65
RN
700
701Sets the object of the wxSizerFlags to expand to fill as much area as it can.
702
703
2be7beda
VZ
704\membersection{wxSizerFlags::GetDefaultBorder}\label{wxsizerflagsgetdefaultborder}
705
706\func{static int}{GetDefaultBorder}{\void}
707
708Returns the border used by default in \helpref{Border}{wxsizerflagsborder} method.
709
710
e72ac082
VZ
711\membersection{wxSizerFlags::Left}\label{wxsizerflagsleft}
712
713\func{wxSizerFlags\& }{Left}{\void}
714
715Aligns the object to the left, shortcut for \texttt{Align(wxALIGN\_LEFT)}
716
717\wxheading{See also}
718
719\helpref{Align}{wxsizerflagsalign}
720
721
d95527de
VZ
722\membersection{wxSizerFlags::FixedMinSize}\label{wxsizerflagsfixedminsize}
723
724\func{wxSizerFlags\& }{FixedMinSize}{\void}
725
726Set the \texttt{wxFIXED\_MINSIZE} flag which indicates that the initial size of
727the window should be also set as its minimal size.
728
729
f2fe4f67 730\membersection{wxSizerFlags::Proportion}\label{wxsizerflagsproportion}
2a3c8b65
RN
731
732\func{wxSizerFlags\& }{Proportion}{\param{int }{proportion = 0}}
733
2be7beda 734Sets the proportion of this wxSizerFlags to \arg{proportion}
2a3c8b65
RN
735
736
e72ac082
VZ
737\membersection{wxSizerFlags::Right}\label{wxsizerflagsright}
738
739\func{wxSizerFlags\& }{Right}{\void}
740
741Aligns the object to the right, shortcut for \texttt{Align(wxALIGN\_RIGHT)}
742
743\wxheading{See also}
744
745\helpref{Align}{wxsizerflagsalign}
2a3c8b65 746
25eb10d2 747
d95527de
VZ
748\membersection{wxSizerFlags::Shaped}\label{wxsizerflagsshaped}
749
750\func{wxSizerFlags\& }{Shaped}{\void}
751
752Set the \texttt{wx\_SHAPED} flag which indicates that the elements should
753always keep the fixed width to height ratio equal to its original value.
754
755
ccee328e
VZ
756\membersection{wxSizerFlags::Top}\label{wxsizerflagstop}
757
758\func{wxSizerFlags\& }{Top}{\void}
759
760Aligns the object to the top, shortcut for \texttt{Align(wxALIGN\_TOP)}
761
762\wxheading{See also}
763
764\helpref{Align}{wxsizerflagsalign}
765
766
25eb10d2
VZ
767\membersection{wxSizerFlags::TripleBorder}\label{wxsizerflagstriplebleborder}
768
769\func{wxSizerFlags\& }{TripleBorder}{\param{int }{direction = wxALL}}
770
771Sets the border in the given \arg{direction} having thrice the default border
772size.
773
774