]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/_sizers.i
reverted part of patch 1610494 (rev 1.35) which broke handling of ends of lines
[wxWidgets.git] / wxPython / src / _sizers.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: _sizers.i
3 // Purpose: SWIG interface defs for the Sizers
4 //
5 // Author: Robin Dunn
6 //
7 // Created: 18-Sept-1999
8 // RCS-ID: $Id$
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
12
13 // Not a %module
14
15
16 //---------------------------------------------------------------------------
17
18 %{
19 %}
20
21 //---------------------------------------------------------------------------
22 %newgroup;
23
24 DocStr(wxSizerFlags,
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::
29
30 sizer.Add(ctrl, 0, wx.EXPAND | wx.ALL, 10)
31
32 you can now write::
33
34 sizer.AddF(ctrl, wx.SizerFlags().Expand().Border(wx.ALL, 10))
35
36 This is more readable and also allows you to create wx.SizerFlags
37 objects which can be reused for several sizer items.::
38
39 flagsExpand = wx.SizerFlags(1)
40 flagsExpand.Expand().Border(wx.ALL, 10)
41 sizer.AddF(ctrl1, flagsExpand)
42 sizer.AddF(ctrl2, flagsExpand)
43
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.", "");
47
48 class wxSizerFlags
49 {
50 public:
51 // construct the flags object initialized with the given proportion (0 by
52 // default)
53 DocCtorStr(
54 wxSizerFlags(int proportion = 0),
55 "Constructs the flags object with the specified proportion.", "");
56
57 ~wxSizerFlags();
58
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); }
63
64 DocDeclStr(
65 wxSizerFlags& , Proportion(int proportion),
66 "Sets the item's proportion value.", "");
67
68 DocDeclStr(
69 wxSizerFlags& , Align(int alignment),
70 "Sets the item's alignment", "");
71
72 DocDeclStr(
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.", "");
76
77 DocDeclStr(
78 wxSizerFlags& , Centre(),
79 "Same as `Center` for those with an alternate dialect of English.", "");
80
81 DocDeclStr(
82 wxSizerFlags& , Center(),
83 "Sets the centering alignment flags.", "");
84
85 DocDeclStr(
86 wxSizerFlags& , Left(),
87 "Aligns the object to the left, a shortcut for calling
88 Align(wx.ALIGN_LEFT)", "");
89
90 DocDeclStr(
91 wxSizerFlags& , Right(),
92 "Aligns the object to the right, a shortcut for calling
93 Align(wx.ALIGN_RIGHT)", "");
94
95 DocDeclStr(
96 wxSizerFlags& , Top(),
97 "Aligns the object to the top of the available space, a shortcut for
98 calling Align(wx.ALIGN_TOP)", "");
99
100 DocDeclStr(
101 wxSizerFlags& , Bottom(),
102 "Aligns the object to the bottom of the available space, a shortcut for
103 calling Align(wx.ALIGN_BOTTOM)", "");
104
105 DocDeclStr(
106 wxSizerFlags& , Shaped(),
107 "Sets the wx.SHAPED flag.", "");
108
109 DocDeclStr(
110 wxSizerFlags& , FixedMinSize(),
111 "Sets the wx.FIXED_MINSIZE flag.", "");
112
113
114
115 %extend {
116 DocDeclStr(
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.", "")
121 {
122 if (borderInPixels == -1)
123 return self->Border(direction);
124 else
125 return self->Border(direction, borderInPixels);
126 }
127 }
128
129 DocDeclStr(
130 wxSizerFlags& , DoubleBorder(int direction = wxALL),
131 "Sets the border in the given direction to twice the default border
132 size.", "");
133
134 DocDeclStr(
135 wxSizerFlags& , TripleBorder(int direction = wxALL),
136 "Sets the border in the given direction to three times the default
137 border size.", "");
138
139 DocDeclStr(
140 wxSizerFlags& , HorzBorder(),
141 "Sets the left and right borders to the default border size.", "");
142
143 DocDeclStr(
144 wxSizerFlags& , DoubleHorzBorder(),
145 "Sets the left and right borders to twice the default border size.", "");
146
147
148 // Clear the typemap
149 %typemap(out) wxSizerFlags& ;
150
151
152
153 DocDeclStr(
154 static int , GetDefaultBorder(),
155 "Returns the default border size used by the other border methods", "");
156
157
158 DocDeclStr(
159 int , GetProportion() const,
160 "Returns the proportion value to be used in the sizer item.", "");
161
162 DocDeclStr(
163 int , GetFlags() const,
164 "Returns the flags value to be used in the sizer item.", "");
165
166 DocDeclStr(
167 int , GetBorderInPixels() const,
168 "Returns the border value in pixels to be used in the sizer item.", "");
169 };
170
171 //---------------------------------------------------------------------------
172
173 DocStr(wxSizerItem,
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
181 layout.
182
183 :see: `wx.Sizer`, `wx.GBSizerItem`", "");
184
185 class wxSizerItem : public wxObject {
186 public:
187 DocCtorStr(
188 wxSizerItem(),
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.
191
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
194 methods are called.
195
196 :see: `wx.SizerItemSpacer`, `wx.SizerItemWindow`, `wx.SizerItemSizer`", "");
197
198
199 ~wxSizerItem();
200
201
202 %extend {
203 DocStr(
204 wxSizerItem( wxWindow *window, int proportion, int flag,
205 int border, PyObject* userData=NULL ),
206 "Constructs a `wx.SizerItem` for tracking a window.", "");
207
208 %RenameCtor(SizerItemWindow, wxSizerItem( wxWindow *window, int proportion, int flag,
209 int border, PyObject* userData=NULL ))
210 {
211 wxPyUserData* data = NULL;
212 if ( userData ) {
213 wxPyBlock_t blocked = wxPyBeginBlockThreads();
214 data = new wxPyUserData(userData);
215 wxPyEndBlockThreads(blocked);
216 }
217 return new wxSizerItem(window, proportion, flag, border, data);
218 }
219
220
221 DocStr(
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.", "");
225
226 %RenameCtor(SizerItemSpacer, wxSizerItem( int width, int height, int proportion, int flag,
227 int border, PyObject* userData=NULL))
228 {
229 wxPyUserData* data = NULL;
230 if ( userData ) {
231 wxPyBlock_t blocked = wxPyBeginBlockThreads();
232 data = new wxPyUserData(userData);
233 wxPyEndBlockThreads(blocked);
234 }
235 return new wxSizerItem(width, height, proportion, flag, border, data);
236 }
237
238 DocStr(
239 wxSizerItem( wxSizer *sizer, int proportion, int flag,
240 int border, PyObject* userData=NULL ),
241 "Constructs a `wx.SizerItem` for tracking a subsizer", "");
242
243 %disownarg( wxSizer *sizer );
244 %RenameCtor(SizerItemSizer, wxSizerItem( wxSizer *sizer, int proportion, int flag,
245 int border, PyObject* userData=NULL ))
246 {
247 wxPyUserData* data = NULL;
248 if ( userData ) {
249 wxPyBlock_t blocked = wxPyBeginBlockThreads();
250 data = new wxPyUserData(userData);
251 wxPyEndBlockThreads(blocked);
252 }
253 return new wxSizerItem(sizer, proportion, flag, border, data);
254 }
255 %cleardisown( wxSizer *sizer );
256 }
257
258
259
260 DocDeclStr(
261 void , DeleteWindows(),
262 "Destroy the window or the windows in a subsizer, depending on the type
263 of item.", "");
264
265 DocDeclStr(
266 void , DetachSizer(),
267 "Enable deleting the SizerItem without destroying the contained sizer.", "");
268
269
270 DocDeclStr(
271 wxSize , GetSize(),
272 "Get the current size of the item, as set in the last Layout.", "");
273
274 DocDeclStr(
275 wxSize , CalcMin(),
276 "Calculates the minimum desired size for the item, including any space
277 needed by borders.", "");
278
279 DocDeclStr(
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
284 account.", "");
285
286
287 DocDeclStr(
288 wxSize , GetMinSize(),
289 "Get the minimum size needed for the item.", "");
290
291 DocDeclStr(
292 wxSize , GetMinSizeWithBorder() const,
293 "Get the minimum size needed for the item with space for the borders
294 added, if needed.", "");
295
296 DocDeclStr(
297 void , SetInitSize( int x, int y ),
298 "", "");
299
300
301 DocStr(SetRatio,
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 );
306
307 DocDeclStr(
308 float , GetRatio(),
309 "Set the ratio item attribute.", "");
310
311 DocDeclStr(
312 wxRect , GetRect(),
313 "Returns the rectangle that the sizer item should occupy", "");
314
315
316 DocDeclStr(
317 bool , IsWindow(),
318 "Is this sizer item a window?", "");
319
320 DocDeclStr(
321 bool , IsSizer(),
322 "Is this sizer item a subsizer?", "");
323
324 DocDeclStr(
325 bool , IsSpacer(),
326 "Is this sizer item a spacer?", "");
327
328
329 DocDeclStr(
330 void , SetProportion( int proportion ),
331 "Set the proportion value for this item.", "");
332
333 DocDeclStr(
334 int , GetProportion(),
335 "Get the proportion value for this item.", "");
336
337 %pythoncode { SetOption = wx._deprecated(SetProportion, "Please use `SetProportion` instead.") }
338 %pythoncode { GetOption = wx._deprecated(GetProportion, "Please use `GetProportion` instead.") }
339
340
341 DocDeclStr(
342 void , SetFlag( int flag ),
343 "Set the flag value for this item.", "");
344
345 DocDeclStr(
346 int , GetFlag(),
347 "Get the flag value for this item.", "");
348
349
350 DocDeclStr(
351 void , SetBorder( int border ),
352 "Set the border value for this item.", "");
353
354 DocDeclStr(
355 int , GetBorder(),
356 "Get the border value for this item.", "");
357
358
359
360 DocDeclStr(
361 wxWindow *, GetWindow(),
362 "Get the window (if any) that is managed by this sizer item.", "");
363
364 DocDeclStr(
365 void , SetWindow( wxWindow *window ),
366 "Set the window to be managed by this sizer item.", "");
367
368
369 DocDeclStr(
370 wxSizer *, GetSizer(),
371 "Get the subsizer (if any) that is managed by this sizer item.", "");
372
373 %disownarg( wxSizer *sizer );
374 DocDeclStr(
375 void , SetSizer( wxSizer *sizer ),
376 "Set the subsizer to be managed by this sizer item.", "");
377 %cleardisown( wxSizer *sizer );
378
379
380 DocDeclStr(
381 wxSize , GetSpacer(),
382 "Get the size of the spacer managed by this sizer item.", "");
383
384 DocDeclStr(
385 void , SetSpacer( const wxSize &size ),
386 "Set the size of the spacer to be managed by this sizer item.", "");
387
388
389 DocDeclStr(
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.", "");
394
395 DocDeclStr(
396 bool , IsShown(),
397 "Is the item to be shown in the layout?", "");
398
399
400 DocDeclStr(
401 wxPoint , GetPosition(),
402 "Returns the current position of the item, as set in the last Layout.", "");
403
404
405 // wxObject* GetUserData();
406 %extend {
407 // Assume that the user data is a wxPyUserData object and return the contents
408
409 DocStr(GetUserData,
410 "Returns the userData associated with this sizer item, or None if there
411 isn't any.", "");
412 PyObject* GetUserData() {
413 wxPyUserData* data = (wxPyUserData*)self->GetUserData();
414 if (data) {
415 Py_INCREF(data->m_obj);
416 return data->m_obj;
417 } else {
418 Py_INCREF(Py_None);
419 return Py_None;
420 }
421 }
422
423 DocStr(SetUserData,
424 "Associate a Python object with this sizer item.", "");
425 void SetUserData(PyObject* userData) {
426 wxPyUserData* data = NULL;
427 if ( userData ) {
428 wxPyBlock_t blocked = wxPyBeginBlockThreads();
429 data = new wxPyUserData(userData);
430 wxPyEndBlockThreads(blocked);
431 }
432 self->SetUserData(data);
433 }
434 }
435
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`");
449 };
450
451
452 //---------------------------------------------------------------------------
453
454 %{
455 // Figure out the type of the sizer item
456
457 struct wxPySizerItemInfo {
458 wxPySizerItemInfo()
459 : window(NULL), sizer(NULL), gotSize(false),
460 size(wxDefaultSize), gotPos(false), pos(-1)
461 {}
462
463 wxWindow* window;
464 wxSizer* sizer;
465 bool gotSize;
466 wxSize size;
467 bool gotPos;
468 int pos;
469 };
470
471 static wxPySizerItemInfo wxPySizerItemTypeHelper(PyObject* item, bool checkSize, bool checkIdx ) {
472
473 wxPySizerItemInfo info;
474 wxSize size;
475 wxSize* sizePtr = &size;
476
477 // Find out what the type of the item is
478 // try wxWindow
479 if ( ! wxPyConvertSwigPtr(item, (void**)&info.window, wxT("wxWindow")) ) {
480 PyErr_Clear();
481 info.window = NULL;
482
483 // try wxSizer
484 if ( ! wxPyConvertSwigPtr(item, (void**)&info.sizer, wxT("wxSizer")) ) {
485 PyErr_Clear();
486 info.sizer = NULL;
487
488 // try wxSize or (w,h)
489 if ( checkSize && wxSize_helper(item, &sizePtr)) {
490 info.size = *sizePtr;
491 info.gotSize = true;
492 }
493
494 // or a single int
495 if (checkIdx && PyInt_Check(item)) {
496 info.pos = PyInt_AsLong(item);
497 info.gotPos = true;
498 }
499 }
500 }
501
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");
510 else
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");
513 }
514
515 return info;
516 }
517 %}
518
519
520
521
522 DocStr(wxSizer,
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
527 `wx.GridBagSizer`.
528
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.
542
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.", "
550
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.
556
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.
560
561 :see: `wx.SizerItem`
562
563 :todo: More dscriptive text here along with some pictures...
564
565 ");
566
567 class wxSizer : public wxObject {
568 public:
569 // wxSizer(); **** abstract, can't instantiate
570
571 ~wxSizer();
572
573 %extend {
574 void _setOORInfo(PyObject* _self) {
575 if (!self->GetClientObject())
576 self->SetClientObject(new wxPyOORClientData(_self));
577 }
578
579 DocAStr(Add,
580 "Add(self, item, int proportion=0, int flag=0, int border=0,
581 PyObject userData=None) -> wx.SizerItem",
582
583 "Appends a child item to the sizer.", "
584
585 :param item: The item can be one of three kinds of objects:
586
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`.
593
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).
598
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
609 the dialog.
610
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.
625
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.
635
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. |
640 |- wx.RIGHT | |
641 |- wx.ALL | |
642 | | |
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 |
649 | |aspect ratio |
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 +----------------------------+------------------------------------------+
670
671
672 :param border: Determines the border width, if the *flag*
673 parameter is set to include any border flag.
674
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.
678 ");
679
680 wxSizerItem* Add(PyObject* item, int proportion=0, int flag=0, int border=0,
681 PyObject* userData=NULL) {
682
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);
688 if ( info.sizer )
689 PyObject_SetAttrString(item,"thisown",Py_False);
690 wxPyEndBlockThreads(blocked);
691
692 // Now call the real Add method if a valid item type was found
693 if ( info.window )
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);
700 else
701 return NULL;
702 }
703
704
705 DocAStr(AddF,
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) {
710
711 wxPyBlock_t blocked = wxPyBeginBlockThreads();
712 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false);
713 if ( info.sizer )
714 PyObject_SetAttrString(item,"thisown",Py_False);
715 wxPyEndBlockThreads(blocked);
716
717 // Now call the real Add method if a valid item type was found
718 if ( info.window )
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(),
725 flags.GetFlags(),
726 flags.GetBorderInPixels());
727 else
728 return NULL;
729 }
730
731
732
733 DocAStr(Insert,
734 "Insert(self, int before, item, int proportion=0, int flag=0, int border=0,
735 PyObject userData=None) -> wx.SizerItem",
736
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) {
741
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);
747 if ( info.sizer )
748 PyObject_SetAttrString(item,"thisown",Py_False);
749 wxPyEndBlockThreads(blocked);
750
751 // Now call the real Insert method if a valid item type was found
752 if ( info.window )
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);
759 else
760 return NULL;
761 }
762
763
764
765 DocAStr(InsertF,
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) {
770
771 wxPyBlock_t blocked = wxPyBeginBlockThreads();
772 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false);
773 if ( info.sizer )
774 PyObject_SetAttrString(item,"thisown",Py_False);
775 wxPyEndBlockThreads(blocked);
776
777 // Now call the real Insert method if a valid item type was found
778 if ( info.window )
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(),
785 flags.GetFlags(),
786 flags.GetBorderInPixels());
787 else
788 return NULL;
789 }
790
791
792
793
794 DocAStr(Prepend,
795 "Prepend(self, item, int proportion=0, int flag=0, int border=0,
796 PyObject userData=None) -> wx.SizerItem",
797
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) {
802
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);
808 if ( info.sizer )
809 PyObject_SetAttrString(item,"thisown",Py_False);
810 wxPyEndBlockThreads(blocked);
811
812 // Now call the real Prepend method if a valid item type was found
813 if ( info.window )
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);
820 else
821 return NULL;
822 }
823
824
825
826 DocAStr(PrependF,
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) {
831
832 wxPyBlock_t blocked = wxPyBeginBlockThreads();
833 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false);
834 if ( info.sizer )
835 PyObject_SetAttrString(item,"thisown",Py_False);
836 wxPyEndBlockThreads(blocked);
837
838 // Now call the real Add method if a valid item type was found
839 if ( info.window )
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(),
846 flags.GetFlags(),
847 flags.GetBorderInPixels());
848 else
849 return NULL;
850 }
851
852
853
854 DocAStr(Remove,
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
861 and removed.", "
862
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`
866 instead.
867 ");
868 bool Remove(PyObject* item) {
869 wxPyBlock_t blocked = wxPyBeginBlockThreads();
870 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true);
871 wxPyEndBlockThreads(blocked);
872 if ( info.window )
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);
878 else
879 return false;
880 }
881
882
883 DocAStr(Detach,
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);
894 if ( info.window )
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);
900 else
901 return false;
902 }
903
904
905 DocAStr(GetItem,
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);
914 if ( info.window )
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);
920 else
921 return NULL;
922 }
923
924
925 void _SetItemMinSize(PyObject* item, const wxSize& size) {
926 wxPyBlock_t blocked = wxPyBeginBlockThreads();
927 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true);
928 wxPyEndBlockThreads(blocked);
929 if ( info.window )
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);
935 }
936 }
937
938
939 %Rename(_ReplaceWin,
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 ));
945 %pythoncode {
946 def Replace(self, olditem, item, recursive=False):
947 """
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.
954
955 This method does not cause any layout or resizing to take place,
956 call `Layout` to do so.
957
958 Returns ``True`` if the child item was found and removed.
959 """
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)
966 else:
967 raise TypeError("Expected Window, Sizer, or integer for first parameter.")
968 }
969
970
971 DocDeclStr(
972 void , SetContainingWindow(wxWindow *window),
973 "Set (or unset) the window this sizer is used in.", "");
974
975 DocDeclStr(
976 wxWindow *, GetContainingWindow() const,
977 "Get the window this sizer is used in.", "");
978
979
980 %pythoncode {
981 def SetItemMinSize(self, item, *args):
982 """
983 SetItemMinSize(self, item, Size size)
984
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.
989 """
990 if len(args) == 2:
991 %# for backward compatibility accept separate width,height args too
992 return self._SetItemMinSize(item, args)
993 else:
994 return self._SetItemMinSize(item, args[0])
995 }
996
997
998 %disownarg( wxSizerItem *item );
999
1000 DocDeclAStrName(
1001 wxSizerItem* , Add( wxSizerItem *item ),
1002 "AddItem(self, SizerItem item)",
1003 "Adds a `wx.SizerItem` to the sizer.", "",
1004 AddItem);
1005
1006 DocDeclAStrName(
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*.", "",
1010 InsertItem);
1011
1012 DocDeclAStrName(
1013 wxSizerItem* , Prepend( wxSizerItem *item ),
1014 "PrependItem(self, SizerItem item)",
1015 "Prepends a `wx.SizerItem` to the sizer.", "",
1016 PrependItem);
1017
1018 %cleardisown( wxSizerItem *item );
1019
1020
1021 %pythoncode {
1022 def AddMany(self, items):
1023 """
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.
1028 """
1029 for item in items:
1030 if type(item) != type(()) or (len(item) == 2 and type(item[0]) == type(1)):
1031 item = (item, )
1032 self.Add(*item)
1033
1034 def AddSpacer(self, *args, **kw):
1035 """AddSpacer(int size) --> SizerItem
1036
1037 Add a spacer that is (size,size) pixels.
1038 """
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
1045
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
1053
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)
1059
1060
1061 def AddStretchSpacer(self, prop=1):
1062 """AddStretchSpacer(int prop=1) --> SizerItem
1063
1064 Add a stretchable spacer."""
1065 return self.Add((0,0), prop)
1066 def PrependStretchSpacer(self, prop=1):
1067 """PrependStretchSpacer(int prop=1) --> SizerItem
1068
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
1073
1074 Insert a stretchable spacer."""
1075 return self.Insert(index, (0,0), prop)
1076
1077
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)
1085
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)
1092
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)
1099
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)
1109
1110 }
1111
1112
1113 DocDeclStr(
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`
1118 methods.", "");
1119
1120 DocDeclStr(
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.", "");
1127
1128
1129 DocDeclStr(
1130 wxSize , GetSize(),
1131 "Returns the current size of the space managed by the sizer.", "");
1132
1133 DocDeclStr(
1134 wxPoint , GetPosition(),
1135 "Returns the current position of the sizer's managed space.", "");
1136
1137 DocDeclStr(
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.", "");
1142
1143
1144 %pythoncode {
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()
1151 }
1152
1153 DocDeclStr(
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`.", "");
1158
1159 DocDeclStr(
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`.", "");
1164
1165
1166 DocDeclStr(
1167 void , 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
1173 removed.", "");
1174
1175
1176 DocDeclStr(
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.
1182
1183 For a top level window this is the total window size, not the client size.", "");
1184
1185 DocDeclStr(
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.
1191
1192 :see: `wx.ScrolledWindow.SetScrollbars`, `SetVirtualSizeHints`
1193 ", "");
1194
1195
1196 DocDeclStr(
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.", "");
1204
1205 DocDeclStr(
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.
1210
1211 :see: `wx.ScrolledWindow.SetScrollbars`
1212 ", "");
1213
1214
1215 DocDeclStr(
1216 void , Clear( bool deleteWindows=false ),
1217 "Clear all items from the sizer, optionally destroying the window items
1218 as well.", "");
1219
1220 DocDeclStr(
1221 void , DeleteWindows(),
1222 "Destroy all windows managed by the sizer.", "");
1223
1224
1225
1226 // wxList& GetChildren();
1227 %extend {
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);
1234 }
1235 }
1236
1237
1238 // Manage whether individual windows or subsizers are considered
1239 // in the layout calculations or not.
1240
1241 %extend {
1242 DocAStr(Show,
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);
1253 if ( info.window )
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);
1259 else
1260 return false;
1261 }
1262
1263 DocAStr(IsShown,
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
1268 the item.", "");
1269 bool IsShown(PyObject* item) {
1270 wxPyBlock_t blocked = wxPyBeginBlockThreads();
1271 wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, false);
1272 wxPyEndBlockThreads(blocked);
1273 if ( info.window )
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);
1279 else
1280 return false;
1281 }
1282 }
1283
1284 %pythoncode {
1285 def Hide(self, item, recursive=False):
1286 """
1287 A convenience method for `Show` (item, False, recursive).
1288 """
1289 return self.Show(item, False, recursive)
1290 }
1291
1292
1293 DocDeclStr(
1294 void , ShowItems(bool show),
1295 "Recursively call `wx.SizerItem.Show` on all sizer items.", "");
1296
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`");
1302 };
1303
1304
1305 //---------------------------------------------------------------------------
1306 // Use this one for deriving Python classes from
1307 %{
1308 // See pyclasses.h
1309 IMP_PYCALLBACK___pure(wxPySizer, wxSizer, RecalcSizes);
1310 IMP_PYCALLBACK_wxSize__pure(wxPySizer, wxSizer, CalcMin);
1311 IMPLEMENT_DYNAMIC_CLASS(wxPySizer, wxSizer);
1312 %}
1313
1314
1315 DocStr(wxPySizer,
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.
1321 For example::
1322
1323 class MySizer(wx.PySizer):
1324 def __init__(self):
1325 wx.PySizer.__init__(self)
1326
1327 def CalcMin(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
1331 # layout algorithm.
1332 ...
1333 return wx.Size(width, height)
1334
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.
1344 ...
1345 item.SetDimension(itemPos, itemSize)
1346
1347
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`.
1351
1352 :see: `wx.SizerItem`, `wx.Sizer.GetChildren`
1353
1354 ", "");
1355 class wxPySizer : public wxSizer {
1356 public:
1357 %pythonAppend wxPySizer "self._setOORInfo(self);" setCallbackInfo(PySizer)
1358
1359 DocCtorStr(
1360 wxPySizer(),
1361 "Creates a wx.PySizer. Must be called from the __init__ in the derived
1362 class.", "");
1363
1364 void _setCallbackInfo(PyObject* self, PyObject* _class);
1365 };
1366
1367
1368 //---------------------------------------------------------------------------
1369 %newgroup;
1370
1371
1372 DocStr(wxBoxSizer,
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.", "
1378
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.
1392
1393 :see: `wx.StaticBoxSizer`
1394 ");
1395
1396 class wxBoxSizer : public wxSizer {
1397 public:
1398 %pythonAppend wxBoxSizer "self._setOORInfo(self)"
1399
1400 DocCtorStr(
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
1404 sizer.", "");
1405
1406
1407 DocDeclStr(
1408 int , GetOrientation(),
1409 "Returns the current orientation of the sizer.", "");
1410
1411 DocDeclStr(
1412 void , SetOrientation(int orient),
1413 "Resets the orientation of the sizer.", "");
1414
1415 %property(Orientation, GetOrientation, SetOrientation, doc="See `GetOrientation` and `SetOrientation`");
1416 };
1417
1418 //---------------------------------------------------------------------------
1419 %newgroup;
1420
1421
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.", "");
1427
1428 class wxStaticBoxSizer : public wxBoxSizer {
1429 public:
1430 %pythonAppend wxStaticBoxSizer "self._setOORInfo(self)"
1431
1432 DocCtorStr(
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``.", "");
1437
1438 // TODO: wxStaticBoxSizer(int orient, wxWindow *win, const wxString& label = wxEmptyString);
1439
1440 DocDeclStr(
1441 wxStaticBox *, GetStaticBox(),
1442 "Returns the static box associated with this sizer.", "");
1443
1444 %property(StaticBox, GetStaticBox, doc="See `GetStaticBox`");
1445 };
1446
1447 //---------------------------------------------------------------------------
1448 %newgroup;
1449
1450
1451 DocStr(wxGridSizer,
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.)
1458
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`.
1465 ", "");
1466
1467 class wxGridSizer: public wxSizer
1468 {
1469 public:
1470 %pythonAppend wxGridSizer "self._setOORInfo(self)"
1471
1472 DocCtorStr(
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.", "");
1479
1480 DocDeclStr(
1481 void , SetCols( int cols ),
1482 "Sets the number of columns in the sizer.", "");
1483
1484 DocDeclStr(
1485 void , SetRows( int rows ),
1486 "Sets the number of rows in the sizer.", "");
1487
1488 DocDeclStr(
1489 void , SetVGap( int gap ),
1490 "Sets the vertical gap (in pixels) between the cells in the sizer.", "");
1491
1492 DocDeclStr(
1493 void , SetHGap( int gap ),
1494 "Sets the horizontal gap (in pixels) between cells in the sizer", "");
1495
1496 DocDeclStr(
1497 int , GetCols(),
1498 "Returns the number of columns in the sizer.", "");
1499
1500 DocDeclStr(
1501 int , GetRows(),
1502 "Returns the number of rows in the sizer.", "");
1503
1504 DocDeclStr(
1505 int , GetVGap(),
1506 "Returns the vertical gap (in pixels) between the cells in the sizer.", "");
1507
1508 DocDeclStr(
1509 int , GetHGap(),
1510 "Returns the horizontal gap (in pixels) between cells in the sizer.", "");
1511
1512 %pythoncode {
1513 def CalcRowsCols(self):
1514 """
1515 CalcRowsCols() -> (rows, cols)
1516
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
1519 in the constructor.
1520 """
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"
1525 if cols != 0:
1526 rows = (nitems + cols - 1) / cols
1527 elif rows != 0:
1528 cols = (nitems + rows - 1) / rows
1529 return (rows, cols)
1530 }
1531
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`");
1536 };
1537
1538 //---------------------------------------------------------------------------
1539 %newgroup;
1540
1541 enum wxFlexSizerGrowMode
1542 {
1543 // don't resize the cells in non-flexible direction at all
1544 wxFLEX_GROWMODE_NONE,
1545
1546 // uniformly resize only the specified ones (default)
1547 wxFLEX_GROWMODE_SPECIFIED,
1548
1549 // uniformly resize all cells
1550 wxFLEX_GROWMODE_ALL
1551 };
1552
1553
1554
1555
1556
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
1562 the `wx.GridSizer`.
1563
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.
1570
1571 ", "");
1572
1573 class wxFlexGridSizer: public wxGridSizer
1574 {
1575 public:
1576 %pythonAppend wxFlexGridSizer "self._setOORInfo(self)"
1577
1578 DocCtorStr(
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.", "");
1585
1586
1587 DocDeclStr(
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.
1591
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).", "");
1595
1596 DocDeclStr(
1597 void , RemoveGrowableRow( size_t idx ),
1598 "Specifies that row *idx* is no longer growable.", "");
1599
1600 DocDeclStr(
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.
1604
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).", "");
1608
1609 DocDeclStr(
1610 void , RemoveGrowableCol( size_t idx ),
1611 "Specifies that column *idx* is no longer growable.", "");
1612
1613
1614 DocDeclStr(
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.
1619
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 ============== =======================================
1626
1627 Note that this method does not trigger relayout.
1628 ", "");
1629
1630 DocDeclStr(
1631 int , GetFlexibleDirection(),
1632 "Returns a value that specifies whether the sizer
1633 flexibly resizes its columns, rows, or both (default).
1634
1635 :see: `SetFlexibleDirection`", "");
1636
1637
1638
1639 DocDeclStr(
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:
1644
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 ========================== =================================================
1655
1656 Note that this method does not trigger relayout.", "");
1657
1658 DocDeclStr(
1659 wxFlexSizerGrowMode , GetNonFlexibleGrowMode(),
1660 "Returns the value that specifies how the sizer grows in the
1661 non-flexible direction if there is one.
1662
1663 :see: `SetNonFlexibleGrowMode`", "");
1664
1665
1666 // Read-only access to the row heights and col widths arrays
1667 DocDeclAStr(
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.", "");
1672
1673 DocDeclAStr(
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.", "");
1678
1679
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`");
1684
1685 };
1686
1687 //---------------------------------------------------------------------------
1688
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.
1695 ", "");
1696
1697 class wxStdDialogButtonSizer: public wxBoxSizer
1698 {
1699 public:
1700 DocCtorStr(
1701 wxStdDialogButtonSizer(),
1702 "", "");
1703
1704 DocDeclStr(
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.", "");
1708
1709 DocDeclStr(
1710 void , Realize(),
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.", "");
1714
1715 void SetAffirmativeButton( wxButton *button );
1716 void SetNegativeButton( wxButton *button );
1717 void SetCancelButton( wxButton *button );
1718
1719 wxButton* GetAffirmativeButton() const;
1720 wxButton* GetApplyButton() const;
1721 wxButton* GetNegativeButton() const;
1722 wxButton* GetCancelButton() const;
1723 wxButton* GetHelpButton() const;
1724
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`");
1730 };
1731
1732
1733 //---------------------------------------------------------------------------