1 # This file was created automatically by SWIG 1.3.29.
2 # Don't modify this file, modify the SWIG interface instead.
6 new_instancemethod
= new
.instancemethod
7 def _swig_setattr_nondynamic(self
,class_type
,name
,value
,static
=1):
8 if (name
== "thisown"): return self
.this
.own(value
)
10 if type(value
).__name
__ == 'PySwigObject':
11 self
.__dict
__[name
] = value
13 method
= class_type
.__swig
_setmethods
__.get(name
,None)
14 if method
: return method(self
,value
)
15 if (not static
) or hasattr(self
,name
):
16 self
.__dict
__[name
] = value
18 raise AttributeError("You cannot add attributes to %s" % self
)
20 def _swig_setattr(self
,class_type
,name
,value
):
21 return _swig_setattr_nondynamic(self
,class_type
,name
,value
,0)
23 def _swig_getattr(self
,class_type
,name
):
24 if (name
== "thisown"): return self
.this
.own()
25 method
= class_type
.__swig
_getmethods
__.get(name
,None)
26 if method
: return method(self
)
27 raise AttributeError,name
30 try: strthis
= "proxy of " + self
.this
.__repr
__()
32 return "<%s.%s; %s >" % (self
.__class
__.__module
__, self
.__class
__.__name
__, strthis
,)
36 _object
= types
.ObjectType
38 except AttributeError:
44 def _swig_setattr_nondynamic_method(set):
45 def set_attr(self
,name
,value
):
46 if (name
== "thisown"): return self
.this
.own(value
)
47 if hasattr(self
,name
) or (name
== "this"):
50 raise AttributeError("You cannot add attributes to %s" % self
)
56 #---------------------------------------------------------------------------
58 BU_LEFT
= _controls_
.BU_LEFT
59 BU_TOP
= _controls_
.BU_TOP
60 BU_RIGHT
= _controls_
.BU_RIGHT
61 BU_BOTTOM
= _controls_
.BU_BOTTOM
62 BU_ALIGN_MASK
= _controls_
.BU_ALIGN_MASK
63 BU_EXACTFIT
= _controls_
.BU_EXACTFIT
64 BU_AUTODRAW
= _controls_
.BU_AUTODRAW
65 class Button(_core
.Control
):
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.
71 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
73 def __init__(self
, *args
, **kwargs
):
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
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
86 _controls_
.Button_swiginit(self
,_controls_
.new_Button(*args
, **kwargs
))
87 self
._setOORInfo
(self
)
89 def Create(*args
, **kwargs
):
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
96 Acutally create the GUI Button for 2-phase creation.
98 return _controls_
.Button_Create(*args
, **kwargs
)
100 def SetDefault(*args
, **kwargs
):
104 This sets the button to be the default item for the panel or dialog box.
106 return _controls_
.Button_SetDefault(*args
, **kwargs
)
108 def GetDefaultSize(*args
, **kwargs
):
110 GetDefaultSize() -> Size
112 Returns the default button size for this platform.
114 return _controls_
.Button_GetDefaultSize(*args
, **kwargs
)
116 GetDefaultSize
= staticmethod(GetDefaultSize
)
117 def GetClassDefaultAttributes(*args
, **kwargs
):
119 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
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.
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
132 return _controls_
.Button_GetClassDefaultAttributes(*args
, **kwargs
)
134 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
135 _controls_
.Button_swigregister(Button
)
136 cvar
= _controls_
.cvar
137 ButtonNameStr
= cvar
.ButtonNameStr
139 def PreButton(*args
, **kwargs
):
141 PreButton() -> Button
143 Precreate a Button for 2-phase creation.
145 val
= _controls_
.new_PreButton(*args
, **kwargs
)
148 def Button_GetDefaultSize(*args
):
150 Button_GetDefaultSize() -> Size
152 Returns the default button size for this platform.
154 return _controls_
.Button_GetDefaultSize(*args
)
156 def Button_GetClassDefaultAttributes(*args
, **kwargs
):
158 Button_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
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.
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
171 return _controls_
.Button_GetClassDefaultAttributes(*args
, **kwargs
)
173 class BitmapButton(Button
):
175 A Button that contains a bitmap. A bitmap button can be supplied with a
176 single bitmap, and wxWidgets will draw all button states using this bitmap. If
177 the application needs more control, additional bitmaps for the selected state,
178 unpressed focused state, and greyed-out state may be supplied.
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
):
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,
187 String name=ButtonNameStr) -> BitmapButton
189 Create and show a button with a bitmap for the label.
191 _controls_
.BitmapButton_swiginit(self
,_controls_
.new_BitmapButton(*args
, **kwargs
))
192 self
._setOORInfo
(self
)
194 def Create(*args
, **kwargs
):
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,
199 String name=ButtonNameStr) -> bool
201 Acutally create the GUI BitmapButton for 2-phase creation.
203 return _controls_
.BitmapButton_Create(*args
, **kwargs
)
205 def GetBitmapLabel(*args
, **kwargs
):
207 GetBitmapLabel(self) -> Bitmap
209 Returns the label bitmap (the one passed to the constructor).
211 return _controls_
.BitmapButton_GetBitmapLabel(*args
, **kwargs
)
213 def GetBitmapDisabled(*args
, **kwargs
):
215 GetBitmapDisabled(self) -> Bitmap
217 Returns the bitmap for the disabled state.
219 return _controls_
.BitmapButton_GetBitmapDisabled(*args
, **kwargs
)
221 def GetBitmapFocus(*args
, **kwargs
):
223 GetBitmapFocus(self) -> Bitmap
225 Returns the bitmap for the focused state.
227 return _controls_
.BitmapButton_GetBitmapFocus(*args
, **kwargs
)
229 def GetBitmapSelected(*args
, **kwargs
):
231 GetBitmapSelected(self) -> Bitmap
233 Returns the bitmap for the selected state.
235 return _controls_
.BitmapButton_GetBitmapSelected(*args
, **kwargs
)
237 def GetBitmapHover(*args
, **kwargs
):
239 GetBitmapHover(self) -> Bitmap
241 Returns the bitmap used when the mouse is over the button, may be invalid.
243 return _controls_
.BitmapButton_GetBitmapHover(*args
, **kwargs
)
245 def SetBitmapDisabled(*args
, **kwargs
):
247 SetBitmapDisabled(self, Bitmap bitmap)
249 Sets the bitmap for the disabled button appearance.
251 return _controls_
.BitmapButton_SetBitmapDisabled(*args
, **kwargs
)
253 def SetBitmapFocus(*args
, **kwargs
):
255 SetBitmapFocus(self, Bitmap bitmap)
257 Sets the bitmap for the button appearance when it has the keyboard focus.
259 return _controls_
.BitmapButton_SetBitmapFocus(*args
, **kwargs
)
261 def SetBitmapSelected(*args
, **kwargs
):
263 SetBitmapSelected(self, Bitmap bitmap)
265 Sets the bitmap for the selected (depressed) button appearance.
267 return _controls_
.BitmapButton_SetBitmapSelected(*args
, **kwargs
)
269 def SetBitmapLabel(*args
, **kwargs
):
271 SetBitmapLabel(self, Bitmap bitmap)
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.
276 return _controls_
.BitmapButton_SetBitmapLabel(*args
, **kwargs
)
278 def SetBitmapHover(*args
, **kwargs
):
280 SetBitmapHover(self, Bitmap hover)
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
286 return _controls_
.BitmapButton_SetBitmapHover(*args
, **kwargs
)
288 def SetMargins(*args
, **kwargs
):
289 """SetMargins(self, int x, int y)"""
290 return _controls_
.BitmapButton_SetMargins(*args
, **kwargs
)
292 def GetMarginX(*args
, **kwargs
):
293 """GetMarginX(self) -> int"""
294 return _controls_
.BitmapButton_GetMarginX(*args
, **kwargs
)
296 def GetMarginY(*args
, **kwargs
):
297 """GetMarginY(self) -> int"""
298 return _controls_
.BitmapButton_GetMarginY(*args
, **kwargs
)
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`")
307 _controls_
.BitmapButton_swigregister(BitmapButton
)
309 def PreBitmapButton(*args
, **kwargs
):
311 PreBitmapButton() -> BitmapButton
313 Precreate a BitmapButton for 2-phase creation.
315 val
= _controls_
.new_PreBitmapButton(*args
, **kwargs
)
318 #---------------------------------------------------------------------------
320 CHK_2STATE
= _controls_
.CHK_2STATE
321 CHK_3STATE
= _controls_
.CHK_3STATE
322 CHK_ALLOW_3RD_STATE_FOR_USER
= _controls_
.CHK_ALLOW_3RD_STATE_FOR_USER
323 CHK_UNCHECKED
= _controls_
.CHK_UNCHECKED
324 CHK_CHECKED
= _controls_
.CHK_CHECKED
325 CHK_UNDETERMINED
= _controls_
.CHK_UNDETERMINED
326 class CheckBox(_core
.Control
):
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
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
):
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
343 Creates and shows a CheckBox control
345 _controls_
.CheckBox_swiginit(self
,_controls_
.new_CheckBox(*args
, **kwargs
))
346 self
._setOORInfo
(self
)
348 def Create(*args
, **kwargs
):
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
355 Actually create the GUI CheckBox for 2-phase creation.
357 return _controls_
.CheckBox_Create(*args
, **kwargs
)
359 def GetValue(*args
, **kwargs
):
361 GetValue(self) -> bool
363 Gets the state of a 2-state CheckBox. Returns True if it is checked,
366 return _controls_
.CheckBox_GetValue(*args
, **kwargs
)
368 def IsChecked(*args
, **kwargs
):
370 IsChecked(self) -> bool
372 Similar to GetValue, but raises an exception if it is not a 2-state
375 return _controls_
.CheckBox_IsChecked(*args
, **kwargs
)
377 def SetValue(*args
, **kwargs
):
379 SetValue(self, bool state)
381 Set the state of a 2-state CheckBox. Pass True for checked, False for
384 return _controls_
.CheckBox_SetValue(*args
, **kwargs
)
386 def Get3StateValue(*args
, **kwargs
):
388 Get3StateValue(self) -> int
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.
395 return _controls_
.CheckBox_Get3StateValue(*args
, **kwargs
)
397 def Set3StateValue(*args
, **kwargs
):
399 Set3StateValue(self, int state)
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.
407 return _controls_
.CheckBox_Set3StateValue(*args
, **kwargs
)
409 def Is3State(*args
, **kwargs
):
411 Is3State(self) -> bool
413 Returns whether or not the CheckBox is a 3-state CheckBox.
415 return _controls_
.CheckBox_Is3State(*args
, **kwargs
)
417 def Is3rdStateAllowedForUser(*args
, **kwargs
):
419 Is3rdStateAllowedForUser(self) -> bool
421 Returns whether or not the user can set the CheckBox to the third
424 return _controls_
.CheckBox_Is3rdStateAllowedForUser(*args
, **kwargs
)
426 def GetClassDefaultAttributes(*args
, **kwargs
):
428 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
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.
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
441 return _controls_
.CheckBox_GetClassDefaultAttributes(*args
, **kwargs
)
443 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
444 ThreeStateValue
= property(Get3StateValue
,Set3StateValue
,doc
="See `Get3StateValue` and `Set3StateValue`")
445 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
446 _controls_
.CheckBox_swigregister(CheckBox
)
447 CheckBoxNameStr
= cvar
.CheckBoxNameStr
449 def PreCheckBox(*args
, **kwargs
):
451 PreCheckBox() -> CheckBox
453 Precreate a CheckBox for 2-phase creation.
455 val
= _controls_
.new_PreCheckBox(*args
, **kwargs
)
458 def CheckBox_GetClassDefaultAttributes(*args
, **kwargs
):
460 CheckBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
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.
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
473 return _controls_
.CheckBox_GetClassDefaultAttributes(*args
, **kwargs
)
475 #---------------------------------------------------------------------------
477 class Choice(_core
.ControlWithItems
):
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.
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
):
487 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
488 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
489 String name=ChoiceNameStr) -> Choice
491 Create and show a Choice control
493 _controls_
.Choice_swiginit(self
,_controls_
.new_Choice(*args
, **kwargs
))
494 self
._setOORInfo
(self
)
496 def Create(*args
, **kwargs
):
498 Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
499 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
500 String name=ChoiceNameStr) -> bool
502 Actually create the GUI Choice control for 2-phase creation
504 return _controls_
.Choice_Create(*args
, **kwargs
)
506 def GetCurrentSelection(*args
, **kwargs
):
508 GetCurrentSelection(self) -> int
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
517 return _controls_
.Choice_GetCurrentSelection(*args
, **kwargs
)
519 def GetClassDefaultAttributes(*args
, **kwargs
):
521 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
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.
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
534 return _controls_
.Choice_GetClassDefaultAttributes(*args
, **kwargs
)
536 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
537 CurrentSelection
= property(GetCurrentSelection
,doc
="See `GetCurrentSelection`")
538 _controls_
.Choice_swigregister(Choice
)
539 ChoiceNameStr
= cvar
.ChoiceNameStr
541 def PreChoice(*args
, **kwargs
):
543 PreChoice() -> Choice
545 Precreate a Choice control for 2-phase creation.
547 val
= _controls_
.new_PreChoice(*args
, **kwargs
)
550 def Choice_GetClassDefaultAttributes(*args
, **kwargs
):
552 Choice_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
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.
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
565 return _controls_
.Choice_GetClassDefaultAttributes(*args
, **kwargs
)
567 #---------------------------------------------------------------------------
569 class ComboBox(_core
.Control
,_core
.ItemContainer
):
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.
575 A combobox permits a single selection only. Combobox items are
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
):
582 __init__(Window parent, int id, String value=EmptyString,
583 Point pos=DefaultPosition, Size size=DefaultSize,
584 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
585 String name=ComboBoxNameStr) -> ComboBox
587 Constructor, creates and shows a ComboBox control.
589 _controls_
.ComboBox_swiginit(self
,_controls_
.new_ComboBox(*args
, **kwargs
))
590 self
._setOORInfo
(self
)
592 def Create(*args
, **kwargs
):
594 Create(Window parent, int id, String value=EmptyString,
595 Point pos=DefaultPosition, Size size=DefaultSize,
596 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
597 String name=ChoiceNameStr) -> bool
599 Actually create the GUI wxComboBox control for 2-phase creation
601 return _controls_
.ComboBox_Create(*args
, **kwargs
)
603 def GetValue(*args
, **kwargs
):
605 GetValue(self) -> String
607 Returns the current value in the combobox text field.
609 return _controls_
.ComboBox_GetValue(*args
, **kwargs
)
611 def SetValue(*args
, **kwargs
):
612 """SetValue(self, String value)"""
613 return _controls_
.ComboBox_SetValue(*args
, **kwargs
)
615 def Copy(*args
, **kwargs
):
619 Copies the selected text to the clipboard.
621 return _controls_
.ComboBox_Copy(*args
, **kwargs
)
623 def Cut(*args
, **kwargs
):
627 Copies the selected text to the clipboard and removes the selection.
629 return _controls_
.ComboBox_Cut(*args
, **kwargs
)
631 def Paste(*args
, **kwargs
):
635 Pastes text from the clipboard to the text field.
637 return _controls_
.ComboBox_Paste(*args
, **kwargs
)
639 def SetInsertionPoint(*args
, **kwargs
):
641 SetInsertionPoint(self, long pos)
643 Sets the insertion point in the combobox text field.
645 return _controls_
.ComboBox_SetInsertionPoint(*args
, **kwargs
)
647 def GetInsertionPoint(*args
, **kwargs
):
649 GetInsertionPoint(self) -> long
651 Returns the insertion point for the combobox's text field.
653 return _controls_
.ComboBox_GetInsertionPoint(*args
, **kwargs
)
655 def GetLastPosition(*args
, **kwargs
):
657 GetLastPosition(self) -> long
659 Returns the last position in the combobox text field.
661 return _controls_
.ComboBox_GetLastPosition(*args
, **kwargs
)
663 def Replace(*args
, **kwargs
):
665 Replace(self, long from, long to, String value)
667 Replaces the text between two positions with the given text, in the
670 return _controls_
.ComboBox_Replace(*args
, **kwargs
)
672 def SetMark(*args
, **kwargs
):
674 SetMark(self, long from, long to)
676 Selects the text between the two positions in the combobox text field.
678 return _controls_
.ComboBox_SetMark(*args
, **kwargs
)
681 raise NotImplementedError
683 def GetCurrentSelection(*args
, **kwargs
):
685 GetCurrentSelection(self) -> int
687 Unlike `GetSelection` which only returns the accepted selection value,
688 i.e. the selection in the control once the user closes the dropdown
689 list, this function returns the current selection. That is, while the
690 dropdown list is shown, it returns the currently selected item in
691 it. When it is not shown, its result is the same as for the other
694 return _controls_
.ComboBox_GetCurrentSelection(*args
, **kwargs
)
696 def SetStringSelection(*args
, **kwargs
):
698 SetStringSelection(self, String string) -> bool
700 Select the item with the specifed string
702 return _controls_
.ComboBox_SetStringSelection(*args
, **kwargs
)
704 def SetString(*args
, **kwargs
):
706 SetString(self, int n, String string)
708 Set the label for the n'th item (zero based) in the list.
710 return _controls_
.ComboBox_SetString(*args
, **kwargs
)
712 def SetEditable(*args
, **kwargs
):
713 """SetEditable(self, bool editable)"""
714 return _controls_
.ComboBox_SetEditable(*args
, **kwargs
)
716 def SetInsertionPointEnd(*args
, **kwargs
):
718 SetInsertionPointEnd(self)
720 Sets the insertion point at the end of the combobox text field.
722 return _controls_
.ComboBox_SetInsertionPointEnd(*args
, **kwargs
)
724 def Remove(*args
, **kwargs
):
726 Remove(self, long from, long to)
728 Removes the text between the two positions in the combobox text field.
730 return _controls_
.ComboBox_Remove(*args
, **kwargs
)
732 def IsEditable(*args
, **kwargs
):
734 IsEditable(self) -> bool
736 Returns True if the combo is ediatable (not read-only.)
738 return _controls_
.ComboBox_IsEditable(*args
, **kwargs
)
740 def Undo(*args
, **kwargs
):
744 Redoes the last undo in the text field. Windows only.
746 return _controls_
.ComboBox_Undo(*args
, **kwargs
)
748 def Redo(*args
, **kwargs
):
752 Undoes the last edit in the text field. Windows only.
754 return _controls_
.ComboBox_Redo(*args
, **kwargs
)
756 def SelectAll(*args
, **kwargs
):
760 Select all the text in the combo's text field.
762 return _controls_
.ComboBox_SelectAll(*args
, **kwargs
)
764 def CanCopy(*args
, **kwargs
):
766 CanCopy(self) -> bool
768 Returns True if the combobox is editable and there is a text selection
769 to copy to the clipboard. Only available on Windows.
771 return _controls_
.ComboBox_CanCopy(*args
, **kwargs
)
773 def CanCut(*args
, **kwargs
):
777 Returns True if the combobox is editable and there is a text selection
778 to copy to the clipboard. Only available on Windows.
780 return _controls_
.ComboBox_CanCut(*args
, **kwargs
)
782 def CanPaste(*args
, **kwargs
):
784 CanPaste(self) -> bool
786 Returns True if the combobox is editable and there is text on the
787 clipboard that can be pasted into the text field. Only available on
790 return _controls_
.ComboBox_CanPaste(*args
, **kwargs
)
792 def CanUndo(*args
, **kwargs
):
794 CanUndo(self) -> bool
796 Returns True if the combobox is editable and the last edit can be
797 undone. Only available on Windows.
799 return _controls_
.ComboBox_CanUndo(*args
, **kwargs
)
801 def CanRedo(*args
, **kwargs
):
803 CanRedo(self) -> bool
805 Returns True if the combobox is editable and the last undo can be
806 redone. Only available on Windows.
808 return _controls_
.ComboBox_CanRedo(*args
, **kwargs
)
810 def GetClassDefaultAttributes(*args
, **kwargs
):
812 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
814 Get the default attributes for this class. This is useful if you want
815 to use the same font or colour in your own control as in a standard
816 control -- which is a much better idea than hard coding specific
817 colours or fonts which might look completely out of place on the
818 user's system, especially if it uses themes.
820 The variant parameter is only relevant under Mac currently and is
821 ignore under other platforms. Under Mac, it will change the size of
822 the returned font. See `wx.Window.SetWindowVariant` for more about
825 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
827 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
828 CurrentSelection
= property(GetCurrentSelection
,doc
="See `GetCurrentSelection`")
829 InsertionPoint
= property(GetInsertionPoint
,SetInsertionPoint
,doc
="See `GetInsertionPoint` and `SetInsertionPoint`")
830 LastPosition
= property(GetLastPosition
,doc
="See `GetLastPosition`")
831 Mark
= property(GetMark
,SetMark
,doc
="See `GetMark` and `SetMark`")
832 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
833 _controls_
.ComboBox_swigregister(ComboBox
)
834 ComboBoxNameStr
= cvar
.ComboBoxNameStr
836 def PreComboBox(*args
, **kwargs
):
838 PreComboBox() -> ComboBox
840 Precreate a ComboBox control for 2-phase creation.
842 val
= _controls_
.new_PreComboBox(*args
, **kwargs
)
845 def ComboBox_GetClassDefaultAttributes(*args
, **kwargs
):
847 ComboBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
849 Get the default attributes for this class. This is useful if you want
850 to use the same font or colour in your own control as in a standard
851 control -- which is a much better idea than hard coding specific
852 colours or fonts which might look completely out of place on the
853 user's system, especially if it uses themes.
855 The variant parameter is only relevant under Mac currently and is
856 ignore under other platforms. Under Mac, it will change the size of
857 the returned font. See `wx.Window.SetWindowVariant` for more about
860 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
862 #---------------------------------------------------------------------------
864 GA_HORIZONTAL
= _controls_
.GA_HORIZONTAL
865 GA_VERTICAL
= _controls_
.GA_VERTICAL
866 GA_SMOOTH
= _controls_
.GA_SMOOTH
867 GA_PROGRESSBAR
= 0 # obsolete
868 class Gauge(_core
.Control
):
869 """Proxy of C++ Gauge class"""
870 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
871 __repr__
= _swig_repr
872 def __init__(self
, *args
, **kwargs
):
874 __init__(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
875 Size size=DefaultSize, long style=GA_HORIZONTAL,
876 Validator validator=DefaultValidator,
877 String name=GaugeNameStr) -> Gauge
879 _controls_
.Gauge_swiginit(self
,_controls_
.new_Gauge(*args
, **kwargs
))
880 self
._setOORInfo
(self
)
882 def Create(*args
, **kwargs
):
884 Create(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
885 Size size=DefaultSize, long style=GA_HORIZONTAL,
886 Validator validator=DefaultValidator,
887 String name=GaugeNameStr) -> bool
889 return _controls_
.Gauge_Create(*args
, **kwargs
)
891 def SetRange(*args
, **kwargs
):
892 """SetRange(self, int range)"""
893 return _controls_
.Gauge_SetRange(*args
, **kwargs
)
895 def GetRange(*args
, **kwargs
):
896 """GetRange(self) -> int"""
897 return _controls_
.Gauge_GetRange(*args
, **kwargs
)
899 def SetValue(*args
, **kwargs
):
900 """SetValue(self, int pos)"""
901 return _controls_
.Gauge_SetValue(*args
, **kwargs
)
903 def GetValue(*args
, **kwargs
):
904 """GetValue(self) -> int"""
905 return _controls_
.Gauge_GetValue(*args
, **kwargs
)
907 def IsVertical(*args
, **kwargs
):
908 """IsVertical(self) -> bool"""
909 return _controls_
.Gauge_IsVertical(*args
, **kwargs
)
911 def SetShadowWidth(*args
, **kwargs
):
912 """SetShadowWidth(self, int w)"""
913 return _controls_
.Gauge_SetShadowWidth(*args
, **kwargs
)
915 def GetShadowWidth(*args
, **kwargs
):
916 """GetShadowWidth(self) -> int"""
917 return _controls_
.Gauge_GetShadowWidth(*args
, **kwargs
)
919 def SetBezelFace(*args
, **kwargs
):
920 """SetBezelFace(self, int w)"""
921 return _controls_
.Gauge_SetBezelFace(*args
, **kwargs
)
923 def GetBezelFace(*args
, **kwargs
):
924 """GetBezelFace(self) -> int"""
925 return _controls_
.Gauge_GetBezelFace(*args
, **kwargs
)
927 def GetClassDefaultAttributes(*args
, **kwargs
):
929 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
931 Get the default attributes for this class. This is useful if you want
932 to use the same font or colour in your own control as in a standard
933 control -- which is a much better idea than hard coding specific
934 colours or fonts which might look completely out of place on the
935 user's system, especially if it uses themes.
937 The variant parameter is only relevant under Mac currently and is
938 ignore under other platforms. Under Mac, it will change the size of
939 the returned font. See `wx.Window.SetWindowVariant` for more about
942 return _controls_
.Gauge_GetClassDefaultAttributes(*args
, **kwargs
)
944 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
945 _controls_
.Gauge_swigregister(Gauge
)
946 GaugeNameStr
= cvar
.GaugeNameStr
948 def PreGauge(*args
, **kwargs
):
949 """PreGauge() -> Gauge"""
950 val
= _controls_
.new_PreGauge(*args
, **kwargs
)
953 def Gauge_GetClassDefaultAttributes(*args
, **kwargs
):
955 Gauge_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
957 Get the default attributes for this class. This is useful if you want
958 to use the same font or colour in your own control as in a standard
959 control -- which is a much better idea than hard coding specific
960 colours or fonts which might look completely out of place on the
961 user's system, especially if it uses themes.
963 The variant parameter is only relevant under Mac currently and is
964 ignore under other platforms. Under Mac, it will change the size of
965 the returned font. See `wx.Window.SetWindowVariant` for more about
968 return _controls_
.Gauge_GetClassDefaultAttributes(*args
, **kwargs
)
970 #---------------------------------------------------------------------------
972 class StaticBox(_core
.Control
):
973 """Proxy of C++ StaticBox class"""
974 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
975 __repr__
= _swig_repr
976 def __init__(self
, *args
, **kwargs
):
978 __init__(self, Window parent, int id=-1, String label=EmptyString,
979 Point pos=DefaultPosition, Size size=DefaultSize,
980 long style=0, String name=StaticBoxNameStr) -> StaticBox
982 _controls_
.StaticBox_swiginit(self
,_controls_
.new_StaticBox(*args
, **kwargs
))
983 self
._setOORInfo
(self
)
985 def Create(*args
, **kwargs
):
987 Create(self, Window parent, int id=-1, String label=EmptyString,
988 Point pos=DefaultPosition, Size size=DefaultSize,
989 long style=0, String name=StaticBoxNameStr) -> bool
991 return _controls_
.StaticBox_Create(*args
, **kwargs
)
993 def GetClassDefaultAttributes(*args
, **kwargs
):
995 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
997 Get the default attributes for this class. This is useful if you want
998 to use the same font or colour in your own control as in a standard
999 control -- which is a much better idea than hard coding specific
1000 colours or fonts which might look completely out of place on the
1001 user's system, especially if it uses themes.
1003 The variant parameter is only relevant under Mac currently and is
1004 ignore under other platforms. Under Mac, it will change the size of
1005 the returned font. See `wx.Window.SetWindowVariant` for more about
1008 return _controls_
.StaticBox_GetClassDefaultAttributes(*args
, **kwargs
)
1010 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1011 _controls_
.StaticBox_swigregister(StaticBox
)
1012 StaticBitmapNameStr
= cvar
.StaticBitmapNameStr
1013 StaticBoxNameStr
= cvar
.StaticBoxNameStr
1014 StaticTextNameStr
= cvar
.StaticTextNameStr
1016 def PreStaticBox(*args
, **kwargs
):
1017 """PreStaticBox() -> StaticBox"""
1018 val
= _controls_
.new_PreStaticBox(*args
, **kwargs
)
1021 def StaticBox_GetClassDefaultAttributes(*args
, **kwargs
):
1023 StaticBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1025 Get the default attributes for this class. This is useful if you want
1026 to use the same font or colour in your own control as in a standard
1027 control -- which is a much better idea than hard coding specific
1028 colours or fonts which might look completely out of place on the
1029 user's system, especially if it uses themes.
1031 The variant parameter is only relevant under Mac currently and is
1032 ignore under other platforms. Under Mac, it will change the size of
1033 the returned font. See `wx.Window.SetWindowVariant` for more about
1036 return _controls_
.StaticBox_GetClassDefaultAttributes(*args
, **kwargs
)
1038 #---------------------------------------------------------------------------
1040 class StaticLine(_core
.Control
):
1041 """Proxy of C++ StaticLine class"""
1042 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1043 __repr__
= _swig_repr
1044 def __init__(self
, *args
, **kwargs
):
1046 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1047 Size size=DefaultSize, long style=LI_HORIZONTAL,
1048 String name=StaticTextNameStr) -> StaticLine
1050 _controls_
.StaticLine_swiginit(self
,_controls_
.new_StaticLine(*args
, **kwargs
))
1051 self
._setOORInfo
(self
)
1053 def Create(*args
, **kwargs
):
1055 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1056 Size size=DefaultSize, long style=LI_HORIZONTAL,
1057 String name=StaticTextNameStr) -> bool
1059 return _controls_
.StaticLine_Create(*args
, **kwargs
)
1061 def IsVertical(*args
, **kwargs
):
1062 """IsVertical(self) -> bool"""
1063 return _controls_
.StaticLine_IsVertical(*args
, **kwargs
)
1065 def GetDefaultSize(*args
, **kwargs
):
1066 """GetDefaultSize() -> int"""
1067 return _controls_
.StaticLine_GetDefaultSize(*args
, **kwargs
)
1069 GetDefaultSize
= staticmethod(GetDefaultSize
)
1070 def GetClassDefaultAttributes(*args
, **kwargs
):
1072 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1074 Get the default attributes for this class. This is useful if you want
1075 to use the same font or colour in your own control as in a standard
1076 control -- which is a much better idea than hard coding specific
1077 colours or fonts which might look completely out of place on the
1078 user's system, especially if it uses themes.
1080 The variant parameter is only relevant under Mac currently and is
1081 ignore under other platforms. Under Mac, it will change the size of
1082 the returned font. See `wx.Window.SetWindowVariant` for more about
1085 return _controls_
.StaticLine_GetClassDefaultAttributes(*args
, **kwargs
)
1087 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1088 _controls_
.StaticLine_swigregister(StaticLine
)
1090 def PreStaticLine(*args
, **kwargs
):
1091 """PreStaticLine() -> StaticLine"""
1092 val
= _controls_
.new_PreStaticLine(*args
, **kwargs
)
1095 def StaticLine_GetDefaultSize(*args
):
1096 """StaticLine_GetDefaultSize() -> int"""
1097 return _controls_
.StaticLine_GetDefaultSize(*args
)
1099 def StaticLine_GetClassDefaultAttributes(*args
, **kwargs
):
1101 StaticLine_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1103 Get the default attributes for this class. This is useful if you want
1104 to use the same font or colour in your own control as in a standard
1105 control -- which is a much better idea than hard coding specific
1106 colours or fonts which might look completely out of place on the
1107 user's system, especially if it uses themes.
1109 The variant parameter is only relevant under Mac currently and is
1110 ignore under other platforms. Under Mac, it will change the size of
1111 the returned font. See `wx.Window.SetWindowVariant` for more about
1114 return _controls_
.StaticLine_GetClassDefaultAttributes(*args
, **kwargs
)
1116 #---------------------------------------------------------------------------
1118 class StaticText(_core
.Control
):
1119 """Proxy of C++ StaticText class"""
1120 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1121 __repr__
= _swig_repr
1122 def __init__(self
, *args
, **kwargs
):
1124 __init__(self, Window parent, int id=-1, String label=EmptyString,
1125 Point pos=DefaultPosition, Size size=DefaultSize,
1126 long style=0, String name=StaticTextNameStr) -> StaticText
1128 _controls_
.StaticText_swiginit(self
,_controls_
.new_StaticText(*args
, **kwargs
))
1129 self
._setOORInfo
(self
)
1131 def Create(*args
, **kwargs
):
1133 Create(self, Window parent, int id=-1, String label=EmptyString,
1134 Point pos=DefaultPosition, Size size=DefaultSize,
1135 long style=0, String name=StaticTextNameStr) -> bool
1137 return _controls_
.StaticText_Create(*args
, **kwargs
)
1139 def Wrap(*args
, **kwargs
):
1141 Wrap(self, int width)
1143 This functions wraps the control's label so that each of its lines
1144 becomes at most ``width`` pixels wide if possible (the lines are
1145 broken at words boundaries so it might not be the case if words are
1146 too long). If ``width`` is negative, no wrapping is done.
1148 return _controls_
.StaticText_Wrap(*args
, **kwargs
)
1150 def GetClassDefaultAttributes(*args
, **kwargs
):
1152 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1154 Get the default attributes for this class. This is useful if you want
1155 to use the same font or colour in your own control as in a standard
1156 control -- which is a much better idea than hard coding specific
1157 colours or fonts which might look completely out of place on the
1158 user's system, especially if it uses themes.
1160 The variant parameter is only relevant under Mac currently and is
1161 ignore under other platforms. Under Mac, it will change the size of
1162 the returned font. See `wx.Window.SetWindowVariant` for more about
1165 return _controls_
.StaticText_GetClassDefaultAttributes(*args
, **kwargs
)
1167 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1168 _controls_
.StaticText_swigregister(StaticText
)
1170 def PreStaticText(*args
, **kwargs
):
1171 """PreStaticText() -> StaticText"""
1172 val
= _controls_
.new_PreStaticText(*args
, **kwargs
)
1175 def StaticText_GetClassDefaultAttributes(*args
, **kwargs
):
1177 StaticText_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1179 Get the default attributes for this class. This is useful if you want
1180 to use the same font or colour in your own control as in a standard
1181 control -- which is a much better idea than hard coding specific
1182 colours or fonts which might look completely out of place on the
1183 user's system, especially if it uses themes.
1185 The variant parameter is only relevant under Mac currently and is
1186 ignore under other platforms. Under Mac, it will change the size of
1187 the returned font. See `wx.Window.SetWindowVariant` for more about
1190 return _controls_
.StaticText_GetClassDefaultAttributes(*args
, **kwargs
)
1192 #---------------------------------------------------------------------------
1194 class StaticBitmap(_core
.Control
):
1195 """Proxy of C++ StaticBitmap class"""
1196 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1197 __repr__
= _swig_repr
1198 def __init__(self
, *args
, **kwargs
):
1200 __init__(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
1201 Point pos=DefaultPosition, Size size=DefaultSize,
1202 long style=0, String name=StaticBitmapNameStr) -> StaticBitmap
1204 _controls_
.StaticBitmap_swiginit(self
,_controls_
.new_StaticBitmap(*args
, **kwargs
))
1205 self
._setOORInfo
(self
)
1207 def Create(*args
, **kwargs
):
1209 Create(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
1210 Point pos=DefaultPosition, Size size=DefaultSize,
1211 long style=0, String name=StaticBitmapNameStr) -> bool
1213 return _controls_
.StaticBitmap_Create(*args
, **kwargs
)
1215 def GetBitmap(*args
, **kwargs
):
1216 """GetBitmap(self) -> Bitmap"""
1217 return _controls_
.StaticBitmap_GetBitmap(*args
, **kwargs
)
1219 def SetBitmap(*args
, **kwargs
):
1220 """SetBitmap(self, Bitmap bitmap)"""
1221 return _controls_
.StaticBitmap_SetBitmap(*args
, **kwargs
)
1223 def SetIcon(*args
, **kwargs
):
1224 """SetIcon(self, Icon icon)"""
1225 return _controls_
.StaticBitmap_SetIcon(*args
, **kwargs
)
1227 def GetClassDefaultAttributes(*args
, **kwargs
):
1229 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1231 Get the default attributes for this class. This is useful if you want
1232 to use the same font or colour in your own control as in a standard
1233 control -- which is a much better idea than hard coding specific
1234 colours or fonts which might look completely out of place on the
1235 user's system, especially if it uses themes.
1237 The variant parameter is only relevant under Mac currently and is
1238 ignore under other platforms. Under Mac, it will change the size of
1239 the returned font. See `wx.Window.SetWindowVariant` for more about
1242 return _controls_
.StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
)
1244 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1245 _controls_
.StaticBitmap_swigregister(StaticBitmap
)
1247 def PreStaticBitmap(*args
, **kwargs
):
1248 """PreStaticBitmap() -> StaticBitmap"""
1249 val
= _controls_
.new_PreStaticBitmap(*args
, **kwargs
)
1252 def StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
):
1254 StaticBitmap_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1256 Get the default attributes for this class. This is useful if you want
1257 to use the same font or colour in your own control as in a standard
1258 control -- which is a much better idea than hard coding specific
1259 colours or fonts which might look completely out of place on the
1260 user's system, especially if it uses themes.
1262 The variant parameter is only relevant under Mac currently and is
1263 ignore under other platforms. Under Mac, it will change the size of
1264 the returned font. See `wx.Window.SetWindowVariant` for more about
1267 return _controls_
.StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
)
1269 #---------------------------------------------------------------------------
1271 class ListBox(_core
.ControlWithItems
):
1272 """Proxy of C++ ListBox class"""
1273 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1274 __repr__
= _swig_repr
1275 def __init__(self
, *args
, **kwargs
):
1277 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1278 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1279 long style=0, Validator validator=DefaultValidator,
1280 String name=ListBoxNameStr) -> ListBox
1282 _controls_
.ListBox_swiginit(self
,_controls_
.new_ListBox(*args
, **kwargs
))
1283 self
._setOORInfo
(self
)
1285 def Create(*args
, **kwargs
):
1287 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1288 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1289 long style=0, Validator validator=DefaultValidator,
1290 String name=ListBoxNameStr) -> bool
1292 return _controls_
.ListBox_Create(*args
, **kwargs
)
1294 def Insert(*args
, **kwargs
):
1296 Insert(self, String item, int pos, PyObject clientData=None)
1298 Insert an item into the control before the item at the ``pos`` index,
1299 optionally associating some data object with the item.
1301 return _controls_
.ListBox_Insert(*args
, **kwargs
)
1303 def InsertItems(*args
, **kwargs
):
1304 """InsertItems(self, wxArrayString items, unsigned int pos)"""
1305 return _controls_
.ListBox_InsertItems(*args
, **kwargs
)
1307 def Set(*args
, **kwargs
):
1308 """Set(self, wxArrayString items)"""
1309 return _controls_
.ListBox_Set(*args
, **kwargs
)
1311 def IsSelected(*args
, **kwargs
):
1312 """IsSelected(self, int n) -> bool"""
1313 return _controls_
.ListBox_IsSelected(*args
, **kwargs
)
1315 def SetSelection(*args
, **kwargs
):
1316 """SetSelection(self, int n, bool select=True)"""
1317 return _controls_
.ListBox_SetSelection(*args
, **kwargs
)
1319 def Select(*args
, **kwargs
):
1323 This is the same as `SetSelection` and exists only because it is
1324 slightly more natural for controls which support multiple selection.
1326 return _controls_
.ListBox_Select(*args
, **kwargs
)
1328 def Deselect(*args
, **kwargs
):
1329 """Deselect(self, int n)"""
1330 return _controls_
.ListBox_Deselect(*args
, **kwargs
)
1332 def DeselectAll(*args
, **kwargs
):
1333 """DeselectAll(self, int itemToLeaveSelected=-1)"""
1334 return _controls_
.ListBox_DeselectAll(*args
, **kwargs
)
1336 def SetStringSelection(*args
, **kwargs
):
1337 """SetStringSelection(self, String s, bool select=True) -> bool"""
1338 return _controls_
.ListBox_SetStringSelection(*args
, **kwargs
)
1340 def GetSelections(*args
, **kwargs
):
1341 """GetSelections(self) -> PyObject"""
1342 return _controls_
.ListBox_GetSelections(*args
, **kwargs
)
1344 def SetFirstItem(*args
, **kwargs
):
1345 """SetFirstItem(self, int n)"""
1346 return _controls_
.ListBox_SetFirstItem(*args
, **kwargs
)
1348 def SetFirstItemStr(*args
, **kwargs
):
1349 """SetFirstItemStr(self, String s)"""
1350 return _controls_
.ListBox_SetFirstItemStr(*args
, **kwargs
)
1352 def EnsureVisible(*args
, **kwargs
):
1353 """EnsureVisible(self, int n)"""
1354 return _controls_
.ListBox_EnsureVisible(*args
, **kwargs
)
1356 def AppendAndEnsureVisible(*args
, **kwargs
):
1357 """AppendAndEnsureVisible(self, String s)"""
1358 return _controls_
.ListBox_AppendAndEnsureVisible(*args
, **kwargs
)
1360 def IsSorted(*args
, **kwargs
):
1361 """IsSorted(self) -> bool"""
1362 return _controls_
.ListBox_IsSorted(*args
, **kwargs
)
1364 def HitTest(*args
, **kwargs
):
1366 HitTest(self, Point pt) -> int
1368 Test where the given (in client coords) point lies
1370 return _controls_
.ListBox_HitTest(*args
, **kwargs
)
1372 def SetItemForegroundColour(*args
, **kwargs
):
1373 """SetItemForegroundColour(self, int item, Colour c)"""
1374 return _controls_
.ListBox_SetItemForegroundColour(*args
, **kwargs
)
1376 def SetItemBackgroundColour(*args
, **kwargs
):
1377 """SetItemBackgroundColour(self, int item, Colour c)"""
1378 return _controls_
.ListBox_SetItemBackgroundColour(*args
, **kwargs
)
1380 def SetItemFont(*args
, **kwargs
):
1381 """SetItemFont(self, int item, Font f)"""
1382 return _controls_
.ListBox_SetItemFont(*args
, **kwargs
)
1384 def GetClassDefaultAttributes(*args
, **kwargs
):
1386 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1388 Get the default attributes for this class. This is useful if you want
1389 to use the same font or colour in your own control as in a standard
1390 control -- which is a much better idea than hard coding specific
1391 colours or fonts which might look completely out of place on the
1392 user's system, especially if it uses themes.
1394 The variant parameter is only relevant under Mac currently and is
1395 ignore under other platforms. Under Mac, it will change the size of
1396 the returned font. See `wx.Window.SetWindowVariant` for more about
1399 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1401 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1402 _controls_
.ListBox_swigregister(ListBox
)
1403 ListBoxNameStr
= cvar
.ListBoxNameStr
1405 def PreListBox(*args
, **kwargs
):
1406 """PreListBox() -> ListBox"""
1407 val
= _controls_
.new_PreListBox(*args
, **kwargs
)
1410 def ListBox_GetClassDefaultAttributes(*args
, **kwargs
):
1412 ListBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1414 Get the default attributes for this class. This is useful if you want
1415 to use the same font or colour in your own control as in a standard
1416 control -- which is a much better idea than hard coding specific
1417 colours or fonts which might look completely out of place on the
1418 user's system, especially if it uses themes.
1420 The variant parameter is only relevant under Mac currently and is
1421 ignore under other platforms. Under Mac, it will change the size of
1422 the returned font. See `wx.Window.SetWindowVariant` for more about
1425 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1427 #---------------------------------------------------------------------------
1429 class CheckListBox(ListBox
):
1430 """Proxy of C++ CheckListBox class"""
1431 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1432 __repr__
= _swig_repr
1433 def __init__(self
, *args
, **kwargs
):
1435 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1436 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1437 long style=0, Validator validator=DefaultValidator,
1438 String name=ListBoxNameStr) -> CheckListBox
1440 _controls_
.CheckListBox_swiginit(self
,_controls_
.new_CheckListBox(*args
, **kwargs
))
1441 self
._setOORInfo
(self
)
1443 def Create(*args
, **kwargs
):
1445 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1446 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1447 long style=0, Validator validator=DefaultValidator,
1448 String name=ListBoxNameStr) -> bool
1450 return _controls_
.CheckListBox_Create(*args
, **kwargs
)
1452 def IsChecked(*args
, **kwargs
):
1453 """IsChecked(self, unsigned int index) -> bool"""
1454 return _controls_
.CheckListBox_IsChecked(*args
, **kwargs
)
1456 def Check(*args
, **kwargs
):
1457 """Check(self, unsigned int index, int check=True)"""
1458 return _controls_
.CheckListBox_Check(*args
, **kwargs
)
1460 def GetItemHeight(self
):
1461 raise NotImplementedError
1463 ItemHeight
= property(GetItemHeight
,doc
="See `GetItemHeight`")
1464 _controls_
.CheckListBox_swigregister(CheckListBox
)
1466 def PreCheckListBox(*args
, **kwargs
):
1467 """PreCheckListBox() -> CheckListBox"""
1468 val
= _controls_
.new_PreCheckListBox(*args
, **kwargs
)
1471 #---------------------------------------------------------------------------
1473 TE_NO_VSCROLL
= _controls_
.TE_NO_VSCROLL
1474 TE_AUTO_SCROLL
= _controls_
.TE_AUTO_SCROLL
1475 TE_READONLY
= _controls_
.TE_READONLY
1476 TE_MULTILINE
= _controls_
.TE_MULTILINE
1477 TE_PROCESS_TAB
= _controls_
.TE_PROCESS_TAB
1478 TE_LEFT
= _controls_
.TE_LEFT
1479 TE_CENTER
= _controls_
.TE_CENTER
1480 TE_RIGHT
= _controls_
.TE_RIGHT
1481 TE_CENTRE
= _controls_
.TE_CENTRE
1482 TE_RICH
= _controls_
.TE_RICH
1483 TE_PROCESS_ENTER
= _controls_
.TE_PROCESS_ENTER
1484 TE_PASSWORD
= _controls_
.TE_PASSWORD
1485 TE_AUTO_URL
= _controls_
.TE_AUTO_URL
1486 TE_NOHIDESEL
= _controls_
.TE_NOHIDESEL
1487 TE_DONTWRAP
= _controls_
.TE_DONTWRAP
1488 TE_CHARWRAP
= _controls_
.TE_CHARWRAP
1489 TE_WORDWRAP
= _controls_
.TE_WORDWRAP
1490 TE_BESTWRAP
= _controls_
.TE_BESTWRAP
1491 TE_RICH2
= _controls_
.TE_RICH2
1492 TE_CAPITALIZE
= _controls_
.TE_CAPITALIZE
1493 TE_LINEWRAP
= TE_CHARWRAP
1494 TEXT_ALIGNMENT_DEFAULT
= _controls_
.TEXT_ALIGNMENT_DEFAULT
1495 TEXT_ALIGNMENT_LEFT
= _controls_
.TEXT_ALIGNMENT_LEFT
1496 TEXT_ALIGNMENT_CENTRE
= _controls_
.TEXT_ALIGNMENT_CENTRE
1497 TEXT_ALIGNMENT_CENTER
= _controls_
.TEXT_ALIGNMENT_CENTER
1498 TEXT_ALIGNMENT_RIGHT
= _controls_
.TEXT_ALIGNMENT_RIGHT
1499 TEXT_ALIGNMENT_JUSTIFIED
= _controls_
.TEXT_ALIGNMENT_JUSTIFIED
1500 TEXT_ATTR_TEXT_COLOUR
= _controls_
.TEXT_ATTR_TEXT_COLOUR
1501 TEXT_ATTR_BACKGROUND_COLOUR
= _controls_
.TEXT_ATTR_BACKGROUND_COLOUR
1502 TEXT_ATTR_FONT_FACE
= _controls_
.TEXT_ATTR_FONT_FACE
1503 TEXT_ATTR_FONT_SIZE
= _controls_
.TEXT_ATTR_FONT_SIZE
1504 TEXT_ATTR_FONT_WEIGHT
= _controls_
.TEXT_ATTR_FONT_WEIGHT
1505 TEXT_ATTR_FONT_ITALIC
= _controls_
.TEXT_ATTR_FONT_ITALIC
1506 TEXT_ATTR_FONT_UNDERLINE
= _controls_
.TEXT_ATTR_FONT_UNDERLINE
1507 TEXT_ATTR_FONT
= _controls_
.TEXT_ATTR_FONT
1508 TEXT_ATTR_ALIGNMENT
= _controls_
.TEXT_ATTR_ALIGNMENT
1509 TEXT_ATTR_LEFT_INDENT
= _controls_
.TEXT_ATTR_LEFT_INDENT
1510 TEXT_ATTR_RIGHT_INDENT
= _controls_
.TEXT_ATTR_RIGHT_INDENT
1511 TEXT_ATTR_TABS
= _controls_
.TEXT_ATTR_TABS
1512 TE_HT_UNKNOWN
= _controls_
.TE_HT_UNKNOWN
1513 TE_HT_BEFORE
= _controls_
.TE_HT_BEFORE
1514 TE_HT_ON_TEXT
= _controls_
.TE_HT_ON_TEXT
1515 TE_HT_BELOW
= _controls_
.TE_HT_BELOW
1516 TE_HT_BEYOND
= _controls_
.TE_HT_BEYOND
1517 OutOfRangeTextCoord
= _controls_
.OutOfRangeTextCoord
1518 InvalidTextCoord
= _controls_
.InvalidTextCoord
1519 class TextAttr(object):
1520 """Proxy of C++ TextAttr class"""
1521 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1522 __repr__
= _swig_repr
1523 def __init__(self
, *args
, **kwargs
):
1525 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
1526 Font font=wxNullFont, int alignment=TEXT_ALIGNMENT_DEFAULT) -> TextAttr
1528 _controls_
.TextAttr_swiginit(self
,_controls_
.new_TextAttr(*args
, **kwargs
))
1529 __swig_destroy__
= _controls_
.delete_TextAttr
1530 __del__
= lambda self
: None;
1531 def Init(*args
, **kwargs
):
1533 return _controls_
.TextAttr_Init(*args
, **kwargs
)
1535 def Merge(*args
, **kwargs
):
1536 """Merge(TextAttr base, TextAttr overlay) -> TextAttr"""
1537 return _controls_
.TextAttr_Merge(*args
, **kwargs
)
1539 Merge
= staticmethod(Merge
)
1540 def SetTextColour(*args
, **kwargs
):
1541 """SetTextColour(self, Colour colText)"""
1542 return _controls_
.TextAttr_SetTextColour(*args
, **kwargs
)
1544 def SetBackgroundColour(*args
, **kwargs
):
1545 """SetBackgroundColour(self, Colour colBack)"""
1546 return _controls_
.TextAttr_SetBackgroundColour(*args
, **kwargs
)
1548 def SetFont(*args
, **kwargs
):
1549 """SetFont(self, Font font, long flags=TEXT_ATTR_FONT)"""
1550 return _controls_
.TextAttr_SetFont(*args
, **kwargs
)
1552 def SetAlignment(*args
, **kwargs
):
1553 """SetAlignment(self, int alignment)"""
1554 return _controls_
.TextAttr_SetAlignment(*args
, **kwargs
)
1556 def SetTabs(*args
, **kwargs
):
1557 """SetTabs(self, wxArrayInt tabs)"""
1558 return _controls_
.TextAttr_SetTabs(*args
, **kwargs
)
1560 def SetLeftIndent(*args
, **kwargs
):
1561 """SetLeftIndent(self, int indent, int subIndent=0)"""
1562 return _controls_
.TextAttr_SetLeftIndent(*args
, **kwargs
)
1564 def SetRightIndent(*args
, **kwargs
):
1565 """SetRightIndent(self, int indent)"""
1566 return _controls_
.TextAttr_SetRightIndent(*args
, **kwargs
)
1568 def SetFlags(*args
, **kwargs
):
1569 """SetFlags(self, long flags)"""
1570 return _controls_
.TextAttr_SetFlags(*args
, **kwargs
)
1572 def HasTextColour(*args
, **kwargs
):
1573 """HasTextColour(self) -> bool"""
1574 return _controls_
.TextAttr_HasTextColour(*args
, **kwargs
)
1576 def HasBackgroundColour(*args
, **kwargs
):
1577 """HasBackgroundColour(self) -> bool"""
1578 return _controls_
.TextAttr_HasBackgroundColour(*args
, **kwargs
)
1580 def HasFont(*args
, **kwargs
):
1581 """HasFont(self) -> bool"""
1582 return _controls_
.TextAttr_HasFont(*args
, **kwargs
)
1584 def HasAlignment(*args
, **kwargs
):
1585 """HasAlignment(self) -> bool"""
1586 return _controls_
.TextAttr_HasAlignment(*args
, **kwargs
)
1588 def HasTabs(*args
, **kwargs
):
1589 """HasTabs(self) -> bool"""
1590 return _controls_
.TextAttr_HasTabs(*args
, **kwargs
)
1592 def HasLeftIndent(*args
, **kwargs
):
1593 """HasLeftIndent(self) -> bool"""
1594 return _controls_
.TextAttr_HasLeftIndent(*args
, **kwargs
)
1596 def HasRightIndent(*args
, **kwargs
):
1597 """HasRightIndent(self) -> bool"""
1598 return _controls_
.TextAttr_HasRightIndent(*args
, **kwargs
)
1600 def HasFlag(*args
, **kwargs
):
1601 """HasFlag(self, long flag) -> bool"""
1602 return _controls_
.TextAttr_HasFlag(*args
, **kwargs
)
1604 def GetTextColour(*args
, **kwargs
):
1605 """GetTextColour(self) -> Colour"""
1606 return _controls_
.TextAttr_GetTextColour(*args
, **kwargs
)
1608 def GetBackgroundColour(*args
, **kwargs
):
1609 """GetBackgroundColour(self) -> Colour"""
1610 return _controls_
.TextAttr_GetBackgroundColour(*args
, **kwargs
)
1612 def GetFont(*args
, **kwargs
):
1613 """GetFont(self) -> Font"""
1614 return _controls_
.TextAttr_GetFont(*args
, **kwargs
)
1616 def GetAlignment(*args
, **kwargs
):
1617 """GetAlignment(self) -> int"""
1618 return _controls_
.TextAttr_GetAlignment(*args
, **kwargs
)
1620 def GetTabs(*args
, **kwargs
):
1621 """GetTabs(self) -> wxArrayInt"""
1622 return _controls_
.TextAttr_GetTabs(*args
, **kwargs
)
1624 def GetLeftIndent(*args
, **kwargs
):
1625 """GetLeftIndent(self) -> long"""
1626 return _controls_
.TextAttr_GetLeftIndent(*args
, **kwargs
)
1628 def GetLeftSubIndent(*args
, **kwargs
):
1629 """GetLeftSubIndent(self) -> long"""
1630 return _controls_
.TextAttr_GetLeftSubIndent(*args
, **kwargs
)
1632 def GetRightIndent(*args
, **kwargs
):
1633 """GetRightIndent(self) -> long"""
1634 return _controls_
.TextAttr_GetRightIndent(*args
, **kwargs
)
1636 def GetFlags(*args
, **kwargs
):
1637 """GetFlags(self) -> long"""
1638 return _controls_
.TextAttr_GetFlags(*args
, **kwargs
)
1640 def IsDefault(*args
, **kwargs
):
1641 """IsDefault(self) -> bool"""
1642 return _controls_
.TextAttr_IsDefault(*args
, **kwargs
)
1644 def Combine(*args
, **kwargs
):
1645 """Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1646 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1648 Combine
= staticmethod(Combine
)
1649 _controls_
.TextAttr_swigregister(TextAttr
)
1650 TextCtrlNameStr
= cvar
.TextCtrlNameStr
1652 def TextAttr_Merge(*args
, **kwargs
):
1653 """TextAttr_Merge(TextAttr base, TextAttr overlay) -> TextAttr"""
1654 return _controls_
.TextAttr_Merge(*args
, **kwargs
)
1656 def TextAttr_Combine(*args
, **kwargs
):
1657 """TextAttr_Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1658 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1660 class TextCtrl(_core
.Control
):
1661 """Proxy of C++ TextCtrl class"""
1662 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1663 __repr__
= _swig_repr
1664 def __init__(self
, *args
, **kwargs
):
1666 __init__(self, Window parent, int id=-1, String value=EmptyString,
1667 Point pos=DefaultPosition, Size size=DefaultSize,
1668 long style=0, Validator validator=DefaultValidator,
1669 String name=TextCtrlNameStr) -> TextCtrl
1671 _controls_
.TextCtrl_swiginit(self
,_controls_
.new_TextCtrl(*args
, **kwargs
))
1672 self
._setOORInfo
(self
)
1674 def Create(*args
, **kwargs
):
1676 Create(self, Window parent, int id=-1, String value=EmptyString,
1677 Point pos=DefaultPosition, Size size=DefaultSize,
1678 long style=0, Validator validator=DefaultValidator,
1679 String name=TextCtrlNameStr) -> bool
1681 return _controls_
.TextCtrl_Create(*args
, **kwargs
)
1683 def GetValue(*args
, **kwargs
):
1684 """GetValue(self) -> String"""
1685 return _controls_
.TextCtrl_GetValue(*args
, **kwargs
)
1687 def SetValue(*args
, **kwargs
):
1688 """SetValue(self, String value)"""
1689 return _controls_
.TextCtrl_SetValue(*args
, **kwargs
)
1691 def GetRange(*args
, **kwargs
):
1692 """GetRange(self, long from, long to) -> String"""
1693 return _controls_
.TextCtrl_GetRange(*args
, **kwargs
)
1695 def GetLineLength(*args
, **kwargs
):
1696 """GetLineLength(self, long lineNo) -> int"""
1697 return _controls_
.TextCtrl_GetLineLength(*args
, **kwargs
)
1699 def GetLineText(*args
, **kwargs
):
1700 """GetLineText(self, long lineNo) -> String"""
1701 return _controls_
.TextCtrl_GetLineText(*args
, **kwargs
)
1703 def GetNumberOfLines(*args
, **kwargs
):
1704 """GetNumberOfLines(self) -> int"""
1705 return _controls_
.TextCtrl_GetNumberOfLines(*args
, **kwargs
)
1707 def IsModified(*args
, **kwargs
):
1708 """IsModified(self) -> bool"""
1709 return _controls_
.TextCtrl_IsModified(*args
, **kwargs
)
1711 def IsEditable(*args
, **kwargs
):
1712 """IsEditable(self) -> bool"""
1713 return _controls_
.TextCtrl_IsEditable(*args
, **kwargs
)
1715 def IsSingleLine(*args
, **kwargs
):
1716 """IsSingleLine(self) -> bool"""
1717 return _controls_
.TextCtrl_IsSingleLine(*args
, **kwargs
)
1719 def IsMultiLine(*args
, **kwargs
):
1720 """IsMultiLine(self) -> bool"""
1721 return _controls_
.TextCtrl_IsMultiLine(*args
, **kwargs
)
1723 def GetSelection(*args
, **kwargs
):
1725 GetSelection() -> (from, to)
1727 If the return values from and to are the same, there is no selection.
1729 return _controls_
.TextCtrl_GetSelection(*args
, **kwargs
)
1731 def GetStringSelection(*args
, **kwargs
):
1732 """GetStringSelection(self) -> String"""
1733 return _controls_
.TextCtrl_GetStringSelection(*args
, **kwargs
)
1735 def Clear(*args
, **kwargs
):
1737 return _controls_
.TextCtrl_Clear(*args
, **kwargs
)
1739 def Replace(*args
, **kwargs
):
1740 """Replace(self, long from, long to, String value)"""
1741 return _controls_
.TextCtrl_Replace(*args
, **kwargs
)
1743 def Remove(*args
, **kwargs
):
1744 """Remove(self, long from, long to)"""
1745 return _controls_
.TextCtrl_Remove(*args
, **kwargs
)
1747 def LoadFile(*args
, **kwargs
):
1748 """LoadFile(self, String file) -> bool"""
1749 return _controls_
.TextCtrl_LoadFile(*args
, **kwargs
)
1751 def SaveFile(*args
, **kwargs
):
1752 """SaveFile(self, String file=EmptyString) -> bool"""
1753 return _controls_
.TextCtrl_SaveFile(*args
, **kwargs
)
1755 def MarkDirty(*args
, **kwargs
):
1756 """MarkDirty(self)"""
1757 return _controls_
.TextCtrl_MarkDirty(*args
, **kwargs
)
1759 def DiscardEdits(*args
, **kwargs
):
1760 """DiscardEdits(self)"""
1761 return _controls_
.TextCtrl_DiscardEdits(*args
, **kwargs
)
1763 def SetModified(*args
, **kwargs
):
1764 """SetModified(self, bool modified)"""
1765 return _controls_
.TextCtrl_SetModified(*args
, **kwargs
)
1767 def SetMaxLength(*args
, **kwargs
):
1768 """SetMaxLength(self, unsigned long len)"""
1769 return _controls_
.TextCtrl_SetMaxLength(*args
, **kwargs
)
1771 def WriteText(*args
, **kwargs
):
1772 """WriteText(self, String text)"""
1773 return _controls_
.TextCtrl_WriteText(*args
, **kwargs
)
1775 def AppendText(*args
, **kwargs
):
1776 """AppendText(self, String text)"""
1777 return _controls_
.TextCtrl_AppendText(*args
, **kwargs
)
1779 def EmulateKeyPress(*args
, **kwargs
):
1780 """EmulateKeyPress(self, KeyEvent event) -> bool"""
1781 return _controls_
.TextCtrl_EmulateKeyPress(*args
, **kwargs
)
1783 def SetStyle(*args
, **kwargs
):
1784 """SetStyle(self, long start, long end, TextAttr style) -> bool"""
1785 return _controls_
.TextCtrl_SetStyle(*args
, **kwargs
)
1787 def GetStyle(*args
, **kwargs
):
1788 """GetStyle(self, long position, TextAttr style) -> bool"""
1789 return _controls_
.TextCtrl_GetStyle(*args
, **kwargs
)
1791 def SetDefaultStyle(*args
, **kwargs
):
1792 """SetDefaultStyle(self, TextAttr style) -> bool"""
1793 return _controls_
.TextCtrl_SetDefaultStyle(*args
, **kwargs
)
1795 def GetDefaultStyle(*args
, **kwargs
):
1796 """GetDefaultStyle(self) -> TextAttr"""
1797 return _controls_
.TextCtrl_GetDefaultStyle(*args
, **kwargs
)
1799 def XYToPosition(*args
, **kwargs
):
1800 """XYToPosition(self, long x, long y) -> long"""
1801 return _controls_
.TextCtrl_XYToPosition(*args
, **kwargs
)
1803 def PositionToXY(*args
, **kwargs
):
1804 """PositionToXY(long pos) -> (x, y)"""
1805 return _controls_
.TextCtrl_PositionToXY(*args
, **kwargs
)
1807 def ShowPosition(*args
, **kwargs
):
1808 """ShowPosition(self, long pos)"""
1809 return _controls_
.TextCtrl_ShowPosition(*args
, **kwargs
)
1811 def HitTest(*args
, **kwargs
):
1813 HitTest(Point pt) -> (result, col, row)
1815 Find the row, col coresponding to the character at the point given in
1816 pixels. NB: pt is in device coords but is not adjusted for the client
1817 area origin nor scrolling.
1819 return _controls_
.TextCtrl_HitTest(*args
, **kwargs
)
1821 def HitTestPos(*args
, **kwargs
):
1823 HitTestPos(Point pt) -> (result, position)
1825 Find the character position in the text coresponding to the point
1826 given in pixels. NB: pt is in device coords but is not adjusted for
1827 the client area origin nor scrolling.
1829 return _controls_
.TextCtrl_HitTestPos(*args
, **kwargs
)
1831 def Copy(*args
, **kwargs
):
1833 return _controls_
.TextCtrl_Copy(*args
, **kwargs
)
1835 def Cut(*args
, **kwargs
):
1837 return _controls_
.TextCtrl_Cut(*args
, **kwargs
)
1839 def Paste(*args
, **kwargs
):
1841 return _controls_
.TextCtrl_Paste(*args
, **kwargs
)
1843 def CanCopy(*args
, **kwargs
):
1844 """CanCopy(self) -> bool"""
1845 return _controls_
.TextCtrl_CanCopy(*args
, **kwargs
)
1847 def CanCut(*args
, **kwargs
):
1848 """CanCut(self) -> bool"""
1849 return _controls_
.TextCtrl_CanCut(*args
, **kwargs
)
1851 def CanPaste(*args
, **kwargs
):
1852 """CanPaste(self) -> bool"""
1853 return _controls_
.TextCtrl_CanPaste(*args
, **kwargs
)
1855 def Undo(*args
, **kwargs
):
1857 return _controls_
.TextCtrl_Undo(*args
, **kwargs
)
1859 def Redo(*args
, **kwargs
):
1861 return _controls_
.TextCtrl_Redo(*args
, **kwargs
)
1863 def CanUndo(*args
, **kwargs
):
1864 """CanUndo(self) -> bool"""
1865 return _controls_
.TextCtrl_CanUndo(*args
, **kwargs
)
1867 def CanRedo(*args
, **kwargs
):
1868 """CanRedo(self) -> bool"""
1869 return _controls_
.TextCtrl_CanRedo(*args
, **kwargs
)
1871 def SetInsertionPoint(*args
, **kwargs
):
1872 """SetInsertionPoint(self, long pos)"""
1873 return _controls_
.TextCtrl_SetInsertionPoint(*args
, **kwargs
)
1875 def SetInsertionPointEnd(*args
, **kwargs
):
1876 """SetInsertionPointEnd(self)"""
1877 return _controls_
.TextCtrl_SetInsertionPointEnd(*args
, **kwargs
)
1879 def GetInsertionPoint(*args
, **kwargs
):
1880 """GetInsertionPoint(self) -> long"""
1881 return _controls_
.TextCtrl_GetInsertionPoint(*args
, **kwargs
)
1883 def GetLastPosition(*args
, **kwargs
):
1884 """GetLastPosition(self) -> long"""
1885 return _controls_
.TextCtrl_GetLastPosition(*args
, **kwargs
)
1887 def SetSelection(*args
, **kwargs
):
1888 """SetSelection(self, long from, long to)"""
1889 return _controls_
.TextCtrl_SetSelection(*args
, **kwargs
)
1891 def SelectAll(*args
, **kwargs
):
1892 """SelectAll(self)"""
1893 return _controls_
.TextCtrl_SelectAll(*args
, **kwargs
)
1895 def SetEditable(*args
, **kwargs
):
1896 """SetEditable(self, bool editable)"""
1897 return _controls_
.TextCtrl_SetEditable(*args
, **kwargs
)
1899 def write(*args
, **kwargs
):
1900 """write(self, String text)"""
1901 return _controls_
.TextCtrl_write(*args
, **kwargs
)
1903 def GetString(*args
, **kwargs
):
1904 """GetString(self, long from, long to) -> String"""
1905 return _controls_
.TextCtrl_GetString(*args
, **kwargs
)
1907 def GetClassDefaultAttributes(*args
, **kwargs
):
1909 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1911 Get the default attributes for this class. This is useful if you want
1912 to use the same font or colour in your own control as in a standard
1913 control -- which is a much better idea than hard coding specific
1914 colours or fonts which might look completely out of place on the
1915 user's system, especially if it uses themes.
1917 The variant parameter is only relevant under Mac currently and is
1918 ignore under other platforms. Under Mac, it will change the size of
1919 the returned font. See `wx.Window.SetWindowVariant` for more about
1922 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1924 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1925 _controls_
.TextCtrl_swigregister(TextCtrl
)
1927 def PreTextCtrl(*args
, **kwargs
):
1928 """PreTextCtrl() -> TextCtrl"""
1929 val
= _controls_
.new_PreTextCtrl(*args
, **kwargs
)
1932 def TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
1934 TextCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1936 Get the default attributes for this class. This is useful if you want
1937 to use the same font or colour in your own control as in a standard
1938 control -- which is a much better idea than hard coding specific
1939 colours or fonts which might look completely out of place on the
1940 user's system, especially if it uses themes.
1942 The variant parameter is only relevant under Mac currently and is
1943 ignore under other platforms. Under Mac, it will change the size of
1944 the returned font. See `wx.Window.SetWindowVariant` for more about
1947 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1949 wxEVT_COMMAND_TEXT_UPDATED
= _controls_
.wxEVT_COMMAND_TEXT_UPDATED
1950 wxEVT_COMMAND_TEXT_ENTER
= _controls_
.wxEVT_COMMAND_TEXT_ENTER
1951 wxEVT_COMMAND_TEXT_URL
= _controls_
.wxEVT_COMMAND_TEXT_URL
1952 wxEVT_COMMAND_TEXT_MAXLEN
= _controls_
.wxEVT_COMMAND_TEXT_MAXLEN
1953 class TextUrlEvent(_core
.CommandEvent
):
1954 """Proxy of C++ TextUrlEvent class"""
1955 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1956 __repr__
= _swig_repr
1957 def __init__(self
, *args
, **kwargs
):
1958 """__init__(self, int winid, MouseEvent evtMouse, long start, long end) -> TextUrlEvent"""
1959 _controls_
.TextUrlEvent_swiginit(self
,_controls_
.new_TextUrlEvent(*args
, **kwargs
))
1960 def GetMouseEvent(*args
, **kwargs
):
1961 """GetMouseEvent(self) -> MouseEvent"""
1962 return _controls_
.TextUrlEvent_GetMouseEvent(*args
, **kwargs
)
1964 def GetURLStart(*args
, **kwargs
):
1965 """GetURLStart(self) -> long"""
1966 return _controls_
.TextUrlEvent_GetURLStart(*args
, **kwargs
)
1968 def GetURLEnd(*args
, **kwargs
):
1969 """GetURLEnd(self) -> long"""
1970 return _controls_
.TextUrlEvent_GetURLEnd(*args
, **kwargs
)
1972 _controls_
.TextUrlEvent_swigregister(TextUrlEvent
)
1974 EVT_TEXT
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED
, 1)
1975 EVT_TEXT_ENTER
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER
, 1)
1976 EVT_TEXT_URL
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_URL
, 1)
1977 EVT_TEXT_MAXLEN
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN
, 1)
1979 #---------------------------------------------------------------------------
1981 class ScrollBar(_core
.Control
):
1982 """Proxy of C++ ScrollBar class"""
1983 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1984 __repr__
= _swig_repr
1985 def __init__(self
, *args
, **kwargs
):
1987 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1988 Size size=DefaultSize, long style=SB_HORIZONTAL,
1989 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> ScrollBar
1991 _controls_
.ScrollBar_swiginit(self
,_controls_
.new_ScrollBar(*args
, **kwargs
))
1992 self
._setOORInfo
(self
)
1994 def Create(*args
, **kwargs
):
1996 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1997 Size size=DefaultSize, long style=SB_HORIZONTAL,
1998 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> bool
2000 Do the 2nd phase and create the GUI control.
2002 return _controls_
.ScrollBar_Create(*args
, **kwargs
)
2004 def GetThumbPosition(*args
, **kwargs
):
2005 """GetThumbPosition(self) -> int"""
2006 return _controls_
.ScrollBar_GetThumbPosition(*args
, **kwargs
)
2008 def GetThumbSize(*args
, **kwargs
):
2009 """GetThumbSize(self) -> int"""
2010 return _controls_
.ScrollBar_GetThumbSize(*args
, **kwargs
)
2012 GetThumbLength
= GetThumbSize
2013 def GetPageSize(*args
, **kwargs
):
2014 """GetPageSize(self) -> int"""
2015 return _controls_
.ScrollBar_GetPageSize(*args
, **kwargs
)
2017 def GetRange(*args
, **kwargs
):
2018 """GetRange(self) -> int"""
2019 return _controls_
.ScrollBar_GetRange(*args
, **kwargs
)
2021 def IsVertical(*args
, **kwargs
):
2022 """IsVertical(self) -> bool"""
2023 return _controls_
.ScrollBar_IsVertical(*args
, **kwargs
)
2025 def SetThumbPosition(*args
, **kwargs
):
2026 """SetThumbPosition(self, int viewStart)"""
2027 return _controls_
.ScrollBar_SetThumbPosition(*args
, **kwargs
)
2029 def GetClassDefaultAttributes(*args
, **kwargs
):
2031 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2033 Get the default attributes for this class. This is useful if you want
2034 to use the same font or colour in your own control as in a standard
2035 control -- which is a much better idea than hard coding specific
2036 colours or fonts which might look completely out of place on the
2037 user's system, especially if it uses themes.
2039 The variant parameter is only relevant under Mac currently and is
2040 ignore under other platforms. Under Mac, it will change the size of
2041 the returned font. See `wx.Window.SetWindowVariant` for more about
2044 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
2046 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2047 _controls_
.ScrollBar_swigregister(ScrollBar
)
2048 ScrollBarNameStr
= cvar
.ScrollBarNameStr
2050 def PreScrollBar(*args
, **kwargs
):
2051 """PreScrollBar() -> ScrollBar"""
2052 val
= _controls_
.new_PreScrollBar(*args
, **kwargs
)
2055 def ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
):
2057 ScrollBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2059 Get the default attributes for this class. This is useful if you want
2060 to use the same font or colour in your own control as in a standard
2061 control -- which is a much better idea than hard coding specific
2062 colours or fonts which might look completely out of place on the
2063 user's system, especially if it uses themes.
2065 The variant parameter is only relevant under Mac currently and is
2066 ignore under other platforms. Under Mac, it will change the size of
2067 the returned font. See `wx.Window.SetWindowVariant` for more about
2070 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
2072 #---------------------------------------------------------------------------
2074 SP_HORIZONTAL
= _controls_
.SP_HORIZONTAL
2075 SP_VERTICAL
= _controls_
.SP_VERTICAL
2076 SP_ARROW_KEYS
= _controls_
.SP_ARROW_KEYS
2077 SP_WRAP
= _controls_
.SP_WRAP
2078 class SpinButton(_core
.Control
):
2079 """Proxy of C++ SpinButton class"""
2080 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2081 __repr__
= _swig_repr
2082 def __init__(self
, *args
, **kwargs
):
2084 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2085 Size size=DefaultSize, long style=SP_HORIZONTAL,
2086 String name=SPIN_BUTTON_NAME) -> SpinButton
2088 _controls_
.SpinButton_swiginit(self
,_controls_
.new_SpinButton(*args
, **kwargs
))
2089 self
._setOORInfo
(self
)
2091 def Create(*args
, **kwargs
):
2093 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2094 Size size=DefaultSize, long style=SP_HORIZONTAL,
2095 String name=SPIN_BUTTON_NAME) -> bool
2097 return _controls_
.SpinButton_Create(*args
, **kwargs
)
2099 def GetValue(*args
, **kwargs
):
2100 """GetValue(self) -> int"""
2101 return _controls_
.SpinButton_GetValue(*args
, **kwargs
)
2103 def GetMin(*args
, **kwargs
):
2104 """GetMin(self) -> int"""
2105 return _controls_
.SpinButton_GetMin(*args
, **kwargs
)
2107 def GetMax(*args
, **kwargs
):
2108 """GetMax(self) -> int"""
2109 return _controls_
.SpinButton_GetMax(*args
, **kwargs
)
2111 def SetValue(*args
, **kwargs
):
2112 """SetValue(self, int val)"""
2113 return _controls_
.SpinButton_SetValue(*args
, **kwargs
)
2115 def SetMin(*args
, **kwargs
):
2116 """SetMin(self, int minVal)"""
2117 return _controls_
.SpinButton_SetMin(*args
, **kwargs
)
2119 def SetMax(*args
, **kwargs
):
2120 """SetMax(self, int maxVal)"""
2121 return _controls_
.SpinButton_SetMax(*args
, **kwargs
)
2123 def SetRange(*args
, **kwargs
):
2124 """SetRange(self, int minVal, int maxVal)"""
2125 return _controls_
.SpinButton_SetRange(*args
, **kwargs
)
2127 def IsVertical(*args
, **kwargs
):
2128 """IsVertical(self) -> bool"""
2129 return _controls_
.SpinButton_IsVertical(*args
, **kwargs
)
2131 def GetClassDefaultAttributes(*args
, **kwargs
):
2133 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2135 Get the default attributes for this class. This is useful if you want
2136 to use the same font or colour in your own control as in a standard
2137 control -- which is a much better idea than hard coding specific
2138 colours or fonts which might look completely out of place on the
2139 user's system, especially if it uses themes.
2141 The variant parameter is only relevant under Mac currently and is
2142 ignore under other platforms. Under Mac, it will change the size of
2143 the returned font. See `wx.Window.SetWindowVariant` for more about
2146 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2148 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2149 _controls_
.SpinButton_swigregister(SpinButton
)
2150 SPIN_BUTTON_NAME
= cvar
.SPIN_BUTTON_NAME
2151 SpinCtrlNameStr
= cvar
.SpinCtrlNameStr
2153 def PreSpinButton(*args
, **kwargs
):
2154 """PreSpinButton() -> SpinButton"""
2155 val
= _controls_
.new_PreSpinButton(*args
, **kwargs
)
2158 def SpinButton_GetClassDefaultAttributes(*args
, **kwargs
):
2160 SpinButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2162 Get the default attributes for this class. This is useful if you want
2163 to use the same font or colour in your own control as in a standard
2164 control -- which is a much better idea than hard coding specific
2165 colours or fonts which might look completely out of place on the
2166 user's system, especially if it uses themes.
2168 The variant parameter is only relevant under Mac currently and is
2169 ignore under other platforms. Under Mac, it will change the size of
2170 the returned font. See `wx.Window.SetWindowVariant` for more about
2173 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2175 class SpinCtrl(_core
.Control
):
2176 """Proxy of C++ SpinCtrl class"""
2177 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2178 __repr__
= _swig_repr
2179 def __init__(self
, *args
, **kwargs
):
2181 __init__(self, Window parent, int id=-1, String value=EmptyString,
2182 Point pos=DefaultPosition, Size size=DefaultSize,
2183 long style=SP_ARROW_KEYS, int min=0, int max=100,
2184 int initial=0, String name=SpinCtrlNameStr) -> SpinCtrl
2186 _controls_
.SpinCtrl_swiginit(self
,_controls_
.new_SpinCtrl(*args
, **kwargs
))
2187 self
._setOORInfo
(self
)
2189 def Create(*args
, **kwargs
):
2191 Create(self, Window parent, int id=-1, String value=EmptyString,
2192 Point pos=DefaultPosition, Size size=DefaultSize,
2193 long style=SP_ARROW_KEYS, int min=0, int max=100,
2194 int initial=0, String name=SpinCtrlNameStr) -> bool
2196 return _controls_
.SpinCtrl_Create(*args
, **kwargs
)
2198 def GetValue(*args
, **kwargs
):
2199 """GetValue(self) -> int"""
2200 return _controls_
.SpinCtrl_GetValue(*args
, **kwargs
)
2202 def SetValue(*args
, **kwargs
):
2203 """SetValue(self, int value)"""
2204 return _controls_
.SpinCtrl_SetValue(*args
, **kwargs
)
2206 def SetValueString(*args
, **kwargs
):
2207 """SetValueString(self, String text)"""
2208 return _controls_
.SpinCtrl_SetValueString(*args
, **kwargs
)
2210 def SetRange(*args
, **kwargs
):
2211 """SetRange(self, int minVal, int maxVal)"""
2212 return _controls_
.SpinCtrl_SetRange(*args
, **kwargs
)
2214 def GetMin(*args
, **kwargs
):
2215 """GetMin(self) -> int"""
2216 return _controls_
.SpinCtrl_GetMin(*args
, **kwargs
)
2218 def GetMax(*args
, **kwargs
):
2219 """GetMax(self) -> int"""
2220 return _controls_
.SpinCtrl_GetMax(*args
, **kwargs
)
2222 def SetSelection(*args
, **kwargs
):
2223 """SetSelection(self, long from, long to)"""
2224 return _controls_
.SpinCtrl_SetSelection(*args
, **kwargs
)
2226 def GetClassDefaultAttributes(*args
, **kwargs
):
2228 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2230 Get the default attributes for this class. This is useful if you want
2231 to use the same font or colour in your own control as in a standard
2232 control -- which is a much better idea than hard coding specific
2233 colours or fonts which might look completely out of place on the
2234 user's system, especially if it uses themes.
2236 The variant parameter is only relevant under Mac currently and is
2237 ignore under other platforms. Under Mac, it will change the size of
2238 the returned font. See `wx.Window.SetWindowVariant` for more about
2241 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2243 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2244 _controls_
.SpinCtrl_swigregister(SpinCtrl
)
2246 def PreSpinCtrl(*args
, **kwargs
):
2247 """PreSpinCtrl() -> SpinCtrl"""
2248 val
= _controls_
.new_PreSpinCtrl(*args
, **kwargs
)
2251 def SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
2253 SpinCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2255 Get the default attributes for this class. This is useful if you want
2256 to use the same font or colour in your own control as in a standard
2257 control -- which is a much better idea than hard coding specific
2258 colours or fonts which might look completely out of place on the
2259 user's system, especially if it uses themes.
2261 The variant parameter is only relevant under Mac currently and is
2262 ignore under other platforms. Under Mac, it will change the size of
2263 the returned font. See `wx.Window.SetWindowVariant` for more about
2266 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2268 class SpinEvent(_core
.NotifyEvent
):
2269 """Proxy of C++ SpinEvent class"""
2270 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2271 __repr__
= _swig_repr
2272 def __init__(self
, *args
, **kwargs
):
2273 """__init__(self, EventType commandType=wxEVT_NULL, int winid=0) -> SpinEvent"""
2274 _controls_
.SpinEvent_swiginit(self
,_controls_
.new_SpinEvent(*args
, **kwargs
))
2275 def GetPosition(*args
, **kwargs
):
2276 """GetPosition(self) -> int"""
2277 return _controls_
.SpinEvent_GetPosition(*args
, **kwargs
)
2279 def SetPosition(*args
, **kwargs
):
2280 """SetPosition(self, int pos)"""
2281 return _controls_
.SpinEvent_SetPosition(*args
, **kwargs
)
2283 _controls_
.SpinEvent_swigregister(SpinEvent
)
2285 wxEVT_COMMAND_SPINCTRL_UPDATED
= _controls_
.wxEVT_COMMAND_SPINCTRL_UPDATED
2286 EVT_SPIN_UP
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEUP
, 1)
2287 EVT_SPIN_DOWN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEDOWN
, 1)
2288 EVT_SPIN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_THUMBTRACK
, 1)
2289 EVT_SPINCTRL
= wx
.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED
, 1)
2291 #---------------------------------------------------------------------------
2293 class RadioBox(_core
.Control
):
2294 """Proxy of C++ RadioBox class"""
2295 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2296 __repr__
= _swig_repr
2297 def __init__(self
, *args
, **kwargs
):
2299 __init__(self, Window parent, int id=-1, String label=EmptyString,
2300 Point pos=DefaultPosition, Size size=DefaultSize,
2301 wxArrayString choices=wxPyEmptyStringArray,
2302 int majorDimension=0, long style=RA_HORIZONTAL,
2303 Validator validator=DefaultValidator,
2304 String name=RadioBoxNameStr) -> RadioBox
2306 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2307 _controls_
.RadioBox_swiginit(self
,_controls_
.new_RadioBox(*args
, **kwargs
))
2308 self
._setOORInfo
(self
)
2310 def Create(*args
, **kwargs
):
2312 Create(self, Window parent, int id=-1, String label=EmptyString,
2313 Point pos=DefaultPosition, Size size=DefaultSize,
2314 wxArrayString choices=wxPyEmptyStringArray,
2315 int majorDimension=0, long style=RA_HORIZONTAL,
2316 Validator validator=DefaultValidator,
2317 String name=RadioBoxNameStr) -> bool
2319 return _controls_
.RadioBox_Create(*args
, **kwargs
)
2321 def SetSelection(*args
, **kwargs
):
2322 """SetSelection(self, int n)"""
2323 return _controls_
.RadioBox_SetSelection(*args
, **kwargs
)
2325 def GetSelection(*args
, **kwargs
):
2326 """GetSelection(self) -> int"""
2327 return _controls_
.RadioBox_GetSelection(*args
, **kwargs
)
2329 def GetStringSelection(*args
, **kwargs
):
2330 """GetStringSelection(self) -> String"""
2331 return _controls_
.RadioBox_GetStringSelection(*args
, **kwargs
)
2333 def SetStringSelection(*args
, **kwargs
):
2334 """SetStringSelection(self, String s) -> bool"""
2335 return _controls_
.RadioBox_SetStringSelection(*args
, **kwargs
)
2337 def GetCount(*args
, **kwargs
):
2338 """GetCount(self) -> size_t"""
2339 return _controls_
.RadioBox_GetCount(*args
, **kwargs
)
2341 def FindString(*args
, **kwargs
):
2342 """FindString(self, String s) -> int"""
2343 return _controls_
.RadioBox_FindString(*args
, **kwargs
)
2345 def GetString(*args
, **kwargs
):
2346 """GetString(self, int n) -> String"""
2347 return _controls_
.RadioBox_GetString(*args
, **kwargs
)
2349 def SetString(*args
, **kwargs
):
2350 """SetString(self, int n, String label)"""
2351 return _controls_
.RadioBox_SetString(*args
, **kwargs
)
2353 GetItemLabel
= GetString
2354 SetItemLabel
= SetString
2355 def EnableItem(*args
, **kwargs
):
2356 """EnableItem(self, unsigned int n, bool enable=True)"""
2357 return _controls_
.RadioBox_EnableItem(*args
, **kwargs
)
2359 def ShowItem(*args
, **kwargs
):
2360 """ShowItem(self, unsigned int n, bool show=True)"""
2361 return _controls_
.RadioBox_ShowItem(*args
, **kwargs
)
2363 def IsItemEnabled(*args
, **kwargs
):
2364 """IsItemEnabled(self, unsigned int n) -> bool"""
2365 return _controls_
.RadioBox_IsItemEnabled(*args
, **kwargs
)
2367 def IsItemShown(*args
, **kwargs
):
2368 """IsItemShown(self, unsigned int n) -> bool"""
2369 return _controls_
.RadioBox_IsItemShown(*args
, **kwargs
)
2371 def GetColumnCount(*args
, **kwargs
):
2372 """GetColumnCount(self) -> unsigned int"""
2373 return _controls_
.RadioBox_GetColumnCount(*args
, **kwargs
)
2375 def GetRowCount(*args
, **kwargs
):
2376 """GetRowCount(self) -> unsigned int"""
2377 return _controls_
.RadioBox_GetRowCount(*args
, **kwargs
)
2379 def GetNextItem(*args
, **kwargs
):
2380 """GetNextItem(self, int item, int dir, long style) -> int"""
2381 return _controls_
.RadioBox_GetNextItem(*args
, **kwargs
)
2383 def SetItemToolTip(*args
, **kwargs
):
2384 """SetItemToolTip(self, unsigned int item, String text)"""
2385 return _controls_
.RadioBox_SetItemToolTip(*args
, **kwargs
)
2387 def GetItemToolTip(*args
, **kwargs
):
2388 """GetItemToolTip(self, unsigned int item) -> ToolTip"""
2389 return _controls_
.RadioBox_GetItemToolTip(*args
, **kwargs
)
2391 def SetItemHelpText(*args
, **kwargs
):
2392 """SetItemHelpText(self, unsigned int n, String helpText)"""
2393 return _controls_
.RadioBox_SetItemHelpText(*args
, **kwargs
)
2395 def GetItemHelpText(*args
, **kwargs
):
2396 """GetItemHelpText(self, unsigned int n) -> String"""
2397 return _controls_
.RadioBox_GetItemHelpText(*args
, **kwargs
)
2399 def GetClassDefaultAttributes(*args
, **kwargs
):
2401 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2403 Get the default attributes for this class. This is useful if you want
2404 to use the same font or colour in your own control as in a standard
2405 control -- which is a much better idea than hard coding specific
2406 colours or fonts which might look completely out of place on the
2407 user's system, especially if it uses themes.
2409 The variant parameter is only relevant under Mac currently and is
2410 ignore under other platforms. Under Mac, it will change the size of
2411 the returned font. See `wx.Window.SetWindowVariant` for more about
2414 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2416 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2417 _controls_
.RadioBox_swigregister(RadioBox
)
2418 RadioBoxNameStr
= cvar
.RadioBoxNameStr
2419 RadioButtonNameStr
= cvar
.RadioButtonNameStr
2421 def PreRadioBox(*args
, **kwargs
):
2422 """PreRadioBox() -> RadioBox"""
2423 val
= _controls_
.new_PreRadioBox(*args
, **kwargs
)
2426 def RadioBox_GetClassDefaultAttributes(*args
, **kwargs
):
2428 RadioBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2430 Get the default attributes for this class. This is useful if you want
2431 to use the same font or colour in your own control as in a standard
2432 control -- which is a much better idea than hard coding specific
2433 colours or fonts which might look completely out of place on the
2434 user's system, especially if it uses themes.
2436 The variant parameter is only relevant under Mac currently and is
2437 ignore under other platforms. Under Mac, it will change the size of
2438 the returned font. See `wx.Window.SetWindowVariant` for more about
2441 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2443 #---------------------------------------------------------------------------
2445 class RadioButton(_core
.Control
):
2446 """Proxy of C++ RadioButton class"""
2447 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2448 __repr__
= _swig_repr
2449 def __init__(self
, *args
, **kwargs
):
2451 __init__(self, Window parent, int id=-1, String label=EmptyString,
2452 Point pos=DefaultPosition, Size size=DefaultSize,
2453 long style=0, Validator validator=DefaultValidator,
2454 String name=RadioButtonNameStr) -> RadioButton
2456 _controls_
.RadioButton_swiginit(self
,_controls_
.new_RadioButton(*args
, **kwargs
))
2457 self
._setOORInfo
(self
)
2459 def Create(*args
, **kwargs
):
2461 Create(self, Window parent, int id=-1, String label=EmptyString,
2462 Point pos=DefaultPosition, Size size=DefaultSize,
2463 long style=0, Validator validator=DefaultValidator,
2464 String name=RadioButtonNameStr) -> bool
2466 return _controls_
.RadioButton_Create(*args
, **kwargs
)
2468 def GetValue(*args
, **kwargs
):
2469 """GetValue(self) -> bool"""
2470 return _controls_
.RadioButton_GetValue(*args
, **kwargs
)
2472 def SetValue(*args
, **kwargs
):
2473 """SetValue(self, bool value)"""
2474 return _controls_
.RadioButton_SetValue(*args
, **kwargs
)
2476 def GetClassDefaultAttributes(*args
, **kwargs
):
2478 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2480 Get the default attributes for this class. This is useful if you want
2481 to use the same font or colour in your own control as in a standard
2482 control -- which is a much better idea than hard coding specific
2483 colours or fonts which might look completely out of place on the
2484 user's system, especially if it uses themes.
2486 The variant parameter is only relevant under Mac currently and is
2487 ignore under other platforms. Under Mac, it will change the size of
2488 the returned font. See `wx.Window.SetWindowVariant` for more about
2491 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2493 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2494 _controls_
.RadioButton_swigregister(RadioButton
)
2496 def PreRadioButton(*args
, **kwargs
):
2497 """PreRadioButton() -> RadioButton"""
2498 val
= _controls_
.new_PreRadioButton(*args
, **kwargs
)
2501 def RadioButton_GetClassDefaultAttributes(*args
, **kwargs
):
2503 RadioButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2505 Get the default attributes for this class. This is useful if you want
2506 to use the same font or colour in your own control as in a standard
2507 control -- which is a much better idea than hard coding specific
2508 colours or fonts which might look completely out of place on the
2509 user's system, especially if it uses themes.
2511 The variant parameter is only relevant under Mac currently and is
2512 ignore under other platforms. Under Mac, it will change the size of
2513 the returned font. See `wx.Window.SetWindowVariant` for more about
2516 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2518 #---------------------------------------------------------------------------
2520 SL_HORIZONTAL
= _controls_
.SL_HORIZONTAL
2521 SL_VERTICAL
= _controls_
.SL_VERTICAL
2522 SL_TICKS
= _controls_
.SL_TICKS
2523 SL_AUTOTICKS
= _controls_
.SL_AUTOTICKS
2524 SL_LABELS
= _controls_
.SL_LABELS
2525 SL_LEFT
= _controls_
.SL_LEFT
2526 SL_TOP
= _controls_
.SL_TOP
2527 SL_RIGHT
= _controls_
.SL_RIGHT
2528 SL_BOTTOM
= _controls_
.SL_BOTTOM
2529 SL_BOTH
= _controls_
.SL_BOTH
2530 SL_SELRANGE
= _controls_
.SL_SELRANGE
2531 SL_INVERSE
= _controls_
.SL_INVERSE
2532 class Slider(_core
.Control
):
2533 """Proxy of C++ Slider class"""
2534 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2535 __repr__
= _swig_repr
2536 def __init__(self
, *args
, **kwargs
):
2538 __init__(self, Window parent, int id=-1, int value=0, int minValue=0,
2539 int maxValue=100, Point pos=DefaultPosition,
2540 Size size=DefaultSize, long style=SL_HORIZONTAL,
2541 Validator validator=DefaultValidator,
2542 String name=SliderNameStr) -> Slider
2544 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2545 _controls_
.Slider_swiginit(self
,_controls_
.new_Slider(*args
, **kwargs
))
2546 self
._setOORInfo
(self
)
2548 def Create(*args
, **kwargs
):
2550 Create(self, Window parent, int id=-1, int value=0, int minValue=0,
2551 int maxValue=100, Point pos=DefaultPosition,
2552 Size size=DefaultSize, long style=SL_HORIZONTAL,
2553 Validator validator=DefaultValidator,
2554 String name=SliderNameStr) -> bool
2556 return _controls_
.Slider_Create(*args
, **kwargs
)
2558 def GetValue(*args
, **kwargs
):
2559 """GetValue(self) -> int"""
2560 return _controls_
.Slider_GetValue(*args
, **kwargs
)
2562 def SetValue(*args
, **kwargs
):
2563 """SetValue(self, int value)"""
2564 return _controls_
.Slider_SetValue(*args
, **kwargs
)
2566 def SetRange(*args
, **kwargs
):
2567 """SetRange(self, int minValue, int maxValue)"""
2568 return _controls_
.Slider_SetRange(*args
, **kwargs
)
2570 def GetMin(*args
, **kwargs
):
2571 """GetMin(self) -> int"""
2572 return _controls_
.Slider_GetMin(*args
, **kwargs
)
2574 def GetMax(*args
, **kwargs
):
2575 """GetMax(self) -> int"""
2576 return _controls_
.Slider_GetMax(*args
, **kwargs
)
2578 def SetMin(*args
, **kwargs
):
2579 """SetMin(self, int minValue)"""
2580 return _controls_
.Slider_SetMin(*args
, **kwargs
)
2582 def SetMax(*args
, **kwargs
):
2583 """SetMax(self, int maxValue)"""
2584 return _controls_
.Slider_SetMax(*args
, **kwargs
)
2586 def SetLineSize(*args
, **kwargs
):
2587 """SetLineSize(self, int lineSize)"""
2588 return _controls_
.Slider_SetLineSize(*args
, **kwargs
)
2590 def SetPageSize(*args
, **kwargs
):
2591 """SetPageSize(self, int pageSize)"""
2592 return _controls_
.Slider_SetPageSize(*args
, **kwargs
)
2594 def GetLineSize(*args
, **kwargs
):
2595 """GetLineSize(self) -> int"""
2596 return _controls_
.Slider_GetLineSize(*args
, **kwargs
)
2598 def GetPageSize(*args
, **kwargs
):
2599 """GetPageSize(self) -> int"""
2600 return _controls_
.Slider_GetPageSize(*args
, **kwargs
)
2602 def SetThumbLength(*args
, **kwargs
):
2603 """SetThumbLength(self, int lenPixels)"""
2604 return _controls_
.Slider_SetThumbLength(*args
, **kwargs
)
2606 def GetThumbLength(*args
, **kwargs
):
2607 """GetThumbLength(self) -> int"""
2608 return _controls_
.Slider_GetThumbLength(*args
, **kwargs
)
2610 def SetTickFreq(*args
, **kwargs
):
2611 """SetTickFreq(self, int n, int pos=1)"""
2612 return _controls_
.Slider_SetTickFreq(*args
, **kwargs
)
2614 def GetTickFreq(*args
, **kwargs
):
2615 """GetTickFreq(self) -> int"""
2616 return _controls_
.Slider_GetTickFreq(*args
, **kwargs
)
2618 def ClearTicks(*args
, **kwargs
):
2619 """ClearTicks(self)"""
2620 return _controls_
.Slider_ClearTicks(*args
, **kwargs
)
2622 def SetTick(*args
, **kwargs
):
2623 """SetTick(self, int tickPos)"""
2624 return _controls_
.Slider_SetTick(*args
, **kwargs
)
2626 def ClearSel(*args
, **kwargs
):
2627 """ClearSel(self)"""
2628 return _controls_
.Slider_ClearSel(*args
, **kwargs
)
2630 def GetSelEnd(*args
, **kwargs
):
2631 """GetSelEnd(self) -> int"""
2632 return _controls_
.Slider_GetSelEnd(*args
, **kwargs
)
2634 def GetSelStart(*args
, **kwargs
):
2635 """GetSelStart(self) -> int"""
2636 return _controls_
.Slider_GetSelStart(*args
, **kwargs
)
2638 def SetSelection(*args
, **kwargs
):
2639 """SetSelection(self, int min, int max)"""
2640 return _controls_
.Slider_SetSelection(*args
, **kwargs
)
2642 def GetClassDefaultAttributes(*args
, **kwargs
):
2644 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2646 Get the default attributes for this class. This is useful if you want
2647 to use the same font or colour in your own control as in a standard
2648 control -- which is a much better idea than hard coding specific
2649 colours or fonts which might look completely out of place on the
2650 user's system, especially if it uses themes.
2652 The variant parameter is only relevant under Mac currently and is
2653 ignore under other platforms. Under Mac, it will change the size of
2654 the returned font. See `wx.Window.SetWindowVariant` for more about
2657 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2659 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2660 _controls_
.Slider_swigregister(Slider
)
2661 SliderNameStr
= cvar
.SliderNameStr
2663 def PreSlider(*args
, **kwargs
):
2664 """PreSlider() -> Slider"""
2665 val
= _controls_
.new_PreSlider(*args
, **kwargs
)
2668 def Slider_GetClassDefaultAttributes(*args
, **kwargs
):
2670 Slider_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2672 Get the default attributes for this class. This is useful if you want
2673 to use the same font or colour in your own control as in a standard
2674 control -- which is a much better idea than hard coding specific
2675 colours or fonts which might look completely out of place on the
2676 user's system, especially if it uses themes.
2678 The variant parameter is only relevant under Mac currently and is
2679 ignore under other platforms. Under Mac, it will change the size of
2680 the returned font. See `wx.Window.SetWindowVariant` for more about
2683 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2685 #---------------------------------------------------------------------------
2687 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
= _controls_
.wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
2688 EVT_TOGGLEBUTTON
= wx
.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
, 1)
2690 class ToggleButton(_core
.Control
):
2691 """Proxy of C++ ToggleButton class"""
2692 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2693 __repr__
= _swig_repr
2694 def __init__(self
, *args
, **kwargs
):
2696 __init__(self, Window parent, int id=-1, String label=EmptyString,
2697 Point pos=DefaultPosition, Size size=DefaultSize,
2698 long style=0, Validator validator=DefaultValidator,
2699 String name=ToggleButtonNameStr) -> ToggleButton
2701 _controls_
.ToggleButton_swiginit(self
,_controls_
.new_ToggleButton(*args
, **kwargs
))
2702 self
._setOORInfo
(self
)
2704 def Create(*args
, **kwargs
):
2706 Create(self, Window parent, int id=-1, String label=EmptyString,
2707 Point pos=DefaultPosition, Size size=DefaultSize,
2708 long style=0, Validator validator=DefaultValidator,
2709 String name=ToggleButtonNameStr) -> bool
2711 return _controls_
.ToggleButton_Create(*args
, **kwargs
)
2713 def SetValue(*args
, **kwargs
):
2714 """SetValue(self, bool value)"""
2715 return _controls_
.ToggleButton_SetValue(*args
, **kwargs
)
2717 def GetValue(*args
, **kwargs
):
2718 """GetValue(self) -> bool"""
2719 return _controls_
.ToggleButton_GetValue(*args
, **kwargs
)
2721 def GetClassDefaultAttributes(*args
, **kwargs
):
2723 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2725 Get the default attributes for this class. This is useful if you want
2726 to use the same font or colour in your own control as in a standard
2727 control -- which is a much better idea than hard coding specific
2728 colours or fonts which might look completely out of place on the
2729 user's system, especially if it uses themes.
2731 The variant parameter is only relevant under Mac currently and is
2732 ignore under other platforms. Under Mac, it will change the size of
2733 the returned font. See `wx.Window.SetWindowVariant` for more about
2736 return _controls_
.ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
)
2738 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2739 _controls_
.ToggleButton_swigregister(ToggleButton
)
2740 ToggleButtonNameStr
= cvar
.ToggleButtonNameStr
2742 def PreToggleButton(*args
, **kwargs
):
2743 """PreToggleButton() -> ToggleButton"""
2744 val
= _controls_
.new_PreToggleButton(*args
, **kwargs
)
2747 def ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
):
2749 ToggleButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2751 Get the default attributes for this class. This is useful if you want
2752 to use the same font or colour in your own control as in a standard
2753 control -- which is a much better idea than hard coding specific
2754 colours or fonts which might look completely out of place on the
2755 user's system, especially if it uses themes.
2757 The variant parameter is only relevant under Mac currently and is
2758 ignore under other platforms. Under Mac, it will change the size of
2759 the returned font. See `wx.Window.SetWindowVariant` for more about
2762 return _controls_
.ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
)
2764 #---------------------------------------------------------------------------
2766 BK_DEFAULT
= _controls_
.BK_DEFAULT
2767 BK_TOP
= _controls_
.BK_TOP
2768 BK_BOTTOM
= _controls_
.BK_BOTTOM
2769 BK_LEFT
= _controls_
.BK_LEFT
2770 BK_RIGHT
= _controls_
.BK_RIGHT
2771 BK_ALIGN_MASK
= _controls_
.BK_ALIGN_MASK
2772 BK_BUTTONBAR
= _controls_
.BK_BUTTONBAR
2773 BK_HITTEST_NOWHERE
= _controls_
.BK_HITTEST_NOWHERE
2774 BK_HITTEST_ONICON
= _controls_
.BK_HITTEST_ONICON
2775 BK_HITTEST_ONLABEL
= _controls_
.BK_HITTEST_ONLABEL
2776 BK_HITTEST_ONITEM
= _controls_
.BK_HITTEST_ONITEM
2777 BK_HITTEST_ONPAGE
= _controls_
.BK_HITTEST_ONPAGE
2778 class BookCtrlBase(_core
.Control
):
2779 """Proxy of C++ BookCtrlBase class"""
2780 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2781 def __init__(self
): raise AttributeError, "No constructor defined"
2782 __repr__
= _swig_repr
2783 def GetPageCount(*args
, **kwargs
):
2784 """GetPageCount(self) -> size_t"""
2785 return _controls_
.BookCtrlBase_GetPageCount(*args
, **kwargs
)
2787 def GetPage(*args
, **kwargs
):
2788 """GetPage(self, size_t n) -> Window"""
2789 return _controls_
.BookCtrlBase_GetPage(*args
, **kwargs
)
2791 def GetCurrentPage(*args
, **kwargs
):
2792 """GetCurrentPage(self) -> Window"""
2793 return _controls_
.BookCtrlBase_GetCurrentPage(*args
, **kwargs
)
2795 def GetSelection(*args
, **kwargs
):
2796 """GetSelection(self) -> int"""
2797 return _controls_
.BookCtrlBase_GetSelection(*args
, **kwargs
)
2799 def SetPageText(*args
, **kwargs
):
2800 """SetPageText(self, size_t n, String strText) -> bool"""
2801 return _controls_
.BookCtrlBase_SetPageText(*args
, **kwargs
)
2803 def GetPageText(*args
, **kwargs
):
2804 """GetPageText(self, size_t n) -> String"""
2805 return _controls_
.BookCtrlBase_GetPageText(*args
, **kwargs
)
2807 def SetImageList(*args
, **kwargs
):
2808 """SetImageList(self, ImageList imageList)"""
2809 return _controls_
.BookCtrlBase_SetImageList(*args
, **kwargs
)
2811 def AssignImageList(*args
, **kwargs
):
2812 """AssignImageList(self, ImageList imageList)"""
2813 return _controls_
.BookCtrlBase_AssignImageList(*args
, **kwargs
)
2815 def GetImageList(*args
, **kwargs
):
2816 """GetImageList(self) -> ImageList"""
2817 return _controls_
.BookCtrlBase_GetImageList(*args
, **kwargs
)
2819 def GetPageImage(*args
, **kwargs
):
2820 """GetPageImage(self, size_t n) -> int"""
2821 return _controls_
.BookCtrlBase_GetPageImage(*args
, **kwargs
)
2823 def SetPageImage(*args
, **kwargs
):
2824 """SetPageImage(self, size_t n, int imageId) -> bool"""
2825 return _controls_
.BookCtrlBase_SetPageImage(*args
, **kwargs
)
2827 def SetPageSize(*args
, **kwargs
):
2828 """SetPageSize(self, Size size)"""
2829 return _controls_
.BookCtrlBase_SetPageSize(*args
, **kwargs
)
2831 def CalcSizeFromPage(*args
, **kwargs
):
2832 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2833 return _controls_
.BookCtrlBase_CalcSizeFromPage(*args
, **kwargs
)
2835 def GetInternalBorder(*args
, **kwargs
):
2836 """GetInternalBorder(self) -> unsigned int"""
2837 return _controls_
.BookCtrlBase_GetInternalBorder(*args
, **kwargs
)
2839 def SetInternalBorder(*args
, **kwargs
):
2840 """SetInternalBorder(self, unsigned int internalBorder)"""
2841 return _controls_
.BookCtrlBase_SetInternalBorder(*args
, **kwargs
)
2843 def IsVertical(*args
, **kwargs
):
2844 """IsVertical(self) -> bool"""
2845 return _controls_
.BookCtrlBase_IsVertical(*args
, **kwargs
)
2847 def SetControlMargin(*args
, **kwargs
):
2848 """SetControlMargin(self, int margin)"""
2849 return _controls_
.BookCtrlBase_SetControlMargin(*args
, **kwargs
)
2851 def GetControlMargin(*args
, **kwargs
):
2852 """GetControlMargin(self) -> int"""
2853 return _controls_
.BookCtrlBase_GetControlMargin(*args
, **kwargs
)
2855 def SetFitToCurrentPage(*args
, **kwargs
):
2856 """SetFitToCurrentPage(self, bool fit)"""
2857 return _controls_
.BookCtrlBase_SetFitToCurrentPage(*args
, **kwargs
)
2859 def GetFitToCurrentPage(*args
, **kwargs
):
2860 """GetFitToCurrentPage(self) -> bool"""
2861 return _controls_
.BookCtrlBase_GetFitToCurrentPage(*args
, **kwargs
)
2863 def GetControlSizer(*args
, **kwargs
):
2864 """GetControlSizer(self) -> Sizer"""
2865 return _controls_
.BookCtrlBase_GetControlSizer(*args
, **kwargs
)
2867 def DeletePage(*args
, **kwargs
):
2868 """DeletePage(self, size_t n) -> bool"""
2869 return _controls_
.BookCtrlBase_DeletePage(*args
, **kwargs
)
2871 def RemovePage(*args
, **kwargs
):
2872 """RemovePage(self, size_t n) -> bool"""
2873 return _controls_
.BookCtrlBase_RemovePage(*args
, **kwargs
)
2875 def DeleteAllPages(*args
, **kwargs
):
2876 """DeleteAllPages(self) -> bool"""
2877 return _controls_
.BookCtrlBase_DeleteAllPages(*args
, **kwargs
)
2879 def AddPage(*args
, **kwargs
):
2880 """AddPage(self, Window page, String text, bool select=False, int imageId=-1) -> bool"""
2881 return _controls_
.BookCtrlBase_AddPage(*args
, **kwargs
)
2883 def InsertPage(*args
, **kwargs
):
2885 InsertPage(self, size_t n, Window page, String text, bool select=False,
2886 int imageId=-1) -> bool
2888 return _controls_
.BookCtrlBase_InsertPage(*args
, **kwargs
)
2890 def SetSelection(*args
, **kwargs
):
2891 """SetSelection(self, size_t n) -> int"""
2892 return _controls_
.BookCtrlBase_SetSelection(*args
, **kwargs
)
2894 def AdvanceSelection(*args
, **kwargs
):
2895 """AdvanceSelection(self, bool forward=True)"""
2896 return _controls_
.BookCtrlBase_AdvanceSelection(*args
, **kwargs
)
2898 def HitTest(*args
, **kwargs
):
2900 HitTest(Point pt) -> (tab, where)
2902 Returns the page/tab which is hit, and flags indicating where using
2903 wx.NB_HITTEST flags.
2905 return _controls_
.BookCtrlBase_HitTest(*args
, **kwargs
)
2907 def GetClassDefaultAttributes(*args
, **kwargs
):
2909 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2911 Get the default attributes for this class. This is useful if you want
2912 to use the same font or colour in your own control as in a standard
2913 control -- which is a much better idea than hard coding specific
2914 colours or fonts which might look completely out of place on the
2915 user's system, especially if it uses themes.
2917 The variant parameter is only relevant under Mac currently and is
2918 ignore under other platforms. Under Mac, it will change the size of
2919 the returned font. See `wx.Window.SetWindowVariant` for more about
2922 return _controls_
.BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
)
2924 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2925 ControlMargin
= property(GetControlMargin
,SetControlMargin
,doc
="See `GetControlMargin` and `SetControlMargin`")
2926 ControlSizer
= property(GetControlSizer
,doc
="See `GetControlSizer`")
2927 CurrentPage
= property(GetCurrentPage
,doc
="See `GetCurrentPage`")
2928 FitToCurrentPage
= property(GetFitToCurrentPage
,SetFitToCurrentPage
,doc
="See `GetFitToCurrentPage` and `SetFitToCurrentPage`")
2929 ImageList
= property(GetImageList
,SetImageList
,doc
="See `GetImageList` and `SetImageList`")
2930 InternalBorder
= property(GetInternalBorder
,SetInternalBorder
,doc
="See `GetInternalBorder` and `SetInternalBorder`")
2931 Page
= property(GetPage
,doc
="See `GetPage`")
2932 PageCount
= property(GetPageCount
,doc
="See `GetPageCount`")
2933 PageImage
= property(GetPageImage
,SetPageImage
,doc
="See `GetPageImage` and `SetPageImage`")
2934 PageText
= property(GetPageText
,SetPageText
,doc
="See `GetPageText` and `SetPageText`")
2935 Selection
= property(GetSelection
,SetSelection
,doc
="See `GetSelection` and `SetSelection`")
2936 _controls_
.BookCtrlBase_swigregister(BookCtrlBase
)
2937 NotebookNameStr
= cvar
.NotebookNameStr
2939 def BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
):
2941 BookCtrlBase_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2943 Get the default attributes for this class. This is useful if you want
2944 to use the same font or colour in your own control as in a standard
2945 control -- which is a much better idea than hard coding specific
2946 colours or fonts which might look completely out of place on the
2947 user's system, especially if it uses themes.
2949 The variant parameter is only relevant under Mac currently and is
2950 ignore under other platforms. Under Mac, it will change the size of
2951 the returned font. See `wx.Window.SetWindowVariant` for more about
2954 return _controls_
.BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
)
2956 class BookCtrlBaseEvent(_core
.NotifyEvent
):
2957 """Proxy of C++ BookCtrlBaseEvent class"""
2958 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2959 __repr__
= _swig_repr
2960 def __init__(self
, *args
, **kwargs
):
2962 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2963 int nOldSel=-1) -> BookCtrlBaseEvent
2965 _controls_
.BookCtrlBaseEvent_swiginit(self
,_controls_
.new_BookCtrlBaseEvent(*args
, **kwargs
))
2966 def GetSelection(*args
, **kwargs
):
2968 GetSelection(self) -> int
2970 Returns item index for a listbox or choice selection event (not valid
2973 return _controls_
.BookCtrlBaseEvent_GetSelection(*args
, **kwargs
)
2975 def SetSelection(*args
, **kwargs
):
2976 """SetSelection(self, int nSel)"""
2977 return _controls_
.BookCtrlBaseEvent_SetSelection(*args
, **kwargs
)
2979 def GetOldSelection(*args
, **kwargs
):
2980 """GetOldSelection(self) -> int"""
2981 return _controls_
.BookCtrlBaseEvent_GetOldSelection(*args
, **kwargs
)
2983 def SetOldSelection(*args
, **kwargs
):
2984 """SetOldSelection(self, int nOldSel)"""
2985 return _controls_
.BookCtrlBaseEvent_SetOldSelection(*args
, **kwargs
)
2987 OldSelection
= property(GetOldSelection
,SetOldSelection
,doc
="See `GetOldSelection` and `SetOldSelection`")
2988 Selection
= property(GetSelection
,SetSelection
,doc
="See `GetSelection` and `SetSelection`")
2989 _controls_
.BookCtrlBaseEvent_swigregister(BookCtrlBaseEvent
)
2991 #---------------------------------------------------------------------------
2993 NB_FIXEDWIDTH
= _controls_
.NB_FIXEDWIDTH
2994 NB_TOP
= _controls_
.NB_TOP
2995 NB_LEFT
= _controls_
.NB_LEFT
2996 NB_RIGHT
= _controls_
.NB_RIGHT
2997 NB_BOTTOM
= _controls_
.NB_BOTTOM
2998 NB_MULTILINE
= _controls_
.NB_MULTILINE
2999 NB_NOPAGETHEME
= _controls_
.NB_NOPAGETHEME
3000 NB_HITTEST_NOWHERE
= _controls_
.NB_HITTEST_NOWHERE
3001 NB_HITTEST_ONICON
= _controls_
.NB_HITTEST_ONICON
3002 NB_HITTEST_ONLABEL
= _controls_
.NB_HITTEST_ONLABEL
3003 NB_HITTEST_ONITEM
= _controls_
.NB_HITTEST_ONITEM
3004 NB_HITTEST_ONPAGE
= _controls_
.NB_HITTEST_ONPAGE
3005 class Notebook(BookCtrlBase
):
3006 """Proxy of C++ Notebook class"""
3007 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3008 __repr__
= _swig_repr
3009 def __init__(self
, *args
, **kwargs
):
3011 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3012 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> Notebook
3014 _controls_
.Notebook_swiginit(self
,_controls_
.new_Notebook(*args
, **kwargs
))
3015 self
._setOORInfo
(self
)
3017 def Create(*args
, **kwargs
):
3019 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3020 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> bool
3022 return _controls_
.Notebook_Create(*args
, **kwargs
)
3024 def GetRowCount(*args
, **kwargs
):
3025 """GetRowCount(self) -> int"""
3026 return _controls_
.Notebook_GetRowCount(*args
, **kwargs
)
3028 def SetPadding(*args
, **kwargs
):
3029 """SetPadding(self, Size padding)"""
3030 return _controls_
.Notebook_SetPadding(*args
, **kwargs
)
3032 def SetTabSize(*args
, **kwargs
):
3033 """SetTabSize(self, Size sz)"""
3034 return _controls_
.Notebook_SetTabSize(*args
, **kwargs
)
3036 def GetThemeBackgroundColour(*args
, **kwargs
):
3037 """GetThemeBackgroundColour(self) -> Colour"""
3038 return _controls_
.Notebook_GetThemeBackgroundColour(*args
, **kwargs
)
3040 def GetClassDefaultAttributes(*args
, **kwargs
):
3042 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3044 Get the default attributes for this class. This is useful if you want
3045 to use the same font or colour in your own control as in a standard
3046 control -- which is a much better idea than hard coding specific
3047 colours or fonts which might look completely out of place on the
3048 user's system, especially if it uses themes.
3050 The variant parameter is only relevant under Mac currently and is
3051 ignore under other platforms. Under Mac, it will change the size of
3052 the returned font. See `wx.Window.SetWindowVariant` for more about
3055 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
3057 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3058 _controls_
.Notebook_swigregister(Notebook
)
3060 def PreNotebook(*args
, **kwargs
):
3061 """PreNotebook() -> Notebook"""
3062 val
= _controls_
.new_PreNotebook(*args
, **kwargs
)
3065 def Notebook_GetClassDefaultAttributes(*args
, **kwargs
):
3067 Notebook_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3069 Get the default attributes for this class. This is useful if you want
3070 to use the same font or colour in your own control as in a standard
3071 control -- which is a much better idea than hard coding specific
3072 colours or fonts which might look completely out of place on the
3073 user's system, especially if it uses themes.
3075 The variant parameter is only relevant under Mac currently and is
3076 ignore under other platforms. Under Mac, it will change the size of
3077 the returned font. See `wx.Window.SetWindowVariant` for more about
3080 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
3082 class NotebookEvent(BookCtrlBaseEvent
):
3083 """Proxy of C++ NotebookEvent class"""
3084 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3085 __repr__
= _swig_repr
3086 def __init__(self
, *args
, **kwargs
):
3088 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3089 int nOldSel=-1) -> NotebookEvent
3091 _controls_
.NotebookEvent_swiginit(self
,_controls_
.new_NotebookEvent(*args
, **kwargs
))
3092 _controls_
.NotebookEvent_swigregister(NotebookEvent
)
3094 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
3095 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
3097 EVT_NOTEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, 1 )
3098 EVT_NOTEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, 1 )
3100 #----------------------------------------------------------------------------
3102 class NotebookPage(wx
.Panel
):
3104 There is an old (and apparently unsolvable) bug when placing a
3105 window with a nonstandard background colour in a wx.Notebook on
3106 wxGTK1, as the notbooks's background colour would always be used
3107 when the window is refreshed. The solution is to place a panel in
3108 the notbook and the coloured window on the panel, sized to cover
3109 the panel. This simple class does that for you, just put an
3110 instance of this in the notebook and make your regular window a
3111 child of this one and it will handle the resize for you.
3113 def __init__(self
, parent
, id=-1,
3114 pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
,
3115 style
=wx
.TAB_TRAVERSAL
, name
="panel"):
3116 wx
.Panel
.__init
__(self
, parent
, id, pos
, size
, style
, name
)
3118 self
.Bind(wx
.EVT_SIZE
, self
.OnSize
)
3120 def OnSize(self
, evt
):
3121 if self
.child
is None:
3122 children
= self
.GetChildren()
3124 self
.child
= children
[0]
3126 self
.child
.SetPosition((0,0))
3127 self
.child
.SetSize(self
.GetSize())
3130 #---------------------------------------------------------------------------
3132 LB_DEFAULT
= _controls_
.LB_DEFAULT
3133 LB_TOP
= _controls_
.LB_TOP
3134 LB_BOTTOM
= _controls_
.LB_BOTTOM
3135 LB_LEFT
= _controls_
.LB_LEFT
3136 LB_RIGHT
= _controls_
.LB_RIGHT
3137 LB_ALIGN_MASK
= _controls_
.LB_ALIGN_MASK
3138 class Listbook(BookCtrlBase
):
3139 """Proxy of C++ Listbook class"""
3140 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3141 __repr__
= _swig_repr
3142 def __init__(self
, *args
, **kwargs
):
3144 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3145 Size size=DefaultSize, long style=0, String name=EmptyString) -> Listbook
3147 _controls_
.Listbook_swiginit(self
,_controls_
.new_Listbook(*args
, **kwargs
))
3148 self
._setOORInfo
(self
)
3150 def Create(*args
, **kwargs
):
3152 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3153 Size size=DefaultSize, long style=0, String name=EmptyString) -> bool
3155 return _controls_
.Listbook_Create(*args
, **kwargs
)
3157 def GetListView(*args
, **kwargs
):
3158 """GetListView(self) -> ListView"""
3159 return _controls_
.Listbook_GetListView(*args
, **kwargs
)
3161 _controls_
.Listbook_swigregister(Listbook
)
3163 def PreListbook(*args
, **kwargs
):
3164 """PreListbook() -> Listbook"""
3165 val
= _controls_
.new_PreListbook(*args
, **kwargs
)
3168 class ListbookEvent(BookCtrlBaseEvent
):
3169 """Proxy of C++ ListbookEvent class"""
3170 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3171 __repr__
= _swig_repr
3172 def __init__(self
, *args
, **kwargs
):
3174 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3175 int nOldSel=-1) -> ListbookEvent
3177 _controls_
.ListbookEvent_swiginit(self
,_controls_
.new_ListbookEvent(*args
, **kwargs
))
3178 _controls_
.ListbookEvent_swigregister(ListbookEvent
)
3180 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
3181 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
3182 EVT_LISTBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
, 1 )
3183 EVT_LISTBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
, 1 )
3185 CHB_DEFAULT
= _controls_
.CHB_DEFAULT
3186 CHB_TOP
= _controls_
.CHB_TOP
3187 CHB_BOTTOM
= _controls_
.CHB_BOTTOM
3188 CHB_LEFT
= _controls_
.CHB_LEFT
3189 CHB_RIGHT
= _controls_
.CHB_RIGHT
3190 CHB_ALIGN_MASK
= _controls_
.CHB_ALIGN_MASK
3191 class Choicebook(BookCtrlBase
):
3192 """Proxy of C++ Choicebook class"""
3193 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3194 __repr__
= _swig_repr
3195 def __init__(self
, *args
, **kwargs
):
3197 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3198 long style=0, String name=EmptyString) -> Choicebook
3200 _controls_
.Choicebook_swiginit(self
,_controls_
.new_Choicebook(*args
, **kwargs
))
3201 self
._setOORInfo
(self
)
3203 def Create(*args
, **kwargs
):
3205 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3206 long style=0, String name=EmptyString) -> bool
3208 return _controls_
.Choicebook_Create(*args
, **kwargs
)
3210 def GetChoiceCtrl(*args
, **kwargs
):
3211 """GetChoiceCtrl(self) -> Choice"""
3212 return _controls_
.Choicebook_GetChoiceCtrl(*args
, **kwargs
)
3214 ChoiceCtrl
= property(GetChoiceCtrl
,doc
="See `GetChoiceCtrl`")
3215 _controls_
.Choicebook_swigregister(Choicebook
)
3217 def PreChoicebook(*args
, **kwargs
):
3218 """PreChoicebook() -> Choicebook"""
3219 val
= _controls_
.new_PreChoicebook(*args
, **kwargs
)
3222 class ChoicebookEvent(BookCtrlBaseEvent
):
3223 """Proxy of C++ ChoicebookEvent class"""
3224 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3225 __repr__
= _swig_repr
3226 def __init__(self
, *args
, **kwargs
):
3228 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3229 int nOldSel=-1) -> ChoicebookEvent
3231 _controls_
.ChoicebookEvent_swiginit(self
,_controls_
.new_ChoicebookEvent(*args
, **kwargs
))
3232 _controls_
.ChoicebookEvent_swigregister(ChoicebookEvent
)
3234 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
3235 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
3236 EVT_CHOICEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
, 1 )
3237 EVT_CHOICEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
, 1 )
3239 #---------------------------------------------------------------------------
3241 class Treebook(BookCtrlBase
):
3242 """Proxy of C++ Treebook class"""
3243 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3244 __repr__
= _swig_repr
3245 def __init__(self
, *args
, **kwargs
):
3247 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3248 long style=BK_DEFAULT,
3249 String name=EmptyString) -> Treebook
3251 _controls_
.Treebook_swiginit(self
,_controls_
.new_Treebook(*args
, **kwargs
))
3252 self
._setOORInfo
(self
)
3254 def Create(*args
, **kwargs
):
3256 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3257 long style=BK_DEFAULT,
3258 String name=EmptyString) -> bool
3260 return _controls_
.Treebook_Create(*args
, **kwargs
)
3262 def InsertSubPage(*args
, **kwargs
):
3264 InsertSubPage(self, size_t pos, Window page, String text, bool select=False,
3265 int imageId=NOT_FOUND) -> bool
3267 return _controls_
.Treebook_InsertSubPage(*args
, **kwargs
)
3269 def AddSubPage(*args
, **kwargs
):
3270 """AddSubPage(self, Window page, String text, bool select=False, int imageId=NOT_FOUND) -> bool"""
3271 return _controls_
.Treebook_AddSubPage(*args
, **kwargs
)
3273 def IsNodeExpanded(*args
, **kwargs
):
3274 """IsNodeExpanded(self, size_t pos) -> bool"""
3275 return _controls_
.Treebook_IsNodeExpanded(*args
, **kwargs
)
3277 def ExpandNode(*args
, **kwargs
):
3278 """ExpandNode(self, size_t pos, bool expand=True) -> bool"""
3279 return _controls_
.Treebook_ExpandNode(*args
, **kwargs
)
3281 def CollapseNode(*args
, **kwargs
):
3282 """CollapseNode(self, size_t pos) -> bool"""
3283 return _controls_
.Treebook_CollapseNode(*args
, **kwargs
)
3285 def GetPageParent(*args
, **kwargs
):
3286 """GetPageParent(self, size_t pos) -> int"""
3287 return _controls_
.Treebook_GetPageParent(*args
, **kwargs
)
3289 def GetTreeCtrl(*args
, **kwargs
):
3290 """GetTreeCtrl(self) -> TreeCtrl"""
3291 return _controls_
.Treebook_GetTreeCtrl(*args
, **kwargs
)
3293 _controls_
.Treebook_swigregister(Treebook
)
3295 def PreTreebook(*args
, **kwargs
):
3296 """PreTreebook() -> Treebook"""
3297 val
= _controls_
.new_PreTreebook(*args
, **kwargs
)
3300 class TreebookEvent(BookCtrlBaseEvent
):
3301 """Proxy of C++ TreebookEvent class"""
3302 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3303 __repr__
= _swig_repr
3304 def __init__(self
, *args
, **kwargs
):
3306 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=NOT_FOUND,
3307 int nOldSel=NOT_FOUND) -> TreebookEvent
3309 _controls_
.TreebookEvent_swiginit(self
,_controls_
.new_TreebookEvent(*args
, **kwargs
))
3310 _controls_
.TreebookEvent_swigregister(TreebookEvent
)
3312 wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
3313 wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
3314 wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
3315 wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
= _controls_
.wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
3316 EVT_TREEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
, 1 )
3317 EVT_TREEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
, 1)
3318 EVT_TREEBOOK_NODE_COLLAPSED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
, 1 )
3319 EVT_TREEBOOK_NODE_EXPANDED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
, 1 )
3321 #---------------------------------------------------------------------------
3323 class Toolbook(BookCtrlBase
):
3324 """Proxy of C++ Toolbook class"""
3325 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3326 __repr__
= _swig_repr
3327 def __init__(self
, *args
, **kwargs
):
3329 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3330 long style=BK_DEFAULT,
3331 String name=EmptyString) -> Toolbook
3333 _controls_
.Toolbook_swiginit(self
,_controls_
.new_Toolbook(*args
, **kwargs
))
3334 self
._setOORInfo
(self
)
3336 def Create(*args
, **kwargs
):
3338 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3339 long style=0, String name=wxEmptyString) -> bool
3341 return _controls_
.Toolbook_Create(*args
, **kwargs
)
3343 def GetToolBar(*args
, **kwargs
):
3344 """GetToolBar(self) -> ToolBarBase"""
3345 return _controls_
.Toolbook_GetToolBar(*args
, **kwargs
)
3347 def Realize(*args
, **kwargs
):
3349 return _controls_
.Toolbook_Realize(*args
, **kwargs
)
3351 _controls_
.Toolbook_swigregister(Toolbook
)
3353 def PreToolbook(*args
, **kwargs
):
3354 """PreToolbook() -> Toolbook"""
3355 val
= _controls_
.new_PreToolbook(*args
, **kwargs
)
3358 class ToolbookEvent(BookCtrlBaseEvent
):
3359 """Proxy of C++ ToolbookEvent class"""
3360 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3361 __repr__
= _swig_repr
3362 def __init__(self
, *args
, **kwargs
):
3364 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=NOT_FOUND,
3365 int nOldSel=NOT_FOUND) -> ToolbookEvent
3367 _controls_
.ToolbookEvent_swiginit(self
,_controls_
.new_ToolbookEvent(*args
, **kwargs
))
3368 _controls_
.ToolbookEvent_swigregister(ToolbookEvent
)
3370 wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
3371 wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
3372 EVT_TOOLBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
, 1)
3373 EVT_TOOLBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
, 1)
3375 #---------------------------------------------------------------------------
3377 TOOL_STYLE_BUTTON
= _controls_
.TOOL_STYLE_BUTTON
3378 TOOL_STYLE_SEPARATOR
= _controls_
.TOOL_STYLE_SEPARATOR
3379 TOOL_STYLE_CONTROL
= _controls_
.TOOL_STYLE_CONTROL
3380 TB_HORIZONTAL
= _controls_
.TB_HORIZONTAL
3381 TB_VERTICAL
= _controls_
.TB_VERTICAL
3382 TB_3DBUTTONS
= _controls_
.TB_3DBUTTONS
3383 TB_FLAT
= _controls_
.TB_FLAT
3384 TB_DOCKABLE
= _controls_
.TB_DOCKABLE
3385 TB_NOICONS
= _controls_
.TB_NOICONS
3386 TB_TEXT
= _controls_
.TB_TEXT
3387 TB_NODIVIDER
= _controls_
.TB_NODIVIDER
3388 TB_NOALIGN
= _controls_
.TB_NOALIGN
3389 TB_HORZ_LAYOUT
= _controls_
.TB_HORZ_LAYOUT
3390 TB_HORZ_TEXT
= _controls_
.TB_HORZ_TEXT
3391 TB_NO_TOOLTIPS
= _controls_
.TB_NO_TOOLTIPS
3392 class ToolBarToolBase(_core
.Object
):
3393 """Proxy of C++ ToolBarToolBase class"""
3394 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3395 def __init__(self
): raise AttributeError, "No constructor defined"
3396 __repr__
= _swig_repr
3397 def GetId(*args
, **kwargs
):
3398 """GetId(self) -> int"""
3399 return _controls_
.ToolBarToolBase_GetId(*args
, **kwargs
)
3401 def GetControl(*args
, **kwargs
):
3402 """GetControl(self) -> Control"""
3403 return _controls_
.ToolBarToolBase_GetControl(*args
, **kwargs
)
3405 def GetToolBar(*args
, **kwargs
):
3406 """GetToolBar(self) -> ToolBarBase"""
3407 return _controls_
.ToolBarToolBase_GetToolBar(*args
, **kwargs
)
3409 def IsButton(*args
, **kwargs
):
3410 """IsButton(self) -> int"""
3411 return _controls_
.ToolBarToolBase_IsButton(*args
, **kwargs
)
3413 def IsControl(*args
, **kwargs
):
3414 """IsControl(self) -> int"""
3415 return _controls_
.ToolBarToolBase_IsControl(*args
, **kwargs
)
3417 def IsSeparator(*args
, **kwargs
):
3418 """IsSeparator(self) -> int"""
3419 return _controls_
.ToolBarToolBase_IsSeparator(*args
, **kwargs
)
3421 def GetStyle(*args
, **kwargs
):
3422 """GetStyle(self) -> int"""
3423 return _controls_
.ToolBarToolBase_GetStyle(*args
, **kwargs
)
3425 def GetKind(*args
, **kwargs
):
3426 """GetKind(self) -> int"""
3427 return _controls_
.ToolBarToolBase_GetKind(*args
, **kwargs
)
3429 def IsEnabled(*args
, **kwargs
):
3430 """IsEnabled(self) -> bool"""
3431 return _controls_
.ToolBarToolBase_IsEnabled(*args
, **kwargs
)
3433 def IsToggled(*args
, **kwargs
):
3434 """IsToggled(self) -> bool"""
3435 return _controls_
.ToolBarToolBase_IsToggled(*args
, **kwargs
)
3437 def CanBeToggled(*args
, **kwargs
):
3438 """CanBeToggled(self) -> bool"""
3439 return _controls_
.ToolBarToolBase_CanBeToggled(*args
, **kwargs
)
3441 def GetNormalBitmap(*args
, **kwargs
):
3442 """GetNormalBitmap(self) -> Bitmap"""
3443 return _controls_
.ToolBarToolBase_GetNormalBitmap(*args
, **kwargs
)
3445 def GetDisabledBitmap(*args
, **kwargs
):
3446 """GetDisabledBitmap(self) -> Bitmap"""
3447 return _controls_
.ToolBarToolBase_GetDisabledBitmap(*args
, **kwargs
)
3449 def GetBitmap(*args
, **kwargs
):
3450 """GetBitmap(self) -> Bitmap"""
3451 return _controls_
.ToolBarToolBase_GetBitmap(*args
, **kwargs
)
3453 def GetLabel(*args
, **kwargs
):
3454 """GetLabel(self) -> String"""
3455 return _controls_
.ToolBarToolBase_GetLabel(*args
, **kwargs
)
3457 def GetShortHelp(*args
, **kwargs
):
3458 """GetShortHelp(self) -> String"""
3459 return _controls_
.ToolBarToolBase_GetShortHelp(*args
, **kwargs
)
3461 def GetLongHelp(*args
, **kwargs
):
3462 """GetLongHelp(self) -> String"""
3463 return _controls_
.ToolBarToolBase_GetLongHelp(*args
, **kwargs
)
3465 def Enable(*args
, **kwargs
):
3466 """Enable(self, bool enable) -> bool"""
3467 return _controls_
.ToolBarToolBase_Enable(*args
, **kwargs
)
3469 def Toggle(*args
, **kwargs
):
3471 return _controls_
.ToolBarToolBase_Toggle(*args
, **kwargs
)
3473 def SetToggle(*args
, **kwargs
):
3474 """SetToggle(self, bool toggle) -> bool"""
3475 return _controls_
.ToolBarToolBase_SetToggle(*args
, **kwargs
)
3477 def SetShortHelp(*args
, **kwargs
):
3478 """SetShortHelp(self, String help) -> bool"""
3479 return _controls_
.ToolBarToolBase_SetShortHelp(*args
, **kwargs
)
3481 def SetLongHelp(*args
, **kwargs
):
3482 """SetLongHelp(self, String help) -> bool"""
3483 return _controls_
.ToolBarToolBase_SetLongHelp(*args
, **kwargs
)
3485 def SetNormalBitmap(*args
, **kwargs
):
3486 """SetNormalBitmap(self, Bitmap bmp)"""
3487 return _controls_
.ToolBarToolBase_SetNormalBitmap(*args
, **kwargs
)
3489 def SetDisabledBitmap(*args
, **kwargs
):
3490 """SetDisabledBitmap(self, Bitmap bmp)"""
3491 return _controls_
.ToolBarToolBase_SetDisabledBitmap(*args
, **kwargs
)
3493 def SetLabel(*args
, **kwargs
):
3494 """SetLabel(self, String label)"""
3495 return _controls_
.ToolBarToolBase_SetLabel(*args
, **kwargs
)
3497 def Detach(*args
, **kwargs
):
3499 return _controls_
.ToolBarToolBase_Detach(*args
, **kwargs
)
3501 def Attach(*args
, **kwargs
):
3502 """Attach(self, ToolBarBase tbar)"""
3503 return _controls_
.ToolBarToolBase_Attach(*args
, **kwargs
)
3505 def GetClientData(*args
, **kwargs
):
3506 """GetClientData(self) -> PyObject"""
3507 return _controls_
.ToolBarToolBase_GetClientData(*args
, **kwargs
)
3509 def SetClientData(*args
, **kwargs
):
3510 """SetClientData(self, PyObject clientData)"""
3511 return _controls_
.ToolBarToolBase_SetClientData(*args
, **kwargs
)
3513 GetBitmap1
= GetNormalBitmap
3514 GetBitmap2
= GetDisabledBitmap
3515 SetBitmap1
= SetNormalBitmap
3516 SetBitmap2
= SetDisabledBitmap
3518 _controls_
.ToolBarToolBase_swigregister(ToolBarToolBase
)
3520 class ToolBarBase(_core
.Control
):
3521 """Proxy of C++ ToolBarBase class"""
3522 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3523 def __init__(self
): raise AttributeError, "No constructor defined"
3524 __repr__
= _swig_repr
3525 def DoAddTool(*args
, **kwargs
):
3527 DoAddTool(self, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3528 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
3529 String longHelp=EmptyString,
3530 PyObject clientData=None) -> ToolBarToolBase
3532 return _controls_
.ToolBarBase_DoAddTool(*args
, **kwargs
)
3534 def DoInsertTool(*args
, **kwargs
):
3536 DoInsertTool(self, size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3537 int kind=ITEM_NORMAL,
3538 String shortHelp=EmptyString, String longHelp=EmptyString,
3539 PyObject clientData=None) -> ToolBarToolBase
3541 return _controls_
.ToolBarBase_DoInsertTool(*args
, **kwargs
)
3543 # These match the original Add methods for this class, kept for
3544 # backwards compatibility with versions < 2.3.3.
3547 def AddTool(self
, id, bitmap
,
3548 pushedBitmap
= wx
.NullBitmap
,
3551 shortHelpString
= '',
3552 longHelpString
= '') :
3553 '''Old style method to add a tool to the toolbar.'''
3554 kind
= wx
.ITEM_NORMAL
3555 if isToggle
: kind
= wx
.ITEM_CHECK
3556 return self
.DoAddTool(id, '', bitmap
, pushedBitmap
, kind
,
3557 shortHelpString
, longHelpString
, clientData
)
3559 def AddSimpleTool(self
, id, bitmap
,
3560 shortHelpString
= '',
3561 longHelpString
= '',
3563 '''Old style method to add a tool to the toolbar.'''
3564 kind
= wx
.ITEM_NORMAL
3565 if isToggle
: kind
= wx
.ITEM_CHECK
3566 return self
.DoAddTool(id, '', bitmap
, wx
.NullBitmap
, kind
,
3567 shortHelpString
, longHelpString
, None)
3569 def InsertTool(self
, pos
, id, bitmap
,
3570 pushedBitmap
= wx
.NullBitmap
,
3573 shortHelpString
= '',
3574 longHelpString
= ''):
3575 '''Old style method to insert a tool in the toolbar.'''
3576 kind
= wx
.ITEM_NORMAL
3577 if isToggle
: kind
= wx
.ITEM_CHECK
3578 return self
.DoInsertTool(pos
, id, '', bitmap
, pushedBitmap
, kind
,
3579 shortHelpString
, longHelpString
, clientData
)
3581 def InsertSimpleTool(self
, pos
, id, bitmap
,
3582 shortHelpString
= '',
3583 longHelpString
= '',
3585 '''Old style method to insert a tool in the toolbar.'''
3586 kind
= wx
.ITEM_NORMAL
3587 if isToggle
: kind
= wx
.ITEM_CHECK
3588 return self
.DoInsertTool(pos
, id, '', bitmap
, wx
.NullBitmap
, kind
,
3589 shortHelpString
, longHelpString
, None)
3592 # The following are the new toolbar Add methods starting with
3593 # 2.3.3. They are renamed to have 'Label' in the name so as to be
3594 # able to keep backwards compatibility with using the above
3595 # methods. Eventually these should migrate to be the methods used
3596 # primarily and lose the 'Label' in the name...
3598 def AddLabelTool(self
, id, label
, bitmap
,
3599 bmpDisabled
= wx
.NullBitmap
,
3600 kind
= wx
.ITEM_NORMAL
,
3601 shortHelp
= '', longHelp
= '',
3604 The full AddTool() function.
3606 If bmpDisabled is wx.NullBitmap, a shadowed version of the normal bitmap
3607 is created and used as the disabled image.
3609 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, kind
,
3610 shortHelp
, longHelp
, clientData
)
3613 def InsertLabelTool(self
, pos
, id, label
, bitmap
,
3614 bmpDisabled
= wx
.NullBitmap
,
3615 kind
= wx
.ITEM_NORMAL
,
3616 shortHelp
= '', longHelp
= '',
3619 Insert the new tool at the given position, if pos == GetToolsCount(), it
3620 is equivalent to AddTool()
3622 return self
.DoInsertTool(pos
, id, label
, bitmap
, bmpDisabled
, kind
,
3623 shortHelp
, longHelp
, clientData
)
3625 def AddCheckLabelTool(self
, id, label
, bitmap
,
3626 bmpDisabled
= wx
.NullBitmap
,
3627 shortHelp
= '', longHelp
= '',
3629 '''Add a check tool, i.e. a tool which can be toggled'''
3630 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3631 shortHelp
, longHelp
, clientData
)
3633 def AddRadioLabelTool(self
, id, label
, bitmap
,
3634 bmpDisabled
= wx
.NullBitmap
,
3635 shortHelp
= '', longHelp
= '',
3638 Add a radio tool, i.e. a tool which can be toggled and releases any
3639 other toggled radio tools in the same group when it happens
3641 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3642 shortHelp
, longHelp
, clientData
)
3645 # For consistency with the backwards compatible methods above, here are
3646 # some non-'Label' versions of the Check and Radio methods
3648 def AddCheckTool(self
, id, bitmap
,
3649 bmpDisabled
= wx
.NullBitmap
,
3650 shortHelp
= '', longHelp
= '',
3652 '''Add a check tool, i.e. a tool which can be toggled'''
3653 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3654 shortHelp
, longHelp
, clientData
)
3656 def AddRadioTool(self
, id, bitmap
,
3657 bmpDisabled
= wx
.NullBitmap
,
3658 shortHelp
= '', longHelp
= '',
3661 Add a radio tool, i.e. a tool which can be toggled and releases any
3662 other toggled radio tools in the same group when it happens
3664 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3665 shortHelp
, longHelp
, clientData
)
3667 def AddToolItem(*args
, **kwargs
):
3668 """AddToolItem(self, ToolBarToolBase tool) -> ToolBarToolBase"""
3669 return _controls_
.ToolBarBase_AddToolItem(*args
, **kwargs
)
3671 def InsertToolItem(*args
, **kwargs
):
3672 """InsertToolItem(self, size_t pos, ToolBarToolBase tool) -> ToolBarToolBase"""
3673 return _controls_
.ToolBarBase_InsertToolItem(*args
, **kwargs
)
3675 def AddControl(*args
, **kwargs
):
3676 """AddControl(self, Control control) -> ToolBarToolBase"""
3677 return _controls_
.ToolBarBase_AddControl(*args
, **kwargs
)
3679 def InsertControl(*args
, **kwargs
):
3680 """InsertControl(self, size_t pos, Control control) -> ToolBarToolBase"""
3681 return _controls_
.ToolBarBase_InsertControl(*args
, **kwargs
)
3683 def FindControl(*args
, **kwargs
):
3684 """FindControl(self, int id) -> Control"""
3685 return _controls_
.ToolBarBase_FindControl(*args
, **kwargs
)
3687 def AddSeparator(*args
, **kwargs
):
3688 """AddSeparator(self) -> ToolBarToolBase"""
3689 return _controls_
.ToolBarBase_AddSeparator(*args
, **kwargs
)
3691 def InsertSeparator(*args
, **kwargs
):
3692 """InsertSeparator(self, size_t pos) -> ToolBarToolBase"""
3693 return _controls_
.ToolBarBase_InsertSeparator(*args
, **kwargs
)
3695 def RemoveTool(*args
, **kwargs
):
3696 """RemoveTool(self, int id) -> ToolBarToolBase"""
3697 return _controls_
.ToolBarBase_RemoveTool(*args
, **kwargs
)
3699 def DeleteToolByPos(*args
, **kwargs
):
3700 """DeleteToolByPos(self, size_t pos) -> bool"""
3701 return _controls_
.ToolBarBase_DeleteToolByPos(*args
, **kwargs
)
3703 def DeleteTool(*args
, **kwargs
):
3704 """DeleteTool(self, int id) -> bool"""
3705 return _controls_
.ToolBarBase_DeleteTool(*args
, **kwargs
)
3707 def ClearTools(*args
, **kwargs
):
3708 """ClearTools(self)"""
3709 return _controls_
.ToolBarBase_ClearTools(*args
, **kwargs
)
3711 def Realize(*args
, **kwargs
):
3712 """Realize(self) -> bool"""
3713 return _controls_
.ToolBarBase_Realize(*args
, **kwargs
)
3715 def EnableTool(*args
, **kwargs
):
3716 """EnableTool(self, int id, bool enable)"""
3717 return _controls_
.ToolBarBase_EnableTool(*args
, **kwargs
)
3719 def ToggleTool(*args
, **kwargs
):
3720 """ToggleTool(self, int id, bool toggle)"""
3721 return _controls_
.ToolBarBase_ToggleTool(*args
, **kwargs
)
3723 def SetToggle(*args
, **kwargs
):
3724 """SetToggle(self, int id, bool toggle)"""
3725 return _controls_
.ToolBarBase_SetToggle(*args
, **kwargs
)
3727 def GetToolClientData(*args
, **kwargs
):
3728 """GetToolClientData(self, int id) -> PyObject"""
3729 return _controls_
.ToolBarBase_GetToolClientData(*args
, **kwargs
)
3731 def SetToolClientData(*args
, **kwargs
):
3732 """SetToolClientData(self, int id, PyObject clientData)"""
3733 return _controls_
.ToolBarBase_SetToolClientData(*args
, **kwargs
)
3735 def GetToolPos(*args
, **kwargs
):
3736 """GetToolPos(self, int id) -> int"""
3737 return _controls_
.ToolBarBase_GetToolPos(*args
, **kwargs
)
3739 def GetToolState(*args
, **kwargs
):
3740 """GetToolState(self, int id) -> bool"""
3741 return _controls_
.ToolBarBase_GetToolState(*args
, **kwargs
)
3743 def GetToolEnabled(*args
, **kwargs
):
3744 """GetToolEnabled(self, int id) -> bool"""
3745 return _controls_
.ToolBarBase_GetToolEnabled(*args
, **kwargs
)
3747 def SetToolShortHelp(*args
, **kwargs
):
3748 """SetToolShortHelp(self, int id, String helpString)"""
3749 return _controls_
.ToolBarBase_SetToolShortHelp(*args
, **kwargs
)
3751 def GetToolShortHelp(*args
, **kwargs
):
3752 """GetToolShortHelp(self, int id) -> String"""
3753 return _controls_
.ToolBarBase_GetToolShortHelp(*args
, **kwargs
)
3755 def SetToolLongHelp(*args
, **kwargs
):
3756 """SetToolLongHelp(self, int id, String helpString)"""
3757 return _controls_
.ToolBarBase_SetToolLongHelp(*args
, **kwargs
)
3759 def GetToolLongHelp(*args
, **kwargs
):
3760 """GetToolLongHelp(self, int id) -> String"""
3761 return _controls_
.ToolBarBase_GetToolLongHelp(*args
, **kwargs
)
3763 def SetMarginsXY(*args
, **kwargs
):
3764 """SetMarginsXY(self, int x, int y)"""
3765 return _controls_
.ToolBarBase_SetMarginsXY(*args
, **kwargs
)
3767 def SetMargins(*args
, **kwargs
):
3768 """SetMargins(self, Size size)"""
3769 return _controls_
.ToolBarBase_SetMargins(*args
, **kwargs
)
3771 def SetToolPacking(*args
, **kwargs
):
3772 """SetToolPacking(self, int packing)"""
3773 return _controls_
.ToolBarBase_SetToolPacking(*args
, **kwargs
)
3775 def SetToolSeparation(*args
, **kwargs
):
3776 """SetToolSeparation(self, int separation)"""
3777 return _controls_
.ToolBarBase_SetToolSeparation(*args
, **kwargs
)
3779 def GetToolMargins(*args
, **kwargs
):
3780 """GetToolMargins(self) -> Size"""
3781 return _controls_
.ToolBarBase_GetToolMargins(*args
, **kwargs
)
3783 def GetMargins(*args
, **kwargs
):
3784 """GetMargins(self) -> Size"""
3785 return _controls_
.ToolBarBase_GetMargins(*args
, **kwargs
)
3787 def GetToolPacking(*args
, **kwargs
):
3788 """GetToolPacking(self) -> int"""
3789 return _controls_
.ToolBarBase_GetToolPacking(*args
, **kwargs
)
3791 def GetToolSeparation(*args
, **kwargs
):
3792 """GetToolSeparation(self) -> int"""
3793 return _controls_
.ToolBarBase_GetToolSeparation(*args
, **kwargs
)
3795 def SetRows(*args
, **kwargs
):
3796 """SetRows(self, int nRows)"""
3797 return _controls_
.ToolBarBase_SetRows(*args
, **kwargs
)
3799 def SetMaxRowsCols(*args
, **kwargs
):
3800 """SetMaxRowsCols(self, int rows, int cols)"""
3801 return _controls_
.ToolBarBase_SetMaxRowsCols(*args
, **kwargs
)
3803 def GetMaxRows(*args
, **kwargs
):
3804 """GetMaxRows(self) -> int"""
3805 return _controls_
.ToolBarBase_GetMaxRows(*args
, **kwargs
)
3807 def GetMaxCols(*args
, **kwargs
):
3808 """GetMaxCols(self) -> int"""
3809 return _controls_
.ToolBarBase_GetMaxCols(*args
, **kwargs
)
3811 def SetToolBitmapSize(*args
, **kwargs
):
3812 """SetToolBitmapSize(self, Size size)"""
3813 return _controls_
.ToolBarBase_SetToolBitmapSize(*args
, **kwargs
)
3815 def GetToolBitmapSize(*args
, **kwargs
):
3816 """GetToolBitmapSize(self) -> Size"""
3817 return _controls_
.ToolBarBase_GetToolBitmapSize(*args
, **kwargs
)
3819 def GetToolSize(*args
, **kwargs
):
3820 """GetToolSize(self) -> Size"""
3821 return _controls_
.ToolBarBase_GetToolSize(*args
, **kwargs
)
3823 def FindToolForPosition(*args
, **kwargs
):
3824 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3825 return _controls_
.ToolBarBase_FindToolForPosition(*args
, **kwargs
)
3827 def FindById(*args
, **kwargs
):
3828 """FindById(self, int toolid) -> ToolBarToolBase"""
3829 return _controls_
.ToolBarBase_FindById(*args
, **kwargs
)
3831 def IsVertical(*args
, **kwargs
):
3832 """IsVertical(self) -> bool"""
3833 return _controls_
.ToolBarBase_IsVertical(*args
, **kwargs
)
3835 def GetToolsCount(*args
, **kwargs
):
3836 """GetToolsCount(self) -> size_t"""
3837 return _controls_
.ToolBarBase_GetToolsCount(*args
, **kwargs
)
3839 _controls_
.ToolBarBase_swigregister(ToolBarBase
)
3841 class ToolBar(ToolBarBase
):
3842 """Proxy of C++ ToolBar class"""
3843 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3844 __repr__
= _swig_repr
3845 def __init__(self
, *args
, **kwargs
):
3847 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3848 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
3849 String name=wxPyToolBarNameStr) -> ToolBar
3851 _controls_
.ToolBar_swiginit(self
,_controls_
.new_ToolBar(*args
, **kwargs
))
3852 self
._setOORInfo
(self
)
3854 def Create(*args
, **kwargs
):
3856 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3857 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
3858 String name=wxPyToolBarNameStr) -> bool
3860 return _controls_
.ToolBar_Create(*args
, **kwargs
)
3862 def GetClassDefaultAttributes(*args
, **kwargs
):
3864 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3866 Get the default attributes for this class. This is useful if you want
3867 to use the same font or colour in your own control as in a standard
3868 control -- which is a much better idea than hard coding specific
3869 colours or fonts which might look completely out of place on the
3870 user's system, especially if it uses themes.
3872 The variant parameter is only relevant under Mac currently and is
3873 ignore under other platforms. Under Mac, it will change the size of
3874 the returned font. See `wx.Window.SetWindowVariant` for more about
3877 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
3879 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3880 _controls_
.ToolBar_swigregister(ToolBar
)
3882 def PreToolBar(*args
, **kwargs
):
3883 """PreToolBar() -> ToolBar"""
3884 val
= _controls_
.new_PreToolBar(*args
, **kwargs
)
3887 def ToolBar_GetClassDefaultAttributes(*args
, **kwargs
):
3889 ToolBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3891 Get the default attributes for this class. This is useful if you want
3892 to use the same font or colour in your own control as in a standard
3893 control -- which is a much better idea than hard coding specific
3894 colours or fonts which might look completely out of place on the
3895 user's system, especially if it uses themes.
3897 The variant parameter is only relevant under Mac currently and is
3898 ignore under other platforms. Under Mac, it will change the size of
3899 the returned font. See `wx.Window.SetWindowVariant` for more about
3902 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
3904 #---------------------------------------------------------------------------
3906 LC_VRULES
= _controls_
.LC_VRULES
3907 LC_HRULES
= _controls_
.LC_HRULES
3908 LC_ICON
= _controls_
.LC_ICON
3909 LC_SMALL_ICON
= _controls_
.LC_SMALL_ICON
3910 LC_LIST
= _controls_
.LC_LIST
3911 LC_REPORT
= _controls_
.LC_REPORT
3912 LC_ALIGN_TOP
= _controls_
.LC_ALIGN_TOP
3913 LC_ALIGN_LEFT
= _controls_
.LC_ALIGN_LEFT
3914 LC_AUTOARRANGE
= _controls_
.LC_AUTOARRANGE
3915 LC_VIRTUAL
= _controls_
.LC_VIRTUAL
3916 LC_EDIT_LABELS
= _controls_
.LC_EDIT_LABELS
3917 LC_NO_HEADER
= _controls_
.LC_NO_HEADER
3918 LC_NO_SORT_HEADER
= _controls_
.LC_NO_SORT_HEADER
3919 LC_SINGLE_SEL
= _controls_
.LC_SINGLE_SEL
3920 LC_SORT_ASCENDING
= _controls_
.LC_SORT_ASCENDING
3921 LC_SORT_DESCENDING
= _controls_
.LC_SORT_DESCENDING
3922 LC_MASK_TYPE
= _controls_
.LC_MASK_TYPE
3923 LC_MASK_ALIGN
= _controls_
.LC_MASK_ALIGN
3924 LC_MASK_SORT
= _controls_
.LC_MASK_SORT
3925 LIST_MASK_STATE
= _controls_
.LIST_MASK_STATE
3926 LIST_MASK_TEXT
= _controls_
.LIST_MASK_TEXT
3927 LIST_MASK_IMAGE
= _controls_
.LIST_MASK_IMAGE
3928 LIST_MASK_DATA
= _controls_
.LIST_MASK_DATA
3929 LIST_SET_ITEM
= _controls_
.LIST_SET_ITEM
3930 LIST_MASK_WIDTH
= _controls_
.LIST_MASK_WIDTH
3931 LIST_MASK_FORMAT
= _controls_
.LIST_MASK_FORMAT
3932 LIST_STATE_DONTCARE
= _controls_
.LIST_STATE_DONTCARE
3933 LIST_STATE_DROPHILITED
= _controls_
.LIST_STATE_DROPHILITED
3934 LIST_STATE_FOCUSED
= _controls_
.LIST_STATE_FOCUSED
3935 LIST_STATE_SELECTED
= _controls_
.LIST_STATE_SELECTED
3936 LIST_STATE_CUT
= _controls_
.LIST_STATE_CUT
3937 LIST_STATE_DISABLED
= _controls_
.LIST_STATE_DISABLED
3938 LIST_STATE_FILTERED
= _controls_
.LIST_STATE_FILTERED
3939 LIST_STATE_INUSE
= _controls_
.LIST_STATE_INUSE
3940 LIST_STATE_PICKED
= _controls_
.LIST_STATE_PICKED
3941 LIST_STATE_SOURCE
= _controls_
.LIST_STATE_SOURCE
3942 LIST_HITTEST_ABOVE
= _controls_
.LIST_HITTEST_ABOVE
3943 LIST_HITTEST_BELOW
= _controls_
.LIST_HITTEST_BELOW
3944 LIST_HITTEST_NOWHERE
= _controls_
.LIST_HITTEST_NOWHERE
3945 LIST_HITTEST_ONITEMICON
= _controls_
.LIST_HITTEST_ONITEMICON
3946 LIST_HITTEST_ONITEMLABEL
= _controls_
.LIST_HITTEST_ONITEMLABEL
3947 LIST_HITTEST_ONITEMRIGHT
= _controls_
.LIST_HITTEST_ONITEMRIGHT
3948 LIST_HITTEST_ONITEMSTATEICON
= _controls_
.LIST_HITTEST_ONITEMSTATEICON
3949 LIST_HITTEST_TOLEFT
= _controls_
.LIST_HITTEST_TOLEFT
3950 LIST_HITTEST_TORIGHT
= _controls_
.LIST_HITTEST_TORIGHT
3951 LIST_HITTEST_ONITEM
= _controls_
.LIST_HITTEST_ONITEM
3952 LIST_GETSUBITEMRECT_WHOLEITEM
= _controls_
.LIST_GETSUBITEMRECT_WHOLEITEM
3953 LIST_NEXT_ABOVE
= _controls_
.LIST_NEXT_ABOVE
3954 LIST_NEXT_ALL
= _controls_
.LIST_NEXT_ALL
3955 LIST_NEXT_BELOW
= _controls_
.LIST_NEXT_BELOW
3956 LIST_NEXT_LEFT
= _controls_
.LIST_NEXT_LEFT
3957 LIST_NEXT_RIGHT
= _controls_
.LIST_NEXT_RIGHT
3958 LIST_ALIGN_DEFAULT
= _controls_
.LIST_ALIGN_DEFAULT
3959 LIST_ALIGN_LEFT
= _controls_
.LIST_ALIGN_LEFT
3960 LIST_ALIGN_TOP
= _controls_
.LIST_ALIGN_TOP
3961 LIST_ALIGN_SNAP_TO_GRID
= _controls_
.LIST_ALIGN_SNAP_TO_GRID
3962 LIST_FORMAT_LEFT
= _controls_
.LIST_FORMAT_LEFT
3963 LIST_FORMAT_RIGHT
= _controls_
.LIST_FORMAT_RIGHT
3964 LIST_FORMAT_CENTRE
= _controls_
.LIST_FORMAT_CENTRE
3965 LIST_FORMAT_CENTER
= _controls_
.LIST_FORMAT_CENTER
3966 LIST_AUTOSIZE
= _controls_
.LIST_AUTOSIZE
3967 LIST_AUTOSIZE_USEHEADER
= _controls_
.LIST_AUTOSIZE_USEHEADER
3968 LIST_RECT_BOUNDS
= _controls_
.LIST_RECT_BOUNDS
3969 LIST_RECT_ICON
= _controls_
.LIST_RECT_ICON
3970 LIST_RECT_LABEL
= _controls_
.LIST_RECT_LABEL
3971 LIST_FIND_UP
= _controls_
.LIST_FIND_UP
3972 LIST_FIND_DOWN
= _controls_
.LIST_FIND_DOWN
3973 LIST_FIND_LEFT
= _controls_
.LIST_FIND_LEFT
3974 LIST_FIND_RIGHT
= _controls_
.LIST_FIND_RIGHT
3975 #---------------------------------------------------------------------------
3977 class ListItemAttr(object):
3978 """Proxy of C++ ListItemAttr class"""
3979 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3980 __repr__
= _swig_repr
3981 def __init__(self
, *args
, **kwargs
):
3983 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
3984 Font font=wxNullFont) -> ListItemAttr
3986 _controls_
.ListItemAttr_swiginit(self
,_controls_
.new_ListItemAttr(*args
, **kwargs
))
3987 __swig_destroy__
= _controls_
.delete_ListItemAttr
3988 __del__
= lambda self
: None;
3989 def SetTextColour(*args
, **kwargs
):
3990 """SetTextColour(self, Colour colText)"""
3991 return _controls_
.ListItemAttr_SetTextColour(*args
, **kwargs
)
3993 def SetBackgroundColour(*args
, **kwargs
):
3994 """SetBackgroundColour(self, Colour colBack)"""
3995 return _controls_
.ListItemAttr_SetBackgroundColour(*args
, **kwargs
)
3997 def SetFont(*args
, **kwargs
):
3998 """SetFont(self, Font font)"""
3999 return _controls_
.ListItemAttr_SetFont(*args
, **kwargs
)
4001 def HasTextColour(*args
, **kwargs
):
4002 """HasTextColour(self) -> bool"""
4003 return _controls_
.ListItemAttr_HasTextColour(*args
, **kwargs
)
4005 def HasBackgroundColour(*args
, **kwargs
):
4006 """HasBackgroundColour(self) -> bool"""
4007 return _controls_
.ListItemAttr_HasBackgroundColour(*args
, **kwargs
)
4009 def HasFont(*args
, **kwargs
):
4010 """HasFont(self) -> bool"""
4011 return _controls_
.ListItemAttr_HasFont(*args
, **kwargs
)
4013 def GetTextColour(*args
, **kwargs
):
4014 """GetTextColour(self) -> Colour"""
4015 return _controls_
.ListItemAttr_GetTextColour(*args
, **kwargs
)
4017 def GetBackgroundColour(*args
, **kwargs
):
4018 """GetBackgroundColour(self) -> Colour"""
4019 return _controls_
.ListItemAttr_GetBackgroundColour(*args
, **kwargs
)
4021 def GetFont(*args
, **kwargs
):
4022 """GetFont(self) -> Font"""
4023 return _controls_
.ListItemAttr_GetFont(*args
, **kwargs
)
4025 def AssignFrom(*args
, **kwargs
):
4026 """AssignFrom(self, ListItemAttr source)"""
4027 return _controls_
.ListItemAttr_AssignFrom(*args
, **kwargs
)
4029 def Destroy(*args
, **kwargs
):
4031 val
= _controls_
.ListItemAttr_Destroy(*args
, **kwargs
)
4035 _controls_
.ListItemAttr_swigregister(ListItemAttr
)
4036 ListCtrlNameStr
= cvar
.ListCtrlNameStr
4038 #---------------------------------------------------------------------------
4040 class ListItem(_core
.Object
):
4041 """Proxy of C++ ListItem class"""
4042 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4043 __repr__
= _swig_repr
4044 def __init__(self
, *args
, **kwargs
):
4045 """__init__(self) -> ListItem"""
4046 _controls_
.ListItem_swiginit(self
,_controls_
.new_ListItem(*args
, **kwargs
))
4047 __swig_destroy__
= _controls_
.delete_ListItem
4048 __del__
= lambda self
: None;
4049 def Clear(*args
, **kwargs
):
4051 return _controls_
.ListItem_Clear(*args
, **kwargs
)
4053 def ClearAttributes(*args
, **kwargs
):
4054 """ClearAttributes(self)"""
4055 return _controls_
.ListItem_ClearAttributes(*args
, **kwargs
)
4057 def SetMask(*args
, **kwargs
):
4058 """SetMask(self, long mask)"""
4059 return _controls_
.ListItem_SetMask(*args
, **kwargs
)
4061 def SetId(*args
, **kwargs
):
4062 """SetId(self, long id)"""
4063 return _controls_
.ListItem_SetId(*args
, **kwargs
)
4065 def SetColumn(*args
, **kwargs
):
4066 """SetColumn(self, int col)"""
4067 return _controls_
.ListItem_SetColumn(*args
, **kwargs
)
4069 def SetState(*args
, **kwargs
):
4070 """SetState(self, long state)"""
4071 return _controls_
.ListItem_SetState(*args
, **kwargs
)
4073 def SetStateMask(*args
, **kwargs
):
4074 """SetStateMask(self, long stateMask)"""
4075 return _controls_
.ListItem_SetStateMask(*args
, **kwargs
)
4077 def SetText(*args
, **kwargs
):
4078 """SetText(self, String text)"""
4079 return _controls_
.ListItem_SetText(*args
, **kwargs
)
4081 def SetImage(*args
, **kwargs
):
4082 """SetImage(self, int image)"""
4083 return _controls_
.ListItem_SetImage(*args
, **kwargs
)
4085 def SetData(*args
, **kwargs
):
4086 """SetData(self, long data)"""
4087 return _controls_
.ListItem_SetData(*args
, **kwargs
)
4089 def SetWidth(*args
, **kwargs
):
4090 """SetWidth(self, int width)"""
4091 return _controls_
.ListItem_SetWidth(*args
, **kwargs
)
4093 def SetAlign(*args
, **kwargs
):
4094 """SetAlign(self, int align)"""
4095 return _controls_
.ListItem_SetAlign(*args
, **kwargs
)
4097 def SetTextColour(*args
, **kwargs
):
4098 """SetTextColour(self, Colour colText)"""
4099 return _controls_
.ListItem_SetTextColour(*args
, **kwargs
)
4101 def SetBackgroundColour(*args
, **kwargs
):
4102 """SetBackgroundColour(self, Colour colBack)"""
4103 return _controls_
.ListItem_SetBackgroundColour(*args
, **kwargs
)
4105 def SetFont(*args
, **kwargs
):
4106 """SetFont(self, Font font)"""
4107 return _controls_
.ListItem_SetFont(*args
, **kwargs
)
4109 def GetMask(*args
, **kwargs
):
4110 """GetMask(self) -> long"""
4111 return _controls_
.ListItem_GetMask(*args
, **kwargs
)
4113 def GetId(*args
, **kwargs
):
4114 """GetId(self) -> long"""
4115 return _controls_
.ListItem_GetId(*args
, **kwargs
)
4117 def GetColumn(*args
, **kwargs
):
4118 """GetColumn(self) -> int"""
4119 return _controls_
.ListItem_GetColumn(*args
, **kwargs
)
4121 def GetState(*args
, **kwargs
):
4122 """GetState(self) -> long"""
4123 return _controls_
.ListItem_GetState(*args
, **kwargs
)
4125 def GetText(*args
, **kwargs
):
4126 """GetText(self) -> String"""
4127 return _controls_
.ListItem_GetText(*args
, **kwargs
)
4129 def GetImage(*args
, **kwargs
):
4130 """GetImage(self) -> int"""
4131 return _controls_
.ListItem_GetImage(*args
, **kwargs
)
4133 def GetData(*args
, **kwargs
):
4134 """GetData(self) -> long"""
4135 return _controls_
.ListItem_GetData(*args
, **kwargs
)
4137 def GetWidth(*args
, **kwargs
):
4138 """GetWidth(self) -> int"""
4139 return _controls_
.ListItem_GetWidth(*args
, **kwargs
)
4141 def GetAlign(*args
, **kwargs
):
4142 """GetAlign(self) -> int"""
4143 return _controls_
.ListItem_GetAlign(*args
, **kwargs
)
4145 def GetAttributes(*args
, **kwargs
):
4146 """GetAttributes(self) -> ListItemAttr"""
4147 return _controls_
.ListItem_GetAttributes(*args
, **kwargs
)
4149 def HasAttributes(*args
, **kwargs
):
4150 """HasAttributes(self) -> bool"""
4151 return _controls_
.ListItem_HasAttributes(*args
, **kwargs
)
4153 def GetTextColour(*args
, **kwargs
):
4154 """GetTextColour(self) -> Colour"""
4155 return _controls_
.ListItem_GetTextColour(*args
, **kwargs
)
4157 def GetBackgroundColour(*args
, **kwargs
):
4158 """GetBackgroundColour(self) -> Colour"""
4159 return _controls_
.ListItem_GetBackgroundColour(*args
, **kwargs
)
4161 def GetFont(*args
, **kwargs
):
4162 """GetFont(self) -> Font"""
4163 return _controls_
.ListItem_GetFont(*args
, **kwargs
)
4165 m_mask
= property(_controls_
.ListItem_m_mask_get
, _controls_
.ListItem_m_mask_set
)
4166 m_itemId
= property(_controls_
.ListItem_m_itemId_get
, _controls_
.ListItem_m_itemId_set
)
4167 m_col
= property(_controls_
.ListItem_m_col_get
, _controls_
.ListItem_m_col_set
)
4168 m_state
= property(_controls_
.ListItem_m_state_get
, _controls_
.ListItem_m_state_set
)
4169 m_stateMask
= property(_controls_
.ListItem_m_stateMask_get
, _controls_
.ListItem_m_stateMask_set
)
4170 m_text
= property(_controls_
.ListItem_m_text_get
, _controls_
.ListItem_m_text_set
)
4171 m_image
= property(_controls_
.ListItem_m_image_get
, _controls_
.ListItem_m_image_set
)
4172 m_data
= property(_controls_
.ListItem_m_data_get
, _controls_
.ListItem_m_data_set
)
4173 m_format
= property(_controls_
.ListItem_m_format_get
, _controls_
.ListItem_m_format_set
)
4174 m_width
= property(_controls_
.ListItem_m_width_get
, _controls_
.ListItem_m_width_set
)
4175 _controls_
.ListItem_swigregister(ListItem
)
4177 #---------------------------------------------------------------------------
4179 class ListEvent(_core
.NotifyEvent
):
4180 """Proxy of C++ ListEvent class"""
4181 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4182 __repr__
= _swig_repr
4183 def __init__(self
, *args
, **kwargs
):
4184 """__init__(self, EventType commandType=wxEVT_NULL, int id=0) -> ListEvent"""
4185 _controls_
.ListEvent_swiginit(self
,_controls_
.new_ListEvent(*args
, **kwargs
))
4186 m_code
= property(_controls_
.ListEvent_m_code_get
, _controls_
.ListEvent_m_code_set
)
4187 m_oldItemIndex
= property(_controls_
.ListEvent_m_oldItemIndex_get
, _controls_
.ListEvent_m_oldItemIndex_set
)
4188 m_itemIndex
= property(_controls_
.ListEvent_m_itemIndex_get
, _controls_
.ListEvent_m_itemIndex_set
)
4189 m_col
= property(_controls_
.ListEvent_m_col_get
, _controls_
.ListEvent_m_col_set
)
4190 m_pointDrag
= property(_controls_
.ListEvent_m_pointDrag_get
, _controls_
.ListEvent_m_pointDrag_set
)
4191 m_item
= property(_controls_
.ListEvent_m_item_get
)
4192 def GetKeyCode(*args
, **kwargs
):
4193 """GetKeyCode(self) -> int"""
4194 return _controls_
.ListEvent_GetKeyCode(*args
, **kwargs
)
4196 GetCode
= GetKeyCode
4197 def GetIndex(*args
, **kwargs
):
4198 """GetIndex(self) -> long"""
4199 return _controls_
.ListEvent_GetIndex(*args
, **kwargs
)
4201 def GetColumn(*args
, **kwargs
):
4202 """GetColumn(self) -> int"""
4203 return _controls_
.ListEvent_GetColumn(*args
, **kwargs
)
4205 def GetPoint(*args
, **kwargs
):
4206 """GetPoint(self) -> Point"""
4207 return _controls_
.ListEvent_GetPoint(*args
, **kwargs
)
4209 GetPosition
= GetPoint
4210 def GetLabel(*args
, **kwargs
):
4211 """GetLabel(self) -> String"""
4212 return _controls_
.ListEvent_GetLabel(*args
, **kwargs
)
4214 def GetText(*args
, **kwargs
):
4215 """GetText(self) -> String"""
4216 return _controls_
.ListEvent_GetText(*args
, **kwargs
)
4218 def GetImage(*args
, **kwargs
):
4219 """GetImage(self) -> int"""
4220 return _controls_
.ListEvent_GetImage(*args
, **kwargs
)
4222 def GetData(*args
, **kwargs
):
4223 """GetData(self) -> long"""
4224 return _controls_
.ListEvent_GetData(*args
, **kwargs
)
4226 def GetMask(*args
, **kwargs
):
4227 """GetMask(self) -> long"""
4228 return _controls_
.ListEvent_GetMask(*args
, **kwargs
)
4230 def GetItem(*args
, **kwargs
):
4231 """GetItem(self) -> ListItem"""
4232 return _controls_
.ListEvent_GetItem(*args
, **kwargs
)
4234 def GetCacheFrom(*args
, **kwargs
):
4235 """GetCacheFrom(self) -> long"""
4236 return _controls_
.ListEvent_GetCacheFrom(*args
, **kwargs
)
4238 def GetCacheTo(*args
, **kwargs
):
4239 """GetCacheTo(self) -> long"""
4240 return _controls_
.ListEvent_GetCacheTo(*args
, **kwargs
)
4242 def IsEditCancelled(*args
, **kwargs
):
4243 """IsEditCancelled(self) -> bool"""
4244 return _controls_
.ListEvent_IsEditCancelled(*args
, **kwargs
)
4246 def SetEditCanceled(*args
, **kwargs
):
4247 """SetEditCanceled(self, bool editCancelled)"""
4248 return _controls_
.ListEvent_SetEditCanceled(*args
, **kwargs
)
4250 _controls_
.ListEvent_swigregister(ListEvent
)
4252 wxEVT_COMMAND_LIST_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_DRAG
4253 wxEVT_COMMAND_LIST_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_RDRAG
4254 wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
4255 wxEVT_COMMAND_LIST_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_END_LABEL_EDIT
4256 wxEVT_COMMAND_LIST_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ITEM
4257 wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
4258 wxEVT_COMMAND_LIST_ITEM_SELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_SELECTED
4259 wxEVT_COMMAND_LIST_ITEM_DESELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_DESELECTED
4260 wxEVT_COMMAND_LIST_KEY_DOWN
= _controls_
.wxEVT_COMMAND_LIST_KEY_DOWN
4261 wxEVT_COMMAND_LIST_INSERT_ITEM
= _controls_
.wxEVT_COMMAND_LIST_INSERT_ITEM
4262 wxEVT_COMMAND_LIST_COL_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_CLICK
4263 wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
4264 wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
4265 wxEVT_COMMAND_LIST_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_ACTIVATED
4266 wxEVT_COMMAND_LIST_CACHE_HINT
= _controls_
.wxEVT_COMMAND_LIST_CACHE_HINT
4267 wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
4268 wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
4269 wxEVT_COMMAND_LIST_COL_DRAGGING
= _controls_
.wxEVT_COMMAND_LIST_COL_DRAGGING
4270 wxEVT_COMMAND_LIST_COL_END_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_END_DRAG
4271 wxEVT_COMMAND_LIST_ITEM_FOCUSED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_FOCUSED
4272 EVT_LIST_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG
, 1)
4273 EVT_LIST_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG
, 1)
4274 EVT_LIST_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, 1)
4275 EVT_LIST_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT
, 1)
4276 EVT_LIST_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM
, 1)
4277 EVT_LIST_DELETE_ALL_ITEMS
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, 1)
4282 EVT_LIST_ITEM_SELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED
, 1)
4283 EVT_LIST_ITEM_DESELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED
, 1)
4284 EVT_LIST_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN
, 1)
4285 EVT_LIST_INSERT_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM
, 1)
4286 EVT_LIST_COL_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK
, 1)
4287 EVT_LIST_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, 1)
4288 EVT_LIST_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
, 1)
4289 EVT_LIST_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, 1)
4290 EVT_LIST_CACHE_HINT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT
, 1)
4291 EVT_LIST_COL_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
, 1)
4292 EVT_LIST_COL_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
, 1)
4293 EVT_LIST_COL_DRAGGING
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING
, 1)
4294 EVT_LIST_COL_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG
, 1)
4295 EVT_LIST_ITEM_FOCUSED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
, 1)
4301 #---------------------------------------------------------------------------
4303 class ListCtrl(_core
.Control
):
4304 """Proxy of C++ ListCtrl class"""
4305 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4306 __repr__
= _swig_repr
4307 def __init__(self
, *args
, **kwargs
):
4309 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4310 Size size=DefaultSize, long style=LC_ICON,
4311 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListCtrl
4313 _controls_
.ListCtrl_swiginit(self
,_controls_
.new_ListCtrl(*args
, **kwargs
))
4314 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, ListCtrl
)
4316 def Create(*args
, **kwargs
):
4318 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4319 Size size=DefaultSize, long style=LC_ICON,
4320 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4322 Do the 2nd phase and create the GUI control.
4324 return _controls_
.ListCtrl_Create(*args
, **kwargs
)
4326 def _setCallbackInfo(*args
, **kwargs
):
4327 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4328 return _controls_
.ListCtrl__setCallbackInfo(*args
, **kwargs
)
4330 def GetColumn(*args
, **kwargs
):
4331 """GetColumn(self, int col) -> ListItem"""
4332 val
= _controls_
.ListCtrl_GetColumn(*args
, **kwargs
)
4333 if val
is not None: val
.thisown
= 1
4336 def SetColumn(*args
, **kwargs
):
4337 """SetColumn(self, int col, ListItem item) -> bool"""
4338 return _controls_
.ListCtrl_SetColumn(*args
, **kwargs
)
4340 def GetColumnWidth(*args
, **kwargs
):
4341 """GetColumnWidth(self, int col) -> int"""
4342 return _controls_
.ListCtrl_GetColumnWidth(*args
, **kwargs
)
4344 def SetColumnWidth(*args
, **kwargs
):
4345 """SetColumnWidth(self, int col, int width) -> bool"""
4346 return _controls_
.ListCtrl_SetColumnWidth(*args
, **kwargs
)
4348 def GetCountPerPage(*args
, **kwargs
):
4349 """GetCountPerPage(self) -> int"""
4350 return _controls_
.ListCtrl_GetCountPerPage(*args
, **kwargs
)
4352 def GetViewRect(*args
, **kwargs
):
4353 """GetViewRect(self) -> Rect"""
4354 return _controls_
.ListCtrl_GetViewRect(*args
, **kwargs
)
4356 def GetEditControl(*args
, **kwargs
):
4357 """GetEditControl(self) -> TextCtrl"""
4358 return _controls_
.ListCtrl_GetEditControl(*args
, **kwargs
)
4360 def GetItem(*args
, **kwargs
):
4361 """GetItem(self, long itemId, int col=0) -> ListItem"""
4362 val
= _controls_
.ListCtrl_GetItem(*args
, **kwargs
)
4363 if val
is not None: val
.thisown
= 1
4366 def SetItem(*args
, **kwargs
):
4367 """SetItem(self, ListItem info) -> bool"""
4368 return _controls_
.ListCtrl_SetItem(*args
, **kwargs
)
4370 def SetStringItem(*args
, **kwargs
):
4371 """SetStringItem(self, long index, int col, String label, int imageId=-1) -> long"""
4372 return _controls_
.ListCtrl_SetStringItem(*args
, **kwargs
)
4374 def GetItemState(*args
, **kwargs
):
4375 """GetItemState(self, long item, long stateMask) -> int"""
4376 return _controls_
.ListCtrl_GetItemState(*args
, **kwargs
)
4378 def SetItemState(*args
, **kwargs
):
4379 """SetItemState(self, long item, long state, long stateMask) -> bool"""
4380 return _controls_
.ListCtrl_SetItemState(*args
, **kwargs
)
4382 def SetItemImage(*args
, **kwargs
):
4383 """SetItemImage(self, long item, int image, int selImage=-1) -> bool"""
4384 return _controls_
.ListCtrl_SetItemImage(*args
, **kwargs
)
4386 def SetItemColumnImage(*args
, **kwargs
):
4387 """SetItemColumnImage(self, long item, long column, int image) -> bool"""
4388 return _controls_
.ListCtrl_SetItemColumnImage(*args
, **kwargs
)
4390 def GetItemText(*args
, **kwargs
):
4391 """GetItemText(self, long item) -> String"""
4392 return _controls_
.ListCtrl_GetItemText(*args
, **kwargs
)
4394 def SetItemText(*args
, **kwargs
):
4395 """SetItemText(self, long item, String str)"""
4396 return _controls_
.ListCtrl_SetItemText(*args
, **kwargs
)
4398 def GetItemData(*args
, **kwargs
):
4399 """GetItemData(self, long item) -> long"""
4400 return _controls_
.ListCtrl_GetItemData(*args
, **kwargs
)
4402 def SetItemData(*args
, **kwargs
):
4403 """SetItemData(self, long item, long data) -> bool"""
4404 return _controls_
.ListCtrl_SetItemData(*args
, **kwargs
)
4406 def GetItemPosition(*args
, **kwargs
):
4407 """GetItemPosition(self, long item) -> Point"""
4408 return _controls_
.ListCtrl_GetItemPosition(*args
, **kwargs
)
4410 def GetItemRect(*args
, **kwargs
):
4411 """GetItemRect(self, long item, int code=LIST_RECT_BOUNDS) -> Rect"""
4412 return _controls_
.ListCtrl_GetItemRect(*args
, **kwargs
)
4414 def SetItemPosition(*args
, **kwargs
):
4415 """SetItemPosition(self, long item, Point pos) -> bool"""
4416 return _controls_
.ListCtrl_SetItemPosition(*args
, **kwargs
)
4418 def GetItemCount(*args
, **kwargs
):
4419 """GetItemCount(self) -> int"""
4420 return _controls_
.ListCtrl_GetItemCount(*args
, **kwargs
)
4422 def GetColumnCount(*args
, **kwargs
):
4423 """GetColumnCount(self) -> int"""
4424 return _controls_
.ListCtrl_GetColumnCount(*args
, **kwargs
)
4426 def GetItemSpacing(*args
, **kwargs
):
4427 """GetItemSpacing(self) -> Size"""
4428 return _controls_
.ListCtrl_GetItemSpacing(*args
, **kwargs
)
4430 GetItemSpacing
= wx
._deprecated
(GetItemSpacing
)
4431 def SetItemSpacing(*args
, **kwargs
):
4432 """SetItemSpacing(self, int spacing, bool isSmall=False)"""
4433 return _controls_
.ListCtrl_SetItemSpacing(*args
, **kwargs
)
4435 SetItemSpacing
= wx
._deprecated
(SetItemSpacing
)
4436 def GetSelectedItemCount(*args
, **kwargs
):
4437 """GetSelectedItemCount(self) -> int"""
4438 return _controls_
.ListCtrl_GetSelectedItemCount(*args
, **kwargs
)
4440 def GetTextColour(*args
, **kwargs
):
4441 """GetTextColour(self) -> Colour"""
4442 return _controls_
.ListCtrl_GetTextColour(*args
, **kwargs
)
4444 def SetTextColour(*args
, **kwargs
):
4445 """SetTextColour(self, Colour col)"""
4446 return _controls_
.ListCtrl_SetTextColour(*args
, **kwargs
)
4448 def GetTopItem(*args
, **kwargs
):
4449 """GetTopItem(self) -> long"""
4450 return _controls_
.ListCtrl_GetTopItem(*args
, **kwargs
)
4452 def SetSingleStyle(*args
, **kwargs
):
4453 """SetSingleStyle(self, long style, bool add=True)"""
4454 return _controls_
.ListCtrl_SetSingleStyle(*args
, **kwargs
)
4456 def GetNextItem(*args
, **kwargs
):
4457 """GetNextItem(self, long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -> long"""
4458 return _controls_
.ListCtrl_GetNextItem(*args
, **kwargs
)
4460 def GetImageList(*args
, **kwargs
):
4461 """GetImageList(self, int which) -> ImageList"""
4462 return _controls_
.ListCtrl_GetImageList(*args
, **kwargs
)
4464 def SetImageList(*args
, **kwargs
):
4465 """SetImageList(self, ImageList imageList, int which)"""
4466 return _controls_
.ListCtrl_SetImageList(*args
, **kwargs
)
4468 def AssignImageList(*args
, **kwargs
):
4469 """AssignImageList(self, ImageList imageList, int which)"""
4470 return _controls_
.ListCtrl_AssignImageList(*args
, **kwargs
)
4472 def InReportView(*args
, **kwargs
):
4473 """InReportView(self) -> bool"""
4474 return _controls_
.ListCtrl_InReportView(*args
, **kwargs
)
4476 def IsVirtual(*args
, **kwargs
):
4477 """IsVirtual(self) -> bool"""
4478 return _controls_
.ListCtrl_IsVirtual(*args
, **kwargs
)
4480 def RefreshItem(*args
, **kwargs
):
4481 """RefreshItem(self, long item)"""
4482 return _controls_
.ListCtrl_RefreshItem(*args
, **kwargs
)
4484 def RefreshItems(*args
, **kwargs
):
4485 """RefreshItems(self, long itemFrom, long itemTo)"""
4486 return _controls_
.ListCtrl_RefreshItems(*args
, **kwargs
)
4488 def Arrange(*args
, **kwargs
):
4489 """Arrange(self, int flag=LIST_ALIGN_DEFAULT) -> bool"""
4490 return _controls_
.ListCtrl_Arrange(*args
, **kwargs
)
4492 def DeleteItem(*args
, **kwargs
):
4493 """DeleteItem(self, long item) -> bool"""
4494 return _controls_
.ListCtrl_DeleteItem(*args
, **kwargs
)
4496 def DeleteAllItems(*args
, **kwargs
):
4497 """DeleteAllItems(self) -> bool"""
4498 return _controls_
.ListCtrl_DeleteAllItems(*args
, **kwargs
)
4500 def DeleteColumn(*args
, **kwargs
):
4501 """DeleteColumn(self, int col) -> bool"""
4502 return _controls_
.ListCtrl_DeleteColumn(*args
, **kwargs
)
4504 def DeleteAllColumns(*args
, **kwargs
):
4505 """DeleteAllColumns(self) -> bool"""
4506 return _controls_
.ListCtrl_DeleteAllColumns(*args
, **kwargs
)
4508 def ClearAll(*args
, **kwargs
):
4509 """ClearAll(self)"""
4510 return _controls_
.ListCtrl_ClearAll(*args
, **kwargs
)
4512 def EditLabel(*args
, **kwargs
):
4513 """EditLabel(self, long item)"""
4514 return _controls_
.ListCtrl_EditLabel(*args
, **kwargs
)
4516 def EnsureVisible(*args
, **kwargs
):
4517 """EnsureVisible(self, long item) -> bool"""
4518 return _controls_
.ListCtrl_EnsureVisible(*args
, **kwargs
)
4520 def FindItem(*args
, **kwargs
):
4521 """FindItem(self, long start, String str, bool partial=False) -> long"""
4522 return _controls_
.ListCtrl_FindItem(*args
, **kwargs
)
4524 def FindItemData(*args
, **kwargs
):
4525 """FindItemData(self, long start, long data) -> long"""
4526 return _controls_
.ListCtrl_FindItemData(*args
, **kwargs
)
4528 def FindItemAtPos(*args
, **kwargs
):
4529 """FindItemAtPos(self, long start, Point pt, int direction) -> long"""
4530 return _controls_
.ListCtrl_FindItemAtPos(*args
, **kwargs
)
4532 def HitTest(*args
, **kwargs
):
4534 HitTest(Point point) -> (item, where)
4536 Determines which item (if any) is at the specified point, giving
4537 in the second return value (see wx.LIST_HITTEST flags.)
4539 return _controls_
.ListCtrl_HitTest(*args
, **kwargs
)
4541 def HitTestSubItem(*args
, **kwargs
):
4543 HitTestSubItem(Point point) -> (item, where, subItem)
4545 Determines which item (if any) is at the specified point, giving in
4546 the second return value (see wx.LIST_HITTEST flags) and also the subItem, if
4549 return _controls_
.ListCtrl_HitTestSubItem(*args
, **kwargs
)
4551 def InsertItem(*args
, **kwargs
):
4552 """InsertItem(self, ListItem info) -> long"""
4553 return _controls_
.ListCtrl_InsertItem(*args
, **kwargs
)
4555 def InsertStringItem(*args
, **kwargs
):
4556 """InsertStringItem(self, long index, String label, int imageIndex=-1) -> long"""
4557 return _controls_
.ListCtrl_InsertStringItem(*args
, **kwargs
)
4559 def InsertImageItem(*args
, **kwargs
):
4560 """InsertImageItem(self, long index, int imageIndex) -> long"""
4561 return _controls_
.ListCtrl_InsertImageItem(*args
, **kwargs
)
4563 def InsertImageStringItem(*args
, **kwargs
):
4564 """InsertImageStringItem(self, long index, String label, int imageIndex) -> long"""
4565 return _controls_
.ListCtrl_InsertImageStringItem(*args
, **kwargs
)
4567 def InsertColumnItem(*args
, **kwargs
):
4568 """InsertColumnItem(self, long col, ListItem info) -> long"""
4569 return _controls_
.ListCtrl_InsertColumnItem(*args
, **kwargs
)
4571 InsertColumnInfo
= InsertColumnItem
4572 def InsertColumn(*args
, **kwargs
):
4574 InsertColumn(self, long col, String heading, int format=LIST_FORMAT_LEFT,
4575 int width=-1) -> long
4577 return _controls_
.ListCtrl_InsertColumn(*args
, **kwargs
)
4579 def SetItemCount(*args
, **kwargs
):
4580 """SetItemCount(self, long count)"""
4581 return _controls_
.ListCtrl_SetItemCount(*args
, **kwargs
)
4583 def ScrollList(*args
, **kwargs
):
4584 """ScrollList(self, int dx, int dy) -> bool"""
4585 return _controls_
.ListCtrl_ScrollList(*args
, **kwargs
)
4587 def SetItemTextColour(*args
, **kwargs
):
4588 """SetItemTextColour(self, long item, Colour col)"""
4589 return _controls_
.ListCtrl_SetItemTextColour(*args
, **kwargs
)
4591 def GetItemTextColour(*args
, **kwargs
):
4592 """GetItemTextColour(self, long item) -> Colour"""
4593 return _controls_
.ListCtrl_GetItemTextColour(*args
, **kwargs
)
4595 def SetItemBackgroundColour(*args
, **kwargs
):
4596 """SetItemBackgroundColour(self, long item, Colour col)"""
4597 return _controls_
.ListCtrl_SetItemBackgroundColour(*args
, **kwargs
)
4599 def GetItemBackgroundColour(*args
, **kwargs
):
4600 """GetItemBackgroundColour(self, long item) -> Colour"""
4601 return _controls_
.ListCtrl_GetItemBackgroundColour(*args
, **kwargs
)
4603 def SetItemFont(*args
, **kwargs
):
4604 """SetItemFont(self, long item, Font f)"""
4605 return _controls_
.ListCtrl_SetItemFont(*args
, **kwargs
)
4607 def GetItemFont(*args
, **kwargs
):
4608 """GetItemFont(self, long item) -> Font"""
4609 return _controls_
.ListCtrl_GetItemFont(*args
, **kwargs
)
4613 def Select(self
, idx
, on
=1):
4614 '''[de]select an item'''
4615 if on
: state
= wx
.LIST_STATE_SELECTED
4617 self
.SetItemState(idx
, state
, wx
.LIST_STATE_SELECTED
)
4619 def Focus(self
, idx
):
4620 '''Focus and show the given item'''
4621 self
.SetItemState(idx
, wx
.LIST_STATE_FOCUSED
, wx
.LIST_STATE_FOCUSED
)
4622 self
.EnsureVisible(idx
)
4624 def GetFocusedItem(self
):
4625 '''get the currently focused item or -1 if none'''
4626 return self
.GetNextItem(-1, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_FOCUSED
)
4628 def GetFirstSelected(self
, *args
):
4629 '''return first selected item, or -1 when none'''
4630 return self
.GetNextSelected(-1)
4632 def GetNextSelected(self
, item
):
4633 '''return subsequent selected items, or -1 when no more'''
4634 return self
.GetNextItem(item
, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_SELECTED
)
4636 def IsSelected(self
, idx
):
4637 '''return True if the item is selected'''
4638 return (self
.GetItemState(idx
, wx
.LIST_STATE_SELECTED
) & wx
.LIST_STATE_SELECTED
) != 0
4640 def SetColumnImage(self
, col
, image
):
4641 item
= self
.GetColumn(col
)
4642 # preserve all other attributes too
4643 item
.SetMask( wx
.LIST_MASK_STATE |
4645 wx
.LIST_MASK_IMAGE |
4648 wx
.LIST_MASK_WIDTH |
4649 wx
.LIST_MASK_FORMAT
)
4650 item
.SetImage(image
)
4651 self
.SetColumn(col
, item
)
4653 def ClearColumnImage(self
, col
):
4654 self
.SetColumnImage(col
, -1)
4656 def Append(self
, entry
):
4657 '''Append an item to the list control. The entry parameter should be a
4658 sequence with an item for each column'''
4664 pos
= self
.GetItemCount()
4665 self
.InsertStringItem(pos
, cvtfunc(entry
[0]))
4666 for i
in range(1, len(entry
)):
4667 self
.SetStringItem(pos
, i
, cvtfunc(entry
[i
]))
4670 def SortItems(*args
, **kwargs
):
4671 """SortItems(self, PyObject func) -> bool"""
4672 return _controls_
.ListCtrl_SortItems(*args
, **kwargs
)
4674 def GetMainWindow(*args
, **kwargs
):
4675 """GetMainWindow(self) -> Window"""
4676 return _controls_
.ListCtrl_GetMainWindow(*args
, **kwargs
)
4678 def GetClassDefaultAttributes(*args
, **kwargs
):
4680 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4682 Get the default attributes for this class. This is useful if you want
4683 to use the same font or colour in your own control as in a standard
4684 control -- which is a much better idea than hard coding specific
4685 colours or fonts which might look completely out of place on the
4686 user's system, especially if it uses themes.
4688 The variant parameter is only relevant under Mac currently and is
4689 ignore under other platforms. Under Mac, it will change the size of
4690 the returned font. See `wx.Window.SetWindowVariant` for more about
4693 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4695 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
4696 _controls_
.ListCtrl_swigregister(ListCtrl
)
4698 def PreListCtrl(*args
, **kwargs
):
4699 """PreListCtrl() -> ListCtrl"""
4700 val
= _controls_
.new_PreListCtrl(*args
, **kwargs
)
4703 def ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
4705 ListCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4707 Get the default attributes for this class. This is useful if you want
4708 to use the same font or colour in your own control as in a standard
4709 control -- which is a much better idea than hard coding specific
4710 colours or fonts which might look completely out of place on the
4711 user's system, especially if it uses themes.
4713 The variant parameter is only relevant under Mac currently and is
4714 ignore under other platforms. Under Mac, it will change the size of
4715 the returned font. See `wx.Window.SetWindowVariant` for more about
4718 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4720 #---------------------------------------------------------------------------
4722 class ListView(ListCtrl
):
4723 """Proxy of C++ ListView class"""
4724 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4725 __repr__
= _swig_repr
4726 def __init__(self
, *args
, **kwargs
):
4728 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4729 Size size=DefaultSize, long style=LC_REPORT,
4730 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListView
4732 _controls_
.ListView_swiginit(self
,_controls_
.new_ListView(*args
, **kwargs
))
4733 self
._setOORInfo
(self
)
4735 def Create(*args
, **kwargs
):
4737 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4738 Size size=DefaultSize, long style=LC_REPORT,
4739 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4741 Do the 2nd phase and create the GUI control.
4743 return _controls_
.ListView_Create(*args
, **kwargs
)
4745 def Select(*args
, **kwargs
):
4746 """Select(self, long n, bool on=True)"""
4747 return _controls_
.ListView_Select(*args
, **kwargs
)
4749 def Focus(*args
, **kwargs
):
4750 """Focus(self, long index)"""
4751 return _controls_
.ListView_Focus(*args
, **kwargs
)
4753 def GetFocusedItem(*args
, **kwargs
):
4754 """GetFocusedItem(self) -> long"""
4755 return _controls_
.ListView_GetFocusedItem(*args
, **kwargs
)
4757 def GetNextSelected(*args
, **kwargs
):
4758 """GetNextSelected(self, long item) -> long"""
4759 return _controls_
.ListView_GetNextSelected(*args
, **kwargs
)
4761 def GetFirstSelected(*args
, **kwargs
):
4762 """GetFirstSelected(self) -> long"""
4763 return _controls_
.ListView_GetFirstSelected(*args
, **kwargs
)
4765 def IsSelected(*args
, **kwargs
):
4766 """IsSelected(self, long index) -> bool"""
4767 return _controls_
.ListView_IsSelected(*args
, **kwargs
)
4769 def SetColumnImage(*args
, **kwargs
):
4770 """SetColumnImage(self, int col, int image)"""
4771 return _controls_
.ListView_SetColumnImage(*args
, **kwargs
)
4773 def ClearColumnImage(*args
, **kwargs
):
4774 """ClearColumnImage(self, int col)"""
4775 return _controls_
.ListView_ClearColumnImage(*args
, **kwargs
)
4777 _controls_
.ListView_swigregister(ListView
)
4779 def PreListView(*args
, **kwargs
):
4780 """PreListView() -> ListView"""
4781 val
= _controls_
.new_PreListView(*args
, **kwargs
)
4784 #---------------------------------------------------------------------------
4786 TR_NO_BUTTONS
= _controls_
.TR_NO_BUTTONS
4787 TR_HAS_BUTTONS
= _controls_
.TR_HAS_BUTTONS
4788 TR_NO_LINES
= _controls_
.TR_NO_LINES
4789 TR_LINES_AT_ROOT
= _controls_
.TR_LINES_AT_ROOT
4790 TR_SINGLE
= _controls_
.TR_SINGLE
4791 TR_MULTIPLE
= _controls_
.TR_MULTIPLE
4792 TR_EXTENDED
= _controls_
.TR_EXTENDED
4793 TR_HAS_VARIABLE_ROW_HEIGHT
= _controls_
.TR_HAS_VARIABLE_ROW_HEIGHT
4794 TR_EDIT_LABELS
= _controls_
.TR_EDIT_LABELS
4795 TR_HIDE_ROOT
= _controls_
.TR_HIDE_ROOT
4796 TR_ROW_LINES
= _controls_
.TR_ROW_LINES
4797 TR_FULL_ROW_HIGHLIGHT
= _controls_
.TR_FULL_ROW_HIGHLIGHT
4798 TR_DEFAULT_STYLE
= _controls_
.TR_DEFAULT_STYLE
4799 TR_TWIST_BUTTONS
= _controls_
.TR_TWIST_BUTTONS
4802 wxTR_AQUA_BUTTONS
= 0
4804 TreeItemIcon_Normal
= _controls_
.TreeItemIcon_Normal
4805 TreeItemIcon_Selected
= _controls_
.TreeItemIcon_Selected
4806 TreeItemIcon_Expanded
= _controls_
.TreeItemIcon_Expanded
4807 TreeItemIcon_SelectedExpanded
= _controls_
.TreeItemIcon_SelectedExpanded
4808 TreeItemIcon_Max
= _controls_
.TreeItemIcon_Max
4809 TREE_HITTEST_ABOVE
= _controls_
.TREE_HITTEST_ABOVE
4810 TREE_HITTEST_BELOW
= _controls_
.TREE_HITTEST_BELOW
4811 TREE_HITTEST_NOWHERE
= _controls_
.TREE_HITTEST_NOWHERE
4812 TREE_HITTEST_ONITEMBUTTON
= _controls_
.TREE_HITTEST_ONITEMBUTTON
4813 TREE_HITTEST_ONITEMICON
= _controls_
.TREE_HITTEST_ONITEMICON
4814 TREE_HITTEST_ONITEMINDENT
= _controls_
.TREE_HITTEST_ONITEMINDENT
4815 TREE_HITTEST_ONITEMLABEL
= _controls_
.TREE_HITTEST_ONITEMLABEL
4816 TREE_HITTEST_ONITEMRIGHT
= _controls_
.TREE_HITTEST_ONITEMRIGHT
4817 TREE_HITTEST_ONITEMSTATEICON
= _controls_
.TREE_HITTEST_ONITEMSTATEICON
4818 TREE_HITTEST_TOLEFT
= _controls_
.TREE_HITTEST_TOLEFT
4819 TREE_HITTEST_TORIGHT
= _controls_
.TREE_HITTEST_TORIGHT
4820 TREE_HITTEST_ONITEMUPPERPART
= _controls_
.TREE_HITTEST_ONITEMUPPERPART
4821 TREE_HITTEST_ONITEMLOWERPART
= _controls_
.TREE_HITTEST_ONITEMLOWERPART
4822 TREE_HITTEST_ONITEM
= _controls_
.TREE_HITTEST_ONITEM
4823 #---------------------------------------------------------------------------
4825 class TreeItemId(object):
4826 """Proxy of C++ TreeItemId class"""
4827 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4828 __repr__
= _swig_repr
4829 def __init__(self
, *args
, **kwargs
):
4830 """__init__(self) -> TreeItemId"""
4831 _controls_
.TreeItemId_swiginit(self
,_controls_
.new_TreeItemId(*args
, **kwargs
))
4832 __swig_destroy__
= _controls_
.delete_TreeItemId
4833 __del__
= lambda self
: None;
4834 def IsOk(*args
, **kwargs
):
4835 """IsOk(self) -> bool"""
4836 return _controls_
.TreeItemId_IsOk(*args
, **kwargs
)
4838 def __eq__(*args
, **kwargs
):
4839 """__eq__(self, TreeItemId other) -> bool"""
4840 return _controls_
.TreeItemId___eq__(*args
, **kwargs
)
4842 def __ne__(*args
, **kwargs
):
4843 """__ne__(self, TreeItemId other) -> bool"""
4844 return _controls_
.TreeItemId___ne__(*args
, **kwargs
)
4846 m_pItem
= property(_controls_
.TreeItemId_m_pItem_get
, _controls_
.TreeItemId_m_pItem_set
)
4848 def __nonzero__(self
): return self
.IsOk()
4849 _controls_
.TreeItemId_swigregister(TreeItemId
)
4850 TreeCtrlNameStr
= cvar
.TreeCtrlNameStr
4852 class TreeItemData(object):
4853 """Proxy of C++ TreeItemData class"""
4854 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4855 __repr__
= _swig_repr
4856 def __init__(self
, *args
, **kwargs
):
4857 """__init__(self, PyObject obj=None) -> TreeItemData"""
4858 _controls_
.TreeItemData_swiginit(self
,_controls_
.new_TreeItemData(*args
, **kwargs
))
4859 __swig_destroy__
= _controls_
.delete_TreeItemData
4860 __del__
= lambda self
: None;
4861 def GetData(*args
, **kwargs
):
4862 """GetData(self) -> PyObject"""
4863 return _controls_
.TreeItemData_GetData(*args
, **kwargs
)
4865 def SetData(*args
, **kwargs
):
4866 """SetData(self, PyObject obj)"""
4867 return _controls_
.TreeItemData_SetData(*args
, **kwargs
)
4869 def GetId(*args
, **kwargs
):
4870 """GetId(self) -> TreeItemId"""
4871 return _controls_
.TreeItemData_GetId(*args
, **kwargs
)
4873 def SetId(*args
, **kwargs
):
4874 """SetId(self, TreeItemId id)"""
4875 return _controls_
.TreeItemData_SetId(*args
, **kwargs
)
4877 def Destroy(*args
, **kwargs
):
4879 val
= _controls_
.TreeItemData_Destroy(*args
, **kwargs
)
4883 _controls_
.TreeItemData_swigregister(TreeItemData
)
4885 #---------------------------------------------------------------------------
4887 wxEVT_COMMAND_TREE_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_DRAG
4888 wxEVT_COMMAND_TREE_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_RDRAG
4889 wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
4890 wxEVT_COMMAND_TREE_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_END_LABEL_EDIT
4891 wxEVT_COMMAND_TREE_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_TREE_DELETE_ITEM
4892 wxEVT_COMMAND_TREE_GET_INFO
= _controls_
.wxEVT_COMMAND_TREE_GET_INFO
4893 wxEVT_COMMAND_TREE_SET_INFO
= _controls_
.wxEVT_COMMAND_TREE_SET_INFO
4894 wxEVT_COMMAND_TREE_ITEM_EXPANDED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDED
4895 wxEVT_COMMAND_TREE_ITEM_EXPANDING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDING
4896 wxEVT_COMMAND_TREE_ITEM_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSED
4897 wxEVT_COMMAND_TREE_ITEM_COLLAPSING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSING
4898 wxEVT_COMMAND_TREE_SEL_CHANGED
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGED
4899 wxEVT_COMMAND_TREE_SEL_CHANGING
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGING
4900 wxEVT_COMMAND_TREE_KEY_DOWN
= _controls_
.wxEVT_COMMAND_TREE_KEY_DOWN
4901 wxEVT_COMMAND_TREE_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_ACTIVATED
4902 wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
4903 wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
4904 wxEVT_COMMAND_TREE_END_DRAG
= _controls_
.wxEVT_COMMAND_TREE_END_DRAG
4905 wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
4906 wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
= _controls_
.wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
4907 wxEVT_COMMAND_TREE_ITEM_MENU
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MENU
4908 EVT_TREE_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG
, 1)
4909 EVT_TREE_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG
, 1)
4910 EVT_TREE_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, 1)
4911 EVT_TREE_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, 1)
4912 EVT_TREE_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM
, 1)
4913 EVT_TREE_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO
, 1)
4914 EVT_TREE_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO
, 1)
4915 EVT_TREE_ITEM_EXPANDED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED
, 1)
4916 EVT_TREE_ITEM_EXPANDING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, 1)
4917 EVT_TREE_ITEM_COLLAPSED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, 1)
4918 EVT_TREE_ITEM_COLLAPSING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, 1)
4919 EVT_TREE_SEL_CHANGED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED
, 1)
4920 EVT_TREE_SEL_CHANGING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING
, 1)
4921 EVT_TREE_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN
, 1)
4922 EVT_TREE_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, 1)
4923 EVT_TREE_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, 1)
4924 EVT_TREE_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, 1)
4925 EVT_TREE_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG
, 1)
4926 EVT_TREE_STATE_IMAGE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
, 1)
4927 EVT_TREE_ITEM_GETTOOLTIP
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
, 1)
4928 EVT_TREE_ITEM_MENU
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MENU
, 1)
4930 class TreeEvent(_core
.NotifyEvent
):
4931 """Proxy of C++ TreeEvent class"""
4932 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4933 __repr__
= _swig_repr
4934 def __init__(self
, *args
):
4936 __init__(self, EventType commandType=wxEVT_NULL, int id=0) -> TreeEvent
4937 __init__(self, EventType commandType, TreeCtrl tree, TreeItemId item=NullTreeItemId) -> TreeEvent
4939 _controls_
.TreeEvent_swiginit(self
,_controls_
.new_TreeEvent(*args
))
4940 def GetItem(*args
, **kwargs
):
4941 """GetItem(self) -> TreeItemId"""
4942 return _controls_
.TreeEvent_GetItem(*args
, **kwargs
)
4944 def SetItem(*args
, **kwargs
):
4945 """SetItem(self, TreeItemId item)"""
4946 return _controls_
.TreeEvent_SetItem(*args
, **kwargs
)
4948 def GetOldItem(*args
, **kwargs
):
4949 """GetOldItem(self) -> TreeItemId"""
4950 return _controls_
.TreeEvent_GetOldItem(*args
, **kwargs
)
4952 def SetOldItem(*args
, **kwargs
):
4953 """SetOldItem(self, TreeItemId item)"""
4954 return _controls_
.TreeEvent_SetOldItem(*args
, **kwargs
)
4956 def GetPoint(*args
, **kwargs
):
4957 """GetPoint(self) -> Point"""
4958 return _controls_
.TreeEvent_GetPoint(*args
, **kwargs
)
4960 def SetPoint(*args
, **kwargs
):
4961 """SetPoint(self, Point pt)"""
4962 return _controls_
.TreeEvent_SetPoint(*args
, **kwargs
)
4964 def GetKeyEvent(*args
, **kwargs
):
4965 """GetKeyEvent(self) -> KeyEvent"""
4966 return _controls_
.TreeEvent_GetKeyEvent(*args
, **kwargs
)
4968 def GetKeyCode(*args
, **kwargs
):
4969 """GetKeyCode(self) -> int"""
4970 return _controls_
.TreeEvent_GetKeyCode(*args
, **kwargs
)
4972 def SetKeyEvent(*args
, **kwargs
):
4973 """SetKeyEvent(self, KeyEvent evt)"""
4974 return _controls_
.TreeEvent_SetKeyEvent(*args
, **kwargs
)
4976 def GetLabel(*args
, **kwargs
):
4977 """GetLabel(self) -> String"""
4978 return _controls_
.TreeEvent_GetLabel(*args
, **kwargs
)
4980 def SetLabel(*args
, **kwargs
):
4981 """SetLabel(self, String label)"""
4982 return _controls_
.TreeEvent_SetLabel(*args
, **kwargs
)
4984 def IsEditCancelled(*args
, **kwargs
):
4985 """IsEditCancelled(self) -> bool"""
4986 return _controls_
.TreeEvent_IsEditCancelled(*args
, **kwargs
)
4988 def SetEditCanceled(*args
, **kwargs
):
4989 """SetEditCanceled(self, bool editCancelled)"""
4990 return _controls_
.TreeEvent_SetEditCanceled(*args
, **kwargs
)
4992 def SetToolTip(*args
, **kwargs
):
4993 """SetToolTip(self, String toolTip)"""
4994 return _controls_
.TreeEvent_SetToolTip(*args
, **kwargs
)
4996 def GetToolTip(*args
, **kwargs
):
4997 """GetToolTip(self) -> String"""
4998 return _controls_
.TreeEvent_GetToolTip(*args
, **kwargs
)
5000 _controls_
.TreeEvent_swigregister(TreeEvent
)
5002 #---------------------------------------------------------------------------
5004 class TreeCtrl(_core
.Control
):
5005 """Proxy of C++ TreeCtrl class"""
5006 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5007 __repr__
= _swig_repr
5008 def __init__(self
, *args
, **kwargs
):
5010 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
5011 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
5012 Validator validator=DefaultValidator,
5013 String name=TreeCtrlNameStr) -> TreeCtrl
5015 _controls_
.TreeCtrl_swiginit(self
,_controls_
.new_TreeCtrl(*args
, **kwargs
))
5016 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, TreeCtrl
)
5018 def Create(*args
, **kwargs
):
5020 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
5021 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
5022 Validator validator=DefaultValidator,
5023 String name=TreeCtrlNameStr) -> bool
5025 Do the 2nd phase and create the GUI control.
5027 return _controls_
.TreeCtrl_Create(*args
, **kwargs
)
5029 def _setCallbackInfo(*args
, **kwargs
):
5030 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5031 return _controls_
.TreeCtrl__setCallbackInfo(*args
, **kwargs
)
5033 def GetCount(*args
, **kwargs
):
5034 """GetCount(self) -> unsigned int"""
5035 return _controls_
.TreeCtrl_GetCount(*args
, **kwargs
)
5037 def GetIndent(*args
, **kwargs
):
5038 """GetIndent(self) -> unsigned int"""
5039 return _controls_
.TreeCtrl_GetIndent(*args
, **kwargs
)
5041 def SetIndent(*args
, **kwargs
):
5042 """SetIndent(self, unsigned int indent)"""
5043 return _controls_
.TreeCtrl_SetIndent(*args
, **kwargs
)
5045 def GetSpacing(*args
, **kwargs
):
5046 """GetSpacing(self) -> unsigned int"""
5047 return _controls_
.TreeCtrl_GetSpacing(*args
, **kwargs
)
5049 def SetSpacing(*args
, **kwargs
):
5050 """SetSpacing(self, unsigned int spacing)"""
5051 return _controls_
.TreeCtrl_SetSpacing(*args
, **kwargs
)
5053 def GetImageList(*args
, **kwargs
):
5054 """GetImageList(self) -> ImageList"""
5055 return _controls_
.TreeCtrl_GetImageList(*args
, **kwargs
)
5057 def GetStateImageList(*args
, **kwargs
):
5058 """GetStateImageList(self) -> ImageList"""
5059 return _controls_
.TreeCtrl_GetStateImageList(*args
, **kwargs
)
5061 def SetImageList(*args
, **kwargs
):
5062 """SetImageList(self, ImageList imageList)"""
5063 return _controls_
.TreeCtrl_SetImageList(*args
, **kwargs
)
5065 def SetStateImageList(*args
, **kwargs
):
5066 """SetStateImageList(self, ImageList imageList)"""
5067 return _controls_
.TreeCtrl_SetStateImageList(*args
, **kwargs
)
5069 def AssignImageList(*args
, **kwargs
):
5070 """AssignImageList(self, ImageList imageList)"""
5071 return _controls_
.TreeCtrl_AssignImageList(*args
, **kwargs
)
5073 def AssignStateImageList(*args
, **kwargs
):
5074 """AssignStateImageList(self, ImageList imageList)"""
5075 return _controls_
.TreeCtrl_AssignStateImageList(*args
, **kwargs
)
5077 def GetItemText(*args
, **kwargs
):
5078 """GetItemText(self, TreeItemId item) -> String"""
5079 return _controls_
.TreeCtrl_GetItemText(*args
, **kwargs
)
5081 def GetItemImage(*args
, **kwargs
):
5082 """GetItemImage(self, TreeItemId item, int which=TreeItemIcon_Normal) -> int"""
5083 return _controls_
.TreeCtrl_GetItemImage(*args
, **kwargs
)
5085 def GetItemData(*args
, **kwargs
):
5086 """GetItemData(self, TreeItemId item) -> TreeItemData"""
5087 return _controls_
.TreeCtrl_GetItemData(*args
, **kwargs
)
5089 def GetItemPyData(*args
, **kwargs
):
5090 """GetItemPyData(self, TreeItemId item) -> PyObject"""
5091 return _controls_
.TreeCtrl_GetItemPyData(*args
, **kwargs
)
5093 GetPyData
= GetItemPyData
5094 def GetItemTextColour(*args
, **kwargs
):
5095 """GetItemTextColour(self, TreeItemId item) -> Colour"""
5096 return _controls_
.TreeCtrl_GetItemTextColour(*args
, **kwargs
)
5098 def GetItemBackgroundColour(*args
, **kwargs
):
5099 """GetItemBackgroundColour(self, TreeItemId item) -> Colour"""
5100 return _controls_
.TreeCtrl_GetItemBackgroundColour(*args
, **kwargs
)
5102 def GetItemFont(*args
, **kwargs
):
5103 """GetItemFont(self, TreeItemId item) -> Font"""
5104 return _controls_
.TreeCtrl_GetItemFont(*args
, **kwargs
)
5106 def SetItemText(*args
, **kwargs
):
5107 """SetItemText(self, TreeItemId item, String text)"""
5108 return _controls_
.TreeCtrl_SetItemText(*args
, **kwargs
)
5110 def SetItemImage(*args
, **kwargs
):
5111 """SetItemImage(self, TreeItemId item, int image, int which=TreeItemIcon_Normal)"""
5112 return _controls_
.TreeCtrl_SetItemImage(*args
, **kwargs
)
5114 def SetItemData(*args
, **kwargs
):
5115 """SetItemData(self, TreeItemId item, TreeItemData data)"""
5116 return _controls_
.TreeCtrl_SetItemData(*args
, **kwargs
)
5118 def SetItemPyData(*args
, **kwargs
):
5119 """SetItemPyData(self, TreeItemId item, PyObject obj)"""
5120 return _controls_
.TreeCtrl_SetItemPyData(*args
, **kwargs
)
5122 SetPyData
= SetItemPyData
5123 def SetItemHasChildren(*args
, **kwargs
):
5124 """SetItemHasChildren(self, TreeItemId item, bool has=True)"""
5125 return _controls_
.TreeCtrl_SetItemHasChildren(*args
, **kwargs
)
5127 def SetItemBold(*args
, **kwargs
):
5128 """SetItemBold(self, TreeItemId item, bool bold=True)"""
5129 return _controls_
.TreeCtrl_SetItemBold(*args
, **kwargs
)
5131 def SetItemDropHighlight(*args
, **kwargs
):
5132 """SetItemDropHighlight(self, TreeItemId item, bool highlight=True)"""
5133 return _controls_
.TreeCtrl_SetItemDropHighlight(*args
, **kwargs
)
5135 def SetItemTextColour(*args
, **kwargs
):
5136 """SetItemTextColour(self, TreeItemId item, Colour col)"""
5137 return _controls_
.TreeCtrl_SetItemTextColour(*args
, **kwargs
)
5139 def SetItemBackgroundColour(*args
, **kwargs
):
5140 """SetItemBackgroundColour(self, TreeItemId item, Colour col)"""
5141 return _controls_
.TreeCtrl_SetItemBackgroundColour(*args
, **kwargs
)
5143 def SetItemFont(*args
, **kwargs
):
5144 """SetItemFont(self, TreeItemId item, Font font)"""
5145 return _controls_
.TreeCtrl_SetItemFont(*args
, **kwargs
)
5147 def IsVisible(*args
, **kwargs
):
5148 """IsVisible(self, TreeItemId item) -> bool"""
5149 return _controls_
.TreeCtrl_IsVisible(*args
, **kwargs
)
5151 def ItemHasChildren(*args
, **kwargs
):
5152 """ItemHasChildren(self, TreeItemId item) -> bool"""
5153 return _controls_
.TreeCtrl_ItemHasChildren(*args
, **kwargs
)
5155 def IsExpanded(*args
, **kwargs
):
5156 """IsExpanded(self, TreeItemId item) -> bool"""
5157 return _controls_
.TreeCtrl_IsExpanded(*args
, **kwargs
)
5159 def IsSelected(*args
, **kwargs
):
5160 """IsSelected(self, TreeItemId item) -> bool"""
5161 return _controls_
.TreeCtrl_IsSelected(*args
, **kwargs
)
5163 def IsBold(*args
, **kwargs
):
5164 """IsBold(self, TreeItemId item) -> bool"""
5165 return _controls_
.TreeCtrl_IsBold(*args
, **kwargs
)
5167 def GetChildrenCount(*args
, **kwargs
):
5168 """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t"""
5169 return _controls_
.TreeCtrl_GetChildrenCount(*args
, **kwargs
)
5171 def GetRootItem(*args
, **kwargs
):
5172 """GetRootItem(self) -> TreeItemId"""
5173 return _controls_
.TreeCtrl_GetRootItem(*args
, **kwargs
)
5175 def GetSelection(*args
, **kwargs
):
5176 """GetSelection(self) -> TreeItemId"""
5177 return _controls_
.TreeCtrl_GetSelection(*args
, **kwargs
)
5179 def GetSelections(*args
, **kwargs
):
5180 """GetSelections(self) -> PyObject"""
5181 return _controls_
.TreeCtrl_GetSelections(*args
, **kwargs
)
5183 def GetItemParent(*args
, **kwargs
):
5184 """GetItemParent(self, TreeItemId item) -> TreeItemId"""
5185 return _controls_
.TreeCtrl_GetItemParent(*args
, **kwargs
)
5187 def GetFirstChild(*args
, **kwargs
):
5188 """GetFirstChild(self, TreeItemId item) -> PyObject"""
5189 return _controls_
.TreeCtrl_GetFirstChild(*args
, **kwargs
)
5191 def GetNextChild(*args
, **kwargs
):
5192 """GetNextChild(self, TreeItemId item, void cookie) -> PyObject"""
5193 return _controls_
.TreeCtrl_GetNextChild(*args
, **kwargs
)
5195 def GetLastChild(*args
, **kwargs
):
5196 """GetLastChild(self, TreeItemId item) -> TreeItemId"""
5197 return _controls_
.TreeCtrl_GetLastChild(*args
, **kwargs
)
5199 def GetNextSibling(*args
, **kwargs
):
5200 """GetNextSibling(self, TreeItemId item) -> TreeItemId"""
5201 return _controls_
.TreeCtrl_GetNextSibling(*args
, **kwargs
)
5203 def GetPrevSibling(*args
, **kwargs
):
5204 """GetPrevSibling(self, TreeItemId item) -> TreeItemId"""
5205 return _controls_
.TreeCtrl_GetPrevSibling(*args
, **kwargs
)
5207 def GetFirstVisibleItem(*args
, **kwargs
):
5208 """GetFirstVisibleItem(self) -> TreeItemId"""
5209 return _controls_
.TreeCtrl_GetFirstVisibleItem(*args
, **kwargs
)
5211 def GetNextVisible(*args
, **kwargs
):
5212 """GetNextVisible(self, TreeItemId item) -> TreeItemId"""
5213 return _controls_
.TreeCtrl_GetNextVisible(*args
, **kwargs
)
5215 def GetPrevVisible(*args
, **kwargs
):
5216 """GetPrevVisible(self, TreeItemId item) -> TreeItemId"""
5217 return _controls_
.TreeCtrl_GetPrevVisible(*args
, **kwargs
)
5219 def AddRoot(*args
, **kwargs
):
5220 """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId"""
5221 return _controls_
.TreeCtrl_AddRoot(*args
, **kwargs
)
5223 def PrependItem(*args
, **kwargs
):
5225 PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5226 TreeItemData data=None) -> TreeItemId
5228 return _controls_
.TreeCtrl_PrependItem(*args
, **kwargs
)
5230 def InsertItem(*args
, **kwargs
):
5232 InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text,
5233 int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5235 return _controls_
.TreeCtrl_InsertItem(*args
, **kwargs
)
5237 def InsertItemBefore(*args
, **kwargs
):
5239 InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1,
5240 int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5242 return _controls_
.TreeCtrl_InsertItemBefore(*args
, **kwargs
)
5244 def AppendItem(*args
, **kwargs
):
5246 AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5247 TreeItemData data=None) -> TreeItemId
5249 return _controls_
.TreeCtrl_AppendItem(*args
, **kwargs
)
5251 def Delete(*args
, **kwargs
):
5252 """Delete(self, TreeItemId item)"""
5253 return _controls_
.TreeCtrl_Delete(*args
, **kwargs
)
5255 def DeleteChildren(*args
, **kwargs
):
5256 """DeleteChildren(self, TreeItemId item)"""
5257 return _controls_
.TreeCtrl_DeleteChildren(*args
, **kwargs
)
5259 def DeleteAllItems(*args
, **kwargs
):
5260 """DeleteAllItems(self)"""
5261 return _controls_
.TreeCtrl_DeleteAllItems(*args
, **kwargs
)
5263 def Expand(*args
, **kwargs
):
5264 """Expand(self, TreeItemId item)"""
5265 return _controls_
.TreeCtrl_Expand(*args
, **kwargs
)
5267 def ExpandAllChildren(*args
, **kwargs
):
5268 """ExpandAllChildren(self, TreeItemId item)"""
5269 return _controls_
.TreeCtrl_ExpandAllChildren(*args
, **kwargs
)
5271 def ExpandAll(*args
, **kwargs
):
5272 """ExpandAll(self)"""
5273 return _controls_
.TreeCtrl_ExpandAll(*args
, **kwargs
)
5275 def Collapse(*args
, **kwargs
):
5276 """Collapse(self, TreeItemId item)"""
5277 return _controls_
.TreeCtrl_Collapse(*args
, **kwargs
)
5279 def CollapseAndReset(*args
, **kwargs
):
5280 """CollapseAndReset(self, TreeItemId item)"""
5281 return _controls_
.TreeCtrl_CollapseAndReset(*args
, **kwargs
)
5283 def Toggle(*args
, **kwargs
):
5284 """Toggle(self, TreeItemId item)"""
5285 return _controls_
.TreeCtrl_Toggle(*args
, **kwargs
)
5287 def Unselect(*args
, **kwargs
):
5288 """Unselect(self)"""
5289 return _controls_
.TreeCtrl_Unselect(*args
, **kwargs
)
5291 def UnselectItem(*args
, **kwargs
):
5292 """UnselectItem(self, TreeItemId item)"""
5293 return _controls_
.TreeCtrl_UnselectItem(*args
, **kwargs
)
5295 def UnselectAll(*args
, **kwargs
):
5296 """UnselectAll(self)"""
5297 return _controls_
.TreeCtrl_UnselectAll(*args
, **kwargs
)
5299 def SelectItem(*args
, **kwargs
):
5300 """SelectItem(self, TreeItemId item, bool select=True)"""
5301 return _controls_
.TreeCtrl_SelectItem(*args
, **kwargs
)
5303 def ToggleItemSelection(*args
, **kwargs
):
5304 """ToggleItemSelection(self, TreeItemId item)"""
5305 return _controls_
.TreeCtrl_ToggleItemSelection(*args
, **kwargs
)
5307 def EnsureVisible(*args
, **kwargs
):
5308 """EnsureVisible(self, TreeItemId item)"""
5309 return _controls_
.TreeCtrl_EnsureVisible(*args
, **kwargs
)
5311 def ScrollTo(*args
, **kwargs
):
5312 """ScrollTo(self, TreeItemId item)"""
5313 return _controls_
.TreeCtrl_ScrollTo(*args
, **kwargs
)
5315 def EditLabel(*args
, **kwargs
):
5316 """EditLabel(self, TreeItemId item)"""
5317 return _controls_
.TreeCtrl_EditLabel(*args
, **kwargs
)
5319 def GetEditControl(*args
, **kwargs
):
5320 """GetEditControl(self) -> TextCtrl"""
5321 return _controls_
.TreeCtrl_GetEditControl(*args
, **kwargs
)
5323 def SortChildren(*args
, **kwargs
):
5324 """SortChildren(self, TreeItemId item)"""
5325 return _controls_
.TreeCtrl_SortChildren(*args
, **kwargs
)
5327 def HitTest(*args
, **kwargs
):
5329 HitTest(Point point) -> (item, where)
5331 Determine which item (if any) belongs the given point. The coordinates
5332 specified are relative to the client area of tree ctrl and the where return
5333 value is set to a bitmask of wxTREE_HITTEST_xxx constants.
5336 return _controls_
.TreeCtrl_HitTest(*args
, **kwargs
)
5338 def GetBoundingRect(*args
, **kwargs
):
5339 """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject"""
5340 return _controls_
.TreeCtrl_GetBoundingRect(*args
, **kwargs
)
5342 def GetClassDefaultAttributes(*args
, **kwargs
):
5344 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5346 Get the default attributes for this class. This is useful if you want
5347 to use the same font or colour in your own control as in a standard
5348 control -- which is a much better idea than hard coding specific
5349 colours or fonts which might look completely out of place on the
5350 user's system, especially if it uses themes.
5352 The variant parameter is only relevant under Mac currently and is
5353 ignore under other platforms. Under Mac, it will change the size of
5354 the returned font. See `wx.Window.SetWindowVariant` for more about
5357 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5359 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
5360 def SetQuickBestSize(*args
, **kwargs
):
5361 """SetQuickBestSize(self, bool q)"""
5362 return _controls_
.TreeCtrl_SetQuickBestSize(*args
, **kwargs
)
5364 def GetQuickBestSize(*args
, **kwargs
):
5365 """GetQuickBestSize(self) -> bool"""
5366 return _controls_
.TreeCtrl_GetQuickBestSize(*args
, **kwargs
)
5368 _controls_
.TreeCtrl_swigregister(TreeCtrl
)
5370 def PreTreeCtrl(*args
, **kwargs
):
5371 """PreTreeCtrl() -> TreeCtrl"""
5372 val
= _controls_
.new_PreTreeCtrl(*args
, **kwargs
)
5375 def TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
5377 TreeCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5379 Get the default attributes for this class. This is useful if you want
5380 to use the same font or colour in your own control as in a standard
5381 control -- which is a much better idea than hard coding specific
5382 colours or fonts which might look completely out of place on the
5383 user's system, especially if it uses themes.
5385 The variant parameter is only relevant under Mac currently and is
5386 ignore under other platforms. Under Mac, it will change the size of
5387 the returned font. See `wx.Window.SetWindowVariant` for more about
5390 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5392 #---------------------------------------------------------------------------
5394 DIRCTRL_DIR_ONLY
= _controls_
.DIRCTRL_DIR_ONLY
5395 DIRCTRL_SELECT_FIRST
= _controls_
.DIRCTRL_SELECT_FIRST
5396 DIRCTRL_SHOW_FILTERS
= _controls_
.DIRCTRL_SHOW_FILTERS
5397 DIRCTRL_3D_INTERNAL
= _controls_
.DIRCTRL_3D_INTERNAL
5398 DIRCTRL_EDIT_LABELS
= _controls_
.DIRCTRL_EDIT_LABELS
5399 class GenericDirCtrl(_core
.Control
):
5400 """Proxy of C++ GenericDirCtrl class"""
5401 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5402 __repr__
= _swig_repr
5403 def __init__(self
, *args
, **kwargs
):
5405 __init__(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5406 Point pos=DefaultPosition, Size size=DefaultSize,
5407 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5408 String filter=EmptyString,
5409 int defaultFilter=0, String name=TreeCtrlNameStr) -> GenericDirCtrl
5411 _controls_
.GenericDirCtrl_swiginit(self
,_controls_
.new_GenericDirCtrl(*args
, **kwargs
))
5412 self
._setOORInfo
(self
)
5414 def Create(*args
, **kwargs
):
5416 Create(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5417 Point pos=DefaultPosition, Size size=DefaultSize,
5418 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5419 String filter=EmptyString,
5420 int defaultFilter=0, String name=TreeCtrlNameStr) -> bool
5422 return _controls_
.GenericDirCtrl_Create(*args
, **kwargs
)
5424 def ExpandPath(*args
, **kwargs
):
5425 """ExpandPath(self, String path) -> bool"""
5426 return _controls_
.GenericDirCtrl_ExpandPath(*args
, **kwargs
)
5428 def CollapsePath(*args
, **kwargs
):
5429 """CollapsePath(self, String path) -> bool"""
5430 return _controls_
.GenericDirCtrl_CollapsePath(*args
, **kwargs
)
5432 def GetDefaultPath(*args
, **kwargs
):
5433 """GetDefaultPath(self) -> String"""
5434 return _controls_
.GenericDirCtrl_GetDefaultPath(*args
, **kwargs
)
5436 def SetDefaultPath(*args
, **kwargs
):
5437 """SetDefaultPath(self, String path)"""
5438 return _controls_
.GenericDirCtrl_SetDefaultPath(*args
, **kwargs
)
5440 def GetPath(*args
, **kwargs
):
5441 """GetPath(self) -> String"""
5442 return _controls_
.GenericDirCtrl_GetPath(*args
, **kwargs
)
5444 def GetFilePath(*args
, **kwargs
):
5445 """GetFilePath(self) -> String"""
5446 return _controls_
.GenericDirCtrl_GetFilePath(*args
, **kwargs
)
5448 def SetPath(*args
, **kwargs
):
5449 """SetPath(self, String path)"""
5450 return _controls_
.GenericDirCtrl_SetPath(*args
, **kwargs
)
5452 def ShowHidden(*args
, **kwargs
):
5453 """ShowHidden(self, bool show)"""
5454 return _controls_
.GenericDirCtrl_ShowHidden(*args
, **kwargs
)
5456 def GetShowHidden(*args
, **kwargs
):
5457 """GetShowHidden(self) -> bool"""
5458 return _controls_
.GenericDirCtrl_GetShowHidden(*args
, **kwargs
)
5460 def GetFilter(*args
, **kwargs
):
5461 """GetFilter(self) -> String"""
5462 return _controls_
.GenericDirCtrl_GetFilter(*args
, **kwargs
)
5464 def SetFilter(*args
, **kwargs
):
5465 """SetFilter(self, String filter)"""
5466 return _controls_
.GenericDirCtrl_SetFilter(*args
, **kwargs
)
5468 def GetFilterIndex(*args
, **kwargs
):
5469 """GetFilterIndex(self) -> int"""
5470 return _controls_
.GenericDirCtrl_GetFilterIndex(*args
, **kwargs
)
5472 def SetFilterIndex(*args
, **kwargs
):
5473 """SetFilterIndex(self, int n)"""
5474 return _controls_
.GenericDirCtrl_SetFilterIndex(*args
, **kwargs
)
5476 def GetRootId(*args
, **kwargs
):
5477 """GetRootId(self) -> TreeItemId"""
5478 return _controls_
.GenericDirCtrl_GetRootId(*args
, **kwargs
)
5480 def GetTreeCtrl(*args
, **kwargs
):
5481 """GetTreeCtrl(self) -> TreeCtrl"""
5482 return _controls_
.GenericDirCtrl_GetTreeCtrl(*args
, **kwargs
)
5484 def GetFilterListCtrl(*args
, **kwargs
):
5485 """GetFilterListCtrl(self) -> DirFilterListCtrl"""
5486 return _controls_
.GenericDirCtrl_GetFilterListCtrl(*args
, **kwargs
)
5488 def FindChild(*args
, **kwargs
):
5490 FindChild(wxTreeItemId parentId, wxString path) -> (item, done)
5492 Find the child that matches the first part of 'path'. E.g. if a child
5493 path is "/usr" and 'path' is "/usr/include" then the child for
5494 /usr is returned. If the path string has been used (we're at the
5495 leaf), done is set to True.
5498 return _controls_
.GenericDirCtrl_FindChild(*args
, **kwargs
)
5500 def DoResize(*args
, **kwargs
):
5501 """DoResize(self)"""
5502 return _controls_
.GenericDirCtrl_DoResize(*args
, **kwargs
)
5504 def ReCreateTree(*args
, **kwargs
):
5505 """ReCreateTree(self)"""
5506 return _controls_
.GenericDirCtrl_ReCreateTree(*args
, **kwargs
)
5508 _controls_
.GenericDirCtrl_swigregister(GenericDirCtrl
)
5509 DirDialogDefaultFolderStr
= cvar
.DirDialogDefaultFolderStr
5511 def PreGenericDirCtrl(*args
, **kwargs
):
5512 """PreGenericDirCtrl() -> GenericDirCtrl"""
5513 val
= _controls_
.new_PreGenericDirCtrl(*args
, **kwargs
)
5516 class DirFilterListCtrl(Choice
):
5517 """Proxy of C++ DirFilterListCtrl class"""
5518 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5519 __repr__
= _swig_repr
5520 def __init__(self
, *args
, **kwargs
):
5522 __init__(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5523 Size size=DefaultSize, long style=0) -> DirFilterListCtrl
5525 _controls_
.DirFilterListCtrl_swiginit(self
,_controls_
.new_DirFilterListCtrl(*args
, **kwargs
))
5526 self
._setOORInfo
(self
)
5528 def Create(*args
, **kwargs
):
5530 Create(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5531 Size size=DefaultSize, long style=0) -> bool
5533 return _controls_
.DirFilterListCtrl_Create(*args
, **kwargs
)
5535 def FillFilterList(*args
, **kwargs
):
5536 """FillFilterList(self, String filter, int defaultFilter)"""
5537 return _controls_
.DirFilterListCtrl_FillFilterList(*args
, **kwargs
)
5539 _controls_
.DirFilterListCtrl_swigregister(DirFilterListCtrl
)
5541 def PreDirFilterListCtrl(*args
, **kwargs
):
5542 """PreDirFilterListCtrl() -> DirFilterListCtrl"""
5543 val
= _controls_
.new_PreDirFilterListCtrl(*args
, **kwargs
)
5546 #---------------------------------------------------------------------------
5548 class PyControl(_core
.Control
):
5549 """Proxy of C++ PyControl class"""
5550 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5551 __repr__
= _swig_repr
5552 def __init__(self
, *args
, **kwargs
):
5554 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
5555 Size size=DefaultSize, long style=0, Validator validator=DefaultValidator,
5556 String name=ControlNameStr) -> PyControl
5558 _controls_
.PyControl_swiginit(self
,_controls_
.new_PyControl(*args
, **kwargs
))
5559 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyControl
)
5561 def _setCallbackInfo(*args
, **kwargs
):
5562 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5563 return _controls_
.PyControl__setCallbackInfo(*args
, **kwargs
)
5565 def SetBestSize(*args
, **kwargs
):
5566 """SetBestSize(self, Size size)"""
5567 return _controls_
.PyControl_SetBestSize(*args
, **kwargs
)
5569 def DoEraseBackground(*args
, **kwargs
):
5570 """DoEraseBackground(self, DC dc) -> bool"""
5571 return _controls_
.PyControl_DoEraseBackground(*args
, **kwargs
)
5573 def DoMoveWindow(*args
, **kwargs
):
5574 """DoMoveWindow(self, int x, int y, int width, int height)"""
5575 return _controls_
.PyControl_DoMoveWindow(*args
, **kwargs
)
5577 def DoSetSize(*args
, **kwargs
):
5578 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
5579 return _controls_
.PyControl_DoSetSize(*args
, **kwargs
)
5581 def DoSetClientSize(*args
, **kwargs
):
5582 """DoSetClientSize(self, int width, int height)"""
5583 return _controls_
.PyControl_DoSetClientSize(*args
, **kwargs
)
5585 def DoSetVirtualSize(*args
, **kwargs
):
5586 """DoSetVirtualSize(self, int x, int y)"""
5587 return _controls_
.PyControl_DoSetVirtualSize(*args
, **kwargs
)
5589 def DoGetSize(*args
, **kwargs
):
5590 """DoGetSize() -> (width, height)"""
5591 return _controls_
.PyControl_DoGetSize(*args
, **kwargs
)
5593 def DoGetClientSize(*args
, **kwargs
):
5594 """DoGetClientSize() -> (width, height)"""
5595 return _controls_
.PyControl_DoGetClientSize(*args
, **kwargs
)
5597 def DoGetPosition(*args
, **kwargs
):
5598 """DoGetPosition() -> (x,y)"""
5599 return _controls_
.PyControl_DoGetPosition(*args
, **kwargs
)
5601 def DoGetVirtualSize(*args
, **kwargs
):
5602 """DoGetVirtualSize(self) -> Size"""
5603 return _controls_
.PyControl_DoGetVirtualSize(*args
, **kwargs
)
5605 def DoGetBestSize(*args
, **kwargs
):
5606 """DoGetBestSize(self) -> Size"""
5607 return _controls_
.PyControl_DoGetBestSize(*args
, **kwargs
)
5609 def GetDefaultAttributes(*args
, **kwargs
):
5610 """GetDefaultAttributes(self) -> VisualAttributes"""
5611 return _controls_
.PyControl_GetDefaultAttributes(*args
, **kwargs
)
5613 def OnInternalIdle(*args
, **kwargs
):
5614 """OnInternalIdle(self)"""
5615 return _controls_
.PyControl_OnInternalIdle(*args
, **kwargs
)
5617 def base_DoMoveWindow(*args
, **kw
):
5618 return PyScrolledWindow
.DoMoveWindow(*args
, **kw
)
5619 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
5620 "Please use PyScrolledWindow.DoMoveWindow instead.")
5622 def base_DoSetSize(*args
, **kw
):
5623 return PyScrolledWindow
.DoSetSize(*args
, **kw
)
5624 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
5625 "Please use PyScrolledWindow.DoSetSize instead.")
5627 def base_DoSetClientSize(*args
, **kw
):
5628 return PyScrolledWindow
.DoSetClientSize(*args
, **kw
)
5629 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
5630 "Please use PyScrolledWindow.DoSetClientSize instead.")
5632 def base_DoSetVirtualSize(*args
, **kw
):
5633 return PyScrolledWindow
.DoSetVirtualSize(*args
, **kw
)
5634 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
5635 "Please use PyScrolledWindow.DoSetVirtualSize instead.")
5637 def base_DoGetSize(*args
, **kw
):
5638 return PyScrolledWindow
.DoGetSize(*args
, **kw
)
5639 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
5640 "Please use PyScrolledWindow.DoGetSize instead.")
5642 def base_DoGetClientSize(*args
, **kw
):
5643 return PyScrolledWindow
.DoGetClientSize(*args
, **kw
)
5644 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
5645 "Please use PyScrolledWindow.DoGetClientSize instead.")
5647 def base_DoGetPosition(*args
, **kw
):
5648 return PyScrolledWindow
.DoGetPosition(*args
, **kw
)
5649 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
5650 "Please use PyScrolledWindow.DoGetPosition instead.")
5652 def base_DoGetVirtualSize(*args
, **kw
):
5653 return PyScrolledWindow
.DoGetVirtualSize(*args
, **kw
)
5654 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
5655 "Please use PyScrolledWindow.DoGetVirtualSize instead.")
5657 def base_DoGetBestSize(*args
, **kw
):
5658 return PyScrolledWindow
.DoGetBestSize(*args
, **kw
)
5659 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
5660 "Please use PyScrolledWindow.DoGetBestSize instead.")
5662 def base_InitDialog(*args
, **kw
):
5663 return PyScrolledWindow
.InitDialog(*args
, **kw
)
5664 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
5665 "Please use PyScrolledWindow.InitDialog instead.")
5667 def base_TransferDataToWindow(*args
, **kw
):
5668 return PyScrolledWindow
.TransferDataToWindow(*args
, **kw
)
5669 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
5670 "Please use PyScrolledWindow.TransferDataToWindow instead.")
5672 def base_TransferDataFromWindow(*args
, **kw
):
5673 return PyScrolledWindow
.TransferDataFromWindow(*args
, **kw
)
5674 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
5675 "Please use PyScrolledWindow.TransferDataFromWindow instead.")
5677 def base_Validate(*args
, **kw
):
5678 return PyScrolledWindow
.Validate(*args
, **kw
)
5679 base_Validate
= wx
._deprecated
(base_Validate
,
5680 "Please use PyScrolledWindow.Validate instead.")
5682 def base_AcceptsFocus(*args
, **kw
):
5683 return PyScrolledWindow
.AcceptsFocus(*args
, **kw
)
5684 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
5685 "Please use PyScrolledWindow.AcceptsFocus instead.")
5687 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
5688 return PyScrolledWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
5689 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
5690 "Please use PyScrolledWindow.AcceptsFocusFromKeyboard instead.")
5692 def base_GetMaxSize(*args
, **kw
):
5693 return PyScrolledWindow
.GetMaxSize(*args
, **kw
)
5694 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
5695 "Please use PyScrolledWindow.GetMaxSize instead.")
5697 def base_AddChild(*args
, **kw
):
5698 return PyScrolledWindow
.AddChild(*args
, **kw
)
5699 base_AddChild
= wx
._deprecated
(base_AddChild
,
5700 "Please use PyScrolledWindow.AddChild instead.")
5702 def base_RemoveChild(*args
, **kw
):
5703 return PyScrolledWindow
.RemoveChild(*args
, **kw
)
5704 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
5705 "Please use PyScrolledWindow.RemoveChild instead.")
5707 def base_ShouldInheritColours(*args
, **kw
):
5708 return PyScrolledWindow
.ShouldInheritColours(*args
, **kw
)
5709 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
5710 "Please use PyScrolledWindow.ShouldInheritColours instead.")
5712 def base_GetDefaultAttributes(*args
, **kw
):
5713 return PyScrolledWindow
.GetDefaultAttributes(*args
, **kw
)
5714 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
5715 "Please use PyScrolledWindow.GetDefaultAttributes instead.")
5717 def base_OnInternalIdle(*args
, **kw
):
5718 return PyScrolledWindow
.OnInternalIdle(*args
, **kw
)
5719 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
5720 "Please use PyScrolledWindow.OnInternalIdle instead.")
5722 _controls_
.PyControl_swigregister(PyControl
)
5724 def PrePyControl(*args
, **kwargs
):
5725 """PrePyControl() -> PyControl"""
5726 val
= _controls_
.new_PrePyControl(*args
, **kwargs
)
5729 #---------------------------------------------------------------------------
5731 wxEVT_HELP
= _controls_
.wxEVT_HELP
5732 wxEVT_DETAILED_HELP
= _controls_
.wxEVT_DETAILED_HELP
5733 EVT_HELP
= wx
.PyEventBinder( wxEVT_HELP
, 1)
5734 EVT_HELP_RANGE
= wx
.PyEventBinder( wxEVT_HELP
, 2)
5735 EVT_DETAILED_HELP
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 1)
5736 EVT_DETAILED_HELP_RANGE
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 2)
5738 class HelpEvent(_core
.CommandEvent
):
5740 A help event is sent when the user has requested context-sensitive
5741 help. This can either be caused by the application requesting
5742 context-sensitive help mode via wx.ContextHelp, or (on MS Windows) by
5743 the system generating a WM_HELP message when the user pressed F1 or
5744 clicked on the query button in a dialog caption.
5746 A help event is sent to the window that the user clicked on, and is
5747 propagated up the window hierarchy until the event is processed or
5748 there are no more event handlers. The application should call
5749 event.GetId to check the identity of the clicked-on window, and then
5750 either show some suitable help or call event.Skip if the identifier is
5751 unrecognised. Calling Skip is important because it allows wxWindows to
5752 generate further events for ancestors of the clicked-on
5753 window. Otherwise it would be impossible to show help for container
5754 windows, since processing would stop after the first window found.
5756 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5757 __repr__
= _swig_repr
5758 Origin_Unknown
= _controls_
.HelpEvent_Origin_Unknown
5759 Origin_Keyboard
= _controls_
.HelpEvent_Origin_Keyboard
5760 Origin_HelpButton
= _controls_
.HelpEvent_Origin_HelpButton
5761 def __init__(self
, *args
, **kwargs
):
5763 __init__(self, EventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition,
5764 int origin=Origin_Unknown) -> HelpEvent
5766 _controls_
.HelpEvent_swiginit(self
,_controls_
.new_HelpEvent(*args
, **kwargs
))
5767 def GetPosition(*args
, **kwargs
):
5769 GetPosition(self) -> Point
5771 Returns the left-click position of the mouse, in screen
5772 coordinates. This allows the application to position the help
5775 return _controls_
.HelpEvent_GetPosition(*args
, **kwargs
)
5777 def SetPosition(*args
, **kwargs
):
5779 SetPosition(self, Point pos)
5781 Sets the left-click position of the mouse, in screen coordinates.
5783 return _controls_
.HelpEvent_SetPosition(*args
, **kwargs
)
5785 def GetLink(*args
, **kwargs
):
5787 GetLink(self) -> String
5789 Get an optional link to further help
5791 return _controls_
.HelpEvent_GetLink(*args
, **kwargs
)
5793 def SetLink(*args
, **kwargs
):
5795 SetLink(self, String link)
5797 Set an optional link to further help
5799 return _controls_
.HelpEvent_SetLink(*args
, **kwargs
)
5801 def GetTarget(*args
, **kwargs
):
5803 GetTarget(self) -> String
5805 Get an optional target to display help in. E.g. a window specification
5807 return _controls_
.HelpEvent_GetTarget(*args
, **kwargs
)
5809 def SetTarget(*args
, **kwargs
):
5811 SetTarget(self, String target)
5813 Set an optional target to display help in. E.g. a window specification
5815 return _controls_
.HelpEvent_SetTarget(*args
, **kwargs
)
5817 def GetOrigin(*args
, **kwargs
):
5819 GetOrigin(self) -> int
5821 Optiononal indication of the source of the event.
5823 return _controls_
.HelpEvent_GetOrigin(*args
, **kwargs
)
5825 def SetOrigin(*args
, **kwargs
):
5826 """SetOrigin(self, int origin)"""
5827 return _controls_
.HelpEvent_SetOrigin(*args
, **kwargs
)
5829 _controls_
.HelpEvent_swigregister(HelpEvent
)
5831 class ContextHelp(_core
.Object
):
5833 This class changes the cursor to a query and puts the application into
5834 a 'context-sensitive help mode'. When the user left-clicks on a window
5835 within the specified window, a ``EVT_HELP`` event is sent to that
5836 control, and the application may respond to it by popping up some
5839 There are a couple of ways to invoke this behaviour implicitly:
5841 * Use the wx.WS_EX_CONTEXTHELP extended style for a dialog or frame
5842 (Windows only). This will put a question mark in the titlebar,
5843 and Windows will put the application into context-sensitive help
5844 mode automatically, with further programming.
5846 * Create a `wx.ContextHelpButton`, whose predefined behaviour is
5847 to create a context help object. Normally you will write your
5848 application so that this button is only added to a dialog for
5849 non-Windows platforms (use ``wx.WS_EX_CONTEXTHELP`` on
5852 :see: `wx.ContextHelpButton`
5855 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5856 __repr__
= _swig_repr
5857 def __init__(self
, *args
, **kwargs
):
5859 __init__(self, Window window=None, bool doNow=True) -> ContextHelp
5861 Constructs a context help object, calling BeginContextHelp if doNow is
5864 If window is None, the top window is used.
5866 _controls_
.ContextHelp_swiginit(self
,_controls_
.new_ContextHelp(*args
, **kwargs
))
5867 __swig_destroy__
= _controls_
.delete_ContextHelp
5868 __del__
= lambda self
: None;
5869 def BeginContextHelp(*args
, **kwargs
):
5871 BeginContextHelp(self, Window window=None) -> bool
5873 Puts the application into context-sensitive help mode. window is the
5874 window which will be used to catch events; if NULL, the top window
5877 Returns true if the application was successfully put into
5878 context-sensitive help mode. This function only returns when the event
5881 return _controls_
.ContextHelp_BeginContextHelp(*args
, **kwargs
)
5883 def EndContextHelp(*args
, **kwargs
):
5885 EndContextHelp(self) -> bool
5887 Ends context-sensitive help mode. Not normally called by the
5890 return _controls_
.ContextHelp_EndContextHelp(*args
, **kwargs
)
5892 _controls_
.ContextHelp_swigregister(ContextHelp
)
5894 class ContextHelpButton(BitmapButton
):
5896 Instances of this class may be used to add a question mark button that
5897 when pressed, puts the application into context-help mode. It does
5898 this by creating a wx.ContextHelp object which itself generates a
5899 ``EVT_HELP`` event when the user clicks on a window.
5901 On Windows, you may add a question-mark icon to a dialog by use of the
5902 ``wx.DIALOG_EX_CONTEXTHELP`` extra style, but on other platforms you
5903 will have to add a button explicitly, usually next to OK, Cancel or
5906 :see: `wx.ContextHelp`, `wx.ContextHelpButton`
5909 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5910 __repr__
= _swig_repr
5911 def __init__(self
, *args
, **kwargs
):
5913 __init__(self, Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
5914 Size size=DefaultSize, long style=BU_AUTODRAW) -> ContextHelpButton
5916 Constructor, creating and showing a context help button.
5918 _controls_
.ContextHelpButton_swiginit(self
,_controls_
.new_ContextHelpButton(*args
, **kwargs
))
5919 self
._setOORInfo
(self
)
5921 _controls_
.ContextHelpButton_swigregister(ContextHelpButton
)
5923 class HelpProvider(object):
5925 wx.HelpProvider is an abstract class used by a program
5926 implementing context-sensitive help to show the help text for the
5929 The current help provider must be explicitly set by the
5930 application using wx.HelpProvider.Set().
5932 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5933 def __init__(self
): raise AttributeError, "No constructor defined"
5934 __repr__
= _swig_repr
5935 __swig_destroy__
= _controls_
.delete_HelpProvider
5936 __del__
= lambda self
: None;
5937 def Set(*args
, **kwargs
):
5939 Set(HelpProvider helpProvider) -> HelpProvider
5941 Sset the current, application-wide help provider. Returns the previous
5942 one. Unlike some other classes, the help provider is not created on
5943 demand. This must be explicitly done by the application.
5945 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5947 Set
= staticmethod(Set
)
5948 def Get(*args
, **kwargs
):
5950 Get() -> HelpProvider
5952 Return the current application-wide help provider.
5954 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
5956 Get
= staticmethod(Get
)
5957 def GetHelp(*args
, **kwargs
):
5959 GetHelp(self, Window window) -> String
5961 Gets the help string for this window. Its interpretation is dependent
5962 on the help provider except that empty string always means that no
5963 help is associated with the window.
5965 return _controls_
.HelpProvider_GetHelp(*args
, **kwargs
)
5967 def ShowHelp(*args
, **kwargs
):
5969 ShowHelp(self, Window window) -> bool
5971 Shows help for the given window. Uses GetHelp internally if
5972 applicable. Returns True if it was done, or False if no help was
5973 available for this window.
5975 return _controls_
.HelpProvider_ShowHelp(*args
, **kwargs
)
5977 def ShowHelpAtPoint(*args
, **kwargs
):
5979 ShowHelpAtPoint(self, wxWindowBase window, Point pt, int origin) -> bool
5981 Show help for the given window (uses window.GetHelpAtPoint()
5982 internally if applicable), return true if it was done or false if no
5983 help available for this window.
5985 return _controls_
.HelpProvider_ShowHelpAtPoint(*args
, **kwargs
)
5987 def AddHelp(*args
, **kwargs
):
5989 AddHelp(self, Window window, String text)
5991 Associates the text with the given window.
5993 return _controls_
.HelpProvider_AddHelp(*args
, **kwargs
)
5995 def AddHelpById(*args
, **kwargs
):
5997 AddHelpById(self, int id, String text)
5999 This version associates the given text with all windows with this
6000 id. May be used to set the same help string for all Cancel buttons in
6001 the application, for example.
6003 return _controls_
.HelpProvider_AddHelpById(*args
, **kwargs
)
6005 def RemoveHelp(*args
, **kwargs
):
6007 RemoveHelp(self, Window window)
6009 Removes the association between the window pointer and the help
6010 text. This is called by the wx.Window destructor. Without this, the
6011 table of help strings will fill up and when window pointers are
6012 reused, the wrong help string will be found.
6014 return _controls_
.HelpProvider_RemoveHelp(*args
, **kwargs
)
6016 def Destroy(*args
, **kwargs
):
6018 val
= _controls_
.HelpProvider_Destroy(*args
, **kwargs
)
6022 _controls_
.HelpProvider_swigregister(HelpProvider
)
6024 def HelpProvider_Set(*args
, **kwargs
):
6026 HelpProvider_Set(HelpProvider helpProvider) -> HelpProvider
6028 Sset the current, application-wide help provider. Returns the previous
6029 one. Unlike some other classes, the help provider is not created on
6030 demand. This must be explicitly done by the application.
6032 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
6034 def HelpProvider_Get(*args
):
6036 HelpProvider_Get() -> HelpProvider
6038 Return the current application-wide help provider.
6040 return _controls_
.HelpProvider_Get(*args
)
6042 class SimpleHelpProvider(HelpProvider
):
6044 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6045 supports only plain text help strings, and shows the string associated
6046 with the control (if any) in a tooltip.
6048 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6049 __repr__
= _swig_repr
6050 def __init__(self
, *args
, **kwargs
):
6052 __init__(self) -> SimpleHelpProvider
6054 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6055 supports only plain text help strings, and shows the string associated
6056 with the control (if any) in a tooltip.
6058 _controls_
.SimpleHelpProvider_swiginit(self
,_controls_
.new_SimpleHelpProvider(*args
, **kwargs
))
6059 _controls_
.SimpleHelpProvider_swigregister(SimpleHelpProvider
)
6061 #---------------------------------------------------------------------------
6063 class DragImage(_core
.Object
):
6064 """Proxy of C++ DragImage class"""
6065 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6066 __repr__
= _swig_repr
6067 def __init__(self
, *args
, **kwargs
):
6068 """__init__(self, Bitmap image, Cursor cursor=wxNullCursor) -> DragImage"""
6069 _controls_
.DragImage_swiginit(self
,_controls_
.new_DragImage(*args
, **kwargs
))
6070 __swig_destroy__
= _controls_
.delete_DragImage
6071 __del__
= lambda self
: None;
6072 def SetBackingBitmap(*args
, **kwargs
):
6073 """SetBackingBitmap(self, Bitmap bitmap)"""
6074 return _controls_
.DragImage_SetBackingBitmap(*args
, **kwargs
)
6076 def BeginDrag(*args
, **kwargs
):
6078 BeginDrag(self, Point hotspot, Window window, bool fullScreen=False,
6079 Rect rect=None) -> bool
6081 return _controls_
.DragImage_BeginDrag(*args
, **kwargs
)
6083 def BeginDragBounded(*args
, **kwargs
):
6084 """BeginDragBounded(self, Point hotspot, Window window, Window boundingWindow) -> bool"""
6085 return _controls_
.DragImage_BeginDragBounded(*args
, **kwargs
)
6087 def EndDrag(*args
, **kwargs
):
6088 """EndDrag(self) -> bool"""
6089 return _controls_
.DragImage_EndDrag(*args
, **kwargs
)
6091 def Move(*args
, **kwargs
):
6092 """Move(self, Point pt) -> bool"""
6093 return _controls_
.DragImage_Move(*args
, **kwargs
)
6095 def Show(*args
, **kwargs
):
6096 """Show(self) -> bool"""
6097 return _controls_
.DragImage_Show(*args
, **kwargs
)
6099 def Hide(*args
, **kwargs
):
6100 """Hide(self) -> bool"""
6101 return _controls_
.DragImage_Hide(*args
, **kwargs
)
6103 def GetImageRect(*args
, **kwargs
):
6104 """GetImageRect(self, Point pos) -> Rect"""
6105 return _controls_
.DragImage_GetImageRect(*args
, **kwargs
)
6107 def DoDrawImage(*args
, **kwargs
):
6108 """DoDrawImage(self, DC dc, Point pos) -> bool"""
6109 return _controls_
.DragImage_DoDrawImage(*args
, **kwargs
)
6111 def UpdateBackingFromWindow(*args
, **kwargs
):
6112 """UpdateBackingFromWindow(self, DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -> bool"""
6113 return _controls_
.DragImage_UpdateBackingFromWindow(*args
, **kwargs
)
6115 def RedrawImage(*args
, **kwargs
):
6116 """RedrawImage(self, Point oldPos, Point newPos, bool eraseOld, bool drawNew) -> bool"""
6117 return _controls_
.DragImage_RedrawImage(*args
, **kwargs
)
6119 ImageRect
= property(GetImageRect
,doc
="See `GetImageRect`")
6120 _controls_
.DragImage_swigregister(DragImage
)
6122 def DragIcon(*args
, **kwargs
):
6123 """DragIcon(Icon image, Cursor cursor=wxNullCursor) -> DragImage"""
6124 val
= _controls_
.new_DragIcon(*args
, **kwargs
)
6127 def DragString(*args
, **kwargs
):
6128 """DragString(String str, Cursor cursor=wxNullCursor) -> DragImage"""
6129 val
= _controls_
.new_DragString(*args
, **kwargs
)
6132 def DragTreeItem(*args
, **kwargs
):
6133 """DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -> DragImage"""
6134 val
= _controls_
.new_DragTreeItem(*args
, **kwargs
)
6137 def DragListItem(*args
, **kwargs
):
6138 """DragListItem(ListCtrl listCtrl, long id) -> DragImage"""
6139 val
= _controls_
.new_DragListItem(*args
, **kwargs
)
6142 #---------------------------------------------------------------------------
6144 DP_DEFAULT
= _controls_
.DP_DEFAULT
6145 DP_SPIN
= _controls_
.DP_SPIN
6146 DP_DROPDOWN
= _controls_
.DP_DROPDOWN
6147 DP_SHOWCENTURY
= _controls_
.DP_SHOWCENTURY
6148 DP_ALLOWNONE
= _controls_
.DP_ALLOWNONE
6149 class DatePickerCtrl(_core
.Control
):
6151 This control allows the user to select a date. Unlike
6152 `wx.calendar.CalendarCtrl`, which is a relatively big control,
6153 `wx.DatePickerCtrl` is implemented as a small window showing the
6154 currently selected date. The control can be edited using the keyboard,
6155 and can also display a popup window for more user-friendly date
6156 selection, depending on the styles used and the platform.
6158 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6159 __repr__
= _swig_repr
6160 def __init__(self
, *args
, **kwargs
):
6162 __init__(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6163 Point pos=DefaultPosition, Size size=DefaultSize,
6164 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6165 Validator validator=DefaultValidator,
6166 String name=DatePickerCtrlNameStr) -> DatePickerCtrl
6168 Create a new DatePickerCtrl.
6170 _controls_
.DatePickerCtrl_swiginit(self
,_controls_
.new_DatePickerCtrl(*args
, **kwargs
))
6171 self
._setOORInfo
(self
)
6173 def Create(*args
, **kwargs
):
6175 Create(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6176 Point pos=DefaultPosition, Size size=DefaultSize,
6177 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6178 Validator validator=DefaultValidator,
6179 String name=DatePickerCtrlNameStr) -> bool
6181 Create the GUI parts of the DatePickerCtrl, for use in 2-phase
6184 return _controls_
.DatePickerCtrl_Create(*args
, **kwargs
)
6186 def SetValue(*args
, **kwargs
):
6188 SetValue(self, DateTime dt)
6190 Changes the current value of the control. The date should be valid and
6191 included in the currently selected range, if any.
6193 Calling this method does not result in a date change event.
6195 return _controls_
.DatePickerCtrl_SetValue(*args
, **kwargs
)
6197 def GetValue(*args
, **kwargs
):
6199 GetValue(self) -> DateTime
6201 Returns the currently selected date. If there is no selection or the
6202 selection is outside of the current range, an invalid `wx.DateTime`
6205 return _controls_
.DatePickerCtrl_GetValue(*args
, **kwargs
)
6207 def SetRange(*args
, **kwargs
):
6209 SetRange(self, DateTime dt1, DateTime dt2)
6211 Sets the valid range for the date selection. If dt1 is valid, it
6212 becomes the earliest date (inclusive) accepted by the control. If dt2
6213 is valid, it becomes the latest possible date.
6215 If the current value of the control is outside of the newly set range
6216 bounds, the behaviour is undefined.
6218 return _controls_
.DatePickerCtrl_SetRange(*args
, **kwargs
)
6220 def GetLowerLimit(*args
, **kwargs
):
6222 GetLowerLimit(self) -> DateTime
6224 Get the lower limit of the valid range for the date selection, if any.
6225 If there is no range or there is no lower limit, then the
6226 `wx.DateTime` value returned will be invalid.
6228 return _controls_
.DatePickerCtrl_GetLowerLimit(*args
, **kwargs
)
6230 def GetUpperLimit(*args
, **kwargs
):
6232 GetUpperLimit(self) -> DateTime
6234 Get the upper limit of the valid range for the date selection, if any.
6235 If there is no range or there is no upper limit, then the
6236 `wx.DateTime` value returned will be invalid.
6238 return _controls_
.DatePickerCtrl_GetUpperLimit(*args
, **kwargs
)
6240 LowerLimit
= property(GetLowerLimit
,doc
="See `GetLowerLimit`")
6241 UpperLimit
= property(GetUpperLimit
,doc
="See `GetUpperLimit`")
6242 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
6243 _controls_
.DatePickerCtrl_swigregister(DatePickerCtrl
)
6244 DatePickerCtrlNameStr
= cvar
.DatePickerCtrlNameStr
6246 def PreDatePickerCtrl(*args
, **kwargs
):
6248 PreDatePickerCtrl() -> DatePickerCtrl
6250 Precreate a DatePickerCtrl for use in 2-phase creation.
6252 val
= _controls_
.new_PreDatePickerCtrl(*args
, **kwargs
)
6255 HL_CONTEXTMENU
= _controls_
.HL_CONTEXTMENU
6256 HL_DEFAULT_STYLE
= _controls_
.HL_DEFAULT_STYLE
6257 #---------------------------------------------------------------------------
6259 class HyperlinkCtrl(_core
.Control
):
6261 A static text control that emulates a hyperlink. The link is displayed
6262 in an appropriate text style, derived from the control's normal font.
6263 When the mouse rolls over the link, the cursor changes to a hand and
6264 the link's color changes to the active color.
6266 Clicking on the link does not launch a web browser; instead, a
6267 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6271 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6272 __repr__
= _swig_repr
6273 def __init__(self
, *args
, **kwargs
):
6275 __init__(self, Window parent, int id, String label, String url, Point pos=DefaultPosition,
6276 Size size=DefaultSize,
6277 long style=HL_DEFAULT_STYLE, String name=HyperlinkCtrlNameStr) -> HyperlinkCtrl
6279 A static text control that emulates a hyperlink. The link is displayed
6280 in an appropriate text style, derived from the control's normal font.
6281 When the mouse rolls over the link, the cursor changes to a hand and
6282 the link's color changes to the active color.
6284 Clicking on the link does not launch a web browser; instead, a
6285 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6289 _controls_
.HyperlinkCtrl_swiginit(self
,_controls_
.new_HyperlinkCtrl(*args
, **kwargs
))
6290 self
._setOORInfo
(self
)
6292 def Create(*args
, **kwargs
):
6294 Create(self, Window parent, int id, String label, String url, Point pos=DefaultPosition,
6295 Size size=DefaultSize,
6296 long style=HL_DEFAULT_STYLE, String name=HyperlinkCtrlNameStr) -> bool
6298 return _controls_
.HyperlinkCtrl_Create(*args
, **kwargs
)
6300 def GetHoverColour(*args
, **kwargs
):
6301 """GetHoverColour(self) -> Colour"""
6302 return _controls_
.HyperlinkCtrl_GetHoverColour(*args
, **kwargs
)
6304 def SetHoverColour(*args
, **kwargs
):
6305 """SetHoverColour(self, Colour colour)"""
6306 return _controls_
.HyperlinkCtrl_SetHoverColour(*args
, **kwargs
)
6308 def GetNormalColour(*args
, **kwargs
):
6309 """GetNormalColour(self) -> Colour"""
6310 return _controls_
.HyperlinkCtrl_GetNormalColour(*args
, **kwargs
)
6312 def SetNormalColour(*args
, **kwargs
):
6313 """SetNormalColour(self, Colour colour)"""
6314 return _controls_
.HyperlinkCtrl_SetNormalColour(*args
, **kwargs
)
6316 def GetVisitedColour(*args
, **kwargs
):
6317 """GetVisitedColour(self) -> Colour"""
6318 return _controls_
.HyperlinkCtrl_GetVisitedColour(*args
, **kwargs
)
6320 def SetVisitedColour(*args
, **kwargs
):
6321 """SetVisitedColour(self, Colour colour)"""
6322 return _controls_
.HyperlinkCtrl_SetVisitedColour(*args
, **kwargs
)
6324 def GetURL(*args
, **kwargs
):
6325 """GetURL(self) -> String"""
6326 return _controls_
.HyperlinkCtrl_GetURL(*args
, **kwargs
)
6328 def SetURL(*args
, **kwargs
):
6329 """SetURL(self, String url)"""
6330 return _controls_
.HyperlinkCtrl_SetURL(*args
, **kwargs
)
6332 def SetVisited(*args
, **kwargs
):
6333 """SetVisited(self, bool visited=True)"""
6334 return _controls_
.HyperlinkCtrl_SetVisited(*args
, **kwargs
)
6336 def GetVisited(*args
, **kwargs
):
6337 """GetVisited(self) -> bool"""
6338 return _controls_
.HyperlinkCtrl_GetVisited(*args
, **kwargs
)
6340 _controls_
.HyperlinkCtrl_swigregister(HyperlinkCtrl
)
6341 HyperlinkCtrlNameStr
= cvar
.HyperlinkCtrlNameStr
6343 def PreHyperlinkCtrl(*args
, **kwargs
):
6345 PreHyperlinkCtrl() -> HyperlinkCtrl
6347 A static text control that emulates a hyperlink. The link is displayed
6348 in an appropriate text style, derived from the control's normal font.
6349 When the mouse rolls over the link, the cursor changes to a hand and
6350 the link's color changes to the active color.
6352 Clicking on the link does not launch a web browser; instead, a
6353 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6357 val
= _controls_
.new_PreHyperlinkCtrl(*args
, **kwargs
)
6360 wxEVT_COMMAND_HYPERLINK
= _controls_
.wxEVT_COMMAND_HYPERLINK
6361 class HyperlinkEvent(_core
.CommandEvent
):
6362 """Proxy of C++ HyperlinkEvent class"""
6363 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6364 __repr__
= _swig_repr
6365 def __init__(self
, *args
, **kwargs
):
6366 """__init__(self, Object generator, int id, String url) -> HyperlinkEvent"""
6367 _controls_
.HyperlinkEvent_swiginit(self
,_controls_
.new_HyperlinkEvent(*args
, **kwargs
))
6368 def GetURL(*args
, **kwargs
):
6369 """GetURL(self) -> String"""
6370 return _controls_
.HyperlinkEvent_GetURL(*args
, **kwargs
)
6372 def SetURL(*args
, **kwargs
):
6373 """SetURL(self, String url)"""
6374 return _controls_
.HyperlinkEvent_SetURL(*args
, **kwargs
)
6376 _controls_
.HyperlinkEvent_swigregister(HyperlinkEvent
)
6378 EVT_HYPERLINK
= wx
.PyEventBinder( wxEVT_COMMAND_HYPERLINK
, 1 )
6380 #---------------------------------------------------------------------------
6382 PB_USE_TEXTCTRL
= _controls_
.PB_USE_TEXTCTRL
6383 class PickerBase(_core
.Control
):
6385 Base abstract class for all pickers which support an auxiliary text
6386 control. This class handles all positioning and sizing of the text
6387 control like a an horizontal `wx.BoxSizer` would do, with the text
6388 control on the left of the picker button and the proportion of the
6389 picker fixed to value 1.
6391 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6392 def __init__(self
): raise AttributeError, "No constructor defined"
6393 __repr__
= _swig_repr
6394 def CreateBase(*args
, **kwargs
):
6396 CreateBase(self, Window parent, int id, String text=wxEmptyString, Point pos=DefaultPosition,
6397 Size size=DefaultSize,
6398 long style=0, Validator validator=DefaultValidator,
6399 String name=wxButtonNameStr) -> bool
6401 return _controls_
.PickerBase_CreateBase(*args
, **kwargs
)
6403 def SetInternalMargin(*args
, **kwargs
):
6405 SetInternalMargin(self, int newmargin)
6407 Sets the margin (in pixels) between the picker and the text control.
6409 return _controls_
.PickerBase_SetInternalMargin(*args
, **kwargs
)
6411 def GetInternalMargin(*args
, **kwargs
):
6413 GetInternalMargin(self) -> int
6415 Returns the margin (in pixels) between the picker and the text
6418 return _controls_
.PickerBase_GetInternalMargin(*args
, **kwargs
)
6420 def SetTextCtrlProportion(*args
, **kwargs
):
6422 SetTextCtrlProportion(self, int prop)
6424 Sets the proportion between the text control and the picker button.
6425 This is used to set relative sizes of the text contorl and the picker.
6426 The value passed to this function must be >= 1.
6428 return _controls_
.PickerBase_SetTextCtrlProportion(*args
, **kwargs
)
6430 def GetTextCtrlProportion(*args
, **kwargs
):
6432 GetTextCtrlProportion(self) -> int
6434 Returns the proportion between the text control and the picker.
6436 return _controls_
.PickerBase_GetTextCtrlProportion(*args
, **kwargs
)
6438 def SetPickerCtrlProportion(*args
, **kwargs
):
6440 SetPickerCtrlProportion(self, int prop)
6442 Sets the proportion value of the picker.
6444 return _controls_
.PickerBase_SetPickerCtrlProportion(*args
, **kwargs
)
6446 def GetPickerCtrlProportion(*args
, **kwargs
):
6448 GetPickerCtrlProportion(self) -> int
6450 Gets the proportion value of the picker.
6452 return _controls_
.PickerBase_GetPickerCtrlProportion(*args
, **kwargs
)
6454 def IsTextCtrlGrowable(*args
, **kwargs
):
6455 """IsTextCtrlGrowable(self) -> bool"""
6456 return _controls_
.PickerBase_IsTextCtrlGrowable(*args
, **kwargs
)
6458 def SetTextCtrlGrowable(*args
, **kwargs
):
6459 """SetTextCtrlGrowable(self, bool grow=True)"""
6460 return _controls_
.PickerBase_SetTextCtrlGrowable(*args
, **kwargs
)
6462 def IsPickerCtrlGrowable(*args
, **kwargs
):
6463 """IsPickerCtrlGrowable(self) -> bool"""
6464 return _controls_
.PickerBase_IsPickerCtrlGrowable(*args
, **kwargs
)
6466 def SetPickerCtrlGrowable(*args
, **kwargs
):
6467 """SetPickerCtrlGrowable(self, bool grow=True)"""
6468 return _controls_
.PickerBase_SetPickerCtrlGrowable(*args
, **kwargs
)
6470 def HasTextCtrl(*args
, **kwargs
):
6472 HasTextCtrl(self) -> bool
6474 Returns true if this class has a valid text control (i.e. if the
6475 wx.PB_USE_TEXTCTRL style was given when creating this control).
6477 return _controls_
.PickerBase_HasTextCtrl(*args
, **kwargs
)
6479 def GetTextCtrl(*args
, **kwargs
):
6481 GetTextCtrl(self) -> TextCtrl
6483 Returns a pointer to the text control handled by this class or None if
6484 the wx.PB_USE_TEXTCTRL style was not specified when this control was
6487 Very important: the contents of the text control could be containing
6488 an invalid representation of the entity which can be chosen through
6489 the picker (e.g. the user entered an invalid colour syntax because of
6490 a typo). Thus you should never parse the content of the textctrl to
6491 get the user's input; rather use the derived-class getter
6492 (e.g. `wx.ColourPickerCtrl.GetColour`, `wx.FilePickerCtrl.GetPath`,
6495 return _controls_
.PickerBase_GetTextCtrl(*args
, **kwargs
)
6497 def GetPickerCtrl(*args
, **kwargs
):
6498 """GetPickerCtrl(self) -> Control"""
6499 return _controls_
.PickerBase_GetPickerCtrl(*args
, **kwargs
)
6501 _controls_
.PickerBase_swigregister(PickerBase
)
6503 #---------------------------------------------------------------------------
6505 CLRP_SHOW_LABEL
= _controls_
.CLRP_SHOW_LABEL
6506 CLRP_USE_TEXTCTRL
= _controls_
.CLRP_USE_TEXTCTRL
6507 CLRP_DEFAULT_STYLE
= _controls_
.CLRP_DEFAULT_STYLE
6508 class ColourPickerCtrl(PickerBase
):
6510 This control allows the user to select a colour. The generic
6511 implementation is a button which brings up a `wx.ColourDialog` when
6512 clicked. Native implementations may differ but this is usually a
6513 (small) widget which give access to the colour-chooser dialog.
6515 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6516 __repr__
= _swig_repr
6517 def __init__(self
, *args
, **kwargs
):
6519 __init__(self, Window parent, int id=-1, Colour col=*wxBLACK, Point pos=DefaultPosition,
6520 Size size=DefaultSize,
6521 long style=CLRP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6522 String name=ColourPickerCtrlNameStr) -> ColourPickerCtrl
6524 This control allows the user to select a colour. The generic
6525 implementation is a button which brings up a `wx.ColourDialog` when
6526 clicked. Native implementations may differ but this is usually a
6527 (small) widget which give access to the colour-chooser dialog.
6529 _controls_
.ColourPickerCtrl_swiginit(self
,_controls_
.new_ColourPickerCtrl(*args
, **kwargs
))
6530 self
._setOORInfo
(self
)
6532 def Create(*args
, **kwargs
):
6534 Create(self, Window parent, int id, Colour col=*wxBLACK, Point pos=DefaultPosition,
6535 Size size=DefaultSize, long style=CLRP_DEFAULT_STYLE,
6536 Validator validator=DefaultValidator,
6537 String name=ColourPickerCtrlNameStr) -> bool
6539 return _controls_
.ColourPickerCtrl_Create(*args
, **kwargs
)
6541 def GetColour(*args
, **kwargs
):
6543 GetColour(self) -> Colour
6545 Returns the currently selected colour.
6547 return _controls_
.ColourPickerCtrl_GetColour(*args
, **kwargs
)
6549 def SetColour(*args
, **kwargs
):
6551 SetColour(self, Colour col)
6553 Set the displayed colour.
6555 return _controls_
.ColourPickerCtrl_SetColour(*args
, **kwargs
)
6557 Colour
= property(GetColour
,SetColour
,doc
="See `GetColour` and `SetColour`")
6558 _controls_
.ColourPickerCtrl_swigregister(ColourPickerCtrl
)
6559 ColourPickerCtrlNameStr
= cvar
.ColourPickerCtrlNameStr
6561 def PreColourPickerCtrl(*args
, **kwargs
):
6563 PreColourPickerCtrl() -> ColourPickerCtrl
6565 This control allows the user to select a colour. The generic
6566 implementation is a button which brings up a `wx.ColourDialog` when
6567 clicked. Native implementations may differ but this is usually a
6568 (small) widget which give access to the colour-chooser dialog.
6570 val
= _controls_
.new_PreColourPickerCtrl(*args
, **kwargs
)
6573 wxEVT_COMMAND_COLOURPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_COLOURPICKER_CHANGED
6574 EVT_COLOURPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_COLOURPICKER_CHANGED
, 1 )
6576 class ColourPickerEvent(_core
.CommandEvent
):
6577 """Proxy of C++ ColourPickerEvent class"""
6578 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6579 __repr__
= _swig_repr
6580 def __init__(self
, *args
, **kwargs
):
6581 """__init__(self, Object generator, int id, Colour col) -> ColourPickerEvent"""
6582 _controls_
.ColourPickerEvent_swiginit(self
,_controls_
.new_ColourPickerEvent(*args
, **kwargs
))
6583 def GetColour(*args
, **kwargs
):
6584 """GetColour(self) -> Colour"""
6585 return _controls_
.ColourPickerEvent_GetColour(*args
, **kwargs
)
6587 def SetColour(*args
, **kwargs
):
6588 """SetColour(self, Colour c)"""
6589 return _controls_
.ColourPickerEvent_SetColour(*args
, **kwargs
)
6591 Colour
= property(GetColour
,SetColour
,doc
="See `GetColour` and `SetColour`")
6592 _controls_
.ColourPickerEvent_swigregister(ColourPickerEvent
)
6594 #---------------------------------------------------------------------------
6596 FLP_OPEN
= _controls_
.FLP_OPEN
6597 FLP_SAVE
= _controls_
.FLP_SAVE
6598 FLP_OVERWRITE_PROMPT
= _controls_
.FLP_OVERWRITE_PROMPT
6599 FLP_FILE_MUST_EXIST
= _controls_
.FLP_FILE_MUST_EXIST
6600 FLP_CHANGE_DIR
= _controls_
.FLP_CHANGE_DIR
6601 DIRP_DIR_MUST_EXIST
= _controls_
.DIRP_DIR_MUST_EXIST
6602 DIRP_CHANGE_DIR
= _controls_
.DIRP_CHANGE_DIR
6603 FLP_USE_TEXTCTRL
= _controls_
.FLP_USE_TEXTCTRL
6604 FLP_DEFAULT_STYLE
= _controls_
.FLP_DEFAULT_STYLE
6605 DIRP_USE_TEXTCTRL
= _controls_
.DIRP_USE_TEXTCTRL
6606 DIRP_DEFAULT_STYLE
= _controls_
.DIRP_DEFAULT_STYLE
6607 class FilePickerCtrl(PickerBase
):
6608 """Proxy of C++ FilePickerCtrl class"""
6609 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6610 __repr__
= _swig_repr
6611 def __init__(self
, *args
, **kwargs
):
6613 __init__(self, Window parent, int id=-1, String path=EmptyString,
6614 String message=FileSelectorPromptStr, String wildcard=FileSelectorDefaultWildcardStr,
6615 Point pos=DefaultPosition,
6616 Size size=DefaultSize,
6617 long style=FLP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6618 String name=FilePickerCtrlNameStr) -> FilePickerCtrl
6620 _controls_
.FilePickerCtrl_swiginit(self
,_controls_
.new_FilePickerCtrl(*args
, **kwargs
))
6621 self
._setOORInfo
(self
)
6623 def Create(*args
, **kwargs
):
6625 Create(self, Window parent, int id=-1, String path=EmptyString,
6626 String message=FileSelectorPromptStr, String wildcard=FileSelectorDefaultWildcardStr,
6627 Point pos=DefaultPosition,
6628 Size size=DefaultSize,
6629 long style=FLP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6630 String name=FilePickerCtrlNameStr) -> bool
6632 return _controls_
.FilePickerCtrl_Create(*args
, **kwargs
)
6634 def GetPath(*args
, **kwargs
):
6635 """GetPath(self) -> String"""
6636 return _controls_
.FilePickerCtrl_GetPath(*args
, **kwargs
)
6638 def SetPath(*args
, **kwargs
):
6639 """SetPath(self, String str)"""
6640 return _controls_
.FilePickerCtrl_SetPath(*args
, **kwargs
)
6642 def CheckPath(*args
, **kwargs
):
6643 """CheckPath(self, String path) -> bool"""
6644 return _controls_
.FilePickerCtrl_CheckPath(*args
, **kwargs
)
6646 def GetTextCtrlValue(*args
, **kwargs
):
6647 """GetTextCtrlValue(self) -> String"""
6648 return _controls_
.FilePickerCtrl_GetTextCtrlValue(*args
, **kwargs
)
6650 _controls_
.FilePickerCtrl_swigregister(FilePickerCtrl
)
6651 FilePickerCtrlNameStr
= cvar
.FilePickerCtrlNameStr
6652 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
6653 DirPickerCtrlNameStr
= cvar
.DirPickerCtrlNameStr
6654 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
6655 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
6657 def PreFilePickerCtrl(*args
, **kwargs
):
6658 """PreFilePickerCtrl() -> FilePickerCtrl"""
6659 val
= _controls_
.new_PreFilePickerCtrl(*args
, **kwargs
)
6662 class DirPickerCtrl(PickerBase
):
6663 """Proxy of C++ DirPickerCtrl class"""
6664 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6665 __repr__
= _swig_repr
6666 def __init__(self
, *args
, **kwargs
):
6668 __init__(self, Window parent, int id=-1, String path=EmptyString,
6669 String message=DirSelectorPromptStr, Point pos=DefaultPosition,
6670 Size size=DefaultSize, long style=DIRP_DEFAULT_STYLE,
6671 Validator validator=DefaultValidator,
6672 String name=DirPickerCtrlNameStr) -> DirPickerCtrl
6674 _controls_
.DirPickerCtrl_swiginit(self
,_controls_
.new_DirPickerCtrl(*args
, **kwargs
))
6675 self
._setOORInfo
(self
)
6677 def Create(*args
, **kwargs
):
6679 Create(self, Window parent, int id=-1, String path=EmptyString,
6680 String message=DirSelectorPromptStr, Point pos=DefaultPosition,
6681 Size size=DefaultSize, long style=DIRP_DEFAULT_STYLE,
6682 Validator validator=DefaultValidator,
6683 String name=DirPickerCtrlNameStr) -> bool
6685 return _controls_
.DirPickerCtrl_Create(*args
, **kwargs
)
6687 def GetPath(*args
, **kwargs
):
6688 """GetPath(self) -> String"""
6689 return _controls_
.DirPickerCtrl_GetPath(*args
, **kwargs
)
6691 def SetPath(*args
, **kwargs
):
6692 """SetPath(self, String str)"""
6693 return _controls_
.DirPickerCtrl_SetPath(*args
, **kwargs
)
6695 def CheckPath(*args
, **kwargs
):
6696 """CheckPath(self, String path) -> bool"""
6697 return _controls_
.DirPickerCtrl_CheckPath(*args
, **kwargs
)
6699 def GetTextCtrlValue(*args
, **kwargs
):
6700 """GetTextCtrlValue(self) -> String"""
6701 return _controls_
.DirPickerCtrl_GetTextCtrlValue(*args
, **kwargs
)
6703 Path
= property(GetPath
,SetPath
,doc
="See `GetPath` and `SetPath`")
6704 TextCtrlValue
= property(GetTextCtrlValue
,doc
="See `GetTextCtrlValue`")
6705 _controls_
.DirPickerCtrl_swigregister(DirPickerCtrl
)
6707 def PreDirPickerCtrl(*args
, **kwargs
):
6708 """PreDirPickerCtrl() -> DirPickerCtrl"""
6709 val
= _controls_
.new_PreDirPickerCtrl(*args
, **kwargs
)
6712 wxEVT_COMMAND_FILEPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_FILEPICKER_CHANGED
6713 wxEVT_COMMAND_DIRPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_DIRPICKER_CHANGED
6714 EVT_FILEPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_FILEPICKER_CHANGED
, 1 )
6715 EVT_DIRPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_DIRPICKER_CHANGED
, 1 )
6717 class FileDirPickerEvent(_core
.CommandEvent
):
6718 """Proxy of C++ FileDirPickerEvent class"""
6719 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6720 __repr__
= _swig_repr
6721 def __init__(self
, *args
, **kwargs
):
6722 """__init__(self, EventType type, Object generator, int id, String path) -> FileDirPickerEvent"""
6723 _controls_
.FileDirPickerEvent_swiginit(self
,_controls_
.new_FileDirPickerEvent(*args
, **kwargs
))
6724 def GetPath(*args
, **kwargs
):
6725 """GetPath(self) -> String"""
6726 return _controls_
.FileDirPickerEvent_GetPath(*args
, **kwargs
)
6728 def SetPath(*args
, **kwargs
):
6729 """SetPath(self, String p)"""
6730 return _controls_
.FileDirPickerEvent_SetPath(*args
, **kwargs
)
6732 _controls_
.FileDirPickerEvent_swigregister(FileDirPickerEvent
)
6734 #---------------------------------------------------------------------------
6736 FNTP_FONTDESC_AS_LABEL
= _controls_
.FNTP_FONTDESC_AS_LABEL
6737 FNTP_USEFONT_FOR_LABEL
= _controls_
.FNTP_USEFONT_FOR_LABEL
6738 FNTP_USE_TEXTCTRL
= _controls_
.FNTP_USE_TEXTCTRL
6739 FNTP_DEFAULT_STYLE
= _controls_
.FNTP_DEFAULT_STYLE
6740 class FontPickerCtrl(PickerBase
):
6741 """Proxy of C++ FontPickerCtrl class"""
6742 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6743 __repr__
= _swig_repr
6744 def __init__(self
, *args
, **kwargs
):
6746 __init__(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
6747 Point pos=DefaultPosition, Size size=DefaultSize,
6748 long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6749 String name=FontPickerCtrlNameStr) -> FontPickerCtrl
6751 _controls_
.FontPickerCtrl_swiginit(self
,_controls_
.new_FontPickerCtrl(*args
, **kwargs
))
6752 self
._setOORInfo
(self
)
6754 def Create(*args
, **kwargs
):
6756 Create(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
6757 Point pos=DefaultPosition, Size size=DefaultSize,
6758 long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6759 String name=FontPickerCtrlNameStr) -> bool
6761 return _controls_
.FontPickerCtrl_Create(*args
, **kwargs
)
6763 def GetSelectedFont(*args
, **kwargs
):
6764 """GetSelectedFont(self) -> Font"""
6765 return _controls_
.FontPickerCtrl_GetSelectedFont(*args
, **kwargs
)
6767 def SetSelectedFont(*args
, **kwargs
):
6768 """SetSelectedFont(self, Font f)"""
6769 return _controls_
.FontPickerCtrl_SetSelectedFont(*args
, **kwargs
)
6771 def SetMaxPointSize(*args
, **kwargs
):
6772 """SetMaxPointSize(self, unsigned int max)"""
6773 return _controls_
.FontPickerCtrl_SetMaxPointSize(*args
, **kwargs
)
6775 def GetMaxPointSize(*args
, **kwargs
):
6776 """GetMaxPointSize(self) -> unsigned int"""
6777 return _controls_
.FontPickerCtrl_GetMaxPointSize(*args
, **kwargs
)
6779 _controls_
.FontPickerCtrl_swigregister(FontPickerCtrl
)
6780 FontPickerCtrlNameStr
= cvar
.FontPickerCtrlNameStr
6782 def PreFontPickerCtrl(*args
, **kwargs
):
6783 """PreFontPickerCtrl() -> FontPickerCtrl"""
6784 val
= _controls_
.new_PreFontPickerCtrl(*args
, **kwargs
)
6787 wxEVT_COMMAND_FONTPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_FONTPICKER_CHANGED
6788 EVT_FONTPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_FONTPICKER_CHANGED
, 1 )
6790 class FontPickerEvent(_core
.CommandEvent
):
6791 """Proxy of C++ FontPickerEvent class"""
6792 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6793 __repr__
= _swig_repr
6794 def __init__(self
, *args
, **kwargs
):
6795 """__init__(self, Object generator, int id, Font f) -> FontPickerEvent"""
6796 _controls_
.FontPickerEvent_swiginit(self
,_controls_
.new_FontPickerEvent(*args
, **kwargs
))
6797 def GetFont(*args
, **kwargs
):
6798 """GetFont(self) -> Font"""
6799 return _controls_
.FontPickerEvent_GetFont(*args
, **kwargs
)
6801 def SetFont(*args
, **kwargs
):
6802 """SetFont(self, Font c)"""
6803 return _controls_
.FontPickerEvent_SetFont(*args
, **kwargs
)
6805 _controls_
.FontPickerEvent_swigregister(FontPickerEvent
)