]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/msw/_controls.py
bitwise vs. logical operator
[wxWidgets.git] / wxPython / src / msw / _controls.py
CommitLineData
554f62e9 1# This file was created automatically by SWIG 1.3.29.
d55e5bfc
RD
2# Don't modify this file, modify the SWIG interface instead.
3
4import _controls_
554f62e9
RD
5import new
6new_instancemethod = new.instancemethod
093d3ff1 7def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
554f62e9 8 if (name == "thisown"): return self.this.own(value)
093d3ff1 9 if (name == "this"):
554f62e9
RD
10 if type(value).__name__ == 'PySwigObject':
11 self.__dict__[name] = value
093d3ff1
RD
12 return
13 method = class_type.__swig_setmethods__.get(name,None)
14 if method: return method(self,value)
554f62e9 15 if (not static) or hasattr(self,name):
093d3ff1
RD
16 self.__dict__[name] = value
17 else:
18 raise AttributeError("You cannot add attributes to %s" % self)
19
20def _swig_setattr(self,class_type,name,value):
21 return _swig_setattr_nondynamic(self,class_type,name,value,0)
22
23def _swig_getattr(self,class_type,name):
554f62e9 24 if (name == "thisown"): return self.this.own()
093d3ff1
RD
25 method = class_type.__swig_getmethods__.get(name,None)
26 if method: return method(self)
27 raise AttributeError,name
28
554f62e9
RD
29def _swig_repr(self):
30 try: strthis = "proxy of " + self.this.__repr__()
31 except: strthis = ""
32 return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
33
093d3ff1
RD
34import types
35try:
36 _object = types.ObjectType
37 _newclass = 1
38except AttributeError:
39 class _object : pass
40 _newclass = 0
41del types
42
43
44def _swig_setattr_nondynamic_method(set):
45 def set_attr(self,name,value):
554f62e9
RD
46 if (name == "thisown"): return self.this.own(value)
47 if hasattr(self,name) or (name == "this"):
093d3ff1
RD
48 set(self,name,value)
49 else:
50 raise AttributeError("You cannot add attributes to %s" % self)
51 return set_attr
52
53
d55e5bfc
RD
54import _core
55wx = _core
d55e5bfc
RD
56#---------------------------------------------------------------------------
57
58BU_LEFT = _controls_.BU_LEFT
59BU_TOP = _controls_.BU_TOP
60BU_RIGHT = _controls_.BU_RIGHT
61BU_BOTTOM = _controls_.BU_BOTTOM
8fb0e70a 62BU_ALIGN_MASK = _controls_.BU_ALIGN_MASK
d55e5bfc
RD
63BU_EXACTFIT = _controls_.BU_EXACTFIT
64BU_AUTODRAW = _controls_.BU_AUTODRAW
65class Button(_core.Control):
66 """
67 A button is a control that contains a text string, and is one of the most
68 common elements of a GUI. It may be placed on a dialog box or panel, or
69 indeed almost any other window.
70 """
554f62e9
RD
71 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
72 __repr__ = _swig_repr
73 def __init__(self, *args, **kwargs):
d55e5bfc 74 """
248ed943
RD
75 __init__(self, Window parent, int id=-1, String label=EmptyString,
76 Point pos=DefaultPosition, Size size=DefaultSize,
77 long style=0, Validator validator=DefaultValidator,
78 String name=ButtonNameStr) -> Button
d55e5bfc 79
0f63ec68
RD
80 Create and show a button. The preferred way to create standard
81 buttons is to use a standard ID and an empty label. In this case
82 wxWigets will automatically use a stock label that coresponds to the
83 ID given. In additon, the button will be decorated with stock icons
84 under GTK+ 2.
d55e5bfc 85 """
554f62e9 86 _controls_.Button_swiginit(self,_controls_.new_Button(*args, **kwargs))
d55e5bfc
RD
87 self._setOORInfo(self)
88
89 def Create(*args, **kwargs):
90 """
248ed943
RD
91 Create(self, Window parent, int id=-1, String label=EmptyString,
92 Point pos=DefaultPosition, Size size=DefaultSize,
93 long style=0, Validator validator=DefaultValidator,
94 String name=ButtonNameStr) -> bool
d55e5bfc
RD
95
96 Acutally create the GUI Button for 2-phase creation.
97 """
98 return _controls_.Button_Create(*args, **kwargs)
99
100 def SetDefault(*args, **kwargs):
101 """
102 SetDefault(self)
103
104 This sets the button to be the default item for the panel or dialog box.
105 """
106 return _controls_.Button_SetDefault(*args, **kwargs)
107
108 def GetDefaultSize(*args, **kwargs):
c24da6d6
RD
109 """
110 GetDefaultSize() -> Size
111
112 Returns the default button size for this platform.
113 """
d55e5bfc
RD
114 return _controls_.Button_GetDefaultSize(*args, **kwargs)
115
116 GetDefaultSize = staticmethod(GetDefaultSize)
f20a2e1f 117 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
118 """
119 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
120
121 Get the default attributes for this class. This is useful if you want
122 to use the same font or colour in your own control as in a standard
123 control -- which is a much better idea than hard coding specific
124 colours or fonts which might look completely out of place on the
125 user's system, especially if it uses themes.
126
127 The variant parameter is only relevant under Mac currently and is
128 ignore under other platforms. Under Mac, it will change the size of
129 the returned font. See `wx.Window.SetWindowVariant` for more about
130 this.
131 """
f20a2e1f
RD
132 return _controls_.Button_GetClassDefaultAttributes(*args, **kwargs)
133
134 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2131d850 135_controls_.Button_swigregister(Button)
d55e5bfc
RD
136cvar = _controls_.cvar
137ButtonNameStr = cvar.ButtonNameStr
138
139def PreButton(*args, **kwargs):
140 """
141 PreButton() -> Button
142
143 Precreate a Button for 2-phase creation.
144 """
145 val = _controls_.new_PreButton(*args, **kwargs)
d55e5bfc
RD
146 return val
147
554f62e9
RD
148def Button_GetDefaultSize(*args):
149 """
c24da6d6
RD
150 Button_GetDefaultSize() -> Size
151
152 Returns the default button size for this platform.
153 """
554f62e9 154 return _controls_.Button_GetDefaultSize(*args)
d55e5bfc 155
f20a2e1f 156def Button_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 157 """
19272049
RD
158 Button_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
159
160 Get the default attributes for this class. This is useful if you want
161 to use the same font or colour in your own control as in a standard
162 control -- which is a much better idea than hard coding specific
163 colours or fonts which might look completely out of place on the
164 user's system, especially if it uses themes.
165
166 The variant parameter is only relevant under Mac currently and is
167 ignore under other platforms. Under Mac, it will change the size of
168 the returned font. See `wx.Window.SetWindowVariant` for more about
169 this.
170 """
554f62e9 171 return _controls_.Button_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 172
d55e5bfc
RD
173class BitmapButton(Button):
174 """
175 A Button that contains a bitmap. A bitmap button can be supplied with a
c24da6d6 176 single bitmap, and wxWidgets will draw all button states using this bitmap. If
d55e5bfc
RD
177 the application needs more control, additional bitmaps for the selected state,
178 unpressed focused state, and greyed-out state may be supplied.
d55e5bfc 179 """
554f62e9
RD
180 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
181 __repr__ = _swig_repr
182 def __init__(self, *args, **kwargs):
d55e5bfc 183 """
248ed943
RD
184 __init__(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
185 Point pos=DefaultPosition, Size size=DefaultSize,
186 long style=BU_AUTODRAW, Validator validator=DefaultValidator,
d55e5bfc
RD
187 String name=ButtonNameStr) -> BitmapButton
188
189 Create and show a button with a bitmap for the label.
190 """
554f62e9 191 _controls_.BitmapButton_swiginit(self,_controls_.new_BitmapButton(*args, **kwargs))
d55e5bfc
RD
192 self._setOORInfo(self)
193
194 def Create(*args, **kwargs):
195 """
248ed943
RD
196 Create(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
197 Point pos=DefaultPosition, Size size=DefaultSize,
198 long style=BU_AUTODRAW, Validator validator=DefaultValidator,
d55e5bfc
RD
199 String name=ButtonNameStr) -> bool
200
201 Acutally create the GUI BitmapButton for 2-phase creation.
202 """
203 return _controls_.BitmapButton_Create(*args, **kwargs)
204
205 def GetBitmapLabel(*args, **kwargs):
206 """
207 GetBitmapLabel(self) -> Bitmap
208
209 Returns the label bitmap (the one passed to the constructor).
210 """
211 return _controls_.BitmapButton_GetBitmapLabel(*args, **kwargs)
212
213 def GetBitmapDisabled(*args, **kwargs):
214 """
215 GetBitmapDisabled(self) -> Bitmap
216
217 Returns the bitmap for the disabled state.
218 """
219 return _controls_.BitmapButton_GetBitmapDisabled(*args, **kwargs)
220
221 def GetBitmapFocus(*args, **kwargs):
222 """
223 GetBitmapFocus(self) -> Bitmap
224
225 Returns the bitmap for the focused state.
226 """
227 return _controls_.BitmapButton_GetBitmapFocus(*args, **kwargs)
228
229 def GetBitmapSelected(*args, **kwargs):
230 """
231 GetBitmapSelected(self) -> Bitmap
232
233 Returns the bitmap for the selected state.
234 """
235 return _controls_.BitmapButton_GetBitmapSelected(*args, **kwargs)
236
b1fcee84
RD
237 def GetBitmapHover(*args, **kwargs):
238 """
239 GetBitmapHover(self) -> Bitmap
240
241 Returns the bitmap used when the mouse is over the button, may be invalid.
242 """
243 return _controls_.BitmapButton_GetBitmapHover(*args, **kwargs)
244
d55e5bfc
RD
245 def SetBitmapDisabled(*args, **kwargs):
246 """
247 SetBitmapDisabled(self, Bitmap bitmap)
248
249 Sets the bitmap for the disabled button appearance.
250 """
251 return _controls_.BitmapButton_SetBitmapDisabled(*args, **kwargs)
252
253 def SetBitmapFocus(*args, **kwargs):
254 """
255 SetBitmapFocus(self, Bitmap bitmap)
256
257 Sets the bitmap for the button appearance when it has the keyboard focus.
258 """
259 return _controls_.BitmapButton_SetBitmapFocus(*args, **kwargs)
260
261 def SetBitmapSelected(*args, **kwargs):
262 """
263 SetBitmapSelected(self, Bitmap bitmap)
264
265 Sets the bitmap for the selected (depressed) button appearance.
266 """
267 return _controls_.BitmapButton_SetBitmapSelected(*args, **kwargs)
268
269 def SetBitmapLabel(*args, **kwargs):
270 """
271 SetBitmapLabel(self, Bitmap bitmap)
272
273 Sets the bitmap label for the button. This is the bitmap used for the
274 unselected state, and for all other states if no other bitmaps are provided.
275 """
276 return _controls_.BitmapButton_SetBitmapLabel(*args, **kwargs)
277
b1fcee84
RD
278 def SetBitmapHover(*args, **kwargs):
279 """
280 SetBitmapHover(self, Bitmap hover)
281
282 Sets the bitmap to be shown when the mouse is over the button. This function
283 is new since wxWidgets version 2.7.0 and the hover bitmap is currently only
284 supported in wxMSW.
285 """
286 return _controls_.BitmapButton_SetBitmapHover(*args, **kwargs)
287
d55e5bfc
RD
288 def SetMargins(*args, **kwargs):
289 """SetMargins(self, int x, int y)"""
290 return _controls_.BitmapButton_SetMargins(*args, **kwargs)
291
292 def GetMarginX(*args, **kwargs):
293 """GetMarginX(self) -> int"""
294 return _controls_.BitmapButton_GetMarginX(*args, **kwargs)
295
296 def GetMarginY(*args, **kwargs):
297 """GetMarginY(self) -> int"""
298 return _controls_.BitmapButton_GetMarginY(*args, **kwargs)
299
226118fc
RD
300 BitmapDisabled = property(GetBitmapDisabled,SetBitmapDisabled,doc="See `GetBitmapDisabled` and `SetBitmapDisabled`")
301 BitmapFocus = property(GetBitmapFocus,SetBitmapFocus,doc="See `GetBitmapFocus` and `SetBitmapFocus`")
302 BitmapHover = property(GetBitmapHover,SetBitmapHover,doc="See `GetBitmapHover` and `SetBitmapHover`")
303 BitmapLabel = property(GetBitmapLabel,SetBitmapLabel,doc="See `GetBitmapLabel` and `SetBitmapLabel`")
304 BitmapSelected = property(GetBitmapSelected,SetBitmapSelected,doc="See `GetBitmapSelected` and `SetBitmapSelected`")
305 MarginX = property(GetMarginX,doc="See `GetMarginX`")
306 MarginY = property(GetMarginY,doc="See `GetMarginY`")
2131d850 307_controls_.BitmapButton_swigregister(BitmapButton)
d55e5bfc
RD
308
309def PreBitmapButton(*args, **kwargs):
310 """
311 PreBitmapButton() -> BitmapButton
312
313 Precreate a BitmapButton for 2-phase creation.
314 """
315 val = _controls_.new_PreBitmapButton(*args, **kwargs)
d55e5bfc
RD
316 return val
317
318#---------------------------------------------------------------------------
319
320CHK_2STATE = _controls_.CHK_2STATE
321CHK_3STATE = _controls_.CHK_3STATE
322CHK_ALLOW_3RD_STATE_FOR_USER = _controls_.CHK_ALLOW_3RD_STATE_FOR_USER
323CHK_UNCHECKED = _controls_.CHK_UNCHECKED
324CHK_CHECKED = _controls_.CHK_CHECKED
325CHK_UNDETERMINED = _controls_.CHK_UNDETERMINED
326class CheckBox(_core.Control):
327 """
c24da6d6
RD
328 A checkbox is a labelled box which by default is either on (the
329 checkmark is visible) or off (no checkmark). Optionally (When the
330 wx.CHK_3STATE style flag is set) it can have a third state, called the
331 mixed or undetermined state. Often this is used as a "Does Not
332 Apply" state.
d55e5bfc 333 """
554f62e9
RD
334 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
335 __repr__ = _swig_repr
336 def __init__(self, *args, **kwargs):
d55e5bfc 337 """
248ed943
RD
338 __init__(self, Window parent, int id=-1, String label=EmptyString,
339 Point pos=DefaultPosition, Size size=DefaultSize,
340 long style=0, Validator validator=DefaultValidator,
341 String name=CheckBoxNameStr) -> CheckBox
d55e5bfc
RD
342
343 Creates and shows a CheckBox control
344 """
554f62e9 345 _controls_.CheckBox_swiginit(self,_controls_.new_CheckBox(*args, **kwargs))
d55e5bfc
RD
346 self._setOORInfo(self)
347
348 def Create(*args, **kwargs):
349 """
248ed943
RD
350 Create(self, Window parent, int id=-1, String label=EmptyString,
351 Point pos=DefaultPosition, Size size=DefaultSize,
352 long style=0, Validator validator=DefaultValidator,
353 String name=CheckBoxNameStr) -> bool
d55e5bfc
RD
354
355 Actually create the GUI CheckBox for 2-phase creation.
356 """
357 return _controls_.CheckBox_Create(*args, **kwargs)
358
359 def GetValue(*args, **kwargs):
360 """
361 GetValue(self) -> bool
362
363 Gets the state of a 2-state CheckBox. Returns True if it is checked,
364 False otherwise.
365 """
366 return _controls_.CheckBox_GetValue(*args, **kwargs)
367
368 def IsChecked(*args, **kwargs):
369 """
370 IsChecked(self) -> bool
371
c24da6d6
RD
372 Similar to GetValue, but raises an exception if it is not a 2-state
373 CheckBox.
d55e5bfc
RD
374 """
375 return _controls_.CheckBox_IsChecked(*args, **kwargs)
376
377 def SetValue(*args, **kwargs):
378 """
379 SetValue(self, bool state)
380
c24da6d6
RD
381 Set the state of a 2-state CheckBox. Pass True for checked, False for
382 unchecked.
d55e5bfc
RD
383 """
384 return _controls_.CheckBox_SetValue(*args, **kwargs)
385
386 def Get3StateValue(*args, **kwargs):
387 """
388 Get3StateValue(self) -> int
389
c24da6d6
RD
390 Returns wx.CHK_UNCHECKED when the CheckBox is unchecked,
391 wx.CHK_CHECKED when it is checked and wx.CHK_UNDETERMINED when it's in
392 the undetermined state. Raises an exceptiion when the function is
393 used with a 2-state CheckBox.
d55e5bfc
RD
394 """
395 return _controls_.CheckBox_Get3StateValue(*args, **kwargs)
396
397 def Set3StateValue(*args, **kwargs):
398 """
399 Set3StateValue(self, int state)
400
c24da6d6
RD
401 Sets the CheckBox to the given state. The state parameter can be one
402 of the following: wx.CHK_UNCHECKED (Check is off), wx.CHK_CHECKED (the
403 Check is on) or wx.CHK_UNDETERMINED (Check is mixed). Raises an
404 exception when the CheckBox is a 2-state checkbox and setting the
405 state to wx.CHK_UNDETERMINED.
d55e5bfc
RD
406 """
407 return _controls_.CheckBox_Set3StateValue(*args, **kwargs)
408
409 def Is3State(*args, **kwargs):
410 """
411 Is3State(self) -> bool
412
413 Returns whether or not the CheckBox is a 3-state CheckBox.
414 """
415 return _controls_.CheckBox_Is3State(*args, **kwargs)
416
417 def Is3rdStateAllowedForUser(*args, **kwargs):
418 """
419 Is3rdStateAllowedForUser(self) -> bool
420
c24da6d6
RD
421 Returns whether or not the user can set the CheckBox to the third
422 state.
d55e5bfc
RD
423 """
424 return _controls_.CheckBox_Is3rdStateAllowedForUser(*args, **kwargs)
425
f20a2e1f 426 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
427 """
428 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
429
430 Get the default attributes for this class. This is useful if you want
431 to use the same font or colour in your own control as in a standard
432 control -- which is a much better idea than hard coding specific
433 colours or fonts which might look completely out of place on the
434 user's system, especially if it uses themes.
435
436 The variant parameter is only relevant under Mac currently and is
437 ignore under other platforms. Under Mac, it will change the size of
438 the returned font. See `wx.Window.SetWindowVariant` for more about
439 this.
440 """
f20a2e1f
RD
441 return _controls_.CheckBox_GetClassDefaultAttributes(*args, **kwargs)
442
443 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
226118fc
RD
444 ThreeStateValue = property(Get3StateValue,Set3StateValue,doc="See `Get3StateValue` and `Set3StateValue`")
445 Value = property(GetValue,SetValue,doc="See `GetValue` and `SetValue`")
2131d850 446_controls_.CheckBox_swigregister(CheckBox)
d55e5bfc
RD
447CheckBoxNameStr = cvar.CheckBoxNameStr
448
449def PreCheckBox(*args, **kwargs):
450 """
451 PreCheckBox() -> CheckBox
452
453 Precreate a CheckBox for 2-phase creation.
454 """
455 val = _controls_.new_PreCheckBox(*args, **kwargs)
d55e5bfc
RD
456 return val
457
f20a2e1f 458def CheckBox_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 459 """
19272049
RD
460 CheckBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
461
462 Get the default attributes for this class. This is useful if you want
463 to use the same font or colour in your own control as in a standard
464 control -- which is a much better idea than hard coding specific
465 colours or fonts which might look completely out of place on the
466 user's system, especially if it uses themes.
467
468 The variant parameter is only relevant under Mac currently and is
469 ignore under other platforms. Under Mac, it will change the size of
470 the returned font. See `wx.Window.SetWindowVariant` for more about
471 this.
472 """
554f62e9 473 return _controls_.CheckBox_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 474
d55e5bfc
RD
475#---------------------------------------------------------------------------
476
477class Choice(_core.ControlWithItems):
478 """
c24da6d6
RD
479 A Choice control is used to select one of a list of strings.
480 Unlike a `wx.ListBox`, only the selection is visible until the
481 user pulls down the menu of choices.
d55e5bfc 482 """
554f62e9
RD
483 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
484 __repr__ = _swig_repr
485 def __init__(self, *args, **kwargs):
d55e5bfc
RD
486 """
487 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
5dce5a9a 488 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
d55e5bfc
RD
489 String name=ChoiceNameStr) -> Choice
490
491 Create and show a Choice control
492 """
554f62e9 493 _controls_.Choice_swiginit(self,_controls_.new_Choice(*args, **kwargs))
d55e5bfc
RD
494 self._setOORInfo(self)
495
496 def Create(*args, **kwargs):
497 """
498 Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
5dce5a9a 499 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
d55e5bfc 500 String name=ChoiceNameStr) -> bool
a001823c
RD
501
502 Actually create the GUI Choice control for 2-phase creation
d55e5bfc
RD
503 """
504 return _controls_.Choice_Create(*args, **kwargs)
505
9d7dfdff
RD
506 def GetCurrentSelection(*args, **kwargs):
507 """
508 GetCurrentSelection(self) -> int
509
510 Unlike `GetSelection` which only returns the accepted selection value,
511 i.e. the selection in the control once the user closes the dropdown
512 list, this function returns the current selection. That is, while the
513 dropdown list is shown, it returns the currently selected item in
514 it. When it is not shown, its result is the same as for the other
515 function.
516 """
517 return _controls_.Choice_GetCurrentSelection(*args, **kwargs)
518
f20a2e1f 519 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
520 """
521 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
522
523 Get the default attributes for this class. This is useful if you want
524 to use the same font or colour in your own control as in a standard
525 control -- which is a much better idea than hard coding specific
526 colours or fonts which might look completely out of place on the
527 user's system, especially if it uses themes.
528
529 The variant parameter is only relevant under Mac currently and is
530 ignore under other platforms. Under Mac, it will change the size of
531 the returned font. See `wx.Window.SetWindowVariant` for more about
532 this.
533 """
f20a2e1f
RD
534 return _controls_.Choice_GetClassDefaultAttributes(*args, **kwargs)
535
536 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
226118fc 537 CurrentSelection = property(GetCurrentSelection,doc="See `GetCurrentSelection`")
2131d850 538_controls_.Choice_swigregister(Choice)
d55e5bfc
RD
539ChoiceNameStr = cvar.ChoiceNameStr
540
541def PreChoice(*args, **kwargs):
542 """
543 PreChoice() -> Choice
544
545 Precreate a Choice control for 2-phase creation.
546 """
547 val = _controls_.new_PreChoice(*args, **kwargs)
d55e5bfc
RD
548 return val
549
f20a2e1f 550def Choice_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 551 """
19272049
RD
552 Choice_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
553
554 Get the default attributes for this class. This is useful if you want
555 to use the same font or colour in your own control as in a standard
556 control -- which is a much better idea than hard coding specific
557 colours or fonts which might look completely out of place on the
558 user's system, especially if it uses themes.
559
560 The variant parameter is only relevant under Mac currently and is
561 ignore under other platforms. Under Mac, it will change the size of
562 the returned font. See `wx.Window.SetWindowVariant` for more about
563 this.
564 """
554f62e9 565 return _controls_.Choice_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 566
d55e5bfc
RD
567#---------------------------------------------------------------------------
568
569class ComboBox(Choice):
570 """
79fccf9d
RD
571 A combobox is like a combination of an edit control and a
572 listbox. It can be displayed as static list with editable or
573 read-only text field; or a drop-down list with text field.
574
575 A combobox permits a single selection only. Combobox items are
576 numbered from zero.
d55e5bfc 577 """
554f62e9
RD
578 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
579 __repr__ = _swig_repr
580 def __init__(self, *args, **kwargs):
d55e5bfc
RD
581 """
582 __init__(Window parent, int id, String value=EmptyString,
583 Point pos=DefaultPosition, Size size=DefaultSize,
5dce5a9a 584 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
79fccf9d 585 String name=ComboBoxNameStr) -> ComboBox
d55e5bfc
RD
586
587 Constructor, creates and shows a ComboBox control.
588 """
554f62e9 589 _controls_.ComboBox_swiginit(self,_controls_.new_ComboBox(*args, **kwargs))
d55e5bfc
RD
590 self._setOORInfo(self)
591
592 def Create(*args, **kwargs):
593 """
594 Create(Window parent, int id, String value=EmptyString,
595 Point pos=DefaultPosition, Size size=DefaultSize,
5dce5a9a 596 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
d55e5bfc 597 String name=ChoiceNameStr) -> bool
a001823c
RD
598
599 Actually create the GUI wxComboBox control for 2-phase creation
d55e5bfc
RD
600 """
601 return _controls_.ComboBox_Create(*args, **kwargs)
602
603 def GetValue(*args, **kwargs):
604 """
605 GetValue(self) -> String
606
607 Returns the current value in the combobox text field.
608 """
609 return _controls_.ComboBox_GetValue(*args, **kwargs)
610
611 def SetValue(*args, **kwargs):
612 """SetValue(self, String value)"""
613 return _controls_.ComboBox_SetValue(*args, **kwargs)
614
615 def Copy(*args, **kwargs):
616 """
617 Copy(self)
618
619 Copies the selected text to the clipboard.
620 """
621 return _controls_.ComboBox_Copy(*args, **kwargs)
622
623 def Cut(*args, **kwargs):
624 """
625 Cut(self)
626
627 Copies the selected text to the clipboard and removes the selection.
628 """
629 return _controls_.ComboBox_Cut(*args, **kwargs)
630
631 def Paste(*args, **kwargs):
632 """
633 Paste(self)
634
635 Pastes text from the clipboard to the text field.
636 """
637 return _controls_.ComboBox_Paste(*args, **kwargs)
638
639 def SetInsertionPoint(*args, **kwargs):
640 """
641 SetInsertionPoint(self, long pos)
642
643 Sets the insertion point in the combobox text field.
644 """
645 return _controls_.ComboBox_SetInsertionPoint(*args, **kwargs)
646
647 def GetInsertionPoint(*args, **kwargs):
648 """
649 GetInsertionPoint(self) -> long
650
651 Returns the insertion point for the combobox's text field.
652 """
653 return _controls_.ComboBox_GetInsertionPoint(*args, **kwargs)
654
655 def GetLastPosition(*args, **kwargs):
656 """
657 GetLastPosition(self) -> long
658
659 Returns the last position in the combobox text field.
660 """
661 return _controls_.ComboBox_GetLastPosition(*args, **kwargs)
662
663 def Replace(*args, **kwargs):
664 """
665 Replace(self, long from, long to, String value)
666
667 Replaces the text between two positions with the given text, in the
668 combobox text field.
669 """
670 return _controls_.ComboBox_Replace(*args, **kwargs)
671
d55e5bfc 672 def SetMark(*args, **kwargs):
121b9a67
RD
673 """
674 SetMark(self, long from, long to)
675
676 Selects the text between the two positions in the combobox text field.
677 """
d55e5bfc
RD
678 return _controls_.ComboBox_SetMark(*args, **kwargs)
679
f78cc896
RD
680 def GetMark(*args, **kwargs):
681 """
682 GetMark(self) -> (from, to)
683
684 Gets the positions of the begining and ending of the selection mark in
685 the combobox text field.
686 """
687 return _controls_.ComboBox_GetMark(*args, **kwargs)
688
9d7dfdff
RD
689 def GetCurrentSelection(*args, **kwargs):
690 """
691 GetCurrentSelection(self) -> int
692
693 Unlike `GetSelection` which only returns the accepted selection value,
694 i.e. the selection in the control once the user closes the dropdown
695 list, this function returns the current selection. That is, while the
696 dropdown list is shown, it returns the currently selected item in
697 it. When it is not shown, its result is the same as for the other
698 function.
699 """
700 return _controls_.ComboBox_GetCurrentSelection(*args, **kwargs)
701
121b9a67
RD
702 def SetStringSelection(*args, **kwargs):
703 """
704 SetStringSelection(self, String string) -> bool
705
706 Select the item with the specifed string
707 """
708 return _controls_.ComboBox_SetStringSelection(*args, **kwargs)
709
d55e5bfc
RD
710 def SetEditable(*args, **kwargs):
711 """SetEditable(self, bool editable)"""
712 return _controls_.ComboBox_SetEditable(*args, **kwargs)
713
714 def SetInsertionPointEnd(*args, **kwargs):
715 """
716 SetInsertionPointEnd(self)
717
718 Sets the insertion point at the end of the combobox text field.
719 """
720 return _controls_.ComboBox_SetInsertionPointEnd(*args, **kwargs)
721
722 def Remove(*args, **kwargs):
723 """
724 Remove(self, long from, long to)
725
726 Removes the text between the two positions in the combobox text field.
727 """
728 return _controls_.ComboBox_Remove(*args, **kwargs)
729
b519803b
RD
730 def IsEditable(*args, **kwargs):
731 """
732 IsEditable(self) -> bool
733
734 Returns True if the combo is ediatable (not read-only.)
735 """
736 return _controls_.ComboBox_IsEditable(*args, **kwargs)
737
738 def Undo(*args, **kwargs):
739 """
740 Undo(self)
741
742 Redoes the last undo in the text field. Windows only.
743 """
744 return _controls_.ComboBox_Undo(*args, **kwargs)
745
746 def Redo(*args, **kwargs):
747 """
748 Redo(self)
749
750 Undoes the last edit in the text field. Windows only.
751 """
752 return _controls_.ComboBox_Redo(*args, **kwargs)
753
754 def SelectAll(*args, **kwargs):
755 """
756 SelectAll(self)
757
758 Select all the text in the combo's text field.
759 """
760 return _controls_.ComboBox_SelectAll(*args, **kwargs)
761
762 def CanCopy(*args, **kwargs):
763 """
764 CanCopy(self) -> bool
765
766 Returns True if the combobox is editable and there is a text selection
767 to copy to the clipboard. Only available on Windows.
768 """
769 return _controls_.ComboBox_CanCopy(*args, **kwargs)
770
771 def CanCut(*args, **kwargs):
772 """
773 CanCut(self) -> bool
774
775 Returns True if the combobox is editable and there is a text selection
776 to copy to the clipboard. Only available on Windows.
777 """
778 return _controls_.ComboBox_CanCut(*args, **kwargs)
779
780 def CanPaste(*args, **kwargs):
781 """
782 CanPaste(self) -> bool
783
784 Returns True if the combobox is editable and there is text on the
785 clipboard that can be pasted into the text field. Only available on
786 Windows.
787 """
788 return _controls_.ComboBox_CanPaste(*args, **kwargs)
789
790 def CanUndo(*args, **kwargs):
791 """
792 CanUndo(self) -> bool
793
794 Returns True if the combobox is editable and the last edit can be
795 undone. Only available on Windows.
796 """
797 return _controls_.ComboBox_CanUndo(*args, **kwargs)
798
799 def CanRedo(*args, **kwargs):
800 """
801 CanRedo(self) -> bool
802
803 Returns True if the combobox is editable and the last undo can be
804 redone. Only available on Windows.
805 """
806 return _controls_.ComboBox_CanRedo(*args, **kwargs)
807
f20a2e1f 808 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
809 """
810 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
811
812 Get the default attributes for this class. This is useful if you want
813 to use the same font or colour in your own control as in a standard
814 control -- which is a much better idea than hard coding specific
815 colours or fonts which might look completely out of place on the
816 user's system, especially if it uses themes.
817
818 The variant parameter is only relevant under Mac currently and is
819 ignore under other platforms. Under Mac, it will change the size of
820 the returned font. See `wx.Window.SetWindowVariant` for more about
821 this.
822 """
f20a2e1f
RD
823 return _controls_.ComboBox_GetClassDefaultAttributes(*args, **kwargs)
824
825 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
226118fc
RD
826 CurrentSelection = property(GetCurrentSelection,doc="See `GetCurrentSelection`")
827 InsertionPoint = property(GetInsertionPoint,SetInsertionPoint,doc="See `GetInsertionPoint` and `SetInsertionPoint`")
828 LastPosition = property(GetLastPosition,doc="See `GetLastPosition`")
829 Mark = property(GetMark,SetMark,doc="See `GetMark` and `SetMark`")
830 Value = property(GetValue,SetValue,doc="See `GetValue` and `SetValue`")
2131d850 831_controls_.ComboBox_swigregister(ComboBox)
d55e5bfc
RD
832ComboBoxNameStr = cvar.ComboBoxNameStr
833
834def PreComboBox(*args, **kwargs):
835 """
836 PreComboBox() -> ComboBox
837
838 Precreate a ComboBox control for 2-phase creation.
839 """
840 val = _controls_.new_PreComboBox(*args, **kwargs)
d55e5bfc
RD
841 return val
842
f20a2e1f 843def ComboBox_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 844 """
19272049
RD
845 ComboBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
846
847 Get the default attributes for this class. This is useful if you want
848 to use the same font or colour in your own control as in a standard
849 control -- which is a much better idea than hard coding specific
850 colours or fonts which might look completely out of place on the
851 user's system, especially if it uses themes.
852
853 The variant parameter is only relevant under Mac currently and is
854 ignore under other platforms. Under Mac, it will change the size of
855 the returned font. See `wx.Window.SetWindowVariant` for more about
856 this.
857 """
554f62e9 858 return _controls_.ComboBox_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 859
d55e5bfc
RD
860#---------------------------------------------------------------------------
861
862GA_HORIZONTAL = _controls_.GA_HORIZONTAL
863GA_VERTICAL = _controls_.GA_VERTICAL
864GA_SMOOTH = _controls_.GA_SMOOTH
e9d6f3a4 865GA_PROGRESSBAR = 0 # obsolete
d55e5bfc 866class Gauge(_core.Control):
093d3ff1 867 """Proxy of C++ Gauge class"""
554f62e9
RD
868 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
869 __repr__ = _swig_repr
870 def __init__(self, *args, **kwargs):
d55e5bfc 871 """
248ed943 872 __init__(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
d55e5bfc
RD
873 Size size=DefaultSize, long style=GA_HORIZONTAL,
874 Validator validator=DefaultValidator,
875 String name=GaugeNameStr) -> Gauge
876 """
554f62e9 877 _controls_.Gauge_swiginit(self,_controls_.new_Gauge(*args, **kwargs))
d55e5bfc
RD
878 self._setOORInfo(self)
879
880 def Create(*args, **kwargs):
881 """
248ed943 882 Create(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
d55e5bfc
RD
883 Size size=DefaultSize, long style=GA_HORIZONTAL,
884 Validator validator=DefaultValidator,
885 String name=GaugeNameStr) -> bool
886 """
887 return _controls_.Gauge_Create(*args, **kwargs)
888
889 def SetRange(*args, **kwargs):
890 """SetRange(self, int range)"""
891 return _controls_.Gauge_SetRange(*args, **kwargs)
892
893 def GetRange(*args, **kwargs):
894 """GetRange(self) -> int"""
895 return _controls_.Gauge_GetRange(*args, **kwargs)
896
897 def SetValue(*args, **kwargs):
898 """SetValue(self, int pos)"""
899 return _controls_.Gauge_SetValue(*args, **kwargs)
900
901 def GetValue(*args, **kwargs):
902 """GetValue(self) -> int"""
903 return _controls_.Gauge_GetValue(*args, **kwargs)
904
0d2c9713
RD
905 def Pulse(*args, **kwargs):
906 """Pulse(self)"""
907 return _controls_.Gauge_Pulse(*args, **kwargs)
908
d55e5bfc
RD
909 def IsVertical(*args, **kwargs):
910 """IsVertical(self) -> bool"""
911 return _controls_.Gauge_IsVertical(*args, **kwargs)
912
913 def SetShadowWidth(*args, **kwargs):
914 """SetShadowWidth(self, int w)"""
915 return _controls_.Gauge_SetShadowWidth(*args, **kwargs)
916
917 def GetShadowWidth(*args, **kwargs):
918 """GetShadowWidth(self) -> int"""
919 return _controls_.Gauge_GetShadowWidth(*args, **kwargs)
920
921 def SetBezelFace(*args, **kwargs):
922 """SetBezelFace(self, int w)"""
923 return _controls_.Gauge_SetBezelFace(*args, **kwargs)
924
925 def GetBezelFace(*args, **kwargs):
926 """GetBezelFace(self) -> int"""
927 return _controls_.Gauge_GetBezelFace(*args, **kwargs)
928
f20a2e1f 929 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
930 """
931 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
932
933 Get the default attributes for this class. This is useful if you want
934 to use the same font or colour in your own control as in a standard
935 control -- which is a much better idea than hard coding specific
936 colours or fonts which might look completely out of place on the
937 user's system, especially if it uses themes.
938
939 The variant parameter is only relevant under Mac currently and is
940 ignore under other platforms. Under Mac, it will change the size of
941 the returned font. See `wx.Window.SetWindowVariant` for more about
942 this.
943 """
f20a2e1f
RD
944 return _controls_.Gauge_GetClassDefaultAttributes(*args, **kwargs)
945
946 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
97ab0f6a
RD
947 BezelFace = property(GetBezelFace,SetBezelFace,doc="See `GetBezelFace` and `SetBezelFace`")
948 Range = property(GetRange,SetRange,doc="See `GetRange` and `SetRange`")
949 ShadowWidth = property(GetShadowWidth,SetShadowWidth,doc="See `GetShadowWidth` and `SetShadowWidth`")
950 Value = property(GetValue,SetValue,doc="See `GetValue` and `SetValue`")
2131d850 951_controls_.Gauge_swigregister(Gauge)
d55e5bfc
RD
952GaugeNameStr = cvar.GaugeNameStr
953
954def PreGauge(*args, **kwargs):
955 """PreGauge() -> Gauge"""
956 val = _controls_.new_PreGauge(*args, **kwargs)
d55e5bfc
RD
957 return val
958
f20a2e1f 959def Gauge_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 960 """
19272049
RD
961 Gauge_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
962
963 Get the default attributes for this class. This is useful if you want
964 to use the same font or colour in your own control as in a standard
965 control -- which is a much better idea than hard coding specific
966 colours or fonts which might look completely out of place on the
967 user's system, especially if it uses themes.
968
969 The variant parameter is only relevant under Mac currently and is
970 ignore under other platforms. Under Mac, it will change the size of
971 the returned font. See `wx.Window.SetWindowVariant` for more about
972 this.
973 """
554f62e9 974 return _controls_.Gauge_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 975
d55e5bfc
RD
976#---------------------------------------------------------------------------
977
978class StaticBox(_core.Control):
093d3ff1 979 """Proxy of C++ StaticBox class"""
554f62e9
RD
980 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
981 __repr__ = _swig_repr
982 def __init__(self, *args, **kwargs):
d55e5bfc 983 """
248ed943
RD
984 __init__(self, Window parent, int id=-1, String label=EmptyString,
985 Point pos=DefaultPosition, Size size=DefaultSize,
986 long style=0, String name=StaticBoxNameStr) -> StaticBox
d55e5bfc 987 """
554f62e9 988 _controls_.StaticBox_swiginit(self,_controls_.new_StaticBox(*args, **kwargs))
d55e5bfc
RD
989 self._setOORInfo(self)
990
991 def Create(*args, **kwargs):
992 """
248ed943
RD
993 Create(self, Window parent, int id=-1, String label=EmptyString,
994 Point pos=DefaultPosition, Size size=DefaultSize,
995 long style=0, String name=StaticBoxNameStr) -> bool
d55e5bfc
RD
996 """
997 return _controls_.StaticBox_Create(*args, **kwargs)
998
f20a2e1f 999 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
1000 """
1001 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1002
1003 Get the default attributes for this class. This is useful if you want
1004 to use the same font or colour in your own control as in a standard
1005 control -- which is a much better idea than hard coding specific
1006 colours or fonts which might look completely out of place on the
1007 user's system, especially if it uses themes.
1008
1009 The variant parameter is only relevant under Mac currently and is
1010 ignore under other platforms. Under Mac, it will change the size of
1011 the returned font. See `wx.Window.SetWindowVariant` for more about
1012 this.
1013 """
f20a2e1f
RD
1014 return _controls_.StaticBox_GetClassDefaultAttributes(*args, **kwargs)
1015
1016 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2131d850 1017_controls_.StaticBox_swigregister(StaticBox)
d55e5bfc
RD
1018StaticBitmapNameStr = cvar.StaticBitmapNameStr
1019StaticBoxNameStr = cvar.StaticBoxNameStr
1020StaticTextNameStr = cvar.StaticTextNameStr
1021
1022def PreStaticBox(*args, **kwargs):
1023 """PreStaticBox() -> StaticBox"""
1024 val = _controls_.new_PreStaticBox(*args, **kwargs)
d55e5bfc
RD
1025 return val
1026
f20a2e1f 1027def StaticBox_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 1028 """
19272049
RD
1029 StaticBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1030
1031 Get the default attributes for this class. This is useful if you want
1032 to use the same font or colour in your own control as in a standard
1033 control -- which is a much better idea than hard coding specific
1034 colours or fonts which might look completely out of place on the
1035 user's system, especially if it uses themes.
1036
1037 The variant parameter is only relevant under Mac currently and is
1038 ignore under other platforms. Under Mac, it will change the size of
1039 the returned font. See `wx.Window.SetWindowVariant` for more about
1040 this.
1041 """
554f62e9 1042 return _controls_.StaticBox_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 1043
d55e5bfc
RD
1044#---------------------------------------------------------------------------
1045
1046class StaticLine(_core.Control):
093d3ff1 1047 """Proxy of C++ StaticLine class"""
554f62e9
RD
1048 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1049 __repr__ = _swig_repr
1050 def __init__(self, *args, **kwargs):
d55e5bfc 1051 """
248ed943
RD
1052 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1053 Size size=DefaultSize, long style=LI_HORIZONTAL,
d55e5bfc
RD
1054 String name=StaticTextNameStr) -> StaticLine
1055 """
554f62e9 1056 _controls_.StaticLine_swiginit(self,_controls_.new_StaticLine(*args, **kwargs))
d55e5bfc
RD
1057 self._setOORInfo(self)
1058
1059 def Create(*args, **kwargs):
1060 """
248ed943
RD
1061 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1062 Size size=DefaultSize, long style=LI_HORIZONTAL,
d55e5bfc
RD
1063 String name=StaticTextNameStr) -> bool
1064 """
1065 return _controls_.StaticLine_Create(*args, **kwargs)
1066
1067 def IsVertical(*args, **kwargs):
1068 """IsVertical(self) -> bool"""
1069 return _controls_.StaticLine_IsVertical(*args, **kwargs)
1070
1071 def GetDefaultSize(*args, **kwargs):
c24da6d6 1072 """GetDefaultSize() -> int"""
d55e5bfc
RD
1073 return _controls_.StaticLine_GetDefaultSize(*args, **kwargs)
1074
1075 GetDefaultSize = staticmethod(GetDefaultSize)
f20a2e1f 1076 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
1077 """
1078 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1079
1080 Get the default attributes for this class. This is useful if you want
1081 to use the same font or colour in your own control as in a standard
1082 control -- which is a much better idea than hard coding specific
1083 colours or fonts which might look completely out of place on the
1084 user's system, especially if it uses themes.
1085
1086 The variant parameter is only relevant under Mac currently and is
1087 ignore under other platforms. Under Mac, it will change the size of
1088 the returned font. See `wx.Window.SetWindowVariant` for more about
1089 this.
1090 """
f20a2e1f
RD
1091 return _controls_.StaticLine_GetClassDefaultAttributes(*args, **kwargs)
1092
1093 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2131d850 1094_controls_.StaticLine_swigregister(StaticLine)
d55e5bfc
RD
1095
1096def PreStaticLine(*args, **kwargs):
1097 """PreStaticLine() -> StaticLine"""
1098 val = _controls_.new_PreStaticLine(*args, **kwargs)
d55e5bfc
RD
1099 return val
1100
554f62e9
RD
1101def StaticLine_GetDefaultSize(*args):
1102 """StaticLine_GetDefaultSize() -> int"""
1103 return _controls_.StaticLine_GetDefaultSize(*args)
d55e5bfc 1104
f20a2e1f 1105def StaticLine_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 1106 """
19272049
RD
1107 StaticLine_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1108
1109 Get the default attributes for this class. This is useful if you want
1110 to use the same font or colour in your own control as in a standard
1111 control -- which is a much better idea than hard coding specific
1112 colours or fonts which might look completely out of place on the
1113 user's system, especially if it uses themes.
1114
1115 The variant parameter is only relevant under Mac currently and is
1116 ignore under other platforms. Under Mac, it will change the size of
1117 the returned font. See `wx.Window.SetWindowVariant` for more about
1118 this.
1119 """
554f62e9 1120 return _controls_.StaticLine_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 1121
d55e5bfc
RD
1122#---------------------------------------------------------------------------
1123
1124class StaticText(_core.Control):
093d3ff1 1125 """Proxy of C++ StaticText class"""
554f62e9
RD
1126 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1127 __repr__ = _swig_repr
1128 def __init__(self, *args, **kwargs):
d55e5bfc 1129 """
248ed943
RD
1130 __init__(self, Window parent, int id=-1, String label=EmptyString,
1131 Point pos=DefaultPosition, Size size=DefaultSize,
1132 long style=0, String name=StaticTextNameStr) -> StaticText
d55e5bfc 1133 """
554f62e9 1134 _controls_.StaticText_swiginit(self,_controls_.new_StaticText(*args, **kwargs))
d55e5bfc
RD
1135 self._setOORInfo(self)
1136
1137 def Create(*args, **kwargs):
1138 """
248ed943
RD
1139 Create(self, Window parent, int id=-1, String label=EmptyString,
1140 Point pos=DefaultPosition, Size size=DefaultSize,
1141 long style=0, String name=StaticTextNameStr) -> bool
d55e5bfc
RD
1142 """
1143 return _controls_.StaticText_Create(*args, **kwargs)
1144
9d7dfdff
RD
1145 def Wrap(*args, **kwargs):
1146 """
1147 Wrap(self, int width)
1148
1149 This functions wraps the control's label so that each of its lines
1150 becomes at most ``width`` pixels wide if possible (the lines are
1151 broken at words boundaries so it might not be the case if words are
1152 too long). If ``width`` is negative, no wrapping is done.
1153 """
1154 return _controls_.StaticText_Wrap(*args, **kwargs)
1155
f20a2e1f 1156 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
1157 """
1158 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1159
1160 Get the default attributes for this class. This is useful if you want
1161 to use the same font or colour in your own control as in a standard
1162 control -- which is a much better idea than hard coding specific
1163 colours or fonts which might look completely out of place on the
1164 user's system, especially if it uses themes.
1165
1166 The variant parameter is only relevant under Mac currently and is
1167 ignore under other platforms. Under Mac, it will change the size of
1168 the returned font. See `wx.Window.SetWindowVariant` for more about
1169 this.
1170 """
f20a2e1f
RD
1171 return _controls_.StaticText_GetClassDefaultAttributes(*args, **kwargs)
1172
1173 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2131d850 1174_controls_.StaticText_swigregister(StaticText)
d55e5bfc
RD
1175
1176def PreStaticText(*args, **kwargs):
1177 """PreStaticText() -> StaticText"""
1178 val = _controls_.new_PreStaticText(*args, **kwargs)
d55e5bfc
RD
1179 return val
1180
f20a2e1f 1181def StaticText_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 1182 """
19272049
RD
1183 StaticText_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1184
1185 Get the default attributes for this class. This is useful if you want
1186 to use the same font or colour in your own control as in a standard
1187 control -- which is a much better idea than hard coding specific
1188 colours or fonts which might look completely out of place on the
1189 user's system, especially if it uses themes.
1190
1191 The variant parameter is only relevant under Mac currently and is
1192 ignore under other platforms. Under Mac, it will change the size of
1193 the returned font. See `wx.Window.SetWindowVariant` for more about
1194 this.
1195 """
554f62e9 1196 return _controls_.StaticText_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 1197
d55e5bfc
RD
1198#---------------------------------------------------------------------------
1199
1200class StaticBitmap(_core.Control):
093d3ff1 1201 """Proxy of C++ StaticBitmap class"""
554f62e9
RD
1202 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1203 __repr__ = _swig_repr
1204 def __init__(self, *args, **kwargs):
d55e5bfc 1205 """
248ed943
RD
1206 __init__(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
1207 Point pos=DefaultPosition, Size size=DefaultSize,
1208 long style=0, String name=StaticBitmapNameStr) -> StaticBitmap
d55e5bfc 1209 """
554f62e9 1210 _controls_.StaticBitmap_swiginit(self,_controls_.new_StaticBitmap(*args, **kwargs))
d55e5bfc
RD
1211 self._setOORInfo(self)
1212
1213 def Create(*args, **kwargs):
1214 """
248ed943
RD
1215 Create(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
1216 Point pos=DefaultPosition, Size size=DefaultSize,
1217 long style=0, String name=StaticBitmapNameStr) -> bool
d55e5bfc
RD
1218 """
1219 return _controls_.StaticBitmap_Create(*args, **kwargs)
1220
1221 def GetBitmap(*args, **kwargs):
1222 """GetBitmap(self) -> Bitmap"""
1223 return _controls_.StaticBitmap_GetBitmap(*args, **kwargs)
1224
1225 def SetBitmap(*args, **kwargs):
1226 """SetBitmap(self, Bitmap bitmap)"""
1227 return _controls_.StaticBitmap_SetBitmap(*args, **kwargs)
1228
1229 def SetIcon(*args, **kwargs):
1230 """SetIcon(self, Icon icon)"""
1231 return _controls_.StaticBitmap_SetIcon(*args, **kwargs)
1232
f20a2e1f 1233 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
1234 """
1235 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1236
1237 Get the default attributes for this class. This is useful if you want
1238 to use the same font or colour in your own control as in a standard
1239 control -- which is a much better idea than hard coding specific
1240 colours or fonts which might look completely out of place on the
1241 user's system, especially if it uses themes.
1242
1243 The variant parameter is only relevant under Mac currently and is
1244 ignore under other platforms. Under Mac, it will change the size of
1245 the returned font. See `wx.Window.SetWindowVariant` for more about
1246 this.
1247 """
f20a2e1f
RD
1248 return _controls_.StaticBitmap_GetClassDefaultAttributes(*args, **kwargs)
1249
1250 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2131d850 1251_controls_.StaticBitmap_swigregister(StaticBitmap)
d55e5bfc
RD
1252
1253def PreStaticBitmap(*args, **kwargs):
1254 """PreStaticBitmap() -> StaticBitmap"""
1255 val = _controls_.new_PreStaticBitmap(*args, **kwargs)
d55e5bfc
RD
1256 return val
1257
f20a2e1f 1258def StaticBitmap_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 1259 """
19272049
RD
1260 StaticBitmap_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1261
1262 Get the default attributes for this class. This is useful if you want
1263 to use the same font or colour in your own control as in a standard
1264 control -- which is a much better idea than hard coding specific
1265 colours or fonts which might look completely out of place on the
1266 user's system, especially if it uses themes.
1267
1268 The variant parameter is only relevant under Mac currently and is
1269 ignore under other platforms. Under Mac, it will change the size of
1270 the returned font. See `wx.Window.SetWindowVariant` for more about
1271 this.
1272 """
554f62e9 1273 return _controls_.StaticBitmap_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 1274
d55e5bfc
RD
1275#---------------------------------------------------------------------------
1276
1277class ListBox(_core.ControlWithItems):
093d3ff1 1278 """Proxy of C++ ListBox class"""
554f62e9
RD
1279 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1280 __repr__ = _swig_repr
1281 def __init__(self, *args, **kwargs):
d55e5bfc 1282 """
248ed943
RD
1283 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1284 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
d55e5bfc
RD
1285 long style=0, Validator validator=DefaultValidator,
1286 String name=ListBoxNameStr) -> ListBox
1287 """
554f62e9 1288 _controls_.ListBox_swiginit(self,_controls_.new_ListBox(*args, **kwargs))
d55e5bfc
RD
1289 self._setOORInfo(self)
1290
1291 def Create(*args, **kwargs):
1292 """
248ed943
RD
1293 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1294 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
d55e5bfc
RD
1295 long style=0, Validator validator=DefaultValidator,
1296 String name=ListBoxNameStr) -> bool
1297 """
1298 return _controls_.ListBox_Create(*args, **kwargs)
1299
1300 def Insert(*args, **kwargs):
1301 """
1302 Insert(self, String item, int pos, PyObject clientData=None)
1303
79fccf9d 1304 Insert an item into the control before the item at the ``pos`` index,
d55e5bfc
RD
1305 optionally associating some data object with the item.
1306 """
1307 return _controls_.ListBox_Insert(*args, **kwargs)
1308
1309 def InsertItems(*args, **kwargs):
50f151d7 1310 """InsertItems(self, wxArrayString items, unsigned int pos)"""
d55e5bfc
RD
1311 return _controls_.ListBox_InsertItems(*args, **kwargs)
1312
1313 def Set(*args, **kwargs):
1314 """Set(self, wxArrayString items)"""
1315 return _controls_.ListBox_Set(*args, **kwargs)
1316
1317 def IsSelected(*args, **kwargs):
1318 """IsSelected(self, int n) -> bool"""
1319 return _controls_.ListBox_IsSelected(*args, **kwargs)
1320
1321 def SetSelection(*args, **kwargs):
1322 """SetSelection(self, int n, bool select=True)"""
1323 return _controls_.ListBox_SetSelection(*args, **kwargs)
1324
1325 def Select(*args, **kwargs):
1326 """
1327 Select(self, int n)
1328
53aa7709
RD
1329 This is the same as `SetSelection` and exists only because it is
1330 slightly more natural for controls which support multiple selection.
d55e5bfc
RD
1331 """
1332 return _controls_.ListBox_Select(*args, **kwargs)
1333
1334 def Deselect(*args, **kwargs):
1335 """Deselect(self, int n)"""
1336 return _controls_.ListBox_Deselect(*args, **kwargs)
1337
1338 def DeselectAll(*args, **kwargs):
1339 """DeselectAll(self, int itemToLeaveSelected=-1)"""
1340 return _controls_.ListBox_DeselectAll(*args, **kwargs)
1341
1342 def SetStringSelection(*args, **kwargs):
1343 """SetStringSelection(self, String s, bool select=True) -> bool"""
1344 return _controls_.ListBox_SetStringSelection(*args, **kwargs)
1345
1346 def GetSelections(*args, **kwargs):
1347 """GetSelections(self) -> PyObject"""
1348 return _controls_.ListBox_GetSelections(*args, **kwargs)
1349
1350 def SetFirstItem(*args, **kwargs):
1351 """SetFirstItem(self, int n)"""
1352 return _controls_.ListBox_SetFirstItem(*args, **kwargs)
1353
1354 def SetFirstItemStr(*args, **kwargs):
1355 """SetFirstItemStr(self, String s)"""
1356 return _controls_.ListBox_SetFirstItemStr(*args, **kwargs)
1357
1358 def EnsureVisible(*args, **kwargs):
1359 """EnsureVisible(self, int n)"""
1360 return _controls_.ListBox_EnsureVisible(*args, **kwargs)
1361
1362 def AppendAndEnsureVisible(*args, **kwargs):
1363 """AppendAndEnsureVisible(self, String s)"""
1364 return _controls_.ListBox_AppendAndEnsureVisible(*args, **kwargs)
1365
1366 def IsSorted(*args, **kwargs):
1367 """IsSorted(self) -> bool"""
1368 return _controls_.ListBox_IsSorted(*args, **kwargs)
1369
554f62e9
RD
1370 def HitTest(*args, **kwargs):
1371 """
1372 HitTest(self, Point pt) -> int
1373
1374 Test where the given (in client coords) point lies
1375 """
1376 return _controls_.ListBox_HitTest(*args, **kwargs)
1377
d55e5bfc
RD
1378 def SetItemForegroundColour(*args, **kwargs):
1379 """SetItemForegroundColour(self, int item, Colour c)"""
1380 return _controls_.ListBox_SetItemForegroundColour(*args, **kwargs)
1381
1382 def SetItemBackgroundColour(*args, **kwargs):
1383 """SetItemBackgroundColour(self, int item, Colour c)"""
1384 return _controls_.ListBox_SetItemBackgroundColour(*args, **kwargs)
1385
1386 def SetItemFont(*args, **kwargs):
1387 """SetItemFont(self, int item, Font f)"""
1388 return _controls_.ListBox_SetItemFont(*args, **kwargs)
1389
1390 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
1391 """
1392 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1393
1394 Get the default attributes for this class. This is useful if you want
1395 to use the same font or colour in your own control as in a standard
1396 control -- which is a much better idea than hard coding specific
1397 colours or fonts which might look completely out of place on the
1398 user's system, especially if it uses themes.
1399
1400 The variant parameter is only relevant under Mac currently and is
1401 ignore under other platforms. Under Mac, it will change the size of
1402 the returned font. See `wx.Window.SetWindowVariant` for more about
1403 this.
1404 """
d55e5bfc
RD
1405 return _controls_.ListBox_GetClassDefaultAttributes(*args, **kwargs)
1406
1407 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
97ab0f6a 1408 Selections = property(GetSelections,doc="See `GetSelections`")
2131d850 1409_controls_.ListBox_swigregister(ListBox)
d55e5bfc
RD
1410ListBoxNameStr = cvar.ListBoxNameStr
1411
1412def PreListBox(*args, **kwargs):
1413 """PreListBox() -> ListBox"""
1414 val = _controls_.new_PreListBox(*args, **kwargs)
d55e5bfc
RD
1415 return val
1416
1417def ListBox_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 1418 """
19272049
RD
1419 ListBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1420
1421 Get the default attributes for this class. This is useful if you want
1422 to use the same font or colour in your own control as in a standard
1423 control -- which is a much better idea than hard coding specific
1424 colours or fonts which might look completely out of place on the
1425 user's system, especially if it uses themes.
1426
1427 The variant parameter is only relevant under Mac currently and is
1428 ignore under other platforms. Under Mac, it will change the size of
1429 the returned font. See `wx.Window.SetWindowVariant` for more about
1430 this.
1431 """
554f62e9 1432 return _controls_.ListBox_GetClassDefaultAttributes(*args, **kwargs)
d55e5bfc
RD
1433
1434#---------------------------------------------------------------------------
1435
1436class CheckListBox(ListBox):
093d3ff1 1437 """Proxy of C++ CheckListBox class"""
554f62e9
RD
1438 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1439 __repr__ = _swig_repr
1440 def __init__(self, *args, **kwargs):
d55e5bfc 1441 """
248ed943
RD
1442 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1443 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
d55e5bfc
RD
1444 long style=0, Validator validator=DefaultValidator,
1445 String name=ListBoxNameStr) -> CheckListBox
1446 """
554f62e9 1447 _controls_.CheckListBox_swiginit(self,_controls_.new_CheckListBox(*args, **kwargs))
d55e5bfc
RD
1448 self._setOORInfo(self)
1449
1450 def Create(*args, **kwargs):
1451 """
248ed943
RD
1452 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1453 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
d55e5bfc
RD
1454 long style=0, Validator validator=DefaultValidator,
1455 String name=ListBoxNameStr) -> bool
1456 """
1457 return _controls_.CheckListBox_Create(*args, **kwargs)
1458
1459 def IsChecked(*args, **kwargs):
50f151d7 1460 """IsChecked(self, unsigned int index) -> bool"""
d55e5bfc
RD
1461 return _controls_.CheckListBox_IsChecked(*args, **kwargs)
1462
1463 def Check(*args, **kwargs):
50f151d7 1464 """Check(self, unsigned int index, int check=True)"""
d55e5bfc
RD
1465 return _controls_.CheckListBox_Check(*args, **kwargs)
1466
1467 def GetItemHeight(*args, **kwargs):
1468 """GetItemHeight(self) -> int"""
1469 return _controls_.CheckListBox_GetItemHeight(*args, **kwargs)
1470
226118fc 1471 ItemHeight = property(GetItemHeight,doc="See `GetItemHeight`")
2131d850 1472_controls_.CheckListBox_swigregister(CheckListBox)
d55e5bfc
RD
1473
1474def PreCheckListBox(*args, **kwargs):
1475 """PreCheckListBox() -> CheckListBox"""
1476 val = _controls_.new_PreCheckListBox(*args, **kwargs)
d55e5bfc
RD
1477 return val
1478
1479#---------------------------------------------------------------------------
1480
1481TE_NO_VSCROLL = _controls_.TE_NO_VSCROLL
1482TE_AUTO_SCROLL = _controls_.TE_AUTO_SCROLL
1483TE_READONLY = _controls_.TE_READONLY
1484TE_MULTILINE = _controls_.TE_MULTILINE
1485TE_PROCESS_TAB = _controls_.TE_PROCESS_TAB
1486TE_LEFT = _controls_.TE_LEFT
1487TE_CENTER = _controls_.TE_CENTER
1488TE_RIGHT = _controls_.TE_RIGHT
1489TE_CENTRE = _controls_.TE_CENTRE
1490TE_RICH = _controls_.TE_RICH
1491TE_PROCESS_ENTER = _controls_.TE_PROCESS_ENTER
1492TE_PASSWORD = _controls_.TE_PASSWORD
1493TE_AUTO_URL = _controls_.TE_AUTO_URL
1494TE_NOHIDESEL = _controls_.TE_NOHIDESEL
1495TE_DONTWRAP = _controls_.TE_DONTWRAP
08d9e66e 1496TE_CHARWRAP = _controls_.TE_CHARWRAP
d55e5bfc 1497TE_WORDWRAP = _controls_.TE_WORDWRAP
08d9e66e 1498TE_BESTWRAP = _controls_.TE_BESTWRAP
d55e5bfc 1499TE_RICH2 = _controls_.TE_RICH2
88c6b281 1500TE_CAPITALIZE = _controls_.TE_CAPITALIZE
e9d6f3a4 1501TE_LINEWRAP = TE_CHARWRAP
d55e5bfc
RD
1502TEXT_ALIGNMENT_DEFAULT = _controls_.TEXT_ALIGNMENT_DEFAULT
1503TEXT_ALIGNMENT_LEFT = _controls_.TEXT_ALIGNMENT_LEFT
1504TEXT_ALIGNMENT_CENTRE = _controls_.TEXT_ALIGNMENT_CENTRE
1505TEXT_ALIGNMENT_CENTER = _controls_.TEXT_ALIGNMENT_CENTER
1506TEXT_ALIGNMENT_RIGHT = _controls_.TEXT_ALIGNMENT_RIGHT
1507TEXT_ALIGNMENT_JUSTIFIED = _controls_.TEXT_ALIGNMENT_JUSTIFIED
1508TEXT_ATTR_TEXT_COLOUR = _controls_.TEXT_ATTR_TEXT_COLOUR
1509TEXT_ATTR_BACKGROUND_COLOUR = _controls_.TEXT_ATTR_BACKGROUND_COLOUR
1510TEXT_ATTR_FONT_FACE = _controls_.TEXT_ATTR_FONT_FACE
1511TEXT_ATTR_FONT_SIZE = _controls_.TEXT_ATTR_FONT_SIZE
1512TEXT_ATTR_FONT_WEIGHT = _controls_.TEXT_ATTR_FONT_WEIGHT
1513TEXT_ATTR_FONT_ITALIC = _controls_.TEXT_ATTR_FONT_ITALIC
1514TEXT_ATTR_FONT_UNDERLINE = _controls_.TEXT_ATTR_FONT_UNDERLINE
1515TEXT_ATTR_FONT = _controls_.TEXT_ATTR_FONT
1516TEXT_ATTR_ALIGNMENT = _controls_.TEXT_ATTR_ALIGNMENT
1517TEXT_ATTR_LEFT_INDENT = _controls_.TEXT_ATTR_LEFT_INDENT
1518TEXT_ATTR_RIGHT_INDENT = _controls_.TEXT_ATTR_RIGHT_INDENT
1519TEXT_ATTR_TABS = _controls_.TEXT_ATTR_TABS
1520TE_HT_UNKNOWN = _controls_.TE_HT_UNKNOWN
1521TE_HT_BEFORE = _controls_.TE_HT_BEFORE
1522TE_HT_ON_TEXT = _controls_.TE_HT_ON_TEXT
1523TE_HT_BELOW = _controls_.TE_HT_BELOW
1524TE_HT_BEYOND = _controls_.TE_HT_BEYOND
fef4c27a
RD
1525OutOfRangeTextCoord = _controls_.OutOfRangeTextCoord
1526InvalidTextCoord = _controls_.InvalidTextCoord
f5263701 1527TEXT_TYPE_ANY = _controls_.TEXT_TYPE_ANY
d55e5bfc 1528class TextAttr(object):
093d3ff1 1529 """Proxy of C++ TextAttr class"""
554f62e9
RD
1530 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1531 __repr__ = _swig_repr
1532 def __init__(self, *args, **kwargs):
d55e5bfc 1533 """
908b74cd
RD
1534 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
1535 Font font=wxNullFont, int alignment=TEXT_ALIGNMENT_DEFAULT) -> TextAttr
d55e5bfc 1536 """
554f62e9
RD
1537 _controls_.TextAttr_swiginit(self,_controls_.new_TextAttr(*args, **kwargs))
1538 __swig_destroy__ = _controls_.delete_TextAttr
1539 __del__ = lambda self : None;
d55e5bfc
RD
1540 def Init(*args, **kwargs):
1541 """Init(self)"""
1542 return _controls_.TextAttr_Init(*args, **kwargs)
1543
f460c29d
RD
1544 def Merge(*args, **kwargs):
1545 """Merge(TextAttr base, TextAttr overlay) -> TextAttr"""
1546 return _controls_.TextAttr_Merge(*args, **kwargs)
1547
1548 Merge = staticmethod(Merge)
d55e5bfc
RD
1549 def SetTextColour(*args, **kwargs):
1550 """SetTextColour(self, Colour colText)"""
1551 return _controls_.TextAttr_SetTextColour(*args, **kwargs)
1552
1553 def SetBackgroundColour(*args, **kwargs):
1554 """SetBackgroundColour(self, Colour colBack)"""
1555 return _controls_.TextAttr_SetBackgroundColour(*args, **kwargs)
1556
1557 def SetFont(*args, **kwargs):
1558 """SetFont(self, Font font, long flags=TEXT_ATTR_FONT)"""
1559 return _controls_.TextAttr_SetFont(*args, **kwargs)
1560
1561 def SetAlignment(*args, **kwargs):
1562 """SetAlignment(self, int alignment)"""
1563 return _controls_.TextAttr_SetAlignment(*args, **kwargs)
1564
1565 def SetTabs(*args, **kwargs):
1566 """SetTabs(self, wxArrayInt tabs)"""
1567 return _controls_.TextAttr_SetTabs(*args, **kwargs)
1568
1569 def SetLeftIndent(*args, **kwargs):
a07a67e6 1570 """SetLeftIndent(self, int indent, int subIndent=0)"""
d55e5bfc
RD
1571 return _controls_.TextAttr_SetLeftIndent(*args, **kwargs)
1572
1573 def SetRightIndent(*args, **kwargs):
1574 """SetRightIndent(self, int indent)"""
1575 return _controls_.TextAttr_SetRightIndent(*args, **kwargs)
1576
1577 def SetFlags(*args, **kwargs):
1578 """SetFlags(self, long flags)"""
1579 return _controls_.TextAttr_SetFlags(*args, **kwargs)
1580
1581 def HasTextColour(*args, **kwargs):
1582 """HasTextColour(self) -> bool"""
1583 return _controls_.TextAttr_HasTextColour(*args, **kwargs)
1584
1585 def HasBackgroundColour(*args, **kwargs):
1586 """HasBackgroundColour(self) -> bool"""
1587 return _controls_.TextAttr_HasBackgroundColour(*args, **kwargs)
1588
1589 def HasFont(*args, **kwargs):
1590 """HasFont(self) -> bool"""
1591 return _controls_.TextAttr_HasFont(*args, **kwargs)
1592
1593 def HasAlignment(*args, **kwargs):
1594 """HasAlignment(self) -> bool"""
1595 return _controls_.TextAttr_HasAlignment(*args, **kwargs)
1596
1597 def HasTabs(*args, **kwargs):
1598 """HasTabs(self) -> bool"""
1599 return _controls_.TextAttr_HasTabs(*args, **kwargs)
1600
1601 def HasLeftIndent(*args, **kwargs):
1602 """HasLeftIndent(self) -> bool"""
1603 return _controls_.TextAttr_HasLeftIndent(*args, **kwargs)
1604
1605 def HasRightIndent(*args, **kwargs):
1606 """HasRightIndent(self) -> bool"""
1607 return _controls_.TextAttr_HasRightIndent(*args, **kwargs)
1608
1609 def HasFlag(*args, **kwargs):
1610 """HasFlag(self, long flag) -> bool"""
1611 return _controls_.TextAttr_HasFlag(*args, **kwargs)
1612
1613 def GetTextColour(*args, **kwargs):
1614 """GetTextColour(self) -> Colour"""
1615 return _controls_.TextAttr_GetTextColour(*args, **kwargs)
1616
1617 def GetBackgroundColour(*args, **kwargs):
1618 """GetBackgroundColour(self) -> Colour"""
1619 return _controls_.TextAttr_GetBackgroundColour(*args, **kwargs)
1620
1621 def GetFont(*args, **kwargs):
1622 """GetFont(self) -> Font"""
1623 return _controls_.TextAttr_GetFont(*args, **kwargs)
1624
1625 def GetAlignment(*args, **kwargs):
1626 """GetAlignment(self) -> int"""
1627 return _controls_.TextAttr_GetAlignment(*args, **kwargs)
1628
1629 def GetTabs(*args, **kwargs):
1630 """GetTabs(self) -> wxArrayInt"""
1631 return _controls_.TextAttr_GetTabs(*args, **kwargs)
1632
1633 def GetLeftIndent(*args, **kwargs):
1634 """GetLeftIndent(self) -> long"""
1635 return _controls_.TextAttr_GetLeftIndent(*args, **kwargs)
1636
a07a67e6
RD
1637 def GetLeftSubIndent(*args, **kwargs):
1638 """GetLeftSubIndent(self) -> long"""
1639 return _controls_.TextAttr_GetLeftSubIndent(*args, **kwargs)
1640
d55e5bfc
RD
1641 def GetRightIndent(*args, **kwargs):
1642 """GetRightIndent(self) -> long"""
1643 return _controls_.TextAttr_GetRightIndent(*args, **kwargs)
1644
1645 def GetFlags(*args, **kwargs):
1646 """GetFlags(self) -> long"""
1647 return _controls_.TextAttr_GetFlags(*args, **kwargs)
1648
1649 def IsDefault(*args, **kwargs):
1650 """IsDefault(self) -> bool"""
1651 return _controls_.TextAttr_IsDefault(*args, **kwargs)
1652
1653 def Combine(*args, **kwargs):
c24da6d6 1654 """Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
d55e5bfc
RD
1655 return _controls_.TextAttr_Combine(*args, **kwargs)
1656
1657 Combine = staticmethod(Combine)
994453b8
RD
1658 Alignment = property(GetAlignment,SetAlignment,doc="See `GetAlignment` and `SetAlignment`")
1659 BackgroundColour = property(GetBackgroundColour,SetBackgroundColour,doc="See `GetBackgroundColour` and `SetBackgroundColour`")
1660 Flags = property(GetFlags,SetFlags,doc="See `GetFlags` and `SetFlags`")
1661 Font = property(GetFont,SetFont,doc="See `GetFont` and `SetFont`")
1662 LeftIndent = property(GetLeftIndent,SetLeftIndent,doc="See `GetLeftIndent` and `SetLeftIndent`")
1663 LeftSubIndent = property(GetLeftSubIndent,doc="See `GetLeftSubIndent`")
1664 RightIndent = property(GetRightIndent,SetRightIndent,doc="See `GetRightIndent` and `SetRightIndent`")
1665 Tabs = property(GetTabs,SetTabs,doc="See `GetTabs` and `SetTabs`")
1666 TextColour = property(GetTextColour,SetTextColour,doc="See `GetTextColour` and `SetTextColour`")
2131d850 1667_controls_.TextAttr_swigregister(TextAttr)
d55e5bfc
RD
1668TextCtrlNameStr = cvar.TextCtrlNameStr
1669
f460c29d
RD
1670def TextAttr_Merge(*args, **kwargs):
1671 """TextAttr_Merge(TextAttr base, TextAttr overlay) -> TextAttr"""
1672 return _controls_.TextAttr_Merge(*args, **kwargs)
1673
d55e5bfc 1674def TextAttr_Combine(*args, **kwargs):
554f62e9
RD
1675 """TextAttr_Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1676 return _controls_.TextAttr_Combine(*args, **kwargs)
d55e5bfc
RD
1677
1678class TextCtrl(_core.Control):
093d3ff1 1679 """Proxy of C++ TextCtrl class"""
554f62e9
RD
1680 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1681 __repr__ = _swig_repr
1682 def __init__(self, *args, **kwargs):
d55e5bfc 1683 """
248ed943
RD
1684 __init__(self, Window parent, int id=-1, String value=EmptyString,
1685 Point pos=DefaultPosition, Size size=DefaultSize,
d55e5bfc
RD
1686 long style=0, Validator validator=DefaultValidator,
1687 String name=TextCtrlNameStr) -> TextCtrl
1688 """
554f62e9 1689 _controls_.TextCtrl_swiginit(self,_controls_.new_TextCtrl(*args, **kwargs))
d55e5bfc
RD
1690 self._setOORInfo(self)
1691
1692 def Create(*args, **kwargs):
1693 """
248ed943
RD
1694 Create(self, Window parent, int id=-1, String value=EmptyString,
1695 Point pos=DefaultPosition, Size size=DefaultSize,
d55e5bfc
RD
1696 long style=0, Validator validator=DefaultValidator,
1697 String name=TextCtrlNameStr) -> bool
1698 """
1699 return _controls_.TextCtrl_Create(*args, **kwargs)
1700
1701 def GetValue(*args, **kwargs):
1702 """GetValue(self) -> String"""
1703 return _controls_.TextCtrl_GetValue(*args, **kwargs)
1704
1705 def SetValue(*args, **kwargs):
1706 """SetValue(self, String value)"""
1707 return _controls_.TextCtrl_SetValue(*args, **kwargs)
1708
b39fe951
RD
1709 def IsEmpty(*args, **kwargs):
1710 """IsEmpty(self) -> bool"""
1711 return _controls_.TextCtrl_IsEmpty(*args, **kwargs)
1712
1713 def ChangeValue(*args, **kwargs):
1714 """ChangeValue(self, String value)"""
1715 return _controls_.TextCtrl_ChangeValue(*args, **kwargs)
1716
d55e5bfc
RD
1717 def GetRange(*args, **kwargs):
1718 """GetRange(self, long from, long to) -> String"""
1719 return _controls_.TextCtrl_GetRange(*args, **kwargs)
1720
1721 def GetLineLength(*args, **kwargs):
1722 """GetLineLength(self, long lineNo) -> int"""
1723 return _controls_.TextCtrl_GetLineLength(*args, **kwargs)
1724
1725 def GetLineText(*args, **kwargs):
1726 """GetLineText(self, long lineNo) -> String"""
1727 return _controls_.TextCtrl_GetLineText(*args, **kwargs)
1728
1729 def GetNumberOfLines(*args, **kwargs):
1730 """GetNumberOfLines(self) -> int"""
1731 return _controls_.TextCtrl_GetNumberOfLines(*args, **kwargs)
1732
1733 def IsModified(*args, **kwargs):
1734 """IsModified(self) -> bool"""
1735 return _controls_.TextCtrl_IsModified(*args, **kwargs)
1736
1737 def IsEditable(*args, **kwargs):
1738 """IsEditable(self) -> bool"""
1739 return _controls_.TextCtrl_IsEditable(*args, **kwargs)
1740
1741 def IsSingleLine(*args, **kwargs):
1742 """IsSingleLine(self) -> bool"""
1743 return _controls_.TextCtrl_IsSingleLine(*args, **kwargs)
1744
1745 def IsMultiLine(*args, **kwargs):
1746 """IsMultiLine(self) -> bool"""
1747 return _controls_.TextCtrl_IsMultiLine(*args, **kwargs)
1748
1749 def GetSelection(*args, **kwargs):
a001823c
RD
1750 """
1751 GetSelection() -> (from, to)
1752
1753 If the return values from and to are the same, there is no selection.
1754 """
d55e5bfc
RD
1755 return _controls_.TextCtrl_GetSelection(*args, **kwargs)
1756
1757 def GetStringSelection(*args, **kwargs):
1758 """GetStringSelection(self) -> String"""
1759 return _controls_.TextCtrl_GetStringSelection(*args, **kwargs)
1760
1761 def Clear(*args, **kwargs):
1762 """Clear(self)"""
1763 return _controls_.TextCtrl_Clear(*args, **kwargs)
1764
1765 def Replace(*args, **kwargs):
1766 """Replace(self, long from, long to, String value)"""
1767 return _controls_.TextCtrl_Replace(*args, **kwargs)
1768
1769 def Remove(*args, **kwargs):
1770 """Remove(self, long from, long to)"""
1771 return _controls_.TextCtrl_Remove(*args, **kwargs)
1772
1773 def LoadFile(*args, **kwargs):
f5263701 1774 """LoadFile(self, String file, int fileType=TEXT_TYPE_ANY) -> bool"""
d55e5bfc
RD
1775 return _controls_.TextCtrl_LoadFile(*args, **kwargs)
1776
1777 def SaveFile(*args, **kwargs):
f5263701 1778 """SaveFile(self, String file=EmptyString, int fileType=TEXT_TYPE_ANY) -> bool"""
d55e5bfc
RD
1779 return _controls_.TextCtrl_SaveFile(*args, **kwargs)
1780
1781 def MarkDirty(*args, **kwargs):
1782 """MarkDirty(self)"""
1783 return _controls_.TextCtrl_MarkDirty(*args, **kwargs)
1784
1785 def DiscardEdits(*args, **kwargs):
1786 """DiscardEdits(self)"""
1787 return _controls_.TextCtrl_DiscardEdits(*args, **kwargs)
1788
b02396e8
RD
1789 def SetModified(*args, **kwargs):
1790 """SetModified(self, bool modified)"""
1791 return _controls_.TextCtrl_SetModified(*args, **kwargs)
1792
d55e5bfc
RD
1793 def SetMaxLength(*args, **kwargs):
1794 """SetMaxLength(self, unsigned long len)"""
1795 return _controls_.TextCtrl_SetMaxLength(*args, **kwargs)
1796
1797 def WriteText(*args, **kwargs):
1798 """WriteText(self, String text)"""
1799 return _controls_.TextCtrl_WriteText(*args, **kwargs)
1800
1801 def AppendText(*args, **kwargs):
1802 """AppendText(self, String text)"""
1803 return _controls_.TextCtrl_AppendText(*args, **kwargs)
1804
1805 def EmulateKeyPress(*args, **kwargs):
1806 """EmulateKeyPress(self, KeyEvent event) -> bool"""
1807 return _controls_.TextCtrl_EmulateKeyPress(*args, **kwargs)
1808
1809 def SetStyle(*args, **kwargs):
1810 """SetStyle(self, long start, long end, TextAttr style) -> bool"""
1811 return _controls_.TextCtrl_SetStyle(*args, **kwargs)
1812
1813 def GetStyle(*args, **kwargs):
1814 """GetStyle(self, long position, TextAttr style) -> bool"""
1815 return _controls_.TextCtrl_GetStyle(*args, **kwargs)
1816
1817 def SetDefaultStyle(*args, **kwargs):
1818 """SetDefaultStyle(self, TextAttr style) -> bool"""
1819 return _controls_.TextCtrl_SetDefaultStyle(*args, **kwargs)
1820
1821 def GetDefaultStyle(*args, **kwargs):
1822 """GetDefaultStyle(self) -> TextAttr"""
1823 return _controls_.TextCtrl_GetDefaultStyle(*args, **kwargs)
1824
1825 def XYToPosition(*args, **kwargs):
1826 """XYToPosition(self, long x, long y) -> long"""
1827 return _controls_.TextCtrl_XYToPosition(*args, **kwargs)
1828
1829 def PositionToXY(*args, **kwargs):
1830 """PositionToXY(long pos) -> (x, y)"""
1831 return _controls_.TextCtrl_PositionToXY(*args, **kwargs)
1832
1833 def ShowPosition(*args, **kwargs):
1834 """ShowPosition(self, long pos)"""
1835 return _controls_.TextCtrl_ShowPosition(*args, **kwargs)
1836
1837 def HitTest(*args, **kwargs):
a001823c 1838 """
51b83b37 1839 HitTest(Point pt) -> (result, col, row)
a001823c 1840
4896ac9e
RD
1841 Find the row, col coresponding to the character at the point given in
1842 pixels. NB: pt is in device coords but is not adjusted for the client
1843 area origin nor scrolling.
a001823c 1844 """
d55e5bfc
RD
1845 return _controls_.TextCtrl_HitTest(*args, **kwargs)
1846
4896ac9e
RD
1847 def HitTestPos(*args, **kwargs):
1848 """
1849 HitTestPos(Point pt) -> (result, position)
1850
1851 Find the character position in the text coresponding to the point
1852 given in pixels. NB: pt is in device coords but is not adjusted for
1853 the client area origin nor scrolling.
1854 """
1855 return _controls_.TextCtrl_HitTestPos(*args, **kwargs)
1856
d55e5bfc
RD
1857 def Copy(*args, **kwargs):
1858 """Copy(self)"""
1859 return _controls_.TextCtrl_Copy(*args, **kwargs)
1860
1861 def Cut(*args, **kwargs):
1862 """Cut(self)"""
1863 return _controls_.TextCtrl_Cut(*args, **kwargs)
1864
1865 def Paste(*args, **kwargs):
1866 """Paste(self)"""
1867 return _controls_.TextCtrl_Paste(*args, **kwargs)
1868
1869 def CanCopy(*args, **kwargs):
1870 """CanCopy(self) -> bool"""
1871 return _controls_.TextCtrl_CanCopy(*args, **kwargs)
1872
1873 def CanCut(*args, **kwargs):
1874 """CanCut(self) -> bool"""
1875 return _controls_.TextCtrl_CanCut(*args, **kwargs)
1876
1877 def CanPaste(*args, **kwargs):
1878 """CanPaste(self) -> bool"""
1879 return _controls_.TextCtrl_CanPaste(*args, **kwargs)
1880
1881 def Undo(*args, **kwargs):
1882 """Undo(self)"""
1883 return _controls_.TextCtrl_Undo(*args, **kwargs)
1884
1885 def Redo(*args, **kwargs):
1886 """Redo(self)"""
1887 return _controls_.TextCtrl_Redo(*args, **kwargs)
1888
1889 def CanUndo(*args, **kwargs):
1890 """CanUndo(self) -> bool"""
1891 return _controls_.TextCtrl_CanUndo(*args, **kwargs)
1892
1893 def CanRedo(*args, **kwargs):
1894 """CanRedo(self) -> bool"""
1895 return _controls_.TextCtrl_CanRedo(*args, **kwargs)
1896
1897 def SetInsertionPoint(*args, **kwargs):
1898 """SetInsertionPoint(self, long pos)"""
1899 return _controls_.TextCtrl_SetInsertionPoint(*args, **kwargs)
1900
1901 def SetInsertionPointEnd(*args, **kwargs):
1902 """SetInsertionPointEnd(self)"""
1903 return _controls_.TextCtrl_SetInsertionPointEnd(*args, **kwargs)
1904
1905 def GetInsertionPoint(*args, **kwargs):
1906 """GetInsertionPoint(self) -> long"""
1907 return _controls_.TextCtrl_GetInsertionPoint(*args, **kwargs)
1908
1909 def GetLastPosition(*args, **kwargs):
1910 """GetLastPosition(self) -> long"""
1911 return _controls_.TextCtrl_GetLastPosition(*args, **kwargs)
1912
1913 def SetSelection(*args, **kwargs):
1914 """SetSelection(self, long from, long to)"""
1915 return _controls_.TextCtrl_SetSelection(*args, **kwargs)
1916
1917 def SelectAll(*args, **kwargs):
1918 """SelectAll(self)"""
1919 return _controls_.TextCtrl_SelectAll(*args, **kwargs)
1920
1921 def SetEditable(*args, **kwargs):
1922 """SetEditable(self, bool editable)"""
1923 return _controls_.TextCtrl_SetEditable(*args, **kwargs)
1924
d7645bfd
VZ
1925 def MacCheckSpelling(*args, **kwargs):
1926 """MacCheckSpelling(self, bool check)"""
1927 return _controls_.TextCtrl_MacCheckSpelling(*args, **kwargs)
1928
b39fe951
RD
1929 def SendTextUpdatedEvent(*args, **kwargs):
1930 """SendTextUpdatedEvent(self)"""
1931 return _controls_.TextCtrl_SendTextUpdatedEvent(*args, **kwargs)
1932
d55e5bfc
RD
1933 def ShowNativeCaret(*args, **kwargs):
1934 """ShowNativeCaret(self, bool show=True) -> bool"""
1935 return _controls_.TextCtrl_ShowNativeCaret(*args, **kwargs)
1936
1937 def HideNativeCaret(*args, **kwargs):
1938 """HideNativeCaret(self) -> bool"""
1939 return _controls_.TextCtrl_HideNativeCaret(*args, **kwargs)
1940
1941 def write(*args, **kwargs):
1942 """write(self, String text)"""
1943 return _controls_.TextCtrl_write(*args, **kwargs)
1944
1945 def GetString(*args, **kwargs):
1946 """GetString(self, long from, long to) -> String"""
1947 return _controls_.TextCtrl_GetString(*args, **kwargs)
1948
f20a2e1f 1949 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
1950 """
1951 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1952
1953 Get the default attributes for this class. This is useful if you want
1954 to use the same font or colour in your own control as in a standard
1955 control -- which is a much better idea than hard coding specific
1956 colours or fonts which might look completely out of place on the
1957 user's system, especially if it uses themes.
1958
1959 The variant parameter is only relevant under Mac currently and is
1960 ignore under other platforms. Under Mac, it will change the size of
1961 the returned font. See `wx.Window.SetWindowVariant` for more about
1962 this.
1963 """
f20a2e1f
RD
1964 return _controls_.TextCtrl_GetClassDefaultAttributes(*args, **kwargs)
1965
1966 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
994453b8
RD
1967 DefaultStyle = property(GetDefaultStyle,SetDefaultStyle,doc="See `GetDefaultStyle` and `SetDefaultStyle`")
1968 InsertionPoint = property(GetInsertionPoint,SetInsertionPoint,doc="See `GetInsertionPoint` and `SetInsertionPoint`")
1969 LastPosition = property(GetLastPosition,doc="See `GetLastPosition`")
1970 NumberOfLines = property(GetNumberOfLines,doc="See `GetNumberOfLines`")
1971 Selection = property(GetSelection,SetSelection,doc="See `GetSelection` and `SetSelection`")
1972 StringSelection = property(GetStringSelection,doc="See `GetStringSelection`")
1973 Value = property(GetValue,SetValue,doc="See `GetValue` and `SetValue`")
2131d850 1974_controls_.TextCtrl_swigregister(TextCtrl)
d55e5bfc
RD
1975
1976def PreTextCtrl(*args, **kwargs):
1977 """PreTextCtrl() -> TextCtrl"""
1978 val = _controls_.new_PreTextCtrl(*args, **kwargs)
d55e5bfc
RD
1979 return val
1980
f20a2e1f 1981def TextCtrl_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 1982 """
19272049
RD
1983 TextCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1984
1985 Get the default attributes for this class. This is useful if you want
1986 to use the same font or colour in your own control as in a standard
1987 control -- which is a much better idea than hard coding specific
1988 colours or fonts which might look completely out of place on the
1989 user's system, especially if it uses themes.
1990
1991 The variant parameter is only relevant under Mac currently and is
1992 ignore under other platforms. Under Mac, it will change the size of
1993 the returned font. See `wx.Window.SetWindowVariant` for more about
1994 this.
1995 """
554f62e9 1996 return _controls_.TextCtrl_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 1997
d55e5bfc
RD
1998wxEVT_COMMAND_TEXT_UPDATED = _controls_.wxEVT_COMMAND_TEXT_UPDATED
1999wxEVT_COMMAND_TEXT_ENTER = _controls_.wxEVT_COMMAND_TEXT_ENTER
2000wxEVT_COMMAND_TEXT_URL = _controls_.wxEVT_COMMAND_TEXT_URL
2001wxEVT_COMMAND_TEXT_MAXLEN = _controls_.wxEVT_COMMAND_TEXT_MAXLEN
2002class TextUrlEvent(_core.CommandEvent):
093d3ff1 2003 """Proxy of C++ TextUrlEvent class"""
554f62e9
RD
2004 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2005 __repr__ = _swig_repr
2006 def __init__(self, *args, **kwargs):
d55e5bfc 2007 """__init__(self, int winid, MouseEvent evtMouse, long start, long end) -> TextUrlEvent"""
554f62e9 2008 _controls_.TextUrlEvent_swiginit(self,_controls_.new_TextUrlEvent(*args, **kwargs))
d55e5bfc
RD
2009 def GetMouseEvent(*args, **kwargs):
2010 """GetMouseEvent(self) -> MouseEvent"""
2011 return _controls_.TextUrlEvent_GetMouseEvent(*args, **kwargs)
2012
2013 def GetURLStart(*args, **kwargs):
2014 """GetURLStart(self) -> long"""
2015 return _controls_.TextUrlEvent_GetURLStart(*args, **kwargs)
2016
2017 def GetURLEnd(*args, **kwargs):
2018 """GetURLEnd(self) -> long"""
2019 return _controls_.TextUrlEvent_GetURLEnd(*args, **kwargs)
2020
994453b8
RD
2021 MouseEvent = property(GetMouseEvent,doc="See `GetMouseEvent`")
2022 URLEnd = property(GetURLEnd,doc="See `GetURLEnd`")
2023 URLStart = property(GetURLStart,doc="See `GetURLStart`")
2131d850 2024_controls_.TextUrlEvent_swigregister(TextUrlEvent)
d55e5bfc
RD
2025
2026EVT_TEXT = wx.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED, 1)
2027EVT_TEXT_ENTER = wx.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER, 1)
2028EVT_TEXT_URL = wx.PyEventBinder( wxEVT_COMMAND_TEXT_URL, 1)
2029EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
2030
2031#---------------------------------------------------------------------------
2032
2033class ScrollBar(_core.Control):
093d3ff1 2034 """Proxy of C++ ScrollBar class"""
554f62e9
RD
2035 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2036 __repr__ = _swig_repr
2037 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2038 """
2039 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2040 Size size=DefaultSize, long style=SB_HORIZONTAL,
2041 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> ScrollBar
2042 """
554f62e9 2043 _controls_.ScrollBar_swiginit(self,_controls_.new_ScrollBar(*args, **kwargs))
d55e5bfc
RD
2044 self._setOORInfo(self)
2045
2046 def Create(*args, **kwargs):
2047 """
2048 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2049 Size size=DefaultSize, long style=SB_HORIZONTAL,
2050 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> bool
2051
2052 Do the 2nd phase and create the GUI control.
2053 """
2054 return _controls_.ScrollBar_Create(*args, **kwargs)
2055
2056 def GetThumbPosition(*args, **kwargs):
2057 """GetThumbPosition(self) -> int"""
2058 return _controls_.ScrollBar_GetThumbPosition(*args, **kwargs)
2059
2060 def GetThumbSize(*args, **kwargs):
2061 """GetThumbSize(self) -> int"""
2062 return _controls_.ScrollBar_GetThumbSize(*args, **kwargs)
2063
2064 GetThumbLength = GetThumbSize
2065 def GetPageSize(*args, **kwargs):
2066 """GetPageSize(self) -> int"""
2067 return _controls_.ScrollBar_GetPageSize(*args, **kwargs)
2068
2069 def GetRange(*args, **kwargs):
2070 """GetRange(self) -> int"""
2071 return _controls_.ScrollBar_GetRange(*args, **kwargs)
2072
2073 def IsVertical(*args, **kwargs):
2074 """IsVertical(self) -> bool"""
2075 return _controls_.ScrollBar_IsVertical(*args, **kwargs)
2076
2077 def SetThumbPosition(*args, **kwargs):
2078 """SetThumbPosition(self, int viewStart)"""
2079 return _controls_.ScrollBar_SetThumbPosition(*args, **kwargs)
2080
f20a2e1f 2081 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
2082 """
2083 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2084
2085 Get the default attributes for this class. This is useful if you want
2086 to use the same font or colour in your own control as in a standard
2087 control -- which is a much better idea than hard coding specific
2088 colours or fonts which might look completely out of place on the
2089 user's system, especially if it uses themes.
2090
2091 The variant parameter is only relevant under Mac currently and is
2092 ignore under other platforms. Under Mac, it will change the size of
2093 the returned font. See `wx.Window.SetWindowVariant` for more about
2094 this.
2095 """
f20a2e1f
RD
2096 return _controls_.ScrollBar_GetClassDefaultAttributes(*args, **kwargs)
2097
2098 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
33d6fd3b
RD
2099 PageSize = property(GetPageSize,doc="See `GetPageSize`")
2100 Range = property(GetRange,doc="See `GetRange`")
2101 ThumbPosition = property(GetThumbPosition,SetThumbPosition,doc="See `GetThumbPosition` and `SetThumbPosition`")
2102 ThumbSize = property(GetThumbSize,doc="See `GetThumbSize`")
2131d850 2103_controls_.ScrollBar_swigregister(ScrollBar)
d55e5bfc
RD
2104ScrollBarNameStr = cvar.ScrollBarNameStr
2105
2106def PreScrollBar(*args, **kwargs):
2107 """PreScrollBar() -> ScrollBar"""
2108 val = _controls_.new_PreScrollBar(*args, **kwargs)
d55e5bfc
RD
2109 return val
2110
f20a2e1f 2111def ScrollBar_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 2112 """
19272049
RD
2113 ScrollBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2114
2115 Get the default attributes for this class. This is useful if you want
2116 to use the same font or colour in your own control as in a standard
2117 control -- which is a much better idea than hard coding specific
2118 colours or fonts which might look completely out of place on the
2119 user's system, especially if it uses themes.
2120
2121 The variant parameter is only relevant under Mac currently and is
2122 ignore under other platforms. Under Mac, it will change the size of
2123 the returned font. See `wx.Window.SetWindowVariant` for more about
2124 this.
2125 """
554f62e9 2126 return _controls_.ScrollBar_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 2127
d55e5bfc
RD
2128#---------------------------------------------------------------------------
2129
2130SP_HORIZONTAL = _controls_.SP_HORIZONTAL
2131SP_VERTICAL = _controls_.SP_VERTICAL
2132SP_ARROW_KEYS = _controls_.SP_ARROW_KEYS
2133SP_WRAP = _controls_.SP_WRAP
2134class SpinButton(_core.Control):
093d3ff1 2135 """Proxy of C++ SpinButton class"""
554f62e9
RD
2136 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2137 __repr__ = _swig_repr
2138 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2139 """
2140 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2141 Size size=DefaultSize, long style=SP_HORIZONTAL,
2142 String name=SPIN_BUTTON_NAME) -> SpinButton
2143 """
554f62e9 2144 _controls_.SpinButton_swiginit(self,_controls_.new_SpinButton(*args, **kwargs))
d55e5bfc
RD
2145 self._setOORInfo(self)
2146
2147 def Create(*args, **kwargs):
2148 """
2149 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2150 Size size=DefaultSize, long style=SP_HORIZONTAL,
2151 String name=SPIN_BUTTON_NAME) -> bool
2152 """
2153 return _controls_.SpinButton_Create(*args, **kwargs)
2154
2155 def GetValue(*args, **kwargs):
2156 """GetValue(self) -> int"""
2157 return _controls_.SpinButton_GetValue(*args, **kwargs)
2158
2159 def GetMin(*args, **kwargs):
2160 """GetMin(self) -> int"""
2161 return _controls_.SpinButton_GetMin(*args, **kwargs)
2162
2163 def GetMax(*args, **kwargs):
2164 """GetMax(self) -> int"""
2165 return _controls_.SpinButton_GetMax(*args, **kwargs)
2166
2167 def SetValue(*args, **kwargs):
2168 """SetValue(self, int val)"""
2169 return _controls_.SpinButton_SetValue(*args, **kwargs)
2170
2171 def SetMin(*args, **kwargs):
2172 """SetMin(self, int minVal)"""
2173 return _controls_.SpinButton_SetMin(*args, **kwargs)
2174
2175 def SetMax(*args, **kwargs):
2176 """SetMax(self, int maxVal)"""
2177 return _controls_.SpinButton_SetMax(*args, **kwargs)
2178
2179 def SetRange(*args, **kwargs):
2180 """SetRange(self, int minVal, int maxVal)"""
2181 return _controls_.SpinButton_SetRange(*args, **kwargs)
2182
f20a2e1f
RD
2183 def IsVertical(*args, **kwargs):
2184 """IsVertical(self) -> bool"""
2185 return _controls_.SpinButton_IsVertical(*args, **kwargs)
2186
2187 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
2188 """
2189 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2190
2191 Get the default attributes for this class. This is useful if you want
2192 to use the same font or colour in your own control as in a standard
2193 control -- which is a much better idea than hard coding specific
2194 colours or fonts which might look completely out of place on the
2195 user's system, especially if it uses themes.
2196
2197 The variant parameter is only relevant under Mac currently and is
2198 ignore under other platforms. Under Mac, it will change the size of
2199 the returned font. See `wx.Window.SetWindowVariant` for more about
2200 this.
2201 """
f20a2e1f 2202 return _controls_.SpinButton_GetClassDefaultAttributes(*args, **kwargs)
d55e5bfc 2203
f20a2e1f 2204 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
33d6fd3b
RD
2205 Max = property(GetMax,SetMax,doc="See `GetMax` and `SetMax`")
2206 Min = property(GetMin,SetMin,doc="See `GetMin` and `SetMin`")
2207 Value = property(GetValue,SetValue,doc="See `GetValue` and `SetValue`")
2131d850 2208_controls_.SpinButton_swigregister(SpinButton)
d55e5bfc
RD
2209SPIN_BUTTON_NAME = cvar.SPIN_BUTTON_NAME
2210SpinCtrlNameStr = cvar.SpinCtrlNameStr
2211
2212def PreSpinButton(*args, **kwargs):
2213 """PreSpinButton() -> SpinButton"""
2214 val = _controls_.new_PreSpinButton(*args, **kwargs)
d55e5bfc
RD
2215 return val
2216
f20a2e1f 2217def SpinButton_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 2218 """
19272049
RD
2219 SpinButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2220
2221 Get the default attributes for this class. This is useful if you want
2222 to use the same font or colour in your own control as in a standard
2223 control -- which is a much better idea than hard coding specific
2224 colours or fonts which might look completely out of place on the
2225 user's system, especially if it uses themes.
2226
2227 The variant parameter is only relevant under Mac currently and is
2228 ignore under other platforms. Under Mac, it will change the size of
2229 the returned font. See `wx.Window.SetWindowVariant` for more about
2230 this.
2231 """
554f62e9 2232 return _controls_.SpinButton_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 2233
d55e5bfc 2234class SpinCtrl(_core.Control):
093d3ff1 2235 """Proxy of C++ SpinCtrl class"""
554f62e9
RD
2236 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2237 __repr__ = _swig_repr
2238 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2239 """
2240 __init__(self, Window parent, int id=-1, String value=EmptyString,
2241 Point pos=DefaultPosition, Size size=DefaultSize,
2242 long style=SP_ARROW_KEYS, int min=0, int max=100,
2243 int initial=0, String name=SpinCtrlNameStr) -> SpinCtrl
2244 """
554f62e9 2245 _controls_.SpinCtrl_swiginit(self,_controls_.new_SpinCtrl(*args, **kwargs))
d55e5bfc
RD
2246 self._setOORInfo(self)
2247
2248 def Create(*args, **kwargs):
2249 """
2250 Create(self, Window parent, int id=-1, String value=EmptyString,
2251 Point pos=DefaultPosition, Size size=DefaultSize,
2252 long style=SP_ARROW_KEYS, int min=0, int max=100,
2253 int initial=0, String name=SpinCtrlNameStr) -> bool
2254 """
2255 return _controls_.SpinCtrl_Create(*args, **kwargs)
2256
2257 def GetValue(*args, **kwargs):
2258 """GetValue(self) -> int"""
2259 return _controls_.SpinCtrl_GetValue(*args, **kwargs)
2260
2261 def SetValue(*args, **kwargs):
2262 """SetValue(self, int value)"""
2263 return _controls_.SpinCtrl_SetValue(*args, **kwargs)
2264
2265 def SetValueString(*args, **kwargs):
2266 """SetValueString(self, String text)"""
2267 return _controls_.SpinCtrl_SetValueString(*args, **kwargs)
2268
2269 def SetRange(*args, **kwargs):
2270 """SetRange(self, int minVal, int maxVal)"""
2271 return _controls_.SpinCtrl_SetRange(*args, **kwargs)
2272
2273 def GetMin(*args, **kwargs):
2274 """GetMin(self) -> int"""
2275 return _controls_.SpinCtrl_GetMin(*args, **kwargs)
2276
2277 def GetMax(*args, **kwargs):
2278 """GetMax(self) -> int"""
2279 return _controls_.SpinCtrl_GetMax(*args, **kwargs)
2280
2281 def SetSelection(*args, **kwargs):
2282 """SetSelection(self, long from, long to)"""
2283 return _controls_.SpinCtrl_SetSelection(*args, **kwargs)
2284
f20a2e1f 2285 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
2286 """
2287 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2288
2289 Get the default attributes for this class. This is useful if you want
2290 to use the same font or colour in your own control as in a standard
2291 control -- which is a much better idea than hard coding specific
2292 colours or fonts which might look completely out of place on the
2293 user's system, especially if it uses themes.
2294
2295 The variant parameter is only relevant under Mac currently and is
2296 ignore under other platforms. Under Mac, it will change the size of
2297 the returned font. See `wx.Window.SetWindowVariant` for more about
2298 this.
2299 """
f20a2e1f
RD
2300 return _controls_.SpinCtrl_GetClassDefaultAttributes(*args, **kwargs)
2301
2302 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
33d6fd3b
RD
2303 Max = property(GetMax,doc="See `GetMax`")
2304 Min = property(GetMin,doc="See `GetMin`")
2305 Value = property(GetValue,SetValue,doc="See `GetValue` and `SetValue`")
2131d850 2306_controls_.SpinCtrl_swigregister(SpinCtrl)
d55e5bfc
RD
2307
2308def PreSpinCtrl(*args, **kwargs):
2309 """PreSpinCtrl() -> SpinCtrl"""
2310 val = _controls_.new_PreSpinCtrl(*args, **kwargs)
d55e5bfc
RD
2311 return val
2312
f20a2e1f 2313def SpinCtrl_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 2314 """
19272049
RD
2315 SpinCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2316
2317 Get the default attributes for this class. This is useful if you want
2318 to use the same font or colour in your own control as in a standard
2319 control -- which is a much better idea than hard coding specific
2320 colours or fonts which might look completely out of place on the
2321 user's system, especially if it uses themes.
2322
2323 The variant parameter is only relevant under Mac currently and is
2324 ignore under other platforms. Under Mac, it will change the size of
2325 the returned font. See `wx.Window.SetWindowVariant` for more about
2326 this.
2327 """
554f62e9 2328 return _controls_.SpinCtrl_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 2329
d55e5bfc 2330class SpinEvent(_core.NotifyEvent):
093d3ff1 2331 """Proxy of C++ SpinEvent class"""
554f62e9
RD
2332 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2333 __repr__ = _swig_repr
2334 def __init__(self, *args, **kwargs):
f460c29d 2335 """__init__(self, EventType commandType=wxEVT_NULL, int winid=0) -> SpinEvent"""
554f62e9 2336 _controls_.SpinEvent_swiginit(self,_controls_.new_SpinEvent(*args, **kwargs))
d55e5bfc
RD
2337 def GetPosition(*args, **kwargs):
2338 """GetPosition(self) -> int"""
2339 return _controls_.SpinEvent_GetPosition(*args, **kwargs)
2340
2341 def SetPosition(*args, **kwargs):
2342 """SetPosition(self, int pos)"""
2343 return _controls_.SpinEvent_SetPosition(*args, **kwargs)
2344
33d6fd3b 2345 Position = property(GetPosition,SetPosition,doc="See `GetPosition` and `SetPosition`")
2131d850 2346_controls_.SpinEvent_swigregister(SpinEvent)
d55e5bfc
RD
2347
2348wxEVT_COMMAND_SPINCTRL_UPDATED = _controls_.wxEVT_COMMAND_SPINCTRL_UPDATED
2349EVT_SPIN_UP = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEUP, 1)
2350EVT_SPIN_DOWN = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEDOWN, 1)
2351EVT_SPIN = wx.PyEventBinder( wx.wxEVT_SCROLL_THUMBTRACK, 1)
2352EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
2353
2354#---------------------------------------------------------------------------
2355
2356class RadioBox(_core.Control):
093d3ff1 2357 """Proxy of C++ RadioBox class"""
554f62e9
RD
2358 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2359 __repr__ = _swig_repr
2360 def __init__(self, *args, **kwargs):
d55e5bfc 2361 """
248ed943
RD
2362 __init__(self, Window parent, int id=-1, String label=EmptyString,
2363 Point pos=DefaultPosition, Size size=DefaultSize,
2364 wxArrayString choices=wxPyEmptyStringArray,
2365 int majorDimension=0, long style=RA_HORIZONTAL,
2366 Validator validator=DefaultValidator,
d55e5bfc
RD
2367 String name=RadioBoxNameStr) -> RadioBox
2368 """
2369 if kwargs.has_key('point'): kwargs['pos'] = kwargs['point'];del kwargs['point']
554f62e9 2370 _controls_.RadioBox_swiginit(self,_controls_.new_RadioBox(*args, **kwargs))
d55e5bfc
RD
2371 self._setOORInfo(self)
2372
2373 def Create(*args, **kwargs):
2374 """
248ed943
RD
2375 Create(self, Window parent, int id=-1, String label=EmptyString,
2376 Point pos=DefaultPosition, Size size=DefaultSize,
2377 wxArrayString choices=wxPyEmptyStringArray,
2378 int majorDimension=0, long style=RA_HORIZONTAL,
2379 Validator validator=DefaultValidator,
d55e5bfc
RD
2380 String name=RadioBoxNameStr) -> bool
2381 """
2382 return _controls_.RadioBox_Create(*args, **kwargs)
2383
2384 def SetSelection(*args, **kwargs):
2385 """SetSelection(self, int n)"""
2386 return _controls_.RadioBox_SetSelection(*args, **kwargs)
2387
2388 def GetSelection(*args, **kwargs):
2389 """GetSelection(self) -> int"""
2390 return _controls_.RadioBox_GetSelection(*args, **kwargs)
2391
2392 def GetStringSelection(*args, **kwargs):
2393 """GetStringSelection(self) -> String"""
2394 return _controls_.RadioBox_GetStringSelection(*args, **kwargs)
2395
2396 def SetStringSelection(*args, **kwargs):
2397 """SetStringSelection(self, String s) -> bool"""
2398 return _controls_.RadioBox_SetStringSelection(*args, **kwargs)
2399
2400 def GetCount(*args, **kwargs):
1c71765a 2401 """GetCount(self) -> size_t"""
d55e5bfc
RD
2402 return _controls_.RadioBox_GetCount(*args, **kwargs)
2403
2404 def FindString(*args, **kwargs):
2405 """FindString(self, String s) -> int"""
2406 return _controls_.RadioBox_FindString(*args, **kwargs)
2407
2408 def GetString(*args, **kwargs):
2409 """GetString(self, int n) -> String"""
2410 return _controls_.RadioBox_GetString(*args, **kwargs)
2411
2412 def SetString(*args, **kwargs):
2413 """SetString(self, int n, String label)"""
2414 return _controls_.RadioBox_SetString(*args, **kwargs)
2415
2416 GetItemLabel = GetString
2417 SetItemLabel = SetString
2418 def EnableItem(*args, **kwargs):
50f151d7 2419 """EnableItem(self, unsigned int n, bool enable=True)"""
d55e5bfc
RD
2420 return _controls_.RadioBox_EnableItem(*args, **kwargs)
2421
2422 def ShowItem(*args, **kwargs):
50f151d7 2423 """ShowItem(self, unsigned int n, bool show=True)"""
d55e5bfc
RD
2424 return _controls_.RadioBox_ShowItem(*args, **kwargs)
2425
50f151d7
RD
2426 def IsItemEnabled(*args, **kwargs):
2427 """IsItemEnabled(self, unsigned int n) -> bool"""
2428 return _controls_.RadioBox_IsItemEnabled(*args, **kwargs)
2429
2430 def IsItemShown(*args, **kwargs):
2431 """IsItemShown(self, unsigned int n) -> bool"""
2432 return _controls_.RadioBox_IsItemShown(*args, **kwargs)
2433
d55e5bfc 2434 def GetColumnCount(*args, **kwargs):
50f151d7 2435 """GetColumnCount(self) -> unsigned int"""
d55e5bfc
RD
2436 return _controls_.RadioBox_GetColumnCount(*args, **kwargs)
2437
2438 def GetRowCount(*args, **kwargs):
50f151d7 2439 """GetRowCount(self) -> unsigned int"""
d55e5bfc
RD
2440 return _controls_.RadioBox_GetRowCount(*args, **kwargs)
2441
2442 def GetNextItem(*args, **kwargs):
2443 """GetNextItem(self, int item, int dir, long style) -> int"""
2444 return _controls_.RadioBox_GetNextItem(*args, **kwargs)
2445
f460c29d
RD
2446 def SetItemToolTip(*args, **kwargs):
2447 """SetItemToolTip(self, unsigned int item, String text)"""
2448 return _controls_.RadioBox_SetItemToolTip(*args, **kwargs)
2449
2450 def GetItemToolTip(*args, **kwargs):
2451 """GetItemToolTip(self, unsigned int item) -> ToolTip"""
2452 return _controls_.RadioBox_GetItemToolTip(*args, **kwargs)
2453
b850e7f3
RD
2454 def SetItemHelpText(*args, **kwargs):
2455 """SetItemHelpText(self, unsigned int n, String helpText)"""
2456 return _controls_.RadioBox_SetItemHelpText(*args, **kwargs)
2457
2458 def GetItemHelpText(*args, **kwargs):
2459 """GetItemHelpText(self, unsigned int n) -> String"""
2460 return _controls_.RadioBox_GetItemHelpText(*args, **kwargs)
2461
f20a2e1f 2462 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
2463 """
2464 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2465
2466 Get the default attributes for this class. This is useful if you want
2467 to use the same font or colour in your own control as in a standard
2468 control -- which is a much better idea than hard coding specific
2469 colours or fonts which might look completely out of place on the
2470 user's system, especially if it uses themes.
2471
2472 The variant parameter is only relevant under Mac currently and is
2473 ignore under other platforms. Under Mac, it will change the size of
2474 the returned font. See `wx.Window.SetWindowVariant` for more about
2475 this.
2476 """
f20a2e1f
RD
2477 return _controls_.RadioBox_GetClassDefaultAttributes(*args, **kwargs)
2478
2479 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
33d6fd3b
RD
2480 ColumnCount = property(GetColumnCount,doc="See `GetColumnCount`")
2481 Count = property(GetCount,doc="See `GetCount`")
2482 RowCount = property(GetRowCount,doc="See `GetRowCount`")
2483 Selection = property(GetSelection,SetSelection,doc="See `GetSelection` and `SetSelection`")
2484 StringSelection = property(GetStringSelection,SetStringSelection,doc="See `GetStringSelection` and `SetStringSelection`")
2131d850 2485_controls_.RadioBox_swigregister(RadioBox)
d55e5bfc
RD
2486RadioBoxNameStr = cvar.RadioBoxNameStr
2487RadioButtonNameStr = cvar.RadioButtonNameStr
2488
2489def PreRadioBox(*args, **kwargs):
2490 """PreRadioBox() -> RadioBox"""
2491 val = _controls_.new_PreRadioBox(*args, **kwargs)
d55e5bfc
RD
2492 return val
2493
f20a2e1f 2494def RadioBox_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 2495 """
19272049
RD
2496 RadioBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2497
2498 Get the default attributes for this class. This is useful if you want
2499 to use the same font or colour in your own control as in a standard
2500 control -- which is a much better idea than hard coding specific
2501 colours or fonts which might look completely out of place on the
2502 user's system, especially if it uses themes.
2503
2504 The variant parameter is only relevant under Mac currently and is
2505 ignore under other platforms. Under Mac, it will change the size of
2506 the returned font. See `wx.Window.SetWindowVariant` for more about
2507 this.
2508 """
554f62e9 2509 return _controls_.RadioBox_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 2510
d55e5bfc
RD
2511#---------------------------------------------------------------------------
2512
2513class RadioButton(_core.Control):
093d3ff1 2514 """Proxy of C++ RadioButton class"""
554f62e9
RD
2515 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2516 __repr__ = _swig_repr
2517 def __init__(self, *args, **kwargs):
d55e5bfc 2518 """
248ed943
RD
2519 __init__(self, Window parent, int id=-1, String label=EmptyString,
2520 Point pos=DefaultPosition, Size size=DefaultSize,
2521 long style=0, Validator validator=DefaultValidator,
2522 String name=RadioButtonNameStr) -> RadioButton
d55e5bfc 2523 """
554f62e9 2524 _controls_.RadioButton_swiginit(self,_controls_.new_RadioButton(*args, **kwargs))
d55e5bfc
RD
2525 self._setOORInfo(self)
2526
2527 def Create(*args, **kwargs):
2528 """
248ed943
RD
2529 Create(self, Window parent, int id=-1, String label=EmptyString,
2530 Point pos=DefaultPosition, Size size=DefaultSize,
2531 long style=0, Validator validator=DefaultValidator,
2532 String name=RadioButtonNameStr) -> bool
d55e5bfc
RD
2533 """
2534 return _controls_.RadioButton_Create(*args, **kwargs)
2535
2536 def GetValue(*args, **kwargs):
2537 """GetValue(self) -> bool"""
2538 return _controls_.RadioButton_GetValue(*args, **kwargs)
2539
2540 def SetValue(*args, **kwargs):
2541 """SetValue(self, bool value)"""
2542 return _controls_.RadioButton_SetValue(*args, **kwargs)
2543
f20a2e1f 2544 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
2545 """
2546 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2547
2548 Get the default attributes for this class. This is useful if you want
2549 to use the same font or colour in your own control as in a standard
2550 control -- which is a much better idea than hard coding specific
2551 colours or fonts which might look completely out of place on the
2552 user's system, especially if it uses themes.
2553
2554 The variant parameter is only relevant under Mac currently and is
2555 ignore under other platforms. Under Mac, it will change the size of
2556 the returned font. See `wx.Window.SetWindowVariant` for more about
2557 this.
2558 """
f20a2e1f
RD
2559 return _controls_.RadioButton_GetClassDefaultAttributes(*args, **kwargs)
2560
2561 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
33d6fd3b 2562 Value = property(GetValue,SetValue,doc="See `GetValue` and `SetValue`")
2131d850 2563_controls_.RadioButton_swigregister(RadioButton)
d55e5bfc
RD
2564
2565def PreRadioButton(*args, **kwargs):
2566 """PreRadioButton() -> RadioButton"""
2567 val = _controls_.new_PreRadioButton(*args, **kwargs)
d55e5bfc
RD
2568 return val
2569
f20a2e1f 2570def RadioButton_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 2571 """
19272049
RD
2572 RadioButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2573
2574 Get the default attributes for this class. This is useful if you want
2575 to use the same font or colour in your own control as in a standard
2576 control -- which is a much better idea than hard coding specific
2577 colours or fonts which might look completely out of place on the
2578 user's system, especially if it uses themes.
2579
2580 The variant parameter is only relevant under Mac currently and is
2581 ignore under other platforms. Under Mac, it will change the size of
2582 the returned font. See `wx.Window.SetWindowVariant` for more about
2583 this.
2584 """
554f62e9 2585 return _controls_.RadioButton_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 2586
d55e5bfc
RD
2587#---------------------------------------------------------------------------
2588
fef4c27a
RD
2589SL_HORIZONTAL = _controls_.SL_HORIZONTAL
2590SL_VERTICAL = _controls_.SL_VERTICAL
70b7a5fe 2591SL_TICKS = _controls_.SL_TICKS
fef4c27a
RD
2592SL_AUTOTICKS = _controls_.SL_AUTOTICKS
2593SL_LABELS = _controls_.SL_LABELS
2594SL_LEFT = _controls_.SL_LEFT
2595SL_TOP = _controls_.SL_TOP
2596SL_RIGHT = _controls_.SL_RIGHT
2597SL_BOTTOM = _controls_.SL_BOTTOM
2598SL_BOTH = _controls_.SL_BOTH
2599SL_SELRANGE = _controls_.SL_SELRANGE
2600SL_INVERSE = _controls_.SL_INVERSE
d55e5bfc 2601class Slider(_core.Control):
093d3ff1 2602 """Proxy of C++ Slider class"""
554f62e9
RD
2603 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2604 __repr__ = _swig_repr
2605 def __init__(self, *args, **kwargs):
d55e5bfc 2606 """
248ed943
RD
2607 __init__(self, Window parent, int id=-1, int value=0, int minValue=0,
2608 int maxValue=100, Point pos=DefaultPosition,
2609 Size size=DefaultSize, long style=SL_HORIZONTAL,
2610 Validator validator=DefaultValidator,
d55e5bfc
RD
2611 String name=SliderNameStr) -> Slider
2612 """
2613 if kwargs.has_key('point'): kwargs['pos'] = kwargs['point'];del kwargs['point']
554f62e9 2614 _controls_.Slider_swiginit(self,_controls_.new_Slider(*args, **kwargs))
d55e5bfc
RD
2615 self._setOORInfo(self)
2616
2617 def Create(*args, **kwargs):
2618 """
248ed943
RD
2619 Create(self, Window parent, int id=-1, int value=0, int minValue=0,
2620 int maxValue=100, Point pos=DefaultPosition,
2621 Size size=DefaultSize, long style=SL_HORIZONTAL,
2622 Validator validator=DefaultValidator,
d55e5bfc
RD
2623 String name=SliderNameStr) -> bool
2624 """
2625 return _controls_.Slider_Create(*args, **kwargs)
2626
2627 def GetValue(*args, **kwargs):
2628 """GetValue(self) -> int"""
2629 return _controls_.Slider_GetValue(*args, **kwargs)
2630
2631 def SetValue(*args, **kwargs):
2632 """SetValue(self, int value)"""
2633 return _controls_.Slider_SetValue(*args, **kwargs)
2634
2635 def SetRange(*args, **kwargs):
2636 """SetRange(self, int minValue, int maxValue)"""
2637 return _controls_.Slider_SetRange(*args, **kwargs)
2638
2639 def GetMin(*args, **kwargs):
2640 """GetMin(self) -> int"""
2641 return _controls_.Slider_GetMin(*args, **kwargs)
2642
2643 def GetMax(*args, **kwargs):
2644 """GetMax(self) -> int"""
2645 return _controls_.Slider_GetMax(*args, **kwargs)
2646
2647 def SetMin(*args, **kwargs):
2648 """SetMin(self, int minValue)"""
2649 return _controls_.Slider_SetMin(*args, **kwargs)
2650
2651 def SetMax(*args, **kwargs):
2652 """SetMax(self, int maxValue)"""
2653 return _controls_.Slider_SetMax(*args, **kwargs)
2654
2655 def SetLineSize(*args, **kwargs):
2656 """SetLineSize(self, int lineSize)"""
2657 return _controls_.Slider_SetLineSize(*args, **kwargs)
2658
2659 def SetPageSize(*args, **kwargs):
2660 """SetPageSize(self, int pageSize)"""
2661 return _controls_.Slider_SetPageSize(*args, **kwargs)
2662
2663 def GetLineSize(*args, **kwargs):
2664 """GetLineSize(self) -> int"""
2665 return _controls_.Slider_GetLineSize(*args, **kwargs)
2666
2667 def GetPageSize(*args, **kwargs):
2668 """GetPageSize(self) -> int"""
2669 return _controls_.Slider_GetPageSize(*args, **kwargs)
2670
2671 def SetThumbLength(*args, **kwargs):
2672 """SetThumbLength(self, int lenPixels)"""
2673 return _controls_.Slider_SetThumbLength(*args, **kwargs)
2674
2675 def GetThumbLength(*args, **kwargs):
2676 """GetThumbLength(self) -> int"""
2677 return _controls_.Slider_GetThumbLength(*args, **kwargs)
2678
2679 def SetTickFreq(*args, **kwargs):
2680 """SetTickFreq(self, int n, int pos=1)"""
2681 return _controls_.Slider_SetTickFreq(*args, **kwargs)
2682
2683 def GetTickFreq(*args, **kwargs):
2684 """GetTickFreq(self) -> int"""
2685 return _controls_.Slider_GetTickFreq(*args, **kwargs)
2686
2687 def ClearTicks(*args, **kwargs):
2688 """ClearTicks(self)"""
2689 return _controls_.Slider_ClearTicks(*args, **kwargs)
2690
2691 def SetTick(*args, **kwargs):
2692 """SetTick(self, int tickPos)"""
2693 return _controls_.Slider_SetTick(*args, **kwargs)
2694
2695 def ClearSel(*args, **kwargs):
2696 """ClearSel(self)"""
2697 return _controls_.Slider_ClearSel(*args, **kwargs)
2698
2699 def GetSelEnd(*args, **kwargs):
2700 """GetSelEnd(self) -> int"""
2701 return _controls_.Slider_GetSelEnd(*args, **kwargs)
2702
2703 def GetSelStart(*args, **kwargs):
2704 """GetSelStart(self) -> int"""
2705 return _controls_.Slider_GetSelStart(*args, **kwargs)
2706
2707 def SetSelection(*args, **kwargs):
2708 """SetSelection(self, int min, int max)"""
2709 return _controls_.Slider_SetSelection(*args, **kwargs)
2710
f20a2e1f 2711 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
2712 """
2713 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2714
2715 Get the default attributes for this class. This is useful if you want
2716 to use the same font or colour in your own control as in a standard
2717 control -- which is a much better idea than hard coding specific
2718 colours or fonts which might look completely out of place on the
2719 user's system, especially if it uses themes.
2720
2721 The variant parameter is only relevant under Mac currently and is
2722 ignore under other platforms. Under Mac, it will change the size of
2723 the returned font. See `wx.Window.SetWindowVariant` for more about
2724 this.
2725 """
f20a2e1f
RD
2726 return _controls_.Slider_GetClassDefaultAttributes(*args, **kwargs)
2727
2728 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
33d6fd3b
RD
2729 LineSize = property(GetLineSize,SetLineSize,doc="See `GetLineSize` and `SetLineSize`")
2730 Max = property(GetMax,SetMax,doc="See `GetMax` and `SetMax`")
2731 Min = property(GetMin,SetMin,doc="See `GetMin` and `SetMin`")
2732 PageSize = property(GetPageSize,SetPageSize,doc="See `GetPageSize` and `SetPageSize`")
2733 SelEnd = property(GetSelEnd,doc="See `GetSelEnd`")
2734 SelStart = property(GetSelStart,doc="See `GetSelStart`")
2735 ThumbLength = property(GetThumbLength,SetThumbLength,doc="See `GetThumbLength` and `SetThumbLength`")
2736 TickFreq = property(GetTickFreq,SetTickFreq,doc="See `GetTickFreq` and `SetTickFreq`")
2737 Value = property(GetValue,SetValue,doc="See `GetValue` and `SetValue`")
2131d850 2738_controls_.Slider_swigregister(Slider)
d55e5bfc
RD
2739SliderNameStr = cvar.SliderNameStr
2740
2741def PreSlider(*args, **kwargs):
2742 """PreSlider() -> Slider"""
2743 val = _controls_.new_PreSlider(*args, **kwargs)
d55e5bfc
RD
2744 return val
2745
f20a2e1f 2746def Slider_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 2747 """
19272049
RD
2748 Slider_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2749
2750 Get the default attributes for this class. This is useful if you want
2751 to use the same font or colour in your own control as in a standard
2752 control -- which is a much better idea than hard coding specific
2753 colours or fonts which might look completely out of place on the
2754 user's system, especially if it uses themes.
2755
2756 The variant parameter is only relevant under Mac currently and is
2757 ignore under other platforms. Under Mac, it will change the size of
2758 the returned font. See `wx.Window.SetWindowVariant` for more about
2759 this.
2760 """
554f62e9 2761 return _controls_.Slider_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 2762
d55e5bfc
RD
2763#---------------------------------------------------------------------------
2764
2765wxEVT_COMMAND_TOGGLEBUTTON_CLICKED = _controls_.wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
2766EVT_TOGGLEBUTTON = wx.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, 1)
2767
2768class ToggleButton(_core.Control):
093d3ff1 2769 """Proxy of C++ ToggleButton class"""
554f62e9
RD
2770 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2771 __repr__ = _swig_repr
2772 def __init__(self, *args, **kwargs):
d55e5bfc 2773 """
248ed943
RD
2774 __init__(self, Window parent, int id=-1, String label=EmptyString,
2775 Point pos=DefaultPosition, Size size=DefaultSize,
2776 long style=0, Validator validator=DefaultValidator,
2777 String name=ToggleButtonNameStr) -> ToggleButton
d55e5bfc 2778 """
554f62e9 2779 _controls_.ToggleButton_swiginit(self,_controls_.new_ToggleButton(*args, **kwargs))
d55e5bfc
RD
2780 self._setOORInfo(self)
2781
2782 def Create(*args, **kwargs):
2783 """
248ed943
RD
2784 Create(self, Window parent, int id=-1, String label=EmptyString,
2785 Point pos=DefaultPosition, Size size=DefaultSize,
2786 long style=0, Validator validator=DefaultValidator,
2787 String name=ToggleButtonNameStr) -> bool
d55e5bfc
RD
2788 """
2789 return _controls_.ToggleButton_Create(*args, **kwargs)
2790
2791 def SetValue(*args, **kwargs):
2792 """SetValue(self, bool value)"""
2793 return _controls_.ToggleButton_SetValue(*args, **kwargs)
2794
2795 def GetValue(*args, **kwargs):
2796 """GetValue(self) -> bool"""
2797 return _controls_.ToggleButton_GetValue(*args, **kwargs)
2798
f20a2e1f 2799 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
2800 """
2801 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2802
2803 Get the default attributes for this class. This is useful if you want
2804 to use the same font or colour in your own control as in a standard
2805 control -- which is a much better idea than hard coding specific
2806 colours or fonts which might look completely out of place on the
2807 user's system, especially if it uses themes.
2808
2809 The variant parameter is only relevant under Mac currently and is
2810 ignore under other platforms. Under Mac, it will change the size of
2811 the returned font. See `wx.Window.SetWindowVariant` for more about
2812 this.
2813 """
f20a2e1f
RD
2814 return _controls_.ToggleButton_GetClassDefaultAttributes(*args, **kwargs)
2815
2816 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
994453b8 2817 Value = property(GetValue,SetValue,doc="See `GetValue` and `SetValue`")
2131d850 2818_controls_.ToggleButton_swigregister(ToggleButton)
d55e5bfc
RD
2819ToggleButtonNameStr = cvar.ToggleButtonNameStr
2820
2821def PreToggleButton(*args, **kwargs):
2822 """PreToggleButton() -> ToggleButton"""
2823 val = _controls_.new_PreToggleButton(*args, **kwargs)
d55e5bfc
RD
2824 return val
2825
f20a2e1f 2826def ToggleButton_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 2827 """
19272049
RD
2828 ToggleButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2829
2830 Get the default attributes for this class. This is useful if you want
2831 to use the same font or colour in your own control as in a standard
2832 control -- which is a much better idea than hard coding specific
2833 colours or fonts which might look completely out of place on the
2834 user's system, especially if it uses themes.
2835
2836 The variant parameter is only relevant under Mac currently and is
2837 ignore under other platforms. Under Mac, it will change the size of
2838 the returned font. See `wx.Window.SetWindowVariant` for more about
2839 this.
2840 """
554f62e9 2841 return _controls_.ToggleButton_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 2842
d55e5bfc
RD
2843#---------------------------------------------------------------------------
2844
7e08d4ef
RD
2845BK_DEFAULT = _controls_.BK_DEFAULT
2846BK_TOP = _controls_.BK_TOP
2847BK_BOTTOM = _controls_.BK_BOTTOM
2848BK_LEFT = _controls_.BK_LEFT
2849BK_RIGHT = _controls_.BK_RIGHT
2850BK_ALIGN_MASK = _controls_.BK_ALIGN_MASK
e9d6f3a4 2851BK_BUTTONBAR = _controls_.BK_BUTTONBAR
110fa173
RD
2852BK_HITTEST_NOWHERE = _controls_.BK_HITTEST_NOWHERE
2853BK_HITTEST_ONICON = _controls_.BK_HITTEST_ONICON
2854BK_HITTEST_ONLABEL = _controls_.BK_HITTEST_ONLABEL
2855BK_HITTEST_ONITEM = _controls_.BK_HITTEST_ONITEM
2856BK_HITTEST_ONPAGE = _controls_.BK_HITTEST_ONPAGE
8ac8dba0 2857class BookCtrlBase(_core.Control):
093d3ff1 2858 """Proxy of C++ BookCtrlBase class"""
554f62e9
RD
2859 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2860 def __init__(self): raise AttributeError, "No constructor defined"
2861 __repr__ = _swig_repr
d55e5bfc
RD
2862 def GetPageCount(*args, **kwargs):
2863 """GetPageCount(self) -> size_t"""
8ac8dba0 2864 return _controls_.BookCtrlBase_GetPageCount(*args, **kwargs)
d55e5bfc
RD
2865
2866 def GetPage(*args, **kwargs):
2867 """GetPage(self, size_t n) -> Window"""
8ac8dba0 2868 return _controls_.BookCtrlBase_GetPage(*args, **kwargs)
d55e5bfc 2869
8fb0e70a
RD
2870 def GetCurrentPage(*args, **kwargs):
2871 """GetCurrentPage(self) -> Window"""
8ac8dba0 2872 return _controls_.BookCtrlBase_GetCurrentPage(*args, **kwargs)
8fb0e70a 2873
d55e5bfc
RD
2874 def GetSelection(*args, **kwargs):
2875 """GetSelection(self) -> int"""
8ac8dba0 2876 return _controls_.BookCtrlBase_GetSelection(*args, **kwargs)
d55e5bfc
RD
2877
2878 def SetPageText(*args, **kwargs):
2879 """SetPageText(self, size_t n, String strText) -> bool"""
8ac8dba0 2880 return _controls_.BookCtrlBase_SetPageText(*args, **kwargs)
d55e5bfc
RD
2881
2882 def GetPageText(*args, **kwargs):
2883 """GetPageText(self, size_t n) -> String"""
8ac8dba0 2884 return _controls_.BookCtrlBase_GetPageText(*args, **kwargs)
d55e5bfc
RD
2885
2886 def SetImageList(*args, **kwargs):
2887 """SetImageList(self, ImageList imageList)"""
8ac8dba0 2888 return _controls_.BookCtrlBase_SetImageList(*args, **kwargs)
d55e5bfc
RD
2889
2890 def AssignImageList(*args, **kwargs):
2891 """AssignImageList(self, ImageList imageList)"""
8ac8dba0 2892 return _controls_.BookCtrlBase_AssignImageList(*args, **kwargs)
d55e5bfc
RD
2893
2894 def GetImageList(*args, **kwargs):
2895 """GetImageList(self) -> ImageList"""
8ac8dba0 2896 return _controls_.BookCtrlBase_GetImageList(*args, **kwargs)
d55e5bfc
RD
2897
2898 def GetPageImage(*args, **kwargs):
2899 """GetPageImage(self, size_t n) -> int"""
8ac8dba0 2900 return _controls_.BookCtrlBase_GetPageImage(*args, **kwargs)
d55e5bfc
RD
2901
2902 def SetPageImage(*args, **kwargs):
2903 """SetPageImage(self, size_t n, int imageId) -> bool"""
8ac8dba0 2904 return _controls_.BookCtrlBase_SetPageImage(*args, **kwargs)
d55e5bfc
RD
2905
2906 def SetPageSize(*args, **kwargs):
2907 """SetPageSize(self, Size size)"""
8ac8dba0 2908 return _controls_.BookCtrlBase_SetPageSize(*args, **kwargs)
d55e5bfc
RD
2909
2910 def CalcSizeFromPage(*args, **kwargs):
2911 """CalcSizeFromPage(self, Size sizePage) -> Size"""
8ac8dba0 2912 return _controls_.BookCtrlBase_CalcSizeFromPage(*args, **kwargs)
d55e5bfc 2913
7e08d4ef 2914 def GetInternalBorder(*args, **kwargs):
e9d6f3a4 2915 """GetInternalBorder(self) -> unsigned int"""
7e08d4ef
RD
2916 return _controls_.BookCtrlBase_GetInternalBorder(*args, **kwargs)
2917
2918 def SetInternalBorder(*args, **kwargs):
e9d6f3a4 2919 """SetInternalBorder(self, unsigned int internalBorder)"""
7e08d4ef
RD
2920 return _controls_.BookCtrlBase_SetInternalBorder(*args, **kwargs)
2921
2922 def IsVertical(*args, **kwargs):
2923 """IsVertical(self) -> bool"""
2924 return _controls_.BookCtrlBase_IsVertical(*args, **kwargs)
2925
e9d6f3a4
RD
2926 def SetControlMargin(*args, **kwargs):
2927 """SetControlMargin(self, int margin)"""
2928 return _controls_.BookCtrlBase_SetControlMargin(*args, **kwargs)
2929
2930 def GetControlMargin(*args, **kwargs):
2931 """GetControlMargin(self) -> int"""
2932 return _controls_.BookCtrlBase_GetControlMargin(*args, **kwargs)
2933
b06b3e70
RD
2934 def SetFitToCurrentPage(*args, **kwargs):
2935 """SetFitToCurrentPage(self, bool fit)"""
2936 return _controls_.BookCtrlBase_SetFitToCurrentPage(*args, **kwargs)
7e08d4ef 2937
b06b3e70
RD
2938 def GetFitToCurrentPage(*args, **kwargs):
2939 """GetFitToCurrentPage(self) -> bool"""
2940 return _controls_.BookCtrlBase_GetFitToCurrentPage(*args, **kwargs)
7e08d4ef 2941
e9d6f3a4
RD
2942 def GetControlSizer(*args, **kwargs):
2943 """GetControlSizer(self) -> Sizer"""
2944 return _controls_.BookCtrlBase_GetControlSizer(*args, **kwargs)
2945
d55e5bfc
RD
2946 def DeletePage(*args, **kwargs):
2947 """DeletePage(self, size_t n) -> bool"""
8ac8dba0 2948 return _controls_.BookCtrlBase_DeletePage(*args, **kwargs)
d55e5bfc
RD
2949
2950 def RemovePage(*args, **kwargs):
2951 """RemovePage(self, size_t n) -> bool"""
8ac8dba0 2952 return _controls_.BookCtrlBase_RemovePage(*args, **kwargs)
d55e5bfc
RD
2953
2954 def DeleteAllPages(*args, **kwargs):
2955 """DeleteAllPages(self) -> bool"""
8ac8dba0 2956 return _controls_.BookCtrlBase_DeleteAllPages(*args, **kwargs)
d55e5bfc
RD
2957
2958 def AddPage(*args, **kwargs):
2959 """AddPage(self, Window page, String text, bool select=False, int imageId=-1) -> bool"""
8ac8dba0 2960 return _controls_.BookCtrlBase_AddPage(*args, **kwargs)
d55e5bfc
RD
2961
2962 def InsertPage(*args, **kwargs):
2963 """
2964 InsertPage(self, size_t n, Window page, String text, bool select=False,
2965 int imageId=-1) -> bool
2966 """
8ac8dba0 2967 return _controls_.BookCtrlBase_InsertPage(*args, **kwargs)
d55e5bfc
RD
2968
2969 def SetSelection(*args, **kwargs):
2970 """SetSelection(self, size_t n) -> int"""
8ac8dba0 2971 return _controls_.BookCtrlBase_SetSelection(*args, **kwargs)
d55e5bfc 2972
b39fe951
RD
2973 def ChangeSelection(*args, **kwargs):
2974 """ChangeSelection(self, size_t n) -> int"""
2975 return _controls_.BookCtrlBase_ChangeSelection(*args, **kwargs)
2976
d55e5bfc
RD
2977 def AdvanceSelection(*args, **kwargs):
2978 """AdvanceSelection(self, bool forward=True)"""
8ac8dba0 2979 return _controls_.BookCtrlBase_AdvanceSelection(*args, **kwargs)
d55e5bfc 2980
704eda0c
RD
2981 def HitTest(*args, **kwargs):
2982 """
2983 HitTest(Point pt) -> (tab, where)
2984
2985 Returns the page/tab which is hit, and flags indicating where using
2986 wx.NB_HITTEST flags.
2987 """
2988 return _controls_.BookCtrlBase_HitTest(*args, **kwargs)
2989
f20a2e1f 2990 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
2991 """
2992 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2993
2994 Get the default attributes for this class. This is useful if you want
2995 to use the same font or colour in your own control as in a standard
2996 control -- which is a much better idea than hard coding specific
2997 colours or fonts which might look completely out of place on the
2998 user's system, especially if it uses themes.
2999
3000 The variant parameter is only relevant under Mac currently and is
3001 ignore under other platforms. Under Mac, it will change the size of
3002 the returned font. See `wx.Window.SetWindowVariant` for more about
3003 this.
3004 """
8ac8dba0 3005 return _controls_.BookCtrlBase_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f
RD
3006
3007 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
226118fc
RD
3008 ControlMargin = property(GetControlMargin,SetControlMargin,doc="See `GetControlMargin` and `SetControlMargin`")
3009 ControlSizer = property(GetControlSizer,doc="See `GetControlSizer`")
3010 CurrentPage = property(GetCurrentPage,doc="See `GetCurrentPage`")
3011 FitToCurrentPage = property(GetFitToCurrentPage,SetFitToCurrentPage,doc="See `GetFitToCurrentPage` and `SetFitToCurrentPage`")
3012 ImageList = property(GetImageList,SetImageList,doc="See `GetImageList` and `SetImageList`")
3013 InternalBorder = property(GetInternalBorder,SetInternalBorder,doc="See `GetInternalBorder` and `SetInternalBorder`")
3014 Page = property(GetPage,doc="See `GetPage`")
3015 PageCount = property(GetPageCount,doc="See `GetPageCount`")
3016 PageImage = property(GetPageImage,SetPageImage,doc="See `GetPageImage` and `SetPageImage`")
3017 PageText = property(GetPageText,SetPageText,doc="See `GetPageText` and `SetPageText`")
3018 Selection = property(GetSelection,SetSelection,doc="See `GetSelection` and `SetSelection`")
2131d850 3019_controls_.BookCtrlBase_swigregister(BookCtrlBase)
51b83b37 3020NotebookNameStr = cvar.NotebookNameStr
d55e5bfc 3021
8ac8dba0 3022def BookCtrlBase_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 3023 """
8ac8dba0 3024 BookCtrlBase_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
19272049
RD
3025
3026 Get the default attributes for this class. This is useful if you want
3027 to use the same font or colour in your own control as in a standard
3028 control -- which is a much better idea than hard coding specific
3029 colours or fonts which might look completely out of place on the
3030 user's system, especially if it uses themes.
3031
3032 The variant parameter is only relevant under Mac currently and is
3033 ignore under other platforms. Under Mac, it will change the size of
3034 the returned font. See `wx.Window.SetWindowVariant` for more about
3035 this.
3036 """
554f62e9 3037 return _controls_.BookCtrlBase_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 3038
8ac8dba0 3039class BookCtrlBaseEvent(_core.NotifyEvent):
093d3ff1 3040 """Proxy of C++ BookCtrlBaseEvent class"""
554f62e9
RD
3041 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3042 __repr__ = _swig_repr
3043 def __init__(self, *args, **kwargs):
d55e5bfc 3044 """
f460c29d 3045 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
8ac8dba0 3046 int nOldSel=-1) -> BookCtrlBaseEvent
d55e5bfc 3047 """
554f62e9 3048 _controls_.BookCtrlBaseEvent_swiginit(self,_controls_.new_BookCtrlBaseEvent(*args, **kwargs))
d55e5bfc 3049 def GetSelection(*args, **kwargs):
7a27cf7c
RD
3050 """
3051 GetSelection(self) -> int
3052
3053 Returns item index for a listbox or choice selection event (not valid
3054 for a deselection).
3055 """
8ac8dba0 3056 return _controls_.BookCtrlBaseEvent_GetSelection(*args, **kwargs)
d55e5bfc
RD
3057
3058 def SetSelection(*args, **kwargs):
3059 """SetSelection(self, int nSel)"""
8ac8dba0 3060 return _controls_.BookCtrlBaseEvent_SetSelection(*args, **kwargs)
d55e5bfc
RD
3061
3062 def GetOldSelection(*args, **kwargs):
3063 """GetOldSelection(self) -> int"""
8ac8dba0 3064 return _controls_.BookCtrlBaseEvent_GetOldSelection(*args, **kwargs)
d55e5bfc
RD
3065
3066 def SetOldSelection(*args, **kwargs):
3067 """SetOldSelection(self, int nOldSel)"""
8ac8dba0 3068 return _controls_.BookCtrlBaseEvent_SetOldSelection(*args, **kwargs)
d55e5bfc 3069
226118fc
RD
3070 OldSelection = property(GetOldSelection,SetOldSelection,doc="See `GetOldSelection` and `SetOldSelection`")
3071 Selection = property(GetSelection,SetSelection,doc="See `GetSelection` and `SetSelection`")
2131d850 3072_controls_.BookCtrlBaseEvent_swigregister(BookCtrlBaseEvent)
d55e5bfc
RD
3073
3074#---------------------------------------------------------------------------
3075
3076NB_FIXEDWIDTH = _controls_.NB_FIXEDWIDTH
3077NB_TOP = _controls_.NB_TOP
3078NB_LEFT = _controls_.NB_LEFT
3079NB_RIGHT = _controls_.NB_RIGHT
3080NB_BOTTOM = _controls_.NB_BOTTOM
3081NB_MULTILINE = _controls_.NB_MULTILINE
091fdbfa 3082NB_NOPAGETHEME = _controls_.NB_NOPAGETHEME
d55e5bfc
RD
3083NB_HITTEST_NOWHERE = _controls_.NB_HITTEST_NOWHERE
3084NB_HITTEST_ONICON = _controls_.NB_HITTEST_ONICON
3085NB_HITTEST_ONLABEL = _controls_.NB_HITTEST_ONLABEL
3086NB_HITTEST_ONITEM = _controls_.NB_HITTEST_ONITEM
b02396e8 3087NB_HITTEST_ONPAGE = _controls_.NB_HITTEST_ONPAGE
8ac8dba0 3088class Notebook(BookCtrlBase):
093d3ff1 3089 """Proxy of C++ Notebook class"""
554f62e9
RD
3090 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3091 __repr__ = _swig_repr
3092 def __init__(self, *args, **kwargs):
d55e5bfc
RD
3093 """
3094 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
51b83b37 3095 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> Notebook
d55e5bfc 3096 """
554f62e9 3097 _controls_.Notebook_swiginit(self,_controls_.new_Notebook(*args, **kwargs))
d55e5bfc
RD
3098 self._setOORInfo(self)
3099
3100 def Create(*args, **kwargs):
3101 """
248ed943 3102 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
51b83b37 3103 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> bool
d55e5bfc
RD
3104 """
3105 return _controls_.Notebook_Create(*args, **kwargs)
3106
3107 def GetRowCount(*args, **kwargs):
3108 """GetRowCount(self) -> int"""
3109 return _controls_.Notebook_GetRowCount(*args, **kwargs)
3110
3111 def SetPadding(*args, **kwargs):
3112 """SetPadding(self, Size padding)"""
3113 return _controls_.Notebook_SetPadding(*args, **kwargs)
3114
3115 def SetTabSize(*args, **kwargs):
3116 """SetTabSize(self, Size sz)"""
3117 return _controls_.Notebook_SetTabSize(*args, **kwargs)
3118
091fdbfa
RD
3119 def GetThemeBackgroundColour(*args, **kwargs):
3120 """GetThemeBackgroundColour(self) -> Colour"""
3121 return _controls_.Notebook_GetThemeBackgroundColour(*args, **kwargs)
3122
f20a2e1f 3123 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
3124 """
3125 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3126
3127 Get the default attributes for this class. This is useful if you want
3128 to use the same font or colour in your own control as in a standard
3129 control -- which is a much better idea than hard coding specific
3130 colours or fonts which might look completely out of place on the
3131 user's system, especially if it uses themes.
3132
3133 The variant parameter is only relevant under Mac currently and is
3134 ignore under other platforms. Under Mac, it will change the size of
3135 the returned font. See `wx.Window.SetWindowVariant` for more about
3136 this.
3137 """
f20a2e1f
RD
3138 return _controls_.Notebook_GetClassDefaultAttributes(*args, **kwargs)
3139
3140 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
b39fe951
RD
3141 def SendPageChangingEvent(*args, **kwargs):
3142 """SendPageChangingEvent(self, int nPage) -> bool"""
3143 return _controls_.Notebook_SendPageChangingEvent(*args, **kwargs)
3144
3145 def SendPageChangedEvent(*args, **kwargs):
3146 """SendPageChangedEvent(self, int nPageOld, int nPageNew=-1)"""
3147 return _controls_.Notebook_SendPageChangedEvent(*args, **kwargs)
3148
57332a5a
RD
3149 RowCount = property(GetRowCount,doc="See `GetRowCount`")
3150 ThemeBackgroundColour = property(GetThemeBackgroundColour,doc="See `GetThemeBackgroundColour`")
2131d850 3151_controls_.Notebook_swigregister(Notebook)
d55e5bfc
RD
3152
3153def PreNotebook(*args, **kwargs):
3154 """PreNotebook() -> Notebook"""
3155 val = _controls_.new_PreNotebook(*args, **kwargs)
d55e5bfc
RD
3156 return val
3157
f20a2e1f 3158def Notebook_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 3159 """
19272049
RD
3160 Notebook_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3161
3162 Get the default attributes for this class. This is useful if you want
3163 to use the same font or colour in your own control as in a standard
3164 control -- which is a much better idea than hard coding specific
3165 colours or fonts which might look completely out of place on the
3166 user's system, especially if it uses themes.
3167
3168 The variant parameter is only relevant under Mac currently and is
3169 ignore under other platforms. Under Mac, it will change the size of
3170 the returned font. See `wx.Window.SetWindowVariant` for more about
3171 this.
3172 """
554f62e9 3173 return _controls_.Notebook_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 3174
8ac8dba0 3175class NotebookEvent(BookCtrlBaseEvent):
093d3ff1 3176 """Proxy of C++ NotebookEvent class"""
554f62e9
RD
3177 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3178 __repr__ = _swig_repr
3179 def __init__(self, *args, **kwargs):
d55e5bfc 3180 """
f460c29d 3181 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
d55e5bfc
RD
3182 int nOldSel=-1) -> NotebookEvent
3183 """
554f62e9 3184 _controls_.NotebookEvent_swiginit(self,_controls_.new_NotebookEvent(*args, **kwargs))
2131d850 3185_controls_.NotebookEvent_swigregister(NotebookEvent)
d55e5bfc
RD
3186
3187wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED = _controls_.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
3188wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING = _controls_.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
3189# wxNotebook events
3190EVT_NOTEBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 1 )
3191EVT_NOTEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 1 )
3192
3193#----------------------------------------------------------------------------
3194
3195class NotebookPage(wx.Panel):
3196 """
3197 There is an old (and apparently unsolvable) bug when placing a
fef4c27a 3198 window with a nonstandard background colour in a wx.Notebook on
70b7a5fe 3199 wxGTK1, as the notbooks's background colour would always be used
d55e5bfc
RD
3200 when the window is refreshed. The solution is to place a panel in
3201 the notbook and the coloured window on the panel, sized to cover
3202 the panel. This simple class does that for you, just put an
3203 instance of this in the notebook and make your regular window a
3204 child of this one and it will handle the resize for you.
3205 """
3206 def __init__(self, parent, id=-1,
3207 pos=wx.DefaultPosition, size=wx.DefaultSize,
3208 style=wx.TAB_TRAVERSAL, name="panel"):
3209 wx.Panel.__init__(self, parent, id, pos, size, style, name)
3210 self.child = None
fef4c27a 3211 self.Bind(wx.EVT_SIZE, self.OnSize)
ae8162c8 3212
d55e5bfc
RD
3213 def OnSize(self, evt):
3214 if self.child is None:
3215 children = self.GetChildren()
3216 if len(children):
3217 self.child = children[0]
3218 if self.child:
3219 self.child.SetPosition((0,0))
3220 self.child.SetSize(self.GetSize())
3221
3222
3223#---------------------------------------------------------------------------
3224
3225LB_DEFAULT = _controls_.LB_DEFAULT
3226LB_TOP = _controls_.LB_TOP
3227LB_BOTTOM = _controls_.LB_BOTTOM
3228LB_LEFT = _controls_.LB_LEFT
3229LB_RIGHT = _controls_.LB_RIGHT
3230LB_ALIGN_MASK = _controls_.LB_ALIGN_MASK
8ac8dba0 3231class Listbook(BookCtrlBase):
093d3ff1 3232 """Proxy of C++ Listbook class"""
554f62e9
RD
3233 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3234 __repr__ = _swig_repr
3235 def __init__(self, *args, **kwargs):
d55e5bfc
RD
3236 """
3237 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3238 Size size=DefaultSize, long style=0, String name=EmptyString) -> Listbook
3239 """
554f62e9 3240 _controls_.Listbook_swiginit(self,_controls_.new_Listbook(*args, **kwargs))
d55e5bfc
RD
3241 self._setOORInfo(self)
3242
3243 def Create(*args, **kwargs):
3244 """
248ed943
RD
3245 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3246 Size size=DefaultSize, long style=0, String name=EmptyString) -> bool
d55e5bfc
RD
3247 """
3248 return _controls_.Listbook_Create(*args, **kwargs)
3249
1fbf26be
RD
3250 def GetListView(*args, **kwargs):
3251 """GetListView(self) -> ListView"""
3252 return _controls_.Listbook_GetListView(*args, **kwargs)
3253
97ab0f6a 3254 ListView = property(GetListView,doc="See `GetListView`")
2131d850 3255_controls_.Listbook_swigregister(Listbook)
d55e5bfc
RD
3256
3257def PreListbook(*args, **kwargs):
3258 """PreListbook() -> Listbook"""
3259 val = _controls_.new_PreListbook(*args, **kwargs)
d55e5bfc
RD
3260 return val
3261
8ac8dba0 3262class ListbookEvent(BookCtrlBaseEvent):
093d3ff1 3263 """Proxy of C++ ListbookEvent class"""
554f62e9
RD
3264 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3265 __repr__ = _swig_repr
3266 def __init__(self, *args, **kwargs):
d55e5bfc 3267 """
f460c29d 3268 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
d55e5bfc
RD
3269 int nOldSel=-1) -> ListbookEvent
3270 """
554f62e9 3271 _controls_.ListbookEvent_swiginit(self,_controls_.new_ListbookEvent(*args, **kwargs))
2131d850 3272_controls_.ListbookEvent_swigregister(ListbookEvent)
d55e5bfc
RD
3273
3274wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED = _controls_.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
3275wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING = _controls_.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
3276EVT_LISTBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, 1 )
3277EVT_LISTBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, 1 )
3278
ae8162c8
RD
3279CHB_DEFAULT = _controls_.CHB_DEFAULT
3280CHB_TOP = _controls_.CHB_TOP
3281CHB_BOTTOM = _controls_.CHB_BOTTOM
3282CHB_LEFT = _controls_.CHB_LEFT
3283CHB_RIGHT = _controls_.CHB_RIGHT
3284CHB_ALIGN_MASK = _controls_.CHB_ALIGN_MASK
8ac8dba0 3285class Choicebook(BookCtrlBase):
093d3ff1 3286 """Proxy of C++ Choicebook class"""
554f62e9
RD
3287 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3288 __repr__ = _swig_repr
3289 def __init__(self, *args, **kwargs):
ae8162c8
RD
3290 """
3291 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3292 long style=0, String name=EmptyString) -> Choicebook
3293 """
554f62e9 3294 _controls_.Choicebook_swiginit(self,_controls_.new_Choicebook(*args, **kwargs))
ae8162c8
RD
3295 self._setOORInfo(self)
3296
3297 def Create(*args, **kwargs):
3298 """
3299 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3300 long style=0, String name=EmptyString) -> bool
3301 """
3302 return _controls_.Choicebook_Create(*args, **kwargs)
3303
70b7a5fe
RD
3304 def GetChoiceCtrl(*args, **kwargs):
3305 """GetChoiceCtrl(self) -> Choice"""
3306 return _controls_.Choicebook_GetChoiceCtrl(*args, **kwargs)
3307
226118fc 3308 ChoiceCtrl = property(GetChoiceCtrl,doc="See `GetChoiceCtrl`")
2131d850 3309_controls_.Choicebook_swigregister(Choicebook)
ae8162c8
RD
3310
3311def PreChoicebook(*args, **kwargs):
3312 """PreChoicebook() -> Choicebook"""
3313 val = _controls_.new_PreChoicebook(*args, **kwargs)
ae8162c8
RD
3314 return val
3315
8ac8dba0 3316class ChoicebookEvent(BookCtrlBaseEvent):
093d3ff1 3317 """Proxy of C++ ChoicebookEvent class"""
554f62e9
RD
3318 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3319 __repr__ = _swig_repr
3320 def __init__(self, *args, **kwargs):
ae8162c8 3321 """
f460c29d 3322 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
ae8162c8
RD
3323 int nOldSel=-1) -> ChoicebookEvent
3324 """
554f62e9 3325 _controls_.ChoicebookEvent_swiginit(self,_controls_.new_ChoicebookEvent(*args, **kwargs))
2131d850 3326_controls_.ChoicebookEvent_swigregister(ChoicebookEvent)
ae8162c8
RD
3327
3328wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED = _controls_.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
3329wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING = _controls_.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
3330EVT_CHOICEBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED, 1 )
3331EVT_CHOICEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING, 1 )
3332
d55e5bfc
RD
3333#---------------------------------------------------------------------------
3334
7e08d4ef
RD
3335class Treebook(BookCtrlBase):
3336 """Proxy of C++ Treebook class"""
554f62e9
RD
3337 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3338 __repr__ = _swig_repr
3339 def __init__(self, *args, **kwargs):
7e08d4ef
RD
3340 """
3341 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3342 long style=BK_DEFAULT,
3343 String name=EmptyString) -> Treebook
3344 """
554f62e9 3345 _controls_.Treebook_swiginit(self,_controls_.new_Treebook(*args, **kwargs))
7e08d4ef
RD
3346 self._setOORInfo(self)
3347
3348 def Create(*args, **kwargs):
3349 """
3350 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3351 long style=BK_DEFAULT,
3352 String name=EmptyString) -> bool
3353 """
3354 return _controls_.Treebook_Create(*args, **kwargs)
3355
7e08d4ef
RD
3356 def InsertSubPage(*args, **kwargs):
3357 """
3358 InsertSubPage(self, size_t pos, Window page, String text, bool select=False,
3359 int imageId=NOT_FOUND) -> bool
3360 """
3361 return _controls_.Treebook_InsertSubPage(*args, **kwargs)
3362
7e08d4ef
RD
3363 def AddSubPage(*args, **kwargs):
3364 """AddSubPage(self, Window page, String text, bool select=False, int imageId=NOT_FOUND) -> bool"""
3365 return _controls_.Treebook_AddSubPage(*args, **kwargs)
3366
7e08d4ef
RD
3367 def IsNodeExpanded(*args, **kwargs):
3368 """IsNodeExpanded(self, size_t pos) -> bool"""
3369 return _controls_.Treebook_IsNodeExpanded(*args, **kwargs)
3370
3371 def ExpandNode(*args, **kwargs):
3372 """ExpandNode(self, size_t pos, bool expand=True) -> bool"""
3373 return _controls_.Treebook_ExpandNode(*args, **kwargs)
3374
3375 def CollapseNode(*args, **kwargs):
3376 """CollapseNode(self, size_t pos) -> bool"""
3377 return _controls_.Treebook_CollapseNode(*args, **kwargs)
3378
3379 def GetPageParent(*args, **kwargs):
3380 """GetPageParent(self, size_t pos) -> int"""
3381 return _controls_.Treebook_GetPageParent(*args, **kwargs)
3382
3383 def GetTreeCtrl(*args, **kwargs):
10044bf1 3384 """GetTreeCtrl(self) -> TreeCtrl"""
7e08d4ef
RD
3385 return _controls_.Treebook_GetTreeCtrl(*args, **kwargs)
3386
994453b8 3387 TreeCtrl = property(GetTreeCtrl,doc="See `GetTreeCtrl`")
2131d850 3388_controls_.Treebook_swigregister(Treebook)
7e08d4ef
RD
3389
3390def PreTreebook(*args, **kwargs):
3391 """PreTreebook() -> Treebook"""
3392 val = _controls_.new_PreTreebook(*args, **kwargs)
7e08d4ef
RD
3393 return val
3394
3395class TreebookEvent(BookCtrlBaseEvent):
3396 """Proxy of C++ TreebookEvent class"""
554f62e9
RD
3397 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3398 __repr__ = _swig_repr
3399 def __init__(self, *args, **kwargs):
7e08d4ef 3400 """
f460c29d 3401 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=NOT_FOUND,
7e08d4ef
RD
3402 int nOldSel=NOT_FOUND) -> TreebookEvent
3403 """
554f62e9 3404 _controls_.TreebookEvent_swiginit(self,_controls_.new_TreebookEvent(*args, **kwargs))
2131d850 3405_controls_.TreebookEvent_swigregister(TreebookEvent)
7e08d4ef
RD
3406
3407wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED = _controls_.wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
3408wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING = _controls_.wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
3409wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED = _controls_.wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
3410wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED = _controls_.wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
3411EVT_TREEBOOK_PAGE_CHANGED= wx.PyEventBinder( wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED, 1 )
3412EVT_TREEBOOK_PAGE_CHANGING= wx.PyEventBinder( wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING, 1)
3413EVT_TREEBOOK_NODE_COLLAPSED= wx.PyEventBinder( wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED, 1 )
3414EVT_TREEBOOK_NODE_EXPANDED= wx.PyEventBinder( wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED, 1 )
3415
3416#---------------------------------------------------------------------------
3417
3418class Toolbook(BookCtrlBase):
3419 """Proxy of C++ Toolbook class"""
554f62e9
RD
3420 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3421 __repr__ = _swig_repr
3422 def __init__(self, *args, **kwargs):
7e08d4ef
RD
3423 """
3424 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3425 long style=BK_DEFAULT,
3426 String name=EmptyString) -> Toolbook
3427 """
554f62e9 3428 _controls_.Toolbook_swiginit(self,_controls_.new_Toolbook(*args, **kwargs))
7e08d4ef
RD
3429 self._setOORInfo(self)
3430
3431 def Create(*args, **kwargs):
3432 """
3433 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3434 long style=0, String name=wxEmptyString) -> bool
3435 """
3436 return _controls_.Toolbook_Create(*args, **kwargs)
3437
3438 def GetToolBar(*args, **kwargs):
3439 """GetToolBar(self) -> ToolBarBase"""
3440 return _controls_.Toolbook_GetToolBar(*args, **kwargs)
3441
3442 def Realize(*args, **kwargs):
3443 """Realize(self)"""
3444 return _controls_.Toolbook_Realize(*args, **kwargs)
3445
994453b8 3446 ToolBar = property(GetToolBar,doc="See `GetToolBar`")
2131d850 3447_controls_.Toolbook_swigregister(Toolbook)
7e08d4ef
RD
3448
3449def PreToolbook(*args, **kwargs):
3450 """PreToolbook() -> Toolbook"""
3451 val = _controls_.new_PreToolbook(*args, **kwargs)
7e08d4ef
RD
3452 return val
3453
3454class ToolbookEvent(BookCtrlBaseEvent):
3455 """Proxy of C++ ToolbookEvent class"""
554f62e9
RD
3456 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3457 __repr__ = _swig_repr
3458 def __init__(self, *args, **kwargs):
7e08d4ef 3459 """
f460c29d 3460 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=NOT_FOUND,
7e08d4ef
RD
3461 int nOldSel=NOT_FOUND) -> ToolbookEvent
3462 """
554f62e9 3463 _controls_.ToolbookEvent_swiginit(self,_controls_.new_ToolbookEvent(*args, **kwargs))
2131d850 3464_controls_.ToolbookEvent_swigregister(ToolbookEvent)
7e08d4ef
RD
3465
3466wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED = _controls_.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
3467wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING = _controls_.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
3468EVT_TOOLBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED, 1)
3469EVT_TOOLBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING, 1)
3470
d55e5bfc
RD
3471#---------------------------------------------------------------------------
3472
3473TOOL_STYLE_BUTTON = _controls_.TOOL_STYLE_BUTTON
3474TOOL_STYLE_SEPARATOR = _controls_.TOOL_STYLE_SEPARATOR
3475TOOL_STYLE_CONTROL = _controls_.TOOL_STYLE_CONTROL
3476TB_HORIZONTAL = _controls_.TB_HORIZONTAL
3477TB_VERTICAL = _controls_.TB_VERTICAL
8f514ab4
RD
3478TB_TOP = _controls_.TB_TOP
3479TB_LEFT = _controls_.TB_LEFT
3480TB_BOTTOM = _controls_.TB_BOTTOM
3481TB_RIGHT = _controls_.TB_RIGHT
d55e5bfc
RD
3482TB_3DBUTTONS = _controls_.TB_3DBUTTONS
3483TB_FLAT = _controls_.TB_FLAT
3484TB_DOCKABLE = _controls_.TB_DOCKABLE
3485TB_NOICONS = _controls_.TB_NOICONS
3486TB_TEXT = _controls_.TB_TEXT
3487TB_NODIVIDER = _controls_.TB_NODIVIDER
3488TB_NOALIGN = _controls_.TB_NOALIGN
3489TB_HORZ_LAYOUT = _controls_.TB_HORZ_LAYOUT
3490TB_HORZ_TEXT = _controls_.TB_HORZ_TEXT
704eda0c 3491TB_NO_TOOLTIPS = _controls_.TB_NO_TOOLTIPS
d55e5bfc 3492class ToolBarToolBase(_core.Object):
093d3ff1 3493 """Proxy of C++ ToolBarToolBase class"""
554f62e9
RD
3494 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3495 def __init__(self): raise AttributeError, "No constructor defined"
3496 __repr__ = _swig_repr
d55e5bfc
RD
3497 def GetId(*args, **kwargs):
3498 """GetId(self) -> int"""
3499 return _controls_.ToolBarToolBase_GetId(*args, **kwargs)
3500
3501 def GetControl(*args, **kwargs):
3502 """GetControl(self) -> Control"""
3503 return _controls_.ToolBarToolBase_GetControl(*args, **kwargs)
3504
3505 def GetToolBar(*args, **kwargs):
3506 """GetToolBar(self) -> ToolBarBase"""
3507 return _controls_.ToolBarToolBase_GetToolBar(*args, **kwargs)
3508
3509 def IsButton(*args, **kwargs):
3510 """IsButton(self) -> int"""
3511 return _controls_.ToolBarToolBase_IsButton(*args, **kwargs)
3512
3513 def IsControl(*args, **kwargs):
3514 """IsControl(self) -> int"""
3515 return _controls_.ToolBarToolBase_IsControl(*args, **kwargs)
3516
3517 def IsSeparator(*args, **kwargs):
3518 """IsSeparator(self) -> int"""
3519 return _controls_.ToolBarToolBase_IsSeparator(*args, **kwargs)
3520
3521 def GetStyle(*args, **kwargs):
3522 """GetStyle(self) -> int"""
3523 return _controls_.ToolBarToolBase_GetStyle(*args, **kwargs)
3524
3525 def GetKind(*args, **kwargs):
3526 """GetKind(self) -> int"""
3527 return _controls_.ToolBarToolBase_GetKind(*args, **kwargs)
3528
3529 def IsEnabled(*args, **kwargs):
3530 """IsEnabled(self) -> bool"""
3531 return _controls_.ToolBarToolBase_IsEnabled(*args, **kwargs)
3532
3533 def IsToggled(*args, **kwargs):
3534 """IsToggled(self) -> bool"""
3535 return _controls_.ToolBarToolBase_IsToggled(*args, **kwargs)
3536
3537 def CanBeToggled(*args, **kwargs):
3538 """CanBeToggled(self) -> bool"""
3539 return _controls_.ToolBarToolBase_CanBeToggled(*args, **kwargs)
3540
3541 def GetNormalBitmap(*args, **kwargs):
3542 """GetNormalBitmap(self) -> Bitmap"""
3543 return _controls_.ToolBarToolBase_GetNormalBitmap(*args, **kwargs)
3544
3545 def GetDisabledBitmap(*args, **kwargs):
3546 """GetDisabledBitmap(self) -> Bitmap"""
3547 return _controls_.ToolBarToolBase_GetDisabledBitmap(*args, **kwargs)
3548
3549 def GetBitmap(*args, **kwargs):
3550 """GetBitmap(self) -> Bitmap"""
3551 return _controls_.ToolBarToolBase_GetBitmap(*args, **kwargs)
3552
3553 def GetLabel(*args, **kwargs):
3554 """GetLabel(self) -> String"""
3555 return _controls_.ToolBarToolBase_GetLabel(*args, **kwargs)
3556
3557 def GetShortHelp(*args, **kwargs):
3558 """GetShortHelp(self) -> String"""
3559 return _controls_.ToolBarToolBase_GetShortHelp(*args, **kwargs)
3560
3561 def GetLongHelp(*args, **kwargs):
3562 """GetLongHelp(self) -> String"""
3563 return _controls_.ToolBarToolBase_GetLongHelp(*args, **kwargs)
3564
3565 def Enable(*args, **kwargs):
3566 """Enable(self, bool enable) -> bool"""
3567 return _controls_.ToolBarToolBase_Enable(*args, **kwargs)
3568
3569 def Toggle(*args, **kwargs):
3570 """Toggle(self)"""
3571 return _controls_.ToolBarToolBase_Toggle(*args, **kwargs)
3572
3573 def SetToggle(*args, **kwargs):
3574 """SetToggle(self, bool toggle) -> bool"""
3575 return _controls_.ToolBarToolBase_SetToggle(*args, **kwargs)
3576
3577 def SetShortHelp(*args, **kwargs):
3578 """SetShortHelp(self, String help) -> bool"""
3579 return _controls_.ToolBarToolBase_SetShortHelp(*args, **kwargs)
3580
3581 def SetLongHelp(*args, **kwargs):
3582 """SetLongHelp(self, String help) -> bool"""
3583 return _controls_.ToolBarToolBase_SetLongHelp(*args, **kwargs)
3584
3585 def SetNormalBitmap(*args, **kwargs):
3586 """SetNormalBitmap(self, Bitmap bmp)"""
3587 return _controls_.ToolBarToolBase_SetNormalBitmap(*args, **kwargs)
3588
3589 def SetDisabledBitmap(*args, **kwargs):
3590 """SetDisabledBitmap(self, Bitmap bmp)"""
3591 return _controls_.ToolBarToolBase_SetDisabledBitmap(*args, **kwargs)
3592
3593 def SetLabel(*args, **kwargs):
3594 """SetLabel(self, String label)"""
3595 return _controls_.ToolBarToolBase_SetLabel(*args, **kwargs)
3596
3597 def Detach(*args, **kwargs):
3598 """Detach(self)"""
3599 return _controls_.ToolBarToolBase_Detach(*args, **kwargs)
3600
3601 def Attach(*args, **kwargs):
3602 """Attach(self, ToolBarBase tbar)"""
3603 return _controls_.ToolBarToolBase_Attach(*args, **kwargs)
3604
3605 def GetClientData(*args, **kwargs):
3606 """GetClientData(self) -> PyObject"""
3607 return _controls_.ToolBarToolBase_GetClientData(*args, **kwargs)
3608
3609 def SetClientData(*args, **kwargs):
3610 """SetClientData(self, PyObject clientData)"""
3611 return _controls_.ToolBarToolBase_SetClientData(*args, **kwargs)
3612
3613 GetBitmap1 = GetNormalBitmap
3614 GetBitmap2 = GetDisabledBitmap
3615 SetBitmap1 = SetNormalBitmap
3616 SetBitmap2 = SetDisabledBitmap
3617
994453b8
RD
3618 Bitmap = property(GetBitmap,doc="See `GetBitmap`")
3619 ClientData = property(GetClientData,SetClientData,doc="See `GetClientData` and `SetClientData`")
3620 Control = property(GetControl,doc="See `GetControl`")
3621 DisabledBitmap = property(GetDisabledBitmap,SetDisabledBitmap,doc="See `GetDisabledBitmap` and `SetDisabledBitmap`")
3622 Id = property(GetId,doc="See `GetId`")
3623 Kind = property(GetKind,doc="See `GetKind`")
3624 Label = property(GetLabel,SetLabel,doc="See `GetLabel` and `SetLabel`")
3625 LongHelp = property(GetLongHelp,SetLongHelp,doc="See `GetLongHelp` and `SetLongHelp`")
3626 NormalBitmap = property(GetNormalBitmap,SetNormalBitmap,doc="See `GetNormalBitmap` and `SetNormalBitmap`")
3627 ShortHelp = property(GetShortHelp,SetShortHelp,doc="See `GetShortHelp` and `SetShortHelp`")
3628 Style = property(GetStyle,doc="See `GetStyle`")
3629 ToolBar = property(GetToolBar,doc="See `GetToolBar`")
2131d850 3630_controls_.ToolBarToolBase_swigregister(ToolBarToolBase)
d55e5bfc
RD
3631
3632class ToolBarBase(_core.Control):
093d3ff1 3633 """Proxy of C++ ToolBarBase class"""
554f62e9
RD
3634 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3635 def __init__(self): raise AttributeError, "No constructor defined"
3636 __repr__ = _swig_repr
d55e5bfc
RD
3637 def DoAddTool(*args, **kwargs):
3638 """
3639 DoAddTool(self, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3640 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
3641 String longHelp=EmptyString,
3642 PyObject clientData=None) -> ToolBarToolBase
3643 """
3644 return _controls_.ToolBarBase_DoAddTool(*args, **kwargs)
3645
3646 def DoInsertTool(*args, **kwargs):
3647 """
3648 DoInsertTool(self, size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3649 int kind=ITEM_NORMAL,
3650 String shortHelp=EmptyString, String longHelp=EmptyString,
3651 PyObject clientData=None) -> ToolBarToolBase
3652 """
3653 return _controls_.ToolBarBase_DoInsertTool(*args, **kwargs)
3654
3655 # These match the original Add methods for this class, kept for
3656 # backwards compatibility with versions < 2.3.3.
3657
3658
3659 def AddTool(self, id, bitmap,
3660 pushedBitmap = wx.NullBitmap,
3661 isToggle = 0,
3662 clientData = None,
3663 shortHelpString = '',
3664 longHelpString = '') :
3665 '''Old style method to add a tool to the toolbar.'''
3666 kind = wx.ITEM_NORMAL
3667 if isToggle: kind = wx.ITEM_CHECK
3668 return self.DoAddTool(id, '', bitmap, pushedBitmap, kind,
3669 shortHelpString, longHelpString, clientData)
3670
3671 def AddSimpleTool(self, id, bitmap,
3672 shortHelpString = '',
3673 longHelpString = '',
3674 isToggle = 0):
3675 '''Old style method to add a tool to the toolbar.'''
3676 kind = wx.ITEM_NORMAL
3677 if isToggle: kind = wx.ITEM_CHECK
3678 return self.DoAddTool(id, '', bitmap, wx.NullBitmap, kind,
3679 shortHelpString, longHelpString, None)
3680
3681 def InsertTool(self, pos, id, bitmap,
3682 pushedBitmap = wx.NullBitmap,
3683 isToggle = 0,
3684 clientData = None,
3685 shortHelpString = '',
3686 longHelpString = ''):
3687 '''Old style method to insert a tool in the toolbar.'''
3688 kind = wx.ITEM_NORMAL
3689 if isToggle: kind = wx.ITEM_CHECK
3690 return self.DoInsertTool(pos, id, '', bitmap, pushedBitmap, kind,
3691 shortHelpString, longHelpString, clientData)
3692
3693 def InsertSimpleTool(self, pos, id, bitmap,
3694 shortHelpString = '',
3695 longHelpString = '',
3696 isToggle = 0):
3697 '''Old style method to insert a tool in the toolbar.'''
3698 kind = wx.ITEM_NORMAL
3699 if isToggle: kind = wx.ITEM_CHECK
3700 return self.DoInsertTool(pos, id, '', bitmap, wx.NullBitmap, kind,
3701 shortHelpString, longHelpString, None)
3702
3703
3704 # The following are the new toolbar Add methods starting with
3705 # 2.3.3. They are renamed to have 'Label' in the name so as to be
3706 # able to keep backwards compatibility with using the above
3707 # methods. Eventually these should migrate to be the methods used
3708 # primarily and lose the 'Label' in the name...
3709
3710 def AddLabelTool(self, id, label, bitmap,
3711 bmpDisabled = wx.NullBitmap,
3712 kind = wx.ITEM_NORMAL,
3713 shortHelp = '', longHelp = '',
3714 clientData = None):
3715 '''
3716 The full AddTool() function.
3717
3718 If bmpDisabled is wx.NullBitmap, a shadowed version of the normal bitmap
3719 is created and used as the disabled image.
3720 '''
3721 return self.DoAddTool(id, label, bitmap, bmpDisabled, kind,
3722 shortHelp, longHelp, clientData)
3723
3724
3725 def InsertLabelTool(self, pos, id, label, bitmap,
3726 bmpDisabled = wx.NullBitmap,
3727 kind = wx.ITEM_NORMAL,
3728 shortHelp = '', longHelp = '',
3729 clientData = None):
3730 '''
3731 Insert the new tool at the given position, if pos == GetToolsCount(), it
3732 is equivalent to AddTool()
3733 '''
3734 return self.DoInsertTool(pos, id, label, bitmap, bmpDisabled, kind,
3735 shortHelp, longHelp, clientData)
3736
3737 def AddCheckLabelTool(self, id, label, bitmap,
3738 bmpDisabled = wx.NullBitmap,
3739 shortHelp = '', longHelp = '',
3740 clientData = None):
3741 '''Add a check tool, i.e. a tool which can be toggled'''
3742 return self.DoAddTool(id, label, bitmap, bmpDisabled, wx.ITEM_CHECK,
3743 shortHelp, longHelp, clientData)
3744
3745 def AddRadioLabelTool(self, id, label, bitmap,
3746 bmpDisabled = wx.NullBitmap,
3747 shortHelp = '', longHelp = '',
3748 clientData = None):
3749 '''
3750 Add a radio tool, i.e. a tool which can be toggled and releases any
3751 other toggled radio tools in the same group when it happens
3752 '''
3753 return self.DoAddTool(id, label, bitmap, bmpDisabled, wx.ITEM_RADIO,
3754 shortHelp, longHelp, clientData)
3755
3756
3757 # For consistency with the backwards compatible methods above, here are
3758 # some non-'Label' versions of the Check and Radio methods
248ed943 3759
d55e5bfc
RD
3760 def AddCheckTool(self, id, bitmap,
3761 bmpDisabled = wx.NullBitmap,
3762 shortHelp = '', longHelp = '',
3763 clientData = None):
3764 '''Add a check tool, i.e. a tool which can be toggled'''
3765 return self.DoAddTool(id, '', bitmap, bmpDisabled, wx.ITEM_CHECK,
3766 shortHelp, longHelp, clientData)
3767
3768 def AddRadioTool(self, id, bitmap,
3769 bmpDisabled = wx.NullBitmap,
3770 shortHelp = '', longHelp = '',
3771 clientData = None):
3772 '''
3773 Add a radio tool, i.e. a tool which can be toggled and releases any
3774 other toggled radio tools in the same group when it happens
3775 '''
3776 return self.DoAddTool(id, '', bitmap, bmpDisabled, wx.ITEM_RADIO,
3777 shortHelp, longHelp, clientData)
3778
3779 def AddToolItem(*args, **kwargs):
3780 """AddToolItem(self, ToolBarToolBase tool) -> ToolBarToolBase"""
3781 return _controls_.ToolBarBase_AddToolItem(*args, **kwargs)
3782
3783 def InsertToolItem(*args, **kwargs):
3784 """InsertToolItem(self, size_t pos, ToolBarToolBase tool) -> ToolBarToolBase"""
3785 return _controls_.ToolBarBase_InsertToolItem(*args, **kwargs)
3786
3787 def AddControl(*args, **kwargs):
3788 """AddControl(self, Control control) -> ToolBarToolBase"""
3789 return _controls_.ToolBarBase_AddControl(*args, **kwargs)
3790
3791 def InsertControl(*args, **kwargs):
3792 """InsertControl(self, size_t pos, Control control) -> ToolBarToolBase"""
3793 return _controls_.ToolBarBase_InsertControl(*args, **kwargs)
3794
3795 def FindControl(*args, **kwargs):
3796 """FindControl(self, int id) -> Control"""
3797 return _controls_.ToolBarBase_FindControl(*args, **kwargs)
3798
3799 def AddSeparator(*args, **kwargs):
3800 """AddSeparator(self) -> ToolBarToolBase"""
3801 return _controls_.ToolBarBase_AddSeparator(*args, **kwargs)
3802
3803 def InsertSeparator(*args, **kwargs):
3804 """InsertSeparator(self, size_t pos) -> ToolBarToolBase"""
3805 return _controls_.ToolBarBase_InsertSeparator(*args, **kwargs)
3806
3807 def RemoveTool(*args, **kwargs):
3808 """RemoveTool(self, int id) -> ToolBarToolBase"""
3809 return _controls_.ToolBarBase_RemoveTool(*args, **kwargs)
3810
3811 def DeleteToolByPos(*args, **kwargs):
3812 """DeleteToolByPos(self, size_t pos) -> bool"""
3813 return _controls_.ToolBarBase_DeleteToolByPos(*args, **kwargs)
3814
3815 def DeleteTool(*args, **kwargs):
3816 """DeleteTool(self, int id) -> bool"""
3817 return _controls_.ToolBarBase_DeleteTool(*args, **kwargs)
3818
3819 def ClearTools(*args, **kwargs):
3820 """ClearTools(self)"""
3821 return _controls_.ToolBarBase_ClearTools(*args, **kwargs)
3822
3823 def Realize(*args, **kwargs):
3824 """Realize(self) -> bool"""
3825 return _controls_.ToolBarBase_Realize(*args, **kwargs)
3826
3827 def EnableTool(*args, **kwargs):
3828 """EnableTool(self, int id, bool enable)"""
3829 return _controls_.ToolBarBase_EnableTool(*args, **kwargs)
3830
3831 def ToggleTool(*args, **kwargs):
3832 """ToggleTool(self, int id, bool toggle)"""
3833 return _controls_.ToolBarBase_ToggleTool(*args, **kwargs)
3834
3835 def SetToggle(*args, **kwargs):
3836 """SetToggle(self, int id, bool toggle)"""
3837 return _controls_.ToolBarBase_SetToggle(*args, **kwargs)
3838
3839 def GetToolClientData(*args, **kwargs):
3840 """GetToolClientData(self, int id) -> PyObject"""
3841 return _controls_.ToolBarBase_GetToolClientData(*args, **kwargs)
3842
3843 def SetToolClientData(*args, **kwargs):
3844 """SetToolClientData(self, int id, PyObject clientData)"""
3845 return _controls_.ToolBarBase_SetToolClientData(*args, **kwargs)
3846
3847 def GetToolPos(*args, **kwargs):
3848 """GetToolPos(self, int id) -> int"""
3849 return _controls_.ToolBarBase_GetToolPos(*args, **kwargs)
3850
3851 def GetToolState(*args, **kwargs):
3852 """GetToolState(self, int id) -> bool"""
3853 return _controls_.ToolBarBase_GetToolState(*args, **kwargs)
3854
3855 def GetToolEnabled(*args, **kwargs):
3856 """GetToolEnabled(self, int id) -> bool"""
3857 return _controls_.ToolBarBase_GetToolEnabled(*args, **kwargs)
3858
3859 def SetToolShortHelp(*args, **kwargs):
3860 """SetToolShortHelp(self, int id, String helpString)"""
3861 return _controls_.ToolBarBase_SetToolShortHelp(*args, **kwargs)
3862
3863 def GetToolShortHelp(*args, **kwargs):
3864 """GetToolShortHelp(self, int id) -> String"""
3865 return _controls_.ToolBarBase_GetToolShortHelp(*args, **kwargs)
3866
3867 def SetToolLongHelp(*args, **kwargs):
3868 """SetToolLongHelp(self, int id, String helpString)"""
3869 return _controls_.ToolBarBase_SetToolLongHelp(*args, **kwargs)
3870
3871 def GetToolLongHelp(*args, **kwargs):
3872 """GetToolLongHelp(self, int id) -> String"""
3873 return _controls_.ToolBarBase_GetToolLongHelp(*args, **kwargs)
3874
3875 def SetMarginsXY(*args, **kwargs):
3876 """SetMarginsXY(self, int x, int y)"""
3877 return _controls_.ToolBarBase_SetMarginsXY(*args, **kwargs)
3878
3879 def SetMargins(*args, **kwargs):
3880 """SetMargins(self, Size size)"""
3881 return _controls_.ToolBarBase_SetMargins(*args, **kwargs)
3882
3883 def SetToolPacking(*args, **kwargs):
3884 """SetToolPacking(self, int packing)"""
3885 return _controls_.ToolBarBase_SetToolPacking(*args, **kwargs)
3886
3887 def SetToolSeparation(*args, **kwargs):
3888 """SetToolSeparation(self, int separation)"""
3889 return _controls_.ToolBarBase_SetToolSeparation(*args, **kwargs)
3890
3891 def GetToolMargins(*args, **kwargs):
3892 """GetToolMargins(self) -> Size"""
3893 return _controls_.ToolBarBase_GetToolMargins(*args, **kwargs)
3894
3895 def GetMargins(*args, **kwargs):
3896 """GetMargins(self) -> Size"""
3897 return _controls_.ToolBarBase_GetMargins(*args, **kwargs)
3898
3899 def GetToolPacking(*args, **kwargs):
3900 """GetToolPacking(self) -> int"""
3901 return _controls_.ToolBarBase_GetToolPacking(*args, **kwargs)
3902
3903 def GetToolSeparation(*args, **kwargs):
3904 """GetToolSeparation(self) -> int"""
3905 return _controls_.ToolBarBase_GetToolSeparation(*args, **kwargs)
3906
3907 def SetRows(*args, **kwargs):
3908 """SetRows(self, int nRows)"""
3909 return _controls_.ToolBarBase_SetRows(*args, **kwargs)
3910
3911 def SetMaxRowsCols(*args, **kwargs):
3912 """SetMaxRowsCols(self, int rows, int cols)"""
3913 return _controls_.ToolBarBase_SetMaxRowsCols(*args, **kwargs)
3914
3915 def GetMaxRows(*args, **kwargs):
3916 """GetMaxRows(self) -> int"""
3917 return _controls_.ToolBarBase_GetMaxRows(*args, **kwargs)
3918
3919 def GetMaxCols(*args, **kwargs):
3920 """GetMaxCols(self) -> int"""
3921 return _controls_.ToolBarBase_GetMaxCols(*args, **kwargs)
3922
3923 def SetToolBitmapSize(*args, **kwargs):
3924 """SetToolBitmapSize(self, Size size)"""
3925 return _controls_.ToolBarBase_SetToolBitmapSize(*args, **kwargs)
3926
3927 def GetToolBitmapSize(*args, **kwargs):
3928 """GetToolBitmapSize(self) -> Size"""
3929 return _controls_.ToolBarBase_GetToolBitmapSize(*args, **kwargs)
3930
3931 def GetToolSize(*args, **kwargs):
3932 """GetToolSize(self) -> Size"""
3933 return _controls_.ToolBarBase_GetToolSize(*args, **kwargs)
3934
3935 def FindToolForPosition(*args, **kwargs):
3936 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3937 return _controls_.ToolBarBase_FindToolForPosition(*args, **kwargs)
3938
3939 def FindById(*args, **kwargs):
3940 """FindById(self, int toolid) -> ToolBarToolBase"""
3941 return _controls_.ToolBarBase_FindById(*args, **kwargs)
3942
3943 def IsVertical(*args, **kwargs):
3944 """IsVertical(self) -> bool"""
3945 return _controls_.ToolBarBase_IsVertical(*args, **kwargs)
3946
554f62e9
RD
3947 def GetToolsCount(*args, **kwargs):
3948 """GetToolsCount(self) -> size_t"""
3949 return _controls_.ToolBarBase_GetToolsCount(*args, **kwargs)
d55e5bfc 3950
994453b8
RD
3951 Margins = property(GetMargins,SetMargins,doc="See `GetMargins` and `SetMargins`")
3952 MaxCols = property(GetMaxCols,doc="See `GetMaxCols`")
3953 MaxRows = property(GetMaxRows,doc="See `GetMaxRows`")
3954 ToolBitmapSize = property(GetToolBitmapSize,SetToolBitmapSize,doc="See `GetToolBitmapSize` and `SetToolBitmapSize`")
3955 ToolMargins = property(GetToolMargins,doc="See `GetToolMargins`")
3956 ToolPacking = property(GetToolPacking,SetToolPacking,doc="See `GetToolPacking` and `SetToolPacking`")
3957 ToolSeparation = property(GetToolSeparation,SetToolSeparation,doc="See `GetToolSeparation` and `SetToolSeparation`")
3958 ToolSize = property(GetToolSize,doc="See `GetToolSize`")
3959 ToolsCount = property(GetToolsCount,doc="See `GetToolsCount`")
2131d850 3960_controls_.ToolBarBase_swigregister(ToolBarBase)
d55e5bfc
RD
3961
3962class ToolBar(ToolBarBase):
093d3ff1 3963 """Proxy of C++ ToolBar class"""
554f62e9
RD
3964 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3965 __repr__ = _swig_repr
3966 def __init__(self, *args, **kwargs):
d55e5bfc 3967 """
248ed943
RD
3968 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3969 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
d55e5bfc
RD
3970 String name=wxPyToolBarNameStr) -> ToolBar
3971 """
554f62e9 3972 _controls_.ToolBar_swiginit(self,_controls_.new_ToolBar(*args, **kwargs))
d55e5bfc
RD
3973 self._setOORInfo(self)
3974
3975 def Create(*args, **kwargs):
3976 """
248ed943
RD
3977 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3978 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
d55e5bfc
RD
3979 String name=wxPyToolBarNameStr) -> bool
3980 """
3981 return _controls_.ToolBar_Create(*args, **kwargs)
3982
f20a2e1f 3983 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
3984 """
3985 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3986
3987 Get the default attributes for this class. This is useful if you want
3988 to use the same font or colour in your own control as in a standard
3989 control -- which is a much better idea than hard coding specific
3990 colours or fonts which might look completely out of place on the
3991 user's system, especially if it uses themes.
3992
3993 The variant parameter is only relevant under Mac currently and is
3994 ignore under other platforms. Under Mac, it will change the size of
3995 the returned font. See `wx.Window.SetWindowVariant` for more about
3996 this.
3997 """
f20a2e1f
RD
3998 return _controls_.ToolBar_GetClassDefaultAttributes(*args, **kwargs)
3999
4000 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2131d850 4001_controls_.ToolBar_swigregister(ToolBar)
d55e5bfc
RD
4002
4003def PreToolBar(*args, **kwargs):
4004 """PreToolBar() -> ToolBar"""
4005 val = _controls_.new_PreToolBar(*args, **kwargs)
d55e5bfc
RD
4006 return val
4007
f20a2e1f 4008def ToolBar_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 4009 """
19272049
RD
4010 ToolBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4011
4012 Get the default attributes for this class. This is useful if you want
4013 to use the same font or colour in your own control as in a standard
4014 control -- which is a much better idea than hard coding specific
4015 colours or fonts which might look completely out of place on the
4016 user's system, especially if it uses themes.
4017
4018 The variant parameter is only relevant under Mac currently and is
4019 ignore under other platforms. Under Mac, it will change the size of
4020 the returned font. See `wx.Window.SetWindowVariant` for more about
4021 this.
4022 """
554f62e9 4023 return _controls_.ToolBar_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 4024
d55e5bfc
RD
4025#---------------------------------------------------------------------------
4026
4027LC_VRULES = _controls_.LC_VRULES
4028LC_HRULES = _controls_.LC_HRULES
4029LC_ICON = _controls_.LC_ICON
4030LC_SMALL_ICON = _controls_.LC_SMALL_ICON
4031LC_LIST = _controls_.LC_LIST
4032LC_REPORT = _controls_.LC_REPORT
4033LC_ALIGN_TOP = _controls_.LC_ALIGN_TOP
4034LC_ALIGN_LEFT = _controls_.LC_ALIGN_LEFT
4035LC_AUTOARRANGE = _controls_.LC_AUTOARRANGE
4036LC_VIRTUAL = _controls_.LC_VIRTUAL
4037LC_EDIT_LABELS = _controls_.LC_EDIT_LABELS
4038LC_NO_HEADER = _controls_.LC_NO_HEADER
4039LC_NO_SORT_HEADER = _controls_.LC_NO_SORT_HEADER
4040LC_SINGLE_SEL = _controls_.LC_SINGLE_SEL
4041LC_SORT_ASCENDING = _controls_.LC_SORT_ASCENDING
4042LC_SORT_DESCENDING = _controls_.LC_SORT_DESCENDING
4043LC_MASK_TYPE = _controls_.LC_MASK_TYPE
4044LC_MASK_ALIGN = _controls_.LC_MASK_ALIGN
4045LC_MASK_SORT = _controls_.LC_MASK_SORT
4046LIST_MASK_STATE = _controls_.LIST_MASK_STATE
4047LIST_MASK_TEXT = _controls_.LIST_MASK_TEXT
4048LIST_MASK_IMAGE = _controls_.LIST_MASK_IMAGE
4049LIST_MASK_DATA = _controls_.LIST_MASK_DATA
4050LIST_SET_ITEM = _controls_.LIST_SET_ITEM
4051LIST_MASK_WIDTH = _controls_.LIST_MASK_WIDTH
4052LIST_MASK_FORMAT = _controls_.LIST_MASK_FORMAT
4053LIST_STATE_DONTCARE = _controls_.LIST_STATE_DONTCARE
4054LIST_STATE_DROPHILITED = _controls_.LIST_STATE_DROPHILITED
4055LIST_STATE_FOCUSED = _controls_.LIST_STATE_FOCUSED
4056LIST_STATE_SELECTED = _controls_.LIST_STATE_SELECTED
4057LIST_STATE_CUT = _controls_.LIST_STATE_CUT
4058LIST_STATE_DISABLED = _controls_.LIST_STATE_DISABLED
4059LIST_STATE_FILTERED = _controls_.LIST_STATE_FILTERED
4060LIST_STATE_INUSE = _controls_.LIST_STATE_INUSE
4061LIST_STATE_PICKED = _controls_.LIST_STATE_PICKED
4062LIST_STATE_SOURCE = _controls_.LIST_STATE_SOURCE
4063LIST_HITTEST_ABOVE = _controls_.LIST_HITTEST_ABOVE
4064LIST_HITTEST_BELOW = _controls_.LIST_HITTEST_BELOW
4065LIST_HITTEST_NOWHERE = _controls_.LIST_HITTEST_NOWHERE
4066LIST_HITTEST_ONITEMICON = _controls_.LIST_HITTEST_ONITEMICON
4067LIST_HITTEST_ONITEMLABEL = _controls_.LIST_HITTEST_ONITEMLABEL
4068LIST_HITTEST_ONITEMRIGHT = _controls_.LIST_HITTEST_ONITEMRIGHT
4069LIST_HITTEST_ONITEMSTATEICON = _controls_.LIST_HITTEST_ONITEMSTATEICON
4070LIST_HITTEST_TOLEFT = _controls_.LIST_HITTEST_TOLEFT
4071LIST_HITTEST_TORIGHT = _controls_.LIST_HITTEST_TORIGHT
4072LIST_HITTEST_ONITEM = _controls_.LIST_HITTEST_ONITEM
704eda0c 4073LIST_GETSUBITEMRECT_WHOLEITEM = _controls_.LIST_GETSUBITEMRECT_WHOLEITEM
d55e5bfc
RD
4074LIST_NEXT_ABOVE = _controls_.LIST_NEXT_ABOVE
4075LIST_NEXT_ALL = _controls_.LIST_NEXT_ALL
4076LIST_NEXT_BELOW = _controls_.LIST_NEXT_BELOW
4077LIST_NEXT_LEFT = _controls_.LIST_NEXT_LEFT
4078LIST_NEXT_RIGHT = _controls_.LIST_NEXT_RIGHT
4079LIST_ALIGN_DEFAULT = _controls_.LIST_ALIGN_DEFAULT
4080LIST_ALIGN_LEFT = _controls_.LIST_ALIGN_LEFT
4081LIST_ALIGN_TOP = _controls_.LIST_ALIGN_TOP
4082LIST_ALIGN_SNAP_TO_GRID = _controls_.LIST_ALIGN_SNAP_TO_GRID
4083LIST_FORMAT_LEFT = _controls_.LIST_FORMAT_LEFT
4084LIST_FORMAT_RIGHT = _controls_.LIST_FORMAT_RIGHT
4085LIST_FORMAT_CENTRE = _controls_.LIST_FORMAT_CENTRE
4086LIST_FORMAT_CENTER = _controls_.LIST_FORMAT_CENTER
4087LIST_AUTOSIZE = _controls_.LIST_AUTOSIZE
4088LIST_AUTOSIZE_USEHEADER = _controls_.LIST_AUTOSIZE_USEHEADER
4089LIST_RECT_BOUNDS = _controls_.LIST_RECT_BOUNDS
4090LIST_RECT_ICON = _controls_.LIST_RECT_ICON
4091LIST_RECT_LABEL = _controls_.LIST_RECT_LABEL
4092LIST_FIND_UP = _controls_.LIST_FIND_UP
4093LIST_FIND_DOWN = _controls_.LIST_FIND_DOWN
4094LIST_FIND_LEFT = _controls_.LIST_FIND_LEFT
4095LIST_FIND_RIGHT = _controls_.LIST_FIND_RIGHT
4096#---------------------------------------------------------------------------
4097
4098class ListItemAttr(object):
093d3ff1 4099 """Proxy of C++ ListItemAttr class"""
554f62e9
RD
4100 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4101 __repr__ = _swig_repr
4102 def __init__(self, *args, **kwargs):
d55e5bfc
RD
4103 """
4104 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
4105 Font font=wxNullFont) -> ListItemAttr
4106 """
554f62e9
RD
4107 _controls_.ListItemAttr_swiginit(self,_controls_.new_ListItemAttr(*args, **kwargs))
4108 __swig_destroy__ = _controls_.delete_ListItemAttr
4109 __del__ = lambda self : None;
d55e5bfc
RD
4110 def SetTextColour(*args, **kwargs):
4111 """SetTextColour(self, Colour colText)"""
4112 return _controls_.ListItemAttr_SetTextColour(*args, **kwargs)
4113
4114 def SetBackgroundColour(*args, **kwargs):
4115 """SetBackgroundColour(self, Colour colBack)"""
4116 return _controls_.ListItemAttr_SetBackgroundColour(*args, **kwargs)
4117
4118 def SetFont(*args, **kwargs):
4119 """SetFont(self, Font font)"""
4120 return _controls_.ListItemAttr_SetFont(*args, **kwargs)
4121
4122 def HasTextColour(*args, **kwargs):
4123 """HasTextColour(self) -> bool"""
4124 return _controls_.ListItemAttr_HasTextColour(*args, **kwargs)
4125
4126 def HasBackgroundColour(*args, **kwargs):
4127 """HasBackgroundColour(self) -> bool"""
4128 return _controls_.ListItemAttr_HasBackgroundColour(*args, **kwargs)
4129
4130 def HasFont(*args, **kwargs):
4131 """HasFont(self) -> bool"""
4132 return _controls_.ListItemAttr_HasFont(*args, **kwargs)
4133
4134 def GetTextColour(*args, **kwargs):
4135 """GetTextColour(self) -> Colour"""
4136 return _controls_.ListItemAttr_GetTextColour(*args, **kwargs)
4137
4138 def GetBackgroundColour(*args, **kwargs):
4139 """GetBackgroundColour(self) -> Colour"""
4140 return _controls_.ListItemAttr_GetBackgroundColour(*args, **kwargs)
4141
4142 def GetFont(*args, **kwargs):
4143 """GetFont(self) -> Font"""
4144 return _controls_.ListItemAttr_GetFont(*args, **kwargs)
4145
7e08d4ef
RD
4146 def AssignFrom(*args, **kwargs):
4147 """AssignFrom(self, ListItemAttr source)"""
4148 return _controls_.ListItemAttr_AssignFrom(*args, **kwargs)
4149
d55e5bfc
RD
4150 def Destroy(*args, **kwargs):
4151 """Destroy(self)"""
b39fe951
RD
4152 args[0].this.own(False)
4153 return _controls_.ListItemAttr_Destroy(*args, **kwargs)
d55e5bfc 4154
97ab0f6a
RD
4155 BackgroundColour = property(GetBackgroundColour,SetBackgroundColour,doc="See `GetBackgroundColour` and `SetBackgroundColour`")
4156 Font = property(GetFont,SetFont,doc="See `GetFont` and `SetFont`")
4157 TextColour = property(GetTextColour,SetTextColour,doc="See `GetTextColour` and `SetTextColour`")
2131d850 4158_controls_.ListItemAttr_swigregister(ListItemAttr)
d55e5bfc
RD
4159ListCtrlNameStr = cvar.ListCtrlNameStr
4160
4161#---------------------------------------------------------------------------
4162
4163class ListItem(_core.Object):
093d3ff1 4164 """Proxy of C++ ListItem class"""
554f62e9
RD
4165 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4166 __repr__ = _swig_repr
4167 def __init__(self, *args, **kwargs):
d55e5bfc 4168 """__init__(self) -> ListItem"""
554f62e9
RD
4169 _controls_.ListItem_swiginit(self,_controls_.new_ListItem(*args, **kwargs))
4170 __swig_destroy__ = _controls_.delete_ListItem
4171 __del__ = lambda self : None;
d55e5bfc
RD
4172 def Clear(*args, **kwargs):
4173 """Clear(self)"""
4174 return _controls_.ListItem_Clear(*args, **kwargs)
4175
4176 def ClearAttributes(*args, **kwargs):
4177 """ClearAttributes(self)"""
4178 return _controls_.ListItem_ClearAttributes(*args, **kwargs)
4179
4180 def SetMask(*args, **kwargs):
4181 """SetMask(self, long mask)"""
4182 return _controls_.ListItem_SetMask(*args, **kwargs)
4183
4184 def SetId(*args, **kwargs):
4185 """SetId(self, long id)"""
4186 return _controls_.ListItem_SetId(*args, **kwargs)
4187
4188 def SetColumn(*args, **kwargs):
4189 """SetColumn(self, int col)"""
4190 return _controls_.ListItem_SetColumn(*args, **kwargs)
4191
4192 def SetState(*args, **kwargs):
4193 """SetState(self, long state)"""
4194 return _controls_.ListItem_SetState(*args, **kwargs)
4195
4196 def SetStateMask(*args, **kwargs):
4197 """SetStateMask(self, long stateMask)"""
4198 return _controls_.ListItem_SetStateMask(*args, **kwargs)
4199
4200 def SetText(*args, **kwargs):
4201 """SetText(self, String text)"""
4202 return _controls_.ListItem_SetText(*args, **kwargs)
4203
4204 def SetImage(*args, **kwargs):
4205 """SetImage(self, int image)"""
4206 return _controls_.ListItem_SetImage(*args, **kwargs)
4207
4208 def SetData(*args, **kwargs):
4209 """SetData(self, long data)"""
4210 return _controls_.ListItem_SetData(*args, **kwargs)
4211
4212 def SetWidth(*args, **kwargs):
4213 """SetWidth(self, int width)"""
4214 return _controls_.ListItem_SetWidth(*args, **kwargs)
4215
4216 def SetAlign(*args, **kwargs):
4217 """SetAlign(self, int align)"""
4218 return _controls_.ListItem_SetAlign(*args, **kwargs)
4219
4220 def SetTextColour(*args, **kwargs):
4221 """SetTextColour(self, Colour colText)"""
4222 return _controls_.ListItem_SetTextColour(*args, **kwargs)
4223
4224 def SetBackgroundColour(*args, **kwargs):
4225 """SetBackgroundColour(self, Colour colBack)"""
4226 return _controls_.ListItem_SetBackgroundColour(*args, **kwargs)
4227
4228 def SetFont(*args, **kwargs):
4229 """SetFont(self, Font font)"""
4230 return _controls_.ListItem_SetFont(*args, **kwargs)
4231
4232 def GetMask(*args, **kwargs):
4233 """GetMask(self) -> long"""
4234 return _controls_.ListItem_GetMask(*args, **kwargs)
4235
4236 def GetId(*args, **kwargs):
4237 """GetId(self) -> long"""
4238 return _controls_.ListItem_GetId(*args, **kwargs)
4239
4240 def GetColumn(*args, **kwargs):
4241 """GetColumn(self) -> int"""
4242 return _controls_.ListItem_GetColumn(*args, **kwargs)
4243
4244 def GetState(*args, **kwargs):
4245 """GetState(self) -> long"""
4246 return _controls_.ListItem_GetState(*args, **kwargs)
4247
4248 def GetText(*args, **kwargs):
4249 """GetText(self) -> String"""
4250 return _controls_.ListItem_GetText(*args, **kwargs)
4251
4252 def GetImage(*args, **kwargs):
4253 """GetImage(self) -> int"""
4254 return _controls_.ListItem_GetImage(*args, **kwargs)
4255
4256 def GetData(*args, **kwargs):
4257 """GetData(self) -> long"""
4258 return _controls_.ListItem_GetData(*args, **kwargs)
4259
4260 def GetWidth(*args, **kwargs):
4261 """GetWidth(self) -> int"""
4262 return _controls_.ListItem_GetWidth(*args, **kwargs)
4263
4264 def GetAlign(*args, **kwargs):
4265 """GetAlign(self) -> int"""
4266 return _controls_.ListItem_GetAlign(*args, **kwargs)
4267
4268 def GetAttributes(*args, **kwargs):
4269 """GetAttributes(self) -> ListItemAttr"""
4270 return _controls_.ListItem_GetAttributes(*args, **kwargs)
4271
4272 def HasAttributes(*args, **kwargs):
4273 """HasAttributes(self) -> bool"""
4274 return _controls_.ListItem_HasAttributes(*args, **kwargs)
4275
4276 def GetTextColour(*args, **kwargs):
4277 """GetTextColour(self) -> Colour"""
4278 return _controls_.ListItem_GetTextColour(*args, **kwargs)
4279
4280 def GetBackgroundColour(*args, **kwargs):
4281 """GetBackgroundColour(self) -> Colour"""
4282 return _controls_.ListItem_GetBackgroundColour(*args, **kwargs)
4283
4284 def GetFont(*args, **kwargs):
4285 """GetFont(self) -> Font"""
4286 return _controls_.ListItem_GetFont(*args, **kwargs)
4287
4288 m_mask = property(_controls_.ListItem_m_mask_get, _controls_.ListItem_m_mask_set)
4289 m_itemId = property(_controls_.ListItem_m_itemId_get, _controls_.ListItem_m_itemId_set)
4290 m_col = property(_controls_.ListItem_m_col_get, _controls_.ListItem_m_col_set)
4291 m_state = property(_controls_.ListItem_m_state_get, _controls_.ListItem_m_state_set)
4292 m_stateMask = property(_controls_.ListItem_m_stateMask_get, _controls_.ListItem_m_stateMask_set)
4293 m_text = property(_controls_.ListItem_m_text_get, _controls_.ListItem_m_text_set)
4294 m_image = property(_controls_.ListItem_m_image_get, _controls_.ListItem_m_image_set)
4295 m_data = property(_controls_.ListItem_m_data_get, _controls_.ListItem_m_data_set)
4296 m_format = property(_controls_.ListItem_m_format_get, _controls_.ListItem_m_format_set)
4297 m_width = property(_controls_.ListItem_m_width_get, _controls_.ListItem_m_width_set)
97ab0f6a
RD
4298 Align = property(GetAlign,SetAlign,doc="See `GetAlign` and `SetAlign`")
4299 Attributes = property(GetAttributes,doc="See `GetAttributes`")
4300 BackgroundColour = property(GetBackgroundColour,SetBackgroundColour,doc="See `GetBackgroundColour` and `SetBackgroundColour`")
4301 Column = property(GetColumn,SetColumn,doc="See `GetColumn` and `SetColumn`")
4302 Data = property(GetData,SetData,doc="See `GetData` and `SetData`")
4303 Font = property(GetFont,SetFont,doc="See `GetFont` and `SetFont`")
4304 Id = property(GetId,SetId,doc="See `GetId` and `SetId`")
4305 Image = property(GetImage,SetImage,doc="See `GetImage` and `SetImage`")
4306 Mask = property(GetMask,SetMask,doc="See `GetMask` and `SetMask`")
4307 State = property(GetState,SetState,doc="See `GetState` and `SetState`")
4308 Text = property(GetText,SetText,doc="See `GetText` and `SetText`")
4309 TextColour = property(GetTextColour,SetTextColour,doc="See `GetTextColour` and `SetTextColour`")
4310 Width = property(GetWidth,SetWidth,doc="See `GetWidth` and `SetWidth`")
2131d850 4311_controls_.ListItem_swigregister(ListItem)
d55e5bfc
RD
4312
4313#---------------------------------------------------------------------------
4314
4315class ListEvent(_core.NotifyEvent):
093d3ff1 4316 """Proxy of C++ ListEvent class"""
554f62e9
RD
4317 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4318 __repr__ = _swig_repr
4319 def __init__(self, *args, **kwargs):
f460c29d 4320 """__init__(self, EventType commandType=wxEVT_NULL, int id=0) -> ListEvent"""
554f62e9 4321 _controls_.ListEvent_swiginit(self,_controls_.new_ListEvent(*args, **kwargs))
d55e5bfc
RD
4322 m_code = property(_controls_.ListEvent_m_code_get, _controls_.ListEvent_m_code_set)
4323 m_oldItemIndex = property(_controls_.ListEvent_m_oldItemIndex_get, _controls_.ListEvent_m_oldItemIndex_set)
4324 m_itemIndex = property(_controls_.ListEvent_m_itemIndex_get, _controls_.ListEvent_m_itemIndex_set)
4325 m_col = property(_controls_.ListEvent_m_col_get, _controls_.ListEvent_m_col_set)
4326 m_pointDrag = property(_controls_.ListEvent_m_pointDrag_get, _controls_.ListEvent_m_pointDrag_set)
4327 m_item = property(_controls_.ListEvent_m_item_get)
4328 def GetKeyCode(*args, **kwargs):
4329 """GetKeyCode(self) -> int"""
4330 return _controls_.ListEvent_GetKeyCode(*args, **kwargs)
4331
4332 GetCode = GetKeyCode
4333 def GetIndex(*args, **kwargs):
4334 """GetIndex(self) -> long"""
4335 return _controls_.ListEvent_GetIndex(*args, **kwargs)
4336
4337 def GetColumn(*args, **kwargs):
4338 """GetColumn(self) -> int"""
4339 return _controls_.ListEvent_GetColumn(*args, **kwargs)
4340
4341 def GetPoint(*args, **kwargs):
4342 """GetPoint(self) -> Point"""
4343 return _controls_.ListEvent_GetPoint(*args, **kwargs)
4344
4345 GetPosition = GetPoint
4346 def GetLabel(*args, **kwargs):
4347 """GetLabel(self) -> String"""
4348 return _controls_.ListEvent_GetLabel(*args, **kwargs)
4349
4350 def GetText(*args, **kwargs):
4351 """GetText(self) -> String"""
4352 return _controls_.ListEvent_GetText(*args, **kwargs)
4353
4354 def GetImage(*args, **kwargs):
4355 """GetImage(self) -> int"""
4356 return _controls_.ListEvent_GetImage(*args, **kwargs)
4357
4358 def GetData(*args, **kwargs):
4359 """GetData(self) -> long"""
4360 return _controls_.ListEvent_GetData(*args, **kwargs)
4361
4362 def GetMask(*args, **kwargs):
4363 """GetMask(self) -> long"""
4364 return _controls_.ListEvent_GetMask(*args, **kwargs)
4365
4366 def GetItem(*args, **kwargs):
4367 """GetItem(self) -> ListItem"""
4368 return _controls_.ListEvent_GetItem(*args, **kwargs)
4369
4370 def GetCacheFrom(*args, **kwargs):
4371 """GetCacheFrom(self) -> long"""
4372 return _controls_.ListEvent_GetCacheFrom(*args, **kwargs)
4373
4374 def GetCacheTo(*args, **kwargs):
4375 """GetCacheTo(self) -> long"""
4376 return _controls_.ListEvent_GetCacheTo(*args, **kwargs)
4377
4378 def IsEditCancelled(*args, **kwargs):
4379 """IsEditCancelled(self) -> bool"""
4380 return _controls_.ListEvent_IsEditCancelled(*args, **kwargs)
4381
4382 def SetEditCanceled(*args, **kwargs):
4383 """SetEditCanceled(self, bool editCancelled)"""
4384 return _controls_.ListEvent_SetEditCanceled(*args, **kwargs)
4385
97ab0f6a
RD
4386 CacheFrom = property(GetCacheFrom,doc="See `GetCacheFrom`")
4387 CacheTo = property(GetCacheTo,doc="See `GetCacheTo`")
4388 Column = property(GetColumn,doc="See `GetColumn`")
4389 Data = property(GetData,doc="See `GetData`")
4390 Image = property(GetImage,doc="See `GetImage`")
4391 Index = property(GetIndex,doc="See `GetIndex`")
4392 Item = property(GetItem,doc="See `GetItem`")
4393 KeyCode = property(GetKeyCode,doc="See `GetKeyCode`")
4394 Label = property(GetLabel,doc="See `GetLabel`")
4395 Mask = property(GetMask,doc="See `GetMask`")
4396 Point = property(GetPoint,doc="See `GetPoint`")
4397 Text = property(GetText,doc="See `GetText`")
2131d850 4398_controls_.ListEvent_swigregister(ListEvent)
d55e5bfc
RD
4399
4400wxEVT_COMMAND_LIST_BEGIN_DRAG = _controls_.wxEVT_COMMAND_LIST_BEGIN_DRAG
4401wxEVT_COMMAND_LIST_BEGIN_RDRAG = _controls_.wxEVT_COMMAND_LIST_BEGIN_RDRAG
4402wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT = _controls_.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
4403wxEVT_COMMAND_LIST_END_LABEL_EDIT = _controls_.wxEVT_COMMAND_LIST_END_LABEL_EDIT
4404wxEVT_COMMAND_LIST_DELETE_ITEM = _controls_.wxEVT_COMMAND_LIST_DELETE_ITEM
4405wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS = _controls_.wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
d55e5bfc
RD
4406wxEVT_COMMAND_LIST_ITEM_SELECTED = _controls_.wxEVT_COMMAND_LIST_ITEM_SELECTED
4407wxEVT_COMMAND_LIST_ITEM_DESELECTED = _controls_.wxEVT_COMMAND_LIST_ITEM_DESELECTED
4408wxEVT_COMMAND_LIST_KEY_DOWN = _controls_.wxEVT_COMMAND_LIST_KEY_DOWN
4409wxEVT_COMMAND_LIST_INSERT_ITEM = _controls_.wxEVT_COMMAND_LIST_INSERT_ITEM
4410wxEVT_COMMAND_LIST_COL_CLICK = _controls_.wxEVT_COMMAND_LIST_COL_CLICK
4411wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK = _controls_.wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
4412wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK = _controls_.wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
4413wxEVT_COMMAND_LIST_ITEM_ACTIVATED = _controls_.wxEVT_COMMAND_LIST_ITEM_ACTIVATED
4414wxEVT_COMMAND_LIST_CACHE_HINT = _controls_.wxEVT_COMMAND_LIST_CACHE_HINT
4415wxEVT_COMMAND_LIST_COL_RIGHT_CLICK = _controls_.wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
4416wxEVT_COMMAND_LIST_COL_BEGIN_DRAG = _controls_.wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
4417wxEVT_COMMAND_LIST_COL_DRAGGING = _controls_.wxEVT_COMMAND_LIST_COL_DRAGGING
4418wxEVT_COMMAND_LIST_COL_END_DRAG = _controls_.wxEVT_COMMAND_LIST_COL_END_DRAG
4419wxEVT_COMMAND_LIST_ITEM_FOCUSED = _controls_.wxEVT_COMMAND_LIST_ITEM_FOCUSED
4420EVT_LIST_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG , 1)
4421EVT_LIST_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG , 1)
4422EVT_LIST_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT , 1)
4423EVT_LIST_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT , 1)
4424EVT_LIST_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM , 1)
4425EVT_LIST_DELETE_ALL_ITEMS = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS , 1)
2f91e3df
KO
4426
4427
4428
4429
d55e5bfc
RD
4430EVT_LIST_ITEM_SELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED , 1)
4431EVT_LIST_ITEM_DESELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED , 1)
4432EVT_LIST_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN , 1)
4433EVT_LIST_INSERT_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM , 1)
4434EVT_LIST_COL_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK , 1)
4435EVT_LIST_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK , 1)
4436EVT_LIST_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, 1)
4437EVT_LIST_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED , 1)
4438EVT_LIST_CACHE_HINT = wx.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT , 1)
4439EVT_LIST_COL_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK , 1)
4440EVT_LIST_COL_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG , 1)
4441EVT_LIST_COL_DRAGGING = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING , 1)
4442EVT_LIST_COL_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG , 1)
4443EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED , 1)
4444
2f91e3df
KO
4445
4446
4447
84f85550 4448
d55e5bfc
RD
4449#---------------------------------------------------------------------------
4450
4451class ListCtrl(_core.Control):
093d3ff1 4452 """Proxy of C++ ListCtrl class"""
554f62e9
RD
4453 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4454 __repr__ = _swig_repr
4455 def __init__(self, *args, **kwargs):
d55e5bfc
RD
4456 """
4457 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4458 Size size=DefaultSize, long style=LC_ICON,
4459 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListCtrl
4460 """
554f62e9 4461 _controls_.ListCtrl_swiginit(self,_controls_.new_ListCtrl(*args, **kwargs))
c25f90f6 4462 self._setOORInfo(self);ListCtrl._setCallbackInfo(self, self, ListCtrl)
d55e5bfc
RD
4463
4464 def Create(*args, **kwargs):
4465 """
4466 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4467 Size size=DefaultSize, long style=LC_ICON,
4468 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4469
4470 Do the 2nd phase and create the GUI control.
4471 """
4472 return _controls_.ListCtrl_Create(*args, **kwargs)
4473
4474 def _setCallbackInfo(*args, **kwargs):
4475 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4476 return _controls_.ListCtrl__setCallbackInfo(*args, **kwargs)
4477
d55e5bfc
RD
4478 def GetColumn(*args, **kwargs):
4479 """GetColumn(self, int col) -> ListItem"""
4480 val = _controls_.ListCtrl_GetColumn(*args, **kwargs)
4481 if val is not None: val.thisown = 1
4482 return val
4483
4484 def SetColumn(*args, **kwargs):
4485 """SetColumn(self, int col, ListItem item) -> bool"""
4486 return _controls_.ListCtrl_SetColumn(*args, **kwargs)
4487
4488 def GetColumnWidth(*args, **kwargs):
4489 """GetColumnWidth(self, int col) -> int"""
4490 return _controls_.ListCtrl_GetColumnWidth(*args, **kwargs)
4491
4492 def SetColumnWidth(*args, **kwargs):
4493 """SetColumnWidth(self, int col, int width) -> bool"""
4494 return _controls_.ListCtrl_SetColumnWidth(*args, **kwargs)
4495
4496 def GetCountPerPage(*args, **kwargs):
4497 """GetCountPerPage(self) -> int"""
4498 return _controls_.ListCtrl_GetCountPerPage(*args, **kwargs)
4499
4500 def GetViewRect(*args, **kwargs):
4501 """GetViewRect(self) -> Rect"""
4502 return _controls_.ListCtrl_GetViewRect(*args, **kwargs)
4503
4504 def GetEditControl(*args, **kwargs):
4505 """GetEditControl(self) -> TextCtrl"""
4506 return _controls_.ListCtrl_GetEditControl(*args, **kwargs)
4507
4508 def GetItem(*args, **kwargs):
4509 """GetItem(self, long itemId, int col=0) -> ListItem"""
4510 val = _controls_.ListCtrl_GetItem(*args, **kwargs)
4511 if val is not None: val.thisown = 1
4512 return val
4513
4514 def SetItem(*args, **kwargs):
4515 """SetItem(self, ListItem info) -> bool"""
4516 return _controls_.ListCtrl_SetItem(*args, **kwargs)
4517
4518 def SetStringItem(*args, **kwargs):
4519 """SetStringItem(self, long index, int col, String label, int imageId=-1) -> long"""
4520 return _controls_.ListCtrl_SetStringItem(*args, **kwargs)
4521
4522 def GetItemState(*args, **kwargs):
4523 """GetItemState(self, long item, long stateMask) -> int"""
4524 return _controls_.ListCtrl_GetItemState(*args, **kwargs)
4525
4526 def SetItemState(*args, **kwargs):
4527 """SetItemState(self, long item, long state, long stateMask) -> bool"""
4528 return _controls_.ListCtrl_SetItemState(*args, **kwargs)
4529
4530 def SetItemImage(*args, **kwargs):
84f85550 4531 """SetItemImage(self, long item, int image, int selImage=-1) -> bool"""
d55e5bfc
RD
4532 return _controls_.ListCtrl_SetItemImage(*args, **kwargs)
4533
554f62e9
RD
4534 def SetItemColumnImage(*args, **kwargs):
4535 """SetItemColumnImage(self, long item, long column, int image) -> bool"""
4536 return _controls_.ListCtrl_SetItemColumnImage(*args, **kwargs)
4537
d55e5bfc
RD
4538 def GetItemText(*args, **kwargs):
4539 """GetItemText(self, long item) -> String"""
4540 return _controls_.ListCtrl_GetItemText(*args, **kwargs)
4541
4542 def SetItemText(*args, **kwargs):
4543 """SetItemText(self, long item, String str)"""
4544 return _controls_.ListCtrl_SetItemText(*args, **kwargs)
4545
4546 def GetItemData(*args, **kwargs):
4547 """GetItemData(self, long item) -> long"""
4548 return _controls_.ListCtrl_GetItemData(*args, **kwargs)
4549
4550 def SetItemData(*args, **kwargs):
4551 """SetItemData(self, long item, long data) -> bool"""
4552 return _controls_.ListCtrl_SetItemData(*args, **kwargs)
4553
4554 def GetItemPosition(*args, **kwargs):
4555 """GetItemPosition(self, long item) -> Point"""
4556 return _controls_.ListCtrl_GetItemPosition(*args, **kwargs)
4557
4558 def GetItemRect(*args, **kwargs):
4559 """GetItemRect(self, long item, int code=LIST_RECT_BOUNDS) -> Rect"""
4560 return _controls_.ListCtrl_GetItemRect(*args, **kwargs)
4561
4562 def SetItemPosition(*args, **kwargs):
4563 """SetItemPosition(self, long item, Point pos) -> bool"""
4564 return _controls_.ListCtrl_SetItemPosition(*args, **kwargs)
4565
4566 def GetItemCount(*args, **kwargs):
4567 """GetItemCount(self) -> int"""
4568 return _controls_.ListCtrl_GetItemCount(*args, **kwargs)
4569
4570 def GetColumnCount(*args, **kwargs):
4571 """GetColumnCount(self) -> int"""
4572 return _controls_.ListCtrl_GetColumnCount(*args, **kwargs)
4573
4574 def GetItemSpacing(*args, **kwargs):
4575 """GetItemSpacing(self) -> Size"""
4576 return _controls_.ListCtrl_GetItemSpacing(*args, **kwargs)
4577
e9d6f3a4 4578 GetItemSpacing = wx._deprecated(GetItemSpacing)
d55e5bfc
RD
4579 def GetSelectedItemCount(*args, **kwargs):
4580 """GetSelectedItemCount(self) -> int"""
4581 return _controls_.ListCtrl_GetSelectedItemCount(*args, **kwargs)
4582
4583 def GetTextColour(*args, **kwargs):
4584 """GetTextColour(self) -> Colour"""
4585 return _controls_.ListCtrl_GetTextColour(*args, **kwargs)
4586
4587 def SetTextColour(*args, **kwargs):
4588 """SetTextColour(self, Colour col)"""
4589 return _controls_.ListCtrl_SetTextColour(*args, **kwargs)
4590
4591 def GetTopItem(*args, **kwargs):
4592 """GetTopItem(self) -> long"""
4593 return _controls_.ListCtrl_GetTopItem(*args, **kwargs)
4594
4595 def SetSingleStyle(*args, **kwargs):
4596 """SetSingleStyle(self, long style, bool add=True)"""
4597 return _controls_.ListCtrl_SetSingleStyle(*args, **kwargs)
4598
d55e5bfc
RD
4599 def GetNextItem(*args, **kwargs):
4600 """GetNextItem(self, long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -> long"""
4601 return _controls_.ListCtrl_GetNextItem(*args, **kwargs)
4602
4603 def GetImageList(*args, **kwargs):
4604 """GetImageList(self, int which) -> ImageList"""
4605 return _controls_.ListCtrl_GetImageList(*args, **kwargs)
4606
4607 def SetImageList(*args, **kwargs):
4608 """SetImageList(self, ImageList imageList, int which)"""
4609 return _controls_.ListCtrl_SetImageList(*args, **kwargs)
4610
4611 def AssignImageList(*args, **kwargs):
4612 """AssignImageList(self, ImageList imageList, int which)"""
4613 return _controls_.ListCtrl_AssignImageList(*args, **kwargs)
4614
4615 def InReportView(*args, **kwargs):
4616 """InReportView(self) -> bool"""
4617 return _controls_.ListCtrl_InReportView(*args, **kwargs)
4618
4619 def IsVirtual(*args, **kwargs):
4620 """IsVirtual(self) -> bool"""
4621 return _controls_.ListCtrl_IsVirtual(*args, **kwargs)
4622
4623 def RefreshItem(*args, **kwargs):
4624 """RefreshItem(self, long item)"""
4625 return _controls_.ListCtrl_RefreshItem(*args, **kwargs)
4626
4627 def RefreshItems(*args, **kwargs):
4628 """RefreshItems(self, long itemFrom, long itemTo)"""
4629 return _controls_.ListCtrl_RefreshItems(*args, **kwargs)
4630
4631 def Arrange(*args, **kwargs):
4632 """Arrange(self, int flag=LIST_ALIGN_DEFAULT) -> bool"""
4633 return _controls_.ListCtrl_Arrange(*args, **kwargs)
4634
4635 def DeleteItem(*args, **kwargs):
4636 """DeleteItem(self, long item) -> bool"""
4637 return _controls_.ListCtrl_DeleteItem(*args, **kwargs)
4638
4639 def DeleteAllItems(*args, **kwargs):
4640 """DeleteAllItems(self) -> bool"""
4641 return _controls_.ListCtrl_DeleteAllItems(*args, **kwargs)
4642
4643 def DeleteColumn(*args, **kwargs):
4644 """DeleteColumn(self, int col) -> bool"""
4645 return _controls_.ListCtrl_DeleteColumn(*args, **kwargs)
4646
4647 def DeleteAllColumns(*args, **kwargs):
4648 """DeleteAllColumns(self) -> bool"""
4649 return _controls_.ListCtrl_DeleteAllColumns(*args, **kwargs)
4650
4651 def ClearAll(*args, **kwargs):
4652 """ClearAll(self)"""
4653 return _controls_.ListCtrl_ClearAll(*args, **kwargs)
4654
4655 def EditLabel(*args, **kwargs):
4656 """EditLabel(self, long item) -> TextCtrl"""
4657 return _controls_.ListCtrl_EditLabel(*args, **kwargs)
4658
4659 def EndEditLabel(*args, **kwargs):
4660 """EndEditLabel(self, bool cancel) -> bool"""
4661 return _controls_.ListCtrl_EndEditLabel(*args, **kwargs)
4662
4663 def EnsureVisible(*args, **kwargs):
4664 """EnsureVisible(self, long item) -> bool"""
4665 return _controls_.ListCtrl_EnsureVisible(*args, **kwargs)
4666
4667 def FindItem(*args, **kwargs):
4668 """FindItem(self, long start, String str, bool partial=False) -> long"""
4669 return _controls_.ListCtrl_FindItem(*args, **kwargs)
4670
4671 def FindItemData(*args, **kwargs):
4672 """FindItemData(self, long start, long data) -> long"""
4673 return _controls_.ListCtrl_FindItemData(*args, **kwargs)
4674
4675 def FindItemAtPos(*args, **kwargs):
4676 """FindItemAtPos(self, long start, Point pt, int direction) -> long"""
4677 return _controls_.ListCtrl_FindItemAtPos(*args, **kwargs)
4678
4679 def HitTest(*args, **kwargs):
a001823c
RD
4680 """
4681 HitTest(Point point) -> (item, where)
4682
4683 Determines which item (if any) is at the specified point, giving
53aa7709 4684 in the second return value (see wx.LIST_HITTEST flags.)
a001823c 4685 """
d55e5bfc
RD
4686 return _controls_.ListCtrl_HitTest(*args, **kwargs)
4687
704eda0c
RD
4688 def HitTestSubItem(*args, **kwargs):
4689 """
4690 HitTestSubItem(Point point) -> (item, where, subItem)
4691
4692 Determines which item (if any) is at the specified point, giving in
4693 the second return value (see wx.LIST_HITTEST flags) and also the subItem, if
4694 any.
4695 """
4696 return _controls_.ListCtrl_HitTestSubItem(*args, **kwargs)
4697
d55e5bfc
RD
4698 def InsertItem(*args, **kwargs):
4699 """InsertItem(self, ListItem info) -> long"""
4700 return _controls_.ListCtrl_InsertItem(*args, **kwargs)
4701
4702 def InsertStringItem(*args, **kwargs):
7449af73 4703 """InsertStringItem(self, long index, String label, int imageIndex=-1) -> long"""
d55e5bfc
RD
4704 return _controls_.ListCtrl_InsertStringItem(*args, **kwargs)
4705
4706 def InsertImageItem(*args, **kwargs):
4707 """InsertImageItem(self, long index, int imageIndex) -> long"""
4708 return _controls_.ListCtrl_InsertImageItem(*args, **kwargs)
4709
4710 def InsertImageStringItem(*args, **kwargs):
4711 """InsertImageStringItem(self, long index, String label, int imageIndex) -> long"""
4712 return _controls_.ListCtrl_InsertImageStringItem(*args, **kwargs)
4713
a3957d3d
RD
4714 def InsertColumnItem(*args, **kwargs):
4715 """InsertColumnItem(self, long col, ListItem info) -> long"""
4716 return _controls_.ListCtrl_InsertColumnItem(*args, **kwargs)
d55e5bfc 4717
a3957d3d 4718 InsertColumnInfo = InsertColumnItem
d55e5bfc
RD
4719 def InsertColumn(*args, **kwargs):
4720 """
4721 InsertColumn(self, long col, String heading, int format=LIST_FORMAT_LEFT,
4722 int width=-1) -> long
4723 """
4724 return _controls_.ListCtrl_InsertColumn(*args, **kwargs)
4725
4726 def SetItemCount(*args, **kwargs):
4727 """SetItemCount(self, long count)"""
4728 return _controls_.ListCtrl_SetItemCount(*args, **kwargs)
4729
4730 def ScrollList(*args, **kwargs):
4731 """ScrollList(self, int dx, int dy) -> bool"""
4732 return _controls_.ListCtrl_ScrollList(*args, **kwargs)
4733
4734 def SetItemTextColour(*args, **kwargs):
4735 """SetItemTextColour(self, long item, Colour col)"""
4736 return _controls_.ListCtrl_SetItemTextColour(*args, **kwargs)
4737
4738 def GetItemTextColour(*args, **kwargs):
4739 """GetItemTextColour(self, long item) -> Colour"""
4740 return _controls_.ListCtrl_GetItemTextColour(*args, **kwargs)
4741
4742 def SetItemBackgroundColour(*args, **kwargs):
4743 """SetItemBackgroundColour(self, long item, Colour col)"""
4744 return _controls_.ListCtrl_SetItemBackgroundColour(*args, **kwargs)
4745
4746 def GetItemBackgroundColour(*args, **kwargs):
4747 """GetItemBackgroundColour(self, long item) -> Colour"""
4748 return _controls_.ListCtrl_GetItemBackgroundColour(*args, **kwargs)
4749
9d7dfdff
RD
4750 def SetItemFont(*args, **kwargs):
4751 """SetItemFont(self, long item, Font f)"""
4752 return _controls_.ListCtrl_SetItemFont(*args, **kwargs)
4753
4754 def GetItemFont(*args, **kwargs):
4755 """GetItemFont(self, long item) -> Font"""
4756 return _controls_.ListCtrl_GetItemFont(*args, **kwargs)
4757
d55e5bfc
RD
4758 #
4759 # Some helpers...
4760 def Select(self, idx, on=1):
4761 '''[de]select an item'''
4762 if on: state = wx.LIST_STATE_SELECTED
4763 else: state = 0
4764 self.SetItemState(idx, state, wx.LIST_STATE_SELECTED)
4765
4766 def Focus(self, idx):
4767 '''Focus and show the given item'''
4768 self.SetItemState(idx, wx.LIST_STATE_FOCUSED, wx.LIST_STATE_FOCUSED)
4769 self.EnsureVisible(idx)
4770
4771 def GetFocusedItem(self):
4772 '''get the currently focused item or -1 if none'''
4773 return self.GetNextItem(-1, wx.LIST_NEXT_ALL, wx.LIST_STATE_FOCUSED)
4774
4775 def GetFirstSelected(self, *args):
4776 '''return first selected item, or -1 when none'''
4777 return self.GetNextSelected(-1)
4778
4779 def GetNextSelected(self, item):
4780 '''return subsequent selected items, or -1 when no more'''
4781 return self.GetNextItem(item, wx.LIST_NEXT_ALL, wx.LIST_STATE_SELECTED)
4782
4783 def IsSelected(self, idx):
4784 '''return True if the item is selected'''
38aff7bb 4785 return (self.GetItemState(idx, wx.LIST_STATE_SELECTED) & wx.LIST_STATE_SELECTED) != 0
d55e5bfc
RD
4786
4787 def SetColumnImage(self, col, image):
4788 item = self.GetColumn(col)
4789 # preserve all other attributes too
4790 item.SetMask( wx.LIST_MASK_STATE |
4791 wx.LIST_MASK_TEXT |
4792 wx.LIST_MASK_IMAGE |
4793 wx.LIST_MASK_DATA |
4794 wx.LIST_SET_ITEM |
4795 wx.LIST_MASK_WIDTH |
4796 wx.LIST_MASK_FORMAT )
4797 item.SetImage(image)
4798 self.SetColumn(col, item)
4799
4800 def ClearColumnImage(self, col):
4801 self.SetColumnImage(col, -1)
4802
4803 def Append(self, entry):
4804 '''Append an item to the list control. The entry parameter should be a
4805 sequence with an item for each column'''
4806 if len(entry):
4807 if wx.USE_UNICODE:
4808 cvtfunc = unicode
4809 else:
4810 cvtfunc = str
4811 pos = self.GetItemCount()
4812 self.InsertStringItem(pos, cvtfunc(entry[0]))
4813 for i in range(1, len(entry)):
4814 self.SetStringItem(pos, i, cvtfunc(entry[i]))
4815 return pos
4816
4817 def SortItems(*args, **kwargs):
4818 """SortItems(self, PyObject func) -> bool"""
4819 return _controls_.ListCtrl_SortItems(*args, **kwargs)
4820
4821 def GetMainWindow(*args, **kwargs):
4822 """GetMainWindow(self) -> Window"""
4823 return _controls_.ListCtrl_GetMainWindow(*args, **kwargs)
4824
4825 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
4826 """
4827 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4828
4829 Get the default attributes for this class. This is useful if you want
4830 to use the same font or colour in your own control as in a standard
4831 control -- which is a much better idea than hard coding specific
4832 colours or fonts which might look completely out of place on the
4833 user's system, especially if it uses themes.
4834
4835 The variant parameter is only relevant under Mac currently and is
4836 ignore under other platforms. Under Mac, it will change the size of
4837 the returned font. See `wx.Window.SetWindowVariant` for more about
4838 this.
4839 """
d55e5bfc
RD
4840 return _controls_.ListCtrl_GetClassDefaultAttributes(*args, **kwargs)
4841
4842 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
97ab0f6a
RD
4843 ColumnCount = property(GetColumnCount,doc="See `GetColumnCount`")
4844 CountPerPage = property(GetCountPerPage,doc="See `GetCountPerPage`")
4845 EditControl = property(GetEditControl,doc="See `GetEditControl`")
4846 FocusedItem = property(GetFocusedItem,doc="See `GetFocusedItem`")
4847 ImageList = property(GetImageList,SetImageList,doc="See `GetImageList` and `SetImageList`")
4848 ItemCount = property(GetItemCount,SetItemCount,doc="See `GetItemCount` and `SetItemCount`")
4849 MainWindow = property(GetMainWindow,doc="See `GetMainWindow`")
4850 SelectedItemCount = property(GetSelectedItemCount,doc="See `GetSelectedItemCount`")
4851 TextColour = property(GetTextColour,SetTextColour,doc="See `GetTextColour` and `SetTextColour`")
4852 TopItem = property(GetTopItem,doc="See `GetTopItem`")
4853 ViewRect = property(GetViewRect,doc="See `GetViewRect`")
2131d850 4854_controls_.ListCtrl_swigregister(ListCtrl)
d55e5bfc
RD
4855
4856def PreListCtrl(*args, **kwargs):
4857 """PreListCtrl() -> ListCtrl"""
4858 val = _controls_.new_PreListCtrl(*args, **kwargs)
d55e5bfc
RD
4859 return val
4860
4861def ListCtrl_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 4862 """
19272049
RD
4863 ListCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4864
4865 Get the default attributes for this class. This is useful if you want
4866 to use the same font or colour in your own control as in a standard
4867 control -- which is a much better idea than hard coding specific
4868 colours or fonts which might look completely out of place on the
4869 user's system, especially if it uses themes.
4870
4871 The variant parameter is only relevant under Mac currently and is
4872 ignore under other platforms. Under Mac, it will change the size of
4873 the returned font. See `wx.Window.SetWindowVariant` for more about
4874 this.
4875 """
554f62e9 4876 return _controls_.ListCtrl_GetClassDefaultAttributes(*args, **kwargs)
d55e5bfc
RD
4877
4878#---------------------------------------------------------------------------
4879
4880class ListView(ListCtrl):
093d3ff1 4881 """Proxy of C++ ListView class"""
554f62e9
RD
4882 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4883 __repr__ = _swig_repr
4884 def __init__(self, *args, **kwargs):
d55e5bfc
RD
4885 """
4886 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4887 Size size=DefaultSize, long style=LC_REPORT,
4888 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListView
4889 """
554f62e9 4890 _controls_.ListView_swiginit(self,_controls_.new_ListView(*args, **kwargs))
d55e5bfc
RD
4891 self._setOORInfo(self)
4892
4893 def Create(*args, **kwargs):
4894 """
4895 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4896 Size size=DefaultSize, long style=LC_REPORT,
4897 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4898
4899 Do the 2nd phase and create the GUI control.
4900 """
4901 return _controls_.ListView_Create(*args, **kwargs)
4902
4903 def Select(*args, **kwargs):
4904 """Select(self, long n, bool on=True)"""
4905 return _controls_.ListView_Select(*args, **kwargs)
4906
4907 def Focus(*args, **kwargs):
4908 """Focus(self, long index)"""
4909 return _controls_.ListView_Focus(*args, **kwargs)
4910
4911 def GetFocusedItem(*args, **kwargs):
4912 """GetFocusedItem(self) -> long"""
4913 return _controls_.ListView_GetFocusedItem(*args, **kwargs)
4914
4915 def GetNextSelected(*args, **kwargs):
4916 """GetNextSelected(self, long item) -> long"""
4917 return _controls_.ListView_GetNextSelected(*args, **kwargs)
4918
4919 def GetFirstSelected(*args, **kwargs):
4920 """GetFirstSelected(self) -> long"""
4921 return _controls_.ListView_GetFirstSelected(*args, **kwargs)
4922
4923 def IsSelected(*args, **kwargs):
4924 """IsSelected(self, long index) -> bool"""
4925 return _controls_.ListView_IsSelected(*args, **kwargs)
4926
4927 def SetColumnImage(*args, **kwargs):
4928 """SetColumnImage(self, int col, int image)"""
4929 return _controls_.ListView_SetColumnImage(*args, **kwargs)
4930
4931 def ClearColumnImage(*args, **kwargs):
4932 """ClearColumnImage(self, int col)"""
4933 return _controls_.ListView_ClearColumnImage(*args, **kwargs)
4934
97ab0f6a 4935 FocusedItem = property(GetFocusedItem,doc="See `GetFocusedItem`")
2131d850 4936_controls_.ListView_swigregister(ListView)
d55e5bfc
RD
4937
4938def PreListView(*args, **kwargs):
4939 """PreListView() -> ListView"""
4940 val = _controls_.new_PreListView(*args, **kwargs)
d55e5bfc
RD
4941 return val
4942
4943#---------------------------------------------------------------------------
4944
4945TR_NO_BUTTONS = _controls_.TR_NO_BUTTONS
4946TR_HAS_BUTTONS = _controls_.TR_HAS_BUTTONS
4947TR_NO_LINES = _controls_.TR_NO_LINES
4948TR_LINES_AT_ROOT = _controls_.TR_LINES_AT_ROOT
4949TR_SINGLE = _controls_.TR_SINGLE
4950TR_MULTIPLE = _controls_.TR_MULTIPLE
4951TR_EXTENDED = _controls_.TR_EXTENDED
4952TR_HAS_VARIABLE_ROW_HEIGHT = _controls_.TR_HAS_VARIABLE_ROW_HEIGHT
4953TR_EDIT_LABELS = _controls_.TR_EDIT_LABELS
4954TR_HIDE_ROOT = _controls_.TR_HIDE_ROOT
4955TR_ROW_LINES = _controls_.TR_ROW_LINES
4956TR_FULL_ROW_HIGHLIGHT = _controls_.TR_FULL_ROW_HIGHLIGHT
4957TR_DEFAULT_STYLE = _controls_.TR_DEFAULT_STYLE
4958TR_TWIST_BUTTONS = _controls_.TR_TWIST_BUTTONS
e9d6f3a4
RD
4959# obsolete
4960TR_MAC_BUTTONS = 0
4961wxTR_AQUA_BUTTONS = 0
4962
d55e5bfc
RD
4963TreeItemIcon_Normal = _controls_.TreeItemIcon_Normal
4964TreeItemIcon_Selected = _controls_.TreeItemIcon_Selected
4965TreeItemIcon_Expanded = _controls_.TreeItemIcon_Expanded
4966TreeItemIcon_SelectedExpanded = _controls_.TreeItemIcon_SelectedExpanded
4967TreeItemIcon_Max = _controls_.TreeItemIcon_Max
4968TREE_HITTEST_ABOVE = _controls_.TREE_HITTEST_ABOVE
4969TREE_HITTEST_BELOW = _controls_.TREE_HITTEST_BELOW
4970TREE_HITTEST_NOWHERE = _controls_.TREE_HITTEST_NOWHERE
4971TREE_HITTEST_ONITEMBUTTON = _controls_.TREE_HITTEST_ONITEMBUTTON
4972TREE_HITTEST_ONITEMICON = _controls_.TREE_HITTEST_ONITEMICON
4973TREE_HITTEST_ONITEMINDENT = _controls_.TREE_HITTEST_ONITEMINDENT
4974TREE_HITTEST_ONITEMLABEL = _controls_.TREE_HITTEST_ONITEMLABEL
4975TREE_HITTEST_ONITEMRIGHT = _controls_.TREE_HITTEST_ONITEMRIGHT
4976TREE_HITTEST_ONITEMSTATEICON = _controls_.TREE_HITTEST_ONITEMSTATEICON
4977TREE_HITTEST_TOLEFT = _controls_.TREE_HITTEST_TOLEFT
4978TREE_HITTEST_TORIGHT = _controls_.TREE_HITTEST_TORIGHT
4979TREE_HITTEST_ONITEMUPPERPART = _controls_.TREE_HITTEST_ONITEMUPPERPART
4980TREE_HITTEST_ONITEMLOWERPART = _controls_.TREE_HITTEST_ONITEMLOWERPART
4981TREE_HITTEST_ONITEM = _controls_.TREE_HITTEST_ONITEM
4982#---------------------------------------------------------------------------
4983
4984class TreeItemId(object):
093d3ff1 4985 """Proxy of C++ TreeItemId class"""
554f62e9
RD
4986 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4987 __repr__ = _swig_repr
4988 def __init__(self, *args, **kwargs):
d55e5bfc 4989 """__init__(self) -> TreeItemId"""
554f62e9
RD
4990 _controls_.TreeItemId_swiginit(self,_controls_.new_TreeItemId(*args, **kwargs))
4991 __swig_destroy__ = _controls_.delete_TreeItemId
4992 __del__ = lambda self : None;
d55e5bfc
RD
4993 def IsOk(*args, **kwargs):
4994 """IsOk(self) -> bool"""
4995 return _controls_.TreeItemId_IsOk(*args, **kwargs)
4996
4997 def __eq__(*args, **kwargs):
4998 """__eq__(self, TreeItemId other) -> bool"""
4999 return _controls_.TreeItemId___eq__(*args, **kwargs)
5000
5001 def __ne__(*args, **kwargs):
5002 """__ne__(self, TreeItemId other) -> bool"""
5003 return _controls_.TreeItemId___ne__(*args, **kwargs)
5004
5005 m_pItem = property(_controls_.TreeItemId_m_pItem_get, _controls_.TreeItemId_m_pItem_set)
5006 Ok = IsOk
5007 def __nonzero__(self): return self.IsOk()
2131d850 5008_controls_.TreeItemId_swigregister(TreeItemId)
d55e5bfc
RD
5009TreeCtrlNameStr = cvar.TreeCtrlNameStr
5010
5011class TreeItemData(object):
093d3ff1 5012 """Proxy of C++ TreeItemData class"""
554f62e9
RD
5013 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
5014 __repr__ = _swig_repr
5015 def __init__(self, *args, **kwargs):
d55e5bfc 5016 """__init__(self, PyObject obj=None) -> TreeItemData"""
554f62e9
RD
5017 _controls_.TreeItemData_swiginit(self,_controls_.new_TreeItemData(*args, **kwargs))
5018 __swig_destroy__ = _controls_.delete_TreeItemData
5019 __del__ = lambda self : None;
d55e5bfc
RD
5020 def GetData(*args, **kwargs):
5021 """GetData(self) -> PyObject"""
5022 return _controls_.TreeItemData_GetData(*args, **kwargs)
5023
5024 def SetData(*args, **kwargs):
5025 """SetData(self, PyObject obj)"""
5026 return _controls_.TreeItemData_SetData(*args, **kwargs)
5027
5028 def GetId(*args, **kwargs):
5029 """GetId(self) -> TreeItemId"""
5030 return _controls_.TreeItemData_GetId(*args, **kwargs)
5031
5032 def SetId(*args, **kwargs):
5033 """SetId(self, TreeItemId id)"""
5034 return _controls_.TreeItemData_SetId(*args, **kwargs)
5035
5036 def Destroy(*args, **kwargs):
5037 """Destroy(self)"""
b39fe951
RD
5038 args[0].this.own(False)
5039 return _controls_.TreeItemData_Destroy(*args, **kwargs)
d55e5bfc 5040
994453b8
RD
5041 Data = property(GetData,SetData,doc="See `GetData` and `SetData`")
5042 Id = property(GetId,SetId,doc="See `GetId` and `SetId`")
2131d850 5043_controls_.TreeItemData_swigregister(TreeItemData)
d55e5bfc
RD
5044
5045#---------------------------------------------------------------------------
5046
5047wxEVT_COMMAND_TREE_BEGIN_DRAG = _controls_.wxEVT_COMMAND_TREE_BEGIN_DRAG
5048wxEVT_COMMAND_TREE_BEGIN_RDRAG = _controls_.wxEVT_COMMAND_TREE_BEGIN_RDRAG
5049wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT = _controls_.wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
5050wxEVT_COMMAND_TREE_END_LABEL_EDIT = _controls_.wxEVT_COMMAND_TREE_END_LABEL_EDIT
5051wxEVT_COMMAND_TREE_DELETE_ITEM = _controls_.wxEVT_COMMAND_TREE_DELETE_ITEM
5052wxEVT_COMMAND_TREE_GET_INFO = _controls_.wxEVT_COMMAND_TREE_GET_INFO
5053wxEVT_COMMAND_TREE_SET_INFO = _controls_.wxEVT_COMMAND_TREE_SET_INFO
5054wxEVT_COMMAND_TREE_ITEM_EXPANDED = _controls_.wxEVT_COMMAND_TREE_ITEM_EXPANDED
5055wxEVT_COMMAND_TREE_ITEM_EXPANDING = _controls_.wxEVT_COMMAND_TREE_ITEM_EXPANDING
5056wxEVT_COMMAND_TREE_ITEM_COLLAPSED = _controls_.wxEVT_COMMAND_TREE_ITEM_COLLAPSED
5057wxEVT_COMMAND_TREE_ITEM_COLLAPSING = _controls_.wxEVT_COMMAND_TREE_ITEM_COLLAPSING
5058wxEVT_COMMAND_TREE_SEL_CHANGED = _controls_.wxEVT_COMMAND_TREE_SEL_CHANGED
5059wxEVT_COMMAND_TREE_SEL_CHANGING = _controls_.wxEVT_COMMAND_TREE_SEL_CHANGING
5060wxEVT_COMMAND_TREE_KEY_DOWN = _controls_.wxEVT_COMMAND_TREE_KEY_DOWN
5061wxEVT_COMMAND_TREE_ITEM_ACTIVATED = _controls_.wxEVT_COMMAND_TREE_ITEM_ACTIVATED
5062wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK = _controls_.wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
5063wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK = _controls_.wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
5064wxEVT_COMMAND_TREE_END_DRAG = _controls_.wxEVT_COMMAND_TREE_END_DRAG
5065wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK = _controls_.wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
5066wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP = _controls_.wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
62d32a5f 5067wxEVT_COMMAND_TREE_ITEM_MENU = _controls_.wxEVT_COMMAND_TREE_ITEM_MENU
d55e5bfc
RD
5068EVT_TREE_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG , 1)
5069EVT_TREE_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG , 1)
5070EVT_TREE_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT , 1)
5071EVT_TREE_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT , 1)
5072EVT_TREE_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM , 1)
5073EVT_TREE_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO , 1)
5074EVT_TREE_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO , 1)
5075EVT_TREE_ITEM_EXPANDED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED , 1)
5076EVT_TREE_ITEM_EXPANDING = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING , 1)
5077EVT_TREE_ITEM_COLLAPSED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED , 1)
5078EVT_TREE_ITEM_COLLAPSING = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING , 1)
5079EVT_TREE_SEL_CHANGED = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED , 1)
5080EVT_TREE_SEL_CHANGING = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING , 1)
5081EVT_TREE_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN , 1)
5082EVT_TREE_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED , 1)
5083EVT_TREE_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK , 1)
5084EVT_TREE_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, 1)
5085EVT_TREE_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG , 1)
5086EVT_TREE_STATE_IMAGE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK, 1)
5087EVT_TREE_ITEM_GETTOOLTIP = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP, 1)
f05326ba 5088EVT_TREE_ITEM_MENU = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MENU, 1)
d55e5bfc
RD
5089
5090class TreeEvent(_core.NotifyEvent):
093d3ff1 5091 """Proxy of C++ TreeEvent class"""
554f62e9
RD
5092 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
5093 __repr__ = _swig_repr
b02396e8
RD
5094 def __init__(self, *args):
5095 """
5096 __init__(self, EventType commandType=wxEVT_NULL, int id=0) -> TreeEvent
5097 __init__(self, EventType commandType, TreeCtrl tree, TreeItemId item=NullTreeItemId) -> TreeEvent
5098 """
5099 _controls_.TreeEvent_swiginit(self,_controls_.new_TreeEvent(*args))
d55e5bfc
RD
5100 def GetItem(*args, **kwargs):
5101 """GetItem(self) -> TreeItemId"""
5102 return _controls_.TreeEvent_GetItem(*args, **kwargs)
5103
5104 def SetItem(*args, **kwargs):
5105 """SetItem(self, TreeItemId item)"""
5106 return _controls_.TreeEvent_SetItem(*args, **kwargs)
5107
5108 def GetOldItem(*args, **kwargs):
5109 """GetOldItem(self) -> TreeItemId"""
5110 return _controls_.TreeEvent_GetOldItem(*args, **kwargs)
5111
5112 def SetOldItem(*args, **kwargs):
5113 """SetOldItem(self, TreeItemId item)"""
5114 return _controls_.TreeEvent_SetOldItem(*args, **kwargs)
5115
5116 def GetPoint(*args, **kwargs):
5117 """GetPoint(self) -> Point"""
5118 return _controls_.TreeEvent_GetPoint(*args, **kwargs)
5119
5120 def SetPoint(*args, **kwargs):
5121 """SetPoint(self, Point pt)"""
5122 return _controls_.TreeEvent_SetPoint(*args, **kwargs)
5123
5124 def GetKeyEvent(*args, **kwargs):
5125 """GetKeyEvent(self) -> KeyEvent"""
5126 return _controls_.TreeEvent_GetKeyEvent(*args, **kwargs)
5127
5128 def GetKeyCode(*args, **kwargs):
5129 """GetKeyCode(self) -> int"""
5130 return _controls_.TreeEvent_GetKeyCode(*args, **kwargs)
5131
5132 def SetKeyEvent(*args, **kwargs):
5133 """SetKeyEvent(self, KeyEvent evt)"""
5134 return _controls_.TreeEvent_SetKeyEvent(*args, **kwargs)
5135
5136 def GetLabel(*args, **kwargs):
5137 """GetLabel(self) -> String"""
5138 return _controls_.TreeEvent_GetLabel(*args, **kwargs)
5139
5140 def SetLabel(*args, **kwargs):
5141 """SetLabel(self, String label)"""
5142 return _controls_.TreeEvent_SetLabel(*args, **kwargs)
5143
5144 def IsEditCancelled(*args, **kwargs):
5145 """IsEditCancelled(self) -> bool"""
5146 return _controls_.TreeEvent_IsEditCancelled(*args, **kwargs)
5147
5148 def SetEditCanceled(*args, **kwargs):
5149 """SetEditCanceled(self, bool editCancelled)"""
5150 return _controls_.TreeEvent_SetEditCanceled(*args, **kwargs)
5151
5152 def SetToolTip(*args, **kwargs):
5153 """SetToolTip(self, String toolTip)"""
5154 return _controls_.TreeEvent_SetToolTip(*args, **kwargs)
5155
dcb8fc74
RD
5156 def GetToolTip(*args, **kwargs):
5157 """GetToolTip(self) -> String"""
5158 return _controls_.TreeEvent_GetToolTip(*args, **kwargs)
5159
994453b8
RD
5160 Item = property(GetItem,SetItem,doc="See `GetItem` and `SetItem`")
5161 KeyCode = property(GetKeyCode,doc="See `GetKeyCode`")
5162 KeyEvent = property(GetKeyEvent,SetKeyEvent,doc="See `GetKeyEvent` and `SetKeyEvent`")
5163 Label = property(GetLabel,SetLabel,doc="See `GetLabel` and `SetLabel`")
5164 OldItem = property(GetOldItem,SetOldItem,doc="See `GetOldItem` and `SetOldItem`")
5165 Point = property(GetPoint,SetPoint,doc="See `GetPoint` and `SetPoint`")
5166 ToolTip = property(GetToolTip,SetToolTip,doc="See `GetToolTip` and `SetToolTip`")
5167 EditCancelled = property(IsEditCancelled,SetEditCanceled,doc="See `IsEditCancelled` and `SetEditCanceled`")
2131d850 5168_controls_.TreeEvent_swigregister(TreeEvent)
d55e5bfc
RD
5169
5170#---------------------------------------------------------------------------
5171
5172class TreeCtrl(_core.Control):
093d3ff1 5173 """Proxy of C++ TreeCtrl class"""
554f62e9
RD
5174 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
5175 __repr__ = _swig_repr
5176 def __init__(self, *args, **kwargs):
d55e5bfc
RD
5177 """
5178 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
5179 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
5180 Validator validator=DefaultValidator,
5181 String name=TreeCtrlNameStr) -> TreeCtrl
5182 """
554f62e9 5183 _controls_.TreeCtrl_swiginit(self,_controls_.new_TreeCtrl(*args, **kwargs))
c25f90f6 5184 self._setOORInfo(self);TreeCtrl._setCallbackInfo(self, self, TreeCtrl)
d55e5bfc
RD
5185
5186 def Create(*args, **kwargs):
5187 """
5188 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
5189 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
5190 Validator validator=DefaultValidator,
5191 String name=TreeCtrlNameStr) -> bool
5192
5193 Do the 2nd phase and create the GUI control.
5194 """
5195 return _controls_.TreeCtrl_Create(*args, **kwargs)
5196
5197 def _setCallbackInfo(*args, **kwargs):
5198 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5199 return _controls_.TreeCtrl__setCallbackInfo(*args, **kwargs)
5200
5201 def GetCount(*args, **kwargs):
e9d6f3a4 5202 """GetCount(self) -> unsigned int"""
d55e5bfc
RD
5203 return _controls_.TreeCtrl_GetCount(*args, **kwargs)
5204
5205 def GetIndent(*args, **kwargs):
5206 """GetIndent(self) -> unsigned int"""
5207 return _controls_.TreeCtrl_GetIndent(*args, **kwargs)
5208
5209 def SetIndent(*args, **kwargs):
5210 """SetIndent(self, unsigned int indent)"""
5211 return _controls_.TreeCtrl_SetIndent(*args, **kwargs)
5212
5213 def GetSpacing(*args, **kwargs):
5214 """GetSpacing(self) -> unsigned int"""
5215 return _controls_.TreeCtrl_GetSpacing(*args, **kwargs)
5216
5217 def SetSpacing(*args, **kwargs):
5218 """SetSpacing(self, unsigned int spacing)"""
5219 return _controls_.TreeCtrl_SetSpacing(*args, **kwargs)
5220
5221 def GetImageList(*args, **kwargs):
5222 """GetImageList(self) -> ImageList"""
5223 return _controls_.TreeCtrl_GetImageList(*args, **kwargs)
5224
5225 def GetStateImageList(*args, **kwargs):
5226 """GetStateImageList(self) -> ImageList"""
5227 return _controls_.TreeCtrl_GetStateImageList(*args, **kwargs)
5228
5229 def SetImageList(*args, **kwargs):
5230 """SetImageList(self, ImageList imageList)"""
5231 return _controls_.TreeCtrl_SetImageList(*args, **kwargs)
5232
5233 def SetStateImageList(*args, **kwargs):
5234 """SetStateImageList(self, ImageList imageList)"""
5235 return _controls_.TreeCtrl_SetStateImageList(*args, **kwargs)
5236
5237 def AssignImageList(*args, **kwargs):
5238 """AssignImageList(self, ImageList imageList)"""
5239 return _controls_.TreeCtrl_AssignImageList(*args, **kwargs)
5240
5241 def AssignStateImageList(*args, **kwargs):
5242 """AssignStateImageList(self, ImageList imageList)"""
5243 return _controls_.TreeCtrl_AssignStateImageList(*args, **kwargs)
5244
5245 def GetItemText(*args, **kwargs):
5246 """GetItemText(self, TreeItemId item) -> String"""
5247 return _controls_.TreeCtrl_GetItemText(*args, **kwargs)
5248
5249 def GetItemImage(*args, **kwargs):
5250 """GetItemImage(self, TreeItemId item, int which=TreeItemIcon_Normal) -> int"""
5251 return _controls_.TreeCtrl_GetItemImage(*args, **kwargs)
5252
5253 def GetItemData(*args, **kwargs):
5254 """GetItemData(self, TreeItemId item) -> TreeItemData"""
5255 return _controls_.TreeCtrl_GetItemData(*args, **kwargs)
5256
5257 def GetItemPyData(*args, **kwargs):
5258 """GetItemPyData(self, TreeItemId item) -> PyObject"""
5259 return _controls_.TreeCtrl_GetItemPyData(*args, **kwargs)
5260
5261 GetPyData = GetItemPyData
5262 def GetItemTextColour(*args, **kwargs):
5263 """GetItemTextColour(self, TreeItemId item) -> Colour"""
5264 return _controls_.TreeCtrl_GetItemTextColour(*args, **kwargs)
5265
5266 def GetItemBackgroundColour(*args, **kwargs):
5267 """GetItemBackgroundColour(self, TreeItemId item) -> Colour"""
5268 return _controls_.TreeCtrl_GetItemBackgroundColour(*args, **kwargs)
5269
5270 def GetItemFont(*args, **kwargs):
5271 """GetItemFont(self, TreeItemId item) -> Font"""
5272 return _controls_.TreeCtrl_GetItemFont(*args, **kwargs)
5273
5274 def SetItemText(*args, **kwargs):
5275 """SetItemText(self, TreeItemId item, String text)"""
5276 return _controls_.TreeCtrl_SetItemText(*args, **kwargs)
5277
5278 def SetItemImage(*args, **kwargs):
5279 """SetItemImage(self, TreeItemId item, int image, int which=TreeItemIcon_Normal)"""
5280 return _controls_.TreeCtrl_SetItemImage(*args, **kwargs)
5281
5282 def SetItemData(*args, **kwargs):
5283 """SetItemData(self, TreeItemId item, TreeItemData data)"""
5284 return _controls_.TreeCtrl_SetItemData(*args, **kwargs)
5285
5286 def SetItemPyData(*args, **kwargs):
5287 """SetItemPyData(self, TreeItemId item, PyObject obj)"""
5288 return _controls_.TreeCtrl_SetItemPyData(*args, **kwargs)
5289
5290 SetPyData = SetItemPyData
5291 def SetItemHasChildren(*args, **kwargs):
5292 """SetItemHasChildren(self, TreeItemId item, bool has=True)"""
5293 return _controls_.TreeCtrl_SetItemHasChildren(*args, **kwargs)
5294
5295 def SetItemBold(*args, **kwargs):
5296 """SetItemBold(self, TreeItemId item, bool bold=True)"""
5297 return _controls_.TreeCtrl_SetItemBold(*args, **kwargs)
5298
5299 def SetItemDropHighlight(*args, **kwargs):
5300 """SetItemDropHighlight(self, TreeItemId item, bool highlight=True)"""
5301 return _controls_.TreeCtrl_SetItemDropHighlight(*args, **kwargs)
5302
5303 def SetItemTextColour(*args, **kwargs):
5304 """SetItemTextColour(self, TreeItemId item, Colour col)"""
5305 return _controls_.TreeCtrl_SetItemTextColour(*args, **kwargs)
5306
5307 def SetItemBackgroundColour(*args, **kwargs):
5308 """SetItemBackgroundColour(self, TreeItemId item, Colour col)"""
5309 return _controls_.TreeCtrl_SetItemBackgroundColour(*args, **kwargs)
5310
5311 def SetItemFont(*args, **kwargs):
5312 """SetItemFont(self, TreeItemId item, Font font)"""
5313 return _controls_.TreeCtrl_SetItemFont(*args, **kwargs)
5314
5315 def IsVisible(*args, **kwargs):
5316 """IsVisible(self, TreeItemId item) -> bool"""
5317 return _controls_.TreeCtrl_IsVisible(*args, **kwargs)
5318
5319 def ItemHasChildren(*args, **kwargs):
5320 """ItemHasChildren(self, TreeItemId item) -> bool"""
5321 return _controls_.TreeCtrl_ItemHasChildren(*args, **kwargs)
5322
5323 def IsExpanded(*args, **kwargs):
5324 """IsExpanded(self, TreeItemId item) -> bool"""
5325 return _controls_.TreeCtrl_IsExpanded(*args, **kwargs)
5326
5327 def IsSelected(*args, **kwargs):
5328 """IsSelected(self, TreeItemId item) -> bool"""
5329 return _controls_.TreeCtrl_IsSelected(*args, **kwargs)
5330
5331 def IsBold(*args, **kwargs):
5332 """IsBold(self, TreeItemId item) -> bool"""
5333 return _controls_.TreeCtrl_IsBold(*args, **kwargs)
5334
5335 def GetChildrenCount(*args, **kwargs):
5336 """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t"""
5337 return _controls_.TreeCtrl_GetChildrenCount(*args, **kwargs)
5338
5339 def GetRootItem(*args, **kwargs):
5340 """GetRootItem(self) -> TreeItemId"""
5341 return _controls_.TreeCtrl_GetRootItem(*args, **kwargs)
5342
5343 def GetSelection(*args, **kwargs):
5344 """GetSelection(self) -> TreeItemId"""
5345 return _controls_.TreeCtrl_GetSelection(*args, **kwargs)
5346
5347 def GetSelections(*args, **kwargs):
5348 """GetSelections(self) -> PyObject"""
5349 return _controls_.TreeCtrl_GetSelections(*args, **kwargs)
5350
5351 def GetItemParent(*args, **kwargs):
5352 """GetItemParent(self, TreeItemId item) -> TreeItemId"""
5353 return _controls_.TreeCtrl_GetItemParent(*args, **kwargs)
5354
5355 def GetFirstChild(*args, **kwargs):
5356 """GetFirstChild(self, TreeItemId item) -> PyObject"""
5357 return _controls_.TreeCtrl_GetFirstChild(*args, **kwargs)
5358
5359 def GetNextChild(*args, **kwargs):
5360 """GetNextChild(self, TreeItemId item, void cookie) -> PyObject"""
5361 return _controls_.TreeCtrl_GetNextChild(*args, **kwargs)
5362
5363 def GetLastChild(*args, **kwargs):
5364 """GetLastChild(self, TreeItemId item) -> TreeItemId"""
5365 return _controls_.TreeCtrl_GetLastChild(*args, **kwargs)
5366
5367 def GetNextSibling(*args, **kwargs):
5368 """GetNextSibling(self, TreeItemId item) -> TreeItemId"""
5369 return _controls_.TreeCtrl_GetNextSibling(*args, **kwargs)
5370
5371 def GetPrevSibling(*args, **kwargs):
5372 """GetPrevSibling(self, TreeItemId item) -> TreeItemId"""
5373 return _controls_.TreeCtrl_GetPrevSibling(*args, **kwargs)
5374
5375 def GetFirstVisibleItem(*args, **kwargs):
5376 """GetFirstVisibleItem(self) -> TreeItemId"""
5377 return _controls_.TreeCtrl_GetFirstVisibleItem(*args, **kwargs)
5378
5379 def GetNextVisible(*args, **kwargs):
5380 """GetNextVisible(self, TreeItemId item) -> TreeItemId"""
5381 return _controls_.TreeCtrl_GetNextVisible(*args, **kwargs)
5382
5383 def GetPrevVisible(*args, **kwargs):
5384 """GetPrevVisible(self, TreeItemId item) -> TreeItemId"""
5385 return _controls_.TreeCtrl_GetPrevVisible(*args, **kwargs)
5386
5387 def AddRoot(*args, **kwargs):
5388 """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId"""
5389 return _controls_.TreeCtrl_AddRoot(*args, **kwargs)
5390
5391 def PrependItem(*args, **kwargs):
5392 """
5393 PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5394 TreeItemData data=None) -> TreeItemId
5395 """
5396 return _controls_.TreeCtrl_PrependItem(*args, **kwargs)
5397
5398 def InsertItem(*args, **kwargs):
5399 """
5400 InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text,
5401 int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5402 """
5403 return _controls_.TreeCtrl_InsertItem(*args, **kwargs)
5404
5405 def InsertItemBefore(*args, **kwargs):
5406 """
5407 InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1,
5408 int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5409 """
5410 return _controls_.TreeCtrl_InsertItemBefore(*args, **kwargs)
5411
5412 def AppendItem(*args, **kwargs):
5413 """
5414 AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5415 TreeItemData data=None) -> TreeItemId
5416 """
5417 return _controls_.TreeCtrl_AppendItem(*args, **kwargs)
5418
5419 def Delete(*args, **kwargs):
5420 """Delete(self, TreeItemId item)"""
5421 return _controls_.TreeCtrl_Delete(*args, **kwargs)
5422
5423 def DeleteChildren(*args, **kwargs):
5424 """DeleteChildren(self, TreeItemId item)"""
5425 return _controls_.TreeCtrl_DeleteChildren(*args, **kwargs)
5426
5427 def DeleteAllItems(*args, **kwargs):
5428 """DeleteAllItems(self)"""
5429 return _controls_.TreeCtrl_DeleteAllItems(*args, **kwargs)
5430
5431 def Expand(*args, **kwargs):
5432 """Expand(self, TreeItemId item)"""
5433 return _controls_.TreeCtrl_Expand(*args, **kwargs)
5434
453fb36b
RD
5435 def ExpandAllChildren(*args, **kwargs):
5436 """ExpandAllChildren(self, TreeItemId item)"""
5437 return _controls_.TreeCtrl_ExpandAllChildren(*args, **kwargs)
5438
5439 def ExpandAll(*args, **kwargs):
5440 """ExpandAll(self)"""
5441 return _controls_.TreeCtrl_ExpandAll(*args, **kwargs)
5442
d55e5bfc
RD
5443 def Collapse(*args, **kwargs):
5444 """Collapse(self, TreeItemId item)"""
5445 return _controls_.TreeCtrl_Collapse(*args, **kwargs)
5446
5447 def CollapseAndReset(*args, **kwargs):
5448 """CollapseAndReset(self, TreeItemId item)"""
5449 return _controls_.TreeCtrl_CollapseAndReset(*args, **kwargs)
5450
5451 def Toggle(*args, **kwargs):
5452 """Toggle(self, TreeItemId item)"""
5453 return _controls_.TreeCtrl_Toggle(*args, **kwargs)
5454
5455 def Unselect(*args, **kwargs):
5456 """Unselect(self)"""
5457 return _controls_.TreeCtrl_Unselect(*args, **kwargs)
5458
5459 def UnselectItem(*args, **kwargs):
5460 """UnselectItem(self, TreeItemId item)"""
5461 return _controls_.TreeCtrl_UnselectItem(*args, **kwargs)
5462
5463 def UnselectAll(*args, **kwargs):
5464 """UnselectAll(self)"""
5465 return _controls_.TreeCtrl_UnselectAll(*args, **kwargs)
5466
5467 def SelectItem(*args, **kwargs):
5468 """SelectItem(self, TreeItemId item, bool select=True)"""
5469 return _controls_.TreeCtrl_SelectItem(*args, **kwargs)
5470
5471 def ToggleItemSelection(*args, **kwargs):
5472 """ToggleItemSelection(self, TreeItemId item)"""
5473 return _controls_.TreeCtrl_ToggleItemSelection(*args, **kwargs)
5474
5475 def EnsureVisible(*args, **kwargs):
5476 """EnsureVisible(self, TreeItemId item)"""
5477 return _controls_.TreeCtrl_EnsureVisible(*args, **kwargs)
5478
5479 def ScrollTo(*args, **kwargs):
5480 """ScrollTo(self, TreeItemId item)"""
5481 return _controls_.TreeCtrl_ScrollTo(*args, **kwargs)
5482
5483 def EditLabel(*args, **kwargs):
5484 """EditLabel(self, TreeItemId item)"""
5485 return _controls_.TreeCtrl_EditLabel(*args, **kwargs)
5486
5487 def GetEditControl(*args, **kwargs):
5488 """GetEditControl(self) -> TextCtrl"""
5489 return _controls_.TreeCtrl_GetEditControl(*args, **kwargs)
5490
5491 def EndEditLabel(*args, **kwargs):
5492 """EndEditLabel(self, TreeItemId item, bool discardChanges=False)"""
5493 return _controls_.TreeCtrl_EndEditLabel(*args, **kwargs)
5494
5495 def SortChildren(*args, **kwargs):
5496 """SortChildren(self, TreeItemId item)"""
5497 return _controls_.TreeCtrl_SortChildren(*args, **kwargs)
5498
5499 def HitTest(*args, **kwargs):
a001823c
RD
5500 """
5501 HitTest(Point point) -> (item, where)
5502
5503 Determine which item (if any) belongs the given point. The coordinates
5504 specified are relative to the client area of tree ctrl and the where return
5505 value is set to a bitmask of wxTREE_HITTEST_xxx constants.
5506
5507 """
d55e5bfc
RD
5508 return _controls_.TreeCtrl_HitTest(*args, **kwargs)
5509
5510 def GetBoundingRect(*args, **kwargs):
5511 """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject"""
5512 return _controls_.TreeCtrl_GetBoundingRect(*args, **kwargs)
5513
110da5b0
RD
5514 def SetState(*args, **kwargs):
5515 """SetState(self, TreeItemId node, int state)"""
5516 return _controls_.TreeCtrl_SetState(*args, **kwargs)
5517
5518 def GetState(*args, **kwargs):
5519 """GetState(self, TreeItemId node) -> int"""
5520 return _controls_.TreeCtrl_GetState(*args, **kwargs)
5521
d55e5bfc 5522 def GetClassDefaultAttributes(*args, **kwargs):
19272049
RD
5523 """
5524 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5525
5526 Get the default attributes for this class. This is useful if you want
5527 to use the same font or colour in your own control as in a standard
5528 control -- which is a much better idea than hard coding specific
5529 colours or fonts which might look completely out of place on the
5530 user's system, especially if it uses themes.
5531
5532 The variant parameter is only relevant under Mac currently and is
5533 ignore under other platforms. Under Mac, it will change the size of
5534 the returned font. See `wx.Window.SetWindowVariant` for more about
5535 this.
5536 """
d55e5bfc
RD
5537 return _controls_.TreeCtrl_GetClassDefaultAttributes(*args, **kwargs)
5538
5539 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2131d850
RD
5540 def SetQuickBestSize(*args, **kwargs):
5541 """SetQuickBestSize(self, bool q)"""
5542 return _controls_.TreeCtrl_SetQuickBestSize(*args, **kwargs)
5543
5544 def GetQuickBestSize(*args, **kwargs):
5545 """GetQuickBestSize(self) -> bool"""
5546 return _controls_.TreeCtrl_GetQuickBestSize(*args, **kwargs)
5547
994453b8
RD
5548 Count = property(GetCount,doc="See `GetCount`")
5549 EditControl = property(GetEditControl,doc="See `GetEditControl`")
5550 FirstVisibleItem = property(GetFirstVisibleItem,doc="See `GetFirstVisibleItem`")
5551 ImageList = property(GetImageList,SetImageList,doc="See `GetImageList` and `SetImageList`")
5552 Indent = property(GetIndent,SetIndent,doc="See `GetIndent` and `SetIndent`")
5553 QuickBestSize = property(GetQuickBestSize,SetQuickBestSize,doc="See `GetQuickBestSize` and `SetQuickBestSize`")
5554 RootItem = property(GetRootItem,doc="See `GetRootItem`")
5555 Selection = property(GetSelection,doc="See `GetSelection`")
5556 Selections = property(GetSelections,doc="See `GetSelections`")
5557 Spacing = property(GetSpacing,SetSpacing,doc="See `GetSpacing` and `SetSpacing`")
5558 StateImageList = property(GetStateImageList,SetStateImageList,doc="See `GetStateImageList` and `SetStateImageList`")
2131d850 5559_controls_.TreeCtrl_swigregister(TreeCtrl)
d55e5bfc
RD
5560
5561def PreTreeCtrl(*args, **kwargs):
5562 """PreTreeCtrl() -> TreeCtrl"""
5563 val = _controls_.new_PreTreeCtrl(*args, **kwargs)
d55e5bfc
RD
5564 return val
5565
5566def TreeCtrl_GetClassDefaultAttributes(*args, **kwargs):
554f62e9 5567 """
19272049
RD
5568 TreeCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5569
5570 Get the default attributes for this class. This is useful if you want
5571 to use the same font or colour in your own control as in a standard
5572 control -- which is a much better idea than hard coding specific
5573 colours or fonts which might look completely out of place on the
5574 user's system, especially if it uses themes.
5575
5576 The variant parameter is only relevant under Mac currently and is
5577 ignore under other platforms. Under Mac, it will change the size of
5578 the returned font. See `wx.Window.SetWindowVariant` for more about
5579 this.
5580 """
554f62e9 5581 return _controls_.TreeCtrl_GetClassDefaultAttributes(*args, **kwargs)
d55e5bfc
RD
5582
5583#---------------------------------------------------------------------------
5584
5585DIRCTRL_DIR_ONLY = _controls_.DIRCTRL_DIR_ONLY
5586DIRCTRL_SELECT_FIRST = _controls_.DIRCTRL_SELECT_FIRST
5587DIRCTRL_SHOW_FILTERS = _controls_.DIRCTRL_SHOW_FILTERS
5588DIRCTRL_3D_INTERNAL = _controls_.DIRCTRL_3D_INTERNAL
5589DIRCTRL_EDIT_LABELS = _controls_.DIRCTRL_EDIT_LABELS
5590class GenericDirCtrl(_core.Control):
093d3ff1 5591 """Proxy of C++ GenericDirCtrl class"""
554f62e9
RD
5592 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
5593 __repr__ = _swig_repr
5594 def __init__(self, *args, **kwargs):
d55e5bfc
RD
5595 """
5596 __init__(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5597 Point pos=DefaultPosition, Size size=DefaultSize,
5598 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5599 String filter=EmptyString,
5600 int defaultFilter=0, String name=TreeCtrlNameStr) -> GenericDirCtrl
5601 """
554f62e9 5602 _controls_.GenericDirCtrl_swiginit(self,_controls_.new_GenericDirCtrl(*args, **kwargs))
d55e5bfc
RD
5603 self._setOORInfo(self)
5604
5605 def Create(*args, **kwargs):
5606 """
5607 Create(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5608 Point pos=DefaultPosition, Size size=DefaultSize,
5609 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5610 String filter=EmptyString,
5611 int defaultFilter=0, String name=TreeCtrlNameStr) -> bool
5612 """
5613 return _controls_.GenericDirCtrl_Create(*args, **kwargs)
5614
5615 def ExpandPath(*args, **kwargs):
5616 """ExpandPath(self, String path) -> bool"""
5617 return _controls_.GenericDirCtrl_ExpandPath(*args, **kwargs)
5618
704eda0c
RD
5619 def CollapsePath(*args, **kwargs):
5620 """CollapsePath(self, String path) -> bool"""
5621 return _controls_.GenericDirCtrl_CollapsePath(*args, **kwargs)
5622
d55e5bfc
RD
5623 def GetDefaultPath(*args, **kwargs):
5624 """GetDefaultPath(self) -> String"""
5625 return _controls_.GenericDirCtrl_GetDefaultPath(*args, **kwargs)
5626
5627 def SetDefaultPath(*args, **kwargs):
5628 """SetDefaultPath(self, String path)"""
5629 return _controls_.GenericDirCtrl_SetDefaultPath(*args, **kwargs)
5630
5631 def GetPath(*args, **kwargs):
5632 """GetPath(self) -> String"""
5633 return _controls_.GenericDirCtrl_GetPath(*args, **kwargs)
5634
5635 def GetFilePath(*args, **kwargs):
5636 """GetFilePath(self) -> String"""
5637 return _controls_.GenericDirCtrl_GetFilePath(*args, **kwargs)
5638
5639 def SetPath(*args, **kwargs):
5640 """SetPath(self, String path)"""
5641 return _controls_.GenericDirCtrl_SetPath(*args, **kwargs)
5642
5643 def ShowHidden(*args, **kwargs):
5644 """ShowHidden(self, bool show)"""
5645 return _controls_.GenericDirCtrl_ShowHidden(*args, **kwargs)
5646
5647 def GetShowHidden(*args, **kwargs):
5648 """GetShowHidden(self) -> bool"""
5649 return _controls_.GenericDirCtrl_GetShowHidden(*args, **kwargs)
5650
5651 def GetFilter(*args, **kwargs):
5652 """GetFilter(self) -> String"""
5653 return _controls_.GenericDirCtrl_GetFilter(*args, **kwargs)
5654
5655 def SetFilter(*args, **kwargs):
5656 """SetFilter(self, String filter)"""
5657 return _controls_.GenericDirCtrl_SetFilter(*args, **kwargs)
5658
5659 def GetFilterIndex(*args, **kwargs):
5660 """GetFilterIndex(self) -> int"""
5661 return _controls_.GenericDirCtrl_GetFilterIndex(*args, **kwargs)
5662
5663 def SetFilterIndex(*args, **kwargs):
5664 """SetFilterIndex(self, int n)"""
5665 return _controls_.GenericDirCtrl_SetFilterIndex(*args, **kwargs)
5666
5667 def GetRootId(*args, **kwargs):
5668 """GetRootId(self) -> TreeItemId"""
5669 return _controls_.GenericDirCtrl_GetRootId(*args, **kwargs)
5670
5671 def GetTreeCtrl(*args, **kwargs):
5672 """GetTreeCtrl(self) -> TreeCtrl"""
5673 return _controls_.GenericDirCtrl_GetTreeCtrl(*args, **kwargs)
5674
5675 def GetFilterListCtrl(*args, **kwargs):
5676 """GetFilterListCtrl(self) -> DirFilterListCtrl"""
5677 return _controls_.GenericDirCtrl_GetFilterListCtrl(*args, **kwargs)
5678
5679 def FindChild(*args, **kwargs):
a001823c
RD
5680 """
5681 FindChild(wxTreeItemId parentId, wxString path) -> (item, done)
5682
5683 Find the child that matches the first part of 'path'. E.g. if a child
5684 path is "/usr" and 'path' is "/usr/include" then the child for
5685 /usr is returned. If the path string has been used (we're at the
5686 leaf), done is set to True.
5687
5688 """
d55e5bfc
RD
5689 return _controls_.GenericDirCtrl_FindChild(*args, **kwargs)
5690
5691 def DoResize(*args, **kwargs):
5692 """DoResize(self)"""
5693 return _controls_.GenericDirCtrl_DoResize(*args, **kwargs)
5694
5695 def ReCreateTree(*args, **kwargs):
5696 """ReCreateTree(self)"""
5697 return _controls_.GenericDirCtrl_ReCreateTree(*args, **kwargs)
5698
97ab0f6a
RD
5699 DefaultPath = property(GetDefaultPath,SetDefaultPath,doc="See `GetDefaultPath` and `SetDefaultPath`")
5700 FilePath = property(GetFilePath,doc="See `GetFilePath`")
5701 Filter = property(GetFilter,SetFilter,doc="See `GetFilter` and `SetFilter`")
5702 FilterIndex = property(GetFilterIndex,SetFilterIndex,doc="See `GetFilterIndex` and `SetFilterIndex`")
5703 FilterListCtrl = property(GetFilterListCtrl,doc="See `GetFilterListCtrl`")
5704 Path = property(GetPath,SetPath,doc="See `GetPath` and `SetPath`")
5705 RootId = property(GetRootId,doc="See `GetRootId`")
97ab0f6a 5706 TreeCtrl = property(GetTreeCtrl,doc="See `GetTreeCtrl`")
2131d850 5707_controls_.GenericDirCtrl_swigregister(GenericDirCtrl)
d55e5bfc
RD
5708DirDialogDefaultFolderStr = cvar.DirDialogDefaultFolderStr
5709
5710def PreGenericDirCtrl(*args, **kwargs):
5711 """PreGenericDirCtrl() -> GenericDirCtrl"""
5712 val = _controls_.new_PreGenericDirCtrl(*args, **kwargs)
d55e5bfc
RD
5713 return val
5714
5715class DirFilterListCtrl(Choice):
093d3ff1 5716 """Proxy of C++ DirFilterListCtrl class"""
554f62e9
RD
5717 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
5718 __repr__ = _swig_repr
5719 def __init__(self, *args, **kwargs):
d55e5bfc
RD
5720 """
5721 __init__(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5722 Size size=DefaultSize, long style=0) -> DirFilterListCtrl
5723 """
554f62e9 5724 _controls_.DirFilterListCtrl_swiginit(self,_controls_.new_DirFilterListCtrl(*args, **kwargs))
d55e5bfc
RD
5725 self._setOORInfo(self)
5726
5727 def Create(*args, **kwargs):
5728 """
5729 Create(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5730 Size size=DefaultSize, long style=0) -> bool
5731 """
5732 return _controls_.DirFilterListCtrl_Create(*args, **kwargs)
5733
5734 def FillFilterList(*args, **kwargs):
5735 """FillFilterList(self, String filter, int defaultFilter)"""
5736 return _controls_.DirFilterListCtrl_FillFilterList(*args, **kwargs)
5737
2131d850 5738_controls_.DirFilterListCtrl_swigregister(DirFilterListCtrl)
d55e5bfc
RD
5739
5740def PreDirFilterListCtrl(*args, **kwargs):
5741 """PreDirFilterListCtrl() -> DirFilterListCtrl"""
5742 val = _controls_.new_PreDirFilterListCtrl(*args, **kwargs)
d55e5bfc
RD
5743 return val
5744
5745#---------------------------------------------------------------------------
5746
5747class PyControl(_core.Control):
093d3ff1 5748 """Proxy of C++ PyControl class"""
554f62e9
RD
5749 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
5750 __repr__ = _swig_repr
5751 def __init__(self, *args, **kwargs):
d55e5bfc 5752 """
248ed943
RD
5753 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
5754 Size size=DefaultSize, long style=0, Validator validator=DefaultValidator,
d55e5bfc
RD
5755 String name=ControlNameStr) -> PyControl
5756 """
554f62e9 5757 _controls_.PyControl_swiginit(self,_controls_.new_PyControl(*args, **kwargs))
c25f90f6 5758 self._setOORInfo(self);PyControl._setCallbackInfo(self, self, PyControl)
d55e5bfc
RD
5759
5760 def _setCallbackInfo(*args, **kwargs):
5761 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5762 return _controls_.PyControl__setCallbackInfo(*args, **kwargs)
5763
26c4d26f 5764 SetBestSize = wx.Window.SetInitialSize
60d5fcc1
RD
5765 def DoEraseBackground(*args, **kwargs):
5766 """DoEraseBackground(self, DC dc) -> bool"""
5767 return _controls_.PyControl_DoEraseBackground(*args, **kwargs)
5768
b06b3e70
RD
5769 def DoMoveWindow(*args, **kwargs):
5770 """DoMoveWindow(self, int x, int y, int width, int height)"""
5771 return _controls_.PyControl_DoMoveWindow(*args, **kwargs)
d55e5bfc 5772
b06b3e70
RD
5773 def DoSetSize(*args, **kwargs):
5774 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
5775 return _controls_.PyControl_DoSetSize(*args, **kwargs)
d55e5bfc 5776
b06b3e70
RD
5777 def DoSetClientSize(*args, **kwargs):
5778 """DoSetClientSize(self, int width, int height)"""
5779 return _controls_.PyControl_DoSetClientSize(*args, **kwargs)
d55e5bfc 5780
b06b3e70
RD
5781 def DoSetVirtualSize(*args, **kwargs):
5782 """DoSetVirtualSize(self, int x, int y)"""
5783 return _controls_.PyControl_DoSetVirtualSize(*args, **kwargs)
d55e5bfc 5784
b06b3e70
RD
5785 def DoGetSize(*args, **kwargs):
5786 """DoGetSize() -> (width, height)"""
5787 return _controls_.PyControl_DoGetSize(*args, **kwargs)
d55e5bfc 5788
b06b3e70
RD
5789 def DoGetClientSize(*args, **kwargs):
5790 """DoGetClientSize() -> (width, height)"""
5791 return _controls_.PyControl_DoGetClientSize(*args, **kwargs)
d55e5bfc 5792
b06b3e70
RD
5793 def DoGetPosition(*args, **kwargs):
5794 """DoGetPosition() -> (x,y)"""
5795 return _controls_.PyControl_DoGetPosition(*args, **kwargs)
d55e5bfc 5796
b06b3e70
RD
5797 def DoGetVirtualSize(*args, **kwargs):
5798 """DoGetVirtualSize(self) -> Size"""
5799 return _controls_.PyControl_DoGetVirtualSize(*args, **kwargs)
d55e5bfc 5800
b06b3e70
RD
5801 def DoGetBestSize(*args, **kwargs):
5802 """DoGetBestSize(self) -> Size"""
5803 return _controls_.PyControl_DoGetBestSize(*args, **kwargs)
d55e5bfc 5804
b06b3e70
RD
5805 def GetDefaultAttributes(*args, **kwargs):
5806 """GetDefaultAttributes(self) -> VisualAttributes"""
5807 return _controls_.PyControl_GetDefaultAttributes(*args, **kwargs)
5808
5809 def OnInternalIdle(*args, **kwargs):
5810 """OnInternalIdle(self)"""
5811 return _controls_.PyControl_OnInternalIdle(*args, **kwargs)
5812
5813 def base_DoMoveWindow(*args, **kw):
5814 return PyScrolledWindow.DoMoveWindow(*args, **kw)
5815 base_DoMoveWindow = wx._deprecated(base_DoMoveWindow,
5816 "Please use PyScrolledWindow.DoMoveWindow instead.")
5817
5818 def base_DoSetSize(*args, **kw):
5819 return PyScrolledWindow.DoSetSize(*args, **kw)
5820 base_DoSetSize = wx._deprecated(base_DoSetSize,
5821 "Please use PyScrolledWindow.DoSetSize instead.")
d55e5bfc 5822
b06b3e70
RD
5823 def base_DoSetClientSize(*args, **kw):
5824 return PyScrolledWindow.DoSetClientSize(*args, **kw)
5825 base_DoSetClientSize = wx._deprecated(base_DoSetClientSize,
5826 "Please use PyScrolledWindow.DoSetClientSize instead.")
d55e5bfc 5827
b06b3e70
RD
5828 def base_DoSetVirtualSize(*args, **kw):
5829 return PyScrolledWindow.DoSetVirtualSize(*args, **kw)
5830 base_DoSetVirtualSize = wx._deprecated(base_DoSetVirtualSize,
5831 "Please use PyScrolledWindow.DoSetVirtualSize instead.")
d55e5bfc 5832
b06b3e70
RD
5833 def base_DoGetSize(*args, **kw):
5834 return PyScrolledWindow.DoGetSize(*args, **kw)
5835 base_DoGetSize = wx._deprecated(base_DoGetSize,
5836 "Please use PyScrolledWindow.DoGetSize instead.")
d55e5bfc 5837
b06b3e70
RD
5838 def base_DoGetClientSize(*args, **kw):
5839 return PyScrolledWindow.DoGetClientSize(*args, **kw)
5840 base_DoGetClientSize = wx._deprecated(base_DoGetClientSize,
5841 "Please use PyScrolledWindow.DoGetClientSize instead.")
d55e5bfc 5842
b06b3e70
RD
5843 def base_DoGetPosition(*args, **kw):
5844 return PyScrolledWindow.DoGetPosition(*args, **kw)
5845 base_DoGetPosition = wx._deprecated(base_DoGetPosition,
5846 "Please use PyScrolledWindow.DoGetPosition instead.")
d55e5bfc 5847
b06b3e70
RD
5848 def base_DoGetVirtualSize(*args, **kw):
5849 return PyScrolledWindow.DoGetVirtualSize(*args, **kw)
5850 base_DoGetVirtualSize = wx._deprecated(base_DoGetVirtualSize,
5851 "Please use PyScrolledWindow.DoGetVirtualSize instead.")
d55e5bfc 5852
b06b3e70
RD
5853 def base_DoGetBestSize(*args, **kw):
5854 return PyScrolledWindow.DoGetBestSize(*args, **kw)
5855 base_DoGetBestSize = wx._deprecated(base_DoGetBestSize,
5856 "Please use PyScrolledWindow.DoGetBestSize instead.")
d55e5bfc 5857
b06b3e70
RD
5858 def base_InitDialog(*args, **kw):
5859 return PyScrolledWindow.InitDialog(*args, **kw)
5860 base_InitDialog = wx._deprecated(base_InitDialog,
5861 "Please use PyScrolledWindow.InitDialog instead.")
d55e5bfc 5862
b06b3e70
RD
5863 def base_TransferDataToWindow(*args, **kw):
5864 return PyScrolledWindow.TransferDataToWindow(*args, **kw)
5865 base_TransferDataToWindow = wx._deprecated(base_TransferDataToWindow,
5866 "Please use PyScrolledWindow.TransferDataToWindow instead.")
d55e5bfc 5867
b06b3e70
RD
5868 def base_TransferDataFromWindow(*args, **kw):
5869 return PyScrolledWindow.TransferDataFromWindow(*args, **kw)
5870 base_TransferDataFromWindow = wx._deprecated(base_TransferDataFromWindow,
5871 "Please use PyScrolledWindow.TransferDataFromWindow instead.")
caef1a4d 5872
b06b3e70
RD
5873 def base_Validate(*args, **kw):
5874 return PyScrolledWindow.Validate(*args, **kw)
5875 base_Validate = wx._deprecated(base_Validate,
5876 "Please use PyScrolledWindow.Validate instead.")
5877
5878 def base_AcceptsFocus(*args, **kw):
5879 return PyScrolledWindow.AcceptsFocus(*args, **kw)
5880 base_AcceptsFocus = wx._deprecated(base_AcceptsFocus,
5881 "Please use PyScrolledWindow.AcceptsFocus instead.")
5882
5883 def base_AcceptsFocusFromKeyboard(*args, **kw):
5884 return PyScrolledWindow.AcceptsFocusFromKeyboard(*args, **kw)
5885 base_AcceptsFocusFromKeyboard = wx._deprecated(base_AcceptsFocusFromKeyboard,
5886 "Please use PyScrolledWindow.AcceptsFocusFromKeyboard instead.")
5887
5888 def base_GetMaxSize(*args, **kw):
5889 return PyScrolledWindow.GetMaxSize(*args, **kw)
5890 base_GetMaxSize = wx._deprecated(base_GetMaxSize,
5891 "Please use PyScrolledWindow.GetMaxSize instead.")
5892
5893 def base_AddChild(*args, **kw):
5894 return PyScrolledWindow.AddChild(*args, **kw)
5895 base_AddChild = wx._deprecated(base_AddChild,
5896 "Please use PyScrolledWindow.AddChild instead.")
5897
5898 def base_RemoveChild(*args, **kw):
5899 return PyScrolledWindow.RemoveChild(*args, **kw)
5900 base_RemoveChild = wx._deprecated(base_RemoveChild,
5901 "Please use PyScrolledWindow.RemoveChild instead.")
5902
5903 def base_ShouldInheritColours(*args, **kw):
5904 return PyScrolledWindow.ShouldInheritColours(*args, **kw)
5905 base_ShouldInheritColours = wx._deprecated(base_ShouldInheritColours,
5906 "Please use PyScrolledWindow.ShouldInheritColours instead.")
5907
5908 def base_GetDefaultAttributes(*args, **kw):
5909 return PyScrolledWindow.GetDefaultAttributes(*args, **kw)
5910 base_GetDefaultAttributes = wx._deprecated(base_GetDefaultAttributes,
5911 "Please use PyScrolledWindow.GetDefaultAttributes instead.")
5912
5913 def base_OnInternalIdle(*args, **kw):
5914 return PyScrolledWindow.OnInternalIdle(*args, **kw)
5915 base_OnInternalIdle = wx._deprecated(base_OnInternalIdle,
5916 "Please use PyScrolledWindow.OnInternalIdle instead.")
8d38bd1d 5917
2131d850 5918_controls_.PyControl_swigregister(PyControl)
d55e5bfc
RD
5919
5920def PrePyControl(*args, **kwargs):
5921 """PrePyControl() -> PyControl"""
5922 val = _controls_.new_PrePyControl(*args, **kwargs)
d55e5bfc
RD
5923 return val
5924
5925#---------------------------------------------------------------------------
5926
d55e5bfc
RD
5927wxEVT_HELP = _controls_.wxEVT_HELP
5928wxEVT_DETAILED_HELP = _controls_.wxEVT_DETAILED_HELP
5929EVT_HELP = wx.PyEventBinder( wxEVT_HELP, 1)
5930EVT_HELP_RANGE = wx.PyEventBinder( wxEVT_HELP, 2)
5931EVT_DETAILED_HELP = wx.PyEventBinder( wxEVT_DETAILED_HELP, 1)
5932EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
5933
5934class HelpEvent(_core.CommandEvent):
5935 """
79fccf9d
RD
5936 A help event is sent when the user has requested context-sensitive
5937 help. This can either be caused by the application requesting
5938 context-sensitive help mode via wx.ContextHelp, or (on MS Windows) by
5939 the system generating a WM_HELP message when the user pressed F1 or
5940 clicked on the query button in a dialog caption.
5941
5942 A help event is sent to the window that the user clicked on, and is
5943 propagated up the window hierarchy until the event is processed or
5944 there are no more event handlers. The application should call
5945 event.GetId to check the identity of the clicked-on window, and then
5946 either show some suitable help or call event.Skip if the identifier is
5947 unrecognised. Calling Skip is important because it allows wxWindows to
5948 generate further events for ancestors of the clicked-on
5949 window. Otherwise it would be impossible to show help for container
5950 windows, since processing would stop after the first window found.
d55e5bfc 5951 """
554f62e9
RD
5952 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
5953 __repr__ = _swig_repr
704eda0c
RD
5954 Origin_Unknown = _controls_.HelpEvent_Origin_Unknown
5955 Origin_Keyboard = _controls_.HelpEvent_Origin_Keyboard
5956 Origin_HelpButton = _controls_.HelpEvent_Origin_HelpButton
554f62e9 5957 def __init__(self, *args, **kwargs):
704eda0c
RD
5958 """
5959 __init__(self, EventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition,
5960 int origin=Origin_Unknown) -> HelpEvent
5961 """
554f62e9 5962 _controls_.HelpEvent_swiginit(self,_controls_.new_HelpEvent(*args, **kwargs))
d55e5bfc
RD
5963 def GetPosition(*args, **kwargs):
5964 """
5965 GetPosition(self) -> Point
5966
5967 Returns the left-click position of the mouse, in screen
5968 coordinates. This allows the application to position the help
5969 appropriately.
5970 """
5971 return _controls_.HelpEvent_GetPosition(*args, **kwargs)
5972
5973 def SetPosition(*args, **kwargs):
5974 """
5975 SetPosition(self, Point pos)
5976
5977 Sets the left-click position of the mouse, in screen coordinates.
5978 """
5979 return _controls_.HelpEvent_SetPosition(*args, **kwargs)
5980
5981 def GetLink(*args, **kwargs):
5982 """
5983 GetLink(self) -> String
5984
5985 Get an optional link to further help
5986 """
5987 return _controls_.HelpEvent_GetLink(*args, **kwargs)
5988
5989 def SetLink(*args, **kwargs):
5990 """
5991 SetLink(self, String link)
5992
5993 Set an optional link to further help
5994 """
5995 return _controls_.HelpEvent_SetLink(*args, **kwargs)
5996
5997 def GetTarget(*args, **kwargs):
5998 """
5999 GetTarget(self) -> String
6000
6001 Get an optional target to display help in. E.g. a window specification
6002 """
6003 return _controls_.HelpEvent_GetTarget(*args, **kwargs)
6004
6005 def SetTarget(*args, **kwargs):
6006 """
6007 SetTarget(self, String target)
6008
6009 Set an optional target to display help in. E.g. a window specification
6010 """
6011 return _controls_.HelpEvent_SetTarget(*args, **kwargs)
6012
704eda0c
RD
6013 def GetOrigin(*args, **kwargs):
6014 """
6015 GetOrigin(self) -> int
6016
6017 Optiononal indication of the source of the event.
6018 """
6019 return _controls_.HelpEvent_GetOrigin(*args, **kwargs)
6020
6021 def SetOrigin(*args, **kwargs):
6022 """SetOrigin(self, int origin)"""
6023 return _controls_.HelpEvent_SetOrigin(*args, **kwargs)
6024
97ab0f6a
RD
6025 Link = property(GetLink,SetLink,doc="See `GetLink` and `SetLink`")
6026 Origin = property(GetOrigin,SetOrigin,doc="See `GetOrigin` and `SetOrigin`")
6027 Position = property(GetPosition,SetPosition,doc="See `GetPosition` and `SetPosition`")
6028 Target = property(GetTarget,SetTarget,doc="See `GetTarget` and `SetTarget`")
2131d850 6029_controls_.HelpEvent_swigregister(HelpEvent)
d55e5bfc
RD
6030
6031class ContextHelp(_core.Object):
6032 """
79fccf9d
RD
6033 This class changes the cursor to a query and puts the application into
6034 a 'context-sensitive help mode'. When the user left-clicks on a window
6035 within the specified window, a ``EVT_HELP`` event is sent to that
6036 control, and the application may respond to it by popping up some
6037 help.
d55e5bfc
RD
6038
6039 There are a couple of ways to invoke this behaviour implicitly:
6040
fc46b7f3 6041 * Use the wx.WS_EX_CONTEXTHELP extended style for a dialog or frame
79fccf9d
RD
6042 (Windows only). This will put a question mark in the titlebar,
6043 and Windows will put the application into context-sensitive help
6044 mode automatically, with further programming.
6045
6046 * Create a `wx.ContextHelpButton`, whose predefined behaviour is
6047 to create a context help object. Normally you will write your
6048 application so that this button is only added to a dialog for
fc46b7f3 6049 non-Windows platforms (use ``wx.WS_EX_CONTEXTHELP`` on
79fccf9d 6050 Windows).
d55e5bfc 6051
79fccf9d 6052 :see: `wx.ContextHelpButton`
d55e5bfc
RD
6053
6054 """
554f62e9
RD
6055 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6056 __repr__ = _swig_repr
6057 def __init__(self, *args, **kwargs):
d55e5bfc
RD
6058 """
6059 __init__(self, Window window=None, bool doNow=True) -> ContextHelp
6060
79fccf9d
RD
6061 Constructs a context help object, calling BeginContextHelp if doNow is
6062 true (the default).
d55e5bfc
RD
6063
6064 If window is None, the top window is used.
6065 """
554f62e9
RD
6066 _controls_.ContextHelp_swiginit(self,_controls_.new_ContextHelp(*args, **kwargs))
6067 __swig_destroy__ = _controls_.delete_ContextHelp
6068 __del__ = lambda self : None;
d55e5bfc
RD
6069 def BeginContextHelp(*args, **kwargs):
6070 """
6071 BeginContextHelp(self, Window window=None) -> bool
6072
79fccf9d
RD
6073 Puts the application into context-sensitive help mode. window is the
6074 window which will be used to catch events; if NULL, the top window
6075 will be used.
d55e5bfc
RD
6076
6077 Returns true if the application was successfully put into
79fccf9d
RD
6078 context-sensitive help mode. This function only returns when the event
6079 loop has finished.
d55e5bfc
RD
6080 """
6081 return _controls_.ContextHelp_BeginContextHelp(*args, **kwargs)
6082
6083 def EndContextHelp(*args, **kwargs):
6084 """
6085 EndContextHelp(self) -> bool
6086
6087 Ends context-sensitive help mode. Not normally called by the
6088 application.
6089 """
6090 return _controls_.ContextHelp_EndContextHelp(*args, **kwargs)
6091
2131d850 6092_controls_.ContextHelp_swigregister(ContextHelp)
d55e5bfc
RD
6093
6094class ContextHelpButton(BitmapButton):
6095 """
79fccf9d
RD
6096 Instances of this class may be used to add a question mark button that
6097 when pressed, puts the application into context-help mode. It does
6098 this by creating a wx.ContextHelp object which itself generates a
6099 ``EVT_HELP`` event when the user clicks on a window.
6100
6101 On Windows, you may add a question-mark icon to a dialog by use of the
6102 ``wx.DIALOG_EX_CONTEXTHELP`` extra style, but on other platforms you
6103 will have to add a button explicitly, usually next to OK, Cancel or
6104 similar buttons.
d55e5bfc 6105
79fccf9d 6106 :see: `wx.ContextHelp`, `wx.ContextHelpButton`
d55e5bfc
RD
6107
6108 """
554f62e9
RD
6109 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6110 __repr__ = _swig_repr
6111 def __init__(self, *args, **kwargs):
d55e5bfc
RD
6112 """
6113 __init__(self, Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
6114 Size size=DefaultSize, long style=BU_AUTODRAW) -> ContextHelpButton
6115
6116 Constructor, creating and showing a context help button.
6117 """
554f62e9 6118 _controls_.ContextHelpButton_swiginit(self,_controls_.new_ContextHelpButton(*args, **kwargs))
d55e5bfc
RD
6119 self._setOORInfo(self)
6120
2131d850 6121_controls_.ContextHelpButton_swigregister(ContextHelpButton)
d55e5bfc
RD
6122
6123class HelpProvider(object):
6124 """
6125 wx.HelpProvider is an abstract class used by a program
6126 implementing context-sensitive help to show the help text for the
6127 given window.
6128
6129 The current help provider must be explicitly set by the
6130 application using wx.HelpProvider.Set().
6131 """
554f62e9
RD
6132 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6133 def __init__(self): raise AttributeError, "No constructor defined"
6134 __repr__ = _swig_repr
f52cbe90
RD
6135 __swig_destroy__ = _controls_.delete_HelpProvider
6136 __del__ = lambda self : None;
d55e5bfc
RD
6137 def Set(*args, **kwargs):
6138 """
c24da6d6 6139 Set(HelpProvider helpProvider) -> HelpProvider
d55e5bfc 6140
79fccf9d
RD
6141 Sset the current, application-wide help provider. Returns the previous
6142 one. Unlike some other classes, the help provider is not created on
6143 demand. This must be explicitly done by the application.
d55e5bfc
RD
6144 """
6145 return _controls_.HelpProvider_Set(*args, **kwargs)
6146
6147 Set = staticmethod(Set)
6148 def Get(*args, **kwargs):
6149 """
c24da6d6 6150 Get() -> HelpProvider
d55e5bfc
RD
6151
6152 Return the current application-wide help provider.
6153 """
6154 return _controls_.HelpProvider_Get(*args, **kwargs)
6155
6156 Get = staticmethod(Get)
6157 def GetHelp(*args, **kwargs):
6158 """
6159 GetHelp(self, Window window) -> String
6160
79fccf9d
RD
6161 Gets the help string for this window. Its interpretation is dependent
6162 on the help provider except that empty string always means that no
6163 help is associated with the window.
d55e5bfc
RD
6164 """
6165 return _controls_.HelpProvider_GetHelp(*args, **kwargs)
6166
6167 def ShowHelp(*args, **kwargs):
6168 """
6169 ShowHelp(self, Window window) -> bool
6170
6171 Shows help for the given window. Uses GetHelp internally if
79fccf9d
RD
6172 applicable. Returns True if it was done, or False if no help was
6173 available for this window.
d55e5bfc
RD
6174 """
6175 return _controls_.HelpProvider_ShowHelp(*args, **kwargs)
6176
b850e7f3
RD
6177 def ShowHelpAtPoint(*args, **kwargs):
6178 """
6179 ShowHelpAtPoint(self, wxWindowBase window, Point pt, int origin) -> bool
6180
6181 Show help for the given window (uses window.GetHelpAtPoint()
6182 internally if applicable), return true if it was done or false if no
6183 help available for this window.
6184 """
6185 return _controls_.HelpProvider_ShowHelpAtPoint(*args, **kwargs)
6186
d55e5bfc
RD
6187 def AddHelp(*args, **kwargs):
6188 """
6189 AddHelp(self, Window window, String text)
6190
6191 Associates the text with the given window.
6192 """
6193 return _controls_.HelpProvider_AddHelp(*args, **kwargs)
6194
6195 def AddHelpById(*args, **kwargs):
6196 """
6197 AddHelpById(self, int id, String text)
6198
6199 This version associates the given text with all windows with this
79fccf9d
RD
6200 id. May be used to set the same help string for all Cancel buttons in
6201 the application, for example.
d55e5bfc
RD
6202 """
6203 return _controls_.HelpProvider_AddHelpById(*args, **kwargs)
6204
6205 def RemoveHelp(*args, **kwargs):
6206 """
6207 RemoveHelp(self, Window window)
6208
6209 Removes the association between the window pointer and the help
79fccf9d
RD
6210 text. This is called by the wx.Window destructor. Without this, the
6211 table of help strings will fill up and when window pointers are
6212 reused, the wrong help string will be found.
d55e5bfc
RD
6213 """
6214 return _controls_.HelpProvider_RemoveHelp(*args, **kwargs)
6215
6216 def Destroy(*args, **kwargs):
6217 """Destroy(self)"""
b39fe951
RD
6218 args[0].this.own(False)
6219 return _controls_.HelpProvider_Destroy(*args, **kwargs)
d55e5bfc 6220
2131d850 6221_controls_.HelpProvider_swigregister(HelpProvider)
d55e5bfc
RD
6222
6223def HelpProvider_Set(*args, **kwargs):
554f62e9 6224 """
d55e5bfc
RD
6225 HelpProvider_Set(HelpProvider helpProvider) -> HelpProvider
6226
79fccf9d
RD
6227 Sset the current, application-wide help provider. Returns the previous
6228 one. Unlike some other classes, the help provider is not created on
6229 demand. This must be explicitly done by the application.
d55e5bfc 6230 """
554f62e9 6231 return _controls_.HelpProvider_Set(*args, **kwargs)
d55e5bfc 6232
554f62e9
RD
6233def HelpProvider_Get(*args):
6234 """
d55e5bfc
RD
6235 HelpProvider_Get() -> HelpProvider
6236
6237 Return the current application-wide help provider.
6238 """
554f62e9 6239 return _controls_.HelpProvider_Get(*args)
d55e5bfc
RD
6240
6241class SimpleHelpProvider(HelpProvider):
6242 """
79fccf9d
RD
6243 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6244 supports only plain text help strings, and shows the string associated
6245 with the control (if any) in a tooltip.
d55e5bfc 6246 """
554f62e9
RD
6247 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6248 __repr__ = _swig_repr
6249 def __init__(self, *args, **kwargs):
d55e5bfc
RD
6250 """
6251 __init__(self) -> SimpleHelpProvider
6252
79fccf9d
RD
6253 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6254 supports only plain text help strings, and shows the string associated
6255 with the control (if any) in a tooltip.
d55e5bfc 6256 """
554f62e9 6257 _controls_.SimpleHelpProvider_swiginit(self,_controls_.new_SimpleHelpProvider(*args, **kwargs))
2131d850 6258_controls_.SimpleHelpProvider_swigregister(SimpleHelpProvider)
d55e5bfc
RD
6259
6260#---------------------------------------------------------------------------
6261
6262class DragImage(_core.Object):
093d3ff1 6263 """Proxy of C++ DragImage class"""
554f62e9
RD
6264 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6265 __repr__ = _swig_repr
6266 def __init__(self, *args, **kwargs):
d55e5bfc 6267 """__init__(self, Bitmap image, Cursor cursor=wxNullCursor) -> DragImage"""
554f62e9
RD
6268 _controls_.DragImage_swiginit(self,_controls_.new_DragImage(*args, **kwargs))
6269 __swig_destroy__ = _controls_.delete_DragImage
6270 __del__ = lambda self : None;
d55e5bfc
RD
6271 def SetBackingBitmap(*args, **kwargs):
6272 """SetBackingBitmap(self, Bitmap bitmap)"""
6273 return _controls_.DragImage_SetBackingBitmap(*args, **kwargs)
6274
6275 def BeginDrag(*args, **kwargs):
6276 """
6277 BeginDrag(self, Point hotspot, Window window, bool fullScreen=False,
6278 Rect rect=None) -> bool
6279 """
6280 return _controls_.DragImage_BeginDrag(*args, **kwargs)
6281
6282 def BeginDragBounded(*args, **kwargs):
6283 """BeginDragBounded(self, Point hotspot, Window window, Window boundingWindow) -> bool"""
6284 return _controls_.DragImage_BeginDragBounded(*args, **kwargs)
6285
6286 def EndDrag(*args, **kwargs):
6287 """EndDrag(self) -> bool"""
6288 return _controls_.DragImage_EndDrag(*args, **kwargs)
6289
6290 def Move(*args, **kwargs):
6291 """Move(self, Point pt) -> bool"""
6292 return _controls_.DragImage_Move(*args, **kwargs)
6293
6294 def Show(*args, **kwargs):
6295 """Show(self) -> bool"""
6296 return _controls_.DragImage_Show(*args, **kwargs)
6297
6298 def Hide(*args, **kwargs):
6299 """Hide(self) -> bool"""
6300 return _controls_.DragImage_Hide(*args, **kwargs)
6301
6302 def GetImageRect(*args, **kwargs):
6303 """GetImageRect(self, Point pos) -> Rect"""
6304 return _controls_.DragImage_GetImageRect(*args, **kwargs)
6305
6306 def DoDrawImage(*args, **kwargs):
6307 """DoDrawImage(self, DC dc, Point pos) -> bool"""
6308 return _controls_.DragImage_DoDrawImage(*args, **kwargs)
6309
6310 def UpdateBackingFromWindow(*args, **kwargs):
6311 """UpdateBackingFromWindow(self, DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -> bool"""
6312 return _controls_.DragImage_UpdateBackingFromWindow(*args, **kwargs)
6313
6314 def RedrawImage(*args, **kwargs):
6315 """RedrawImage(self, Point oldPos, Point newPos, bool eraseOld, bool drawNew) -> bool"""
6316 return _controls_.DragImage_RedrawImage(*args, **kwargs)
6317
226118fc 6318 ImageRect = property(GetImageRect,doc="See `GetImageRect`")
2131d850 6319_controls_.DragImage_swigregister(DragImage)
d55e5bfc
RD
6320
6321def DragIcon(*args, **kwargs):
6322 """DragIcon(Icon image, Cursor cursor=wxNullCursor) -> DragImage"""
6323 val = _controls_.new_DragIcon(*args, **kwargs)
d55e5bfc
RD
6324 return val
6325
6326def DragString(*args, **kwargs):
6327 """DragString(String str, Cursor cursor=wxNullCursor) -> DragImage"""
6328 val = _controls_.new_DragString(*args, **kwargs)
d55e5bfc
RD
6329 return val
6330
6331def DragTreeItem(*args, **kwargs):
6332 """DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -> DragImage"""
6333 val = _controls_.new_DragTreeItem(*args, **kwargs)
d55e5bfc
RD
6334 return val
6335
6336def DragListItem(*args, **kwargs):
6337 """DragListItem(ListCtrl listCtrl, long id) -> DragImage"""
6338 val = _controls_.new_DragListItem(*args, **kwargs)
d55e5bfc
RD
6339 return val
6340
53aa7709
RD
6341#---------------------------------------------------------------------------
6342
6343DP_DEFAULT = _controls_.DP_DEFAULT
6344DP_SPIN = _controls_.DP_SPIN
6345DP_DROPDOWN = _controls_.DP_DROPDOWN
6346DP_SHOWCENTURY = _controls_.DP_SHOWCENTURY
6347DP_ALLOWNONE = _controls_.DP_ALLOWNONE
6348class DatePickerCtrl(_core.Control):
6349 """
6350 This control allows the user to select a date. Unlike
6351 `wx.calendar.CalendarCtrl`, which is a relatively big control,
6352 `wx.DatePickerCtrl` is implemented as a small window showing the
6353 currently selected date. The control can be edited using the keyboard,
6354 and can also display a popup window for more user-friendly date
6355 selection, depending on the styles used and the platform.
6356 """
554f62e9
RD
6357 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6358 __repr__ = _swig_repr
6359 def __init__(self, *args, **kwargs):
53aa7709
RD
6360 """
6361 __init__(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6362 Point pos=DefaultPosition, Size size=DefaultSize,
6363 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6364 Validator validator=DefaultValidator,
6365 String name=DatePickerCtrlNameStr) -> DatePickerCtrl
6366
6367 Create a new DatePickerCtrl.
6368 """
554f62e9 6369 _controls_.DatePickerCtrl_swiginit(self,_controls_.new_DatePickerCtrl(*args, **kwargs))
53aa7709
RD
6370 self._setOORInfo(self)
6371
6372 def Create(*args, **kwargs):
6373 """
6374 Create(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6375 Point pos=DefaultPosition, Size size=DefaultSize,
6376 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6377 Validator validator=DefaultValidator,
6378 String name=DatePickerCtrlNameStr) -> bool
6379
6380 Create the GUI parts of the DatePickerCtrl, for use in 2-phase
6381 creation.
6382 """
6383 return _controls_.DatePickerCtrl_Create(*args, **kwargs)
6384
6385 def SetValue(*args, **kwargs):
6386 """
6387 SetValue(self, DateTime dt)
6388
6389 Changes the current value of the control. The date should be valid and
6390 included in the currently selected range, if any.
6391
6392 Calling this method does not result in a date change event.
6393 """
6394 return _controls_.DatePickerCtrl_SetValue(*args, **kwargs)
6395
6396 def GetValue(*args, **kwargs):
6397 """
6398 GetValue(self) -> DateTime
6399
6400 Returns the currently selected date. If there is no selection or the
6401 selection is outside of the current range, an invalid `wx.DateTime`
6402 object is returned.
6403 """
6404 return _controls_.DatePickerCtrl_GetValue(*args, **kwargs)
6405
6406 def SetRange(*args, **kwargs):
6407 """
6408 SetRange(self, DateTime dt1, DateTime dt2)
6409
6410 Sets the valid range for the date selection. If dt1 is valid, it
6411 becomes the earliest date (inclusive) accepted by the control. If dt2
6412 is valid, it becomes the latest possible date.
6413
6414 If the current value of the control is outside of the newly set range
6415 bounds, the behaviour is undefined.
6416 """
6417 return _controls_.DatePickerCtrl_SetRange(*args, **kwargs)
6418
6419 def GetLowerLimit(*args, **kwargs):
6420 """
6421 GetLowerLimit(self) -> DateTime
6422
6423 Get the lower limit of the valid range for the date selection, if any.
6424 If there is no range or there is no lower limit, then the
6425 `wx.DateTime` value returned will be invalid.
6426 """
6427 return _controls_.DatePickerCtrl_GetLowerLimit(*args, **kwargs)
6428
6429 def GetUpperLimit(*args, **kwargs):
6430 """
6431 GetUpperLimit(self) -> DateTime
6432
6433 Get the upper limit of the valid range for the date selection, if any.
6434 If there is no range or there is no upper limit, then the
6435 `wx.DateTime` value returned will be invalid.
6436 """
6437 return _controls_.DatePickerCtrl_GetUpperLimit(*args, **kwargs)
6438
226118fc
RD
6439 LowerLimit = property(GetLowerLimit,doc="See `GetLowerLimit`")
6440 UpperLimit = property(GetUpperLimit,doc="See `GetUpperLimit`")
6441 Value = property(GetValue,SetValue,doc="See `GetValue` and `SetValue`")
2131d850 6442_controls_.DatePickerCtrl_swigregister(DatePickerCtrl)
53aa7709
RD
6443DatePickerCtrlNameStr = cvar.DatePickerCtrlNameStr
6444
6445def PreDatePickerCtrl(*args, **kwargs):
6446 """
6447 PreDatePickerCtrl() -> DatePickerCtrl
6448
6449 Precreate a DatePickerCtrl for use in 2-phase creation.
6450 """
6451 val = _controls_.new_PreDatePickerCtrl(*args, **kwargs)
53aa7709
RD
6452 return val
6453
704eda0c 6454HL_CONTEXTMENU = _controls_.HL_CONTEXTMENU
33d6fd3b
RD
6455HL_ALIGN_LEFT = _controls_.HL_ALIGN_LEFT
6456HL_ALIGN_RIGHT = _controls_.HL_ALIGN_RIGHT
6457HL_ALIGN_CENTRE = _controls_.HL_ALIGN_CENTRE
704eda0c
RD
6458HL_DEFAULT_STYLE = _controls_.HL_DEFAULT_STYLE
6459#---------------------------------------------------------------------------
6460
6461class HyperlinkCtrl(_core.Control):
6462 """
6463 A static text control that emulates a hyperlink. The link is displayed
6464 in an appropriate text style, derived from the control's normal font.
6465 When the mouse rolls over the link, the cursor changes to a hand and
6466 the link's color changes to the active color.
6467
6468 Clicking on the link does not launch a web browser; instead, a
6469 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6470 events.
6471
6472 """
6473 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6474 __repr__ = _swig_repr
6475 def __init__(self, *args, **kwargs):
6476 """
6477 __init__(self, Window parent, int id, String label, String url, Point pos=DefaultPosition,
6478 Size size=DefaultSize,
6479 long style=HL_DEFAULT_STYLE, String name=HyperlinkCtrlNameStr) -> HyperlinkCtrl
6480
6481 A static text control that emulates a hyperlink. The link is displayed
6482 in an appropriate text style, derived from the control's normal font.
6483 When the mouse rolls over the link, the cursor changes to a hand and
6484 the link's color changes to the active color.
6485
6486 Clicking on the link does not launch a web browser; instead, a
6487 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6488 events.
6489
6490 """
6491 _controls_.HyperlinkCtrl_swiginit(self,_controls_.new_HyperlinkCtrl(*args, **kwargs))
6492 self._setOORInfo(self)
6493
6494 def Create(*args, **kwargs):
6495 """
6496 Create(self, Window parent, int id, String label, String url, Point pos=DefaultPosition,
6497 Size size=DefaultSize,
6498 long style=HL_DEFAULT_STYLE, String name=HyperlinkCtrlNameStr) -> bool
6499 """
6500 return _controls_.HyperlinkCtrl_Create(*args, **kwargs)
6501
6502 def GetHoverColour(*args, **kwargs):
6503 """GetHoverColour(self) -> Colour"""
6504 return _controls_.HyperlinkCtrl_GetHoverColour(*args, **kwargs)
6505
6506 def SetHoverColour(*args, **kwargs):
6507 """SetHoverColour(self, Colour colour)"""
6508 return _controls_.HyperlinkCtrl_SetHoverColour(*args, **kwargs)
6509
6510 def GetNormalColour(*args, **kwargs):
6511 """GetNormalColour(self) -> Colour"""
6512 return _controls_.HyperlinkCtrl_GetNormalColour(*args, **kwargs)
6513
6514 def SetNormalColour(*args, **kwargs):
6515 """SetNormalColour(self, Colour colour)"""
6516 return _controls_.HyperlinkCtrl_SetNormalColour(*args, **kwargs)
6517
6518 def GetVisitedColour(*args, **kwargs):
6519 """GetVisitedColour(self) -> Colour"""
6520 return _controls_.HyperlinkCtrl_GetVisitedColour(*args, **kwargs)
6521
6522 def SetVisitedColour(*args, **kwargs):
6523 """SetVisitedColour(self, Colour colour)"""
6524 return _controls_.HyperlinkCtrl_SetVisitedColour(*args, **kwargs)
6525
6526 def GetURL(*args, **kwargs):
6527 """GetURL(self) -> String"""
6528 return _controls_.HyperlinkCtrl_GetURL(*args, **kwargs)
6529
6530 def SetURL(*args, **kwargs):
6531 """SetURL(self, String url)"""
6532 return _controls_.HyperlinkCtrl_SetURL(*args, **kwargs)
6533
6534 def SetVisited(*args, **kwargs):
6535 """SetVisited(self, bool visited=True)"""
6536 return _controls_.HyperlinkCtrl_SetVisited(*args, **kwargs)
6537
6538 def GetVisited(*args, **kwargs):
6539 """GetVisited(self) -> bool"""
6540 return _controls_.HyperlinkCtrl_GetVisited(*args, **kwargs)
6541
97ab0f6a
RD
6542 HoverColour = property(GetHoverColour,SetHoverColour,doc="See `GetHoverColour` and `SetHoverColour`")
6543 NormalColour = property(GetNormalColour,SetNormalColour,doc="See `GetNormalColour` and `SetNormalColour`")
6544 URL = property(GetURL,SetURL,doc="See `GetURL` and `SetURL`")
6545 Visited = property(GetVisited,SetVisited,doc="See `GetVisited` and `SetVisited`")
6546 VisitedColour = property(GetVisitedColour,SetVisitedColour,doc="See `GetVisitedColour` and `SetVisitedColour`")
704eda0c
RD
6547_controls_.HyperlinkCtrl_swigregister(HyperlinkCtrl)
6548HyperlinkCtrlNameStr = cvar.HyperlinkCtrlNameStr
6549
6550def PreHyperlinkCtrl(*args, **kwargs):
6551 """
6552 PreHyperlinkCtrl() -> HyperlinkCtrl
6553
6554 A static text control that emulates a hyperlink. The link is displayed
6555 in an appropriate text style, derived from the control's normal font.
6556 When the mouse rolls over the link, the cursor changes to a hand and
6557 the link's color changes to the active color.
6558
6559 Clicking on the link does not launch a web browser; instead, a
6560 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6561 events.
6562
6563 """
6564 val = _controls_.new_PreHyperlinkCtrl(*args, **kwargs)
6565 return val
6566
6567wxEVT_COMMAND_HYPERLINK = _controls_.wxEVT_COMMAND_HYPERLINK
6568class HyperlinkEvent(_core.CommandEvent):
6569 """Proxy of C++ HyperlinkEvent class"""
6570 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6571 __repr__ = _swig_repr
6572 def __init__(self, *args, **kwargs):
6573 """__init__(self, Object generator, int id, String url) -> HyperlinkEvent"""
6574 _controls_.HyperlinkEvent_swiginit(self,_controls_.new_HyperlinkEvent(*args, **kwargs))
6575 def GetURL(*args, **kwargs):
6576 """GetURL(self) -> String"""
6577 return _controls_.HyperlinkEvent_GetURL(*args, **kwargs)
6578
6579 def SetURL(*args, **kwargs):
6580 """SetURL(self, String url)"""
6581 return _controls_.HyperlinkEvent_SetURL(*args, **kwargs)
6582
97ab0f6a 6583 URL = property(GetURL,SetURL,doc="See `GetURL` and `SetURL`")
704eda0c
RD
6584_controls_.HyperlinkEvent_swigregister(HyperlinkEvent)
6585
6586EVT_HYPERLINK = wx.PyEventBinder( wxEVT_COMMAND_HYPERLINK, 1 )
6587
b850e7f3
RD
6588#---------------------------------------------------------------------------
6589
6590PB_USE_TEXTCTRL = _controls_.PB_USE_TEXTCTRL
6591class PickerBase(_core.Control):
6592 """
6593 Base abstract class for all pickers which support an auxiliary text
6594 control. This class handles all positioning and sizing of the text
6595 control like a an horizontal `wx.BoxSizer` would do, with the text
6596 control on the left of the picker button and the proportion of the
6597 picker fixed to value 1.
6598 """
6599 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6600 def __init__(self): raise AttributeError, "No constructor defined"
6601 __repr__ = _swig_repr
6602 def CreateBase(*args, **kwargs):
6603 """
6604 CreateBase(self, Window parent, int id, String text=wxEmptyString, Point pos=DefaultPosition,
6605 Size size=DefaultSize,
6606 long style=0, Validator validator=DefaultValidator,
6607 String name=wxButtonNameStr) -> bool
6608 """
6609 return _controls_.PickerBase_CreateBase(*args, **kwargs)
6610
6611 def SetInternalMargin(*args, **kwargs):
6612 """
6613 SetInternalMargin(self, int newmargin)
6614
6615 Sets the margin (in pixels) between the picker and the text control.
6616 """
6617 return _controls_.PickerBase_SetInternalMargin(*args, **kwargs)
6618
6619 def GetInternalMargin(*args, **kwargs):
6620 """
6621 GetInternalMargin(self) -> int
6622
6623 Returns the margin (in pixels) between the picker and the text
6624 control.
6625 """
6626 return _controls_.PickerBase_GetInternalMargin(*args, **kwargs)
6627
6628 def SetTextCtrlProportion(*args, **kwargs):
6629 """
6630 SetTextCtrlProportion(self, int prop)
6631
6632 Sets the proportion between the text control and the picker button.
6633 This is used to set relative sizes of the text contorl and the picker.
6634 The value passed to this function must be >= 1.
6635 """
6636 return _controls_.PickerBase_SetTextCtrlProportion(*args, **kwargs)
6637
6638 def GetTextCtrlProportion(*args, **kwargs):
6639 """
6640 GetTextCtrlProportion(self) -> int
6641
6642 Returns the proportion between the text control and the picker.
6643 """
6644 return _controls_.PickerBase_GetTextCtrlProportion(*args, **kwargs)
6645
1eeb270e
RD
6646 def SetPickerCtrlProportion(*args, **kwargs):
6647 """
6648 SetPickerCtrlProportion(self, int prop)
6649
6650 Sets the proportion value of the picker.
6651 """
6652 return _controls_.PickerBase_SetPickerCtrlProportion(*args, **kwargs)
6653
6654 def GetPickerCtrlProportion(*args, **kwargs):
6655 """
6656 GetPickerCtrlProportion(self) -> int
6657
6658 Gets the proportion value of the picker.
6659 """
6660 return _controls_.PickerBase_GetPickerCtrlProportion(*args, **kwargs)
6661
b02396e8
RD
6662 def IsTextCtrlGrowable(*args, **kwargs):
6663 """IsTextCtrlGrowable(self) -> bool"""
6664 return _controls_.PickerBase_IsTextCtrlGrowable(*args, **kwargs)
6665
6666 def SetTextCtrlGrowable(*args, **kwargs):
6667 """SetTextCtrlGrowable(self, bool grow=True)"""
6668 return _controls_.PickerBase_SetTextCtrlGrowable(*args, **kwargs)
6669
6670 def IsPickerCtrlGrowable(*args, **kwargs):
6671 """IsPickerCtrlGrowable(self) -> bool"""
6672 return _controls_.PickerBase_IsPickerCtrlGrowable(*args, **kwargs)
6673
6674 def SetPickerCtrlGrowable(*args, **kwargs):
6675 """SetPickerCtrlGrowable(self, bool grow=True)"""
6676 return _controls_.PickerBase_SetPickerCtrlGrowable(*args, **kwargs)
6677
b850e7f3
RD
6678 def HasTextCtrl(*args, **kwargs):
6679 """
6680 HasTextCtrl(self) -> bool
6681
6682 Returns true if this class has a valid text control (i.e. if the
6683 wx.PB_USE_TEXTCTRL style was given when creating this control).
6684 """
6685 return _controls_.PickerBase_HasTextCtrl(*args, **kwargs)
6686
6687 def GetTextCtrl(*args, **kwargs):
6688 """
6689 GetTextCtrl(self) -> TextCtrl
6690
6691 Returns a pointer to the text control handled by this class or None if
6692 the wx.PB_USE_TEXTCTRL style was not specified when this control was
6693 created.
6694
6695 Very important: the contents of the text control could be containing
6696 an invalid representation of the entity which can be chosen through
6697 the picker (e.g. the user entered an invalid colour syntax because of
6698 a typo). Thus you should never parse the content of the textctrl to
6699 get the user's input; rather use the derived-class getter
6700 (e.g. `wx.ColourPickerCtrl.GetColour`, `wx.FilePickerCtrl.GetPath`,
6701 etc).
6702 """
6703 return _controls_.PickerBase_GetTextCtrl(*args, **kwargs)
6704
6705 def GetPickerCtrl(*args, **kwargs):
6706 """GetPickerCtrl(self) -> Control"""
6707 return _controls_.PickerBase_GetPickerCtrl(*args, **kwargs)
6708
33d6fd3b
RD
6709 InternalMargin = property(GetInternalMargin,SetInternalMargin,doc="See `GetInternalMargin` and `SetInternalMargin`")
6710 PickerCtrl = property(GetPickerCtrl,doc="See `GetPickerCtrl`")
6711 PickerCtrlProportion = property(GetPickerCtrlProportion,SetPickerCtrlProportion,doc="See `GetPickerCtrlProportion` and `SetPickerCtrlProportion`")
6712 TextCtrl = property(GetTextCtrl,doc="See `GetTextCtrl`")
6713 TextCtrlProportion = property(GetTextCtrlProportion,SetTextCtrlProportion,doc="See `GetTextCtrlProportion` and `SetTextCtrlProportion`")
6714 TextCtrlGrowable = property(IsTextCtrlGrowable,SetTextCtrlGrowable,doc="See `IsTextCtrlGrowable` and `SetTextCtrlGrowable`")
6715 PickerCtrlGrowable = property(IsPickerCtrlGrowable,SetPickerCtrlGrowable,doc="See `IsPickerCtrlGrowable` and `SetPickerCtrlGrowable`")
b850e7f3
RD
6716_controls_.PickerBase_swigregister(PickerBase)
6717
6718#---------------------------------------------------------------------------
6719
6720CLRP_SHOW_LABEL = _controls_.CLRP_SHOW_LABEL
6721CLRP_USE_TEXTCTRL = _controls_.CLRP_USE_TEXTCTRL
6722CLRP_DEFAULT_STYLE = _controls_.CLRP_DEFAULT_STYLE
6723class ColourPickerCtrl(PickerBase):
6724 """
6725 This control allows the user to select a colour. The generic
6726 implementation is a button which brings up a `wx.ColourDialog` when
6727 clicked. Native implementations may differ but this is usually a
6728 (small) widget which give access to the colour-chooser dialog.
6729 """
6730 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6731 __repr__ = _swig_repr
6732 def __init__(self, *args, **kwargs):
6733 """
6734 __init__(self, Window parent, int id=-1, Colour col=*wxBLACK, Point pos=DefaultPosition,
6735 Size size=DefaultSize,
6736 long style=CLRP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6737 String name=ColourPickerCtrlNameStr) -> ColourPickerCtrl
6738
6739 This control allows the user to select a colour. The generic
6740 implementation is a button which brings up a `wx.ColourDialog` when
6741 clicked. Native implementations may differ but this is usually a
6742 (small) widget which give access to the colour-chooser dialog.
6743 """
6744 _controls_.ColourPickerCtrl_swiginit(self,_controls_.new_ColourPickerCtrl(*args, **kwargs))
6745 self._setOORInfo(self)
6746
6747 def Create(*args, **kwargs):
6748 """
6749 Create(self, Window parent, int id, Colour col=*wxBLACK, Point pos=DefaultPosition,
6750 Size size=DefaultSize, long style=CLRP_DEFAULT_STYLE,
6751 Validator validator=DefaultValidator,
6752 String name=ColourPickerCtrlNameStr) -> bool
6753 """
6754 return _controls_.ColourPickerCtrl_Create(*args, **kwargs)
6755
6756 def GetColour(*args, **kwargs):
6757 """
6758 GetColour(self) -> Colour
6759
6760 Returns the currently selected colour.
6761 """
6762 return _controls_.ColourPickerCtrl_GetColour(*args, **kwargs)
6763
6764 def SetColour(*args, **kwargs):
6765 """
6766 SetColour(self, Colour col)
6767
6768 Set the displayed colour.
6769 """
6770 return _controls_.ColourPickerCtrl_SetColour(*args, **kwargs)
6771
226118fc 6772 Colour = property(GetColour,SetColour,doc="See `GetColour` and `SetColour`")
b850e7f3
RD
6773_controls_.ColourPickerCtrl_swigregister(ColourPickerCtrl)
6774ColourPickerCtrlNameStr = cvar.ColourPickerCtrlNameStr
6775
6776def PreColourPickerCtrl(*args, **kwargs):
6777 """
6778 PreColourPickerCtrl() -> ColourPickerCtrl
6779
6780 This control allows the user to select a colour. The generic
6781 implementation is a button which brings up a `wx.ColourDialog` when
6782 clicked. Native implementations may differ but this is usually a
6783 (small) widget which give access to the colour-chooser dialog.
6784 """
6785 val = _controls_.new_PreColourPickerCtrl(*args, **kwargs)
6786 return val
6787
6788wxEVT_COMMAND_COLOURPICKER_CHANGED = _controls_.wxEVT_COMMAND_COLOURPICKER_CHANGED
6789EVT_COLOURPICKER_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_COLOURPICKER_CHANGED, 1 )
6790
6791class ColourPickerEvent(_core.CommandEvent):
6792 """Proxy of C++ ColourPickerEvent class"""
6793 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6794 __repr__ = _swig_repr
6795 def __init__(self, *args, **kwargs):
6796 """__init__(self, Object generator, int id, Colour col) -> ColourPickerEvent"""
6797 _controls_.ColourPickerEvent_swiginit(self,_controls_.new_ColourPickerEvent(*args, **kwargs))
6798 def GetColour(*args, **kwargs):
6799 """GetColour(self) -> Colour"""
6800 return _controls_.ColourPickerEvent_GetColour(*args, **kwargs)
6801
6802 def SetColour(*args, **kwargs):
6803 """SetColour(self, Colour c)"""
6804 return _controls_.ColourPickerEvent_SetColour(*args, **kwargs)
6805
226118fc 6806 Colour = property(GetColour,SetColour,doc="See `GetColour` and `SetColour`")
b850e7f3
RD
6807_controls_.ColourPickerEvent_swigregister(ColourPickerEvent)
6808
6809#---------------------------------------------------------------------------
6810
6811FLP_OPEN = _controls_.FLP_OPEN
6812FLP_SAVE = _controls_.FLP_SAVE
6813FLP_OVERWRITE_PROMPT = _controls_.FLP_OVERWRITE_PROMPT
6814FLP_FILE_MUST_EXIST = _controls_.FLP_FILE_MUST_EXIST
6815FLP_CHANGE_DIR = _controls_.FLP_CHANGE_DIR
6816DIRP_DIR_MUST_EXIST = _controls_.DIRP_DIR_MUST_EXIST
6817DIRP_CHANGE_DIR = _controls_.DIRP_CHANGE_DIR
6818FLP_USE_TEXTCTRL = _controls_.FLP_USE_TEXTCTRL
6819FLP_DEFAULT_STYLE = _controls_.FLP_DEFAULT_STYLE
6820DIRP_USE_TEXTCTRL = _controls_.DIRP_USE_TEXTCTRL
6821DIRP_DEFAULT_STYLE = _controls_.DIRP_DEFAULT_STYLE
6822class FilePickerCtrl(PickerBase):
6823 """Proxy of C++ FilePickerCtrl class"""
6824 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6825 __repr__ = _swig_repr
6826 def __init__(self, *args, **kwargs):
6827 """
6828 __init__(self, Window parent, int id=-1, String path=EmptyString,
6829 String message=FileSelectorPromptStr, String wildcard=FileSelectorDefaultWildcardStr,
6830 Point pos=DefaultPosition,
6831 Size size=DefaultSize,
6832 long style=FLP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6833 String name=FilePickerCtrlNameStr) -> FilePickerCtrl
6834 """
6835 _controls_.FilePickerCtrl_swiginit(self,_controls_.new_FilePickerCtrl(*args, **kwargs))
6836 self._setOORInfo(self)
6837
6838 def Create(*args, **kwargs):
6839 """
6840 Create(self, Window parent, int id=-1, String path=EmptyString,
6841 String message=FileSelectorPromptStr, String wildcard=FileSelectorDefaultWildcardStr,
6842 Point pos=DefaultPosition,
6843 Size size=DefaultSize,
6844 long style=FLP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6845 String name=FilePickerCtrlNameStr) -> bool
6846 """
6847 return _controls_.FilePickerCtrl_Create(*args, **kwargs)
6848
6849 def GetPath(*args, **kwargs):
6850 """GetPath(self) -> String"""
6851 return _controls_.FilePickerCtrl_GetPath(*args, **kwargs)
6852
6853 def SetPath(*args, **kwargs):
6854 """SetPath(self, String str)"""
6855 return _controls_.FilePickerCtrl_SetPath(*args, **kwargs)
6856
b02396e8
RD
6857 def CheckPath(*args, **kwargs):
6858 """CheckPath(self, String path) -> bool"""
6859 return _controls_.FilePickerCtrl_CheckPath(*args, **kwargs)
6860
6861 def GetTextCtrlValue(*args, **kwargs):
6862 """GetTextCtrlValue(self) -> String"""
6863 return _controls_.FilePickerCtrl_GetTextCtrlValue(*args, **kwargs)
6864
97ab0f6a
RD
6865 Path = property(GetPath,SetPath,doc="See `GetPath` and `SetPath`")
6866 TextCtrlValue = property(GetTextCtrlValue,doc="See `GetTextCtrlValue`")
b850e7f3
RD
6867_controls_.FilePickerCtrl_swigregister(FilePickerCtrl)
6868FilePickerCtrlNameStr = cvar.FilePickerCtrlNameStr
6869FileSelectorPromptStr = cvar.FileSelectorPromptStr
6870DirPickerCtrlNameStr = cvar.DirPickerCtrlNameStr
6871DirSelectorPromptStr = cvar.DirSelectorPromptStr
6872FileSelectorDefaultWildcardStr = cvar.FileSelectorDefaultWildcardStr
6873
6874def PreFilePickerCtrl(*args, **kwargs):
6875 """PreFilePickerCtrl() -> FilePickerCtrl"""
6876 val = _controls_.new_PreFilePickerCtrl(*args, **kwargs)
6877 return val
6878
6879class DirPickerCtrl(PickerBase):
6880 """Proxy of C++ DirPickerCtrl class"""
6881 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6882 __repr__ = _swig_repr
6883 def __init__(self, *args, **kwargs):
6884 """
6885 __init__(self, Window parent, int id=-1, String path=EmptyString,
6886 String message=DirSelectorPromptStr, Point pos=DefaultPosition,
6887 Size size=DefaultSize, long style=DIRP_DEFAULT_STYLE,
6888 Validator validator=DefaultValidator,
6889 String name=DirPickerCtrlNameStr) -> DirPickerCtrl
6890 """
6891 _controls_.DirPickerCtrl_swiginit(self,_controls_.new_DirPickerCtrl(*args, **kwargs))
6892 self._setOORInfo(self)
6893
6894 def Create(*args, **kwargs):
6895 """
6896 Create(self, Window parent, int id=-1, String path=EmptyString,
6897 String message=DirSelectorPromptStr, Point pos=DefaultPosition,
6898 Size size=DefaultSize, long style=DIRP_DEFAULT_STYLE,
6899 Validator validator=DefaultValidator,
6900 String name=DirPickerCtrlNameStr) -> bool
6901 """
6902 return _controls_.DirPickerCtrl_Create(*args, **kwargs)
6903
6904 def GetPath(*args, **kwargs):
6905 """GetPath(self) -> String"""
6906 return _controls_.DirPickerCtrl_GetPath(*args, **kwargs)
6907
6908 def SetPath(*args, **kwargs):
6909 """SetPath(self, String str)"""
6910 return _controls_.DirPickerCtrl_SetPath(*args, **kwargs)
6911
b02396e8
RD
6912 def CheckPath(*args, **kwargs):
6913 """CheckPath(self, String path) -> bool"""
6914 return _controls_.DirPickerCtrl_CheckPath(*args, **kwargs)
6915
6916 def GetTextCtrlValue(*args, **kwargs):
6917 """GetTextCtrlValue(self) -> String"""
6918 return _controls_.DirPickerCtrl_GetTextCtrlValue(*args, **kwargs)
6919
226118fc
RD
6920 Path = property(GetPath,SetPath,doc="See `GetPath` and `SetPath`")
6921 TextCtrlValue = property(GetTextCtrlValue,doc="See `GetTextCtrlValue`")
b850e7f3
RD
6922_controls_.DirPickerCtrl_swigregister(DirPickerCtrl)
6923
6924def PreDirPickerCtrl(*args, **kwargs):
6925 """PreDirPickerCtrl() -> DirPickerCtrl"""
6926 val = _controls_.new_PreDirPickerCtrl(*args, **kwargs)
6927 return val
6928
6929wxEVT_COMMAND_FILEPICKER_CHANGED = _controls_.wxEVT_COMMAND_FILEPICKER_CHANGED
6930wxEVT_COMMAND_DIRPICKER_CHANGED = _controls_.wxEVT_COMMAND_DIRPICKER_CHANGED
6931EVT_FILEPICKER_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_FILEPICKER_CHANGED, 1 )
6932EVT_DIRPICKER_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_DIRPICKER_CHANGED, 1 )
6933
6934class FileDirPickerEvent(_core.CommandEvent):
6935 """Proxy of C++ FileDirPickerEvent class"""
6936 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6937 __repr__ = _swig_repr
6938 def __init__(self, *args, **kwargs):
6939 """__init__(self, EventType type, Object generator, int id, String path) -> FileDirPickerEvent"""
6940 _controls_.FileDirPickerEvent_swiginit(self,_controls_.new_FileDirPickerEvent(*args, **kwargs))
6941 def GetPath(*args, **kwargs):
6942 """GetPath(self) -> String"""
6943 return _controls_.FileDirPickerEvent_GetPath(*args, **kwargs)
6944
6945 def SetPath(*args, **kwargs):
6946 """SetPath(self, String p)"""
6947 return _controls_.FileDirPickerEvent_SetPath(*args, **kwargs)
6948
97ab0f6a 6949 Path = property(GetPath,SetPath,doc="See `GetPath` and `SetPath`")
b850e7f3
RD
6950_controls_.FileDirPickerEvent_swigregister(FileDirPickerEvent)
6951
6952#---------------------------------------------------------------------------
6953
6954FNTP_FONTDESC_AS_LABEL = _controls_.FNTP_FONTDESC_AS_LABEL
6955FNTP_USEFONT_FOR_LABEL = _controls_.FNTP_USEFONT_FOR_LABEL
6956FNTP_USE_TEXTCTRL = _controls_.FNTP_USE_TEXTCTRL
6957FNTP_DEFAULT_STYLE = _controls_.FNTP_DEFAULT_STYLE
6958class FontPickerCtrl(PickerBase):
6959 """Proxy of C++ FontPickerCtrl class"""
6960 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
6961 __repr__ = _swig_repr
6962 def __init__(self, *args, **kwargs):
6963 """
f89238b9 6964 __init__(self, Window parent, int id=-1, Font initial=wxNullFont,
b850e7f3
RD
6965 Point pos=DefaultPosition, Size size=DefaultSize,
6966 long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6967 String name=FontPickerCtrlNameStr) -> FontPickerCtrl
6968 """
6969 _controls_.FontPickerCtrl_swiginit(self,_controls_.new_FontPickerCtrl(*args, **kwargs))
6970 self._setOORInfo(self)
6971
6972 def Create(*args, **kwargs):
6973 """
f89238b9 6974 Create(self, Window parent, int id=-1, Font initial=wxNullFont,
b850e7f3
RD
6975 Point pos=DefaultPosition, Size size=DefaultSize,
6976 long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6977 String name=FontPickerCtrlNameStr) -> bool
6978 """
6979 return _controls_.FontPickerCtrl_Create(*args, **kwargs)
6980
6981 def GetSelectedFont(*args, **kwargs):
6982 """GetSelectedFont(self) -> Font"""
6983 return _controls_.FontPickerCtrl_GetSelectedFont(*args, **kwargs)
6984
6985 def SetSelectedFont(*args, **kwargs):
6986 """SetSelectedFont(self, Font f)"""
6987 return _controls_.FontPickerCtrl_SetSelectedFont(*args, **kwargs)
6988
6989 def SetMaxPointSize(*args, **kwargs):
6990 """SetMaxPointSize(self, unsigned int max)"""
6991 return _controls_.FontPickerCtrl_SetMaxPointSize(*args, **kwargs)
6992
6993 def GetMaxPointSize(*args, **kwargs):
6994 """GetMaxPointSize(self) -> unsigned int"""
6995 return _controls_.FontPickerCtrl_GetMaxPointSize(*args, **kwargs)
6996
97ab0f6a
RD
6997 MaxPointSize = property(GetMaxPointSize,SetMaxPointSize,doc="See `GetMaxPointSize` and `SetMaxPointSize`")
6998 SelectedFont = property(GetSelectedFont,SetSelectedFont,doc="See `GetSelectedFont` and `SetSelectedFont`")
b850e7f3
RD
6999_controls_.FontPickerCtrl_swigregister(FontPickerCtrl)
7000FontPickerCtrlNameStr = cvar.FontPickerCtrlNameStr
7001
7002def PreFontPickerCtrl(*args, **kwargs):
7003 """PreFontPickerCtrl() -> FontPickerCtrl"""
7004 val = _controls_.new_PreFontPickerCtrl(*args, **kwargs)
7005 return val
7006
7007wxEVT_COMMAND_FONTPICKER_CHANGED = _controls_.wxEVT_COMMAND_FONTPICKER_CHANGED
7008EVT_FONTPICKER_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_FONTPICKER_CHANGED, 1 )
7009
7010class FontPickerEvent(_core.CommandEvent):
7011 """Proxy of C++ FontPickerEvent class"""
7012 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
7013 __repr__ = _swig_repr
7014 def __init__(self, *args, **kwargs):
7015 """__init__(self, Object generator, int id, Font f) -> FontPickerEvent"""
7016 _controls_.FontPickerEvent_swiginit(self,_controls_.new_FontPickerEvent(*args, **kwargs))
7017 def GetFont(*args, **kwargs):
7018 """GetFont(self) -> Font"""
7019 return _controls_.FontPickerEvent_GetFont(*args, **kwargs)
7020
7021 def SetFont(*args, **kwargs):
7022 """SetFont(self, Font c)"""
7023 return _controls_.FontPickerEvent_SetFont(*args, **kwargs)
7024
97ab0f6a 7025 Font = property(GetFont,SetFont,doc="See `GetFont` and `SetFont`")
b850e7f3
RD
7026_controls_.FontPickerEvent_swigregister(FontPickerEvent)
7027
5172800e
RD
7028#---------------------------------------------------------------------------
7029
7030CP_DEFAULT_STYLE = _controls_.CP_DEFAULT_STYLE
7031CP_NO_TLW_RESIZE = _controls_.CP_NO_TLW_RESIZE
7032class CollapsiblePane(_core.Control):
7033 """
7034 A collapsable pane is a container with an embedded button-like
7035 control which can be used by the user to collapse or expand the pane's
7036 contents.
7037
7038 Once constructed you should use the `GetPane` function to access the
7039 pane and add your controls inside it (i.e. use the window returned
7040 from `GetPane` as the parent for the controls which must go in the
7041 pane, NOT the wx.CollapsiblePane itself!).
7042
7043 Note that because of its nature of control which can dynamically (and
7044 drastically) change its size at run-time under user-input, when
7045 putting a wx.CollapsiblePane inside a `wx.Sizer` you should be careful
7046 to add it with a proportion value of zero; this is because otherwise
7047 all other windows with non-zero proportion values would automatically
7048 get resized each time the user expands or collapses the pane window,
7049 usually resulting a weird, flickering effect.
7050 """
7051 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
7052 __repr__ = _swig_repr
7053 def __init__(self, *args, **kwargs):
7054 """
7055 __init__(self, Window parent, int winid=-1, String label=EmptyString,
7056 Point pos=DefaultPosition, Size size=DefaultSize,
7057 long style=CP_DEFAULT_STYLE, Validator val=DefaultValidator,
7058 String name=CollapsiblePaneNameStr) -> CollapsiblePane
7059
7060 Create and show a wx.CollapsiblePane
7061 """
7062 _controls_.CollapsiblePane_swiginit(self,_controls_.new_CollapsiblePane(*args, **kwargs))
7063 self._setOORInfo(self)
7064
7065 def Create(*args, **kwargs):
7066 """
7067 Create(self, Window parent, int winid=-1, String label=EmptyString,
7068 Point pos=DefaultPosition, Size size=DefaultSize,
7069 long style=CP_DEFAULT_STYLE, Validator val=DefaultValidator,
7070 String name=CollapsiblePaneNameStr) -> bool
7071 """
7072 return _controls_.CollapsiblePane_Create(*args, **kwargs)
7073
7074 def Collapse(*args, **kwargs):
7075 """
7076 Collapse(self, bool collapse=True)
7077
7078 Collapses or expands the pane window.
7079 """
7080 return _controls_.CollapsiblePane_Collapse(*args, **kwargs)
7081
7082 def Expand(*args, **kwargs):
7083 """
7084 Expand(self)
7085
7086 Same as Collapse(False).
7087 """
7088 return _controls_.CollapsiblePane_Expand(*args, **kwargs)
7089
7090 def IsCollapsed(*args, **kwargs):
7091 """
7092 IsCollapsed(self) -> bool
7093
7094 Returns ``True`` if the pane window is currently hidden.
7095 """
7096 return _controls_.CollapsiblePane_IsCollapsed(*args, **kwargs)
7097
7098 def IsExpanded(*args, **kwargs):
7099 """
7100 IsExpanded(self) -> bool
7101
7102 Returns ``True`` if the pane window is currently shown.
7103 """
7104 return _controls_.CollapsiblePane_IsExpanded(*args, **kwargs)
7105
7106 def GetPane(*args, **kwargs):
7107 """
7108 GetPane(self) -> Window
7109
7110 Returns a reference to the pane window. Use the returned `wx.Window`
7111 as the parent of widgets to make them part of the collapsible area.
7112 """
7113 return _controls_.CollapsiblePane_GetPane(*args, **kwargs)
7114
f9bf356b
RD
7115 Expanded = property(IsExpanded)
7116 Collapsed = property(IsCollapsed)
5172800e
RD
7117_controls_.CollapsiblePane_swigregister(CollapsiblePane)
7118CollapsiblePaneNameStr = cvar.CollapsiblePaneNameStr
7119
7120def PreCollapsiblePane(*args, **kwargs):
7121 """
7122 PreCollapsiblePane() -> CollapsiblePane
7123
7124 Precreate a wx.CollapsiblePane for 2-phase creation.
7125 """
7126 val = _controls_.new_PreCollapsiblePane(*args, **kwargs)
7127 return val
7128
7129wxEVT_COMMAND_COLLPANE_CHANGED = _controls_.wxEVT_COMMAND_COLLPANE_CHANGED
7130EVT_COLLAPSIBLEPANE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_COLLPANE_CHANGED, 1 )
7131
7132class CollapsiblePaneEvent(_core.CommandEvent):
7133 """Proxy of C++ CollapsiblePaneEvent class"""
7134 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
7135 __repr__ = _swig_repr
7136 def __init__(self, *args, **kwargs):
7137 """__init__(self, Object generator, int id, bool collapsed) -> CollapsiblePaneEvent"""
7138 _controls_.CollapsiblePaneEvent_swiginit(self,_controls_.new_CollapsiblePaneEvent(*args, **kwargs))
7139 def GetCollapsed(*args, **kwargs):
7140 """GetCollapsed(self) -> bool"""
7141 return _controls_.CollapsiblePaneEvent_GetCollapsed(*args, **kwargs)
7142
7143 def SetCollapsed(*args, **kwargs):
7144 """SetCollapsed(self, bool c)"""
7145 return _controls_.CollapsiblePaneEvent_SetCollapsed(*args, **kwargs)
7146
f9bf356b 7147 Collapsed = property(GetCollapsed,SetCollapsed)
5172800e
RD
7148_controls_.CollapsiblePaneEvent_swigregister(CollapsiblePaneEvent)
7149
d55e5bfc 7150
7449af73 7151