]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: sizer.h | |
e54c96f1 | 3 | // Purpose: interface of wxStdDialogButtonSizer |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
526954c5 | 6 | // Licence: wxWindows licence |
23324ae1 FM |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
e725ba4f FM |
9 | |
10 | /** | |
788194ff | 11 | @class wxSizer |
e725ba4f | 12 | |
788194ff FM |
13 | wxSizer is the abstract base class used for laying out subwindows in a window. |
14 | You cannot use wxSizer directly; instead, you will have to use one of the sizer | |
15 | classes derived from it. Currently there are wxBoxSizer, wxStaticBoxSizer, | |
16 | wxGridSizer, wxFlexGridSizer, wxWrapSizer and wxGridBagSizer. | |
e725ba4f | 17 | |
788194ff FM |
18 | The layout algorithm used by sizers in wxWidgets is closely related to layout |
19 | in other GUI toolkits, such as Java's AWT, the GTK toolkit or the Qt toolkit. | |
20 | It is based upon the idea of the individual subwindows reporting their minimal | |
21 | required size and their ability to get stretched if the size of the parent window | |
22 | has changed. | |
e725ba4f | 23 | |
788194ff FM |
24 | This will most often mean that the programmer does not set the original size of |
25 | a dialog in the beginning, rather the dialog will be assigned a sizer and this | |
26 | sizer will be queried about the recommended size. The sizer in turn will query | |
27 | its children, which can be normal windows, empty space or other sizers, so that | |
28 | a hierarchy of sizers can be constructed. Note that wxSizer does not derive | |
29 | from wxWindow and thus does not interfere with tab ordering and requires very little | |
30 | resources compared to a real window on screen. | |
e725ba4f | 31 | |
788194ff FM |
32 | What makes sizers so well fitted for use in wxWidgets is the fact that every |
33 | control reports its own minimal size and the algorithm can handle differences in | |
34 | font sizes or different window (dialog item) sizes on different platforms without | |
35 | problems. If e.g. the standard font as well as the overall design of Motif widgets | |
36 | requires more space than on Windows, the initial dialog size will automatically | |
37 | be bigger on Motif than on Windows. | |
7c913512 | 38 | |
788194ff FM |
39 | Sizers may also be used to control the layout of custom drawn items on the |
40 | window. The wxSizer::Add(), wxSizer::Insert(), and wxSizer::Prepend() functions | |
41 | return a pointer to the newly added wxSizerItem. | |
42 | Just add empty space of the desired size and attributes, and then use the | |
43 | wxSizerItem::GetRect() method to determine where the drawing operations | |
44 | should take place. | |
7c913512 | 45 | |
788194ff FM |
46 | Please notice that sizers, like child windows, are owned by the library and |
47 | will be deleted by it which implies that they must be allocated on the heap. | |
48 | However if you create a sizer and do not add it to another sizer or | |
49 | window, the library wouldn't be able to delete such an orphan sizer and in | |
50 | this, and only this, case it should be deleted explicitly. | |
7c913512 | 51 | |
788194ff FM |
52 | @section wxsizer_flags wxSizer flags |
53 | ||
54 | The "flag" argument accepted by wxSizeItem constructors and other | |
55 | functions, e.g. wxSizer::Add(), is OR-combination of the following flags. | |
56 | Two main behaviours are defined using these flags. One is the border around | |
57 | a window: the border parameter determines the border width whereas the | |
58 | flags given here determine which side(s) of the item that the border will | |
59 | be added. The other flags determine how the sizer item behaves when the | |
60 | space allotted to the sizer changes, and is somewhat dependent on the | |
61 | specific kind of sizer used. | |
62 | ||
63 | @beginDefList | |
64 | @itemdef{wxTOP<br> | |
65 | wxBOTTOM<br> | |
66 | wxLEFT<br> | |
67 | wxRIGHT<br> | |
68 | wxALL, | |
69 | These flags are used to specify which side(s) of the sizer item | |
70 | the border width will apply to.} | |
71 | @itemdef{wxEXPAND, | |
72 | The item will be expanded to fill the space assigned to the item.} | |
73 | @itemdef{wxSHAPED, | |
74 | The item will be expanded as much as possible while also | |
75 | maintaining its aspect ratio.} | |
76 | @itemdef{wxFIXED_MINSIZE, | |
77 | Normally wxSizers will use GetAdjustedBestSize() to determine what | |
78 | the minimal size of window items should be, and will use that size | |
79 | to calculate the layout. This allows layouts to adjust when an | |
80 | item changes and its best size becomes different. If you would | |
81 | rather have a window item stay the size it started with then use | |
82 | @c wxFIXED_MINSIZE.} | |
83 | @itemdef{wxRESERVE_SPACE_EVEN_IF_HIDDEN, | |
84 | Normally wxSizers don't allocate space for hidden windows or other | |
4c51a665 | 85 | items. This flag overrides this behaviour so that sufficient space |
788194ff FM |
86 | is allocated for the window even if it isn't visible. This makes |
87 | it possible to dynamically show and hide controls without resizing | |
88 | parent dialog, for example. (Available since 2.8.8.)} | |
89 | @itemdef{wxALIGN_CENTER<br> | |
90 | wxALIGN_CENTRE<br> | |
91 | wxALIGN_LEFT<br> | |
92 | wxALIGN_RIGHT<br> | |
93 | wxALIGN_TOP<br> | |
94 | wxALIGN_BOTTOM<br> | |
95 | wxALIGN_CENTER_VERTICAL<br> | |
96 | wxALIGN_CENTRE_VERTICAL<br> | |
97 | wxALIGN_CENTER_HORIZONTAL<br> | |
98 | wxALIGN_CENTRE_HORIZONTAL, | |
99 | The @c wxALIGN_* flags allow you to specify the alignment of the item | |
100 | within the space allotted to it by the sizer, adjusted for the | |
101 | border if any.} | |
102 | @endDefList | |
7c913512 | 103 | |
23324ae1 | 104 | @library{wxcore} |
4b962ba1 | 105 | @category{winlayout} |
7c913512 | 106 | |
788194ff | 107 | @see @ref overview_sizer |
23324ae1 | 108 | */ |
788194ff | 109 | class wxSizer : public wxObject |
23324ae1 FM |
110 | { |
111 | public: | |
112 | /** | |
788194ff FM |
113 | The constructor. |
114 | Note that wxSizer is an abstract base class and may not be instantiated. | |
23324ae1 | 115 | */ |
788194ff | 116 | wxSizer(); |
23324ae1 FM |
117 | |
118 | /** | |
788194ff | 119 | The destructor. |
23324ae1 | 120 | */ |
788194ff | 121 | virtual ~wxSizer(); |
23324ae1 FM |
122 | |
123 | /** | |
788194ff | 124 | Appends a child to the sizer. |
23324ae1 | 125 | |
788194ff FM |
126 | wxSizer itself is an abstract class, but the parameters are equivalent |
127 | in the derived classes that you will instantiate to use it so they are | |
128 | described here: | |
4876436a | 129 | |
788194ff FM |
130 | @param window |
131 | The window to be added to the sizer. Its initial size (either set | |
132 | explicitly by the user or calculated internally when using | |
133 | wxDefaultSize) is interpreted as the minimal and in many cases also | |
134 | the initial size. | |
135 | @param flags | |
136 | A wxSizerFlags object that enables you to specify most of the above | |
137 | parameters more conveniently. | |
23324ae1 | 138 | */ |
788194ff | 139 | wxSizerItem* Add(wxWindow* window, const wxSizerFlags& flags); |
23324ae1 FM |
140 | |
141 | /** | |
788194ff | 142 | Appends a child to the sizer. |
23324ae1 | 143 | |
788194ff FM |
144 | wxSizer itself is an abstract class, but the parameters are equivalent |
145 | in the derived classes that you will instantiate to use it so they are | |
146 | described here: | |
4876436a | 147 | |
788194ff FM |
148 | @param window |
149 | The window to be added to the sizer. Its initial size (either set | |
150 | explicitly by the user or calculated internally when using | |
151 | wxDefaultSize) is interpreted as the minimal and in many cases also | |
152 | the initial size. | |
153 | @param proportion | |
154 | Although the meaning of this parameter is undefined in wxSizer, it | |
155 | is used in wxBoxSizer to indicate if a child of a sizer can change | |
156 | its size in the main orientation of the wxBoxSizer - where 0 stands | |
157 | for not changeable and a value of more than zero is interpreted | |
158 | relative to the value of other children of the same wxBoxSizer. For | |
159 | example, you might have a horizontal wxBoxSizer with three | |
160 | children, two of which are supposed to change their size with the | |
161 | sizer. Then the two stretchable windows would get a value of 1 each | |
162 | to make them grow and shrink equally with the sizer's horizontal | |
163 | dimension. | |
164 | @param flag | |
4c51a665 | 165 | OR-combination of flags affecting sizer's behaviour. See |
788194ff FM |
166 | @ref wxsizer_flags "wxSizer flags list" for details. |
167 | @param border | |
168 | Determines the border width, if the flag parameter is set to | |
169 | include any border flag. | |
170 | @param userData | |
171 | Allows an extra object to be attached to the sizer item, for use in | |
172 | derived classes when sizing information is more complex than the | |
173 | proportion and flag will allow for. | |
23324ae1 | 174 | */ |
788194ff FM |
175 | wxSizerItem* Add(wxWindow* window, |
176 | int proportion = 0, | |
177 | int flag = 0, | |
178 | int border = 0, | |
179 | wxObject* userData = NULL); | |
7c913512 | 180 | |
23324ae1 | 181 | /** |
788194ff | 182 | Appends a child to the sizer. |
e725ba4f | 183 | |
788194ff FM |
184 | wxSizer itself is an abstract class, but the parameters are equivalent |
185 | in the derived classes that you will instantiate to use it so they are | |
186 | described here: | |
e725ba4f | 187 | |
788194ff FM |
188 | @param sizer |
189 | The (child-)sizer to be added to the sizer. This allows placing a | |
190 | child sizer in a sizer and thus to create hierarchies of sizers | |
191 | (typically a vertical box as the top sizer and several horizontal | |
192 | boxes on the level beneath). | |
193 | @param flags | |
194 | A wxSizerFlags object that enables you to specify most of the above | |
195 | parameters more conveniently. | |
e725ba4f | 196 | */ |
788194ff | 197 | wxSizerItem* Add(wxSizer* sizer, const wxSizerFlags& flags); |
23324ae1 FM |
198 | |
199 | /** | |
788194ff | 200 | Appends a child to the sizer. |
23324ae1 | 201 | |
788194ff FM |
202 | wxSizer itself is an abstract class, but the parameters are equivalent |
203 | in the derived classes that you will instantiate to use it so they are | |
204 | described here: | |
23324ae1 | 205 | |
788194ff FM |
206 | @param sizer |
207 | The (child-)sizer to be added to the sizer. This allows placing a | |
208 | child sizer in a sizer and thus to create hierarchies of sizers | |
209 | (typically a vertical box as the top sizer and several horizontal | |
210 | boxes on the level beneath). | |
211 | @param proportion | |
212 | Although the meaning of this parameter is undefined in wxSizer, it | |
213 | is used in wxBoxSizer to indicate if a child of a sizer can change | |
214 | its size in the main orientation of the wxBoxSizer - where 0 stands | |
215 | for not changeable and a value of more than zero is interpreted | |
216 | relative to the value of other children of the same wxBoxSizer. For | |
217 | example, you might have a horizontal wxBoxSizer with three | |
218 | children, two of which are supposed to change their size with the | |
219 | sizer. Then the two stretchable windows would get a value of 1 each | |
220 | to make them grow and shrink equally with the sizer's horizontal | |
221 | dimension. | |
222 | @param flag | |
4c51a665 | 223 | OR-combination of flags affecting sizer's behaviour. See |
788194ff FM |
224 | @ref wxsizer_flags "wxSizer flags list" for details. |
225 | @param border | |
226 | Determines the border width, if the flag parameter is set to | |
227 | include any border flag. | |
228 | @param userData | |
229 | Allows an extra object to be attached to the sizer item, for use in | |
230 | derived classes when sizing information is more complex than the | |
231 | proportion and flag will allow for. | |
23324ae1 | 232 | */ |
788194ff FM |
233 | wxSizerItem* Add(wxSizer* sizer, |
234 | int proportion = 0, | |
235 | int flag = 0, | |
236 | int border = 0, | |
237 | wxObject* userData = NULL); | |
23324ae1 FM |
238 | |
239 | /** | |
788194ff FM |
240 | Appends a spacer child to the sizer. |
241 | ||
242 | wxSizer itself is an abstract class, but the parameters are equivalent | |
243 | in the derived classes that you will instantiate to use it so they are | |
244 | described here. | |
245 | ||
246 | @a width and @a height specify the dimension of a spacer to be added to | |
247 | the sizer. Adding spacers to sizers gives more flexibility in the | |
248 | design of dialogs; imagine for example a horizontal box with two | |
249 | buttons at the bottom of a dialog: you might want to insert a space | |
250 | between the two buttons and make that space stretchable using the | |
251 | proportion flag and the result will be that the left button will be | |
252 | aligned with the left side of the dialog and the right button with the | |
253 | right side - the space in between will shrink and grow with the dialog. | |
254 | ||
255 | @param width | |
256 | Width of the spacer. | |
257 | @param height | |
258 | Height of the spacer. | |
259 | @param proportion | |
260 | Although the meaning of this parameter is undefined in wxSizer, it | |
261 | is used in wxBoxSizer to indicate if a child of a sizer can change | |
262 | its size in the main orientation of the wxBoxSizer - where 0 stands | |
263 | for not changeable and a value of more than zero is interpreted | |
264 | relative to the value of other children of the same wxBoxSizer. For | |
265 | example, you might have a horizontal wxBoxSizer with three | |
266 | children, two of which are supposed to change their size with the | |
267 | sizer. Then the two stretchable windows would get a value of 1 each | |
268 | to make them grow and shrink equally with the sizer's horizontal | |
269 | dimension. | |
270 | @param flag | |
4c51a665 | 271 | OR-combination of flags affecting sizer's behaviour. See |
788194ff FM |
272 | @ref wxsizer_flags "wxSizer flags list" for details. |
273 | @param border | |
274 | Determines the border width, if the flag parameter is set to | |
275 | include any border flag. | |
276 | @param userData | |
277 | Allows an extra object to be attached to the sizer item, for use in | |
278 | derived classes when sizing information is more complex than the | |
279 | proportion and flag will allow for. | |
23324ae1 | 280 | */ |
788194ff FM |
281 | wxSizerItem* Add(int width, int height, |
282 | int proportion = 0, | |
283 | int flag = 0, | |
284 | int border = 0, | |
285 | wxObject* userData = NULL); | |
23324ae1 | 286 | |
7106fc46 RD |
287 | wxSizerItem* Add(wxSizerItem* item); |
288 | ||
23324ae1 | 289 | /** |
1a2df6a7 VZ |
290 | This base function adds non-stretchable space to both the horizontal |
291 | and vertical orientation of the sizer. | |
788194ff FM |
292 | More readable way of calling: |
293 | @code | |
294 | wxSizer::Add(size, size, 0). | |
295 | @endcode | |
1a2df6a7 | 296 | @see wxBoxSizer::AddSpacer() |
23324ae1 | 297 | */ |
1a2df6a7 | 298 | virtual wxSizerItem *AddSpacer(int size); |
23324ae1 FM |
299 | |
300 | /** | |
788194ff FM |
301 | Adds stretchable space to the sizer. |
302 | More readable way of calling: | |
303 | @code | |
304 | wxSizer::Add(0, 0, prop). | |
305 | @endcode | |
23324ae1 | 306 | */ |
788194ff | 307 | wxSizerItem* AddStretchSpacer(int prop = 1); |
23324ae1 FM |
308 | |
309 | /** | |
788194ff FM |
310 | This method is abstract and has to be overwritten by any derived class. |
311 | Here, the sizer will do the actual calculation of its children's minimal sizes. | |
23324ae1 | 312 | */ |
788194ff | 313 | virtual wxSize CalcMin() = 0; |
23324ae1 FM |
314 | |
315 | /** | |
788194ff FM |
316 | Detaches all children from the sizer. |
317 | If @a delete_windows is @true then child windows will also be deleted. | |
23324ae1 | 318 | */ |
788194ff | 319 | virtual void Clear(bool delete_windows = false); |
23324ae1 | 320 | |
7e927914 | 321 | /** |
788194ff FM |
322 | Computes client area size for @a window so that it matches the sizer's |
323 | minimal size. Unlike GetMinSize(), this method accounts for other | |
324 | constraints imposed on @e window, namely display's size (returned size | |
325 | will never be too large for the display) and maximum window size if | |
326 | previously set by wxWindow::SetMaxSize(). | |
7e927914 | 327 | |
788194ff FM |
328 | The returned value is suitable for passing to wxWindow::SetClientSize() or |
329 | wxWindow::SetMinClientSize(). | |
7e927914 | 330 | |
788194ff | 331 | @since 2.8.8 |
7e927914 | 332 | |
788194ff | 333 | @see ComputeFittingWindowSize(), Fit() |
23324ae1 | 334 | */ |
788194ff | 335 | wxSize ComputeFittingClientSize(wxWindow* window); |
23324ae1 FM |
336 | |
337 | /** | |
788194ff FM |
338 | Like ComputeFittingClientSize(), but converts the result into window |
339 | size. The returned value is suitable for passing to wxWindow::SetSize() | |
340 | or wxWindow::SetMinSize(). | |
23324ae1 | 341 | |
788194ff | 342 | @since 2.8.8 |
23324ae1 | 343 | |
788194ff | 344 | @see ComputeFittingClientSize(), Fit() |
23324ae1 | 345 | */ |
788194ff | 346 | wxSize ComputeFittingWindowSize(wxWindow* window); |
23324ae1 FM |
347 | |
348 | /** | |
788194ff | 349 | Detach the child @a window from the sizer without destroying it. |
23324ae1 | 350 | |
788194ff FM |
351 | This method does not cause any layout or resizing to take place, call Layout() |
352 | to update the layout "on screen" after detaching a child from the sizer. | |
23324ae1 | 353 | |
788194ff | 354 | Returns @true if the child item was found and detached, @false otherwise. |
23324ae1 | 355 | |
788194ff | 356 | @see Remove() |
23324ae1 | 357 | */ |
788194ff | 358 | virtual bool Detach(wxWindow* window); |
23324ae1 FM |
359 | |
360 | /** | |
788194ff FM |
361 | Detach the child @a sizer from the sizer without destroying it. |
362 | ||
363 | This method does not cause any layout or resizing to take place, call Layout() | |
364 | to update the layout "on screen" after detaching a child from the sizer. | |
365 | ||
366 | Returns @true if the child item was found and detached, @false otherwise. | |
367 | ||
368 | @see Remove() | |
23324ae1 | 369 | */ |
788194ff | 370 | virtual bool Detach(wxSizer* sizer); |
23324ae1 FM |
371 | |
372 | /** | |
788194ff | 373 | Detach a item at position @a index from the sizer without destroying it. |
01195a1b | 374 | |
788194ff FM |
375 | This method does not cause any layout or resizing to take place, call Layout() |
376 | to update the layout "on screen" after detaching a child from the sizer. | |
377 | Returns @true if the child item was found and detached, @false otherwise. | |
01195a1b | 378 | |
788194ff | 379 | @see Remove() |
23324ae1 | 380 | */ |
788194ff | 381 | virtual bool Detach(int index); |
23324ae1 FM |
382 | |
383 | /** | |
788194ff FM |
384 | Tell the sizer to resize the @a window so that its client area matches the |
385 | sizer's minimal size (ComputeFittingClientSize() is called to determine it). | |
386 | This is commonly done in the constructor of the window itself, see sample | |
387 | in the description of wxBoxSizer. | |
388 | ||
389 | @return The new window size. | |
390 | ||
391 | @see ComputeFittingClientSize(), ComputeFittingWindowSize() | |
23324ae1 | 392 | */ |
788194ff | 393 | wxSize Fit(wxWindow* window); |
23324ae1 FM |
394 | |
395 | /** | |
788194ff FM |
396 | Tell the sizer to resize the virtual size of the @a window to match the sizer's |
397 | minimal size. This will not alter the on screen size of the window, but may | |
398 | cause the addition/removal/alteration of scrollbars required to view the virtual | |
399 | area in windows which manage it. | |
400 | ||
401 | @see wxScrolled::SetScrollbars(), SetVirtualSizeHints() | |
23324ae1 | 402 | */ |
788194ff | 403 | void FitInside(wxWindow* window); |
23324ae1 | 404 | |
7106fc46 RD |
405 | /** |
406 | Inform sizer about the first direction that has been decided (by | |
f090e4ef | 407 | parent item). Returns true if it made use of the information (and |
7106fc46 RD |
408 | recalculated min size). |
409 | */ | |
410 | virtual bool InformFirstDirection(int direction, int size, int availableOtherDir); | |
411 | ||
412 | ||
788194ff | 413 | //@{ |
23324ae1 | 414 | /** |
788194ff FM |
415 | Returns the list of the items in this sizer. |
416 | ||
417 | The elements of type-safe wxList @c wxSizerItemList are pointers to | |
418 | objects of type wxSizerItem. | |
23324ae1 | 419 | */ |
788194ff FM |
420 | wxSizerItemList& GetChildren(); |
421 | const wxSizerItemList& GetChildren() const; | |
422 | //@} | |
23324ae1 FM |
423 | |
424 | /** | |
788194ff | 425 | Returns the window this sizer is used in or @NULL if none. |
23324ae1 | 426 | */ |
788194ff | 427 | wxWindow* GetContainingWindow() const; |
23324ae1 FM |
428 | |
429 | /** | |
788194ff FM |
430 | Returns the number of items in the sizer. |
431 | ||
432 | If you just need to test whether the sizer is empty or not you can also | |
433 | use IsEmpty() function. | |
23324ae1 | 434 | */ |
788194ff | 435 | size_t GetItemCount() const; |
23324ae1 FM |
436 | |
437 | /** | |
788194ff FM |
438 | Finds wxSizerItem which holds the given @a window. |
439 | Use parameter @a recursive to search in subsizers too. | |
440 | Returns pointer to item or @NULL. | |
23324ae1 | 441 | */ |
788194ff | 442 | wxSizerItem* GetItem(wxWindow* window, bool recursive = false); |
23324ae1 FM |
443 | |
444 | /** | |
788194ff FM |
445 | Finds wxSizerItem which holds the given @a sizer. |
446 | Use parameter @a recursive to search in subsizers too. | |
447 | Returns pointer to item or @NULL. | |
23324ae1 | 448 | */ |
788194ff FM |
449 | |
450 | wxSizerItem* GetItem(wxSizer* sizer, bool recursive = false); | |
23324ae1 FM |
451 | |
452 | /** | |
788194ff FM |
453 | Finds wxSizerItem which is located in the sizer at position @a index. |
454 | Use parameter @a recursive to search in subsizers too. | |
455 | Returns pointer to item or @NULL. | |
23324ae1 | 456 | */ |
788194ff | 457 | wxSizerItem* GetItem(size_t index); |
23324ae1 FM |
458 | |
459 | /** | |
788194ff FM |
460 | Finds item of the sizer which has the given @e id. |
461 | This @a id is not the window id but the id of the wxSizerItem itself. | |
462 | This is mainly useful for retrieving the sizers created from XRC resources. | |
463 | Use parameter @a recursive to search in subsizers too. | |
464 | Returns pointer to item or @NULL. | |
23324ae1 | 465 | */ |
788194ff | 466 | wxSizerItem* GetItemById(int id, bool recursive = false); |
23324ae1 | 467 | |
23324ae1 | 468 | /** |
788194ff | 469 | Returns the minimal size of the sizer. |
23324ae1 | 470 | |
788194ff FM |
471 | This is either the combined minimal size of all the children and their |
472 | borders or the minimal size set by SetMinSize(), depending on which is bigger. | |
473 | Note that the returned value is client size, not window size. | |
474 | In particular, if you use the value to set toplevel window's minimal or | |
475 | actual size, use wxWindow::SetMinClientSize() or wxWindow::SetClientSize(), | |
476 | not wxWindow::SetMinSize() or wxWindow::SetSize(). | |
23324ae1 | 477 | */ |
788194ff | 478 | wxSize GetMinSize(); |
23324ae1 FM |
479 | |
480 | /** | |
788194ff | 481 | Returns the current position of the sizer. |
23324ae1 | 482 | */ |
788194ff | 483 | wxPoint GetPosition() const; |
23324ae1 FM |
484 | |
485 | /** | |
788194ff | 486 | Returns the current size of the sizer. |
23324ae1 | 487 | */ |
788194ff | 488 | wxSize GetSize() const; |
23324ae1 FM |
489 | |
490 | /** | |
788194ff | 491 | Hides the child @a window. |
7c913512 | 492 | |
788194ff | 493 | To make a sizer item disappear, use Hide() followed by Layout(). |
7c913512 | 494 | |
788194ff FM |
495 | Use parameter @a recursive to hide elements found in subsizers. |
496 | Returns @true if the child item was found, @false otherwise. | |
7c913512 | 497 | |
788194ff FM |
498 | @see IsShown(), Show() |
499 | */ | |
500 | bool Hide(wxWindow* window, bool recursive = false); | |
7c913512 | 501 | |
788194ff FM |
502 | /** |
503 | Hides the child @a sizer. | |
7c913512 | 504 | |
788194ff | 505 | To make a sizer item disappear, use Hide() followed by Layout(). |
7c913512 | 506 | |
788194ff FM |
507 | Use parameter @a recursive to hide elements found in subsizers. |
508 | Returns @true if the child item was found, @false otherwise. | |
7c913512 | 509 | |
788194ff | 510 | @see IsShown(), Show() |
23324ae1 | 511 | */ |
788194ff | 512 | bool Hide(wxSizer* sizer, bool recursive = false); |
23324ae1 FM |
513 | |
514 | /** | |
788194ff | 515 | Hides the item at position @a index. |
30a56ea8 | 516 | |
788194ff | 517 | To make a sizer item disappear, use Hide() followed by Layout(). |
3c4f71cc | 518 | |
788194ff FM |
519 | Use parameter @a recursive to hide elements found in subsizers. |
520 | Returns @true if the child item was found, @false otherwise. | |
30a56ea8 | 521 | |
788194ff | 522 | @see IsShown(), Show() |
23324ae1 | 523 | */ |
788194ff | 524 | bool Hide(size_t index); |
23324ae1 | 525 | |
23324ae1 | 526 | /** |
788194ff FM |
527 | Insert a child into the sizer before any existing item at @a index. |
528 | ||
529 | See Add() for the meaning of the other parameters. | |
23324ae1 | 530 | */ |
788194ff FM |
531 | wxSizerItem* Insert(size_t index, wxWindow* window, |
532 | const wxSizerFlags& flags); | |
feaa1ecb VS |
533 | |
534 | /** | |
788194ff | 535 | Insert a child into the sizer before any existing item at @a index. |
feaa1ecb | 536 | |
788194ff | 537 | See Add() for the meaning of the other parameters. |
feaa1ecb | 538 | */ |
788194ff FM |
539 | wxSizerItem* Insert(size_t index, wxWindow* window, |
540 | int proportion = 0, | |
541 | int flag = 0, | |
542 | int border = 0, | |
543 | wxObject* userData = NULL); | |
23324ae1 FM |
544 | |
545 | /** | |
788194ff | 546 | Insert a child into the sizer before any existing item at @a index. |
3c4f71cc | 547 | |
788194ff | 548 | See Add() for the meaning of the other parameters. |
23324ae1 | 549 | */ |
788194ff FM |
550 | wxSizerItem* Insert(size_t index, wxSizer* sizer, |
551 | const wxSizerFlags& flags); | |
23324ae1 FM |
552 | |
553 | /** | |
788194ff | 554 | Insert a child into the sizer before any existing item at @a index. |
23324ae1 | 555 | |
788194ff | 556 | See Add() for the meaning of the other parameters. |
23324ae1 | 557 | */ |
788194ff FM |
558 | wxSizerItem* Insert(size_t index, wxSizer* sizer, |
559 | int proportion = 0, | |
560 | int flag = 0, | |
561 | int border = 0, | |
562 | wxObject* userData = NULL); | |
23324ae1 FM |
563 | |
564 | /** | |
788194ff FM |
565 | Insert a child into the sizer before any existing item at @a index. |
566 | ||
567 | See Add() for the meaning of the other parameters. | |
23324ae1 | 568 | */ |
788194ff FM |
569 | wxSizerItem* Insert(size_t index, int width, int height, |
570 | int proportion = 0, | |
571 | int flag = 0, | |
572 | int border = 0, | |
573 | wxObject* userData = NULL); | |
23324ae1 | 574 | |
7106fc46 RD |
575 | wxSizerItem* Insert(size_t index, wxSizerItem* item); |
576 | ||
23324ae1 | 577 | /** |
788194ff | 578 | Inserts non-stretchable space to the sizer. |
f81114dc | 579 | More readable way of calling wxSizer::Insert(index, size, size). |
23324ae1 | 580 | */ |
788194ff | 581 | wxSizerItem* InsertSpacer(size_t index, int size); |
23324ae1 FM |
582 | |
583 | /** | |
788194ff FM |
584 | Inserts stretchable space to the sizer. |
585 | More readable way of calling wxSizer::Insert(0, 0, prop). | |
23324ae1 | 586 | */ |
788194ff | 587 | wxSizerItem* InsertStretchSpacer(size_t index, int prop = 1); |
23324ae1 FM |
588 | |
589 | /** | |
788194ff FM |
590 | Return @true if the sizer has no elements. |
591 | ||
592 | @see GetItemCount() | |
593 | */ | |
594 | bool IsEmpty() const; | |
23324ae1 | 595 | |
01195a1b | 596 | /** |
788194ff | 597 | Returns @true if the @a window is shown. |
01195a1b | 598 | |
788194ff | 599 | @see Hide(), Show(), wxSizerItem::IsShown() |
01195a1b | 600 | */ |
788194ff | 601 | bool IsShown(wxWindow* window) const; |
01195a1b | 602 | |
23324ae1 | 603 | /** |
788194ff FM |
604 | Returns @true if the @a sizer is shown. |
605 | ||
606 | @see Hide(), Show(), wxSizerItem::IsShown() | |
23324ae1 | 607 | */ |
788194ff | 608 | bool IsShown(wxSizer* sizer) const; |
23324ae1 FM |
609 | |
610 | /** | |
788194ff | 611 | Returns @true if the item at @a index is shown. |
3c4f71cc | 612 | |
788194ff | 613 | @see Hide(), Show(), wxSizerItem::IsShown() |
23324ae1 | 614 | */ |
788194ff | 615 | bool IsShown(size_t index) const; |
23324ae1 FM |
616 | |
617 | /** | |
788194ff FM |
618 | Call this to force layout of the children anew, e.g. after having added a child |
619 | to or removed a child (window, other sizer or space) from the sizer while | |
620 | keeping the current dimension. | |
23324ae1 | 621 | */ |
788194ff | 622 | virtual void Layout(); |
23324ae1 FM |
623 | |
624 | /** | |
788194ff FM |
625 | Same as Add(), but prepends the items to the beginning of the |
626 | list of items (windows, subsizers or spaces) owned by this sizer. | |
23324ae1 | 627 | */ |
788194ff | 628 | wxSizerItem* Prepend(wxWindow* window, const wxSizerFlags& flags); |
23324ae1 FM |
629 | |
630 | /** | |
788194ff FM |
631 | Same as Add(), but prepends the items to the beginning of the |
632 | list of items (windows, subsizers or spaces) owned by this sizer. | |
23324ae1 | 633 | */ |
788194ff FM |
634 | wxSizerItem* Prepend(wxWindow* window, int proportion = 0, |
635 | int flag = 0, | |
636 | int border = 0, | |
637 | wxObject* userData = NULL); | |
23324ae1 FM |
638 | |
639 | /** | |
788194ff FM |
640 | Same as Add(), but prepends the items to the beginning of the |
641 | list of items (windows, subsizers or spaces) owned by this sizer. | |
23324ae1 | 642 | */ |
788194ff FM |
643 | wxSizerItem* Prepend(wxSizer* sizer, |
644 | const wxSizerFlags& flags); | |
23324ae1 FM |
645 | |
646 | /** | |
788194ff FM |
647 | Same as Add(), but prepends the items to the beginning of the |
648 | list of items (windows, subsizers or spaces) owned by this sizer. | |
23324ae1 | 649 | */ |
788194ff FM |
650 | wxSizerItem* Prepend(wxSizer* sizer, int proportion = 0, |
651 | int flag = 0, | |
652 | int border = 0, | |
653 | wxObject* userData = NULL); | |
23324ae1 | 654 | |
788194ff FM |
655 | /** |
656 | Same as Add(), but prepends the items to the beginning of the | |
657 | list of items (windows, subsizers or spaces) owned by this sizer. | |
658 | */ | |
659 | wxSizerItem* Prepend(int width, int height, | |
660 | int proportion = 0, | |
661 | int flag = 0, | |
662 | int border = 0, | |
663 | wxObject* userData = NULL); | |
23324ae1 | 664 | |
7106fc46 RD |
665 | wxSizerItem* Prepend(wxSizerItem* item); |
666 | ||
788194ff FM |
667 | /** |
668 | Prepends non-stretchable space to the sizer. | |
669 | More readable way of calling wxSizer::Prepend(size, size, 0). | |
670 | */ | |
671 | wxSizerItem* PrependSpacer(int size); | |
e54c96f1 | 672 | |
788194ff FM |
673 | /** |
674 | Prepends stretchable space to the sizer. | |
675 | More readable way of calling wxSizer::Prepend(0, 0, prop). | |
676 | */ | |
677 | wxSizerItem* PrependStretchSpacer(int prop = 1); | |
7c913512 | 678 | |
788194ff FM |
679 | /** |
680 | This method is abstract and has to be overwritten by any derived class. | |
681 | Here, the sizer will do the actual calculation of its children's | |
682 | positions and sizes. | |
683 | */ | |
684 | virtual void RecalcSizes() = 0; | |
7c913512 | 685 | |
788194ff FM |
686 | /** |
687 | Removes a child window from the sizer, but does @b not destroy it | |
688 | (because windows are owned by their parent window, not the sizer). | |
7c913512 | 689 | |
788194ff FM |
690 | @deprecated |
691 | The overload of this method taking a wxWindow* parameter | |
692 | is deprecated as it does not destroy the window as would usually be | |
693 | expected from Remove(). You should use Detach() in new code instead. | |
694 | There is currently no wxSizer method that will both detach and destroy | |
695 | a wxWindow item. | |
696 | ||
697 | @note This method does not cause any layout or resizing to take | |
698 | place, call Layout() to update the layout "on screen" after | |
699 | removing a child from the sizer. | |
700 | ||
701 | @return @true if the child item was found and removed, @false otherwise. | |
702 | */ | |
703 | virtual bool Remove(wxWindow* window); | |
7c913512 | 704 | |
23324ae1 | 705 | /** |
788194ff | 706 | Removes a sizer child from the sizer and destroys it. |
e725ba4f | 707 | |
788194ff FM |
708 | @note This method does not cause any layout or resizing to take |
709 | place, call Layout() to update the layout "on screen" after | |
710 | removing a child from the sizer. | |
e725ba4f | 711 | |
788194ff FM |
712 | @param sizer The wxSizer to be removed. |
713 | ||
714 | @return @true if the child item was found and removed, @false otherwise. | |
23324ae1 | 715 | */ |
788194ff | 716 | virtual bool Remove(wxSizer* sizer); |
23324ae1 FM |
717 | |
718 | /** | |
788194ff FM |
719 | Removes a child from the sizer and destroys it if it is a sizer or a |
720 | spacer, but not if it is a window (because windows are owned by their | |
721 | parent window, not the sizer). | |
67ef83eb | 722 | |
788194ff FM |
723 | @note This method does not cause any layout or resizing to take |
724 | place, call Layout() to update the layout "on screen" after | |
725 | removing a child from the sizer. | |
67ef83eb | 726 | |
788194ff FM |
727 | @param index |
728 | The position of the child in the sizer, e.g. 0 for the first item. | |
729 | ||
730 | @return @true if the child item was found and removed, @false otherwise. | |
23324ae1 | 731 | */ |
788194ff | 732 | virtual bool Remove(int index); |
23324ae1 FM |
733 | |
734 | /** | |
788194ff FM |
735 | Detaches the given @a oldwin from the sizer and replaces it with the |
736 | given @a newwin. The detached child window is @b not deleted (because | |
737 | windows are owned by their parent window, not the sizer). | |
67ef83eb | 738 | |
788194ff FM |
739 | Use parameter @a recursive to search the given element recursively in subsizers. |
740 | ||
741 | This method does not cause any layout or resizing to take place, | |
742 | call Layout() to update the layout "on screen" after replacing a | |
743 | child from the sizer. | |
744 | ||
745 | Returns @true if the child item was found and removed, @false otherwise. | |
23324ae1 | 746 | */ |
788194ff FM |
747 | virtual bool Replace(wxWindow* oldwin, wxWindow* newwin, |
748 | bool recursive = false); | |
23324ae1 FM |
749 | |
750 | /** | |
788194ff FM |
751 | Detaches the given @a oldsz from the sizer and replaces it with the |
752 | given @a newsz. The detached child sizer is deleted. | |
3c4f71cc | 753 | |
788194ff | 754 | Use parameter @a recursive to search the given element recursively in subsizers. |
3c4f71cc | 755 | |
788194ff FM |
756 | This method does not cause any layout or resizing to take place, |
757 | call Layout() to update the layout "on screen" after replacing a | |
758 | child from the sizer. | |
759 | ||
760 | Returns @true if the child item was found and removed, @false otherwise. | |
23324ae1 | 761 | */ |
788194ff FM |
762 | virtual bool Replace(wxSizer* oldsz, wxSizer* newsz, |
763 | bool recursive = false); | |
23324ae1 FM |
764 | |
765 | /** | |
788194ff FM |
766 | Detaches the given item at position @a index from the sizer and |
767 | replaces it with the given wxSizerItem @a newitem. | |
3c4f71cc | 768 | |
788194ff FM |
769 | The detached child is deleted @b only if it is a sizer or a spacer |
770 | (but not if it is a wxWindow because windows are owned by their | |
771 | parent window, not the sizer). | |
893039c0 | 772 | |
788194ff FM |
773 | This method does not cause any layout or resizing to take place, |
774 | call Layout() to update the layout "on screen" after replacing a | |
775 | child from the sizer. | |
3c4f71cc | 776 | |
788194ff | 777 | Returns @true if the child item was found and removed, @false otherwise. |
23324ae1 | 778 | */ |
788194ff | 779 | virtual bool Replace(size_t index, wxSizerItem* newitem); |
23324ae1 | 780 | |
67ef83eb | 781 | /** |
788194ff FM |
782 | Call this to force the sizer to take the given dimension and thus force |
783 | the items owned by the sizer to resize themselves according to the | |
784 | rules defined by the parameter in the Add() and Prepend() methods. | |
67ef83eb | 785 | */ |
788194ff | 786 | void SetDimension(int x, int y, int width, int height); |
67ef83eb VZ |
787 | |
788 | /** | |
788194ff FM |
789 | @overload |
790 | */ | |
791 | void SetDimension(const wxPoint& pos, const wxSize& size); | |
67ef83eb | 792 | |
788194ff FM |
793 | /** |
794 | Set an item's minimum size by window, sizer, or position. | |
795 | ||
788194ff FM |
796 | This function enables an application to set the size of an item after |
797 | initial creation. | |
798 | ||
58c69c44 VZ |
799 | The @a window or @a sizer will be found recursively in the sizer's |
800 | descendants. | |
801 | ||
788194ff | 802 | @see wxSizerItem::SetMinSize() |
58c69c44 VZ |
803 | |
804 | @return | |
805 | @true if the minimal size was successfully set or @false if the | |
806 | item was not found. | |
67ef83eb | 807 | */ |
58c69c44 | 808 | //@{ |
788194ff | 809 | bool SetItemMinSize(wxWindow* window, int width, int height); |
58c69c44 | 810 | bool SetItemMinSize(wxWindow* window, const wxSize& size); |
67ef83eb | 811 | |
788194ff | 812 | bool SetItemMinSize(wxSizer* sizer, int width, int height); |
58c69c44 | 813 | bool SetItemMinSize(wxSizer* sizer, const wxSize& size); |
23324ae1 | 814 | |
788194ff | 815 | bool SetItemMinSize(size_t index, int width, int height); |
58c69c44 VZ |
816 | bool SetItemMinSize(size_t index, const wxSize& size); |
817 | //@} | |
23324ae1 FM |
818 | |
819 | /** | |
788194ff | 820 | Call this to give the sizer a minimal size. |
e725ba4f | 821 | |
788194ff FM |
822 | Normally, the sizer will calculate its minimal size based purely on how |
823 | much space its children need. After calling this method GetMinSize() | |
824 | will return either the minimal size as requested by its children or the | |
825 | minimal size set here, depending on which is bigger. | |
23324ae1 | 826 | */ |
788194ff | 827 | void SetMinSize(const wxSize& size); |
23324ae1 FM |
828 | |
829 | /** | |
788194ff FM |
830 | @overload |
831 | */ | |
832 | void SetMinSize(int width, int height); | |
e725ba4f | 833 | |
788194ff FM |
834 | /** |
835 | This method first calls Fit() and then wxTopLevelWindow::SetSizeHints() | |
836 | on the @a window passed to it. | |
23324ae1 | 837 | |
788194ff FM |
838 | This only makes sense when @a window is actually a wxTopLevelWindow such |
839 | as a wxFrame or a wxDialog, since SetSizeHints only has any effect in these classes. | |
840 | It does nothing in normal windows or controls. | |
23324ae1 | 841 | |
788194ff FM |
842 | This method is implicitly used by wxWindow::SetSizerAndFit() which is |
843 | commonly invoked in the constructor of a toplevel window itself (see | |
844 | the sample in the description of wxBoxSizer) if the toplevel window is | |
845 | resizable. | |
846 | */ | |
847 | void SetSizeHints(wxWindow* window); | |
e54c96f1 | 848 | |
788194ff FM |
849 | /** |
850 | Tell the sizer to set the minimal size of the @a window virtual area to match | |
851 | the sizer's minimal size. For windows with managed scrollbars this will set them | |
852 | appropriately. | |
7c913512 | 853 | |
df7d641d VZ |
854 | @deprecated This is exactly the same as FitInside() in wxWidgets 2.9 |
855 | and later, please replace calls to it with FitInside(). | |
7c913512 | 856 | |
788194ff | 857 | @see wxScrolled::SetScrollbars() |
23324ae1 | 858 | */ |
788194ff | 859 | void SetVirtualSizeHints(wxWindow* window); |
23324ae1 FM |
860 | |
861 | /** | |
788194ff FM |
862 | Shows or hides the @a window. |
863 | To make a sizer item disappear or reappear, use Show() followed by Layout(). | |
23324ae1 | 864 | |
788194ff | 865 | Use parameter @a recursive to show or hide elements found in subsizers. |
5886ce02 | 866 | |
788194ff | 867 | Returns @true if the child item was found, @false otherwise. |
3c4f71cc | 868 | |
788194ff | 869 | @see Hide(), IsShown() |
5886ce02 | 870 | */ |
788194ff FM |
871 | bool Show(wxWindow* window, bool show = true, |
872 | bool recursive = false); | |
3c4f71cc | 873 | |
5886ce02 | 874 | /** |
788194ff FM |
875 | Shows or hides @a sizer. |
876 | To make a sizer item disappear or reappear, use Show() followed by Layout(). | |
3c4f71cc | 877 | |
788194ff | 878 | Use parameter @a recursive to show or hide elements found in subsizers. |
3c4f71cc | 879 | |
788194ff | 880 | Returns @true if the child item was found, @false otherwise. |
3c4f71cc | 881 | |
788194ff | 882 | @see Hide(), IsShown() |
5886ce02 | 883 | */ |
788194ff FM |
884 | bool Show(wxSizer* sizer, bool show = true, |
885 | bool recursive = false); | |
3c4f71cc | 886 | |
5886ce02 | 887 | /** |
788194ff FM |
888 | Shows the item at @a index. |
889 | To make a sizer item disappear or reappear, use Show() followed by Layout(). | |
3c4f71cc | 890 | |
788194ff | 891 | Returns @true if the child item was found, @false otherwise. |
3c4f71cc | 892 | |
788194ff | 893 | @see Hide(), IsShown() |
23324ae1 | 894 | */ |
788194ff FM |
895 | bool Show(size_t index, bool show = true); |
896 | }; | |
5886ce02 | 897 | |
5886ce02 | 898 | |
788194ff FM |
899 | /** |
900 | @class wxStdDialogButtonSizer | |
5886ce02 | 901 | |
788194ff FM |
902 | This class creates button layouts which conform to the standard button spacing |
903 | and ordering defined by the platform or toolkit's user interface guidelines | |
904 | (if such things exist). By using this class, you can ensure that all your | |
905 | standard dialogs look correct on all major platforms. Currently it conforms to | |
906 | the Windows, GTK+ and Mac OS X human interface guidelines. | |
5886ce02 | 907 | |
788194ff FM |
908 | When there aren't interface guidelines defined for a particular platform or |
909 | toolkit, wxStdDialogButtonSizer reverts to the Windows implementation. | |
23324ae1 | 910 | |
788194ff FM |
911 | To use this class, first add buttons to the sizer by calling |
912 | wxStdDialogButtonSizer::AddButton (or wxStdDialogButtonSizer::SetAffirmativeButton, | |
913 | wxStdDialogButtonSizer::SetNegativeButton or wxStdDialogButtonSizer::SetCancelButton) | |
914 | and then call Realize in order to create the actual button layout used. | |
915 | Other than these special operations, this sizer works like any other sizer. | |
23324ae1 | 916 | |
788194ff FM |
917 | If you add a button with wxID_SAVE, on Mac OS X the button will be renamed to |
918 | "Save" and the wxID_NO button will be renamed to "Don't Save" in accordance | |
919 | with the Mac OS X Human Interface Guidelines. | |
920 | ||
921 | @library{wxcore} | |
922 | @category{winlayout} | |
23324ae1 | 923 | |
788194ff FM |
924 | @see wxSizer, @ref overview_sizer, wxDialog::CreateButtonSizer |
925 | */ | |
926 | class wxStdDialogButtonSizer : public wxBoxSizer | |
927 | { | |
928 | public: | |
23324ae1 | 929 | /** |
788194ff | 930 | Constructor for a wxStdDialogButtonSizer. |
23324ae1 | 931 | */ |
788194ff | 932 | wxStdDialogButtonSizer(); |
23324ae1 FM |
933 | |
934 | /** | |
788194ff FM |
935 | Adds a button to the wxStdDialogButtonSizer. The @a button must have |
936 | one of the following identifiers: | |
937 | - wxID_OK | |
938 | - wxID_YES | |
939 | - wxID_SAVE | |
940 | - wxID_APPLY | |
941 | - wxID_CLOSE | |
942 | - wxID_NO | |
943 | - wxID_CANCEL | |
944 | - wxID_HELP | |
945 | - wxID_CONTEXT_HELP | |
23324ae1 | 946 | */ |
788194ff | 947 | void AddButton(wxButton* button); |
23324ae1 FM |
948 | |
949 | /** | |
788194ff FM |
950 | Rearranges the buttons and applies proper spacing between buttons to make |
951 | them match the platform or toolkit's interface guidelines. | |
23324ae1 | 952 | */ |
788194ff | 953 | void Realize(); |
23324ae1 FM |
954 | |
955 | /** | |
788194ff | 956 | Sets the affirmative button for the sizer. |
491a5ece | 957 | |
788194ff FM |
958 | This allows you to use identifiers other than the standard identifiers |
959 | outlined above. | |
23324ae1 | 960 | */ |
788194ff | 961 | void SetAffirmativeButton(wxButton* button); |
23324ae1 | 962 | |
23324ae1 | 963 | /** |
788194ff | 964 | Sets the cancel button for the sizer. |
3c4f71cc | 965 | |
788194ff FM |
966 | This allows you to use identifiers other than the standard identifiers |
967 | outlined above. | |
23324ae1 | 968 | */ |
788194ff | 969 | void SetCancelButton(wxButton* button); |
1c340cc6 RR |
970 | |
971 | /** | |
788194ff | 972 | Sets the negative button for the sizer. |
98ccd545 | 973 | |
788194ff FM |
974 | This allows you to use identifiers other than the standard identifiers |
975 | outlined above. | |
1c340cc6 | 976 | */ |
788194ff | 977 | void SetNegativeButton(wxButton* button); |
7106fc46 RD |
978 | |
979 | virtual void RecalcSizes(); | |
980 | virtual wxSize CalcMin(); | |
788194ff | 981 | }; |
98ccd545 | 982 | |
1c340cc6 | 983 | |
23324ae1 | 984 | |
788194ff FM |
985 | /** |
986 | @class wxSizerItem | |
e725ba4f | 987 | |
788194ff FM |
988 | The wxSizerItem class is used to track the position, size and other |
989 | attributes of each item managed by a wxSizer. | |
3c4f71cc | 990 | |
788194ff FM |
991 | It is not usually necessary to use this class because the sizer elements can |
992 | also be identified by their positions or window or sizer pointers but sometimes | |
993 | it may be more convenient to use it directly. | |
23324ae1 | 994 | |
788194ff FM |
995 | @library{wxcore} |
996 | @category{winlayout} | |
997 | */ | |
998 | class wxSizerItem : public wxObject | |
999 | { | |
1000 | public: | |
23324ae1 | 1001 | /** |
788194ff | 1002 | Construct a sizer item for tracking a spacer. |
23324ae1 | 1003 | */ |
5eb16fe2 RD |
1004 | wxSizerItem(int width, int height, int proportion=0, int flag=0, |
1005 | int border=0, wxObject* userData=NULL); | |
23324ae1 | 1006 | |
e725ba4f | 1007 | //@{ |
23324ae1 | 1008 | /** |
788194ff | 1009 | Construct a sizer item for tracking a window. |
1c340cc6 | 1010 | */ |
788194ff | 1011 | wxSizerItem(wxWindow* window, const wxSizerFlags& flags); |
5eb16fe2 RD |
1012 | wxSizerItem(wxWindow* window, int proportion=0, int flag=0, |
1013 | int border=0, | |
1014 | wxObject* userData=NULL); | |
e725ba4f | 1015 | //@} |
23324ae1 | 1016 | |
788194ff | 1017 | //@{ |
23324ae1 | 1018 | /** |
788194ff | 1019 | Construct a sizer item for tracking a subsizer. |
23324ae1 | 1020 | */ |
7106fc46 | 1021 | wxSizerItem(wxSizer* sizer, const wxSizerFlags& flags); |
5eb16fe2 RD |
1022 | wxSizerItem(wxSizer* sizer, int proportion=0, int flag=0, |
1023 | int border=0, | |
1024 | wxObject* userData=NULL); | |
788194ff | 1025 | //@} |
23324ae1 | 1026 | |
6b527e15 | 1027 | /** |
788194ff | 1028 | Deletes the user data and subsizer, if any. |
6b527e15 | 1029 | */ |
788194ff | 1030 | virtual ~wxSizerItem(); |
2f39b5a3 | 1031 | |
16e40259 VZ |
1032 | /** |
1033 | Set the window to be tracked by this item. | |
1034 | ||
1035 | The old window isn't deleted as it is now owned by the sizer item. | |
1036 | */ | |
1037 | void AssignWindow(wxWindow *window); | |
1038 | ||
1039 | /** | |
1040 | Set the sizer tracked by this item. | |
1041 | ||
1042 | Old sizer, if any, is deleted. | |
1043 | */ | |
1044 | void AssignSizer(wxSizer *sizer); | |
1045 | ||
1046 | //@{ | |
1047 | /** | |
1048 | Set the size of the spacer tracked by this item. | |
1049 | ||
1050 | Old spacer, if any, is deleted. | |
1051 | */ | |
1052 | void AssignSpacer(const wxSize& size); | |
7106fc46 | 1053 | void AssignSpacer(int w, int h); |
16e40259 VZ |
1054 | //@} |
1055 | ||
23324ae1 | 1056 | /** |
788194ff FM |
1057 | Calculates the minimum desired size for the item, including any space |
1058 | needed by borders. | |
23324ae1 | 1059 | */ |
788194ff | 1060 | virtual wxSize CalcMin(); |
98ccd545 | 1061 | |
cbf2bf6a | 1062 | /** |
788194ff FM |
1063 | Destroy the window or the windows in a subsizer, depending on the type |
1064 | of item. | |
cbf2bf6a | 1065 | */ |
788194ff | 1066 | virtual void DeleteWindows(); |
e725ba4f | 1067 | |
cbf2bf6a | 1068 | /** |
788194ff | 1069 | Enable deleting the SizerItem without destroying the contained sizer. |
cbf2bf6a | 1070 | */ |
788194ff | 1071 | void DetachSizer(); |
23324ae1 FM |
1072 | |
1073 | /** | |
788194ff | 1074 | Return the border attribute. |
23324ae1 | 1075 | */ |
788194ff | 1076 | int GetBorder() const; |
23324ae1 FM |
1077 | |
1078 | /** | |
788194ff | 1079 | Return the flags attribute. |
e725ba4f | 1080 | |
788194ff | 1081 | See @ref wxsizer_flags "wxSizer flags list" for details. |
23324ae1 | 1082 | */ |
788194ff | 1083 | int GetFlag() const; |
23324ae1 FM |
1084 | |
1085 | /** | |
788194ff FM |
1086 | Return the numeric id of wxSizerItem, or @c wxID_NONE if the id has |
1087 | not been set. | |
23324ae1 | 1088 | */ |
788194ff | 1089 | int GetId() const; |
23324ae1 FM |
1090 | |
1091 | /** | |
788194ff | 1092 | Get the minimum size needed for the item. |
23324ae1 | 1093 | */ |
788194ff | 1094 | wxSize GetMinSize() const; |
23324ae1 | 1095 | |
23324ae1 | 1096 | /** |
788194ff | 1097 | Sets the minimum size to be allocated for this item. |
98ccd545 | 1098 | |
788194ff FM |
1099 | If this item is a window, the @a size is also passed to |
1100 | wxWindow::SetMinSize(). | |
1101 | */ | |
1102 | void SetMinSize(const wxSize& size); | |
98ccd545 | 1103 | |
788194ff FM |
1104 | /** |
1105 | @overload | |
1106 | */ | |
1107 | void SetMinSize(int x, int y); | |
3c4f71cc | 1108 | |
788194ff FM |
1109 | /** |
1110 | What is the current position of the item, as set in the last Layout. | |
23324ae1 | 1111 | */ |
788194ff | 1112 | wxPoint GetPosition() const; |
1c340cc6 RR |
1113 | |
1114 | /** | |
788194ff | 1115 | Get the proportion item attribute. |
1c340cc6 | 1116 | */ |
788194ff | 1117 | int GetProportion() const; |
1c340cc6 RR |
1118 | |
1119 | /** | |
788194ff FM |
1120 | Get the ration item attribute. |
1121 | */ | |
1122 | float GetRatio() const; | |
1c340cc6 | 1123 | |
788194ff FM |
1124 | /** |
1125 | Get the rectangle of the item on the parent window, excluding borders. | |
1c340cc6 | 1126 | */ |
788194ff | 1127 | virtual wxRect GetRect(); |
23324ae1 | 1128 | |
23324ae1 | 1129 | /** |
788194ff FM |
1130 | Get the current size of the item, as set in the last Layout. |
1131 | */ | |
1132 | virtual wxSize GetSize() const; | |
3c4f71cc | 1133 | |
788194ff FM |
1134 | /** |
1135 | If this item is tracking a sizer, return it. @NULL otherwise. | |
23324ae1 | 1136 | */ |
788194ff | 1137 | wxSizer* GetSizer() const; |
1c340cc6 RR |
1138 | |
1139 | /** | |
788194ff FM |
1140 | If this item is tracking a spacer, return its size. |
1141 | */ | |
1142 | wxSize GetSpacer() const; | |
1c340cc6 | 1143 | |
788194ff FM |
1144 | /** |
1145 | Get the userData item attribute. | |
1c340cc6 | 1146 | */ |
788194ff | 1147 | wxObject* GetUserData() const; |
1c340cc6 RR |
1148 | |
1149 | /** | |
788194ff | 1150 | If this item is tracking a window then return it. @NULL otherwise. |
1c340cc6 | 1151 | */ |
788194ff | 1152 | wxWindow* GetWindow() const; |
1c340cc6 RR |
1153 | |
1154 | /** | |
788194ff FM |
1155 | Returns @true if this item is a window or a spacer and it is shown or |
1156 | if this item is a sizer and not all of its elements are hidden. | |
1c340cc6 | 1157 | |
788194ff FM |
1158 | In other words, for sizer items, all of the child elements must be |
1159 | hidden for the sizer itself to be considered hidden. | |
1160 | ||
1161 | As an exception, if the @c wxRESERVE_SPACE_EVEN_IF_HIDDEN flag was | |
1162 | used for this sizer item, then IsShown() always returns @true for it | |
1163 | (see wxSizerFlags::ReserveSpaceEvenIfHidden()). | |
1c340cc6 | 1164 | */ |
788194ff | 1165 | bool IsShown() const; |
1c340cc6 RR |
1166 | |
1167 | /** | |
788194ff | 1168 | Is this item a sizer? |
1c340cc6 | 1169 | */ |
788194ff | 1170 | bool IsSizer() const; |
23324ae1 FM |
1171 | |
1172 | /** | |
788194ff | 1173 | Is this item a spacer? |
23324ae1 | 1174 | */ |
788194ff | 1175 | bool IsSpacer() const; |
23324ae1 FM |
1176 | |
1177 | /** | |
788194ff | 1178 | Is this item a window? |
23324ae1 | 1179 | */ |
788194ff | 1180 | bool IsWindow() const; |
23324ae1 | 1181 | |
6e1f851b | 1182 | /** |
788194ff FM |
1183 | Set the border item attribute. |
1184 | */ | |
1185 | void SetBorder(int border); | |
6e1f851b | 1186 | |
23324ae1 | 1187 | /** |
788194ff FM |
1188 | Set the position and size of the space allocated to the sizer, and |
1189 | adjust the position and size of the item to be within that space | |
1190 | taking alignment and borders into account. | |
23324ae1 | 1191 | */ |
788194ff | 1192 | virtual void SetDimension(const wxPoint& pos, const wxSize& size); |
01195a1b VS |
1193 | |
1194 | /** | |
788194ff | 1195 | Set the flag item attribute. |
01195a1b | 1196 | */ |
788194ff | 1197 | void SetFlag(int flag); |
01195a1b VS |
1198 | |
1199 | /** | |
788194ff FM |
1200 | Sets the numeric id of the wxSizerItem to @e id. |
1201 | */ | |
1202 | void SetId(int id); | |
01195a1b | 1203 | |
788194ff FM |
1204 | /** |
1205 | @todo docme. | |
01195a1b | 1206 | */ |
788194ff | 1207 | void SetInitSize(int x, int y); |
23324ae1 FM |
1208 | |
1209 | /** | |
788194ff | 1210 | Set the proportion item attribute. |
23324ae1 | 1211 | */ |
788194ff | 1212 | void SetProportion(int proportion); |
23324ae1 | 1213 | |
788194ff | 1214 | //@{ |
23324ae1 | 1215 | /** |
788194ff | 1216 | Set the ratio item attribute. |
23324ae1 | 1217 | */ |
788194ff FM |
1218 | void SetRatio(int width, int height); |
1219 | void SetRatio(wxSize size); | |
1220 | void SetRatio(float ratio); | |
1221 | //@} | |
5886ce02 VS |
1222 | |
1223 | /** | |
788194ff | 1224 | Set the sizer tracked by this item. |
16e40259 VZ |
1225 | |
1226 | @deprecated This function does not free the old sizer which may result | |
1227 | in memory leaks, use AssignSizer() which does free it instead. | |
5886ce02 | 1228 | */ |
788194ff | 1229 | void SetSizer(wxSizer* sizer); |
5886ce02 VS |
1230 | |
1231 | /** | |
788194ff | 1232 | Set the size of the spacer tracked by this item. |
16e40259 VZ |
1233 | |
1234 | @deprecated This function does not free the old spacer which may result | |
1235 | in memory leaks, use AssignSpacer() which does free it instead. | |
5886ce02 | 1236 | */ |
788194ff | 1237 | void SetSpacer(const wxSize& size); |
5886ce02 | 1238 | |
86381d42 RD |
1239 | void SetUserData(wxObject* userData); |
1240 | ||
5886ce02 | 1241 | /** |
788194ff FM |
1242 | Set the window to be tracked by this item. |
1243 | @deprecated @todo provide deprecation description | |
5886ce02 | 1244 | */ |
788194ff | 1245 | void SetWindow(wxWindow* window); |
5886ce02 VS |
1246 | |
1247 | /** | |
788194ff FM |
1248 | Set the show item attribute, which sizers use to determine if the item |
1249 | is to be made part of the layout or not. If the item is tracking a | |
1250 | window then it is shown or hidden as needed. | |
5886ce02 | 1251 | */ |
788194ff FM |
1252 | void Show(bool show); |
1253 | }; | |
1254 | ||
1255 | ||
23324ae1 | 1256 | |
788194ff FM |
1257 | /** |
1258 | @class wxSizerFlags | |
1259 | ||
1260 | Container for sizer items flags providing readable names for them. | |
1261 | ||
1262 | Normally, when you add an item to a sizer via wxSizer::Add, you have to | |
1263 | specify a lot of flags and parameters which can be unwieldy. This is where | |
1264 | wxSizerFlags comes in: it allows you to specify all parameters using the | |
1265 | named methods instead. For example, instead of | |
1266 | ||
1267 | @code | |
1268 | sizer->Add(ctrl, 0, wxEXPAND | wxALL, 10); | |
1269 | @endcode | |
1270 | ||
1271 | you can now write | |
1272 | ||
1273 | @code | |
1274 | sizer->Add(ctrl, wxSizerFlags().Expand().Border(wxALL, 10)); | |
1275 | @endcode | |
1276 | ||
1277 | This is more readable and also allows you to create wxSizerFlags objects which | |
1278 | can be reused for several sizer items. | |
1279 | ||
1280 | @code | |
1281 | wxSizerFlags flagsExpand(1); | |
1282 | flagsExpand.Expand().Border(wxALL, 10); | |
1283 | ||
1284 | sizer->Add(ctrl1, flagsExpand); | |
1285 | sizer->Add(ctrl2, flagsExpand); | |
1286 | @endcode | |
1287 | ||
1288 | Note that by specification, all methods of wxSizerFlags return the wxSizerFlags | |
1289 | object itself to allowing chaining multiple methods calls like in the examples | |
1290 | above. | |
1291 | ||
1292 | @library{wxcore} | |
1293 | @category{winlayout} | |
1294 | ||
1295 | @see wxSizer | |
1296 | */ | |
1297 | class wxSizerFlags | |
1298 | { | |
1299 | public: | |
23324ae1 | 1300 | /** |
788194ff | 1301 | Creates the wxSizer with the proportion specified by @a proportion. |
23324ae1 | 1302 | */ |
788194ff | 1303 | wxSizerFlags(int proportion = 0); |
23324ae1 FM |
1304 | |
1305 | /** | |
788194ff FM |
1306 | Sets the alignment of this wxSizerFlags to @a align. |
1307 | ||
1308 | This method replaces the previously set alignment with the specified one. | |
1309 | ||
1310 | @param alignment | |
1311 | Combination of @c wxALIGN_XXX bit masks. | |
1312 | ||
1313 | @see Top(), Left(), Right(), Bottom(), Centre() | |
23324ae1 | 1314 | */ |
788194ff | 1315 | wxSizerFlags& Align(int alignment); |
23324ae1 FM |
1316 | |
1317 | /** | |
788194ff FM |
1318 | Sets the wxSizerFlags to have a border of a number of pixels specified |
1319 | by @a borderinpixels with the directions specified by @a direction. | |
23324ae1 | 1320 | */ |
788194ff | 1321 | wxSizerFlags& Border(int direction, int borderinpixels); |
23324ae1 | 1322 | |
23324ae1 | 1323 | /** |
788194ff FM |
1324 | Sets the wxSizerFlags to have a border with size as returned by |
1325 | GetDefaultBorder(). | |
5886ce02 | 1326 | |
788194ff FM |
1327 | @param direction |
1328 | Direction(s) to apply the border in. | |
1329 | */ | |
1330 | wxSizerFlags& Border(int direction = wxALL); | |
5886ce02 | 1331 | |
788194ff FM |
1332 | /** |
1333 | Aligns the object to the bottom, similar for @c Align(wxALIGN_BOTTOM). | |
5886ce02 | 1334 | |
788194ff FM |
1335 | Unlike Align(), this method doesn't change the horizontal alignment of |
1336 | the item. | |
23324ae1 | 1337 | */ |
788194ff | 1338 | wxSizerFlags& Bottom(); |
5886ce02 VS |
1339 | |
1340 | /** | |
788194ff FM |
1341 | Sets the object of the wxSizerFlags to center itself in the area it is |
1342 | given. | |
1343 | */ | |
1344 | wxSizerFlags& Center(); | |
5886ce02 | 1345 | |
788194ff FM |
1346 | /** |
1347 | Center() for people with the other dialect of English. | |
1348 | */ | |
1349 | wxSizerFlags& Centre(); | |
5886ce02 | 1350 | |
788194ff FM |
1351 | /** |
1352 | Sets the border in the given @a direction having twice the default | |
1353 | border size. | |
1354 | */ | |
1355 | wxSizerFlags& DoubleBorder(int direction = wxALL); | |
5886ce02 | 1356 | |
788194ff FM |
1357 | /** |
1358 | Sets the border in left and right directions having twice the default | |
1359 | border size. | |
5886ce02 | 1360 | */ |
788194ff | 1361 | wxSizerFlags& DoubleHorzBorder(); |
5886ce02 VS |
1362 | |
1363 | /** | |
788194ff FM |
1364 | Sets the object of the wxSizerFlags to expand to fill as much area as |
1365 | it can. | |
1366 | */ | |
1367 | wxSizerFlags& Expand(); | |
5886ce02 | 1368 | |
788194ff FM |
1369 | /** |
1370 | Set the @c wxFIXED_MINSIZE flag which indicates that the initial size | |
1371 | of the window should be also set as its minimal size. | |
1372 | */ | |
1373 | wxSizerFlags& FixedMinSize(); | |
5886ce02 | 1374 | |
788194ff FM |
1375 | /** |
1376 | Set the @c wxRESERVE_SPACE_EVEN_IF_HIDDEN flag. Normally wxSizers | |
1377 | don't allocate space for hidden windows or other items. This flag | |
4c51a665 | 1378 | overrides this behaviour so that sufficient space is allocated for the |
788194ff FM |
1379 | window even if it isn't visible. This makes it possible to dynamically |
1380 | show and hide controls without resizing parent dialog, for example. | |
5886ce02 | 1381 | |
788194ff | 1382 | @since 2.8.8 |
5886ce02 | 1383 | */ |
788194ff | 1384 | wxSizerFlags& ReserveSpaceEvenIfHidden(); |
23324ae1 | 1385 | |
23324ae1 | 1386 | /** |
788194ff FM |
1387 | Returns the border used by default in Border() method. |
1388 | */ | |
1389 | static int GetDefaultBorder(); | |
3c4f71cc | 1390 | |
788194ff FM |
1391 | /** |
1392 | Aligns the object to the left, similar for @c Align(wxALIGN_LEFT). | |
98ccd545 | 1393 | |
788194ff FM |
1394 | Unlike Align(), this method doesn't change the vertical alignment of |
1395 | the item. | |
23324ae1 | 1396 | */ |
788194ff | 1397 | wxSizerFlags& Left(); |
98ccd545 | 1398 | |
1c340cc6 | 1399 | /** |
788194ff FM |
1400 | Sets the proportion of this wxSizerFlags to @e proportion |
1401 | */ | |
1402 | wxSizerFlags& Proportion(int proportion); | |
1c340cc6 | 1403 | |
788194ff FM |
1404 | /** |
1405 | Aligns the object to the right, similar for @c Align(wxALIGN_RIGHT). | |
98ccd545 | 1406 | |
788194ff FM |
1407 | Unlike Align(), this method doesn't change the vertical alignment of |
1408 | the item. | |
1c340cc6 | 1409 | */ |
788194ff | 1410 | wxSizerFlags& Right(); |
98ccd545 | 1411 | |
1c340cc6 | 1412 | /** |
788194ff FM |
1413 | Set the @c wx_SHAPED flag which indicates that the elements should |
1414 | always keep the fixed width to height ratio equal to its original value. | |
1415 | */ | |
1416 | wxSizerFlags& Shaped(); | |
98ccd545 | 1417 | |
788194ff FM |
1418 | /** |
1419 | Aligns the object to the top, similar for @c Align(wxALIGN_TOP). | |
98ccd545 | 1420 | |
788194ff FM |
1421 | Unlike Align(), this method doesn't change the horizontal alignment of |
1422 | the item. | |
1c340cc6 | 1423 | */ |
788194ff | 1424 | wxSizerFlags& Top(); |
23324ae1 FM |
1425 | |
1426 | /** | |
788194ff FM |
1427 | Sets the border in the given @a direction having thrice the default |
1428 | border size. | |
23324ae1 | 1429 | */ |
788194ff FM |
1430 | wxSizerFlags& TripleBorder(int direction = wxALL); |
1431 | }; | |
98ccd545 | 1432 | |
23324ae1 | 1433 | |
52ceb90e FM |
1434 | /** |
1435 | Values which define the behaviour for resizing wxFlexGridSizer cells in the | |
1436 | "non-flexible" direction. | |
1437 | */ | |
1438 | enum wxFlexSizerGrowMode | |
1439 | { | |
1440 | /// Don't resize the cells in non-flexible direction at all. | |
1441 | wxFLEX_GROWMODE_NONE, | |
1442 | ||
1443 | /// Uniformly resize only the specified ones (default). | |
1444 | wxFLEX_GROWMODE_SPECIFIED, | |
1445 | ||
1446 | /// Uniformly resize all cells. | |
1447 | wxFLEX_GROWMODE_ALL | |
1448 | }; | |
1449 | ||
788194ff FM |
1450 | /** |
1451 | @class wxFlexGridSizer | |
7e927914 | 1452 | |
788194ff FM |
1453 | A flex grid sizer is a sizer which lays out its children in a two-dimensional |
1454 | table with all table fields in one row having the same height and all fields | |
1455 | in one column having the same width, but all rows or all columns are not | |
1456 | necessarily the same height or width as in the wxGridSizer. | |
1457 | ||
1458 | Since wxWidgets 2.5.0, wxFlexGridSizer can also size items equally in one | |
1459 | direction but unequally ("flexibly") in the other. If the sizer is only | |
1460 | flexible in one direction (this can be changed using wxFlexGridSizer::SetFlexibleDirection), | |
1461 | it needs to be decided how the sizer should grow in the other ("non-flexible") | |
1462 | direction in order to fill the available space. | |
1463 | The wxFlexGridSizer::SetNonFlexibleGrowMode() method serves this purpose. | |
1c340cc6 | 1464 | |
788194ff FM |
1465 | @library{wxcore} |
1466 | @category{winlayout} | |
1467 | ||
1468 | @see wxSizer, @ref overview_sizer | |
1469 | */ | |
1470 | class wxFlexGridSizer : public wxGridSizer | |
1471 | { | |
1472 | public: | |
1473 | //@{ | |
1c340cc6 | 1474 | /** |
4a00e77c | 1475 | wxFlexGridSizer constructors. |
1c340cc6 | 1476 | |
61503542 | 1477 | Please see wxGridSizer::wxGridSizer documentation. |
4a00e77c VZ |
1478 | |
1479 | @since 2.9.1 (except for the four argument overload) | |
1c340cc6 | 1480 | */ |
d7bb2926 | 1481 | wxFlexGridSizer( int cols, int vgap, int hgap ); |
4a00e77c VZ |
1482 | wxFlexGridSizer( int cols, const wxSize& gap = wxSize(0, 0) ); |
1483 | ||
1484 | wxFlexGridSizer( int rows, int cols, int vgap, int hgap ); | |
1485 | wxFlexGridSizer( int rows, int cols, const wxSize& gap ); | |
788194ff | 1486 | //@} |
1c340cc6 RR |
1487 | |
1488 | /** | |
788194ff FM |
1489 | Specifies that column @a idx (starting from zero) should be grown if |
1490 | there is extra space available to the sizer. | |
1c340cc6 | 1491 | |
788194ff | 1492 | The @a proportion parameter has the same meaning as the stretch factor |
a008d6e5 FM |
1493 | for the sizers (see wxBoxSizer) except that if all proportions are 0, |
1494 | then all columns are resized equally (instead of not being resized at all). | |
1c340cc6 | 1495 | |
a008d6e5 | 1496 | Notice that the column must not be already growable, if you need to change |
788194ff FM |
1497 | the proportion you must call RemoveGrowableCol() first and then make it |
1498 | growable (with a different proportion) again. You can use IsColGrowable() | |
1499 | to check whether a column is already growable. | |
1c340cc6 | 1500 | */ |
788194ff | 1501 | void AddGrowableCol(size_t idx, int proportion = 0); |
23324ae1 | 1502 | |
23324ae1 | 1503 | /** |
788194ff FM |
1504 | Specifies that row idx (starting from zero) should be grown if there |
1505 | is extra space available to the sizer. | |
e725ba4f | 1506 | |
788194ff FM |
1507 | This is identical to AddGrowableCol() except that it works with rows |
1508 | and not columns. | |
23324ae1 | 1509 | */ |
788194ff | 1510 | void AddGrowableRow(size_t idx, int proportion = 0); |
23324ae1 FM |
1511 | |
1512 | /** | |
a008d6e5 | 1513 | Returns a ::wxOrientation value that specifies whether the sizer flexibly |
788194ff | 1514 | resizes its columns, rows, or both (default). |
e725ba4f | 1515 | |
788194ff FM |
1516 | @return |
1517 | One of the following values: | |
1518 | - wxVERTICAL: Rows are flexibly sized. | |
1519 | - wxHORIZONTAL: Columns are flexibly sized. | |
1520 | - wxBOTH: Both rows and columns are flexibly sized (this is the default value). | |
e725ba4f | 1521 | |
788194ff | 1522 | @see SetFlexibleDirection() |
23324ae1 | 1523 | */ |
788194ff | 1524 | int GetFlexibleDirection() const; |
23324ae1 FM |
1525 | |
1526 | /** | |
788194ff FM |
1527 | Returns the value that specifies how the sizer grows in the "non-flexible" |
1528 | direction if there is one. | |
3c4f71cc | 1529 | |
788194ff | 1530 | The behaviour of the elements in the flexible direction (i.e. both rows |
a008d6e5 FM |
1531 | and columns by default, or rows only if GetFlexibleDirection() is |
1532 | @c wxVERTICAL or columns only if it is @c wxHORIZONTAL) is always governed | |
788194ff FM |
1533 | by their proportion as specified in the call to AddGrowableRow() or |
1534 | AddGrowableCol(). What happens in the other direction depends on the | |
1535 | value of returned by this function as described below. | |
e725ba4f | 1536 | |
788194ff FM |
1537 | @return |
1538 | One of the following values: | |
1539 | - wxFLEX_GROWMODE_NONE: Sizer doesn't grow its elements at all in | |
1540 | the non-flexible direction. | |
1541 | - wxFLEX_GROWMODE_SPECIFIED: Sizer honors growable columns/rows set | |
1542 | with AddGrowableCol() and AddGrowableRow() in the non-flexible | |
1543 | direction as well. In this case equal sizing applies to minimum | |
1544 | sizes of columns or rows (this is the default value). | |
1545 | - wxFLEX_GROWMODE_ALL: Sizer equally stretches all columns or rows in | |
1546 | the non-flexible direction, independently of the proportions | |
1547 | applied in the flexible direction. | |
1548 | ||
1549 | @see SetFlexibleDirection(), SetNonFlexibleGrowMode() | |
23324ae1 | 1550 | */ |
788194ff | 1551 | wxFlexSizerGrowMode GetNonFlexibleGrowMode() const; |
23324ae1 | 1552 | |
23324ae1 | 1553 | /** |
788194ff | 1554 | Returns @true if column @a idx is growable. |
98ccd545 | 1555 | |
788194ff FM |
1556 | @since 2.9.0 |
1557 | */ | |
1558 | bool IsColGrowable(size_t idx); | |
98ccd545 | 1559 | |
788194ff FM |
1560 | /** |
1561 | Returns @true if row @a idx is growable. | |
3c4f71cc | 1562 | |
788194ff | 1563 | @since 2.9.0 |
23324ae1 | 1564 | */ |
788194ff | 1565 | bool IsRowGrowable(size_t idx); |
1c340cc6 RR |
1566 | |
1567 | /** | |
a008d6e5 | 1568 | Specifies that the @a idx column index is no longer growable. |
788194ff FM |
1569 | */ |
1570 | void RemoveGrowableCol(size_t idx); | |
98ccd545 | 1571 | |
788194ff | 1572 | /** |
a008d6e5 | 1573 | Specifies that the @a idx row index is no longer growable. |
788194ff FM |
1574 | */ |
1575 | void RemoveGrowableRow(size_t idx); | |
98ccd545 | 1576 | |
788194ff FM |
1577 | /** |
1578 | Specifies whether the sizer should flexibly resize its columns, rows, or both. | |
1c340cc6 | 1579 | |
788194ff FM |
1580 | Argument @a direction can be @c wxVERTICAL, @c wxHORIZONTAL or @c wxBOTH |
1581 | (which is the default value). Any other value is ignored. | |
a008d6e5 | 1582 | |
788194ff FM |
1583 | See GetFlexibleDirection() for the explanation of these values. |
1584 | Note that this method does not trigger relayout. | |
1c340cc6 | 1585 | */ |
788194ff | 1586 | void SetFlexibleDirection(int direction); |
1c340cc6 RR |
1587 | |
1588 | /** | |
788194ff FM |
1589 | Specifies how the sizer should grow in the non-flexible direction if |
1590 | there is one (so SetFlexibleDirection() must have been called previously). | |
1c340cc6 | 1591 | |
788194ff FM |
1592 | Argument @a mode can be one of those documented in GetNonFlexibleGrowMode(), |
1593 | please see there for their explanation. | |
1594 | Note that this method does not trigger relayout. | |
1c340cc6 | 1595 | */ |
788194ff | 1596 | void SetNonFlexibleGrowMode(wxFlexSizerGrowMode mode); |
8ff9b17d RD |
1597 | |
1598 | virtual void RecalcSizes(); | |
8ff9b17d RD |
1599 | virtual wxSize CalcMin(); |
1600 | ||
23324ae1 FM |
1601 | }; |
1602 | ||
1603 | ||
1604 | /** | |
1605 | @class wxGridSizer | |
7c913512 | 1606 | |
23324ae1 | 1607 | A grid sizer is a sizer which lays out its children in a two-dimensional |
e725ba4f FM |
1608 | table with all table fields having the same size, i.e. the width of each |
1609 | field is the width of the widest child, the height of each field is the | |
1610 | height of the tallest child. | |
7c913512 | 1611 | |
23324ae1 FM |
1612 | @library{wxcore} |
1613 | @category{winlayout} | |
7c913512 | 1614 | |
e725ba4f | 1615 | @see wxSizer, @ref overview_sizer |
23324ae1 FM |
1616 | */ |
1617 | class wxGridSizer : public wxSizer | |
1618 | { | |
1619 | public: | |
1620 | //@{ | |
1621 | /** | |
7e6edd27 | 1622 | wxGridSizer constructors. |
e725ba4f | 1623 | |
61503542 | 1624 | Usually only the number of columns in the flex grid sizer needs to be |
7e6edd27 VZ |
1625 | specified using @a cols argument. The number of rows will be deduced |
1626 | automatically depending on the number of the elements added to the | |
61503542 VZ |
1627 | sizer. |
1628 | ||
1629 | If a constructor form with @a rows parameter is used (and the value of | |
1630 | @a rows argument is not zero, meaning "unspecified") the sizer will | |
1631 | check that no more than @c cols*rows elements are added to it, i.e. | |
1632 | that no more than the given number of @a rows is used. Adding less than | |
1633 | maximally allowed number of items is not an error however. | |
e725ba4f | 1634 | |
61503542 VZ |
1635 | Finally, it is also possible to specify the number of rows and use 0 |
1636 | for @a cols. In this case, the sizer will use the given fixed number of | |
1637 | rows and as many columns as necessary. | |
1638 | ||
1639 | The @a gap (or @a vgap and @a hgap, which correspond to the height and | |
1640 | width of the wxSize object) argument defines the size of the padding | |
1641 | between the rows (its vertical component, or @a vgap) and columns | |
7345d6c1 | 1642 | (its horizontal component, or @a hgap), in pixels. |
7e6edd27 | 1643 | |
61503542 | 1644 | |
7e6edd27 | 1645 | @since 2.9.1 (except for the four argument overload) |
23324ae1 | 1646 | */ |
7e6edd27 VZ |
1647 | wxGridSizer( int cols, int vgap, int hgap ); |
1648 | wxGridSizer( int cols, const wxSize& gap = wxSize(0, 0) ); | |
1649 | ||
1650 | wxGridSizer( int rows, int cols, int vgap, int hgap ); | |
1651 | wxGridSizer( int rows, int cols, const wxSize& gap ); | |
23324ae1 FM |
1652 | //@} |
1653 | ||
1654 | /** | |
0e92a846 | 1655 | Returns the number of columns that has been specified for the |
0274a797 VZ |
1656 | sizer. |
1657 | ||
1658 | Returns zero if the sizer is automatically adjusting the number of | |
0e92a846 RR |
1659 | columns depending on number of its children. To get the effective |
1660 | number of columns or rows being currently used, see GetEffectiveColsCount() | |
23324ae1 | 1661 | */ |
adaaa686 | 1662 | int GetCols() const; |
0e92a846 RR |
1663 | |
1664 | /** | |
1665 | Returns the number of rows that has been specified for the | |
1666 | sizer. | |
1667 | ||
1668 | Returns zero if the sizer is automatically adjusting the number of | |
1669 | rows depending on number of its children. To get the effective | |
1670 | number of columns or rows being currently used, see GetEffectiveRowsCount(). | |
1671 | */ | |
0274a797 | 1672 | int GetRows() const; |
23324ae1 FM |
1673 | |
1674 | /** | |
0e92a846 | 1675 | Returns the number of columns currently used by the sizer. |
0274a797 VZ |
1676 | |
1677 | This will depend on the number of children the sizer has if | |
1678 | the sizer is automatically adjusting the number of columns/rows. | |
1679 | ||
1680 | @since 2.9.1 | |
23324ae1 | 1681 | */ |
0274a797 | 1682 | int GetEffectiveColsCount() const; |
0e92a846 RR |
1683 | |
1684 | /** | |
1685 | Returns the number of rows currently used by the sizer. | |
1686 | ||
1687 | This will depend on the number of children the sizer has if | |
1688 | the sizer is automatically adjusting the number of columns/rows. | |
1689 | ||
1690 | @since 2.9.1 | |
1691 | */ | |
0274a797 | 1692 | int GetEffectiveRowsCount() const; |
23324ae1 FM |
1693 | |
1694 | /** | |
0274a797 | 1695 | Returns the horizontal gap (in pixels) between cells in the sizer. |
23324ae1 | 1696 | */ |
0274a797 | 1697 | int GetHGap() const; |
23324ae1 FM |
1698 | |
1699 | /** | |
1700 | Returns the vertical gap (in pixels) between the cells in the sizer. | |
1701 | */ | |
adaaa686 | 1702 | int GetVGap() const; |
23324ae1 FM |
1703 | |
1704 | /** | |
1705 | Sets the number of columns in the sizer. | |
1706 | */ | |
1707 | void SetCols(int cols); | |
1708 | ||
1709 | /** | |
1710 | Sets the horizontal gap (in pixels) between cells in the sizer. | |
1711 | */ | |
1712 | void SetHGap(int gap); | |
1713 | ||
1714 | /** | |
1715 | Sets the number of rows in the sizer. | |
1716 | */ | |
1717 | void SetRows(int rows); | |
1718 | ||
1719 | /** | |
1720 | Sets the vertical gap (in pixels) between the cells in the sizer. | |
1721 | */ | |
1722 | void SetVGap(int gap); | |
7106fc46 RD |
1723 | |
1724 | virtual wxSize CalcMin(); | |
1725 | virtual void RecalcSizes(); | |
23324ae1 FM |
1726 | }; |
1727 | ||
1728 | ||
e54c96f1 | 1729 | |
23324ae1 FM |
1730 | /** |
1731 | @class wxStaticBoxSizer | |
7c913512 | 1732 | |
338c3ec7 | 1733 | wxStaticBoxSizer is a sizer derived from wxBoxSizer but adds a static box around |
f3289ffb FM |
1734 | the sizer. |
1735 | ||
338c3ec7 | 1736 | The static box may be either created independently or the sizer may create it |
f3289ffb FM |
1737 | itself as a convenience. In any case, the sizer owns the wxStaticBox control |
1738 | and will delete it in the wxStaticBoxSizer destructor. | |
338c3ec7 VZ |
1739 | |
1740 | Note that since wxWidgets 2.9.1 you are encouraged to create the windows | |
1741 | which are added to wxStaticBoxSizer as children of wxStaticBox itself, see | |
1742 | this class documentation for more details. | |
1743 | ||
1744 | Example of use of this class: | |
39cdc95f | 1745 | @code |
338c3ec7 VZ |
1746 | void MyFrame::CreateControls() |
1747 | { | |
1748 | wxPanel *panel = new wxPanel(this); | |
1749 | ... | |
1750 | wxStaticBoxSizer *sz = new wxStaticBoxSizer(wxVERTICAL, panel, "Box"); | |
1751 | sz->Add(new wxStaticText(sz->GetStaticBox(), wxID_ANY, | |
1752 | "This window is a child of the staticbox")); | |
1753 | ... | |
1754 | } | |
39cdc95f | 1755 | @endcode |
7c913512 | 1756 | |
23324ae1 FM |
1757 | @library{wxcore} |
1758 | @category{winlayout} | |
7c913512 | 1759 | |
98ccd545 | 1760 | @see wxSizer, wxStaticBox, wxBoxSizer, @ref overview_sizer |
23324ae1 FM |
1761 | */ |
1762 | class wxStaticBoxSizer : public wxBoxSizer | |
1763 | { | |
1764 | public: | |
23324ae1 | 1765 | /** |
e725ba4f FM |
1766 | This constructor uses an already existing static box. |
1767 | ||
f3289ffb FM |
1768 | @param box |
1769 | The static box to associate with the sizer (which will take its | |
1770 | ownership). | |
1771 | @param orient | |
1772 | Can be either @c wxVERTICAL or @c wxHORIZONTAL. | |
23324ae1 FM |
1773 | */ |
1774 | wxStaticBoxSizer(wxStaticBox* box, int orient); | |
e725ba4f FM |
1775 | |
1776 | /** | |
1777 | This constructor creates a new static box with the given label and parent window. | |
1778 | */ | |
11e3af6e | 1779 | wxStaticBoxSizer(int orient, wxWindow *parent, |
7c913512 | 1780 | const wxString& label = wxEmptyString); |
23324ae1 FM |
1781 | |
1782 | /** | |
1783 | Returns the static box associated with the sizer. | |
1784 | */ | |
18e8e19b | 1785 | wxStaticBox* GetStaticBox() const; |
7106fc46 RD |
1786 | |
1787 | virtual wxSize CalcMin(); | |
1788 | virtual void RecalcSizes(); | |
23324ae1 FM |
1789 | }; |
1790 | ||
1791 | ||
e54c96f1 | 1792 | |
23324ae1 FM |
1793 | /** |
1794 | @class wxBoxSizer | |
7c913512 | 1795 | |
23324ae1 | 1796 | The basic idea behind a box sizer is that windows will most often be laid out |
e725ba4f FM |
1797 | in rather simple basic geometry, typically in a row or a column or several |
1798 | hierarchies of either. | |
7c913512 | 1799 | |
e725ba4f | 1800 | For more information, please see @ref overview_sizer_box. |
7c913512 | 1801 | |
23324ae1 FM |
1802 | @library{wxcore} |
1803 | @category{winlayout} | |
7c913512 | 1804 | |
e725ba4f | 1805 | @see wxSizer, @ref overview_sizer |
23324ae1 FM |
1806 | */ |
1807 | class wxBoxSizer : public wxSizer | |
1808 | { | |
1809 | public: | |
1810 | /** | |
4cc4bfaf | 1811 | Constructor for a wxBoxSizer. @a orient may be either of wxVERTICAL |
23324ae1 FM |
1812 | or wxHORIZONTAL for creating either a column sizer or a row sizer. |
1813 | */ | |
1814 | wxBoxSizer(int orient); | |
1815 | ||
1a2df6a7 VZ |
1816 | /** |
1817 | Adds non-stretchable space to the main orientation of the sizer only. | |
1818 | More readable way of calling: | |
1819 | @code | |
1820 | if ( wxBoxSizer::IsVertical() ) | |
1821 | { | |
1822 | wxBoxSizer::Add(0, size, 0). | |
1823 | } | |
1824 | else | |
1825 | { | |
1826 | wxBoxSizer::Add(size, 0, 0). | |
1827 | } | |
1828 | @endcode | |
1829 | */ | |
1830 | virtual wxSizerItem *AddSpacer(int size); | |
1831 | ||
23324ae1 | 1832 | /** |
e725ba4f FM |
1833 | Implements the calculation of a box sizer's minimal. |
1834 | ||
1835 | It is used internally only and must not be called by the user. | |
1836 | Documented for information. | |
23324ae1 | 1837 | */ |
98ccd545 | 1838 | virtual wxSize CalcMin(); |
23324ae1 FM |
1839 | |
1840 | /** | |
1841 | Returns the orientation of the box sizer, either wxVERTICAL | |
1842 | or wxHORIZONTAL. | |
1843 | */ | |
98ccd545 | 1844 | int GetOrientation() const; |
23324ae1 FM |
1845 | |
1846 | /** | |
1847 | Implements the calculation of a box sizer's dimensions and then sets | |
e725ba4f FM |
1848 | the size of its children (calling wxWindow::SetSize if the child is a window). |
1849 | ||
1850 | It is used internally only and must not be called by the user | |
1851 | (call Layout() if you want to resize). Documented for information. | |
23324ae1 | 1852 | */ |
7106fc46 | 1853 | virtual void RecalcSizes(); |
23324ae1 | 1854 | }; |
e54c96f1 | 1855 |