1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface defs for the Sizers
7 // Created: 18-Sept-1999
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
21 //---------------------------------------------------------------------------
25 "Normally, when you add an item to a sizer via `wx.Sizer.Add`, you have
26 to specify a lot of flags and parameters which can be unwieldy. This
27 is where wx.SizerFlags comes in: it allows you to specify all
28 parameters using the named methods instead. For example, instead of::
30 sizer.Add(ctrl, 0, wx.EXPAND | wx.ALL, 10)
34 sizer.AddF(ctrl, wx.SizerFlags().Expand().Border(wx.ALL, 10))
36 This is more readable and also allows you to create wx.SizerFlags
37 objects which can be reused for several sizer items.::
39 flagsExpand = wx.SizerFlags(1)
40 flagsExpand.Expand().Border(wx.ALL, 10)
41 sizer.AddF(ctrl1, flagsExpand)
42 sizer.AddF(ctrl2, flagsExpand)
44 Note that by specification, all methods of wx.SizerFlags return the
45 wx.SizerFlags object itself allowing chaining multiple method calls
46 like in the examples above.", "");
51 // construct the flags object initialized with the given proportion (0 by
54 wxSizerFlags(int proportion = 0),
55 "Constructs the flags object with the specified proportion.", "");
59 // This typemap ensures that the returned object is the same
60 // Python instance as what was passed in as `self`, instead of
61 // creating a new proxy as SWIG would normally do.
62 %typemap(out) wxSizerFlags& { $result = $self; Py_INCREF($result); }
65 wxSizerFlags& , Proportion(int proportion),
66 "Sets the item's proportion value.", "");
69 wxSizerFlags& , Align(int alignment),
70 "Sets the item's alignment", "");
73 wxSizerFlags& , Expand(),
74 "Sets the wx.EXPAND flag, which will cause the item to be expanded to
75 fill as much space as it is given by the sizer.", "");
78 wxSizerFlags& , Centre(),
79 "Same as `Center` for those with an alternate dialect of English.", "");
82 wxSizerFlags& , Center(),
83 "Sets the centering alignment flags.", "");
86 wxSizerFlags& , Left(),
87 "Aligns the object to the left, a shortcut for calling
88 Align(wx.ALIGN_LEFT)", "");
91 wxSizerFlags& , Right(),
92 "Aligns the object to the right, a shortcut for calling
93 Align(wx.ALIGN_RIGHT)", "");
96 wxSizerFlags& , Top(),
97 "Aligns the object to the top of the available space, a shortcut for
98 calling Align(wx.ALIGN_TOP)", "");
101 wxSizerFlags& , Bottom(),
102 "Aligns the object to the bottom of the available space, a shortcut for
103 calling Align(wx.ALIGN_BOTTOM)", "");
106 wxSizerFlags& , Shaped(),
107 "Sets the wx.SHAPED flag.", "");
110 wxSizerFlags& , FixedMinSize(),
111 "Sets the wx.FIXED_MINSIZE flag.", "");
117 wxSizerFlags& , Border(int direction=wxALL, int borderInPixels=-1),
118 "Sets the border of the item in the direction(s) or sides given by the
119 direction parameter. If the borderInPixels value is not given then
120 the default border size (see `GetDefaultBorder`) will be used.", "")
122 if (borderInPixels == -1)
123 return self->Border(direction);
125 return self->Border(direction, borderInPixels);
130 wxSizerFlags& , DoubleBorder(int direction = wxALL),
131 "Sets the border in the given direction to twice the default border
135 wxSizerFlags& , TripleBorder(int direction = wxALL),
136 "Sets the border in the given direction to three times the default
140 wxSizerFlags& , HorzBorder(),
141 "Sets the left and right borders to the default border size.", "");
144 wxSizerFlags& , DoubleHorzBorder(),
145 "Sets the left and right borders to twice the default border size.", "");
149 %typemap(out) wxSizerFlags& ;
154 static int , GetDefaultBorder(),
155 "Returns the default border size used by the other border methods", "");
159 int , GetProportion() const,
160 "Returns the proportion value to be used in the sizer item.", "");
163 int , GetFlags() const,
164 "Returns the flags value to be used in the sizer item.", "");
167 int , GetBorderInPixels() const,
168 "Returns the border value in pixels to be used in the sizer item.", "");
171 //---------------------------------------------------------------------------
174 "The wx.SizerItem class is used to track the position, size and other
175 attributes of each item managed by a `wx.Sizer`. It is not usually
176 necessary to use this class because the sizer elements can also be
177 identified by their positions or window or sizer references but
178 sometimes it may be more convenient to use wx.SizerItem directly.
179 Also, custom classes derived from `wx.PySizer` will probably need to
180 use the collection of wx.SizerItems held by wx.Sizer when calculating
183 :see: `wx.Sizer`, `wx.GBSizerItem`", "");
185 class wxSizerItem : public wxObject {
189 "Constructs an empty wx.SizerItem. Either a window, sizer or spacer
190 size will need to be set before this item can be used in a Sizer.
192 You will probably never need to create a wx.SizerItem directly as they
193 are created automatically when the sizer's Add, Insert or Prepend
196 :see: `wx.SizerItemSpacer`, `wx.SizerItemWindow`, `wx.SizerItemSizer`", "");
204 wxSizerItem( wxWindow *window, int proportion, int flag,
205 int border, PyObject* userData=NULL ),
206 "Constructs a `wx.SizerItem` for tracking a window.", "");
208 %RenameCtor(SizerItemWindow, wxSizerItem( wxWindow *window, int proportion, int flag,
209 int border, PyObject* userData=NULL ))
211 wxPyUserData* data = NULL;
213 wxPyBlock_t blocked = wxPyBeginBlockThreads();
214 data = new wxPyUserData(userData);
215 wxPyEndBlockThreads(blocked);
217 return new wxSizerItem(window, proportion, flag, border, data);
222 wxSizerItem( int width, int height, int proportion, int flag,
223 int border, PyObject* userData=NULL),
224 "Constructs a `wx.SizerItem` for tracking a spacer.", "");
226 %RenameCtor(SizerItemSpacer, wxSizerItem( int width, int height, int proportion, int flag,
227 int border, PyObject* userData=NULL))
229 wxPyUserData* data = NULL;
231 wxPyBlock_t blocked = wxPyBeginBlockThreads();
232 data = new wxPyUserData(userData);
233 wxPyEndBlockThreads(blocked);
235 return new wxSizerItem(width, height, proportion, flag, border, data);
239 wxSizerItem( wxSizer *sizer, int proportion, int flag,
240 int border, PyObject* userData=NULL ),
241 "Constructs a `wx.SizerItem` for tracking a subsizer", "");
243 %disownarg( wxSizer *sizer );
244 %RenameCtor(SizerItemSizer, wxSizerItem( wxSizer *sizer, int proportion, int flag,
245 int border, PyObject* userData=NULL ))
247 wxPyUserData* data = NULL;
249 wxPyBlock_t blocked = wxPyBeginBlockThreads();
250 data = new wxPyUserData(userData);
251 wxPyEndBlockThreads(blocked);
253 return new wxSizerItem(sizer, proportion, flag, border, data);
255 %cleardisown( wxSizer *sizer );
261 void , DeleteWindows(),
262 "Destroy the window or the windows in a subsizer, depending on the type
266 void , DetachSizer(),
267 "Enable deleting the SizerItem without destroying the contained sizer.", "");
272 "Get the current size of the item, as set in the last Layout.", "");
276 "Calculates the minimum desired size for the item, including any space
277 needed by borders.", "");
280 void , SetDimension( const wxPoint& pos, const wxSize& size ),
281 "Set the position and size of the space allocated for this item by the
282 sizer, and adjust the position and size of the item (window or
283 subsizer) to be within that space taking alignment and borders into
288 wxSize , GetMinSize(),
289 "Get the minimum size needed for the item.", "");
292 wxSize , GetMinSizeWithBorder() const,
293 "Get the minimum size needed for the item with space for the borders
294 added, if needed.", "");
297 void , SetInitSize( int x, int y ),
302 "Set the ratio item attribute.", "");
303 %Rename(SetRatioWH, void, SetRatio( int width, int height ));
304 %Rename(SetRatioSize, void, SetRatio( const wxSize& size ));
305 void SetRatio( float ratio );
309 "Set the ratio item attribute.", "");
313 "Returns the rectangle that the sizer item should occupy", "");
318 "Is this sizer item a window?", "");
322 "Is this sizer item a subsizer?", "");
326 "Is this sizer item a spacer?", "");
330 void , SetProportion( int proportion ),
331 "Set the proportion value for this item.", "");
334 int , GetProportion(),
335 "Get the proportion value for this item.", "");
337 %pythoncode { SetOption = wx._deprecated(SetProportion, "Please use `SetProportion` instead.") }
338 %pythoncode { GetOption = wx._deprecated(GetProportion, "Please use `GetProportion` instead.") }
342 void , SetFlag( int flag ),
343 "Set the flag value for this item.", "");
347 "Get the flag value for this item.", "");
351 void , SetBorder( int border ),
352 "Set the border value for this item.", "");
356 "Get the border value for this item.", "");
361 wxWindow *, GetWindow(),
362 "Get the window (if any) that is managed by this sizer item.", "");
365 void , SetWindow( wxWindow *window ),
366 "Set the window to be managed by this sizer item.", "");
370 wxSizer *, GetSizer(),
371 "Get the subsizer (if any) that is managed by this sizer item.", "");
373 %disownarg( wxSizer *sizer );
375 void , SetSizer( wxSizer *sizer ),
376 "Set the subsizer to be managed by this sizer item.", "");
377 %cleardisown( wxSizer *sizer );
381 wxSize , GetSpacer(),
382 "Get the size of the spacer managed by this sizer item.", "");
385 void , SetSpacer( const wxSize &size ),
386 "Set the size of the spacer to be managed by this sizer item.", "");
390 void , Show( bool show ),
391 "Set the show item attribute, which sizers use to determine if the item
392 is to be made part of the layout or not. If the item is tracking a
393 window then it is shown or hidden as needed.", "");
397 "Is the item to be shown in the layout?", "");
401 wxPoint , GetPosition(),
402 "Returns the current position of the item, as set in the last Layout.", "");
405 // wxObject* GetUserData();
407 // Assume that the user data is a wxPyUserData object and return the contents
410 "Returns the userData associated with this sizer item, or None if there
412 PyObject* GetUserData() {
413 wxPyUserData* data = (wxPyUserData*)self->GetUserData();
415 Py_INCREF(data->m_obj);
424 "Associate a Python object with this sizer item.", "");
425 void SetUserData(PyObject* userData) {
426 wxPyUserData* data = NULL;
428 wxPyBlock_t blocked = wxPyBeginBlockThreads();
429 data = new wxPyUserData(userData);
430 wxPyEndBlockThreads(blocked);
432 self->SetUserData(data);
436 %property(Border, GetBorder, SetBorder, doc="See `GetBorder` and `SetBorder`");
437 %property(Flag, GetFlag, SetFlag, doc="See `GetFlag` and `SetFlag`");
438 %property(MinSize, GetMinSize, doc="See `GetMinSize`");
439 %property(MinSizeWithBorder, GetMinSizeWithBorder, doc="See `GetMinSizeWithBorder`");
440 %property(Position, GetPosition, doc="See `GetPosition`");
441 %property(Proportion, GetProportion, SetProportion, doc="See `GetProportion` and `SetProportion`");
442 %property(Ratio, GetRatio, SetRatio, doc="See `GetRatio` and `SetRatio`");
443 %property(Rect, GetRect, doc="See `GetRect`");
444 %property(Size, GetSize, doc="See `GetSize`");
445 %property(Sizer, GetSizer, SetSizer, doc="See `GetSizer` and `SetSizer`");
446 %property(Spacer, GetSpacer, SetSpacer, doc="See `GetSpacer` and `SetSpacer`");
447 %property(UserData, GetUserData, SetUserData, doc="See `GetUserData` and `SetUserData`");
448 %property(Window, GetWindow, SetWindow, doc="See `GetWindow` and `SetWindow`");
452 //---------------------------------------------------------------------------
455 // Figure out the type of the sizer item
457 struct wxPySizerItemInfo {
459 : window(NULL), sizer(NULL), gotSize(false),
460 size(wxDefaultSize), gotPos(false), pos(-1)
471 static wxPySizerItemInfo wxPySizerItemTypeHelper(PyObject* item, bool checkSize, bool checkIdx ) {
473 wxPySizerItemInfo info;
475 wxSize* sizePtr = &size;
477 // Find out what the type of the item is
479 if ( ! wxPyConvertSwigPtr(item, (void**)&info.window, wxT("wxWindow")) ) {
484 if ( ! wxPyConvertSwigPtr(item, (void**)&info.sizer, wxT("wxSizer")) ) {
488 // try wxSize or (w,h)
489 if ( checkSize && wxSize_helper(item, &sizePtr)) {
490 info.size = *sizePtr;
495 if (checkIdx && PyInt_Check(item)) {
496 info.pos = PyInt_AsLong(item);
502 if ( !(info.window || info.sizer || (checkSize && info.gotSize) || (checkIdx && info.gotPos)) ) {
503 // no expected type, figure out what kind of error message to generate
504 if ( !checkSize && !checkIdx )
505 PyErr_SetString(PyExc_TypeError, "wx.Window or wx.Sizer expected for item");
506 else if ( checkSize && !checkIdx )
507 PyErr_SetString(PyExc_TypeError, "wx.Window, wx.Sizer, wx.Size, or (w,h) expected for item");
508 else if ( !checkSize && checkIdx)
509 PyErr_SetString(PyExc_TypeError, "wx.Window, wx.Sizer or int (position) expected for item");
511 // can this one happen?
512 PyErr_SetString(PyExc_TypeError, "wx.Window, wx.Sizer, wx.Size, or (w,h) or int (position) expected for item");
523 "wx.Sizer is the abstract base class used for laying out subwindows in
524 a window. You cannot use wx.Sizer directly; instead, you will have to
525 use one of the sizer classes derived from it such as `wx.BoxSizer`,
526 `wx.StaticBoxSizer`, `wx.GridSizer`, `wx.FlexGridSizer` and
529 The concept implemented by sizers in wxWidgets is closely related to
530 layout tools in other GUI toolkits, such as Java's AWT, the GTK
531 toolkit or the Qt toolkit. It is based upon the idea of the individual
532 subwindows reporting their minimal required size and their ability to
533 get stretched if the size of the parent window has changed. This will
534 most often mean that the programmer does not set the original size of
535 a dialog in the beginning, rather the dialog will assigned a sizer and
536 this sizer will be queried about the recommended size. The sizer in
537 turn will query its children, which can be normal windows or contorls,
538 empty space or other sizers, so that a hierarchy of sizers can be
539 constructed. Note that wxSizer does not derive from wxWindow and thus
540 do not interfere with tab ordering and requires very little resources
541 compared to a real window on screen.
543 What makes sizers so well fitted for use in wxWidgets is the fact that
544 every control reports its own minimal size and the algorithm can
545 handle differences in font sizes or different window (dialog item)
546 sizes on different platforms without problems. If for example the
547 standard font as well as the overall design of Mac widgets requires
548 more space than on Windows, then the initial size of a dialog using a
549 sizer will automatically be bigger on Mac than on Windows.", "
551 Sizers may also be used to control the layout of custom drawn items on
552 the window. The `Add`, `Insert`, and `Prepend` functions return a
553 pointer to the newly added `wx.SizerItem`. Just add empty space of the
554 desired size and attributes, and then use the `wx.SizerItem.GetRect`
555 method to determine where the drawing operations should take place.
557 :note: If you wish to create a custom sizer class in wxPython you
558 should derive the class from `wx.PySizer` in order to get
559 Python-aware capabilities for the various virtual methods.
563 :todo: More dscriptive text here along with some pictures...
567 class wxSizer : public wxObject {
569 // wxSizer(); **** abstract, can't instantiate
574 void _setOORInfo(PyObject* _self) {
575 if (!self->GetClientObject())
576 self->SetClientObject(new wxPyOORClientData(_self));
580 "Add(self, item, int proportion=0, int flag=0, int border=0,
581 PyObject userData=None) -> wx.SizerItem",
583 "Appends a child item to the sizer.", "
585 :param item: The item can be one of three kinds of objects:
587 - **window**: A `wx.Window` to be managed by the sizer. Its
588 minimal size (either set explicitly by the user or
589 calculated internally when constructed with wx.DefaultSize)
590 is interpreted as the minimal size to use when laying out
591 item in the sizer. This is particularly useful in
592 connection with `wx.Window.SetSizeHints`.
594 - **sizer**: The (child-)sizer to be added to the sizer. This
595 allows placing a child sizer in a sizer and thus to create
596 hierarchies of sizers (for example a vertical box as the top
597 sizer and several horizontal boxes on the level beneath).
599 - **size**: A `wx.Size` or a 2-element sequence of integers
600 that represents the width and height of a spacer to be added
601 to the sizer. Adding spacers to sizers gives more
602 flexibility in the design of dialogs; imagine for example a
603 horizontal box with two buttons at the bottom of a dialog:
604 you might want to insert a space between the two buttons and
605 make that space stretchable using the *proportion* value and
606 the result will be that the left button will be aligned with
607 the left side of the dialog and the right button with the
608 right side - the space in between will shrink and grow with
611 :param proportion: Although the meaning of this parameter is
612 undefined in wx.Sizer, it is used in `wx.BoxSizer` to indicate
613 if a child of a sizer can change its size in the main
614 orientation of the wx.BoxSizer - where 0 stands for not
615 changeable and a value of more than zero is interpreted
616 relative (a proportion of the total) to the value of other
617 children of the same wx.BoxSizer. For example, you might have
618 a horizontal wx.BoxSizer with three children, two of which are
619 supposed to change their size with the sizer. Then the two
620 stretchable windows should each be given *proportion* value of
621 1 to make them grow and shrink equally with the sizer's
622 horizontal dimension. But if one of them had a *proportion*
623 value of 2 then it would get a double share of the space
624 available after the fixed size items are positioned.
626 :param flag: This parameter can be used to set a number of flags
627 which can be combined using the binary OR operator ``|``. Two
628 main behaviours are defined using these flags. One is the
629 border around a window: the *border* parameter determines the
630 border width whereas the flags given here determine which
631 side(s) of the item that the border will be added. The other
632 flags determine how the sizer item behaves when the space
633 allotted to the sizer changes, and is somewhat dependent on
634 the specific kind of sizer used.
636 +----------------------------+------------------------------------------+
637 |- wx.TOP |These flags are used to specify |
638 |- wx.BOTTOM |which side(s) of the sizer item that |
639 |- wx.LEFT |the *border* width will apply to. |
643 +----------------------------+------------------------------------------+
644 |- wx.EXPAND |The item will be expanded to fill |
645 | |the space allotted to the item. |
646 +----------------------------+------------------------------------------+
647 |- wx.SHAPED |The item will be expanded as much as |
648 | |possible while also maintaining its |
650 +----------------------------+------------------------------------------+
651 |- wx.FIXED_MINSIZE |Normally wx.Sizers will use |
652 | |`wx.Window.GetMinSize` or |
653 | |`wx.Window.GetBestSize` to determine what |
654 | |the minimal size of window items should |
655 | |be, and will use that size to calculate |
656 | |the layout. This allows layouts to adjust |
657 | |when an item changes and it's best size |
658 | |becomes different. If you would rather |
659 | |have a window item stay the size it |
660 | |started with then use wx.FIXED_MINSIZE. |
661 +----------------------------+------------------------------------------+
662 |- wx.ALIGN_CENTER |The wx.ALIGN flags allow you to specify |
663 |- wx.ALIGN_LEFT |the alignment of the item within the space|
664 |- wx.ALIGN_RIGHT |allotted to it by the sizer, ajusted for |
665 |- wx.ALIGN_TOP |the border if any. |
666 |- wx.ALIGN_BOTTOM | |
667 |- wx.ALIGN_CENTER_VERTICAL | |
668 |- wx.ALIGN_CENTER_HORIZONTAL| |
669 +----------------------------+------------------------------------------+
672 :param border: Determines the border width, if the *flag*
673 parameter is set to include any border flag.
675 :param userData: Allows an extra object to be attached to the
676 sizer item, for use in derived classes when sizing information
677 is more complex than the *proportion* and *flag* will allow for.
680 wxSizerItem* Add(PyObject* item, int proportion=0, int flag=0, int border=0,
681 PyObject* userData=NULL) {
683 wxPyUserData* data = NULL;
684 wxPyBlock_t blocked = wxPyBeginBlockThreads();
685 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false);
686 if ( userData && (info.window || info.sizer || info.gotSize) )
687 data = new wxPyUserData(userData);
689 PyObject_SetAttrString(item,"thisown",Py_False);
690 wxPyEndBlockThreads(blocked);
692 // Now call the real Add method if a valid item type was found
694 return self->Add(info.window, proportion, flag, border, data);
695 else if ( info.sizer )
696 return self->Add(info.sizer, proportion, flag, border, data);
697 else if (info.gotSize)
698 return self->Add(info.size.GetWidth(), info.size.GetHeight(),
699 proportion, flag, border, data);
706 "AddF(self, item, wx.SizerFlags flags) -> wx.SizerItem",
707 "Similar to `Add` but uses the `wx.SizerFlags` convenience class for
708 setting the various flags, options and borders.", "");
709 wxSizerItem* AddF(PyObject* item, wxSizerFlags& flags) {
711 wxPyBlock_t blocked = wxPyBeginBlockThreads();
712 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false);
714 PyObject_SetAttrString(item,"thisown",Py_False);
715 wxPyEndBlockThreads(blocked);
717 // Now call the real Add method if a valid item type was found
719 return self->Add(info.window, flags);
720 else if ( info.sizer )
721 return self->Add(info.sizer, flags);
722 else if (info.gotSize)
723 return self->Add(info.size.GetWidth(), info.size.GetHeight(),
724 flags.GetProportion(),
726 flags.GetBorderInPixels());
734 "Insert(self, int before, item, int proportion=0, int flag=0, int border=0,
735 PyObject userData=None) -> wx.SizerItem",
737 "Inserts a new item into the list of items managed by this sizer before
738 the item at index *before*. See `Add` for a description of the parameters.", "");
739 wxSizerItem* Insert(int before, PyObject* item, int proportion=0, int flag=0,
740 int border=0, PyObject* userData=NULL) {
742 wxPyUserData* data = NULL;
743 wxPyBlock_t blocked = wxPyBeginBlockThreads();
744 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false);
745 if ( userData && (info.window || info.sizer || info.gotSize) )
746 data = new wxPyUserData(userData);
748 PyObject_SetAttrString(item,"thisown",Py_False);
749 wxPyEndBlockThreads(blocked);
751 // Now call the real Insert method if a valid item type was found
753 return self->Insert(before, info.window, proportion, flag, border, data);
754 else if ( info.sizer )
755 return self->Insert(before, info.sizer, proportion, flag, border, data);
756 else if (info.gotSize)
757 return self->Insert(before, info.size.GetWidth(), info.size.GetHeight(),
758 proportion, flag, border, data);
766 "InsertF(self, int before, item, wx.SizerFlags flags) -> wx.SizerItem",
767 "Similar to `Insert`, but uses the `wx.SizerFlags` convenience class
768 for setting the various flags, options and borders.", "");
769 wxSizerItem* InsertF(int before, PyObject* item, wxSizerFlags& flags) {
771 wxPyBlock_t blocked = wxPyBeginBlockThreads();
772 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false);
774 PyObject_SetAttrString(item,"thisown",Py_False);
775 wxPyEndBlockThreads(blocked);
777 // Now call the real Insert method if a valid item type was found
779 return self->Insert(before, info.window, flags);
780 else if ( info.sizer )
781 return self->Insert(before, info.sizer, flags);
782 else if (info.gotSize)
783 return self->Insert(before, info.size.GetWidth(), info.size.GetHeight(),
784 flags.GetProportion(),
786 flags.GetBorderInPixels());
795 "Prepend(self, item, int proportion=0, int flag=0, int border=0,
796 PyObject userData=None) -> wx.SizerItem",
798 "Adds a new item to the begining of the list of sizer items managed by
799 this sizer. See `Add` for a description of the parameters.", "");
800 wxSizerItem* Prepend(PyObject* item, int proportion=0, int flag=0, int border=0,
801 PyObject* userData=NULL) {
803 wxPyUserData* data = NULL;
804 wxPyBlock_t blocked = wxPyBeginBlockThreads();
805 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false);
806 if ( userData && (info.window || info.sizer || info.gotSize) )
807 data = new wxPyUserData(userData);
809 PyObject_SetAttrString(item,"thisown",Py_False);
810 wxPyEndBlockThreads(blocked);
812 // Now call the real Prepend method if a valid item type was found
814 return self->Prepend(info.window, proportion, flag, border, data);
815 else if ( info.sizer )
816 return self->Prepend(info.sizer, proportion, flag, border, data);
817 else if (info.gotSize)
818 return self->Prepend(info.size.GetWidth(), info.size.GetHeight(),
819 proportion, flag, border, data);
827 "PrependF(self, item, wx.SizerFlags flags) -> wx.SizerItem",
828 "Similar to `Prepend` but uses the `wx.SizerFlags` convenience class
829 for setting the various flags, options and borders.", "");
830 wxSizerItem* PrependF(PyObject* item, wxSizerFlags& flags) {
832 wxPyBlock_t blocked = wxPyBeginBlockThreads();
833 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false);
835 PyObject_SetAttrString(item,"thisown",Py_False);
836 wxPyEndBlockThreads(blocked);
838 // Now call the real Add method if a valid item type was found
840 return self->Prepend(info.window, flags);
841 else if ( info.sizer )
842 return self->Prepend(info.sizer, flags);
843 else if (info.gotSize)
844 return self->Prepend(info.size.GetWidth(), info.size.GetHeight(),
845 flags.GetProportion(),
847 flags.GetBorderInPixels());
855 "Remove(self, item) -> bool",
856 "Removes an item from the sizer and destroys it. This method does not
857 cause any layout or resizing to take place, call `Layout` to update
858 the layout on screen after removing a child from the sizer. The
859 *item* parameter can be either a window, a sizer, or the zero-based
860 index of an item to remove. Returns True if the child item was found
863 :note: For historical reasons calling this method with a `wx.Window`
864 parameter is depreacted, as it will not be able to destroy the
865 window since it is owned by its parent. You should use `Detach`
868 bool Remove(PyObject* item) {
869 wxPyBlock_t blocked = wxPyBeginBlockThreads();
870 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true);
871 wxPyEndBlockThreads(blocked);
873 return false; //self->Remove(info.window);
874 else if ( info.sizer )
875 return self->Remove(info.sizer);
876 else if ( info.gotPos )
877 return self->Remove(info.pos);
884 "Detach(self, item) -> bool",
885 "Detaches an item from the sizer without destroying it. This method
886 does not cause any layout or resizing to take place, call `Layout` to
887 do so. The *item* parameter can be either a window, a sizer, or the
888 zero-based index of the item to be detached. Returns True if the child item
889 was found and detached.", "");
890 bool Detach(PyObject* item) {
891 wxPyBlock_t blocked = wxPyBeginBlockThreads();
892 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true);
893 wxPyEndBlockThreads(blocked);
895 return self->Detach(info.window);
896 else if ( info.sizer )
897 return self->Detach(info.sizer);
898 else if ( info.gotPos )
899 return self->Detach(info.pos);
906 "GetItem(self, item, recursive=False) -> wx.SizerItem",
907 "Returns the `wx.SizerItem` which holds the *item* given. The *item*
908 parameter can be either a window, a sizer, or the zero-based index of
909 the item to be found.", "");
910 wxSizerItem* GetItem(PyObject* item, bool recursive=false) {
911 wxPyBlock_t blocked = wxPyBeginBlockThreads();
912 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true);
913 wxPyEndBlockThreads(blocked);
915 return self->GetItem(info.window, recursive);
916 else if ( info.sizer )
917 return self->GetItem(info.sizer, recursive);
918 else if ( info.gotPos )
919 return self->GetItem(info.pos);
925 void _SetItemMinSize(PyObject* item, const wxSize& size) {
926 wxPyBlock_t blocked = wxPyBeginBlockThreads();
927 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true);
928 wxPyEndBlockThreads(blocked);
930 self->SetItemMinSize(info.window, size);
931 else if ( info.sizer )
932 self->SetItemMinSize(info.sizer, size);
933 else if ( info.gotPos )
934 self->SetItemMinSize(info.pos, size);
940 bool, Replace( wxWindow *oldwin, wxWindow *newwin, bool recursive = false ));
941 %Rename(_ReplaceSizer,
942 bool, Replace( wxSizer *oldsz, wxSizer *newsz, bool recursive = false ));
943 %Rename(_ReplaceItem,
944 bool, Replace( size_t index, wxSizerItem *newitem ));
946 def Replace(self, olditem, item, recursive=False):
948 Detaches the given ``olditem`` from the sizer and replaces it with
949 ``item`` which can be a window, sizer, or `wx.SizerItem`. The
950 detached child is destroyed only if it is not a window, (because
951 windows are owned by their parent, not the sizer.) The
952 ``recursive`` parameter can be used to search for the given
953 element recursivly in subsizers.
955 This method does not cause any layout or resizing to take place,
956 call `Layout` to do so.
958 Returns ``True`` if the child item was found and removed.
960 if isinstance(olditem, wx.Window):
961 return self._ReplaceWin(olditem, item, recursive)
962 elif isinstance(olditem, wx.Sizer):
963 return self._ReplaceSizer(olditem, item, recursive)
964 elif isinstance(olditem, int):
965 return self._ReplaceItem(olditem, item)
967 raise TypeError("Expected Window, Sizer, or integer for first parameter.")
972 void , SetContainingWindow(wxWindow *window),
973 "Set (or unset) the window this sizer is used in.", "");
976 wxWindow *, GetContainingWindow() const,
977 "Get the window this sizer is used in.", "");
981 def SetItemMinSize(self, item, *args):
983 SetItemMinSize(self, item, Size size)
985 Sets the minimum size that will be allocated for an item in the sizer.
986 The *item* parameter can be either a window, a sizer, or the
987 zero-based index of the item. If a window or sizer is given then it
988 will be searched for recursivly in subsizers if neccessary.
991 %# for backward compatibility accept separate width,height args too
992 return self._SetItemMinSize(item, args)
994 return self._SetItemMinSize(item, args[0])
998 %disownarg( wxSizerItem *item );
1001 wxSizerItem* , Add( wxSizerItem *item ),
1002 "AddItem(self, SizerItem item)",
1003 "Adds a `wx.SizerItem` to the sizer.", "",
1007 wxSizerItem* , Insert( size_t index, wxSizerItem *item ),
1008 "InsertItem(self, int index, SizerItem item)",
1009 "Inserts a `wx.SizerItem` to the sizer at the position given by *index*.", "",
1013 wxSizerItem* , Prepend( wxSizerItem *item ),
1014 "PrependItem(self, SizerItem item)",
1015 "Prepends a `wx.SizerItem` to the sizer.", "",
1018 %cleardisown( wxSizerItem *item );
1022 def AddMany(self, items):
1024 AddMany is a convenience method for adding several items
1025 to a sizer at one time. Simply pass it a list of tuples,
1026 where each tuple consists of the parameters that you
1027 would normally pass to the `Add` method.
1030 if type(item) != type(()) or (len(item) == 2 and type(item[0]) == type(1)):
1034 def AddSpacer(self, *args, **kw):
1035 """AddSpacer(int size) --> SizerItem
1037 Add a spacer that is (size,size) pixels.
1039 if args and type(args[0]) == int:
1040 return self.Add( (args[0],args[0] ), 0)
1041 else: %# otherwise stay compatible with old AddSpacer
1042 return self.Add(*args, **kw)
1043 def PrependSpacer(self, *args, **kw):
1044 """PrependSpacer(int size) --> SizerItem
1046 Prepend a spacer that is (size, size) pixels."""
1047 if args and type(args[0]) == int:
1048 return self.Prepend( (args[0],args[0] ), 0)
1049 else: %# otherwise stay compatible with old PrependSpacer
1050 return self.Prepend(*args, **kw)
1051 def InsertSpacer(self, index, *args, **kw):
1052 """InsertSpacer(int index, int size) --> SizerItem
1054 Insert a spacer at position index that is (size, size) pixels."""
1055 if args and type(args[0]) == int:
1056 return self.Insert( index, (args[0],args[0] ), 0)
1057 else: %# otherwise stay compatible with old InsertSpacer
1058 return self.Insert(index, *args, **kw)
1061 def AddStretchSpacer(self, prop=1):
1062 """AddStretchSpacer(int prop=1) --> SizerItem
1064 Add a stretchable spacer."""
1065 return self.Add((0,0), prop)
1066 def PrependStretchSpacer(self, prop=1):
1067 """PrependStretchSpacer(int prop=1) --> SizerItem
1069 Prepend a stretchable spacer."""
1070 return self.Prepend((0,0), prop)
1071 def InsertStretchSpacer(self, index, prop=1):
1072 """InsertStretchSpacer(int index, int prop=1) --> SizerItem
1074 Insert a stretchable spacer."""
1075 return self.Insert(index, (0,0), prop)
1078 %# for backwards compatibility only, please do not use in new code
1079 def AddWindow(self, *args, **kw):
1080 """Compatibility alias for `Add`."""
1081 return self.Add(*args, **kw)
1082 def AddSizer(self, *args, **kw):
1083 """Compatibility alias for `Add`."""
1084 return self.Add(*args, **kw)
1086 def PrependWindow(self, *args, **kw):
1087 """Compatibility alias for `Prepend`."""
1088 return self.Prepend(*args, **kw)
1089 def PrependSizer(self, *args, **kw):
1090 """Compatibility alias for `Prepend`."""
1091 return self.Prepend(*args, **kw)
1093 def InsertWindow(self, *args, **kw):
1094 """Compatibility alias for `Insert`."""
1095 return self.Insert(*args, **kw)
1096 def InsertSizer(self, *args, **kw):
1097 """Compatibility alias for `Insert`."""
1098 return self.Insert(*args, **kw)
1100 def RemoveWindow(self, *args, **kw):
1101 """Compatibility alias for `Remove`."""
1102 return self.Remove(*args, **kw)
1103 def RemoveSizer(self, *args, **kw):
1104 """Compatibility alias for `Remove`."""
1105 return self.Remove(*args, **kw)
1106 def RemovePos(self, *args, **kw):
1107 """Compatibility alias for `Remove`."""
1108 return self.Remove(*args, **kw)
1114 void , SetDimension( int x, int y, int width, int height ),
1115 "Call this to force the sizer to take the given dimension and thus
1116 force the items owned by the sizer to resize themselves according to
1117 the rules defined by the parameter in the `Add`, `Insert` or `Prepend`
1121 void , SetMinSize( const wxSize &size ),
1122 "Call this to give the sizer a minimal size. Normally, the sizer will
1123 calculate its minimal size based purely on how much space its children
1124 need. After calling this method `GetMinSize` will return either the
1125 minimal size as requested by its children or the minimal size set
1126 here, depending on which is bigger.", "");
1131 "Returns the current size of the space managed by the sizer.", "");
1134 wxPoint , GetPosition(),
1135 "Returns the current position of the sizer's managed space.", "");
1138 wxSize , GetMinSize(),
1139 "Returns the minimal size of the sizer. This is either the combined
1140 minimal size of all the children and their borders or the minimal size
1141 set by SetMinSize, depending on which is bigger.", "");
1145 def GetSizeTuple(self):
1146 return self.GetSize().Get()
1147 def GetPositionTuple(self):
1148 return self.GetPosition().Get()
1149 def GetMinSizeTuple(self):
1150 return self.GetMinSize().Get()
1154 virtual void , RecalcSizes(),
1155 "Using the sizes calculated by `CalcMin` reposition and resize all the
1156 items managed by this sizer. You should not need to call this directly as
1157 it is called by `Layout`.", "");
1160 virtual wxSize , CalcMin(),
1161 "This method is where the sizer will do the actual calculation of its
1162 children's minimal sizes. You should not need to call this directly as
1163 it is called by `Layout`.", "");
1168 "This method will force the recalculation and layout of the items
1169 controlled by the sizer using the current space allocated to the
1170 sizer. Normally this is called automatically from the owning window's
1171 EVT_SIZE handler, but it is also useful to call it from user code when
1172 one of the items in a sizer change size, or items are added or
1177 wxSize , Fit( wxWindow *window ),
1178 "Tell the sizer to resize the *window* to match the sizer's minimal
1179 size. This is commonly done in the constructor of the window itself in
1180 order to set its initial size to match the needs of the children as
1181 determined by the sizer. Returns the new size.
1183 For a top level window this is the total window size, not the client size.", "");
1186 void , FitInside( wxWindow *window ),
1187 "Tell the sizer to resize the *virtual size* of the *window* to match the
1188 sizer's minimal size. This will not alter the on screen size of the
1189 window, but may cause the addition/removal/alteration of scrollbars
1190 required to view the virtual area in windows which manage it.
1192 :see: `wx.ScrolledWindow.SetScrollbars`, `SetVirtualSizeHints`
1197 void , SetSizeHints( wxWindow *window ),
1198 "Tell the sizer to set (and `Fit`) the minimal size of the *window* to
1199 match the sizer's minimal size. This is commonly done in the
1200 constructor of the window itself if the window is resizable (as are
1201 many dialogs under Unix and frames on probably all platforms) in order
1202 to prevent the window from being sized smaller than the minimal size
1203 required by the sizer.", "");
1206 void , SetVirtualSizeHints( wxWindow *window ),
1207 "Tell the sizer to set the minimal size of the window virtual area to
1208 match the sizer's minimal size. For windows with managed scrollbars
1209 this will set them appropriately.
1211 :see: `wx.ScrolledWindow.SetScrollbars`
1216 void , Clear( bool deleteWindows=false ),
1217 "Clear all items from the sizer, optionally destroying the window items
1221 void , DeleteWindows(),
1222 "Destroy all windows managed by the sizer.", "");
1226 // wxList& GetChildren();
1228 DocAStr(GetChildren,
1229 "GetChildren(self) -> list",
1230 "Returns a list of all the `wx.SizerItem` objects managed by the sizer.", "");
1231 PyObject* GetChildren() {
1232 wxSizerItemList& list = self->GetChildren();
1233 return wxPy_ConvertList(&list);
1238 // Manage whether individual windows or subsizers are considered
1239 // in the layout calculations or not.
1243 "Show(self, item, bool show=True, bool recursive=false) -> bool",
1244 "Shows or hides an item managed by the sizer. To make a sizer item
1245 disappear or reappear, use Show followed by `Layout`. The *item*
1246 parameter can be either a window, a sizer, or the zero-based index of
1247 the item. Use the recursive parameter to show or hide an item in a
1248 subsizer. Returns True if the item was found.", "");
1249 bool Show(PyObject* item, bool show = true, bool recursive=false) {
1250 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1251 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true);
1252 wxPyEndBlockThreads(blocked);
1254 return self->Show(info.window, show, recursive);
1255 else if ( info.sizer )
1256 return self->Show(info.sizer, show, recursive);
1257 else if ( info.gotPos )
1258 return self->Show(info.pos, show);
1264 "IsShown(self, item)",
1265 "Determines if the item is currently shown. To make a sizer
1266 item disappear or reappear, use Show followed by `Layout`. The *item*
1267 parameter can be either a window, a sizer, or the zero-based index of
1269 bool IsShown(PyObject* item) {
1270 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1271 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, false);
1272 wxPyEndBlockThreads(blocked);
1274 return self->IsShown(info.window);
1275 else if ( info.sizer )
1276 return self->IsShown(info.sizer);
1277 else if ( info.gotPos )
1278 return self->IsShown(info.pos);
1285 def Hide(self, item, recursive=False):
1287 A convenience method for `Show` (item, False, recursive).
1289 return self.Show(item, False, recursive)
1294 void , ShowItems(bool show),
1295 "Recursively call `wx.SizerItem.Show` on all sizer items.", "");
1297 %property(Children, GetChildren, doc="See `GetChildren`");
1298 %property(ContainingWindow, GetContainingWindow, SetContainingWindow, doc="See `GetContainingWindow` and `SetContainingWindow`");
1299 %property(MinSize, GetMinSize, SetMinSize, doc="See `GetMinSize` and `SetMinSize`");
1300 %property(Position, GetPosition, doc="See `GetPosition`");
1301 %property(Size, GetSize, doc="See `GetSize`");
1305 //---------------------------------------------------------------------------
1306 // Use this one for deriving Python classes from
1309 IMP_PYCALLBACK___pure(wxPySizer, wxSizer, RecalcSizes);
1310 IMP_PYCALLBACK_wxSize__pure(wxPySizer, wxSizer, CalcMin);
1311 IMPLEMENT_DYNAMIC_CLASS(wxPySizer, wxSizer);
1316 "wx.PySizer is a special version of `wx.Sizer` that has been
1317 instrumented to allow the C++ virtual methods to be overloaded in
1318 Python derived classes. You would derive from this class if you are
1319 wanting to implement a custom sizer in Python code. Simply implement
1320 `CalcMin` and `RecalcSizes` in the derived class and you're all set.
1323 class MySizer(wx.PySizer):
1325 wx.PySizer.__init__(self)
1328 for item in self.GetChildren():
1329 # calculate the total minimum width and height needed
1330 # by all items in the sizer according to this sizer's
1333 return wx.Size(width, height)
1335 def RecalcSizes(self):
1336 # find the space allotted to this sizer
1337 pos = self.GetPosition()
1338 size = self.GetSize()
1339 for item in self.GetChildren():
1340 # Recalculate (if necessary) the position and size of
1341 # each item and then call item.SetDimension to do the
1342 # actual positioning and sizing of the items within the
1343 # space alloted to this sizer.
1345 item.SetDimension(itemPos, itemSize)
1348 When `Layout` is called it first calls `CalcMin` followed by
1349 `RecalcSizes` so you can optimize a bit by saving the results of
1350 `CalcMin` and reusing them in `RecalcSizes`.
1352 :see: `wx.SizerItem`, `wx.Sizer.GetChildren`
1355 class wxPySizer : public wxSizer {
1357 %pythonAppend wxPySizer "self._setOORInfo(self);" setCallbackInfo(PySizer)
1361 "Creates a wx.PySizer. Must be called from the __init__ in the derived
1364 void _setCallbackInfo(PyObject* self, PyObject* _class);
1368 //---------------------------------------------------------------------------
1373 "The basic idea behind a box sizer is that windows will most often be
1374 laid out in rather simple basic geometry, typically in a row or a
1375 column or nested hierarchies of either. A wx.BoxSizer will lay out
1376 its items in a simple row or column, depending on the orientation
1377 parameter passed to the constructor.", "
1379 It is the unique feature of a box sizer, that it can grow in both
1380 directions (height and width) but can distribute its growth in the
1381 main direction (horizontal for a row) *unevenly* among its children.
1382 This is determined by the proportion parameter give to items when they
1383 are added to the sizer. It is interpreted as a weight factor, i.e. it
1384 can be zero, indicating that the window may not be resized at all, or
1385 above zero. If several windows have a value above zero, the value is
1386 interpreted relative to the sum of all weight factors of the sizer, so
1387 when adding two windows with a value of 1, they will both get resized
1388 equally and each will receive half of the available space after the
1389 fixed size items have been sized. If the items have unequal
1390 proportion settings then they will receive a coresondingly unequal
1391 allotment of the free space.
1393 :see: `wx.StaticBoxSizer`
1396 class wxBoxSizer : public wxSizer {
1398 %pythonAppend wxBoxSizer "self._setOORInfo(self)"
1401 wxBoxSizer(int orient = wxHORIZONTAL),
1402 "Constructor for a wx.BoxSizer. *orient* may be one of ``wx.VERTICAL``
1403 or ``wx.HORIZONTAL`` for creating either a column sizer or a row
1408 int , GetOrientation(),
1409 "Returns the current orientation of the sizer.", "");
1412 void , SetOrientation(int orient),
1413 "Resets the orientation of the sizer.", "");
1415 %property(Orientation, GetOrientation, SetOrientation, doc="See `GetOrientation` and `SetOrientation`");
1418 //---------------------------------------------------------------------------
1422 DocStr(wxStaticBoxSizer,
1423 "wx.StaticBoxSizer derives from and functions identically to the
1424 `wx.BoxSizer` and adds a `wx.StaticBox` around the items that the sizer
1425 manages. Note that this static box must be created separately and
1426 passed to the sizer constructor.", "");
1428 class wxStaticBoxSizer : public wxBoxSizer {
1430 %pythonAppend wxStaticBoxSizer "self._setOORInfo(self)"
1433 wxStaticBoxSizer(wxStaticBox *box, int orient = wxHORIZONTAL),
1434 "Constructor. It takes an associated static box and the orientation
1435 *orient* as parameters - orient can be either of ``wx.VERTICAL`` or
1436 ``wx.HORIZONTAL``.", "");
1438 // TODO: wxStaticBoxSizer(int orient, wxWindow *win, const wxString& label = wxEmptyString);
1441 wxStaticBox *, GetStaticBox(),
1442 "Returns the static box associated with this sizer.", "");
1444 %property(StaticBox, GetStaticBox, doc="See `GetStaticBox`");
1447 //---------------------------------------------------------------------------
1452 "A grid sizer is a sizer which lays out its children in a
1453 two-dimensional table with all cells having the same size. In other
1454 words, the width of each cell within the grid is the width of the
1455 widest item added to the sizer and the height of each grid cell is the
1456 height of the tallest item. An optional vertical and/or horizontal
1457 gap between items can also be specified (in pixels.)
1459 Items are placed in the cells of the grid in the order they are added,
1460 in row-major order. In other words, the first row is filled first,
1461 then the second, and so on until all items have been added. (If
1462 neccessary, additional rows will be added as items are added.) If you
1463 need to have greater control over the cells that items are placed in
1464 then use the `wx.GridBagSizer`.
1467 class wxGridSizer: public wxSizer
1470 %pythonAppend wxGridSizer "self._setOORInfo(self)"
1473 wxGridSizer( int rows=1, int cols=0, int vgap=0, int hgap=0 ),
1474 "Constructor for a wx.GridSizer. *rows* and *cols* determine the number
1475 of columns and rows in the sizer - if either of the parameters is
1476 zero, it will be calculated to from the total number of children in
1477 the sizer, thus making the sizer grow dynamically. *vgap* and *hgap*
1478 define extra space between all children.", "");
1481 void , SetCols( int cols ),
1482 "Sets the number of columns in the sizer.", "");
1485 void , SetRows( int rows ),
1486 "Sets the number of rows in the sizer.", "");
1489 void , SetVGap( int gap ),
1490 "Sets the vertical gap (in pixels) between the cells in the sizer.", "");
1493 void , SetHGap( int gap ),
1494 "Sets the horizontal gap (in pixels) between cells in the sizer", "");
1498 "Returns the number of columns in the sizer.", "");
1502 "Returns the number of rows in the sizer.", "");
1506 "Returns the vertical gap (in pixels) between the cells in the sizer.", "");
1510 "Returns the horizontal gap (in pixels) between cells in the sizer.", "");
1513 def CalcRowsCols(self):
1515 CalcRowsCols() -> (rows, cols)
1517 Calculates how many rows and columns will be in the sizer based
1518 on the current number of items and also the rows, cols specified
1521 nitems = len(self.GetChildren())
1522 rows = self.GetRows()
1523 cols = self.GetCols()
1524 assert rows != 0 or cols != 0, "Grid sizer must have either rows or columns fixed"
1526 rows = (nitems + cols - 1) / cols
1528 cols = (nitems + rows - 1) / rows
1532 %property(Cols, GetCols, SetCols, doc="See `GetCols` and `SetCols`");
1533 %property(HGap, GetHGap, SetHGap, doc="See `GetHGap` and `SetHGap`");
1534 %property(Rows, GetRows, SetRows, doc="See `GetRows` and `SetRows`");
1535 %property(VGap, GetVGap, SetVGap, doc="See `GetVGap` and `SetVGap`");
1538 //---------------------------------------------------------------------------
1541 enum wxFlexSizerGrowMode
1543 // don't resize the cells in non-flexible direction at all
1544 wxFLEX_GROWMODE_NONE,
1546 // uniformly resize only the specified ones (default)
1547 wxFLEX_GROWMODE_SPECIFIED,
1549 // uniformly resize all cells
1557 DocStr(wxFlexGridSizer,
1558 "A flex grid sizer is a sizer which lays out its children in a
1559 two-dimensional table with all table cells in one row having the same
1560 height and all cells in one column having the same width, but all
1561 rows or all columns are not necessarily the same height or width as in
1564 wx.FlexGridSizer can also size items equally in one direction but
1565 unequally (\"flexibly\") in the other. If the sizer is only flexible
1566 in one direction (this can be changed using `SetFlexibleDirection`), it
1567 needs to be decided how the sizer should grow in the other (\"non
1568 flexible\") direction in order to fill the available space. The
1569 `SetNonFlexibleGrowMode` method serves this purpose.
1573 class wxFlexGridSizer: public wxGridSizer
1576 %pythonAppend wxFlexGridSizer "self._setOORInfo(self)"
1579 wxFlexGridSizer( int rows=1, int cols=0, int vgap=0, int hgap=0 ),
1580 "Constructor for a wx.FlexGridSizer. *rows* and *cols* determine the
1581 number of columns and rows in the sizer - if either of the parameters
1582 is zero, it will be calculated to from the total number of children in
1583 the sizer, thus making the sizer grow dynamically. *vgap* and *hgap*
1584 define extra space between all children.", "");
1588 void , AddGrowableRow( size_t idx, int proportion = 0 ),
1589 "Specifies that row *idx* (starting from zero) should be grown if there
1590 is extra space available to the sizer.
1592 The *proportion* parameter has the same meaning as the stretch factor
1593 for the box sizers except that if all proportions are 0, then all
1594 columns are resized equally (instead of not being resized at all).", "");
1597 void , RemoveGrowableRow( size_t idx ),
1598 "Specifies that row *idx* is no longer growable.", "");
1601 void , AddGrowableCol( size_t idx, int proportion = 0 ),
1602 "Specifies that column *idx* (starting from zero) should be grown if
1603 there is extra space available to the sizer.
1605 The *proportion* parameter has the same meaning as the stretch factor
1606 for the box sizers except that if all proportions are 0, then all
1607 columns are resized equally (instead of not being resized at all).", "");
1610 void , RemoveGrowableCol( size_t idx ),
1611 "Specifies that column *idx* is no longer growable.", "");
1615 void , SetFlexibleDirection(int direction),
1616 "Specifies whether the sizer should flexibly resize its columns, rows,
1617 or both. Argument *direction* can be one of the following values. Any
1618 other value is ignored.
1620 ============== =======================================
1621 wx.VERTICAL Rows are flexibly sized.
1622 wx.HORIZONTAL Columns are flexibly sized.
1623 wx.BOTH Both rows and columns are flexibly sized
1624 (this is the default value).
1625 ============== =======================================
1627 Note that this method does not trigger relayout.
1631 int , GetFlexibleDirection(),
1632 "Returns a value that specifies whether the sizer
1633 flexibly resizes its columns, rows, or both (default).
1635 :see: `SetFlexibleDirection`", "");
1640 void , SetNonFlexibleGrowMode(wxFlexSizerGrowMode mode),
1641 "Specifies how the sizer should grow in the non-flexible direction if
1642 there is one (so `SetFlexibleDirection` must have been called
1643 previously). Argument *mode* can be one of the following values:
1645 ========================== =================================================
1646 wx.FLEX_GROWMODE_NONE Sizer doesn't grow in the non flexible direction.
1647 wx.FLEX_GROWMODE_SPECIFIED Sizer honors growable columns/rows set with
1648 `AddGrowableCol` and `AddGrowableRow`. In this
1649 case equal sizing applies to minimum sizes of
1650 columns or rows (this is the default value).
1651 wx.FLEX_GROWMODE_ALL Sizer equally stretches all columns or rows in
1652 the non flexible direction, whether they are
1653 growable or not in the flexbile direction.
1654 ========================== =================================================
1656 Note that this method does not trigger relayout.", "");
1659 wxFlexSizerGrowMode , GetNonFlexibleGrowMode(),
1660 "Returns the value that specifies how the sizer grows in the
1661 non-flexible direction if there is one.
1663 :see: `SetNonFlexibleGrowMode`", "");
1666 // Read-only access to the row heights and col widths arrays
1668 const wxArrayInt& , GetRowHeights() const,
1669 "GetRowHeights(self) -> list",
1670 "Returns a list of integers representing the heights of each of the
1671 rows in the sizer.", "");
1674 const wxArrayInt& , GetColWidths() const,
1675 "GetColWidths(self) -> list",
1676 "Returns a list of integers representing the widths of each of the
1677 columns in the sizer.", "");
1680 %property(ColWidths, GetColWidths, doc="See `GetColWidths`");
1681 %property(FlexibleDirection, GetFlexibleDirection, SetFlexibleDirection, doc="See `GetFlexibleDirection` and `SetFlexibleDirection`");
1682 %property(NonFlexibleGrowMode, GetNonFlexibleGrowMode, SetNonFlexibleGrowMode, doc="See `GetNonFlexibleGrowMode` and `SetNonFlexibleGrowMode`");
1683 %property(RowHeights, GetRowHeights, doc="See `GetRowHeights`");
1687 //---------------------------------------------------------------------------
1689 DocStr(wxStdDialogButtonSizer,
1690 "A special sizer that knows how to order and position standard buttons
1691 in order to conform to the current platform's standards. You simply
1692 need to add each `wx.Button` to the sizer, and be sure to create the
1693 buttons using the standard ID's. Then call `Realize` and the sizer
1694 will take care of the rest.
1697 class wxStdDialogButtonSizer: public wxBoxSizer
1701 wxStdDialogButtonSizer(),
1705 void , AddButton(wxButton *button),
1706 "Use this to add the buttons to this sizer. Do not use the `Add`
1707 method in the base class.", "");
1711 "This funciton needs to be called after all the buttons have been added
1712 to the sizer. It will reorder them and position them in a platform
1713 specifc manner.", "");
1715 void SetAffirmativeButton( wxButton *button );
1716 void SetNegativeButton( wxButton *button );
1717 void SetCancelButton( wxButton *button );
1719 wxButton* GetAffirmativeButton() const;
1720 wxButton* GetApplyButton() const;
1721 wxButton* GetNegativeButton() const;
1722 wxButton* GetCancelButton() const;
1723 wxButton* GetHelpButton() const;
1725 %property(AffirmativeButton, GetAffirmativeButton, SetAffirmativeButton, doc="See `GetAffirmativeButton` and `SetAffirmativeButton`");
1726 %property(ApplyButton, GetApplyButton, doc="See `GetApplyButton`");
1727 %property(CancelButton, GetCancelButton, SetCancelButton, doc="See `GetCancelButton` and `SetCancelButton`");
1728 %property(HelpButton, GetHelpButton, doc="See `GetHelpButton`");
1729 %property(NegativeButton, GetNegativeButton, SetNegativeButton, doc="See `GetNegativeButton` and `SetNegativeButton`");
1733 //---------------------------------------------------------------------------