]>
Commit | Line | Data |
---|---|---|
d14a1e28 RD |
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 | ||
3ea6e0ec RD |
24 | DocStr(wxSizerItem, |
25 | "The wx.SizerItem class is used to track the position, size and other | |
26 | attributes of each item managed by a `wx.Sizer`. In normal usage user | |
27 | code should never need to deal directly with a wx.SizerItem, but | |
28 | custom classes derived from `wx.PySizer` will probably need to use the | |
29 | collection of wx.SizerItems held by wx.Sizer when calculating layout. | |
30 | ||
31 | :see: `wx.Sizer`, `wx.GBSizerItem`", ""); | |
d14a1e28 RD |
32 | |
33 | class wxSizerItem : public wxObject { | |
34 | public: | |
3ea6e0ec RD |
35 | DocCtorStr( |
36 | wxSizerItem(), | |
37 | "Constructs an empty wx.SizerItem. Either a window, sizer or spacer | |
38 | size will need to be set before this item can be used in a Sizer. | |
39 | ||
40 | You will probably never need to create a wx.SizerItem directly as they | |
41 | are created automatically when the sizer's Add, Insert or Prepend | |
42 | methods are called. | |
43 | ||
44 | :see: `wx.SizerItemSpacer`, `wx.SizerItemWindow`, `wx.SizerItemSizer`", ""); | |
45 | ||
46 | ||
d14a1e28 | 47 | |
3ea6e0ec RD |
48 | %extend { |
49 | DocStr( | |
50 | wxSizerItem( wxWindow *window, int proportion, int flag, | |
51 | int border, PyObject* userData=NULL ), | |
52 | "Constructs a `wx.SizerItem` for tracking a window.", ""); | |
53 | ||
1b8c7ba6 RD |
54 | %RenameCtor(SizerItemWindow, wxSizerItem( wxWindow *window, int proportion, int flag, |
55 | int border, PyObject* userData=NULL )) | |
56 | { | |
3ea6e0ec RD |
57 | wxPyUserData* data = NULL; |
58 | if ( userData ) { | |
59 | bool blocked = wxPyBeginBlockThreads(); | |
60 | data = new wxPyUserData(userData); | |
61 | wxPyEndBlockThreads(blocked); | |
62 | } | |
63 | return new wxSizerItem(window, proportion, flag, border, data); | |
64 | } | |
65 | ||
66 | ||
67 | DocStr( | |
68 | wxSizerItem( int width, int height, int proportion, int flag, | |
69 | int border, PyObject* userData=NULL), | |
70 | "Constructs a `wx.SizerItem` for tracking a spacer.", ""); | |
1b8c7ba6 RD |
71 | |
72 | %RenameCtor(SizerItemSpacer, wxSizerItem( int width, int height, int proportion, int flag, | |
73 | int border, PyObject* userData=NULL)) | |
74 | { | |
3ea6e0ec RD |
75 | wxPyUserData* data = NULL; |
76 | if ( userData ) { | |
77 | bool blocked = wxPyBeginBlockThreads(); | |
78 | data = new wxPyUserData(userData); | |
79 | wxPyEndBlockThreads(blocked); | |
80 | } | |
81 | return new wxSizerItem(width, height, proportion, flag, border, data); | |
82 | } | |
83 | ||
84 | DocStr( | |
85 | wxSizerItem( wxSizer *sizer, int proportion, int flag, | |
86 | int border, PyObject* userData=NULL ), | |
1b8c7ba6 RD |
87 | "Constructs a `wx.SizerItem` for tracking a subsizer", ""); |
88 | ||
89 | %RenameCtor(SizerItemSizer, wxSizerItem( wxSizer *sizer, int proportion, int flag, | |
90 | int border, PyObject* userData=NULL )) | |
91 | { | |
3ea6e0ec RD |
92 | wxPyUserData* data = NULL; |
93 | if ( userData ) { | |
94 | bool blocked = wxPyBeginBlockThreads(); | |
95 | data = new wxPyUserData(userData); | |
96 | wxPyEndBlockThreads(blocked); | |
97 | } | |
98 | return new wxSizerItem(sizer, proportion, flag, border, data); | |
99 | } | |
100 | } | |
d14a1e28 | 101 | |
d14a1e28 | 102 | |
3ea6e0ec RD |
103 | |
104 | DocDeclStr( | |
105 | void , DeleteWindows(), | |
106 | "Destroy the window or the windows in a subsizer, depending on the type | |
107 | of item.", ""); | |
108 | ||
109 | DocDeclStr( | |
110 | void , DetachSizer(), | |
111 | "Enable deleting the SizerItem without destroying the contained sizer.", ""); | |
112 | ||
d14a1e28 | 113 | |
3ea6e0ec RD |
114 | DocDeclStr( |
115 | wxSize , GetSize(), | |
116 | "Get the current size of the item, as set in the last Layout.", ""); | |
117 | ||
118 | DocDeclStr( | |
119 | wxSize , CalcMin(), | |
120 | "Calculates the minimum desired size for the item, including any space | |
121 | needed by borders.", ""); | |
122 | ||
123 | DocDeclStr( | |
124 | void , SetDimension( wxPoint pos, wxSize size ), | |
125 | "Set the position and size of the space allocated for this item by the | |
126 | sizer, and adjust the position and size of the item (window or | |
127 | subsizer) to be within that space taking alignment and borders into | |
128 | account.", ""); | |
129 | ||
130 | ||
131 | DocDeclStr( | |
132 | wxSize , GetMinSize(), | |
133 | "Get the minimum size needed for the item.", ""); | |
134 | ||
329b045c RD |
135 | DocDeclStr( |
136 | wxSize , GetMinSizeWithBorder() const, | |
137 | "Get the minimum size needed for the item with space for the borders | |
138 | added, if needed.", ""); | |
139 | ||
3ea6e0ec RD |
140 | DocDeclStr( |
141 | void , SetInitSize( int x, int y ), | |
142 | "", ""); | |
143 | ||
d14a1e28 | 144 | |
3ea6e0ec RD |
145 | DocStr(SetRatio, |
146 | "Set the ratio item attribute.", ""); | |
1b8c7ba6 RD |
147 | %Rename(SetRatioWH, void, SetRatio( int width, int height )); |
148 | %Rename(SetRatioSize, void, SetRatio( wxSize size )); | |
d14a1e28 | 149 | void SetRatio( float ratio ); |
3ea6e0ec RD |
150 | |
151 | DocDeclStr( | |
152 | float , GetRatio(), | |
153 | "Set the ratio item attribute.", ""); | |
7aada1e0 RD |
154 | |
155 | DocDeclStr( | |
156 | wxRect , GetRect(), | |
157 | "Returns the rectangle that the sizer item should occupy", ""); | |
3ea6e0ec | 158 | |
d14a1e28 | 159 | |
3ea6e0ec RD |
160 | DocDeclStr( |
161 | bool , IsWindow(), | |
162 | "Is this sizer item a window?", ""); | |
163 | ||
164 | DocDeclStr( | |
165 | bool , IsSizer(), | |
166 | "Is this sizer item a subsizer?", ""); | |
167 | ||
168 | DocDeclStr( | |
169 | bool , IsSpacer(), | |
170 | "Is this sizer item a spacer?", ""); | |
171 | ||
d14a1e28 | 172 | |
3ea6e0ec RD |
173 | DocDeclStr( |
174 | void , SetProportion( int proportion ), | |
175 | "Set the proportion value for this item.", ""); | |
d14a1e28 | 176 | |
3ea6e0ec RD |
177 | DocDeclStr( |
178 | int , GetProportion(), | |
179 | "Get the proportion value for this item.", ""); | |
d14a1e28 | 180 | |
3ea6e0ec RD |
181 | %pythoncode { SetOption = wx._deprecated(SetProportion, "Please use `SetProportion` instead.") } |
182 | %pythoncode { GetOption = wx._deprecated(GetProportion, "Please use `GetProportion` instead.") } | |
d14a1e28 | 183 | |
d14a1e28 | 184 | |
3ea6e0ec RD |
185 | DocDeclStr( |
186 | void , SetFlag( int flag ), | |
187 | "Set the flag value for this item.", ""); | |
188 | ||
189 | DocDeclStr( | |
190 | int , GetFlag(), | |
191 | "Get the flag value for this item.", ""); | |
192 | ||
193 | ||
194 | DocDeclStr( | |
195 | void , SetBorder( int border ), | |
196 | "Set the border value for this item.", ""); | |
197 | ||
198 | DocDeclStr( | |
199 | int , GetBorder(), | |
200 | "Get the border value for this item.", ""); | |
d14a1e28 | 201 | |
d14a1e28 | 202 | |
3ea6e0ec RD |
203 | |
204 | DocDeclStr( | |
205 | wxWindow *, GetWindow(), | |
206 | "Get the window (if any) that is managed by this sizer item.", ""); | |
207 | ||
208 | DocDeclStr( | |
209 | void , SetWindow( wxWindow *window ), | |
210 | "Set the window to be managed by this sizer item.", ""); | |
211 | ||
212 | ||
213 | DocDeclStr( | |
214 | wxSizer *, GetSizer(), | |
215 | "Get the subsizer (if any) that is managed by this sizer item.", ""); | |
216 | ||
217 | DocDeclStr( | |
218 | void , SetSizer( wxSizer *sizer ), | |
219 | "Set the subsizer to be managed by this sizer item.", ""); | |
220 | ||
221 | ||
222 | DocDeclStr( | |
223 | const wxSize& , GetSpacer(), | |
224 | "Get the size of the spacer managed by this sizer item.", ""); | |
225 | ||
226 | DocDeclStr( | |
227 | void , SetSpacer( const wxSize &size ), | |
228 | "Set the size of the spacer to be managed by this sizer item.", ""); | |
229 | ||
d14a1e28 | 230 | |
3ea6e0ec RD |
231 | DocDeclStr( |
232 | void , Show( bool show ), | |
233 | "Set the show item attribute, which sizers use to determine if the item | |
234 | is to be made part of the layout or not. If the item is tracking a | |
235 | window then it is shown or hidden as needed.", ""); | |
236 | ||
237 | DocDeclStr( | |
238 | bool , IsShown(), | |
239 | "Is the item to be shown in the layout?", ""); | |
240 | ||
241 | ||
242 | DocDeclStr( | |
243 | wxPoint , GetPosition(), | |
244 | "Returns the current position of the item, as set in the last Layout.", ""); | |
245 | ||
d14a1e28 RD |
246 | |
247 | // wxObject* GetUserData(); | |
248 | %extend { | |
249 | // Assume that the user data is a wxPyUserData object and return the contents | |
3ea6e0ec RD |
250 | |
251 | DocStr(GetUserData, | |
252 | "Returns the userData associated with this sizer item, or None if there | |
253 | isn't any.", ""); | |
d14a1e28 RD |
254 | PyObject* GetUserData() { |
255 | wxPyUserData* data = (wxPyUserData*)self->GetUserData(); | |
256 | if (data) { | |
257 | Py_INCREF(data->m_obj); | |
258 | return data->m_obj; | |
259 | } else { | |
260 | Py_INCREF(Py_None); | |
261 | return Py_None; | |
262 | } | |
263 | } | |
264 | } | |
265 | }; | |
266 | ||
267 | ||
268 | //--------------------------------------------------------------------------- | |
269 | ||
270 | %{ | |
271 | // Figure out the type of the sizer item | |
272 | ||
273 | struct wxPySizerItemInfo { | |
274 | wxPySizerItemInfo() | |
a72f4631 RD |
275 | : window(NULL), sizer(NULL), gotSize(false), |
276 | size(wxDefaultSize), gotPos(false), pos(-1) | |
d14a1e28 RD |
277 | {} |
278 | ||
279 | wxWindow* window; | |
280 | wxSizer* sizer; | |
281 | bool gotSize; | |
282 | wxSize size; | |
283 | bool gotPos; | |
284 | int pos; | |
285 | }; | |
286 | ||
287 | static wxPySizerItemInfo wxPySizerItemTypeHelper(PyObject* item, bool checkSize, bool checkIdx ) { | |
288 | ||
289 | wxPySizerItemInfo info; | |
290 | wxSize size; | |
291 | wxSize* sizePtr = &size; | |
292 | ||
293 | // Find out what the type of the item is | |
294 | // try wxWindow | |
295 | if ( ! wxPyConvertSwigPtr(item, (void**)&info.window, wxT("wxWindow")) ) { | |
296 | PyErr_Clear(); | |
297 | info.window = NULL; | |
298 | ||
299 | // try wxSizer | |
300 | if ( ! wxPyConvertSwigPtr(item, (void**)&info.sizer, wxT("wxSizer")) ) { | |
301 | PyErr_Clear(); | |
302 | info.sizer = NULL; | |
303 | ||
304 | // try wxSize or (w,h) | |
305 | if ( checkSize && wxSize_helper(item, &sizePtr)) { | |
306 | info.size = *sizePtr; | |
a72f4631 | 307 | info.gotSize = true; |
d14a1e28 RD |
308 | } |
309 | ||
310 | // or a single int | |
311 | if (checkIdx && PyInt_Check(item)) { | |
312 | info.pos = PyInt_AsLong(item); | |
a72f4631 | 313 | info.gotPos = true; |
d14a1e28 RD |
314 | } |
315 | } | |
316 | } | |
317 | ||
318 | if ( !(info.window || info.sizer || (checkSize && info.gotSize) || (checkIdx && info.gotPos)) ) { | |
319 | // no expected type, figure out what kind of error message to generate | |
320 | if ( !checkSize && !checkIdx ) | |
321 | PyErr_SetString(PyExc_TypeError, "wxWindow or wxSizer expected for item"); | |
322 | else if ( checkSize && !checkIdx ) | |
323 | PyErr_SetString(PyExc_TypeError, "wxWindow, wxSizer, wxSize, or (w,h) expected for item"); | |
324 | else if ( !checkSize && checkIdx) | |
325 | PyErr_SetString(PyExc_TypeError, "wxWindow, wxSizer or int (position) expected for item"); | |
326 | else | |
327 | // can this one happen? | |
328 | PyErr_SetString(PyExc_TypeError, "wxWindow, wxSizer, wxSize, or (w,h) or int (position) expected for item"); | |
329 | } | |
330 | ||
331 | return info; | |
332 | } | |
333 | %} | |
334 | ||
335 | ||
336 | ||
337 | ||
3ea6e0ec RD |
338 | DocStr(wxSizer, |
339 | "wx.Sizer is the abstract base class used for laying out subwindows in | |
340 | a window. You cannot use wx.Sizer directly; instead, you will have to | |
341 | use one of the sizer classes derived from it such as `wx.BoxSizer`, | |
342 | `wx.StaticBoxSizer`, `wx.NotebookSizer`, `wx.GridSizer`, `wx.FlexGridSizer` | |
343 | and `wx.GridBagSizer`. | |
344 | ||
345 | The concept implemented by sizers in wxWidgets is closely related to | |
346 | layout tools in other GUI toolkits, such as Java's AWT, the GTK | |
347 | toolkit or the Qt toolkit. It is based upon the idea of the individual | |
348 | subwindows reporting their minimal required size and their ability to | |
349 | get stretched if the size of the parent window has changed. This will | |
350 | most often mean that the programmer does not set the original size of | |
351 | a dialog in the beginning, rather the dialog will assigned a sizer and | |
352 | this sizer will be queried about the recommended size. The sizer in | |
353 | turn will query its children, which can be normal windows or contorls, | |
354 | empty space or other sizers, so that a hierarchy of sizers can be | |
355 | constructed. Note that wxSizer does not derive from wxWindow and thus | |
356 | do not interfere with tab ordering and requires very little resources | |
357 | compared to a real window on screen. | |
358 | ||
359 | What makes sizers so well fitted for use in wxWidgets is the fact that | |
360 | every control reports its own minimal size and the algorithm can | |
361 | handle differences in font sizes or different window (dialog item) | |
362 | sizes on different platforms without problems. If for example the | |
363 | standard font as well as the overall design of Mac widgets requires | |
364 | more space than on Windows, then the initial size of a dialog using a | |
365 | sizer will automatically be bigger on Mac than on Windows.", " | |
366 | ||
367 | :note: If you wish to create a custom sizer class in wxPython you | |
368 | should derive the class from `wx.PySizer` in order to get | |
369 | Python-aware capabilities for the various virtual methods. | |
370 | ||
371 | :see: `wx.SizerItem` | |
372 | ||
373 | :todo: More dscriptive text here along with some pictures... | |
374 | ||
375 | "); | |
376 | ||
d14a1e28 RD |
377 | class wxSizer : public wxObject { |
378 | public: | |
379 | // wxSizer(); **** abstract, can't instantiate | |
380 | // ~wxSizer(); | |
381 | ||
382 | %extend { | |
383 | void _setOORInfo(PyObject* _self) { | |
a77bf68f RD |
384 | if (!self->GetClientObject()) |
385 | self->SetClientObject(new wxPyOORClientData(_self)); | |
d14a1e28 RD |
386 | } |
387 | ||
3ea6e0ec RD |
388 | DocAStr(Add, |
389 | "Add(self, item, int proportion=0, int flag=0, int border=0, | |
7aada1e0 | 390 | PyObject userData=None) -> wx.SizerItem", |
3ea6e0ec RD |
391 | |
392 | "Appends a child item to the sizer.", " | |
393 | ||
394 | :param item: The item can be one of three kinds of objects: | |
395 | ||
396 | - **window**: A `wx.Window` to be managed by the sizer. Its | |
397 | minimal size (either set explicitly by the user or | |
398 | calculated internally when constructed with wx.DefaultSize) | |
399 | is interpreted as the minimal size to use when laying out | |
400 | item in the sizer. This is particularly useful in | |
401 | connection with `wx.Window.SetSizeHints`. | |
402 | ||
403 | - **sizer**: The (child-)sizer to be added to the sizer. This | |
404 | allows placing a child sizer in a sizer and thus to create | |
405 | hierarchies of sizers (typically a vertical box as the top | |
406 | sizer and several horizontal boxes on the level beneath). | |
407 | ||
408 | - **size**: A `wx.Size` or a 2-element sequence of integers | |
409 | that represents the width and height of a spacer to be added | |
410 | to the sizer. Adding spacers to sizers gives more | |
411 | flexibility in the design of dialogs; imagine for example a | |
412 | horizontal box with two buttons at the bottom of a dialog: | |
413 | you might want to insert a space between the two buttons and | |
414 | make that space stretchable using the *proportion* value and | |
415 | the result will be that the left button will be aligned with | |
416 | the left side of the dialog and the right button with the | |
417 | right side - the space in between will shrink and grow with | |
418 | the dialog. | |
419 | ||
420 | :param proportion: Although the meaning of this parameter is | |
421 | undefined in wx.Sizer, it is used in `wx.BoxSizer` to indicate | |
422 | if a child of a sizer can change its size in the main | |
423 | orientation of the wx.BoxSizer - where 0 stands for not | |
424 | changeable and a value of more than zero is interpreted | |
425 | relative (a proportion of the total) to the value of other | |
426 | children of the same wx.BoxSizer. For example, you might have | |
427 | a horizontal wx.BoxSizer with three children, two of which are | |
428 | supposed to change their size with the sizer. Then the two | |
429 | stretchable windows should each be given *proportion* value of | |
430 | 1 to make them grow and shrink equally with the sizer's | |
431 | horizontal dimension. But if one of them had a *proportion* | |
432 | value of 2 then it would get a double share of the space | |
433 | available after the fixed size items are positioned. | |
434 | ||
435 | :param flag: This parameter can be used to set a number of flags | |
436 | which can be combined using the binary OR operator ``|``. Two | |
437 | main behaviours are defined using these flags. One is the | |
438 | border around a window: the *border* parameter determines the | |
439 | border width whereas the flags given here determine which | |
440 | side(s) of the item that the border will be added. The other | |
441 | flags determine how the sizer item behaves when the space | |
442 | allotted to the sizer changes, and is somewhat dependent on | |
443 | the specific kind of sizer used. | |
444 | ||
445 | +----------------------------+------------------------------------------+ | |
446 | |- wx.TOP |These flags are used to specify | | |
447 | |- wx.BOTTOM |which side(s) of the sizer item that | | |
448 | |- wx.LEFT |the *border* width will apply to. | | |
449 | |- wx.RIGHT | | | |
450 | |- wx.ALL | | | |
451 | | | | | |
452 | +----------------------------+------------------------------------------+ | |
453 | |- wx.EXAPAND |The item will be expanded to fill | | |
454 | | |the space allotted to the item. | | |
455 | +----------------------------+------------------------------------------+ | |
456 | |- wx.SHAPED |The item will be expanded as much as | | |
457 | | |possible while also maintaining its | | |
458 | | |aspect ratio | | |
459 | +----------------------------+------------------------------------------+ | |
460 | |- wx.FIXED_MINSIZE |Normally wx.Sizers will use | | |
461 | | |`wx.Window.GetMinSize` or | | |
462 | | |`wx.Window.GetBestSize` to determine what | | |
463 | | |the minimal size of window items should | | |
464 | | |be, and will use that size to calculate | | |
465 | | |the layout. This allows layouts to adjust | | |
466 | | |when an item changes and it's best size | | |
467 | | |becomes different. If you would rather | | |
468 | | |have a window item stay the size it | | |
469 | | |started with then use wx.FIXED_MINSIZE. | | |
470 | +----------------------------+------------------------------------------+ | |
471 | |- wx.ALIGN_CENTER |The wx.ALIGN flags allow you to specify | | |
472 | |- wx.ALIGN_LEFT |the alignment of the item within the space| | |
473 | |- wx.ALIGN_RIGHT |allotted to it by the sizer, ajusted for | | |
474 | |- wx.ALIGN_TOP |the border if any. | | |
475 | |- wx.ALIGN_BOTTOM | | | |
476 | |- wx.ALIGN_CENTER_VERTICAL | | | |
477 | |- wx.ALIGN_CENTER_HORIZONTAL| | | |
478 | +----------------------------+------------------------------------------+ | |
479 | ||
480 | ||
481 | :param border: Determines the border width, if the *flag* | |
482 | parameter is set to include any border flag. | |
483 | ||
484 | :param userData: Allows an extra object to be attached to the | |
485 | sizer item, for use in derived classes when sizing information | |
486 | is more complex than the *proportion* and *flag* will allow for. | |
487 | "); | |
d14a1e28 | 488 | |
7aada1e0 RD |
489 | wxSizerItem* Add(PyObject* item, int proportion=0, int flag=0, int border=0, |
490 | PyObject* userData=NULL) { | |
d14a1e28 RD |
491 | |
492 | wxPyUserData* data = NULL; | |
da32eb53 | 493 | bool blocked = wxPyBeginBlockThreads(); |
a72f4631 | 494 | wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false); |
d14a1e28 RD |
495 | if ( userData && (info.window || info.sizer || info.gotSize) ) |
496 | data = new wxPyUserData(userData); | |
da32eb53 | 497 | wxPyEndBlockThreads(blocked); |
d14a1e28 RD |
498 | |
499 | // Now call the real Add method if a valid item type was found | |
500 | if ( info.window ) | |
7aada1e0 | 501 | return self->Add(info.window, proportion, flag, border, data); |
d14a1e28 | 502 | else if ( info.sizer ) |
7aada1e0 | 503 | return self->Add(info.sizer, proportion, flag, border, data); |
d14a1e28 | 504 | else if (info.gotSize) |
7aada1e0 RD |
505 | return self->Add(info.size.GetWidth(), info.size.GetHeight(), |
506 | proportion, flag, border, data); | |
507 | else | |
508 | return NULL; | |
d14a1e28 RD |
509 | } |
510 | ||
7aada1e0 RD |
511 | // virtual wxSizerItem* AddSpacer(int size); |
512 | // virtual wxSizerItem* AddStretchSpacer(int prop = 1); | |
d14a1e28 | 513 | |
3ea6e0ec RD |
514 | DocAStr(Insert, |
515 | "Insert(self, int before, item, int proportion=0, int flag=0, int border=0, | |
7aada1e0 | 516 | PyObject userData=None) -> wx.SizerItem", |
3ea6e0ec RD |
517 | |
518 | "Inserts a new item into the list of items managed by this sizer before | |
519 | the item at index *before*. See `Add` for a description of the parameters.", ""); | |
7aada1e0 RD |
520 | wxSizerItem* Insert(int before, PyObject* item, int proportion=0, int flag=0, |
521 | int border=0, PyObject* userData=NULL) { | |
d14a1e28 RD |
522 | |
523 | wxPyUserData* data = NULL; | |
da32eb53 | 524 | bool blocked = wxPyBeginBlockThreads(); |
a72f4631 | 525 | wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false); |
d14a1e28 RD |
526 | if ( userData && (info.window || info.sizer || info.gotSize) ) |
527 | data = new wxPyUserData(userData); | |
da32eb53 | 528 | wxPyEndBlockThreads(blocked); |
d14a1e28 RD |
529 | |
530 | // Now call the real Insert method if a valid item type was found | |
531 | if ( info.window ) | |
7aada1e0 | 532 | return self->Insert(before, info.window, proportion, flag, border, data); |
d14a1e28 | 533 | else if ( info.sizer ) |
7aada1e0 | 534 | return self->Insert(before, info.sizer, proportion, flag, border, data); |
d14a1e28 | 535 | else if (info.gotSize) |
7aada1e0 RD |
536 | return self->Insert(before, info.size.GetWidth(), info.size.GetHeight(), |
537 | proportion, flag, border, data); | |
538 | else | |
539 | return NULL; | |
d14a1e28 RD |
540 | } |
541 | ||
542 | ||
7aada1e0 RD |
543 | // virtual wxSizerItem* InsertSpacer(size_t index, int size); |
544 | // virtual wxSizerItem* InsertStretchSpacer(size_t index, int prop = 1); | |
3ea6e0ec RD |
545 | |
546 | DocAStr(Prepend, | |
547 | "Prepend(self, item, int proportion=0, int flag=0, int border=0, | |
7aada1e0 | 548 | PyObject userData=None) -> wx.SizerItem", |
d14a1e28 | 549 | |
3ea6e0ec RD |
550 | "Adds a new item to the begining of the list of sizer items managed by |
551 | this sizer. See `Add` for a description of the parameters.", ""); | |
7aada1e0 RD |
552 | wxSizerItem* Prepend(PyObject* item, int proportion=0, int flag=0, int border=0, |
553 | PyObject* userData=NULL) { | |
d14a1e28 RD |
554 | |
555 | wxPyUserData* data = NULL; | |
da32eb53 | 556 | bool blocked = wxPyBeginBlockThreads(); |
a72f4631 | 557 | wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, true, false); |
d14a1e28 RD |
558 | if ( userData && (info.window || info.sizer || info.gotSize) ) |
559 | data = new wxPyUserData(userData); | |
da32eb53 | 560 | wxPyEndBlockThreads(blocked); |
d14a1e28 RD |
561 | |
562 | // Now call the real Prepend method if a valid item type was found | |
563 | if ( info.window ) | |
7aada1e0 | 564 | return self->Prepend(info.window, proportion, flag, border, data); |
d14a1e28 | 565 | else if ( info.sizer ) |
7aada1e0 | 566 | return self->Prepend(info.sizer, proportion, flag, border, data); |
d14a1e28 | 567 | else if (info.gotSize) |
7aada1e0 RD |
568 | return self->Prepend(info.size.GetWidth(), info.size.GetHeight(), |
569 | proportion, flag, border, data); | |
570 | else | |
571 | return NULL; | |
d14a1e28 RD |
572 | } |
573 | ||
7aada1e0 RD |
574 | // virtual wxSizerItem* PrependSpacer(int size); |
575 | // virtual wxSizerItem* PrependStretchSpacer(int prop = 1); | |
3ea6e0ec RD |
576 | |
577 | DocAStr(Remove, | |
578 | "Remove(self, item) -> bool", | |
579 | "Removes an item from the sizer and destroys it. This method does not | |
580 | cause any layout or resizing to take place, call `Layout` to update | |
581 | the layout on screen after removing a child from the sizer. The | |
582 | *item* parameter can be either a window, a sizer, or the zero-based | |
583 | index of an item to remove. Returns True if the child item was found | |
584 | and removed.", " | |
585 | ||
586 | :note: For historical reasons calling this method with a `wx.Window` | |
587 | parameter is depreacted, as it will not be able to destroy the | |
588 | window since it is owned by its parent. You should use `Detach` | |
589 | instead. | |
590 | "); | |
d14a1e28 | 591 | bool Remove(PyObject* item) { |
da32eb53 | 592 | bool blocked = wxPyBeginBlockThreads(); |
a72f4631 | 593 | wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true); |
da32eb53 | 594 | wxPyEndBlockThreads(blocked); |
d14a1e28 RD |
595 | if ( info.window ) |
596 | return self->Remove(info.window); | |
597 | else if ( info.sizer ) | |
598 | return self->Remove(info.sizer); | |
599 | else if ( info.gotPos ) | |
600 | return self->Remove(info.pos); | |
601 | else | |
a72f4631 | 602 | return false; |
d14a1e28 RD |
603 | } |
604 | ||
3ea6e0ec RD |
605 | |
606 | DocAStr(Detach, | |
607 | "Detach(self, item) -> bool", | |
608 | "Detaches an item from the sizer without destroying it. This method | |
609 | does not cause any layout or resizing to take place, call `Layout` to | |
610 | do so. The *item* parameter can be either a window, a sizer, or the | |
611 | zero-based index of the item to be detached. Returns True if the child item | |
612 | was found and detached.", ""); | |
60a71c29 RD |
613 | bool Detach(PyObject* item) { |
614 | bool blocked = wxPyBeginBlockThreads(); | |
a72f4631 | 615 | wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true); |
60a71c29 RD |
616 | wxPyEndBlockThreads(blocked); |
617 | if ( info.window ) | |
618 | return self->Detach(info.window); | |
619 | else if ( info.sizer ) | |
620 | return self->Detach(info.sizer); | |
621 | else if ( info.gotPos ) | |
622 | return self->Detach(info.pos); | |
623 | else | |
a72f4631 | 624 | return false; |
60a71c29 RD |
625 | } |
626 | ||
627 | ||
7aada1e0 RD |
628 | DocAStr(GetItem, |
629 | "GetItem(self, item) -> wx.SizerItem", | |
630 | "Returns the `wx.SizerItem` which holds the *item* given. The *item* | |
631 | parameter can be either a window, a sizer, or the zero-based index of | |
632 | the item to be detached.", ""); | |
633 | wxSizerItem* GetItem(PyObject* item) { | |
634 | bool blocked = wxPyBeginBlockThreads(); | |
635 | wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true); | |
636 | wxPyEndBlockThreads(blocked); | |
637 | if ( info.window ) | |
638 | return self->GetItem(info.window); | |
639 | else if ( info.sizer ) | |
640 | return self->GetItem(info.sizer); | |
641 | else if ( info.gotPos ) | |
642 | return self->GetItem(info.pos); | |
643 | else | |
644 | return NULL; | |
645 | } | |
646 | ||
647 | ||
dd9f7fea | 648 | void _SetItemMinSize(PyObject* item, const wxSize& size) { |
da32eb53 | 649 | bool blocked = wxPyBeginBlockThreads(); |
a72f4631 | 650 | wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true); |
da32eb53 | 651 | wxPyEndBlockThreads(blocked); |
d14a1e28 RD |
652 | if ( info.window ) |
653 | self->SetItemMinSize(info.window, size); | |
654 | else if ( info.sizer ) | |
655 | self->SetItemMinSize(info.sizer, size); | |
656 | else if ( info.gotPos ) | |
657 | self->SetItemMinSize(info.pos, size); | |
658 | } | |
659 | } | |
660 | ||
3ea6e0ec RD |
661 | %pythoncode { |
662 | def SetItemMinSize(self, item, *args): | |
663 | """ | |
664 | SetItemMinSize(self, item, Size size) | |
665 | ||
666 | Sets the minimum size that will be allocated for an item in the sizer. | |
667 | The *item* parameter can be either a window, a sizer, or the | |
668 | zero-based index of the item. If a window or sizer is given then it | |
669 | will be searched for recursivly in subsizers if neccessary. | |
670 | """ | |
671 | if len(args) == 2: | |
672 | %# for backward compatibility accept separate width,height args too | |
673 | return self._SetItemMinSize(item, args) | |
674 | else: | |
675 | return self._SetItemMinSize(item, args[0]) | |
676 | } | |
677 | ||
678 | DocDeclAStrName( | |
7aada1e0 | 679 | wxSizerItem* , Add( wxSizerItem *item ), |
3ea6e0ec RD |
680 | "AddItem(self, SizerItem item)", |
681 | "Adds a `wx.SizerItem` to the sizer.", "", | |
682 | AddItem); | |
683 | ||
684 | DocDeclAStrName( | |
7aada1e0 | 685 | wxSizerItem* , Insert( size_t index, wxSizerItem *item ), |
3ea6e0ec RD |
686 | "InsertItem(self, int index, SizerItem item)", |
687 | "Inserts a `wx.SizerItem` to the sizer at the position given by *index*.", "", | |
688 | InsertItem); | |
689 | ||
690 | DocDeclAStrName( | |
7aada1e0 | 691 | wxSizerItem* , Prepend( wxSizerItem *item ), |
3ea6e0ec RD |
692 | "PrependItem(self, SizerItem item)", |
693 | "Prepends a `wx.SizerItem` to the sizer.", "", | |
694 | PrependItem); | |
695 | ||
d14a1e28 RD |
696 | |
697 | ||
698 | %pythoncode { | |
3ea6e0ec | 699 | def AddMany(self, items): |
dce2bd22 RD |
700 | """ |
701 | AddMany is a convenience method for adding several items | |
702 | to a sizer at one time. Simply pass it a list of tuples, | |
703 | where each tuple consists of the parameters that you | |
704 | would normally pass to the `Add` method. | |
705 | """ | |
3ea6e0ec RD |
706 | for item in items: |
707 | if type(item) != type(()) or (len(item) == 2 and type(item[0]) == type(1)): | |
708 | item = (item, ) | |
709 | self.Add(*item) | |
d14a1e28 | 710 | |
d147c724 | 711 | %# for backwards compatibility only, please do not use in new code |
dce2bd22 RD |
712 | AddWindow = wx._deprecated(Add, "AddWindow is deprecated, use `Add` instead.") |
713 | AddSizer = wx._deprecated(Add, "AddSizer is deprecated, use `Add` instead.") | |
714 | AddSpacer = wx._deprecated(Add, "AddSpacer is deprecated, use `Add` instead.") | |
715 | PrependWindow = wx._deprecated(Prepend, "PrependWindow is deprecated, use `Prepend` instead.") | |
716 | PrependSizer = wx._deprecated(Prepend, "PrependSizer is deprecated, use `Prepend` instead.") | |
717 | PrependSpacer = wx._deprecated(Prepend, "PrependSpacer is deprecated, use `Prepend` instead.") | |
718 | InsertWindow = wx._deprecated(Insert, "InsertWindow is deprecated, use `Insert` instead.") | |
719 | InsertSizer = wx._deprecated(Insert, "InsertSizer is deprecated, use `Insert` instead.") | |
720 | InsertSpacer = wx._deprecated(Insert, "InsertSpacer is deprecated, use `Insert` instead.") | |
721 | RemoveWindow = wx._deprecated(Remove, "RemoveWindow is deprecated, use `Remove` instead.") | |
722 | RemoveSizer = wx._deprecated(Remove, "RemoveSizer is deprecated, use `Remove` instead.") | |
723 | RemovePos = wx._deprecated(Remove, "RemovePos is deprecated, use `Remove` instead.") | |
d14a1e28 | 724 | |
d14a1e28 RD |
725 | } |
726 | ||
727 | ||
3ea6e0ec RD |
728 | DocDeclStr( |
729 | void , SetDimension( int x, int y, int width, int height ), | |
730 | "Call this to force the sizer to take the given dimension and thus | |
731 | force the items owned by the sizer to resize themselves according to | |
732 | the rules defined by the parameter in the `Add`, `Insert` or `Prepend` | |
733 | methods.", ""); | |
734 | ||
735 | DocDeclStr( | |
736 | void , SetMinSize( const wxSize &size ), | |
737 | "Call this to give the sizer a minimal size. Normally, the sizer will | |
738 | calculate its minimal size based purely on how much space its children | |
739 | need. After calling this method `GetMinSize` will return either the | |
740 | minimal size as requested by its children or the minimal size set | |
741 | here, depending on which is bigger.", ""); | |
742 | ||
d14a1e28 | 743 | |
3ea6e0ec RD |
744 | DocDeclStr( |
745 | wxSize , GetSize(), | |
746 | "Returns the current size of the space managed by the sizer.", ""); | |
747 | ||
748 | DocDeclStr( | |
749 | wxPoint , GetPosition(), | |
750 | "Returns the current position of the sizer's managed space.", ""); | |
751 | ||
752 | DocDeclStr( | |
753 | wxSize , GetMinSize(), | |
754 | "Returns the minimal size of the sizer. This is either the combined | |
755 | minimal size of all the children and their borders or the minimal size | |
756 | set by SetMinSize, depending on which is bigger.", ""); | |
757 | ||
d14a1e28 RD |
758 | |
759 | %pythoncode { | |
760 | def GetSizeTuple(self): | |
60a71c29 | 761 | return self.GetSize().Get() |
d14a1e28 | 762 | def GetPositionTuple(self): |
60a71c29 | 763 | return self.GetPosition().Get() |
d14a1e28 | 764 | def GetMinSizeTuple(self): |
60a71c29 | 765 | return self.GetMinSize().Get() |
d14a1e28 RD |
766 | } |
767 | ||
3ea6e0ec RD |
768 | DocDeclStr( |
769 | virtual void , RecalcSizes(), | |
770 | "Using the sizes calculated by `CalcMin` reposition and resize all the | |
771 | items managed by this sizer. You should not need to call this directly as | |
772 | it is called by `Layout`.", ""); | |
773 | ||
774 | DocDeclStr( | |
775 | virtual wxSize , CalcMin(), | |
776 | "This method is where the sizer will do the actual calculation of its | |
777 | children's minimal sizes. You should not need to call this directly as | |
778 | it is called by `Layout`.", ""); | |
779 | ||
780 | ||
781 | DocDeclStr( | |
782 | void , Layout(), | |
783 | "This method will force the recalculation and layout of the items | |
784 | controlled by the sizer using the current space allocated to the | |
785 | sizer. Normally this is called automatically from the owning window's | |
786 | EVT_SIZE handler, but it is also useful to call it from user code when | |
787 | one of the items in a sizer change size, or items are added or | |
788 | removed.", ""); | |
789 | ||
d14a1e28 | 790 | |
3ea6e0ec RD |
791 | DocDeclStr( |
792 | wxSize , Fit( wxWindow *window ), | |
793 | "Tell the sizer to resize the *window* to match the sizer's minimal | |
794 | size. This is commonly done in the constructor of the window itself in | |
795 | order to set its initial size to match the needs of the children as | |
796 | determined by the sizer. Returns the new size. | |
d14a1e28 | 797 | |
3ea6e0ec RD |
798 | For a top level window this is the total window size, not the client size.", ""); |
799 | ||
800 | DocDeclStr( | |
801 | void , FitInside( wxWindow *window ), | |
802 | "Tell the sizer to resize the *virtual size* of the *window* to match the | |
803 | sizer's minimal size. This will not alter the on screen size of the | |
804 | window, but may cause the addition/removal/alteration of scrollbars | |
805 | required to view the virtual area in windows which manage it. | |
806 | ||
807 | :see: `wx.ScrolledWindow.SetScrollbars`, `SetVirtualSizeHints` | |
808 | ", ""); | |
809 | ||
d14a1e28 | 810 | |
3ea6e0ec RD |
811 | DocDeclStr( |
812 | void , SetSizeHints( wxWindow *window ), | |
813 | "Tell the sizer to set (and `Fit`) the minimal size of the *window* to | |
814 | match the sizer's minimal size. This is commonly done in the | |
815 | constructor of the window itself if the window is resizable (as are | |
816 | many dialogs under Unix and frames on probably all platforms) in order | |
817 | to prevent the window from being sized smaller than the minimal size | |
818 | required by the sizer.", ""); | |
819 | ||
820 | DocDeclStr( | |
821 | void , SetVirtualSizeHints( wxWindow *window ), | |
822 | "Tell the sizer to set the minimal size of the window virtual area to | |
823 | match the sizer's minimal size. For windows with managed scrollbars | |
824 | this will set them appropriately. | |
825 | ||
826 | :see: `wx.ScrolledWindow.SetScrollbars` | |
827 | ", ""); | |
828 | ||
d14a1e28 | 829 | |
3ea6e0ec | 830 | DocDeclStr( |
a72f4631 | 831 | void , Clear( bool deleteWindows=false ), |
3ea6e0ec RD |
832 | "Clear all items from the sizer, optionally destroying the window items |
833 | as well.", ""); | |
834 | ||
835 | DocDeclStr( | |
836 | void , DeleteWindows(), | |
837 | "Destroy all windows managed by the sizer.", ""); | |
838 | ||
d14a1e28 RD |
839 | |
840 | ||
841 | // wxList& GetChildren(); | |
842 | %extend { | |
3ea6e0ec | 843 | DocAStr(GetChildren, |
50ed1e35 | 844 | "GetChildren(self) -> list", |
3ea6e0ec | 845 | "Returns a list of all the `wx.SizerItem` objects managed by the sizer.", ""); |
d14a1e28 RD |
846 | PyObject* GetChildren() { |
847 | wxSizerItemList& list = self->GetChildren(); | |
848 | return wxPy_ConvertList(&list); | |
849 | } | |
850 | } | |
851 | ||
852 | ||
3ea6e0ec | 853 | // Manage whether individual windows or subsizers are considered |
d14a1e28 RD |
854 | // in the layout calculations or not. |
855 | ||
856 | %extend { | |
3ea6e0ec | 857 | DocAStr(Show, |
a72f4631 | 858 | "Show(self, item, bool show=True, bool recursive=false) -> bool", |
3ea6e0ec RD |
859 | "Shows or hides an item managed by the sizer. To make a sizer item |
860 | disappear or reappear, use Show followed by `Layout`. The *item* | |
861 | parameter can be either a window, a sizer, or the zero-based index of | |
8f214674 RD |
862 | the item. Use the recursive parameter to show or hide an item in a |
863 | subsizer. Returns True if the item was found.", ""); | |
a72f4631 | 864 | bool Show(PyObject* item, bool show = true, bool recursive=false) { |
019fd9d3 | 865 | bool blocked = wxPyBeginBlockThreads(); |
a72f4631 | 866 | wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true); |
019fd9d3 | 867 | wxPyEndBlockThreads(blocked); |
d14a1e28 | 868 | if ( info.window ) |
8f214674 | 869 | return self->Show(info.window, show, recursive); |
d14a1e28 | 870 | else if ( info.sizer ) |
8f214674 | 871 | return self->Show(info.sizer, show, recursive); |
3ea6e0ec | 872 | else if ( info.gotPos ) |
8f214674 | 873 | return self->Show(info.pos, show); |
5f476690 RD |
874 | else |
875 | return false; | |
d14a1e28 | 876 | } |
3ea6e0ec RD |
877 | |
878 | DocAStr(IsShown, | |
879 | "IsShown(self, item)", | |
880 | "Determines if the item is currently shown. sizer. To make a sizer | |
881 | item disappear or reappear, use Show followed by `Layout`. The *item* | |
882 | parameter can be either a window, a sizer, or the zero-based index of | |
883 | the item.", ""); | |
d14a1e28 | 884 | bool IsShown(PyObject* item) { |
019fd9d3 | 885 | bool blocked = wxPyBeginBlockThreads(); |
a72f4631 | 886 | wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, false); |
019fd9d3 | 887 | wxPyEndBlockThreads(blocked); |
d14a1e28 RD |
888 | if ( info.window ) |
889 | return self->IsShown(info.window); | |
890 | else if ( info.sizer ) | |
891 | return self->IsShown(info.sizer); | |
3ea6e0ec RD |
892 | else if ( info.gotPos ) |
893 | return self->IsShown(info.pos); | |
d14a1e28 | 894 | else |
a72f4631 | 895 | return false; |
d14a1e28 RD |
896 | } |
897 | } | |
898 | ||
3ea6e0ec | 899 | %pythoncode { |
41b78a7a | 900 | def Hide(self, item, recursive=False): |
3ea6e0ec | 901 | """ |
8f214674 | 902 | A convenience method for Show(item, False, recursive). |
3ea6e0ec | 903 | """ |
9dcf02b4 | 904 | return self.Show(item, False, recursive) |
3ea6e0ec | 905 | } |
d14a1e28 | 906 | |
3ea6e0ec RD |
907 | |
908 | DocDeclStr( | |
909 | void , ShowItems(bool show), | |
e2837d11 | 910 | "Recursively call `wx.SizerItem.Show` on all sizer items.", ""); |
3ea6e0ec | 911 | |
d14a1e28 RD |
912 | }; |
913 | ||
914 | ||
915 | //--------------------------------------------------------------------------- | |
916 | // Use this one for deriving Python classes from | |
917 | %{ | |
918 | // See pyclasses.h | |
919 | IMP_PYCALLBACK___pure(wxPySizer, wxSizer, RecalcSizes); | |
920 | IMP_PYCALLBACK_wxSize__pure(wxPySizer, wxSizer, CalcMin); | |
921 | IMPLEMENT_DYNAMIC_CLASS(wxPySizer, wxSizer); | |
922 | %} | |
923 | ||
924 | ||
3ea6e0ec RD |
925 | DocStr(wxPySizer, |
926 | "wx.PySizer is a special version of `wx.Sizer` that has been | |
927 | instrumented to allow the C++ virtual methods to be overloaded in | |
928 | Python derived classes. You would derive from this class if you are | |
929 | wanting to implement a custom sizer in Python code. Simply implement | |
930 | `CalcMin` and `RecalcSizes` in the derived class and you're all set. | |
931 | For example:: | |
932 | ||
933 | class MySizer(wx.PySizer): | |
934 | def __init__(self): | |
935 | wx.PySizer.__init__(self) | |
936 | ||
937 | def CalcMin(self): | |
938 | for item in self.GetChildren(): | |
939 | # calculate the total minimum width and height needed | |
940 | # by all items in the sizer according to this sizer's | |
941 | # layout algorithm. | |
942 | ... | |
943 | return wx.Size(width, height) | |
944 | ||
945 | def RecalcSizes(self): | |
946 | # find the space allotted to this sizer | |
947 | pos = self.GetPosition() | |
948 | size = self.GetSize() | |
949 | for item in self.GetChildren(): | |
950 | # Recalculate (if necessary) the position and size of | |
951 | # each item and then call item.SetDimension to do the | |
952 | # actual positioning and sizing of the items within the | |
953 | # space alloted to this sizer. | |
954 | ... | |
955 | item.SetDimension(itemPos, itemSize) | |
956 | ||
957 | ||
958 | When `Layout` is called it first calls `CalcMin` followed by | |
959 | `RecalcSizes` so you can optimize a bit by saving the results of | |
9283228f | 960 | `CalcMin` and reusing them in `RecalcSizes`. |
3ea6e0ec RD |
961 | |
962 | :see: `wx.SizerItem`, `wx.Sizer.GetChildren` | |
963 | ||
964 | ", ""); | |
d14a1e28 RD |
965 | class wxPySizer : public wxSizer { |
966 | public: | |
2b9048c5 | 967 | %pythonAppend wxPySizer "self._setCallbackInfo(self, PySizer);self._setOORInfo(self)" |
d14a1e28 | 968 | |
3ea6e0ec RD |
969 | DocCtorStr( |
970 | wxPySizer(), | |
971 | "Creates a wx.PySizer. Must be called from the __init__ in the derived | |
972 | class.", ""); | |
973 | ||
d14a1e28 RD |
974 | void _setCallbackInfo(PyObject* self, PyObject* _class); |
975 | }; | |
976 | ||
977 | ||
978 | //--------------------------------------------------------------------------- | |
979 | %newgroup; | |
980 | ||
3ea6e0ec RD |
981 | |
982 | DocStr(wxBoxSizer, | |
983 | "The basic idea behind a box sizer is that windows will most often be | |
984 | laid out in rather simple basic geometry, typically in a row or a | |
985 | column or nested hierarchies of either. A wx.BoxSizer will lay out | |
986 | its items in a simple row or column, depending on the orientation | |
987 | parameter passed to the constructor.", " | |
988 | ||
989 | It is the unique feature of a box sizer, that it can grow in both | |
990 | directions (height and width) but can distribute its growth in the | |
991 | main direction (horizontal for a row) *unevenly* among its children. | |
992 | This is determined by the proportion parameter give to items when they | |
993 | are added to the sizer. It is interpreted as a weight factor, i.e. it | |
994 | can be zero, indicating that the window may not be resized at all, or | |
995 | above zero. If several windows have a value above zero, the value is | |
996 | interpreted relative to the sum of all weight factors of the sizer, so | |
997 | when adding two windows with a value of 1, they will both get resized | |
998 | equally and each will receive half of the available space after the | |
999 | fixed size items have been sized. If the items have unequal | |
1000 | proportion settings then they will receive a coresondingly unequal | |
1001 | allotment of the free space. | |
1002 | ||
1003 | :see: `wx.StaticBoxSizer` | |
1004 | "); | |
1005 | ||
d14a1e28 RD |
1006 | class wxBoxSizer : public wxSizer { |
1007 | public: | |
2b9048c5 | 1008 | %pythonAppend wxBoxSizer "self._setOORInfo(self)" |
d14a1e28 | 1009 | |
3ea6e0ec RD |
1010 | DocCtorStr( |
1011 | wxBoxSizer(int orient = wxHORIZONTAL), | |
1012 | "Constructor for a wx.BoxSizer. *orient* may be one of ``wx.VERTICAL`` | |
1013 | or ``wx.HORIZONTAL`` for creating either a column sizer or a row | |
1014 | sizer.", ""); | |
d14a1e28 | 1015 | |
3ea6e0ec RD |
1016 | |
1017 | DocDeclStr( | |
1018 | int , GetOrientation(), | |
1019 | "Returns the current orientation of the sizer.", ""); | |
1020 | ||
1021 | DocDeclStr( | |
1022 | void , SetOrientation(int orient), | |
1023 | "Resets the orientation of the sizer.", ""); | |
1024 | ||
d14a1e28 RD |
1025 | }; |
1026 | ||
1027 | //--------------------------------------------------------------------------- | |
1028 | %newgroup; | |
1029 | ||
3ea6e0ec RD |
1030 | |
1031 | DocStr(wxStaticBoxSizer, | |
1032 | "wx.StaticBoxSizer derives from and functions identically to the | |
1033 | `wx.BoxSizer` and adds a `wx.StaticBox` around the items that the sizer | |
1034 | manages. Note that this static box must be created separately and | |
1035 | passed to the sizer constructor.", ""); | |
1036 | ||
d14a1e28 RD |
1037 | class wxStaticBoxSizer : public wxBoxSizer { |
1038 | public: | |
2b9048c5 | 1039 | %pythonAppend wxStaticBoxSizer "self._setOORInfo(self)" |
d14a1e28 | 1040 | |
3ea6e0ec RD |
1041 | DocCtorStr( |
1042 | wxStaticBoxSizer(wxStaticBox *box, int orient = wxHORIZONTAL), | |
1043 | "Constructor. It takes an associated static box and the orientation | |
1044 | *orient* as parameters - orient can be either of ``wx.VERTICAL`` or | |
1045 | ``wx.HORIZONTAL``.", ""); | |
d14a1e28 | 1046 | |
3ea6e0ec RD |
1047 | DocDeclStr( |
1048 | wxStaticBox *, GetStaticBox(), | |
1049 | "Returns the static box associated with this sizer.", ""); | |
1050 | ||
d14a1e28 RD |
1051 | }; |
1052 | ||
1053 | //--------------------------------------------------------------------------- | |
1054 | %newgroup; | |
1055 | ||
3ea6e0ec RD |
1056 | |
1057 | DocStr(wxGridSizer, | |
1058 | "A grid sizer is a sizer which lays out its children in a | |
1059 | two-dimensional table with all cells having the same size. In other | |
1060 | words, the width of each cell within the grid is the width of the | |
1061 | widest item added to the sizer and the height of each grid cell is the | |
1062 | height of the tallest item. An optional vertical and/or horizontal | |
1063 | gap between items can also be specified (in pixels.) | |
1064 | ||
1065 | Items are placed in the cells of the grid in the order they are added, | |
1066 | in row-major order. In other words, the first row is filled first, | |
1067 | then the second, and so on until all items have been added. (If | |
1068 | neccessary, additional rows will be added as items are added.) If you | |
1069 | need to have greater control over the cells that items are placed in | |
1070 | then use the `wx.GridBagSizer`. | |
1071 | ", ""); | |
1072 | ||
d14a1e28 RD |
1073 | class wxGridSizer: public wxSizer |
1074 | { | |
1075 | public: | |
2b9048c5 | 1076 | %pythonAppend wxGridSizer "self._setOORInfo(self)" |
d14a1e28 | 1077 | |
3ea6e0ec RD |
1078 | DocCtorStr( |
1079 | wxGridSizer( int rows=1, int cols=0, int vgap=0, int hgap=0 ), | |
1080 | "Constructor for a wx.GridSizer. *rows* and *cols* determine the number | |
1081 | of columns and rows in the sizer - if either of the parameters is | |
1082 | zero, it will be calculated to from the total number of children in | |
1083 | the sizer, thus making the sizer grow dynamically. *vgap* and *hgap* | |
1084 | define extra space between all children.", ""); | |
1085 | ||
1086 | DocDeclStr( | |
1087 | void , SetCols( int cols ), | |
1088 | "Sets the number of columns in the sizer.", ""); | |
1089 | ||
1090 | DocDeclStr( | |
1091 | void , SetRows( int rows ), | |
1092 | "Sets the number of rows in the sizer.", ""); | |
1093 | ||
1094 | DocDeclStr( | |
1095 | void , SetVGap( int gap ), | |
1096 | "Sets the vertical gap (in pixels) between the cells in the sizer.", ""); | |
1097 | ||
1098 | DocDeclStr( | |
1099 | void , SetHGap( int gap ), | |
1100 | "Sets the horizontal gap (in pixels) between cells in the sizer", ""); | |
1101 | ||
1102 | DocDeclStr( | |
1103 | int , GetCols(), | |
1104 | "Returns the number of columns in the sizer.", ""); | |
1105 | ||
1106 | DocDeclStr( | |
1107 | int , GetRows(), | |
1108 | "Returns the number of rows in the sizer.", ""); | |
1109 | ||
1110 | DocDeclStr( | |
1111 | int , GetVGap(), | |
1112 | "Returns the vertical gap (in pixels) between the cells in the sizer.", ""); | |
1113 | ||
1114 | DocDeclStr( | |
1115 | int , GetHGap(), | |
1116 | "Returns the horizontal gap (in pixels) between cells in the sizer.", ""); | |
1117 | ||
d14a1e28 RD |
1118 | }; |
1119 | ||
1120 | //--------------------------------------------------------------------------- | |
1121 | %newgroup; | |
1122 | ||
1123 | enum wxFlexSizerGrowMode | |
1124 | { | |
1125 | // don't resize the cells in non-flexible direction at all | |
1126 | wxFLEX_GROWMODE_NONE, | |
1127 | ||
1128 | // uniformly resize only the specified ones (default) | |
1129 | wxFLEX_GROWMODE_SPECIFIED, | |
1130 | ||
1131 | // uniformly resize all cells | |
1132 | wxFLEX_GROWMODE_ALL | |
1133 | }; | |
1134 | ||
1135 | ||
3ea6e0ec RD |
1136 | |
1137 | ||
1138 | ||
1139 | DocStr(wxFlexGridSizer, | |
1140 | "A flex grid sizer is a sizer which lays out its children in a | |
1141 | two-dimensional table with all table cells in one row having the same | |
1142 | height and all cells in one column having the same width, but all | |
1143 | rows or all columns are not necessarily the same height or width as in | |
1144 | the `wx.GridSizer`. | |
1145 | ||
1146 | wx.FlexGridSizer can also size items equally in one direction but | |
1147 | unequally (\"flexibly\") in the other. If the sizer is only flexible | |
1148 | in one direction (this can be changed using `SetFlexibleDirection`), it | |
1149 | needs to be decided how the sizer should grow in the other (\"non | |
1150 | flexible\") direction in order to fill the available space. The | |
1151 | `SetNonFlexibleGrowMode` method serves this purpose. | |
1152 | ||
1153 | ", ""); | |
1154 | ||
d14a1e28 RD |
1155 | class wxFlexGridSizer: public wxGridSizer |
1156 | { | |
1157 | public: | |
2b9048c5 | 1158 | %pythonAppend wxFlexGridSizer "self._setOORInfo(self)" |
d14a1e28 | 1159 | |
3ea6e0ec RD |
1160 | DocCtorStr( |
1161 | wxFlexGridSizer( int rows=1, int cols=0, int vgap=0, int hgap=0 ), | |
1162 | "Constructor for a wx.FlexGridSizer. *rows* and *cols* determine the | |
1163 | number of columns and rows in the sizer - if either of the parameters | |
1164 | is zero, it will be calculated to from the total number of children in | |
1165 | the sizer, thus making the sizer grow dynamically. *vgap* and *hgap* | |
1166 | define extra space between all children.", ""); | |
1167 | ||
1168 | ||
1169 | DocDeclStr( | |
1170 | void , AddGrowableRow( size_t idx, int proportion = 0 ), | |
1171 | "Specifies that row *idx* (starting from zero) should be grown if there | |
1172 | is extra space available to the sizer. | |
1173 | ||
1174 | The *proportion* parameter has the same meaning as the stretch factor | |
1175 | for the box sizers except that if all proportions are 0, then all | |
1176 | columns are resized equally (instead of not being resized at all).", ""); | |
d14a1e28 | 1177 | |
3ea6e0ec RD |
1178 | DocDeclStr( |
1179 | void , RemoveGrowableRow( size_t idx ), | |
1180 | "Specifies that row *idx* is no longer growable.", ""); | |
1181 | ||
1182 | DocDeclStr( | |
1183 | void , AddGrowableCol( size_t idx, int proportion = 0 ), | |
1184 | "Specifies that column *idx* (starting from zero) should be grown if | |
1185 | there is extra space available to the sizer. | |
1186 | ||
1187 | The *proportion* parameter has the same meaning as the stretch factor | |
1188 | for the box sizers except that if all proportions are 0, then all | |
1189 | columns are resized equally (instead of not being resized at all).", ""); | |
1190 | ||
1191 | DocDeclStr( | |
1192 | void , RemoveGrowableCol( size_t idx ), | |
1193 | "Specifies that column *idx* is no longer growable.", ""); | |
1194 | ||
1195 | ||
1196 | DocDeclStr( | |
1197 | void , SetFlexibleDirection(int direction), | |
1198 | "Specifies whether the sizer should flexibly resize its columns, rows, | |
1199 | or both. Argument *direction* can be one of the following values. Any | |
1200 | other value is ignored. | |
1201 | ||
1202 | ============== ======================================= | |
1203 | wx.VERTICAL Rows are flexibly sized. | |
1204 | wx.HORIZONTAL Columns are flexibly sized. | |
1205 | wx.BOTH Both rows and columns are flexibly sized | |
1206 | (this is the default value). | |
1207 | ============== ======================================= | |
1208 | ||
1209 | Note that this method does not trigger relayout. | |
1210 | ", ""); | |
1211 | ||
1212 | DocDeclStr( | |
1213 | int , GetFlexibleDirection(), | |
1214 | "Returns a value that specifies whether the sizer | |
1215 | flexibly resizes its columns, rows, or both (default). | |
d14a1e28 | 1216 | |
3ea6e0ec | 1217 | :see: `SetFlexibleDirection`", ""); |
d14a1e28 | 1218 | |
3ea6e0ec | 1219 | |
d14a1e28 | 1220 | |
3ea6e0ec RD |
1221 | DocDeclStr( |
1222 | void , SetNonFlexibleGrowMode(wxFlexSizerGrowMode mode), | |
1223 | "Specifies how the sizer should grow in the non-flexible direction if | |
1224 | there is one (so `SetFlexibleDirection` must have been called | |
1225 | previously). Argument *mode* can be one of the following values: | |
1226 | ||
1227 | ========================== ================================================= | |
1228 | wx.FLEX_GROWMODE_NONE Sizer doesn't grow in the non flexible direction. | |
1229 | wx.FLEX_GROWMODE_SPECIFIED Sizer honors growable columns/rows set with | |
1230 | `AddGrowableCol` and `AddGrowableRow`. In this | |
1231 | case equal sizing applies to minimum sizes of | |
1232 | columns or rows (this is the default value). | |
1233 | wx.FLEX_GROWMODE_ALL Sizer equally stretches all columns or rows in | |
1234 | the non flexible direction, whether they are | |
1235 | growable or not in the flexbile direction. | |
1236 | ========================== ================================================= | |
1237 | ||
1238 | Note that this method does not trigger relayout. | |
1239 | ||
1240 | ", ""); | |
1241 | ||
1242 | DocDeclStr( | |
1243 | wxFlexSizerGrowMode , GetNonFlexibleGrowMode(), | |
1244 | "Returns the value that specifies how the sizer grows in the | |
1245 | non-flexible direction if there is one. | |
d14a1e28 | 1246 | |
3ea6e0ec RD |
1247 | :see: `SetNonFlexibleGrowMode`", ""); |
1248 | ||
dd9f7fea RD |
1249 | |
1250 | // Read-only access to the row heights and col widths arrays | |
3ea6e0ec RD |
1251 | DocDeclAStr( |
1252 | const wxArrayInt& , GetRowHeights() const, | |
1253 | "GetRowHeights(self) -> list", | |
1254 | "Returns a list of integers representing the heights of each of the | |
1255 | rows in the sizer.", ""); | |
1256 | ||
1257 | DocDeclAStr( | |
1258 | const wxArrayInt& , GetColWidths() const, | |
1259 | "GetColWidths(self) -> list", | |
1260 | "Returns a list of integers representing the widths of each of the | |
1261 | columns in the sizer.", ""); | |
1262 | ||
d14a1e28 RD |
1263 | }; |
1264 | ||
9283228f RD |
1265 | //--------------------------------------------------------------------------- |
1266 | ||
1267 | DocStr(wxStdDialogButtonSizer, | |
1268 | "A special sizer that knows how to order and position standard buttons | |
1269 | in order to conform to the current platform's standards. You simply | |
1270 | need to add each `wx.Button` to the sizer, and be sure to create the | |
1271 | buttons using the standard ID's. Then call `Finalize` and the sizer | |
1272 | will take care of the rest. | |
1273 | ", ""); | |
1274 | ||
1275 | class wxStdDialogButtonSizer: public wxBoxSizer | |
1276 | { | |
1277 | public: | |
1278 | DocCtorStr( | |
1279 | wxStdDialogButtonSizer(), | |
1280 | "", ""); | |
1281 | ||
1282 | DocDeclStr( | |
1283 | void , AddButton(wxButton *button), | |
1284 | "Use this to add the buttons to this sizer. Do not use the `Add` | |
1285 | method in the base class.", ""); | |
1286 | ||
1287 | DocDeclStr( | |
1288 | void , Finalise(), | |
1289 | "This funciton needs to be called after all the buttons have been added | |
1290 | to the sizer. It will reorder them and position them in a platform | |
1291 | specifc manner.", ""); | |
3ba93175 RD |
1292 | |
1293 | void SetAffirmativeButton( wxButton *button ); | |
1294 | void SetNegativeButton( wxButton *button ); | |
1295 | void SetCancelButton( wxButton *button ); | |
9283228f RD |
1296 | |
1297 | wxButton* GetAffirmativeButton() const; | |
1298 | wxButton* GetApplyButton() const; | |
1299 | wxButton* GetNegativeButton() const; | |
1300 | wxButton* GetCancelButton() const; | |
1301 | wxButton* GetHelpButton() const; | |
1302 | }; | |
1303 | ||
1304 | ||
d14a1e28 | 1305 | //--------------------------------------------------------------------------- |