1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxStdDialogButtonSizer
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
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.
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
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.
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.
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
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.
53 If you wish to create a sizer class in wxPython you should
54 derive the class from @c wxPySizer in order to get Python-aware
55 capabilities for the various virtual methods.
58 @section wxsizer_flags wxSizer flags
60 The "flag" argument accepted by wxSizeItem constructors and other
61 functions, e.g. wxSizer::Add(), is OR-combination of the following flags.
62 Two main behaviours are defined using these flags. One is the border around
63 a window: the border parameter determines the border width whereas the
64 flags given here determine which side(s) of the item that the border will
65 be added. The other flags determine how the sizer item behaves when the
66 space allotted to the sizer changes, and is somewhat dependent on the
67 specific kind of sizer used.
75 These flags are used to specify which side(s) of the sizer item
76 the border width will apply to.}
78 The item will be expanded to fill the space assigned to the item.}
80 The item will be expanded as much as possible while also
81 maintaining its aspect ratio.}
82 @itemdef{wxFIXED_MINSIZE,
83 Normally wxSizers will use GetAdjustedBestSize() to determine what
84 the minimal size of window items should be, and will use that size
85 to calculate the layout. This allows layouts to adjust when an
86 item changes and its best size becomes different. If you would
87 rather have a window item stay the size it started with then use
89 @itemdef{wxRESERVE_SPACE_EVEN_IF_HIDDEN,
90 Normally wxSizers don't allocate space for hidden windows or other
91 items. This flag overrides this behavior so that sufficient space
92 is allocated for the window even if it isn't visible. This makes
93 it possible to dynamically show and hide controls without resizing
94 parent dialog, for example. (Available since 2.8.8.)}
95 @itemdef{wxALIGN_CENTER<br>
101 wxALIGN_CENTER_VERTICAL<br>
102 wxALIGN_CENTRE_VERTICAL<br>
103 wxALIGN_CENTER_HORIZONTAL<br>
104 wxALIGN_CENTRE_HORIZONTAL,
105 The @c wxALIGN_* flags allow you to specify the alignment of the item
106 within the space allotted to it by the sizer, adjusted for the
113 @see @ref overview_sizer
115 class wxSizer
: public wxObject
120 Note that wxSizer is an abstract base class and may not be instantiated.
130 Appends a child to the sizer.
132 wxSizer itself is an abstract class, but the parameters are equivalent
133 in the derived classes that you will instantiate to use it so they are
137 The window to be added to the sizer. Its initial size (either set
138 explicitly by the user or calculated internally when using
139 wxDefaultSize) is interpreted as the minimal and in many cases also
142 A wxSizerFlags object that enables you to specify most of the above
143 parameters more conveniently.
145 wxSizerItem
* Add(wxWindow
* window
, const wxSizerFlags
& flags
);
148 Appends a child to the sizer.
150 wxSizer itself is an abstract class, but the parameters are equivalent
151 in the derived classes that you will instantiate to use it so they are
155 The window to be added to the sizer. Its initial size (either set
156 explicitly by the user or calculated internally when using
157 wxDefaultSize) is interpreted as the minimal and in many cases also
160 Although the meaning of this parameter is undefined in wxSizer, it
161 is used in wxBoxSizer to indicate if a child of a sizer can change
162 its size in the main orientation of the wxBoxSizer - where 0 stands
163 for not changeable and a value of more than zero is interpreted
164 relative to the value of other children of the same wxBoxSizer. For
165 example, you might have a horizontal wxBoxSizer with three
166 children, two of which are supposed to change their size with the
167 sizer. Then the two stretchable windows would get a value of 1 each
168 to make them grow and shrink equally with the sizer's horizontal
171 OR-combination of flags affecting sizer's behavior. See
172 @ref wxsizer_flags "wxSizer flags list" for details.
174 Determines the border width, if the flag parameter is set to
175 include any border flag.
177 Allows an extra object to be attached to the sizer item, for use in
178 derived classes when sizing information is more complex than the
179 proportion and flag will allow for.
181 wxSizerItem
* Add(wxWindow
* window
,
185 wxObject
* userData
= NULL
);
188 Appends a child to the sizer.
190 wxSizer itself is an abstract class, but the parameters are equivalent
191 in the derived classes that you will instantiate to use it so they are
195 The (child-)sizer to be added to the sizer. This allows placing a
196 child sizer in a sizer and thus to create hierarchies of sizers
197 (typically a vertical box as the top sizer and several horizontal
198 boxes on the level beneath).
200 A wxSizerFlags object that enables you to specify most of the above
201 parameters more conveniently.
203 wxSizerItem
* Add(wxSizer
* sizer
, const wxSizerFlags
& flags
);
206 Appends a child to the sizer.
208 wxSizer itself is an abstract class, but the parameters are equivalent
209 in the derived classes that you will instantiate to use it so they are
213 The (child-)sizer to be added to the sizer. This allows placing a
214 child sizer in a sizer and thus to create hierarchies of sizers
215 (typically a vertical box as the top sizer and several horizontal
216 boxes on the level beneath).
218 Although the meaning of this parameter is undefined in wxSizer, it
219 is used in wxBoxSizer to indicate if a child of a sizer can change
220 its size in the main orientation of the wxBoxSizer - where 0 stands
221 for not changeable and a value of more than zero is interpreted
222 relative to the value of other children of the same wxBoxSizer. For
223 example, you might have a horizontal wxBoxSizer with three
224 children, two of which are supposed to change their size with the
225 sizer. Then the two stretchable windows would get a value of 1 each
226 to make them grow and shrink equally with the sizer's horizontal
229 OR-combination of flags affecting sizer's behavior. See
230 @ref wxsizer_flags "wxSizer flags list" for details.
232 Determines the border width, if the flag parameter is set to
233 include any border flag.
235 Allows an extra object to be attached to the sizer item, for use in
236 derived classes when sizing information is more complex than the
237 proportion and flag will allow for.
239 wxSizerItem
* Add(wxSizer
* sizer
,
243 wxObject
* userData
= NULL
);
246 Appends a spacer child to the sizer.
248 wxSizer itself is an abstract class, but the parameters are equivalent
249 in the derived classes that you will instantiate to use it so they are
252 @a width and @a height specify the dimension of a spacer to be added to
253 the sizer. Adding spacers to sizers gives more flexibility in the
254 design of dialogs; imagine for example a horizontal box with two
255 buttons at the bottom of a dialog: you might want to insert a space
256 between the two buttons and make that space stretchable using the
257 proportion flag and the result will be that the left button will be
258 aligned with the left side of the dialog and the right button with the
259 right side - the space in between will shrink and grow with the dialog.
264 Height of the spacer.
266 Although the meaning of this parameter is undefined in wxSizer, it
267 is used in wxBoxSizer to indicate if a child of a sizer can change
268 its size in the main orientation of the wxBoxSizer - where 0 stands
269 for not changeable and a value of more than zero is interpreted
270 relative to the value of other children of the same wxBoxSizer. For
271 example, you might have a horizontal wxBoxSizer with three
272 children, two of which are supposed to change their size with the
273 sizer. Then the two stretchable windows would get a value of 1 each
274 to make them grow and shrink equally with the sizer's horizontal
277 OR-combination of flags affecting sizer's behavior. See
278 @ref wxsizer_flags "wxSizer flags list" for details.
280 Determines the border width, if the flag parameter is set to
281 include any border flag.
283 Allows an extra object to be attached to the sizer item, for use in
284 derived classes when sizing information is more complex than the
285 proportion and flag will allow for.
287 wxSizerItem
* Add(int width
, int height
,
291 wxObject
* userData
= NULL
);
294 Adds non-stretchable space to the sizer.
295 More readable way of calling:
297 wxSizer::Add(size, size, 0).
300 wxSizerItem
* AddSpacer(int size
);
303 Adds stretchable space to the sizer.
304 More readable way of calling:
306 wxSizer::Add(0, 0, prop).
309 wxSizerItem
* AddStretchSpacer(int prop
= 1);
312 This method is abstract and has to be overwritten by any derived class.
313 Here, the sizer will do the actual calculation of its children's minimal sizes.
315 virtual wxSize
CalcMin() = 0;
318 Detaches all children from the sizer.
319 If @a delete_windows is @true then child windows will also be deleted.
321 virtual void Clear(bool delete_windows
= false);
324 Computes client area size for @a window so that it matches the sizer's
325 minimal size. Unlike GetMinSize(), this method accounts for other
326 constraints imposed on @e window, namely display's size (returned size
327 will never be too large for the display) and maximum window size if
328 previously set by wxWindow::SetMaxSize().
330 The returned value is suitable for passing to wxWindow::SetClientSize() or
331 wxWindow::SetMinClientSize().
335 @see ComputeFittingWindowSize(), Fit()
337 wxSize
ComputeFittingClientSize(wxWindow
* window
);
340 Like ComputeFittingClientSize(), but converts the result into window
341 size. The returned value is suitable for passing to wxWindow::SetSize()
342 or wxWindow::SetMinSize().
346 @see ComputeFittingClientSize(), Fit()
348 wxSize
ComputeFittingWindowSize(wxWindow
* window
);
351 Detach the child @a window from the sizer without destroying it.
353 This method does not cause any layout or resizing to take place, call Layout()
354 to update the layout "on screen" after detaching a child from the sizer.
356 Returns @true if the child item was found and detached, @false otherwise.
360 virtual bool Detach(wxWindow
* window
);
363 Detach the child @a sizer from the sizer without destroying it.
365 This method does not cause any layout or resizing to take place, call Layout()
366 to update the layout "on screen" after detaching a child from the sizer.
368 Returns @true if the child item was found and detached, @false otherwise.
372 virtual bool Detach(wxSizer
* sizer
);
375 Detach a item at position @a index from the sizer without destroying it.
377 This method does not cause any layout or resizing to take place, call Layout()
378 to update the layout "on screen" after detaching a child from the sizer.
379 Returns @true if the child item was found and detached, @false otherwise.
383 virtual bool Detach(int index
);
386 Tell the sizer to resize the @a window so that its client area matches the
387 sizer's minimal size (ComputeFittingClientSize() is called to determine it).
388 This is commonly done in the constructor of the window itself, see sample
389 in the description of wxBoxSizer.
391 @return The new window size.
393 @see ComputeFittingClientSize(), ComputeFittingWindowSize()
395 wxSize
Fit(wxWindow
* window
);
398 Tell the sizer to resize the virtual size of the @a window to match the sizer's
399 minimal size. This will not alter the on screen size of the window, but may
400 cause the addition/removal/alteration of scrollbars required to view the virtual
401 area in windows which manage it.
403 @see wxScrolled::SetScrollbars(), SetVirtualSizeHints()
405 void FitInside(wxWindow
* window
);
409 Returns the list of the items in this sizer.
411 The elements of type-safe wxList @c wxSizerItemList are pointers to
412 objects of type wxSizerItem.
414 wxSizerItemList
& GetChildren();
415 const wxSizerItemList
& GetChildren() const;
419 Returns the window this sizer is used in or @NULL if none.
421 wxWindow
* GetContainingWindow() const;
424 Returns the number of items in the sizer.
426 If you just need to test whether the sizer is empty or not you can also
427 use IsEmpty() function.
429 size_t GetItemCount() const;
432 Finds wxSizerItem which holds the given @a window.
433 Use parameter @a recursive to search in subsizers too.
434 Returns pointer to item or @NULL.
436 wxSizerItem
* GetItem(wxWindow
* window
, bool recursive
= false);
439 Finds wxSizerItem which holds the given @a sizer.
440 Use parameter @a recursive to search in subsizers too.
441 Returns pointer to item or @NULL.
444 wxSizerItem
* GetItem(wxSizer
* sizer
, bool recursive
= false);
447 Finds wxSizerItem which is located in the sizer at position @a index.
448 Use parameter @a recursive to search in subsizers too.
449 Returns pointer to item or @NULL.
451 wxSizerItem
* GetItem(size_t index
);
454 Finds item of the sizer which has the given @e id.
455 This @a id is not the window id but the id of the wxSizerItem itself.
456 This is mainly useful for retrieving the sizers created from XRC resources.
457 Use parameter @a recursive to search in subsizers too.
458 Returns pointer to item or @NULL.
460 wxSizerItem
* GetItemById(int id
, bool recursive
= false);
463 Returns the minimal size of the sizer.
465 This is either the combined minimal size of all the children and their
466 borders or the minimal size set by SetMinSize(), depending on which is bigger.
467 Note that the returned value is client size, not window size.
468 In particular, if you use the value to set toplevel window's minimal or
469 actual size, use wxWindow::SetMinClientSize() or wxWindow::SetClientSize(),
470 not wxWindow::SetMinSize() or wxWindow::SetSize().
475 Returns the current position of the sizer.
477 wxPoint
GetPosition() const;
480 Returns the current size of the sizer.
482 wxSize
GetSize() const;
485 Hides the child @a window.
487 To make a sizer item disappear, use Hide() followed by Layout().
489 Use parameter @a recursive to hide elements found in subsizers.
490 Returns @true if the child item was found, @false otherwise.
492 @see IsShown(), Show()
494 bool Hide(wxWindow
* window
, bool recursive
= false);
497 Hides the child @a sizer.
499 To make a sizer item disappear, use Hide() followed by Layout().
501 Use parameter @a recursive to hide elements found in subsizers.
502 Returns @true if the child item was found, @false otherwise.
504 @see IsShown(), Show()
506 bool Hide(wxSizer
* sizer
, bool recursive
= false);
509 Hides the item at position @a index.
511 To make a sizer item disappear, use Hide() followed by Layout().
513 Use parameter @a recursive to hide elements found in subsizers.
514 Returns @true if the child item was found, @false otherwise.
516 @see IsShown(), Show()
518 bool Hide(size_t index
);
521 Insert a child into the sizer before any existing item at @a index.
523 See Add() for the meaning of the other parameters.
525 wxSizerItem
* Insert(size_t index
, wxWindow
* window
,
526 const wxSizerFlags
& flags
);
529 Insert a child into the sizer before any existing item at @a index.
531 See Add() for the meaning of the other parameters.
533 wxSizerItem
* Insert(size_t index
, wxWindow
* window
,
537 wxObject
* userData
= NULL
);
540 Insert a child into the sizer before any existing item at @a index.
542 See Add() for the meaning of the other parameters.
544 wxSizerItem
* Insert(size_t index
, wxSizer
* sizer
,
545 const wxSizerFlags
& flags
);
548 Insert a child into the sizer before any existing item at @a index.
550 See Add() for the meaning of the other parameters.
552 wxSizerItem
* Insert(size_t index
, wxSizer
* sizer
,
556 wxObject
* userData
= NULL
);
559 Insert a child into the sizer before any existing item at @a index.
561 See Add() for the meaning of the other parameters.
563 wxSizerItem
* Insert(size_t index
, int width
, int height
,
567 wxObject
* userData
= NULL
);
570 Inserts non-stretchable space to the sizer.
571 More readable way of calling wxSizer::Insert(size, size, 0).
573 wxSizerItem
* InsertSpacer(size_t index
, int size
);
576 Inserts stretchable space to the sizer.
577 More readable way of calling wxSizer::Insert(0, 0, prop).
579 wxSizerItem
* InsertStretchSpacer(size_t index
, int prop
= 1);
582 Return @true if the sizer has no elements.
586 bool IsEmpty() const;
589 Returns @true if the @a window is shown.
591 @see Hide(), Show(), wxSizerItem::IsShown()
593 bool IsShown(wxWindow
* window
) const;
596 Returns @true if the @a sizer is shown.
598 @see Hide(), Show(), wxSizerItem::IsShown()
600 bool IsShown(wxSizer
* sizer
) const;
603 Returns @true if the item at @a index is shown.
605 @see Hide(), Show(), wxSizerItem::IsShown()
607 bool IsShown(size_t index
) const;
610 Call this to force layout of the children anew, e.g. after having added a child
611 to or removed a child (window, other sizer or space) from the sizer while
612 keeping the current dimension.
614 virtual void Layout();
617 Same as Add(), but prepends the items to the beginning of the
618 list of items (windows, subsizers or spaces) owned by this sizer.
620 wxSizerItem
* Prepend(wxWindow
* window
, const wxSizerFlags
& flags
);
623 Same as Add(), but prepends the items to the beginning of the
624 list of items (windows, subsizers or spaces) owned by this sizer.
626 wxSizerItem
* Prepend(wxWindow
* window
, int proportion
= 0,
629 wxObject
* userData
= NULL
);
632 Same as Add(), but prepends the items to the beginning of the
633 list of items (windows, subsizers or spaces) owned by this sizer.
635 wxSizerItem
* Prepend(wxSizer
* sizer
,
636 const wxSizerFlags
& flags
);
639 Same as Add(), but prepends the items to the beginning of the
640 list of items (windows, subsizers or spaces) owned by this sizer.
642 wxSizerItem
* Prepend(wxSizer
* sizer
, int proportion
= 0,
645 wxObject
* userData
= NULL
);
648 Same as Add(), but prepends the items to the beginning of the
649 list of items (windows, subsizers or spaces) owned by this sizer.
651 wxSizerItem
* Prepend(int width
, int height
,
655 wxObject
* userData
= NULL
);
658 Prepends non-stretchable space to the sizer.
659 More readable way of calling wxSizer::Prepend(size, size, 0).
661 wxSizerItem
* PrependSpacer(int size
);
664 Prepends stretchable space to the sizer.
665 More readable way of calling wxSizer::Prepend(0, 0, prop).
667 wxSizerItem
* PrependStretchSpacer(int prop
= 1);
670 This method is abstract and has to be overwritten by any derived class.
671 Here, the sizer will do the actual calculation of its children's
674 virtual void RecalcSizes() = 0;
677 Removes a child window from the sizer, but does @b not destroy it
678 (because windows are owned by their parent window, not the sizer).
681 The overload of this method taking a wxWindow* parameter
682 is deprecated as it does not destroy the window as would usually be
683 expected from Remove(). You should use Detach() in new code instead.
684 There is currently no wxSizer method that will both detach and destroy
687 @note This method does not cause any layout or resizing to take
688 place, call Layout() to update the layout "on screen" after
689 removing a child from the sizer.
691 @return @true if the child item was found and removed, @false otherwise.
693 virtual bool Remove(wxWindow
* window
);
696 Removes a sizer child from the sizer and destroys it.
698 @note This method does not cause any layout or resizing to take
699 place, call Layout() to update the layout "on screen" after
700 removing a child from the sizer.
702 @param sizer The wxSizer to be removed.
704 @return @true if the child item was found and removed, @false otherwise.
706 virtual bool Remove(wxSizer
* sizer
);
709 Removes a child from the sizer and destroys it if it is a sizer or a
710 spacer, but not if it is a window (because windows are owned by their
711 parent window, not the sizer).
713 @note This method does not cause any layout or resizing to take
714 place, call Layout() to update the layout "on screen" after
715 removing a child from the sizer.
718 The position of the child in the sizer, e.g. 0 for the first item.
720 @return @true if the child item was found and removed, @false otherwise.
722 virtual bool Remove(int index
);
725 Detaches the given @a oldwin from the sizer and replaces it with the
726 given @a newwin. The detached child window is @b not deleted (because
727 windows are owned by their parent window, not the sizer).
729 Use parameter @a recursive to search the given element recursively in subsizers.
731 This method does not cause any layout or resizing to take place,
732 call Layout() to update the layout "on screen" after replacing a
733 child from the sizer.
735 Returns @true if the child item was found and removed, @false otherwise.
737 virtual bool Replace(wxWindow
* oldwin
, wxWindow
* newwin
,
738 bool recursive
= false);
741 Detaches the given @a oldsz from the sizer and replaces it with the
742 given @a newsz. The detached child sizer is deleted.
744 Use parameter @a recursive to search the given element recursively in subsizers.
746 This method does not cause any layout or resizing to take place,
747 call Layout() to update the layout "on screen" after replacing a
748 child from the sizer.
750 Returns @true if the child item was found and removed, @false otherwise.
752 virtual bool Replace(wxSizer
* oldsz
, wxSizer
* newsz
,
753 bool recursive
= false);
756 Detaches the given item at position @a index from the sizer and
757 replaces it with the given wxSizerItem @a newitem.
759 The detached child is deleted @b only if it is a sizer or a spacer
760 (but not if it is a wxWindow because windows are owned by their
761 parent window, not the sizer).
763 This method does not cause any layout or resizing to take place,
764 call Layout() to update the layout "on screen" after replacing a
765 child from the sizer.
767 Returns @true if the child item was found and removed, @false otherwise.
769 virtual bool Replace(size_t index
, wxSizerItem
* newitem
);
772 Call this to force the sizer to take the given dimension and thus force
773 the items owned by the sizer to resize themselves according to the
774 rules defined by the parameter in the Add() and Prepend() methods.
776 void SetDimension(int x
, int y
, int width
, int height
);
781 void SetDimension(const wxPoint
& pos
, const wxSize
& size
);
784 Set an item's minimum size by window, sizer, or position.
786 The item will be found recursively in the sizer's descendants.
787 This function enables an application to set the size of an item after
790 @see wxSizerItem::SetMinSize()
792 bool SetItemMinSize(wxWindow
* window
, int width
, int height
);
795 Set an item's minimum size by window, sizer, or position.
797 The item will be found recursively in the sizer's descendants.
798 This function enables an application to set the size of an item after
801 @see wxSizerItem::SetMinSize()
803 bool SetItemMinSize(wxSizer
* sizer
, int width
, int height
);
806 Set an item's minimum size by window, sizer, or position.
808 The item will be found recursively in the sizer's descendants.
809 This function enables an application to set the size of an item after
812 @see wxSizerItem::SetMinSize()
814 bool SetItemMinSize(size_t index
, int width
, int height
);
817 Call this to give the sizer a minimal size.
819 Normally, the sizer will calculate its minimal size based purely on how
820 much space its children need. After calling this method GetMinSize()
821 will return either the minimal size as requested by its children or the
822 minimal size set here, depending on which is bigger.
824 void SetMinSize(const wxSize
& size
);
829 void SetMinSize(int width
, int height
);
832 This method first calls Fit() and then wxTopLevelWindow::SetSizeHints()
833 on the @a window passed to it.
835 This only makes sense when @a window is actually a wxTopLevelWindow such
836 as a wxFrame or a wxDialog, since SetSizeHints only has any effect in these classes.
837 It does nothing in normal windows or controls.
839 This method is implicitly used by wxWindow::SetSizerAndFit() which is
840 commonly invoked in the constructor of a toplevel window itself (see
841 the sample in the description of wxBoxSizer) if the toplevel window is
844 void SetSizeHints(wxWindow
* window
);
847 Tell the sizer to set the minimal size of the @a window virtual area to match
848 the sizer's minimal size. For windows with managed scrollbars this will set them
851 @deprecated @todo provide deprecation description
853 @see wxScrolled::SetScrollbars()
855 void SetVirtualSizeHints(wxWindow
* window
);
858 Shows or hides the @a window.
859 To make a sizer item disappear or reappear, use Show() followed by Layout().
861 Use parameter @a recursive to show or hide elements found in subsizers.
863 Returns @true if the child item was found, @false otherwise.
865 @see Hide(), IsShown()
867 bool Show(wxWindow
* window
, bool show
= true,
868 bool recursive
= false);
871 Shows or hides @a sizer.
872 To make a sizer item disappear or reappear, use Show() followed by Layout().
874 Use parameter @a recursive to show or hide elements found in subsizers.
876 Returns @true if the child item was found, @false otherwise.
878 @see Hide(), IsShown()
880 bool Show(wxSizer
* sizer
, bool show
= true,
881 bool recursive
= false);
884 Shows the item at @a index.
885 To make a sizer item disappear or reappear, use Show() followed by Layout().
887 Returns @true if the child item was found, @false otherwise.
889 @see Hide(), IsShown()
891 bool Show(size_t index
, bool show
= true);
896 @class wxStdDialogButtonSizer
898 This class creates button layouts which conform to the standard button spacing
899 and ordering defined by the platform or toolkit's user interface guidelines
900 (if such things exist). By using this class, you can ensure that all your
901 standard dialogs look correct on all major platforms. Currently it conforms to
902 the Windows, GTK+ and Mac OS X human interface guidelines.
904 When there aren't interface guidelines defined for a particular platform or
905 toolkit, wxStdDialogButtonSizer reverts to the Windows implementation.
907 To use this class, first add buttons to the sizer by calling
908 wxStdDialogButtonSizer::AddButton (or wxStdDialogButtonSizer::SetAffirmativeButton,
909 wxStdDialogButtonSizer::SetNegativeButton or wxStdDialogButtonSizer::SetCancelButton)
910 and then call Realize in order to create the actual button layout used.
911 Other than these special operations, this sizer works like any other sizer.
913 If you add a button with wxID_SAVE, on Mac OS X the button will be renamed to
914 "Save" and the wxID_NO button will be renamed to "Don't Save" in accordance
915 with the Mac OS X Human Interface Guidelines.
920 @see wxSizer, @ref overview_sizer, wxDialog::CreateButtonSizer
922 class wxStdDialogButtonSizer
: public wxBoxSizer
926 Constructor for a wxStdDialogButtonSizer.
928 wxStdDialogButtonSizer();
931 Adds a button to the wxStdDialogButtonSizer. The @a button must have
932 one of the following identifiers:
943 void AddButton(wxButton
* button
);
946 Rearranges the buttons and applies proper spacing between buttons to make
947 them match the platform or toolkit's interface guidelines.
952 Sets the affirmative button for the sizer.
954 This allows you to use identifiers other than the standard identifiers
957 void SetAffirmativeButton(wxButton
* button
);
960 Sets the cancel button for the sizer.
962 This allows you to use identifiers other than the standard identifiers
965 void SetCancelButton(wxButton
* button
);
968 Sets the negative button for the sizer.
970 This allows you to use identifiers other than the standard identifiers
973 void SetNegativeButton(wxButton
* button
);
981 The wxSizerItem class is used to track the position, size and other
982 attributes of each item managed by a wxSizer.
984 It is not usually necessary to use this class because the sizer elements can
985 also be identified by their positions or window or sizer pointers but sometimes
986 it may be more convenient to use it directly.
991 class wxSizerItem
: public wxObject
995 Construct a sizer item for tracking a spacer.
997 wxSizerItem(int width
, int height
, int proportion
, int flag
,
998 int border
, wxObject
* userData
);
1002 Construct a sizer item for tracking a window.
1004 wxSizerItem(wxWindow
* window
, const wxSizerFlags
& flags
);
1005 wxSizerItem(wxWindow
* window
, int proportion
, int flag
,
1007 wxObject
* userData
);
1012 Construct a sizer item for tracking a subsizer.
1014 wxSizerItem(wxSizer
* window
, const wxSizerFlags
& flags
);
1015 wxSizerItem(wxSizer
* sizer
, int proportion
, int flag
,
1017 wxObject
* userData
);
1021 Deletes the user data and subsizer, if any.
1023 virtual ~wxSizerItem();
1026 Calculates the minimum desired size for the item, including any space
1029 virtual wxSize
CalcMin();
1032 Destroy the window or the windows in a subsizer, depending on the type
1035 virtual void DeleteWindows();
1038 Enable deleting the SizerItem without destroying the contained sizer.
1043 Return the border attribute.
1045 int GetBorder() const;
1048 Return the flags attribute.
1050 See @ref wxsizer_flags "wxSizer flags list" for details.
1052 int GetFlag() const;
1055 Return the numeric id of wxSizerItem, or @c wxID_NONE if the id has
1061 Get the minimum size needed for the item.
1063 wxSize
GetMinSize() const;
1066 Sets the minimum size to be allocated for this item.
1068 If this item is a window, the @a size is also passed to
1069 wxWindow::SetMinSize().
1071 void SetMinSize(const wxSize
& size
);
1076 void SetMinSize(int x
, int y
);
1079 What is the current position of the item, as set in the last Layout.
1081 wxPoint
GetPosition() const;
1084 Get the proportion item attribute.
1086 int GetProportion() const;
1089 Get the ration item attribute.
1091 float GetRatio() const;
1094 Get the rectangle of the item on the parent window, excluding borders.
1096 virtual wxRect
GetRect();
1099 Get the current size of the item, as set in the last Layout.
1101 virtual wxSize
GetSize() const;
1104 If this item is tracking a sizer, return it. @NULL otherwise.
1106 wxSizer
* GetSizer() const;
1109 If this item is tracking a spacer, return its size.
1111 wxSize
GetSpacer() const;
1114 Get the userData item attribute.
1116 wxObject
* GetUserData() const;
1119 If this item is tracking a window then return it. @NULL otherwise.
1121 wxWindow
* GetWindow() const;
1124 Returns @true if this item is a window or a spacer and it is shown or
1125 if this item is a sizer and not all of its elements are hidden.
1127 In other words, for sizer items, all of the child elements must be
1128 hidden for the sizer itself to be considered hidden.
1130 As an exception, if the @c wxRESERVE_SPACE_EVEN_IF_HIDDEN flag was
1131 used for this sizer item, then IsShown() always returns @true for it
1132 (see wxSizerFlags::ReserveSpaceEvenIfHidden()).
1134 bool IsShown() const;
1137 Is this item a sizer?
1139 bool IsSizer() const;
1142 Is this item a spacer?
1144 bool IsSpacer() const;
1147 Is this item a window?
1149 bool IsWindow() const;
1152 Set the border item attribute.
1154 void SetBorder(int border
);
1157 Set the position and size of the space allocated to the sizer, and
1158 adjust the position and size of the item to be within that space
1159 taking alignment and borders into account.
1161 virtual void SetDimension(const wxPoint
& pos
, const wxSize
& size
);
1164 Set the flag item attribute.
1166 void SetFlag(int flag
);
1169 Sets the numeric id of the wxSizerItem to @e id.
1176 void SetInitSize(int x
, int y
);
1179 Set the proportion item attribute.
1181 void SetProportion(int proportion
);
1185 Set the ratio item attribute.
1187 void SetRatio(int width
, int height
);
1188 void SetRatio(wxSize size
);
1189 void SetRatio(float ratio
);
1193 Set the sizer tracked by this item.
1194 @deprecated @todo provide deprecation description
1196 void SetSizer(wxSizer
* sizer
);
1199 Set the size of the spacer tracked by this item.
1200 @deprecated @todo provide deprecation description
1202 void SetSpacer(const wxSize
& size
);
1205 Set the window to be tracked by this item.
1206 @deprecated @todo provide deprecation description
1208 void SetWindow(wxWindow
* window
);
1211 Set the show item attribute, which sizers use to determine if the item
1212 is to be made part of the layout or not. If the item is tracking a
1213 window then it is shown or hidden as needed.
1215 void Show(bool show
);
1223 Container for sizer items flags providing readable names for them.
1225 Normally, when you add an item to a sizer via wxSizer::Add, you have to
1226 specify a lot of flags and parameters which can be unwieldy. This is where
1227 wxSizerFlags comes in: it allows you to specify all parameters using the
1228 named methods instead. For example, instead of
1231 sizer->Add(ctrl, 0, wxEXPAND | wxALL, 10);
1237 sizer->Add(ctrl, wxSizerFlags().Expand().Border(wxALL, 10));
1240 This is more readable and also allows you to create wxSizerFlags objects which
1241 can be reused for several sizer items.
1244 wxSizerFlags flagsExpand(1);
1245 flagsExpand.Expand().Border(wxALL, 10);
1247 sizer->Add(ctrl1, flagsExpand);
1248 sizer->Add(ctrl2, flagsExpand);
1251 Note that by specification, all methods of wxSizerFlags return the wxSizerFlags
1252 object itself to allowing chaining multiple methods calls like in the examples
1256 @category{winlayout}
1264 Creates the wxSizer with the proportion specified by @a proportion.
1266 wxSizerFlags(int proportion
= 0);
1269 Sets the alignment of this wxSizerFlags to @a align.
1271 This method replaces the previously set alignment with the specified one.
1274 Combination of @c wxALIGN_XXX bit masks.
1276 @see Top(), Left(), Right(), Bottom(), Centre()
1278 wxSizerFlags
& Align(int alignment
);
1281 Sets the wxSizerFlags to have a border of a number of pixels specified
1282 by @a borderinpixels with the directions specified by @a direction.
1284 wxSizerFlags
& Border(int direction
, int borderinpixels
);
1287 Sets the wxSizerFlags to have a border with size as returned by
1291 Direction(s) to apply the border in.
1293 wxSizerFlags
& Border(int direction
= wxALL
);
1296 Aligns the object to the bottom, similar for @c Align(wxALIGN_BOTTOM).
1298 Unlike Align(), this method doesn't change the horizontal alignment of
1301 wxSizerFlags
& Bottom();
1304 Sets the object of the wxSizerFlags to center itself in the area it is
1307 wxSizerFlags
& Center();
1310 Center() for people with the other dialect of English.
1312 wxSizerFlags
& Centre();
1315 Sets the border in the given @a direction having twice the default
1318 wxSizerFlags
& DoubleBorder(int direction
= wxALL
);
1321 Sets the border in left and right directions having twice the default
1324 wxSizerFlags
& DoubleHorzBorder();
1327 Sets the object of the wxSizerFlags to expand to fill as much area as
1330 wxSizerFlags
& Expand();
1333 Set the @c wxFIXED_MINSIZE flag which indicates that the initial size
1334 of the window should be also set as its minimal size.
1336 wxSizerFlags
& FixedMinSize();
1339 Set the @c wxRESERVE_SPACE_EVEN_IF_HIDDEN flag. Normally wxSizers
1340 don't allocate space for hidden windows or other items. This flag
1341 overrides this behavior so that sufficient space is allocated for the
1342 window even if it isn't visible. This makes it possible to dynamically
1343 show and hide controls without resizing parent dialog, for example.
1347 wxSizerFlags
& ReserveSpaceEvenIfHidden();
1350 Returns the border used by default in Border() method.
1352 static int GetDefaultBorder();
1355 Aligns the object to the left, similar for @c Align(wxALIGN_LEFT).
1357 Unlike Align(), this method doesn't change the vertical alignment of
1360 wxSizerFlags
& Left();
1363 Sets the proportion of this wxSizerFlags to @e proportion
1365 wxSizerFlags
& Proportion(int proportion
);
1368 Aligns the object to the right, similar for @c Align(wxALIGN_RIGHT).
1370 Unlike Align(), this method doesn't change the vertical alignment of
1373 wxSizerFlags
& Right();
1376 Set the @c wx_SHAPED flag which indicates that the elements should
1377 always keep the fixed width to height ratio equal to its original value.
1379 wxSizerFlags
& Shaped();
1382 Aligns the object to the top, similar for @c Align(wxALIGN_TOP).
1384 Unlike Align(), this method doesn't change the horizontal alignment of
1387 wxSizerFlags
& Top();
1390 Sets the border in the given @a direction having thrice the default
1393 wxSizerFlags
& TripleBorder(int direction
= wxALL
);
1398 Values which define the behaviour for resizing wxFlexGridSizer cells in the
1399 "non-flexible" direction.
1401 enum wxFlexSizerGrowMode
1403 /// Don't resize the cells in non-flexible direction at all.
1404 wxFLEX_GROWMODE_NONE
,
1406 /// Uniformly resize only the specified ones (default).
1407 wxFLEX_GROWMODE_SPECIFIED
,
1409 /// Uniformly resize all cells.
1415 @class wxFlexGridSizer
1417 A flex grid sizer is a sizer which lays out its children in a two-dimensional
1418 table with all table fields in one row having the same height and all fields
1419 in one column having the same width, but all rows or all columns are not
1420 necessarily the same height or width as in the wxGridSizer.
1422 Since wxWidgets 2.5.0, wxFlexGridSizer can also size items equally in one
1423 direction but unequally ("flexibly") in the other. If the sizer is only
1424 flexible in one direction (this can be changed using wxFlexGridSizer::SetFlexibleDirection),
1425 it needs to be decided how the sizer should grow in the other ("non-flexible")
1426 direction in order to fill the available space.
1427 The wxFlexGridSizer::SetNonFlexibleGrowMode() method serves this purpose.
1430 @category{winlayout}
1432 @see wxSizer, @ref overview_sizer
1434 class wxFlexGridSizer
: public wxGridSizer
1439 Constructor for a wxFlexGridSizer.
1441 @a rows and @a cols determine the number of columns and rows in the sizer -
1442 if either of the parameters is zero, it will be calculated to form the
1443 total number of children in the sizer, thus making the sizer grow
1446 @a vgap and @a hgap define extra space between all children.
1448 wxFlexGridSizer(int rows
, int cols
, int vgap
, int hgap
);
1449 wxFlexGridSizer(int cols
, int vgap
= 0, int hgap
= 0);
1453 Specifies that column @a idx (starting from zero) should be grown if
1454 there is extra space available to the sizer.
1456 The @a proportion parameter has the same meaning as the stretch factor
1457 for the sizers() except that if all proportions are 0, then all columns
1458 are resized equally (instead of not being resized at all).
1460 Notice that the row must not be already growable, if you need to change
1461 the proportion you must call RemoveGrowableCol() first and then make it
1462 growable (with a different proportion) again. You can use IsColGrowable()
1463 to check whether a column is already growable.
1465 void AddGrowableCol(size_t idx
, int proportion
= 0);
1468 Specifies that row idx (starting from zero) should be grown if there
1469 is extra space available to the sizer.
1471 This is identical to AddGrowableCol() except that it works with rows
1474 void AddGrowableRow(size_t idx
, int proportion
= 0);
1477 Returns a wxOrientation value that specifies whether the sizer flexibly
1478 resizes its columns, rows, or both (default).
1481 One of the following values:
1482 - wxVERTICAL: Rows are flexibly sized.
1483 - wxHORIZONTAL: Columns are flexibly sized.
1484 - wxBOTH: Both rows and columns are flexibly sized (this is the default value).
1486 @see SetFlexibleDirection()
1488 int GetFlexibleDirection() const;
1491 Returns the value that specifies how the sizer grows in the "non-flexible"
1492 direction if there is one.
1494 The behaviour of the elements in the flexible direction (i.e. both rows
1495 and columns by default, or rows only if GetFlexibleDirection() is @c
1496 wxVERTICAL or columns only if it is @c wxHORIZONTAL) is always governed
1497 by their proportion as specified in the call to AddGrowableRow() or
1498 AddGrowableCol(). What happens in the other direction depends on the
1499 value of returned by this function as described below.
1502 One of the following values:
1503 - wxFLEX_GROWMODE_NONE: Sizer doesn't grow its elements at all in
1504 the non-flexible direction.
1505 - wxFLEX_GROWMODE_SPECIFIED: Sizer honors growable columns/rows set
1506 with AddGrowableCol() and AddGrowableRow() in the non-flexible
1507 direction as well. In this case equal sizing applies to minimum
1508 sizes of columns or rows (this is the default value).
1509 - wxFLEX_GROWMODE_ALL: Sizer equally stretches all columns or rows in
1510 the non-flexible direction, independently of the proportions
1511 applied in the flexible direction.
1513 @see SetFlexibleDirection(), SetNonFlexibleGrowMode()
1515 wxFlexSizerGrowMode
GetNonFlexibleGrowMode() const;
1518 Returns @true if column @a idx is growable.
1522 bool IsColGrowable(size_t idx
);
1525 Returns @true if row @a idx is growable.
1529 bool IsRowGrowable(size_t idx
);
1532 Specifies that column idx is no longer growable.
1534 void RemoveGrowableCol(size_t idx
);
1537 Specifies that row idx is no longer growable.
1539 void RemoveGrowableRow(size_t idx
);
1542 Specifies whether the sizer should flexibly resize its columns, rows, or both.
1544 Argument @a direction can be @c wxVERTICAL, @c wxHORIZONTAL or @c wxBOTH
1545 (which is the default value). Any other value is ignored.
1546 See GetFlexibleDirection() for the explanation of these values.
1547 Note that this method does not trigger relayout.
1549 void SetFlexibleDirection(int direction
);
1552 Specifies how the sizer should grow in the non-flexible direction if
1553 there is one (so SetFlexibleDirection() must have been called previously).
1555 Argument @a mode can be one of those documented in GetNonFlexibleGrowMode(),
1556 please see there for their explanation.
1557 Note that this method does not trigger relayout.
1559 void SetNonFlexibleGrowMode(wxFlexSizerGrowMode mode
);
1566 A grid sizer is a sizer which lays out its children in a two-dimensional
1567 table with all table fields having the same size, i.e. the width of each
1568 field is the width of the widest child, the height of each field is the
1569 height of the tallest child.
1572 @category{winlayout}
1574 @see wxSizer, @ref overview_sizer
1576 class wxGridSizer
: public wxSizer
1581 Constructor for a wxGridSizer.
1583 @a rows and @a cols determine the number of columns and rows in the sizer -
1584 if either of the parameters is zero, it will be calculated to form the
1585 total number of children in the sizer, thus making the sizer grow dynamically.
1587 @a vgap and @a hgap define extra space between all children.
1589 wxGridSizer(int rows
, int cols
, int vgap
, int hgap
);
1590 wxGridSizer(int cols
, int vgap
= 0, int hgap
= 0);
1594 Returns the number of columns in the sizer.
1596 int GetCols() const;
1599 Returns the horizontal gap (in pixels) between cells in the sizer.
1601 int GetHGap() const;
1604 Returns the number of rows in the sizer.
1606 int GetRows() const;
1609 Returns the vertical gap (in pixels) between the cells in the sizer.
1611 int GetVGap() const;
1614 Sets the number of columns in the sizer.
1616 void SetCols(int cols
);
1619 Sets the horizontal gap (in pixels) between cells in the sizer.
1621 void SetHGap(int gap
);
1624 Sets the number of rows in the sizer.
1626 void SetRows(int rows
);
1629 Sets the vertical gap (in pixels) between the cells in the sizer.
1631 void SetVGap(int gap
);
1637 @class wxStaticBoxSizer
1639 wxStaticBoxSizer is a sizer derived from wxBoxSizer but adds a static
1640 box around the sizer.
1641 This static box may be either created independently or the sizer may create
1642 it itself as a convenience. In any case, the sizer owns the wxStaticBox control
1643 and will delete it, if it is deleted.
1646 @category{winlayout}
1648 @see wxSizer, wxStaticBox, wxBoxSizer, @ref overview_sizer
1650 class wxStaticBoxSizer
: public wxBoxSizer
1654 This constructor uses an already existing static box.
1656 It takes the associated static box and the orientation @a orient, which
1657 can be either @c wxVERTICAL or @c wxHORIZONTAL as parameters.
1659 wxStaticBoxSizer(wxStaticBox
* box
, int orient
);
1662 This constructor creates a new static box with the given label and parent window.
1664 wxStaticBoxSizer(int orient
, wxWindow
*parent
,
1665 const wxString
& label
= wxEmptyString
);
1668 Returns the static box associated with the sizer.
1670 wxStaticBox
* GetStaticBox() const;
1678 The basic idea behind a box sizer is that windows will most often be laid out
1679 in rather simple basic geometry, typically in a row or a column or several
1680 hierarchies of either.
1682 For more information, please see @ref overview_sizer_box.
1685 @category{winlayout}
1687 @see wxSizer, @ref overview_sizer
1689 class wxBoxSizer
: public wxSizer
1693 Constructor for a wxBoxSizer. @a orient may be either of wxVERTICAL
1694 or wxHORIZONTAL for creating either a column sizer or a row sizer.
1696 wxBoxSizer(int orient
);
1699 Implements the calculation of a box sizer's minimal.
1701 It is used internally only and must not be called by the user.
1702 Documented for information.
1704 virtual wxSize
CalcMin();
1707 Returns the orientation of the box sizer, either wxVERTICAL
1710 int GetOrientation() const;
1713 Implements the calculation of a box sizer's dimensions and then sets
1714 the size of its children (calling wxWindow::SetSize if the child is a window).
1716 It is used internally only and must not be called by the user
1717 (call Layout() if you want to resize). Documented for information.