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
)
680 def GetMark(*args
, **kwargs
):
682 GetMark(self) -> (from, to)
684 Gets the positions of the begining and ending of the selection mark in
685 the combobox text field.
687 return _controls_
.ComboBox_GetMark(*args
, **kwargs
)
689 def GetCurrentSelection(*args
, **kwargs
):
691 GetCurrentSelection(self) -> int
693 Unlike `GetSelection` which only returns the accepted selection value,
694 i.e. the selection in the control once the user closes the dropdown
695 list, this function returns the current selection. That is, while the
696 dropdown list is shown, it returns the currently selected item in
697 it. When it is not shown, its result is the same as for the other
700 return _controls_
.ComboBox_GetCurrentSelection(*args
, **kwargs
)
702 def SetStringSelection(*args
, **kwargs
):
704 SetStringSelection(self, String string) -> bool
706 Select the item with the specifed string
708 return _controls_
.ComboBox_SetStringSelection(*args
, **kwargs
)
710 def SetString(*args
, **kwargs
):
712 SetString(self, int n, String string)
714 Set the label for the n'th item (zero based) in the list.
716 return _controls_
.ComboBox_SetString(*args
, **kwargs
)
718 def SetEditable(*args
, **kwargs
):
719 """SetEditable(self, bool editable)"""
720 return _controls_
.ComboBox_SetEditable(*args
, **kwargs
)
722 def SetInsertionPointEnd(*args
, **kwargs
):
724 SetInsertionPointEnd(self)
726 Sets the insertion point at the end of the combobox text field.
728 return _controls_
.ComboBox_SetInsertionPointEnd(*args
, **kwargs
)
730 def Remove(*args
, **kwargs
):
732 Remove(self, long from, long to)
734 Removes the text between the two positions in the combobox text field.
736 return _controls_
.ComboBox_Remove(*args
, **kwargs
)
738 def IsEditable(*args
, **kwargs
):
740 IsEditable(self) -> bool
742 Returns True if the combo is ediatable (not read-only.)
744 return _controls_
.ComboBox_IsEditable(*args
, **kwargs
)
746 def Undo(*args
, **kwargs
):
750 Redoes the last undo in the text field. Windows only.
752 return _controls_
.ComboBox_Undo(*args
, **kwargs
)
754 def Redo(*args
, **kwargs
):
758 Undoes the last edit in the text field. Windows only.
760 return _controls_
.ComboBox_Redo(*args
, **kwargs
)
762 def SelectAll(*args
, **kwargs
):
766 Select all the text in the combo's text field.
768 return _controls_
.ComboBox_SelectAll(*args
, **kwargs
)
770 def CanCopy(*args
, **kwargs
):
772 CanCopy(self) -> bool
774 Returns True if the combobox is editable and there is a text selection
775 to copy to the clipboard. Only available on Windows.
777 return _controls_
.ComboBox_CanCopy(*args
, **kwargs
)
779 def CanCut(*args
, **kwargs
):
783 Returns True if the combobox is editable and there is a text selection
784 to copy to the clipboard. Only available on Windows.
786 return _controls_
.ComboBox_CanCut(*args
, **kwargs
)
788 def CanPaste(*args
, **kwargs
):
790 CanPaste(self) -> bool
792 Returns True if the combobox is editable and there is text on the
793 clipboard that can be pasted into the text field. Only available on
796 return _controls_
.ComboBox_CanPaste(*args
, **kwargs
)
798 def CanUndo(*args
, **kwargs
):
800 CanUndo(self) -> bool
802 Returns True if the combobox is editable and the last edit can be
803 undone. Only available on Windows.
805 return _controls_
.ComboBox_CanUndo(*args
, **kwargs
)
807 def CanRedo(*args
, **kwargs
):
809 CanRedo(self) -> bool
811 Returns True if the combobox is editable and the last undo can be
812 redone. Only available on Windows.
814 return _controls_
.ComboBox_CanRedo(*args
, **kwargs
)
816 def GetClassDefaultAttributes(*args
, **kwargs
):
818 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
820 Get the default attributes for this class. This is useful if you want
821 to use the same font or colour in your own control as in a standard
822 control -- which is a much better idea than hard coding specific
823 colours or fonts which might look completely out of place on the
824 user's system, especially if it uses themes.
826 The variant parameter is only relevant under Mac currently and is
827 ignore under other platforms. Under Mac, it will change the size of
828 the returned font. See `wx.Window.SetWindowVariant` for more about
831 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
833 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
834 CurrentSelection
= property(GetCurrentSelection
,doc
="See `GetCurrentSelection`")
835 InsertionPoint
= property(GetInsertionPoint
,SetInsertionPoint
,doc
="See `GetInsertionPoint` and `SetInsertionPoint`")
836 LastPosition
= property(GetLastPosition
,doc
="See `GetLastPosition`")
837 Mark
= property(GetMark
,SetMark
,doc
="See `GetMark` and `SetMark`")
838 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
839 _controls_
.ComboBox_swigregister(ComboBox
)
840 ComboBoxNameStr
= cvar
.ComboBoxNameStr
842 def PreComboBox(*args
, **kwargs
):
844 PreComboBox() -> ComboBox
846 Precreate a ComboBox control for 2-phase creation.
848 val
= _controls_
.new_PreComboBox(*args
, **kwargs
)
851 def ComboBox_GetClassDefaultAttributes(*args
, **kwargs
):
853 ComboBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
855 Get the default attributes for this class. This is useful if you want
856 to use the same font or colour in your own control as in a standard
857 control -- which is a much better idea than hard coding specific
858 colours or fonts which might look completely out of place on the
859 user's system, especially if it uses themes.
861 The variant parameter is only relevant under Mac currently and is
862 ignore under other platforms. Under Mac, it will change the size of
863 the returned font. See `wx.Window.SetWindowVariant` for more about
866 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
868 #---------------------------------------------------------------------------
870 GA_HORIZONTAL
= _controls_
.GA_HORIZONTAL
871 GA_VERTICAL
= _controls_
.GA_VERTICAL
872 GA_SMOOTH
= _controls_
.GA_SMOOTH
873 GA_PROGRESSBAR
= 0 # obsolete
874 class Gauge(_core
.Control
):
875 """Proxy of C++ Gauge class"""
876 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
877 __repr__
= _swig_repr
878 def __init__(self
, *args
, **kwargs
):
880 __init__(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
881 Size size=DefaultSize, long style=GA_HORIZONTAL,
882 Validator validator=DefaultValidator,
883 String name=GaugeNameStr) -> Gauge
885 _controls_
.Gauge_swiginit(self
,_controls_
.new_Gauge(*args
, **kwargs
))
886 self
._setOORInfo
(self
)
888 def Create(*args
, **kwargs
):
890 Create(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
891 Size size=DefaultSize, long style=GA_HORIZONTAL,
892 Validator validator=DefaultValidator,
893 String name=GaugeNameStr) -> bool
895 return _controls_
.Gauge_Create(*args
, **kwargs
)
897 def SetRange(*args
, **kwargs
):
898 """SetRange(self, int range)"""
899 return _controls_
.Gauge_SetRange(*args
, **kwargs
)
901 def GetRange(*args
, **kwargs
):
902 """GetRange(self) -> int"""
903 return _controls_
.Gauge_GetRange(*args
, **kwargs
)
905 def SetValue(*args
, **kwargs
):
906 """SetValue(self, int pos)"""
907 return _controls_
.Gauge_SetValue(*args
, **kwargs
)
909 def GetValue(*args
, **kwargs
):
910 """GetValue(self) -> int"""
911 return _controls_
.Gauge_GetValue(*args
, **kwargs
)
913 def IsVertical(*args
, **kwargs
):
914 """IsVertical(self) -> bool"""
915 return _controls_
.Gauge_IsVertical(*args
, **kwargs
)
917 def SetShadowWidth(*args
, **kwargs
):
918 """SetShadowWidth(self, int w)"""
919 return _controls_
.Gauge_SetShadowWidth(*args
, **kwargs
)
921 def GetShadowWidth(*args
, **kwargs
):
922 """GetShadowWidth(self) -> int"""
923 return _controls_
.Gauge_GetShadowWidth(*args
, **kwargs
)
925 def SetBezelFace(*args
, **kwargs
):
926 """SetBezelFace(self, int w)"""
927 return _controls_
.Gauge_SetBezelFace(*args
, **kwargs
)
929 def GetBezelFace(*args
, **kwargs
):
930 """GetBezelFace(self) -> int"""
931 return _controls_
.Gauge_GetBezelFace(*args
, **kwargs
)
933 def GetClassDefaultAttributes(*args
, **kwargs
):
935 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
937 Get the default attributes for this class. This is useful if you want
938 to use the same font or colour in your own control as in a standard
939 control -- which is a much better idea than hard coding specific
940 colours or fonts which might look completely out of place on the
941 user's system, especially if it uses themes.
943 The variant parameter is only relevant under Mac currently and is
944 ignore under other platforms. Under Mac, it will change the size of
945 the returned font. See `wx.Window.SetWindowVariant` for more about
948 return _controls_
.Gauge_GetClassDefaultAttributes(*args
, **kwargs
)
950 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
951 _controls_
.Gauge_swigregister(Gauge
)
952 GaugeNameStr
= cvar
.GaugeNameStr
954 def PreGauge(*args
, **kwargs
):
955 """PreGauge() -> Gauge"""
956 val
= _controls_
.new_PreGauge(*args
, **kwargs
)
959 def Gauge_GetClassDefaultAttributes(*args
, **kwargs
):
961 Gauge_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
963 Get the default attributes for this class. This is useful if you want
964 to use the same font or colour in your own control as in a standard
965 control -- which is a much better idea than hard coding specific
966 colours or fonts which might look completely out of place on the
967 user's system, especially if it uses themes.
969 The variant parameter is only relevant under Mac currently and is
970 ignore under other platforms. Under Mac, it will change the size of
971 the returned font. See `wx.Window.SetWindowVariant` for more about
974 return _controls_
.Gauge_GetClassDefaultAttributes(*args
, **kwargs
)
976 #---------------------------------------------------------------------------
978 class StaticBox(_core
.Control
):
979 """Proxy of C++ StaticBox class"""
980 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
981 __repr__
= _swig_repr
982 def __init__(self
, *args
, **kwargs
):
984 __init__(self, Window parent, int id=-1, String label=EmptyString,
985 Point pos=DefaultPosition, Size size=DefaultSize,
986 long style=0, String name=StaticBoxNameStr) -> StaticBox
988 _controls_
.StaticBox_swiginit(self
,_controls_
.new_StaticBox(*args
, **kwargs
))
989 self
._setOORInfo
(self
)
991 def Create(*args
, **kwargs
):
993 Create(self, Window parent, int id=-1, String label=EmptyString,
994 Point pos=DefaultPosition, Size size=DefaultSize,
995 long style=0, String name=StaticBoxNameStr) -> bool
997 return _controls_
.StaticBox_Create(*args
, **kwargs
)
999 def GetClassDefaultAttributes(*args
, **kwargs
):
1001 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1003 Get the default attributes for this class. This is useful if you want
1004 to use the same font or colour in your own control as in a standard
1005 control -- which is a much better idea than hard coding specific
1006 colours or fonts which might look completely out of place on the
1007 user's system, especially if it uses themes.
1009 The variant parameter is only relevant under Mac currently and is
1010 ignore under other platforms. Under Mac, it will change the size of
1011 the returned font. See `wx.Window.SetWindowVariant` for more about
1014 return _controls_
.StaticBox_GetClassDefaultAttributes(*args
, **kwargs
)
1016 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1017 _controls_
.StaticBox_swigregister(StaticBox
)
1018 StaticBitmapNameStr
= cvar
.StaticBitmapNameStr
1019 StaticBoxNameStr
= cvar
.StaticBoxNameStr
1020 StaticTextNameStr
= cvar
.StaticTextNameStr
1022 def PreStaticBox(*args
, **kwargs
):
1023 """PreStaticBox() -> StaticBox"""
1024 val
= _controls_
.new_PreStaticBox(*args
, **kwargs
)
1027 def StaticBox_GetClassDefaultAttributes(*args
, **kwargs
):
1029 StaticBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1031 Get the default attributes for this class. This is useful if you want
1032 to use the same font or colour in your own control as in a standard
1033 control -- which is a much better idea than hard coding specific
1034 colours or fonts which might look completely out of place on the
1035 user's system, especially if it uses themes.
1037 The variant parameter is only relevant under Mac currently and is
1038 ignore under other platforms. Under Mac, it will change the size of
1039 the returned font. See `wx.Window.SetWindowVariant` for more about
1042 return _controls_
.StaticBox_GetClassDefaultAttributes(*args
, **kwargs
)
1044 #---------------------------------------------------------------------------
1046 class StaticLine(_core
.Control
):
1047 """Proxy of C++ StaticLine class"""
1048 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1049 __repr__
= _swig_repr
1050 def __init__(self
, *args
, **kwargs
):
1052 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1053 Size size=DefaultSize, long style=LI_HORIZONTAL,
1054 String name=StaticTextNameStr) -> StaticLine
1056 _controls_
.StaticLine_swiginit(self
,_controls_
.new_StaticLine(*args
, **kwargs
))
1057 self
._setOORInfo
(self
)
1059 def Create(*args
, **kwargs
):
1061 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1062 Size size=DefaultSize, long style=LI_HORIZONTAL,
1063 String name=StaticTextNameStr) -> bool
1065 return _controls_
.StaticLine_Create(*args
, **kwargs
)
1067 def IsVertical(*args
, **kwargs
):
1068 """IsVertical(self) -> bool"""
1069 return _controls_
.StaticLine_IsVertical(*args
, **kwargs
)
1071 def GetDefaultSize(*args
, **kwargs
):
1072 """GetDefaultSize() -> int"""
1073 return _controls_
.StaticLine_GetDefaultSize(*args
, **kwargs
)
1075 GetDefaultSize
= staticmethod(GetDefaultSize
)
1076 def GetClassDefaultAttributes(*args
, **kwargs
):
1078 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1080 Get the default attributes for this class. This is useful if you want
1081 to use the same font or colour in your own control as in a standard
1082 control -- which is a much better idea than hard coding specific
1083 colours or fonts which might look completely out of place on the
1084 user's system, especially if it uses themes.
1086 The variant parameter is only relevant under Mac currently and is
1087 ignore under other platforms. Under Mac, it will change the size of
1088 the returned font. See `wx.Window.SetWindowVariant` for more about
1091 return _controls_
.StaticLine_GetClassDefaultAttributes(*args
, **kwargs
)
1093 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1094 _controls_
.StaticLine_swigregister(StaticLine
)
1096 def PreStaticLine(*args
, **kwargs
):
1097 """PreStaticLine() -> StaticLine"""
1098 val
= _controls_
.new_PreStaticLine(*args
, **kwargs
)
1101 def StaticLine_GetDefaultSize(*args
):
1102 """StaticLine_GetDefaultSize() -> int"""
1103 return _controls_
.StaticLine_GetDefaultSize(*args
)
1105 def StaticLine_GetClassDefaultAttributes(*args
, **kwargs
):
1107 StaticLine_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1109 Get the default attributes for this class. This is useful if you want
1110 to use the same font or colour in your own control as in a standard
1111 control -- which is a much better idea than hard coding specific
1112 colours or fonts which might look completely out of place on the
1113 user's system, especially if it uses themes.
1115 The variant parameter is only relevant under Mac currently and is
1116 ignore under other platforms. Under Mac, it will change the size of
1117 the returned font. See `wx.Window.SetWindowVariant` for more about
1120 return _controls_
.StaticLine_GetClassDefaultAttributes(*args
, **kwargs
)
1122 #---------------------------------------------------------------------------
1124 class StaticText(_core
.Control
):
1125 """Proxy of C++ StaticText class"""
1126 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1127 __repr__
= _swig_repr
1128 def __init__(self
, *args
, **kwargs
):
1130 __init__(self, Window parent, int id=-1, String label=EmptyString,
1131 Point pos=DefaultPosition, Size size=DefaultSize,
1132 long style=0, String name=StaticTextNameStr) -> StaticText
1134 _controls_
.StaticText_swiginit(self
,_controls_
.new_StaticText(*args
, **kwargs
))
1135 self
._setOORInfo
(self
)
1137 def Create(*args
, **kwargs
):
1139 Create(self, Window parent, int id=-1, String label=EmptyString,
1140 Point pos=DefaultPosition, Size size=DefaultSize,
1141 long style=0, String name=StaticTextNameStr) -> bool
1143 return _controls_
.StaticText_Create(*args
, **kwargs
)
1145 def Wrap(*args
, **kwargs
):
1147 Wrap(self, int width)
1149 This functions wraps the control's label so that each of its lines
1150 becomes at most ``width`` pixels wide if possible (the lines are
1151 broken at words boundaries so it might not be the case if words are
1152 too long). If ``width`` is negative, no wrapping is done.
1154 return _controls_
.StaticText_Wrap(*args
, **kwargs
)
1156 def GetClassDefaultAttributes(*args
, **kwargs
):
1158 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1160 Get the default attributes for this class. This is useful if you want
1161 to use the same font or colour in your own control as in a standard
1162 control -- which is a much better idea than hard coding specific
1163 colours or fonts which might look completely out of place on the
1164 user's system, especially if it uses themes.
1166 The variant parameter is only relevant under Mac currently and is
1167 ignore under other platforms. Under Mac, it will change the size of
1168 the returned font. See `wx.Window.SetWindowVariant` for more about
1171 return _controls_
.StaticText_GetClassDefaultAttributes(*args
, **kwargs
)
1173 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1174 _controls_
.StaticText_swigregister(StaticText
)
1176 def PreStaticText(*args
, **kwargs
):
1177 """PreStaticText() -> StaticText"""
1178 val
= _controls_
.new_PreStaticText(*args
, **kwargs
)
1181 def StaticText_GetClassDefaultAttributes(*args
, **kwargs
):
1183 StaticText_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1185 Get the default attributes for this class. This is useful if you want
1186 to use the same font or colour in your own control as in a standard
1187 control -- which is a much better idea than hard coding specific
1188 colours or fonts which might look completely out of place on the
1189 user's system, especially if it uses themes.
1191 The variant parameter is only relevant under Mac currently and is
1192 ignore under other platforms. Under Mac, it will change the size of
1193 the returned font. See `wx.Window.SetWindowVariant` for more about
1196 return _controls_
.StaticText_GetClassDefaultAttributes(*args
, **kwargs
)
1198 #---------------------------------------------------------------------------
1200 class StaticBitmap(_core
.Control
):
1201 """Proxy of C++ StaticBitmap class"""
1202 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1203 __repr__
= _swig_repr
1204 def __init__(self
, *args
, **kwargs
):
1206 __init__(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
1207 Point pos=DefaultPosition, Size size=DefaultSize,
1208 long style=0, String name=StaticBitmapNameStr) -> StaticBitmap
1210 _controls_
.StaticBitmap_swiginit(self
,_controls_
.new_StaticBitmap(*args
, **kwargs
))
1211 self
._setOORInfo
(self
)
1213 def Create(*args
, **kwargs
):
1215 Create(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
1216 Point pos=DefaultPosition, Size size=DefaultSize,
1217 long style=0, String name=StaticBitmapNameStr) -> bool
1219 return _controls_
.StaticBitmap_Create(*args
, **kwargs
)
1221 def GetBitmap(*args
, **kwargs
):
1222 """GetBitmap(self) -> Bitmap"""
1223 return _controls_
.StaticBitmap_GetBitmap(*args
, **kwargs
)
1225 def SetBitmap(*args
, **kwargs
):
1226 """SetBitmap(self, Bitmap bitmap)"""
1227 return _controls_
.StaticBitmap_SetBitmap(*args
, **kwargs
)
1229 def SetIcon(*args
, **kwargs
):
1230 """SetIcon(self, Icon icon)"""
1231 return _controls_
.StaticBitmap_SetIcon(*args
, **kwargs
)
1233 def GetClassDefaultAttributes(*args
, **kwargs
):
1235 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1237 Get the default attributes for this class. This is useful if you want
1238 to use the same font or colour in your own control as in a standard
1239 control -- which is a much better idea than hard coding specific
1240 colours or fonts which might look completely out of place on the
1241 user's system, especially if it uses themes.
1243 The variant parameter is only relevant under Mac currently and is
1244 ignore under other platforms. Under Mac, it will change the size of
1245 the returned font. See `wx.Window.SetWindowVariant` for more about
1248 return _controls_
.StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
)
1250 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1251 _controls_
.StaticBitmap_swigregister(StaticBitmap
)
1253 def PreStaticBitmap(*args
, **kwargs
):
1254 """PreStaticBitmap() -> StaticBitmap"""
1255 val
= _controls_
.new_PreStaticBitmap(*args
, **kwargs
)
1258 def StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
):
1260 StaticBitmap_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1262 Get the default attributes for this class. This is useful if you want
1263 to use the same font or colour in your own control as in a standard
1264 control -- which is a much better idea than hard coding specific
1265 colours or fonts which might look completely out of place on the
1266 user's system, especially if it uses themes.
1268 The variant parameter is only relevant under Mac currently and is
1269 ignore under other platforms. Under Mac, it will change the size of
1270 the returned font. See `wx.Window.SetWindowVariant` for more about
1273 return _controls_
.StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
)
1275 #---------------------------------------------------------------------------
1277 class ListBox(_core
.ControlWithItems
):
1278 """Proxy of C++ ListBox class"""
1279 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1280 __repr__
= _swig_repr
1281 def __init__(self
, *args
, **kwargs
):
1283 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1284 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1285 long style=0, Validator validator=DefaultValidator,
1286 String name=ListBoxNameStr) -> ListBox
1288 _controls_
.ListBox_swiginit(self
,_controls_
.new_ListBox(*args
, **kwargs
))
1289 self
._setOORInfo
(self
)
1291 def Create(*args
, **kwargs
):
1293 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1294 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1295 long style=0, Validator validator=DefaultValidator,
1296 String name=ListBoxNameStr) -> bool
1298 return _controls_
.ListBox_Create(*args
, **kwargs
)
1300 def Insert(*args
, **kwargs
):
1302 Insert(self, String item, int pos, PyObject clientData=None)
1304 Insert an item into the control before the item at the ``pos`` index,
1305 optionally associating some data object with the item.
1307 return _controls_
.ListBox_Insert(*args
, **kwargs
)
1309 def InsertItems(*args
, **kwargs
):
1310 """InsertItems(self, wxArrayString items, unsigned int pos)"""
1311 return _controls_
.ListBox_InsertItems(*args
, **kwargs
)
1313 def Set(*args
, **kwargs
):
1314 """Set(self, wxArrayString items)"""
1315 return _controls_
.ListBox_Set(*args
, **kwargs
)
1317 def IsSelected(*args
, **kwargs
):
1318 """IsSelected(self, int n) -> bool"""
1319 return _controls_
.ListBox_IsSelected(*args
, **kwargs
)
1321 def SetSelection(*args
, **kwargs
):
1322 """SetSelection(self, int n, bool select=True)"""
1323 return _controls_
.ListBox_SetSelection(*args
, **kwargs
)
1325 def Select(*args
, **kwargs
):
1329 This is the same as `SetSelection` and exists only because it is
1330 slightly more natural for controls which support multiple selection.
1332 return _controls_
.ListBox_Select(*args
, **kwargs
)
1334 def Deselect(*args
, **kwargs
):
1335 """Deselect(self, int n)"""
1336 return _controls_
.ListBox_Deselect(*args
, **kwargs
)
1338 def DeselectAll(*args
, **kwargs
):
1339 """DeselectAll(self, int itemToLeaveSelected=-1)"""
1340 return _controls_
.ListBox_DeselectAll(*args
, **kwargs
)
1342 def SetStringSelection(*args
, **kwargs
):
1343 """SetStringSelection(self, String s, bool select=True) -> bool"""
1344 return _controls_
.ListBox_SetStringSelection(*args
, **kwargs
)
1346 def GetSelections(*args
, **kwargs
):
1347 """GetSelections(self) -> PyObject"""
1348 return _controls_
.ListBox_GetSelections(*args
, **kwargs
)
1350 def SetFirstItem(*args
, **kwargs
):
1351 """SetFirstItem(self, int n)"""
1352 return _controls_
.ListBox_SetFirstItem(*args
, **kwargs
)
1354 def SetFirstItemStr(*args
, **kwargs
):
1355 """SetFirstItemStr(self, String s)"""
1356 return _controls_
.ListBox_SetFirstItemStr(*args
, **kwargs
)
1358 def EnsureVisible(*args
, **kwargs
):
1359 """EnsureVisible(self, int n)"""
1360 return _controls_
.ListBox_EnsureVisible(*args
, **kwargs
)
1362 def AppendAndEnsureVisible(*args
, **kwargs
):
1363 """AppendAndEnsureVisible(self, String s)"""
1364 return _controls_
.ListBox_AppendAndEnsureVisible(*args
, **kwargs
)
1366 def IsSorted(*args
, **kwargs
):
1367 """IsSorted(self) -> bool"""
1368 return _controls_
.ListBox_IsSorted(*args
, **kwargs
)
1370 def HitTest(*args
, **kwargs
):
1372 HitTest(self, Point pt) -> int
1374 Test where the given (in client coords) point lies
1376 return _controls_
.ListBox_HitTest(*args
, **kwargs
)
1378 def SetItemForegroundColour(*args
, **kwargs
):
1379 """SetItemForegroundColour(self, int item, Colour c)"""
1380 return _controls_
.ListBox_SetItemForegroundColour(*args
, **kwargs
)
1382 def SetItemBackgroundColour(*args
, **kwargs
):
1383 """SetItemBackgroundColour(self, int item, Colour c)"""
1384 return _controls_
.ListBox_SetItemBackgroundColour(*args
, **kwargs
)
1386 def SetItemFont(*args
, **kwargs
):
1387 """SetItemFont(self, int item, Font f)"""
1388 return _controls_
.ListBox_SetItemFont(*args
, **kwargs
)
1390 def GetClassDefaultAttributes(*args
, **kwargs
):
1392 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1394 Get the default attributes for this class. This is useful if you want
1395 to use the same font or colour in your own control as in a standard
1396 control -- which is a much better idea than hard coding specific
1397 colours or fonts which might look completely out of place on the
1398 user's system, especially if it uses themes.
1400 The variant parameter is only relevant under Mac currently and is
1401 ignore under other platforms. Under Mac, it will change the size of
1402 the returned font. See `wx.Window.SetWindowVariant` for more about
1405 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1407 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1408 _controls_
.ListBox_swigregister(ListBox
)
1409 ListBoxNameStr
= cvar
.ListBoxNameStr
1411 def PreListBox(*args
, **kwargs
):
1412 """PreListBox() -> ListBox"""
1413 val
= _controls_
.new_PreListBox(*args
, **kwargs
)
1416 def ListBox_GetClassDefaultAttributes(*args
, **kwargs
):
1418 ListBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1420 Get the default attributes for this class. This is useful if you want
1421 to use the same font or colour in your own control as in a standard
1422 control -- which is a much better idea than hard coding specific
1423 colours or fonts which might look completely out of place on the
1424 user's system, especially if it uses themes.
1426 The variant parameter is only relevant under Mac currently and is
1427 ignore under other platforms. Under Mac, it will change the size of
1428 the returned font. See `wx.Window.SetWindowVariant` for more about
1431 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1433 #---------------------------------------------------------------------------
1435 class CheckListBox(ListBox
):
1436 """Proxy of C++ CheckListBox class"""
1437 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1438 __repr__
= _swig_repr
1439 def __init__(self
, *args
, **kwargs
):
1441 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1442 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1443 long style=0, Validator validator=DefaultValidator,
1444 String name=ListBoxNameStr) -> CheckListBox
1446 _controls_
.CheckListBox_swiginit(self
,_controls_
.new_CheckListBox(*args
, **kwargs
))
1447 self
._setOORInfo
(self
)
1449 def Create(*args
, **kwargs
):
1451 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1452 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1453 long style=0, Validator validator=DefaultValidator,
1454 String name=ListBoxNameStr) -> bool
1456 return _controls_
.CheckListBox_Create(*args
, **kwargs
)
1458 def IsChecked(*args
, **kwargs
):
1459 """IsChecked(self, unsigned int index) -> bool"""
1460 return _controls_
.CheckListBox_IsChecked(*args
, **kwargs
)
1462 def Check(*args
, **kwargs
):
1463 """Check(self, unsigned int index, int check=True)"""
1464 return _controls_
.CheckListBox_Check(*args
, **kwargs
)
1466 def GetItemHeight(*args
, **kwargs
):
1467 """GetItemHeight(self) -> int"""
1468 return _controls_
.CheckListBox_GetItemHeight(*args
, **kwargs
)
1470 ItemHeight
= property(GetItemHeight
,doc
="See `GetItemHeight`")
1471 _controls_
.CheckListBox_swigregister(CheckListBox
)
1473 def PreCheckListBox(*args
, **kwargs
):
1474 """PreCheckListBox() -> CheckListBox"""
1475 val
= _controls_
.new_PreCheckListBox(*args
, **kwargs
)
1478 #---------------------------------------------------------------------------
1480 TE_NO_VSCROLL
= _controls_
.TE_NO_VSCROLL
1481 TE_AUTO_SCROLL
= _controls_
.TE_AUTO_SCROLL
1482 TE_READONLY
= _controls_
.TE_READONLY
1483 TE_MULTILINE
= _controls_
.TE_MULTILINE
1484 TE_PROCESS_TAB
= _controls_
.TE_PROCESS_TAB
1485 TE_LEFT
= _controls_
.TE_LEFT
1486 TE_CENTER
= _controls_
.TE_CENTER
1487 TE_RIGHT
= _controls_
.TE_RIGHT
1488 TE_CENTRE
= _controls_
.TE_CENTRE
1489 TE_RICH
= _controls_
.TE_RICH
1490 TE_PROCESS_ENTER
= _controls_
.TE_PROCESS_ENTER
1491 TE_PASSWORD
= _controls_
.TE_PASSWORD
1492 TE_AUTO_URL
= _controls_
.TE_AUTO_URL
1493 TE_NOHIDESEL
= _controls_
.TE_NOHIDESEL
1494 TE_DONTWRAP
= _controls_
.TE_DONTWRAP
1495 TE_CHARWRAP
= _controls_
.TE_CHARWRAP
1496 TE_WORDWRAP
= _controls_
.TE_WORDWRAP
1497 TE_BESTWRAP
= _controls_
.TE_BESTWRAP
1498 TE_RICH2
= _controls_
.TE_RICH2
1499 TE_CAPITALIZE
= _controls_
.TE_CAPITALIZE
1500 TE_LINEWRAP
= TE_CHARWRAP
1501 TEXT_ALIGNMENT_DEFAULT
= _controls_
.TEXT_ALIGNMENT_DEFAULT
1502 TEXT_ALIGNMENT_LEFT
= _controls_
.TEXT_ALIGNMENT_LEFT
1503 TEXT_ALIGNMENT_CENTRE
= _controls_
.TEXT_ALIGNMENT_CENTRE
1504 TEXT_ALIGNMENT_CENTER
= _controls_
.TEXT_ALIGNMENT_CENTER
1505 TEXT_ALIGNMENT_RIGHT
= _controls_
.TEXT_ALIGNMENT_RIGHT
1506 TEXT_ALIGNMENT_JUSTIFIED
= _controls_
.TEXT_ALIGNMENT_JUSTIFIED
1507 TEXT_ATTR_TEXT_COLOUR
= _controls_
.TEXT_ATTR_TEXT_COLOUR
1508 TEXT_ATTR_BACKGROUND_COLOUR
= _controls_
.TEXT_ATTR_BACKGROUND_COLOUR
1509 TEXT_ATTR_FONT_FACE
= _controls_
.TEXT_ATTR_FONT_FACE
1510 TEXT_ATTR_FONT_SIZE
= _controls_
.TEXT_ATTR_FONT_SIZE
1511 TEXT_ATTR_FONT_WEIGHT
= _controls_
.TEXT_ATTR_FONT_WEIGHT
1512 TEXT_ATTR_FONT_ITALIC
= _controls_
.TEXT_ATTR_FONT_ITALIC
1513 TEXT_ATTR_FONT_UNDERLINE
= _controls_
.TEXT_ATTR_FONT_UNDERLINE
1514 TEXT_ATTR_FONT
= _controls_
.TEXT_ATTR_FONT
1515 TEXT_ATTR_ALIGNMENT
= _controls_
.TEXT_ATTR_ALIGNMENT
1516 TEXT_ATTR_LEFT_INDENT
= _controls_
.TEXT_ATTR_LEFT_INDENT
1517 TEXT_ATTR_RIGHT_INDENT
= _controls_
.TEXT_ATTR_RIGHT_INDENT
1518 TEXT_ATTR_TABS
= _controls_
.TEXT_ATTR_TABS
1519 TE_HT_UNKNOWN
= _controls_
.TE_HT_UNKNOWN
1520 TE_HT_BEFORE
= _controls_
.TE_HT_BEFORE
1521 TE_HT_ON_TEXT
= _controls_
.TE_HT_ON_TEXT
1522 TE_HT_BELOW
= _controls_
.TE_HT_BELOW
1523 TE_HT_BEYOND
= _controls_
.TE_HT_BEYOND
1524 OutOfRangeTextCoord
= _controls_
.OutOfRangeTextCoord
1525 InvalidTextCoord
= _controls_
.InvalidTextCoord
1526 class TextAttr(object):
1527 """Proxy of C++ TextAttr class"""
1528 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1529 __repr__
= _swig_repr
1530 def __init__(self
, *args
, **kwargs
):
1532 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
1533 Font font=wxNullFont, int alignment=TEXT_ALIGNMENT_DEFAULT) -> TextAttr
1535 _controls_
.TextAttr_swiginit(self
,_controls_
.new_TextAttr(*args
, **kwargs
))
1536 __swig_destroy__
= _controls_
.delete_TextAttr
1537 __del__
= lambda self
: None;
1538 def Init(*args
, **kwargs
):
1540 return _controls_
.TextAttr_Init(*args
, **kwargs
)
1542 def Merge(*args
, **kwargs
):
1543 """Merge(TextAttr base, TextAttr overlay) -> TextAttr"""
1544 return _controls_
.TextAttr_Merge(*args
, **kwargs
)
1546 Merge
= staticmethod(Merge
)
1547 def SetTextColour(*args
, **kwargs
):
1548 """SetTextColour(self, Colour colText)"""
1549 return _controls_
.TextAttr_SetTextColour(*args
, **kwargs
)
1551 def SetBackgroundColour(*args
, **kwargs
):
1552 """SetBackgroundColour(self, Colour colBack)"""
1553 return _controls_
.TextAttr_SetBackgroundColour(*args
, **kwargs
)
1555 def SetFont(*args
, **kwargs
):
1556 """SetFont(self, Font font, long flags=TEXT_ATTR_FONT)"""
1557 return _controls_
.TextAttr_SetFont(*args
, **kwargs
)
1559 def SetAlignment(*args
, **kwargs
):
1560 """SetAlignment(self, int alignment)"""
1561 return _controls_
.TextAttr_SetAlignment(*args
, **kwargs
)
1563 def SetTabs(*args
, **kwargs
):
1564 """SetTabs(self, wxArrayInt tabs)"""
1565 return _controls_
.TextAttr_SetTabs(*args
, **kwargs
)
1567 def SetLeftIndent(*args
, **kwargs
):
1568 """SetLeftIndent(self, int indent, int subIndent=0)"""
1569 return _controls_
.TextAttr_SetLeftIndent(*args
, **kwargs
)
1571 def SetRightIndent(*args
, **kwargs
):
1572 """SetRightIndent(self, int indent)"""
1573 return _controls_
.TextAttr_SetRightIndent(*args
, **kwargs
)
1575 def SetFlags(*args
, **kwargs
):
1576 """SetFlags(self, long flags)"""
1577 return _controls_
.TextAttr_SetFlags(*args
, **kwargs
)
1579 def HasTextColour(*args
, **kwargs
):
1580 """HasTextColour(self) -> bool"""
1581 return _controls_
.TextAttr_HasTextColour(*args
, **kwargs
)
1583 def HasBackgroundColour(*args
, **kwargs
):
1584 """HasBackgroundColour(self) -> bool"""
1585 return _controls_
.TextAttr_HasBackgroundColour(*args
, **kwargs
)
1587 def HasFont(*args
, **kwargs
):
1588 """HasFont(self) -> bool"""
1589 return _controls_
.TextAttr_HasFont(*args
, **kwargs
)
1591 def HasAlignment(*args
, **kwargs
):
1592 """HasAlignment(self) -> bool"""
1593 return _controls_
.TextAttr_HasAlignment(*args
, **kwargs
)
1595 def HasTabs(*args
, **kwargs
):
1596 """HasTabs(self) -> bool"""
1597 return _controls_
.TextAttr_HasTabs(*args
, **kwargs
)
1599 def HasLeftIndent(*args
, **kwargs
):
1600 """HasLeftIndent(self) -> bool"""
1601 return _controls_
.TextAttr_HasLeftIndent(*args
, **kwargs
)
1603 def HasRightIndent(*args
, **kwargs
):
1604 """HasRightIndent(self) -> bool"""
1605 return _controls_
.TextAttr_HasRightIndent(*args
, **kwargs
)
1607 def HasFlag(*args
, **kwargs
):
1608 """HasFlag(self, long flag) -> bool"""
1609 return _controls_
.TextAttr_HasFlag(*args
, **kwargs
)
1611 def GetTextColour(*args
, **kwargs
):
1612 """GetTextColour(self) -> Colour"""
1613 return _controls_
.TextAttr_GetTextColour(*args
, **kwargs
)
1615 def GetBackgroundColour(*args
, **kwargs
):
1616 """GetBackgroundColour(self) -> Colour"""
1617 return _controls_
.TextAttr_GetBackgroundColour(*args
, **kwargs
)
1619 def GetFont(*args
, **kwargs
):
1620 """GetFont(self) -> Font"""
1621 return _controls_
.TextAttr_GetFont(*args
, **kwargs
)
1623 def GetAlignment(*args
, **kwargs
):
1624 """GetAlignment(self) -> int"""
1625 return _controls_
.TextAttr_GetAlignment(*args
, **kwargs
)
1627 def GetTabs(*args
, **kwargs
):
1628 """GetTabs(self) -> wxArrayInt"""
1629 return _controls_
.TextAttr_GetTabs(*args
, **kwargs
)
1631 def GetLeftIndent(*args
, **kwargs
):
1632 """GetLeftIndent(self) -> long"""
1633 return _controls_
.TextAttr_GetLeftIndent(*args
, **kwargs
)
1635 def GetLeftSubIndent(*args
, **kwargs
):
1636 """GetLeftSubIndent(self) -> long"""
1637 return _controls_
.TextAttr_GetLeftSubIndent(*args
, **kwargs
)
1639 def GetRightIndent(*args
, **kwargs
):
1640 """GetRightIndent(self) -> long"""
1641 return _controls_
.TextAttr_GetRightIndent(*args
, **kwargs
)
1643 def GetFlags(*args
, **kwargs
):
1644 """GetFlags(self) -> long"""
1645 return _controls_
.TextAttr_GetFlags(*args
, **kwargs
)
1647 def IsDefault(*args
, **kwargs
):
1648 """IsDefault(self) -> bool"""
1649 return _controls_
.TextAttr_IsDefault(*args
, **kwargs
)
1651 def Combine(*args
, **kwargs
):
1652 """Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1653 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1655 Combine
= staticmethod(Combine
)
1656 _controls_
.TextAttr_swigregister(TextAttr
)
1657 TextCtrlNameStr
= cvar
.TextCtrlNameStr
1659 def TextAttr_Merge(*args
, **kwargs
):
1660 """TextAttr_Merge(TextAttr base, TextAttr overlay) -> TextAttr"""
1661 return _controls_
.TextAttr_Merge(*args
, **kwargs
)
1663 def TextAttr_Combine(*args
, **kwargs
):
1664 """TextAttr_Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1665 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1667 class TextCtrl(_core
.Control
):
1668 """Proxy of C++ TextCtrl class"""
1669 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1670 __repr__
= _swig_repr
1671 def __init__(self
, *args
, **kwargs
):
1673 __init__(self, Window parent, int id=-1, String value=EmptyString,
1674 Point pos=DefaultPosition, Size size=DefaultSize,
1675 long style=0, Validator validator=DefaultValidator,
1676 String name=TextCtrlNameStr) -> TextCtrl
1678 _controls_
.TextCtrl_swiginit(self
,_controls_
.new_TextCtrl(*args
, **kwargs
))
1679 self
._setOORInfo
(self
)
1681 def Create(*args
, **kwargs
):
1683 Create(self, Window parent, int id=-1, String value=EmptyString,
1684 Point pos=DefaultPosition, Size size=DefaultSize,
1685 long style=0, Validator validator=DefaultValidator,
1686 String name=TextCtrlNameStr) -> bool
1688 return _controls_
.TextCtrl_Create(*args
, **kwargs
)
1690 def GetValue(*args
, **kwargs
):
1691 """GetValue(self) -> String"""
1692 return _controls_
.TextCtrl_GetValue(*args
, **kwargs
)
1694 def SetValue(*args
, **kwargs
):
1695 """SetValue(self, String value)"""
1696 return _controls_
.TextCtrl_SetValue(*args
, **kwargs
)
1698 def GetRange(*args
, **kwargs
):
1699 """GetRange(self, long from, long to) -> String"""
1700 return _controls_
.TextCtrl_GetRange(*args
, **kwargs
)
1702 def GetLineLength(*args
, **kwargs
):
1703 """GetLineLength(self, long lineNo) -> int"""
1704 return _controls_
.TextCtrl_GetLineLength(*args
, **kwargs
)
1706 def GetLineText(*args
, **kwargs
):
1707 """GetLineText(self, long lineNo) -> String"""
1708 return _controls_
.TextCtrl_GetLineText(*args
, **kwargs
)
1710 def GetNumberOfLines(*args
, **kwargs
):
1711 """GetNumberOfLines(self) -> int"""
1712 return _controls_
.TextCtrl_GetNumberOfLines(*args
, **kwargs
)
1714 def IsModified(*args
, **kwargs
):
1715 """IsModified(self) -> bool"""
1716 return _controls_
.TextCtrl_IsModified(*args
, **kwargs
)
1718 def IsEditable(*args
, **kwargs
):
1719 """IsEditable(self) -> bool"""
1720 return _controls_
.TextCtrl_IsEditable(*args
, **kwargs
)
1722 def IsSingleLine(*args
, **kwargs
):
1723 """IsSingleLine(self) -> bool"""
1724 return _controls_
.TextCtrl_IsSingleLine(*args
, **kwargs
)
1726 def IsMultiLine(*args
, **kwargs
):
1727 """IsMultiLine(self) -> bool"""
1728 return _controls_
.TextCtrl_IsMultiLine(*args
, **kwargs
)
1730 def GetSelection(*args
, **kwargs
):
1732 GetSelection() -> (from, to)
1734 If the return values from and to are the same, there is no selection.
1736 return _controls_
.TextCtrl_GetSelection(*args
, **kwargs
)
1738 def GetStringSelection(*args
, **kwargs
):
1739 """GetStringSelection(self) -> String"""
1740 return _controls_
.TextCtrl_GetStringSelection(*args
, **kwargs
)
1742 def Clear(*args
, **kwargs
):
1744 return _controls_
.TextCtrl_Clear(*args
, **kwargs
)
1746 def Replace(*args
, **kwargs
):
1747 """Replace(self, long from, long to, String value)"""
1748 return _controls_
.TextCtrl_Replace(*args
, **kwargs
)
1750 def Remove(*args
, **kwargs
):
1751 """Remove(self, long from, long to)"""
1752 return _controls_
.TextCtrl_Remove(*args
, **kwargs
)
1754 def LoadFile(*args
, **kwargs
):
1755 """LoadFile(self, String file) -> bool"""
1756 return _controls_
.TextCtrl_LoadFile(*args
, **kwargs
)
1758 def SaveFile(*args
, **kwargs
):
1759 """SaveFile(self, String file=EmptyString) -> bool"""
1760 return _controls_
.TextCtrl_SaveFile(*args
, **kwargs
)
1762 def MarkDirty(*args
, **kwargs
):
1763 """MarkDirty(self)"""
1764 return _controls_
.TextCtrl_MarkDirty(*args
, **kwargs
)
1766 def DiscardEdits(*args
, **kwargs
):
1767 """DiscardEdits(self)"""
1768 return _controls_
.TextCtrl_DiscardEdits(*args
, **kwargs
)
1770 def SetModified(*args
, **kwargs
):
1771 """SetModified(self, bool modified)"""
1772 return _controls_
.TextCtrl_SetModified(*args
, **kwargs
)
1774 def SetMaxLength(*args
, **kwargs
):
1775 """SetMaxLength(self, unsigned long len)"""
1776 return _controls_
.TextCtrl_SetMaxLength(*args
, **kwargs
)
1778 def WriteText(*args
, **kwargs
):
1779 """WriteText(self, String text)"""
1780 return _controls_
.TextCtrl_WriteText(*args
, **kwargs
)
1782 def AppendText(*args
, **kwargs
):
1783 """AppendText(self, String text)"""
1784 return _controls_
.TextCtrl_AppendText(*args
, **kwargs
)
1786 def EmulateKeyPress(*args
, **kwargs
):
1787 """EmulateKeyPress(self, KeyEvent event) -> bool"""
1788 return _controls_
.TextCtrl_EmulateKeyPress(*args
, **kwargs
)
1790 def SetStyle(*args
, **kwargs
):
1791 """SetStyle(self, long start, long end, TextAttr style) -> bool"""
1792 return _controls_
.TextCtrl_SetStyle(*args
, **kwargs
)
1794 def GetStyle(*args
, **kwargs
):
1795 """GetStyle(self, long position, TextAttr style) -> bool"""
1796 return _controls_
.TextCtrl_GetStyle(*args
, **kwargs
)
1798 def SetDefaultStyle(*args
, **kwargs
):
1799 """SetDefaultStyle(self, TextAttr style) -> bool"""
1800 return _controls_
.TextCtrl_SetDefaultStyle(*args
, **kwargs
)
1802 def GetDefaultStyle(*args
, **kwargs
):
1803 """GetDefaultStyle(self) -> TextAttr"""
1804 return _controls_
.TextCtrl_GetDefaultStyle(*args
, **kwargs
)
1806 def XYToPosition(*args
, **kwargs
):
1807 """XYToPosition(self, long x, long y) -> long"""
1808 return _controls_
.TextCtrl_XYToPosition(*args
, **kwargs
)
1810 def PositionToXY(*args
, **kwargs
):
1811 """PositionToXY(long pos) -> (x, y)"""
1812 return _controls_
.TextCtrl_PositionToXY(*args
, **kwargs
)
1814 def ShowPosition(*args
, **kwargs
):
1815 """ShowPosition(self, long pos)"""
1816 return _controls_
.TextCtrl_ShowPosition(*args
, **kwargs
)
1818 def HitTest(*args
, **kwargs
):
1820 HitTest(Point pt) -> (result, col, row)
1822 Find the row, col coresponding to the character at the point given in
1823 pixels. NB: pt is in device coords but is not adjusted for the client
1824 area origin nor scrolling.
1826 return _controls_
.TextCtrl_HitTest(*args
, **kwargs
)
1828 def HitTestPos(*args
, **kwargs
):
1830 HitTestPos(Point pt) -> (result, position)
1832 Find the character position in the text coresponding to the point
1833 given in pixels. NB: pt is in device coords but is not adjusted for
1834 the client area origin nor scrolling.
1836 return _controls_
.TextCtrl_HitTestPos(*args
, **kwargs
)
1838 def Copy(*args
, **kwargs
):
1840 return _controls_
.TextCtrl_Copy(*args
, **kwargs
)
1842 def Cut(*args
, **kwargs
):
1844 return _controls_
.TextCtrl_Cut(*args
, **kwargs
)
1846 def Paste(*args
, **kwargs
):
1848 return _controls_
.TextCtrl_Paste(*args
, **kwargs
)
1850 def CanCopy(*args
, **kwargs
):
1851 """CanCopy(self) -> bool"""
1852 return _controls_
.TextCtrl_CanCopy(*args
, **kwargs
)
1854 def CanCut(*args
, **kwargs
):
1855 """CanCut(self) -> bool"""
1856 return _controls_
.TextCtrl_CanCut(*args
, **kwargs
)
1858 def CanPaste(*args
, **kwargs
):
1859 """CanPaste(self) -> bool"""
1860 return _controls_
.TextCtrl_CanPaste(*args
, **kwargs
)
1862 def Undo(*args
, **kwargs
):
1864 return _controls_
.TextCtrl_Undo(*args
, **kwargs
)
1866 def Redo(*args
, **kwargs
):
1868 return _controls_
.TextCtrl_Redo(*args
, **kwargs
)
1870 def CanUndo(*args
, **kwargs
):
1871 """CanUndo(self) -> bool"""
1872 return _controls_
.TextCtrl_CanUndo(*args
, **kwargs
)
1874 def CanRedo(*args
, **kwargs
):
1875 """CanRedo(self) -> bool"""
1876 return _controls_
.TextCtrl_CanRedo(*args
, **kwargs
)
1878 def SetInsertionPoint(*args
, **kwargs
):
1879 """SetInsertionPoint(self, long pos)"""
1880 return _controls_
.TextCtrl_SetInsertionPoint(*args
, **kwargs
)
1882 def SetInsertionPointEnd(*args
, **kwargs
):
1883 """SetInsertionPointEnd(self)"""
1884 return _controls_
.TextCtrl_SetInsertionPointEnd(*args
, **kwargs
)
1886 def GetInsertionPoint(*args
, **kwargs
):
1887 """GetInsertionPoint(self) -> long"""
1888 return _controls_
.TextCtrl_GetInsertionPoint(*args
, **kwargs
)
1890 def GetLastPosition(*args
, **kwargs
):
1891 """GetLastPosition(self) -> long"""
1892 return _controls_
.TextCtrl_GetLastPosition(*args
, **kwargs
)
1894 def SetSelection(*args
, **kwargs
):
1895 """SetSelection(self, long from, long to)"""
1896 return _controls_
.TextCtrl_SetSelection(*args
, **kwargs
)
1898 def SelectAll(*args
, **kwargs
):
1899 """SelectAll(self)"""
1900 return _controls_
.TextCtrl_SelectAll(*args
, **kwargs
)
1902 def SetEditable(*args
, **kwargs
):
1903 """SetEditable(self, bool editable)"""
1904 return _controls_
.TextCtrl_SetEditable(*args
, **kwargs
)
1906 def write(*args
, **kwargs
):
1907 """write(self, String text)"""
1908 return _controls_
.TextCtrl_write(*args
, **kwargs
)
1910 def GetString(*args
, **kwargs
):
1911 """GetString(self, long from, long to) -> String"""
1912 return _controls_
.TextCtrl_GetString(*args
, **kwargs
)
1914 def GetClassDefaultAttributes(*args
, **kwargs
):
1916 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1918 Get the default attributes for this class. This is useful if you want
1919 to use the same font or colour in your own control as in a standard
1920 control -- which is a much better idea than hard coding specific
1921 colours or fonts which might look completely out of place on the
1922 user's system, especially if it uses themes.
1924 The variant parameter is only relevant under Mac currently and is
1925 ignore under other platforms. Under Mac, it will change the size of
1926 the returned font. See `wx.Window.SetWindowVariant` for more about
1929 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1931 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1932 _controls_
.TextCtrl_swigregister(TextCtrl
)
1934 def PreTextCtrl(*args
, **kwargs
):
1935 """PreTextCtrl() -> TextCtrl"""
1936 val
= _controls_
.new_PreTextCtrl(*args
, **kwargs
)
1939 def TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
1941 TextCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1943 Get the default attributes for this class. This is useful if you want
1944 to use the same font or colour in your own control as in a standard
1945 control -- which is a much better idea than hard coding specific
1946 colours or fonts which might look completely out of place on the
1947 user's system, especially if it uses themes.
1949 The variant parameter is only relevant under Mac currently and is
1950 ignore under other platforms. Under Mac, it will change the size of
1951 the returned font. See `wx.Window.SetWindowVariant` for more about
1954 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1956 wxEVT_COMMAND_TEXT_UPDATED
= _controls_
.wxEVT_COMMAND_TEXT_UPDATED
1957 wxEVT_COMMAND_TEXT_ENTER
= _controls_
.wxEVT_COMMAND_TEXT_ENTER
1958 wxEVT_COMMAND_TEXT_URL
= _controls_
.wxEVT_COMMAND_TEXT_URL
1959 wxEVT_COMMAND_TEXT_MAXLEN
= _controls_
.wxEVT_COMMAND_TEXT_MAXLEN
1960 class TextUrlEvent(_core
.CommandEvent
):
1961 """Proxy of C++ TextUrlEvent class"""
1962 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1963 __repr__
= _swig_repr
1964 def __init__(self
, *args
, **kwargs
):
1965 """__init__(self, int winid, MouseEvent evtMouse, long start, long end) -> TextUrlEvent"""
1966 _controls_
.TextUrlEvent_swiginit(self
,_controls_
.new_TextUrlEvent(*args
, **kwargs
))
1967 def GetMouseEvent(*args
, **kwargs
):
1968 """GetMouseEvent(self) -> MouseEvent"""
1969 return _controls_
.TextUrlEvent_GetMouseEvent(*args
, **kwargs
)
1971 def GetURLStart(*args
, **kwargs
):
1972 """GetURLStart(self) -> long"""
1973 return _controls_
.TextUrlEvent_GetURLStart(*args
, **kwargs
)
1975 def GetURLEnd(*args
, **kwargs
):
1976 """GetURLEnd(self) -> long"""
1977 return _controls_
.TextUrlEvent_GetURLEnd(*args
, **kwargs
)
1979 _controls_
.TextUrlEvent_swigregister(TextUrlEvent
)
1981 EVT_TEXT
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED
, 1)
1982 EVT_TEXT_ENTER
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER
, 1)
1983 EVT_TEXT_URL
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_URL
, 1)
1984 EVT_TEXT_MAXLEN
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN
, 1)
1986 #---------------------------------------------------------------------------
1988 class ScrollBar(_core
.Control
):
1989 """Proxy of C++ ScrollBar class"""
1990 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1991 __repr__
= _swig_repr
1992 def __init__(self
, *args
, **kwargs
):
1994 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1995 Size size=DefaultSize, long style=SB_HORIZONTAL,
1996 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> ScrollBar
1998 _controls_
.ScrollBar_swiginit(self
,_controls_
.new_ScrollBar(*args
, **kwargs
))
1999 self
._setOORInfo
(self
)
2001 def Create(*args
, **kwargs
):
2003 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2004 Size size=DefaultSize, long style=SB_HORIZONTAL,
2005 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> bool
2007 Do the 2nd phase and create the GUI control.
2009 return _controls_
.ScrollBar_Create(*args
, **kwargs
)
2011 def GetThumbPosition(*args
, **kwargs
):
2012 """GetThumbPosition(self) -> int"""
2013 return _controls_
.ScrollBar_GetThumbPosition(*args
, **kwargs
)
2015 def GetThumbSize(*args
, **kwargs
):
2016 """GetThumbSize(self) -> int"""
2017 return _controls_
.ScrollBar_GetThumbSize(*args
, **kwargs
)
2019 GetThumbLength
= GetThumbSize
2020 def GetPageSize(*args
, **kwargs
):
2021 """GetPageSize(self) -> int"""
2022 return _controls_
.ScrollBar_GetPageSize(*args
, **kwargs
)
2024 def GetRange(*args
, **kwargs
):
2025 """GetRange(self) -> int"""
2026 return _controls_
.ScrollBar_GetRange(*args
, **kwargs
)
2028 def IsVertical(*args
, **kwargs
):
2029 """IsVertical(self) -> bool"""
2030 return _controls_
.ScrollBar_IsVertical(*args
, **kwargs
)
2032 def SetThumbPosition(*args
, **kwargs
):
2033 """SetThumbPosition(self, int viewStart)"""
2034 return _controls_
.ScrollBar_SetThumbPosition(*args
, **kwargs
)
2036 def GetClassDefaultAttributes(*args
, **kwargs
):
2038 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2040 Get the default attributes for this class. This is useful if you want
2041 to use the same font or colour in your own control as in a standard
2042 control -- which is a much better idea than hard coding specific
2043 colours or fonts which might look completely out of place on the
2044 user's system, especially if it uses themes.
2046 The variant parameter is only relevant under Mac currently and is
2047 ignore under other platforms. Under Mac, it will change the size of
2048 the returned font. See `wx.Window.SetWindowVariant` for more about
2051 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
2053 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2054 _controls_
.ScrollBar_swigregister(ScrollBar
)
2055 ScrollBarNameStr
= cvar
.ScrollBarNameStr
2057 def PreScrollBar(*args
, **kwargs
):
2058 """PreScrollBar() -> ScrollBar"""
2059 val
= _controls_
.new_PreScrollBar(*args
, **kwargs
)
2062 def ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
):
2064 ScrollBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2066 Get the default attributes for this class. This is useful if you want
2067 to use the same font or colour in your own control as in a standard
2068 control -- which is a much better idea than hard coding specific
2069 colours or fonts which might look completely out of place on the
2070 user's system, especially if it uses themes.
2072 The variant parameter is only relevant under Mac currently and is
2073 ignore under other platforms. Under Mac, it will change the size of
2074 the returned font. See `wx.Window.SetWindowVariant` for more about
2077 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
2079 #---------------------------------------------------------------------------
2081 SP_HORIZONTAL
= _controls_
.SP_HORIZONTAL
2082 SP_VERTICAL
= _controls_
.SP_VERTICAL
2083 SP_ARROW_KEYS
= _controls_
.SP_ARROW_KEYS
2084 SP_WRAP
= _controls_
.SP_WRAP
2085 class SpinButton(_core
.Control
):
2086 """Proxy of C++ SpinButton class"""
2087 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2088 __repr__
= _swig_repr
2089 def __init__(self
, *args
, **kwargs
):
2091 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2092 Size size=DefaultSize, long style=SP_HORIZONTAL,
2093 String name=SPIN_BUTTON_NAME) -> SpinButton
2095 _controls_
.SpinButton_swiginit(self
,_controls_
.new_SpinButton(*args
, **kwargs
))
2096 self
._setOORInfo
(self
)
2098 def Create(*args
, **kwargs
):
2100 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2101 Size size=DefaultSize, long style=SP_HORIZONTAL,
2102 String name=SPIN_BUTTON_NAME) -> bool
2104 return _controls_
.SpinButton_Create(*args
, **kwargs
)
2106 def GetValue(*args
, **kwargs
):
2107 """GetValue(self) -> int"""
2108 return _controls_
.SpinButton_GetValue(*args
, **kwargs
)
2110 def GetMin(*args
, **kwargs
):
2111 """GetMin(self) -> int"""
2112 return _controls_
.SpinButton_GetMin(*args
, **kwargs
)
2114 def GetMax(*args
, **kwargs
):
2115 """GetMax(self) -> int"""
2116 return _controls_
.SpinButton_GetMax(*args
, **kwargs
)
2118 def SetValue(*args
, **kwargs
):
2119 """SetValue(self, int val)"""
2120 return _controls_
.SpinButton_SetValue(*args
, **kwargs
)
2122 def SetMin(*args
, **kwargs
):
2123 """SetMin(self, int minVal)"""
2124 return _controls_
.SpinButton_SetMin(*args
, **kwargs
)
2126 def SetMax(*args
, **kwargs
):
2127 """SetMax(self, int maxVal)"""
2128 return _controls_
.SpinButton_SetMax(*args
, **kwargs
)
2130 def SetRange(*args
, **kwargs
):
2131 """SetRange(self, int minVal, int maxVal)"""
2132 return _controls_
.SpinButton_SetRange(*args
, **kwargs
)
2134 def IsVertical(*args
, **kwargs
):
2135 """IsVertical(self) -> bool"""
2136 return _controls_
.SpinButton_IsVertical(*args
, **kwargs
)
2138 def GetClassDefaultAttributes(*args
, **kwargs
):
2140 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2142 Get the default attributes for this class. This is useful if you want
2143 to use the same font or colour in your own control as in a standard
2144 control -- which is a much better idea than hard coding specific
2145 colours or fonts which might look completely out of place on the
2146 user's system, especially if it uses themes.
2148 The variant parameter is only relevant under Mac currently and is
2149 ignore under other platforms. Under Mac, it will change the size of
2150 the returned font. See `wx.Window.SetWindowVariant` for more about
2153 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2155 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2156 _controls_
.SpinButton_swigregister(SpinButton
)
2157 SPIN_BUTTON_NAME
= cvar
.SPIN_BUTTON_NAME
2158 SpinCtrlNameStr
= cvar
.SpinCtrlNameStr
2160 def PreSpinButton(*args
, **kwargs
):
2161 """PreSpinButton() -> SpinButton"""
2162 val
= _controls_
.new_PreSpinButton(*args
, **kwargs
)
2165 def SpinButton_GetClassDefaultAttributes(*args
, **kwargs
):
2167 SpinButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2169 Get the default attributes for this class. This is useful if you want
2170 to use the same font or colour in your own control as in a standard
2171 control -- which is a much better idea than hard coding specific
2172 colours or fonts which might look completely out of place on the
2173 user's system, especially if it uses themes.
2175 The variant parameter is only relevant under Mac currently and is
2176 ignore under other platforms. Under Mac, it will change the size of
2177 the returned font. See `wx.Window.SetWindowVariant` for more about
2180 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2182 class SpinCtrl(_core
.Control
):
2183 """Proxy of C++ SpinCtrl class"""
2184 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2185 __repr__
= _swig_repr
2186 def __init__(self
, *args
, **kwargs
):
2188 __init__(self, Window parent, int id=-1, String value=EmptyString,
2189 Point pos=DefaultPosition, Size size=DefaultSize,
2190 long style=SP_ARROW_KEYS, int min=0, int max=100,
2191 int initial=0, String name=SpinCtrlNameStr) -> SpinCtrl
2193 _controls_
.SpinCtrl_swiginit(self
,_controls_
.new_SpinCtrl(*args
, **kwargs
))
2194 self
._setOORInfo
(self
)
2196 def Create(*args
, **kwargs
):
2198 Create(self, Window parent, int id=-1, String value=EmptyString,
2199 Point pos=DefaultPosition, Size size=DefaultSize,
2200 long style=SP_ARROW_KEYS, int min=0, int max=100,
2201 int initial=0, String name=SpinCtrlNameStr) -> bool
2203 return _controls_
.SpinCtrl_Create(*args
, **kwargs
)
2205 def GetValue(*args
, **kwargs
):
2206 """GetValue(self) -> int"""
2207 return _controls_
.SpinCtrl_GetValue(*args
, **kwargs
)
2209 def SetValue(*args
, **kwargs
):
2210 """SetValue(self, int value)"""
2211 return _controls_
.SpinCtrl_SetValue(*args
, **kwargs
)
2213 def SetValueString(*args
, **kwargs
):
2214 """SetValueString(self, String text)"""
2215 return _controls_
.SpinCtrl_SetValueString(*args
, **kwargs
)
2217 def SetRange(*args
, **kwargs
):
2218 """SetRange(self, int minVal, int maxVal)"""
2219 return _controls_
.SpinCtrl_SetRange(*args
, **kwargs
)
2221 def GetMin(*args
, **kwargs
):
2222 """GetMin(self) -> int"""
2223 return _controls_
.SpinCtrl_GetMin(*args
, **kwargs
)
2225 def GetMax(*args
, **kwargs
):
2226 """GetMax(self) -> int"""
2227 return _controls_
.SpinCtrl_GetMax(*args
, **kwargs
)
2229 def SetSelection(*args
, **kwargs
):
2230 """SetSelection(self, long from, long to)"""
2231 return _controls_
.SpinCtrl_SetSelection(*args
, **kwargs
)
2233 def GetClassDefaultAttributes(*args
, **kwargs
):
2235 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2237 Get the default attributes for this class. This is useful if you want
2238 to use the same font or colour in your own control as in a standard
2239 control -- which is a much better idea than hard coding specific
2240 colours or fonts which might look completely out of place on the
2241 user's system, especially if it uses themes.
2243 The variant parameter is only relevant under Mac currently and is
2244 ignore under other platforms. Under Mac, it will change the size of
2245 the returned font. See `wx.Window.SetWindowVariant` for more about
2248 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2250 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2251 _controls_
.SpinCtrl_swigregister(SpinCtrl
)
2253 def PreSpinCtrl(*args
, **kwargs
):
2254 """PreSpinCtrl() -> SpinCtrl"""
2255 val
= _controls_
.new_PreSpinCtrl(*args
, **kwargs
)
2258 def SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
2260 SpinCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2262 Get the default attributes for this class. This is useful if you want
2263 to use the same font or colour in your own control as in a standard
2264 control -- which is a much better idea than hard coding specific
2265 colours or fonts which might look completely out of place on the
2266 user's system, especially if it uses themes.
2268 The variant parameter is only relevant under Mac currently and is
2269 ignore under other platforms. Under Mac, it will change the size of
2270 the returned font. See `wx.Window.SetWindowVariant` for more about
2273 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2275 class SpinEvent(_core
.NotifyEvent
):
2276 """Proxy of C++ SpinEvent class"""
2277 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2278 __repr__
= _swig_repr
2279 def __init__(self
, *args
, **kwargs
):
2280 """__init__(self, EventType commandType=wxEVT_NULL, int winid=0) -> SpinEvent"""
2281 _controls_
.SpinEvent_swiginit(self
,_controls_
.new_SpinEvent(*args
, **kwargs
))
2282 def GetPosition(*args
, **kwargs
):
2283 """GetPosition(self) -> int"""
2284 return _controls_
.SpinEvent_GetPosition(*args
, **kwargs
)
2286 def SetPosition(*args
, **kwargs
):
2287 """SetPosition(self, int pos)"""
2288 return _controls_
.SpinEvent_SetPosition(*args
, **kwargs
)
2290 _controls_
.SpinEvent_swigregister(SpinEvent
)
2292 wxEVT_COMMAND_SPINCTRL_UPDATED
= _controls_
.wxEVT_COMMAND_SPINCTRL_UPDATED
2293 EVT_SPIN_UP
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEUP
, 1)
2294 EVT_SPIN_DOWN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEDOWN
, 1)
2295 EVT_SPIN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_THUMBTRACK
, 1)
2296 EVT_SPINCTRL
= wx
.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED
, 1)
2298 #---------------------------------------------------------------------------
2300 class RadioBox(_core
.Control
):
2301 """Proxy of C++ RadioBox class"""
2302 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2303 __repr__
= _swig_repr
2304 def __init__(self
, *args
, **kwargs
):
2306 __init__(self, Window parent, int id=-1, String label=EmptyString,
2307 Point pos=DefaultPosition, Size size=DefaultSize,
2308 wxArrayString choices=wxPyEmptyStringArray,
2309 int majorDimension=0, long style=RA_HORIZONTAL,
2310 Validator validator=DefaultValidator,
2311 String name=RadioBoxNameStr) -> RadioBox
2313 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2314 _controls_
.RadioBox_swiginit(self
,_controls_
.new_RadioBox(*args
, **kwargs
))
2315 self
._setOORInfo
(self
)
2317 def Create(*args
, **kwargs
):
2319 Create(self, Window parent, int id=-1, String label=EmptyString,
2320 Point pos=DefaultPosition, Size size=DefaultSize,
2321 wxArrayString choices=wxPyEmptyStringArray,
2322 int majorDimension=0, long style=RA_HORIZONTAL,
2323 Validator validator=DefaultValidator,
2324 String name=RadioBoxNameStr) -> bool
2326 return _controls_
.RadioBox_Create(*args
, **kwargs
)
2328 def SetSelection(*args
, **kwargs
):
2329 """SetSelection(self, int n)"""
2330 return _controls_
.RadioBox_SetSelection(*args
, **kwargs
)
2332 def GetSelection(*args
, **kwargs
):
2333 """GetSelection(self) -> int"""
2334 return _controls_
.RadioBox_GetSelection(*args
, **kwargs
)
2336 def GetStringSelection(*args
, **kwargs
):
2337 """GetStringSelection(self) -> String"""
2338 return _controls_
.RadioBox_GetStringSelection(*args
, **kwargs
)
2340 def SetStringSelection(*args
, **kwargs
):
2341 """SetStringSelection(self, String s) -> bool"""
2342 return _controls_
.RadioBox_SetStringSelection(*args
, **kwargs
)
2344 def GetCount(*args
, **kwargs
):
2345 """GetCount(self) -> size_t"""
2346 return _controls_
.RadioBox_GetCount(*args
, **kwargs
)
2348 def FindString(*args
, **kwargs
):
2349 """FindString(self, String s) -> int"""
2350 return _controls_
.RadioBox_FindString(*args
, **kwargs
)
2352 def GetString(*args
, **kwargs
):
2353 """GetString(self, int n) -> String"""
2354 return _controls_
.RadioBox_GetString(*args
, **kwargs
)
2356 def SetString(*args
, **kwargs
):
2357 """SetString(self, int n, String label)"""
2358 return _controls_
.RadioBox_SetString(*args
, **kwargs
)
2360 GetItemLabel
= GetString
2361 SetItemLabel
= SetString
2362 def EnableItem(*args
, **kwargs
):
2363 """EnableItem(self, unsigned int n, bool enable=True)"""
2364 return _controls_
.RadioBox_EnableItem(*args
, **kwargs
)
2366 def ShowItem(*args
, **kwargs
):
2367 """ShowItem(self, unsigned int n, bool show=True)"""
2368 return _controls_
.RadioBox_ShowItem(*args
, **kwargs
)
2370 def IsItemEnabled(*args
, **kwargs
):
2371 """IsItemEnabled(self, unsigned int n) -> bool"""
2372 return _controls_
.RadioBox_IsItemEnabled(*args
, **kwargs
)
2374 def IsItemShown(*args
, **kwargs
):
2375 """IsItemShown(self, unsigned int n) -> bool"""
2376 return _controls_
.RadioBox_IsItemShown(*args
, **kwargs
)
2378 def GetColumnCount(*args
, **kwargs
):
2379 """GetColumnCount(self) -> unsigned int"""
2380 return _controls_
.RadioBox_GetColumnCount(*args
, **kwargs
)
2382 def GetRowCount(*args
, **kwargs
):
2383 """GetRowCount(self) -> unsigned int"""
2384 return _controls_
.RadioBox_GetRowCount(*args
, **kwargs
)
2386 def GetNextItem(*args
, **kwargs
):
2387 """GetNextItem(self, int item, int dir, long style) -> int"""
2388 return _controls_
.RadioBox_GetNextItem(*args
, **kwargs
)
2390 def SetItemToolTip(*args
, **kwargs
):
2391 """SetItemToolTip(self, unsigned int item, String text)"""
2392 return _controls_
.RadioBox_SetItemToolTip(*args
, **kwargs
)
2394 def GetItemToolTip(*args
, **kwargs
):
2395 """GetItemToolTip(self, unsigned int item) -> ToolTip"""
2396 return _controls_
.RadioBox_GetItemToolTip(*args
, **kwargs
)
2398 def SetItemHelpText(*args
, **kwargs
):
2399 """SetItemHelpText(self, unsigned int n, String helpText)"""
2400 return _controls_
.RadioBox_SetItemHelpText(*args
, **kwargs
)
2402 def GetItemHelpText(*args
, **kwargs
):
2403 """GetItemHelpText(self, unsigned int n) -> String"""
2404 return _controls_
.RadioBox_GetItemHelpText(*args
, **kwargs
)
2406 def GetClassDefaultAttributes(*args
, **kwargs
):
2408 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2410 Get the default attributes for this class. This is useful if you want
2411 to use the same font or colour in your own control as in a standard
2412 control -- which is a much better idea than hard coding specific
2413 colours or fonts which might look completely out of place on the
2414 user's system, especially if it uses themes.
2416 The variant parameter is only relevant under Mac currently and is
2417 ignore under other platforms. Under Mac, it will change the size of
2418 the returned font. See `wx.Window.SetWindowVariant` for more about
2421 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2423 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2424 _controls_
.RadioBox_swigregister(RadioBox
)
2425 RadioBoxNameStr
= cvar
.RadioBoxNameStr
2426 RadioButtonNameStr
= cvar
.RadioButtonNameStr
2428 def PreRadioBox(*args
, **kwargs
):
2429 """PreRadioBox() -> RadioBox"""
2430 val
= _controls_
.new_PreRadioBox(*args
, **kwargs
)
2433 def RadioBox_GetClassDefaultAttributes(*args
, **kwargs
):
2435 RadioBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2437 Get the default attributes for this class. This is useful if you want
2438 to use the same font or colour in your own control as in a standard
2439 control -- which is a much better idea than hard coding specific
2440 colours or fonts which might look completely out of place on the
2441 user's system, especially if it uses themes.
2443 The variant parameter is only relevant under Mac currently and is
2444 ignore under other platforms. Under Mac, it will change the size of
2445 the returned font. See `wx.Window.SetWindowVariant` for more about
2448 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2450 #---------------------------------------------------------------------------
2452 class RadioButton(_core
.Control
):
2453 """Proxy of C++ RadioButton class"""
2454 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2455 __repr__
= _swig_repr
2456 def __init__(self
, *args
, **kwargs
):
2458 __init__(self, Window parent, int id=-1, String label=EmptyString,
2459 Point pos=DefaultPosition, Size size=DefaultSize,
2460 long style=0, Validator validator=DefaultValidator,
2461 String name=RadioButtonNameStr) -> RadioButton
2463 _controls_
.RadioButton_swiginit(self
,_controls_
.new_RadioButton(*args
, **kwargs
))
2464 self
._setOORInfo
(self
)
2466 def Create(*args
, **kwargs
):
2468 Create(self, Window parent, int id=-1, String label=EmptyString,
2469 Point pos=DefaultPosition, Size size=DefaultSize,
2470 long style=0, Validator validator=DefaultValidator,
2471 String name=RadioButtonNameStr) -> bool
2473 return _controls_
.RadioButton_Create(*args
, **kwargs
)
2475 def GetValue(*args
, **kwargs
):
2476 """GetValue(self) -> bool"""
2477 return _controls_
.RadioButton_GetValue(*args
, **kwargs
)
2479 def SetValue(*args
, **kwargs
):
2480 """SetValue(self, bool value)"""
2481 return _controls_
.RadioButton_SetValue(*args
, **kwargs
)
2483 def GetClassDefaultAttributes(*args
, **kwargs
):
2485 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2487 Get the default attributes for this class. This is useful if you want
2488 to use the same font or colour in your own control as in a standard
2489 control -- which is a much better idea than hard coding specific
2490 colours or fonts which might look completely out of place on the
2491 user's system, especially if it uses themes.
2493 The variant parameter is only relevant under Mac currently and is
2494 ignore under other platforms. Under Mac, it will change the size of
2495 the returned font. See `wx.Window.SetWindowVariant` for more about
2498 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2500 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2501 _controls_
.RadioButton_swigregister(RadioButton
)
2503 def PreRadioButton(*args
, **kwargs
):
2504 """PreRadioButton() -> RadioButton"""
2505 val
= _controls_
.new_PreRadioButton(*args
, **kwargs
)
2508 def RadioButton_GetClassDefaultAttributes(*args
, **kwargs
):
2510 RadioButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2512 Get the default attributes for this class. This is useful if you want
2513 to use the same font or colour in your own control as in a standard
2514 control -- which is a much better idea than hard coding specific
2515 colours or fonts which might look completely out of place on the
2516 user's system, especially if it uses themes.
2518 The variant parameter is only relevant under Mac currently and is
2519 ignore under other platforms. Under Mac, it will change the size of
2520 the returned font. See `wx.Window.SetWindowVariant` for more about
2523 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2525 #---------------------------------------------------------------------------
2527 SL_HORIZONTAL
= _controls_
.SL_HORIZONTAL
2528 SL_VERTICAL
= _controls_
.SL_VERTICAL
2529 SL_TICKS
= _controls_
.SL_TICKS
2530 SL_AUTOTICKS
= _controls_
.SL_AUTOTICKS
2531 SL_LABELS
= _controls_
.SL_LABELS
2532 SL_LEFT
= _controls_
.SL_LEFT
2533 SL_TOP
= _controls_
.SL_TOP
2534 SL_RIGHT
= _controls_
.SL_RIGHT
2535 SL_BOTTOM
= _controls_
.SL_BOTTOM
2536 SL_BOTH
= _controls_
.SL_BOTH
2537 SL_SELRANGE
= _controls_
.SL_SELRANGE
2538 SL_INVERSE
= _controls_
.SL_INVERSE
2539 class Slider(_core
.Control
):
2540 """Proxy of C++ Slider class"""
2541 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2542 __repr__
= _swig_repr
2543 def __init__(self
, *args
, **kwargs
):
2545 __init__(self, Window parent, int id=-1, int value=0, int minValue=0,
2546 int maxValue=100, Point pos=DefaultPosition,
2547 Size size=DefaultSize, long style=SL_HORIZONTAL,
2548 Validator validator=DefaultValidator,
2549 String name=SliderNameStr) -> Slider
2551 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2552 _controls_
.Slider_swiginit(self
,_controls_
.new_Slider(*args
, **kwargs
))
2553 self
._setOORInfo
(self
)
2555 def Create(*args
, **kwargs
):
2557 Create(self, Window parent, int id=-1, int value=0, int minValue=0,
2558 int maxValue=100, Point pos=DefaultPosition,
2559 Size size=DefaultSize, long style=SL_HORIZONTAL,
2560 Validator validator=DefaultValidator,
2561 String name=SliderNameStr) -> bool
2563 return _controls_
.Slider_Create(*args
, **kwargs
)
2565 def GetValue(*args
, **kwargs
):
2566 """GetValue(self) -> int"""
2567 return _controls_
.Slider_GetValue(*args
, **kwargs
)
2569 def SetValue(*args
, **kwargs
):
2570 """SetValue(self, int value)"""
2571 return _controls_
.Slider_SetValue(*args
, **kwargs
)
2573 def SetRange(*args
, **kwargs
):
2574 """SetRange(self, int minValue, int maxValue)"""
2575 return _controls_
.Slider_SetRange(*args
, **kwargs
)
2577 def GetMin(*args
, **kwargs
):
2578 """GetMin(self) -> int"""
2579 return _controls_
.Slider_GetMin(*args
, **kwargs
)
2581 def GetMax(*args
, **kwargs
):
2582 """GetMax(self) -> int"""
2583 return _controls_
.Slider_GetMax(*args
, **kwargs
)
2585 def SetMin(*args
, **kwargs
):
2586 """SetMin(self, int minValue)"""
2587 return _controls_
.Slider_SetMin(*args
, **kwargs
)
2589 def SetMax(*args
, **kwargs
):
2590 """SetMax(self, int maxValue)"""
2591 return _controls_
.Slider_SetMax(*args
, **kwargs
)
2593 def SetLineSize(*args
, **kwargs
):
2594 """SetLineSize(self, int lineSize)"""
2595 return _controls_
.Slider_SetLineSize(*args
, **kwargs
)
2597 def SetPageSize(*args
, **kwargs
):
2598 """SetPageSize(self, int pageSize)"""
2599 return _controls_
.Slider_SetPageSize(*args
, **kwargs
)
2601 def GetLineSize(*args
, **kwargs
):
2602 """GetLineSize(self) -> int"""
2603 return _controls_
.Slider_GetLineSize(*args
, **kwargs
)
2605 def GetPageSize(*args
, **kwargs
):
2606 """GetPageSize(self) -> int"""
2607 return _controls_
.Slider_GetPageSize(*args
, **kwargs
)
2609 def SetThumbLength(*args
, **kwargs
):
2610 """SetThumbLength(self, int lenPixels)"""
2611 return _controls_
.Slider_SetThumbLength(*args
, **kwargs
)
2613 def GetThumbLength(*args
, **kwargs
):
2614 """GetThumbLength(self) -> int"""
2615 return _controls_
.Slider_GetThumbLength(*args
, **kwargs
)
2617 def SetTickFreq(*args
, **kwargs
):
2618 """SetTickFreq(self, int n, int pos=1)"""
2619 return _controls_
.Slider_SetTickFreq(*args
, **kwargs
)
2621 def GetTickFreq(*args
, **kwargs
):
2622 """GetTickFreq(self) -> int"""
2623 return _controls_
.Slider_GetTickFreq(*args
, **kwargs
)
2625 def ClearTicks(*args
, **kwargs
):
2626 """ClearTicks(self)"""
2627 return _controls_
.Slider_ClearTicks(*args
, **kwargs
)
2629 def SetTick(*args
, **kwargs
):
2630 """SetTick(self, int tickPos)"""
2631 return _controls_
.Slider_SetTick(*args
, **kwargs
)
2633 def ClearSel(*args
, **kwargs
):
2634 """ClearSel(self)"""
2635 return _controls_
.Slider_ClearSel(*args
, **kwargs
)
2637 def GetSelEnd(*args
, **kwargs
):
2638 """GetSelEnd(self) -> int"""
2639 return _controls_
.Slider_GetSelEnd(*args
, **kwargs
)
2641 def GetSelStart(*args
, **kwargs
):
2642 """GetSelStart(self) -> int"""
2643 return _controls_
.Slider_GetSelStart(*args
, **kwargs
)
2645 def SetSelection(*args
, **kwargs
):
2646 """SetSelection(self, int min, int max)"""
2647 return _controls_
.Slider_SetSelection(*args
, **kwargs
)
2649 def GetClassDefaultAttributes(*args
, **kwargs
):
2651 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2653 Get the default attributes for this class. This is useful if you want
2654 to use the same font or colour in your own control as in a standard
2655 control -- which is a much better idea than hard coding specific
2656 colours or fonts which might look completely out of place on the
2657 user's system, especially if it uses themes.
2659 The variant parameter is only relevant under Mac currently and is
2660 ignore under other platforms. Under Mac, it will change the size of
2661 the returned font. See `wx.Window.SetWindowVariant` for more about
2664 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2666 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2667 _controls_
.Slider_swigregister(Slider
)
2668 SliderNameStr
= cvar
.SliderNameStr
2670 def PreSlider(*args
, **kwargs
):
2671 """PreSlider() -> Slider"""
2672 val
= _controls_
.new_PreSlider(*args
, **kwargs
)
2675 def Slider_GetClassDefaultAttributes(*args
, **kwargs
):
2677 Slider_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2679 Get the default attributes for this class. This is useful if you want
2680 to use the same font or colour in your own control as in a standard
2681 control -- which is a much better idea than hard coding specific
2682 colours or fonts which might look completely out of place on the
2683 user's system, especially if it uses themes.
2685 The variant parameter is only relevant under Mac currently and is
2686 ignore under other platforms. Under Mac, it will change the size of
2687 the returned font. See `wx.Window.SetWindowVariant` for more about
2690 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2692 #---------------------------------------------------------------------------
2694 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
= _controls_
.wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
2695 EVT_TOGGLEBUTTON
= wx
.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
, 1)
2697 class ToggleButton(_core
.Control
):
2698 """Proxy of C++ ToggleButton class"""
2699 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2700 __repr__
= _swig_repr
2701 def __init__(self
, *args
, **kwargs
):
2703 __init__(self, Window parent, int id=-1, String label=EmptyString,
2704 Point pos=DefaultPosition, Size size=DefaultSize,
2705 long style=0, Validator validator=DefaultValidator,
2706 String name=ToggleButtonNameStr) -> ToggleButton
2708 _controls_
.ToggleButton_swiginit(self
,_controls_
.new_ToggleButton(*args
, **kwargs
))
2709 self
._setOORInfo
(self
)
2711 def Create(*args
, **kwargs
):
2713 Create(self, Window parent, int id=-1, String label=EmptyString,
2714 Point pos=DefaultPosition, Size size=DefaultSize,
2715 long style=0, Validator validator=DefaultValidator,
2716 String name=ToggleButtonNameStr) -> bool
2718 return _controls_
.ToggleButton_Create(*args
, **kwargs
)
2720 def SetValue(*args
, **kwargs
):
2721 """SetValue(self, bool value)"""
2722 return _controls_
.ToggleButton_SetValue(*args
, **kwargs
)
2724 def GetValue(*args
, **kwargs
):
2725 """GetValue(self) -> bool"""
2726 return _controls_
.ToggleButton_GetValue(*args
, **kwargs
)
2728 def GetClassDefaultAttributes(*args
, **kwargs
):
2730 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2732 Get the default attributes for this class. This is useful if you want
2733 to use the same font or colour in your own control as in a standard
2734 control -- which is a much better idea than hard coding specific
2735 colours or fonts which might look completely out of place on the
2736 user's system, especially if it uses themes.
2738 The variant parameter is only relevant under Mac currently and is
2739 ignore under other platforms. Under Mac, it will change the size of
2740 the returned font. See `wx.Window.SetWindowVariant` for more about
2743 return _controls_
.ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
)
2745 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2746 _controls_
.ToggleButton_swigregister(ToggleButton
)
2747 ToggleButtonNameStr
= cvar
.ToggleButtonNameStr
2749 def PreToggleButton(*args
, **kwargs
):
2750 """PreToggleButton() -> ToggleButton"""
2751 val
= _controls_
.new_PreToggleButton(*args
, **kwargs
)
2754 def ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
):
2756 ToggleButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2758 Get the default attributes for this class. This is useful if you want
2759 to use the same font or colour in your own control as in a standard
2760 control -- which is a much better idea than hard coding specific
2761 colours or fonts which might look completely out of place on the
2762 user's system, especially if it uses themes.
2764 The variant parameter is only relevant under Mac currently and is
2765 ignore under other platforms. Under Mac, it will change the size of
2766 the returned font. See `wx.Window.SetWindowVariant` for more about
2769 return _controls_
.ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
)
2771 #---------------------------------------------------------------------------
2773 BK_DEFAULT
= _controls_
.BK_DEFAULT
2774 BK_TOP
= _controls_
.BK_TOP
2775 BK_BOTTOM
= _controls_
.BK_BOTTOM
2776 BK_LEFT
= _controls_
.BK_LEFT
2777 BK_RIGHT
= _controls_
.BK_RIGHT
2778 BK_ALIGN_MASK
= _controls_
.BK_ALIGN_MASK
2779 BK_BUTTONBAR
= _controls_
.BK_BUTTONBAR
2780 BK_HITTEST_NOWHERE
= _controls_
.BK_HITTEST_NOWHERE
2781 BK_HITTEST_ONICON
= _controls_
.BK_HITTEST_ONICON
2782 BK_HITTEST_ONLABEL
= _controls_
.BK_HITTEST_ONLABEL
2783 BK_HITTEST_ONITEM
= _controls_
.BK_HITTEST_ONITEM
2784 BK_HITTEST_ONPAGE
= _controls_
.BK_HITTEST_ONPAGE
2785 class BookCtrlBase(_core
.Control
):
2786 """Proxy of C++ BookCtrlBase class"""
2787 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2788 def __init__(self
): raise AttributeError, "No constructor defined"
2789 __repr__
= _swig_repr
2790 def GetPageCount(*args
, **kwargs
):
2791 """GetPageCount(self) -> size_t"""
2792 return _controls_
.BookCtrlBase_GetPageCount(*args
, **kwargs
)
2794 def GetPage(*args
, **kwargs
):
2795 """GetPage(self, size_t n) -> Window"""
2796 return _controls_
.BookCtrlBase_GetPage(*args
, **kwargs
)
2798 def GetCurrentPage(*args
, **kwargs
):
2799 """GetCurrentPage(self) -> Window"""
2800 return _controls_
.BookCtrlBase_GetCurrentPage(*args
, **kwargs
)
2802 def GetSelection(*args
, **kwargs
):
2803 """GetSelection(self) -> int"""
2804 return _controls_
.BookCtrlBase_GetSelection(*args
, **kwargs
)
2806 def SetPageText(*args
, **kwargs
):
2807 """SetPageText(self, size_t n, String strText) -> bool"""
2808 return _controls_
.BookCtrlBase_SetPageText(*args
, **kwargs
)
2810 def GetPageText(*args
, **kwargs
):
2811 """GetPageText(self, size_t n) -> String"""
2812 return _controls_
.BookCtrlBase_GetPageText(*args
, **kwargs
)
2814 def SetImageList(*args
, **kwargs
):
2815 """SetImageList(self, ImageList imageList)"""
2816 return _controls_
.BookCtrlBase_SetImageList(*args
, **kwargs
)
2818 def AssignImageList(*args
, **kwargs
):
2819 """AssignImageList(self, ImageList imageList)"""
2820 return _controls_
.BookCtrlBase_AssignImageList(*args
, **kwargs
)
2822 def GetImageList(*args
, **kwargs
):
2823 """GetImageList(self) -> ImageList"""
2824 return _controls_
.BookCtrlBase_GetImageList(*args
, **kwargs
)
2826 def GetPageImage(*args
, **kwargs
):
2827 """GetPageImage(self, size_t n) -> int"""
2828 return _controls_
.BookCtrlBase_GetPageImage(*args
, **kwargs
)
2830 def SetPageImage(*args
, **kwargs
):
2831 """SetPageImage(self, size_t n, int imageId) -> bool"""
2832 return _controls_
.BookCtrlBase_SetPageImage(*args
, **kwargs
)
2834 def SetPageSize(*args
, **kwargs
):
2835 """SetPageSize(self, Size size)"""
2836 return _controls_
.BookCtrlBase_SetPageSize(*args
, **kwargs
)
2838 def CalcSizeFromPage(*args
, **kwargs
):
2839 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2840 return _controls_
.BookCtrlBase_CalcSizeFromPage(*args
, **kwargs
)
2842 def GetInternalBorder(*args
, **kwargs
):
2843 """GetInternalBorder(self) -> unsigned int"""
2844 return _controls_
.BookCtrlBase_GetInternalBorder(*args
, **kwargs
)
2846 def SetInternalBorder(*args
, **kwargs
):
2847 """SetInternalBorder(self, unsigned int internalBorder)"""
2848 return _controls_
.BookCtrlBase_SetInternalBorder(*args
, **kwargs
)
2850 def IsVertical(*args
, **kwargs
):
2851 """IsVertical(self) -> bool"""
2852 return _controls_
.BookCtrlBase_IsVertical(*args
, **kwargs
)
2854 def SetControlMargin(*args
, **kwargs
):
2855 """SetControlMargin(self, int margin)"""
2856 return _controls_
.BookCtrlBase_SetControlMargin(*args
, **kwargs
)
2858 def GetControlMargin(*args
, **kwargs
):
2859 """GetControlMargin(self) -> int"""
2860 return _controls_
.BookCtrlBase_GetControlMargin(*args
, **kwargs
)
2862 def SetFitToCurrentPage(*args
, **kwargs
):
2863 """SetFitToCurrentPage(self, bool fit)"""
2864 return _controls_
.BookCtrlBase_SetFitToCurrentPage(*args
, **kwargs
)
2866 def GetFitToCurrentPage(*args
, **kwargs
):
2867 """GetFitToCurrentPage(self) -> bool"""
2868 return _controls_
.BookCtrlBase_GetFitToCurrentPage(*args
, **kwargs
)
2870 def GetControlSizer(*args
, **kwargs
):
2871 """GetControlSizer(self) -> Sizer"""
2872 return _controls_
.BookCtrlBase_GetControlSizer(*args
, **kwargs
)
2874 def DeletePage(*args
, **kwargs
):
2875 """DeletePage(self, size_t n) -> bool"""
2876 return _controls_
.BookCtrlBase_DeletePage(*args
, **kwargs
)
2878 def RemovePage(*args
, **kwargs
):
2879 """RemovePage(self, size_t n) -> bool"""
2880 return _controls_
.BookCtrlBase_RemovePage(*args
, **kwargs
)
2882 def DeleteAllPages(*args
, **kwargs
):
2883 """DeleteAllPages(self) -> bool"""
2884 return _controls_
.BookCtrlBase_DeleteAllPages(*args
, **kwargs
)
2886 def AddPage(*args
, **kwargs
):
2887 """AddPage(self, Window page, String text, bool select=False, int imageId=-1) -> bool"""
2888 return _controls_
.BookCtrlBase_AddPage(*args
, **kwargs
)
2890 def InsertPage(*args
, **kwargs
):
2892 InsertPage(self, size_t n, Window page, String text, bool select=False,
2893 int imageId=-1) -> bool
2895 return _controls_
.BookCtrlBase_InsertPage(*args
, **kwargs
)
2897 def SetSelection(*args
, **kwargs
):
2898 """SetSelection(self, size_t n) -> int"""
2899 return _controls_
.BookCtrlBase_SetSelection(*args
, **kwargs
)
2901 def AdvanceSelection(*args
, **kwargs
):
2902 """AdvanceSelection(self, bool forward=True)"""
2903 return _controls_
.BookCtrlBase_AdvanceSelection(*args
, **kwargs
)
2905 def HitTest(*args
, **kwargs
):
2907 HitTest(Point pt) -> (tab, where)
2909 Returns the page/tab which is hit, and flags indicating where using
2910 wx.NB_HITTEST flags.
2912 return _controls_
.BookCtrlBase_HitTest(*args
, **kwargs
)
2914 def GetClassDefaultAttributes(*args
, **kwargs
):
2916 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2918 Get the default attributes for this class. This is useful if you want
2919 to use the same font or colour in your own control as in a standard
2920 control -- which is a much better idea than hard coding specific
2921 colours or fonts which might look completely out of place on the
2922 user's system, especially if it uses themes.
2924 The variant parameter is only relevant under Mac currently and is
2925 ignore under other platforms. Under Mac, it will change the size of
2926 the returned font. See `wx.Window.SetWindowVariant` for more about
2929 return _controls_
.BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
)
2931 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2932 ControlMargin
= property(GetControlMargin
,SetControlMargin
,doc
="See `GetControlMargin` and `SetControlMargin`")
2933 ControlSizer
= property(GetControlSizer
,doc
="See `GetControlSizer`")
2934 CurrentPage
= property(GetCurrentPage
,doc
="See `GetCurrentPage`")
2935 FitToCurrentPage
= property(GetFitToCurrentPage
,SetFitToCurrentPage
,doc
="See `GetFitToCurrentPage` and `SetFitToCurrentPage`")
2936 ImageList
= property(GetImageList
,SetImageList
,doc
="See `GetImageList` and `SetImageList`")
2937 InternalBorder
= property(GetInternalBorder
,SetInternalBorder
,doc
="See `GetInternalBorder` and `SetInternalBorder`")
2938 Page
= property(GetPage
,doc
="See `GetPage`")
2939 PageCount
= property(GetPageCount
,doc
="See `GetPageCount`")
2940 PageImage
= property(GetPageImage
,SetPageImage
,doc
="See `GetPageImage` and `SetPageImage`")
2941 PageText
= property(GetPageText
,SetPageText
,doc
="See `GetPageText` and `SetPageText`")
2942 Selection
= property(GetSelection
,SetSelection
,doc
="See `GetSelection` and `SetSelection`")
2943 _controls_
.BookCtrlBase_swigregister(BookCtrlBase
)
2944 NotebookNameStr
= cvar
.NotebookNameStr
2946 def BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
):
2948 BookCtrlBase_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2950 Get the default attributes for this class. This is useful if you want
2951 to use the same font or colour in your own control as in a standard
2952 control -- which is a much better idea than hard coding specific
2953 colours or fonts which might look completely out of place on the
2954 user's system, especially if it uses themes.
2956 The variant parameter is only relevant under Mac currently and is
2957 ignore under other platforms. Under Mac, it will change the size of
2958 the returned font. See `wx.Window.SetWindowVariant` for more about
2961 return _controls_
.BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
)
2963 class BookCtrlBaseEvent(_core
.NotifyEvent
):
2964 """Proxy of C++ BookCtrlBaseEvent class"""
2965 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2966 __repr__
= _swig_repr
2967 def __init__(self
, *args
, **kwargs
):
2969 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2970 int nOldSel=-1) -> BookCtrlBaseEvent
2972 _controls_
.BookCtrlBaseEvent_swiginit(self
,_controls_
.new_BookCtrlBaseEvent(*args
, **kwargs
))
2973 def GetSelection(*args
, **kwargs
):
2975 GetSelection(self) -> int
2977 Returns item index for a listbox or choice selection event (not valid
2980 return _controls_
.BookCtrlBaseEvent_GetSelection(*args
, **kwargs
)
2982 def SetSelection(*args
, **kwargs
):
2983 """SetSelection(self, int nSel)"""
2984 return _controls_
.BookCtrlBaseEvent_SetSelection(*args
, **kwargs
)
2986 def GetOldSelection(*args
, **kwargs
):
2987 """GetOldSelection(self) -> int"""
2988 return _controls_
.BookCtrlBaseEvent_GetOldSelection(*args
, **kwargs
)
2990 def SetOldSelection(*args
, **kwargs
):
2991 """SetOldSelection(self, int nOldSel)"""
2992 return _controls_
.BookCtrlBaseEvent_SetOldSelection(*args
, **kwargs
)
2994 OldSelection
= property(GetOldSelection
,SetOldSelection
,doc
="See `GetOldSelection` and `SetOldSelection`")
2995 Selection
= property(GetSelection
,SetSelection
,doc
="See `GetSelection` and `SetSelection`")
2996 _controls_
.BookCtrlBaseEvent_swigregister(BookCtrlBaseEvent
)
2998 #---------------------------------------------------------------------------
3000 NB_FIXEDWIDTH
= _controls_
.NB_FIXEDWIDTH
3001 NB_TOP
= _controls_
.NB_TOP
3002 NB_LEFT
= _controls_
.NB_LEFT
3003 NB_RIGHT
= _controls_
.NB_RIGHT
3004 NB_BOTTOM
= _controls_
.NB_BOTTOM
3005 NB_MULTILINE
= _controls_
.NB_MULTILINE
3006 NB_NOPAGETHEME
= _controls_
.NB_NOPAGETHEME
3007 NB_HITTEST_NOWHERE
= _controls_
.NB_HITTEST_NOWHERE
3008 NB_HITTEST_ONICON
= _controls_
.NB_HITTEST_ONICON
3009 NB_HITTEST_ONLABEL
= _controls_
.NB_HITTEST_ONLABEL
3010 NB_HITTEST_ONITEM
= _controls_
.NB_HITTEST_ONITEM
3011 NB_HITTEST_ONPAGE
= _controls_
.NB_HITTEST_ONPAGE
3012 class Notebook(BookCtrlBase
):
3013 """Proxy of C++ Notebook class"""
3014 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3015 __repr__
= _swig_repr
3016 def __init__(self
, *args
, **kwargs
):
3018 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3019 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> Notebook
3021 _controls_
.Notebook_swiginit(self
,_controls_
.new_Notebook(*args
, **kwargs
))
3022 self
._setOORInfo
(self
)
3024 def Create(*args
, **kwargs
):
3026 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3027 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> bool
3029 return _controls_
.Notebook_Create(*args
, **kwargs
)
3031 def GetRowCount(*args
, **kwargs
):
3032 """GetRowCount(self) -> int"""
3033 return _controls_
.Notebook_GetRowCount(*args
, **kwargs
)
3035 def SetPadding(*args
, **kwargs
):
3036 """SetPadding(self, Size padding)"""
3037 return _controls_
.Notebook_SetPadding(*args
, **kwargs
)
3039 def SetTabSize(*args
, **kwargs
):
3040 """SetTabSize(self, Size sz)"""
3041 return _controls_
.Notebook_SetTabSize(*args
, **kwargs
)
3043 def GetThemeBackgroundColour(*args
, **kwargs
):
3044 """GetThemeBackgroundColour(self) -> Colour"""
3045 return _controls_
.Notebook_GetThemeBackgroundColour(*args
, **kwargs
)
3047 def GetClassDefaultAttributes(*args
, **kwargs
):
3049 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3051 Get the default attributes for this class. This is useful if you want
3052 to use the same font or colour in your own control as in a standard
3053 control -- which is a much better idea than hard coding specific
3054 colours or fonts which might look completely out of place on the
3055 user's system, especially if it uses themes.
3057 The variant parameter is only relevant under Mac currently and is
3058 ignore under other platforms. Under Mac, it will change the size of
3059 the returned font. See `wx.Window.SetWindowVariant` for more about
3062 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
3064 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3065 _controls_
.Notebook_swigregister(Notebook
)
3067 def PreNotebook(*args
, **kwargs
):
3068 """PreNotebook() -> Notebook"""
3069 val
= _controls_
.new_PreNotebook(*args
, **kwargs
)
3072 def Notebook_GetClassDefaultAttributes(*args
, **kwargs
):
3074 Notebook_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3076 Get the default attributes for this class. This is useful if you want
3077 to use the same font or colour in your own control as in a standard
3078 control -- which is a much better idea than hard coding specific
3079 colours or fonts which might look completely out of place on the
3080 user's system, especially if it uses themes.
3082 The variant parameter is only relevant under Mac currently and is
3083 ignore under other platforms. Under Mac, it will change the size of
3084 the returned font. See `wx.Window.SetWindowVariant` for more about
3087 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
3089 class NotebookEvent(BookCtrlBaseEvent
):
3090 """Proxy of C++ NotebookEvent class"""
3091 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3092 __repr__
= _swig_repr
3093 def __init__(self
, *args
, **kwargs
):
3095 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3096 int nOldSel=-1) -> NotebookEvent
3098 _controls_
.NotebookEvent_swiginit(self
,_controls_
.new_NotebookEvent(*args
, **kwargs
))
3099 _controls_
.NotebookEvent_swigregister(NotebookEvent
)
3101 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
3102 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
3104 EVT_NOTEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, 1 )
3105 EVT_NOTEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, 1 )
3107 #----------------------------------------------------------------------------
3109 class NotebookPage(wx
.Panel
):
3111 There is an old (and apparently unsolvable) bug when placing a
3112 window with a nonstandard background colour in a wx.Notebook on
3113 wxGTK1, as the notbooks's background colour would always be used
3114 when the window is refreshed. The solution is to place a panel in
3115 the notbook and the coloured window on the panel, sized to cover
3116 the panel. This simple class does that for you, just put an
3117 instance of this in the notebook and make your regular window a
3118 child of this one and it will handle the resize for you.
3120 def __init__(self
, parent
, id=-1,
3121 pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
,
3122 style
=wx
.TAB_TRAVERSAL
, name
="panel"):
3123 wx
.Panel
.__init
__(self
, parent
, id, pos
, size
, style
, name
)
3125 self
.Bind(wx
.EVT_SIZE
, self
.OnSize
)
3127 def OnSize(self
, evt
):
3128 if self
.child
is None:
3129 children
= self
.GetChildren()
3131 self
.child
= children
[0]
3133 self
.child
.SetPosition((0,0))
3134 self
.child
.SetSize(self
.GetSize())
3137 #---------------------------------------------------------------------------
3139 LB_DEFAULT
= _controls_
.LB_DEFAULT
3140 LB_TOP
= _controls_
.LB_TOP
3141 LB_BOTTOM
= _controls_
.LB_BOTTOM
3142 LB_LEFT
= _controls_
.LB_LEFT
3143 LB_RIGHT
= _controls_
.LB_RIGHT
3144 LB_ALIGN_MASK
= _controls_
.LB_ALIGN_MASK
3145 class Listbook(BookCtrlBase
):
3146 """Proxy of C++ Listbook class"""
3147 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3148 __repr__
= _swig_repr
3149 def __init__(self
, *args
, **kwargs
):
3151 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3152 Size size=DefaultSize, long style=0, String name=EmptyString) -> Listbook
3154 _controls_
.Listbook_swiginit(self
,_controls_
.new_Listbook(*args
, **kwargs
))
3155 self
._setOORInfo
(self
)
3157 def Create(*args
, **kwargs
):
3159 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3160 Size size=DefaultSize, long style=0, String name=EmptyString) -> bool
3162 return _controls_
.Listbook_Create(*args
, **kwargs
)
3164 def GetListView(*args
, **kwargs
):
3165 """GetListView(self) -> ListView"""
3166 return _controls_
.Listbook_GetListView(*args
, **kwargs
)
3168 _controls_
.Listbook_swigregister(Listbook
)
3170 def PreListbook(*args
, **kwargs
):
3171 """PreListbook() -> Listbook"""
3172 val
= _controls_
.new_PreListbook(*args
, **kwargs
)
3175 class ListbookEvent(BookCtrlBaseEvent
):
3176 """Proxy of C++ ListbookEvent class"""
3177 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3178 __repr__
= _swig_repr
3179 def __init__(self
, *args
, **kwargs
):
3181 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3182 int nOldSel=-1) -> ListbookEvent
3184 _controls_
.ListbookEvent_swiginit(self
,_controls_
.new_ListbookEvent(*args
, **kwargs
))
3185 _controls_
.ListbookEvent_swigregister(ListbookEvent
)
3187 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
3188 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
3189 EVT_LISTBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
, 1 )
3190 EVT_LISTBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
, 1 )
3192 CHB_DEFAULT
= _controls_
.CHB_DEFAULT
3193 CHB_TOP
= _controls_
.CHB_TOP
3194 CHB_BOTTOM
= _controls_
.CHB_BOTTOM
3195 CHB_LEFT
= _controls_
.CHB_LEFT
3196 CHB_RIGHT
= _controls_
.CHB_RIGHT
3197 CHB_ALIGN_MASK
= _controls_
.CHB_ALIGN_MASK
3198 class Choicebook(BookCtrlBase
):
3199 """Proxy of C++ Choicebook class"""
3200 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3201 __repr__
= _swig_repr
3202 def __init__(self
, *args
, **kwargs
):
3204 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3205 long style=0, String name=EmptyString) -> Choicebook
3207 _controls_
.Choicebook_swiginit(self
,_controls_
.new_Choicebook(*args
, **kwargs
))
3208 self
._setOORInfo
(self
)
3210 def Create(*args
, **kwargs
):
3212 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3213 long style=0, String name=EmptyString) -> bool
3215 return _controls_
.Choicebook_Create(*args
, **kwargs
)
3217 def GetChoiceCtrl(*args
, **kwargs
):
3218 """GetChoiceCtrl(self) -> Choice"""
3219 return _controls_
.Choicebook_GetChoiceCtrl(*args
, **kwargs
)
3221 ChoiceCtrl
= property(GetChoiceCtrl
,doc
="See `GetChoiceCtrl`")
3222 _controls_
.Choicebook_swigregister(Choicebook
)
3224 def PreChoicebook(*args
, **kwargs
):
3225 """PreChoicebook() -> Choicebook"""
3226 val
= _controls_
.new_PreChoicebook(*args
, **kwargs
)
3229 class ChoicebookEvent(BookCtrlBaseEvent
):
3230 """Proxy of C++ ChoicebookEvent class"""
3231 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3232 __repr__
= _swig_repr
3233 def __init__(self
, *args
, **kwargs
):
3235 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3236 int nOldSel=-1) -> ChoicebookEvent
3238 _controls_
.ChoicebookEvent_swiginit(self
,_controls_
.new_ChoicebookEvent(*args
, **kwargs
))
3239 _controls_
.ChoicebookEvent_swigregister(ChoicebookEvent
)
3241 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
3242 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
3243 EVT_CHOICEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
, 1 )
3244 EVT_CHOICEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
, 1 )
3246 #---------------------------------------------------------------------------
3248 class Treebook(BookCtrlBase
):
3249 """Proxy of C++ Treebook class"""
3250 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3251 __repr__
= _swig_repr
3252 def __init__(self
, *args
, **kwargs
):
3254 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3255 long style=BK_DEFAULT,
3256 String name=EmptyString) -> Treebook
3258 _controls_
.Treebook_swiginit(self
,_controls_
.new_Treebook(*args
, **kwargs
))
3259 self
._setOORInfo
(self
)
3261 def Create(*args
, **kwargs
):
3263 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3264 long style=BK_DEFAULT,
3265 String name=EmptyString) -> bool
3267 return _controls_
.Treebook_Create(*args
, **kwargs
)
3269 def InsertSubPage(*args
, **kwargs
):
3271 InsertSubPage(self, size_t pos, Window page, String text, bool select=False,
3272 int imageId=NOT_FOUND) -> bool
3274 return _controls_
.Treebook_InsertSubPage(*args
, **kwargs
)
3276 def AddSubPage(*args
, **kwargs
):
3277 """AddSubPage(self, Window page, String text, bool select=False, int imageId=NOT_FOUND) -> bool"""
3278 return _controls_
.Treebook_AddSubPage(*args
, **kwargs
)
3280 def IsNodeExpanded(*args
, **kwargs
):
3281 """IsNodeExpanded(self, size_t pos) -> bool"""
3282 return _controls_
.Treebook_IsNodeExpanded(*args
, **kwargs
)
3284 def ExpandNode(*args
, **kwargs
):
3285 """ExpandNode(self, size_t pos, bool expand=True) -> bool"""
3286 return _controls_
.Treebook_ExpandNode(*args
, **kwargs
)
3288 def CollapseNode(*args
, **kwargs
):
3289 """CollapseNode(self, size_t pos) -> bool"""
3290 return _controls_
.Treebook_CollapseNode(*args
, **kwargs
)
3292 def GetPageParent(*args
, **kwargs
):
3293 """GetPageParent(self, size_t pos) -> int"""
3294 return _controls_
.Treebook_GetPageParent(*args
, **kwargs
)
3296 def GetTreeCtrl(*args
, **kwargs
):
3297 """GetTreeCtrl(self) -> TreeCtrl"""
3298 return _controls_
.Treebook_GetTreeCtrl(*args
, **kwargs
)
3300 _controls_
.Treebook_swigregister(Treebook
)
3302 def PreTreebook(*args
, **kwargs
):
3303 """PreTreebook() -> Treebook"""
3304 val
= _controls_
.new_PreTreebook(*args
, **kwargs
)
3307 class TreebookEvent(BookCtrlBaseEvent
):
3308 """Proxy of C++ TreebookEvent class"""
3309 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3310 __repr__
= _swig_repr
3311 def __init__(self
, *args
, **kwargs
):
3313 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=NOT_FOUND,
3314 int nOldSel=NOT_FOUND) -> TreebookEvent
3316 _controls_
.TreebookEvent_swiginit(self
,_controls_
.new_TreebookEvent(*args
, **kwargs
))
3317 _controls_
.TreebookEvent_swigregister(TreebookEvent
)
3319 wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
3320 wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
3321 wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
3322 wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
= _controls_
.wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
3323 EVT_TREEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
, 1 )
3324 EVT_TREEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
, 1)
3325 EVT_TREEBOOK_NODE_COLLAPSED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
, 1 )
3326 EVT_TREEBOOK_NODE_EXPANDED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
, 1 )
3328 #---------------------------------------------------------------------------
3330 class Toolbook(BookCtrlBase
):
3331 """Proxy of C++ Toolbook class"""
3332 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3333 __repr__
= _swig_repr
3334 def __init__(self
, *args
, **kwargs
):
3336 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3337 long style=BK_DEFAULT,
3338 String name=EmptyString) -> Toolbook
3340 _controls_
.Toolbook_swiginit(self
,_controls_
.new_Toolbook(*args
, **kwargs
))
3341 self
._setOORInfo
(self
)
3343 def Create(*args
, **kwargs
):
3345 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3346 long style=0, String name=wxEmptyString) -> bool
3348 return _controls_
.Toolbook_Create(*args
, **kwargs
)
3350 def GetToolBar(*args
, **kwargs
):
3351 """GetToolBar(self) -> ToolBarBase"""
3352 return _controls_
.Toolbook_GetToolBar(*args
, **kwargs
)
3354 def Realize(*args
, **kwargs
):
3356 return _controls_
.Toolbook_Realize(*args
, **kwargs
)
3358 _controls_
.Toolbook_swigregister(Toolbook
)
3360 def PreToolbook(*args
, **kwargs
):
3361 """PreToolbook() -> Toolbook"""
3362 val
= _controls_
.new_PreToolbook(*args
, **kwargs
)
3365 class ToolbookEvent(BookCtrlBaseEvent
):
3366 """Proxy of C++ ToolbookEvent class"""
3367 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3368 __repr__
= _swig_repr
3369 def __init__(self
, *args
, **kwargs
):
3371 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=NOT_FOUND,
3372 int nOldSel=NOT_FOUND) -> ToolbookEvent
3374 _controls_
.ToolbookEvent_swiginit(self
,_controls_
.new_ToolbookEvent(*args
, **kwargs
))
3375 _controls_
.ToolbookEvent_swigregister(ToolbookEvent
)
3377 wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
3378 wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
3379 EVT_TOOLBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
, 1)
3380 EVT_TOOLBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
, 1)
3382 #---------------------------------------------------------------------------
3384 TOOL_STYLE_BUTTON
= _controls_
.TOOL_STYLE_BUTTON
3385 TOOL_STYLE_SEPARATOR
= _controls_
.TOOL_STYLE_SEPARATOR
3386 TOOL_STYLE_CONTROL
= _controls_
.TOOL_STYLE_CONTROL
3387 TB_HORIZONTAL
= _controls_
.TB_HORIZONTAL
3388 TB_VERTICAL
= _controls_
.TB_VERTICAL
3389 TB_3DBUTTONS
= _controls_
.TB_3DBUTTONS
3390 TB_FLAT
= _controls_
.TB_FLAT
3391 TB_DOCKABLE
= _controls_
.TB_DOCKABLE
3392 TB_NOICONS
= _controls_
.TB_NOICONS
3393 TB_TEXT
= _controls_
.TB_TEXT
3394 TB_NODIVIDER
= _controls_
.TB_NODIVIDER
3395 TB_NOALIGN
= _controls_
.TB_NOALIGN
3396 TB_HORZ_LAYOUT
= _controls_
.TB_HORZ_LAYOUT
3397 TB_HORZ_TEXT
= _controls_
.TB_HORZ_TEXT
3398 TB_NO_TOOLTIPS
= _controls_
.TB_NO_TOOLTIPS
3399 class ToolBarToolBase(_core
.Object
):
3400 """Proxy of C++ ToolBarToolBase class"""
3401 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3402 def __init__(self
): raise AttributeError, "No constructor defined"
3403 __repr__
= _swig_repr
3404 def GetId(*args
, **kwargs
):
3405 """GetId(self) -> int"""
3406 return _controls_
.ToolBarToolBase_GetId(*args
, **kwargs
)
3408 def GetControl(*args
, **kwargs
):
3409 """GetControl(self) -> Control"""
3410 return _controls_
.ToolBarToolBase_GetControl(*args
, **kwargs
)
3412 def GetToolBar(*args
, **kwargs
):
3413 """GetToolBar(self) -> ToolBarBase"""
3414 return _controls_
.ToolBarToolBase_GetToolBar(*args
, **kwargs
)
3416 def IsButton(*args
, **kwargs
):
3417 """IsButton(self) -> int"""
3418 return _controls_
.ToolBarToolBase_IsButton(*args
, **kwargs
)
3420 def IsControl(*args
, **kwargs
):
3421 """IsControl(self) -> int"""
3422 return _controls_
.ToolBarToolBase_IsControl(*args
, **kwargs
)
3424 def IsSeparator(*args
, **kwargs
):
3425 """IsSeparator(self) -> int"""
3426 return _controls_
.ToolBarToolBase_IsSeparator(*args
, **kwargs
)
3428 def GetStyle(*args
, **kwargs
):
3429 """GetStyle(self) -> int"""
3430 return _controls_
.ToolBarToolBase_GetStyle(*args
, **kwargs
)
3432 def GetKind(*args
, **kwargs
):
3433 """GetKind(self) -> int"""
3434 return _controls_
.ToolBarToolBase_GetKind(*args
, **kwargs
)
3436 def IsEnabled(*args
, **kwargs
):
3437 """IsEnabled(self) -> bool"""
3438 return _controls_
.ToolBarToolBase_IsEnabled(*args
, **kwargs
)
3440 def IsToggled(*args
, **kwargs
):
3441 """IsToggled(self) -> bool"""
3442 return _controls_
.ToolBarToolBase_IsToggled(*args
, **kwargs
)
3444 def CanBeToggled(*args
, **kwargs
):
3445 """CanBeToggled(self) -> bool"""
3446 return _controls_
.ToolBarToolBase_CanBeToggled(*args
, **kwargs
)
3448 def GetNormalBitmap(*args
, **kwargs
):
3449 """GetNormalBitmap(self) -> Bitmap"""
3450 return _controls_
.ToolBarToolBase_GetNormalBitmap(*args
, **kwargs
)
3452 def GetDisabledBitmap(*args
, **kwargs
):
3453 """GetDisabledBitmap(self) -> Bitmap"""
3454 return _controls_
.ToolBarToolBase_GetDisabledBitmap(*args
, **kwargs
)
3456 def GetBitmap(*args
, **kwargs
):
3457 """GetBitmap(self) -> Bitmap"""
3458 return _controls_
.ToolBarToolBase_GetBitmap(*args
, **kwargs
)
3460 def GetLabel(*args
, **kwargs
):
3461 """GetLabel(self) -> String"""
3462 return _controls_
.ToolBarToolBase_GetLabel(*args
, **kwargs
)
3464 def GetShortHelp(*args
, **kwargs
):
3465 """GetShortHelp(self) -> String"""
3466 return _controls_
.ToolBarToolBase_GetShortHelp(*args
, **kwargs
)
3468 def GetLongHelp(*args
, **kwargs
):
3469 """GetLongHelp(self) -> String"""
3470 return _controls_
.ToolBarToolBase_GetLongHelp(*args
, **kwargs
)
3472 def Enable(*args
, **kwargs
):
3473 """Enable(self, bool enable) -> bool"""
3474 return _controls_
.ToolBarToolBase_Enable(*args
, **kwargs
)
3476 def Toggle(*args
, **kwargs
):
3478 return _controls_
.ToolBarToolBase_Toggle(*args
, **kwargs
)
3480 def SetToggle(*args
, **kwargs
):
3481 """SetToggle(self, bool toggle) -> bool"""
3482 return _controls_
.ToolBarToolBase_SetToggle(*args
, **kwargs
)
3484 def SetShortHelp(*args
, **kwargs
):
3485 """SetShortHelp(self, String help) -> bool"""
3486 return _controls_
.ToolBarToolBase_SetShortHelp(*args
, **kwargs
)
3488 def SetLongHelp(*args
, **kwargs
):
3489 """SetLongHelp(self, String help) -> bool"""
3490 return _controls_
.ToolBarToolBase_SetLongHelp(*args
, **kwargs
)
3492 def SetNormalBitmap(*args
, **kwargs
):
3493 """SetNormalBitmap(self, Bitmap bmp)"""
3494 return _controls_
.ToolBarToolBase_SetNormalBitmap(*args
, **kwargs
)
3496 def SetDisabledBitmap(*args
, **kwargs
):
3497 """SetDisabledBitmap(self, Bitmap bmp)"""
3498 return _controls_
.ToolBarToolBase_SetDisabledBitmap(*args
, **kwargs
)
3500 def SetLabel(*args
, **kwargs
):
3501 """SetLabel(self, String label)"""
3502 return _controls_
.ToolBarToolBase_SetLabel(*args
, **kwargs
)
3504 def Detach(*args
, **kwargs
):
3506 return _controls_
.ToolBarToolBase_Detach(*args
, **kwargs
)
3508 def Attach(*args
, **kwargs
):
3509 """Attach(self, ToolBarBase tbar)"""
3510 return _controls_
.ToolBarToolBase_Attach(*args
, **kwargs
)
3512 def GetClientData(*args
, **kwargs
):
3513 """GetClientData(self) -> PyObject"""
3514 return _controls_
.ToolBarToolBase_GetClientData(*args
, **kwargs
)
3516 def SetClientData(*args
, **kwargs
):
3517 """SetClientData(self, PyObject clientData)"""
3518 return _controls_
.ToolBarToolBase_SetClientData(*args
, **kwargs
)
3520 GetBitmap1
= GetNormalBitmap
3521 GetBitmap2
= GetDisabledBitmap
3522 SetBitmap1
= SetNormalBitmap
3523 SetBitmap2
= SetDisabledBitmap
3525 _controls_
.ToolBarToolBase_swigregister(ToolBarToolBase
)
3527 class ToolBarBase(_core
.Control
):
3528 """Proxy of C++ ToolBarBase class"""
3529 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3530 def __init__(self
): raise AttributeError, "No constructor defined"
3531 __repr__
= _swig_repr
3532 def DoAddTool(*args
, **kwargs
):
3534 DoAddTool(self, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3535 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
3536 String longHelp=EmptyString,
3537 PyObject clientData=None) -> ToolBarToolBase
3539 return _controls_
.ToolBarBase_DoAddTool(*args
, **kwargs
)
3541 def DoInsertTool(*args
, **kwargs
):
3543 DoInsertTool(self, size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3544 int kind=ITEM_NORMAL,
3545 String shortHelp=EmptyString, String longHelp=EmptyString,
3546 PyObject clientData=None) -> ToolBarToolBase
3548 return _controls_
.ToolBarBase_DoInsertTool(*args
, **kwargs
)
3550 # These match the original Add methods for this class, kept for
3551 # backwards compatibility with versions < 2.3.3.
3554 def AddTool(self
, id, bitmap
,
3555 pushedBitmap
= wx
.NullBitmap
,
3558 shortHelpString
= '',
3559 longHelpString
= '') :
3560 '''Old style method to add a tool to the toolbar.'''
3561 kind
= wx
.ITEM_NORMAL
3562 if isToggle
: kind
= wx
.ITEM_CHECK
3563 return self
.DoAddTool(id, '', bitmap
, pushedBitmap
, kind
,
3564 shortHelpString
, longHelpString
, clientData
)
3566 def AddSimpleTool(self
, id, bitmap
,
3567 shortHelpString
= '',
3568 longHelpString
= '',
3570 '''Old style method to add a tool to the toolbar.'''
3571 kind
= wx
.ITEM_NORMAL
3572 if isToggle
: kind
= wx
.ITEM_CHECK
3573 return self
.DoAddTool(id, '', bitmap
, wx
.NullBitmap
, kind
,
3574 shortHelpString
, longHelpString
, None)
3576 def InsertTool(self
, pos
, id, bitmap
,
3577 pushedBitmap
= wx
.NullBitmap
,
3580 shortHelpString
= '',
3581 longHelpString
= ''):
3582 '''Old style method to insert a tool in the toolbar.'''
3583 kind
= wx
.ITEM_NORMAL
3584 if isToggle
: kind
= wx
.ITEM_CHECK
3585 return self
.DoInsertTool(pos
, id, '', bitmap
, pushedBitmap
, kind
,
3586 shortHelpString
, longHelpString
, clientData
)
3588 def InsertSimpleTool(self
, pos
, id, bitmap
,
3589 shortHelpString
= '',
3590 longHelpString
= '',
3592 '''Old style method to insert a tool in the toolbar.'''
3593 kind
= wx
.ITEM_NORMAL
3594 if isToggle
: kind
= wx
.ITEM_CHECK
3595 return self
.DoInsertTool(pos
, id, '', bitmap
, wx
.NullBitmap
, kind
,
3596 shortHelpString
, longHelpString
, None)
3599 # The following are the new toolbar Add methods starting with
3600 # 2.3.3. They are renamed to have 'Label' in the name so as to be
3601 # able to keep backwards compatibility with using the above
3602 # methods. Eventually these should migrate to be the methods used
3603 # primarily and lose the 'Label' in the name...
3605 def AddLabelTool(self
, id, label
, bitmap
,
3606 bmpDisabled
= wx
.NullBitmap
,
3607 kind
= wx
.ITEM_NORMAL
,
3608 shortHelp
= '', longHelp
= '',
3611 The full AddTool() function.
3613 If bmpDisabled is wx.NullBitmap, a shadowed version of the normal bitmap
3614 is created and used as the disabled image.
3616 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, kind
,
3617 shortHelp
, longHelp
, clientData
)
3620 def InsertLabelTool(self
, pos
, id, label
, bitmap
,
3621 bmpDisabled
= wx
.NullBitmap
,
3622 kind
= wx
.ITEM_NORMAL
,
3623 shortHelp
= '', longHelp
= '',
3626 Insert the new tool at the given position, if pos == GetToolsCount(), it
3627 is equivalent to AddTool()
3629 return self
.DoInsertTool(pos
, id, label
, bitmap
, bmpDisabled
, kind
,
3630 shortHelp
, longHelp
, clientData
)
3632 def AddCheckLabelTool(self
, id, label
, bitmap
,
3633 bmpDisabled
= wx
.NullBitmap
,
3634 shortHelp
= '', longHelp
= '',
3636 '''Add a check tool, i.e. a tool which can be toggled'''
3637 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3638 shortHelp
, longHelp
, clientData
)
3640 def AddRadioLabelTool(self
, id, label
, bitmap
,
3641 bmpDisabled
= wx
.NullBitmap
,
3642 shortHelp
= '', longHelp
= '',
3645 Add a radio tool, i.e. a tool which can be toggled and releases any
3646 other toggled radio tools in the same group when it happens
3648 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3649 shortHelp
, longHelp
, clientData
)
3652 # For consistency with the backwards compatible methods above, here are
3653 # some non-'Label' versions of the Check and Radio methods
3655 def AddCheckTool(self
, id, bitmap
,
3656 bmpDisabled
= wx
.NullBitmap
,
3657 shortHelp
= '', longHelp
= '',
3659 '''Add a check tool, i.e. a tool which can be toggled'''
3660 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3661 shortHelp
, longHelp
, clientData
)
3663 def AddRadioTool(self
, id, bitmap
,
3664 bmpDisabled
= wx
.NullBitmap
,
3665 shortHelp
= '', longHelp
= '',
3668 Add a radio tool, i.e. a tool which can be toggled and releases any
3669 other toggled radio tools in the same group when it happens
3671 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3672 shortHelp
, longHelp
, clientData
)
3674 def AddToolItem(*args
, **kwargs
):
3675 """AddToolItem(self, ToolBarToolBase tool) -> ToolBarToolBase"""
3676 return _controls_
.ToolBarBase_AddToolItem(*args
, **kwargs
)
3678 def InsertToolItem(*args
, **kwargs
):
3679 """InsertToolItem(self, size_t pos, ToolBarToolBase tool) -> ToolBarToolBase"""
3680 return _controls_
.ToolBarBase_InsertToolItem(*args
, **kwargs
)
3682 def AddControl(*args
, **kwargs
):
3683 """AddControl(self, Control control) -> ToolBarToolBase"""
3684 return _controls_
.ToolBarBase_AddControl(*args
, **kwargs
)
3686 def InsertControl(*args
, **kwargs
):
3687 """InsertControl(self, size_t pos, Control control) -> ToolBarToolBase"""
3688 return _controls_
.ToolBarBase_InsertControl(*args
, **kwargs
)
3690 def FindControl(*args
, **kwargs
):
3691 """FindControl(self, int id) -> Control"""
3692 return _controls_
.ToolBarBase_FindControl(*args
, **kwargs
)
3694 def AddSeparator(*args
, **kwargs
):
3695 """AddSeparator(self) -> ToolBarToolBase"""
3696 return _controls_
.ToolBarBase_AddSeparator(*args
, **kwargs
)
3698 def InsertSeparator(*args
, **kwargs
):
3699 """InsertSeparator(self, size_t pos) -> ToolBarToolBase"""
3700 return _controls_
.ToolBarBase_InsertSeparator(*args
, **kwargs
)
3702 def RemoveTool(*args
, **kwargs
):
3703 """RemoveTool(self, int id) -> ToolBarToolBase"""
3704 return _controls_
.ToolBarBase_RemoveTool(*args
, **kwargs
)
3706 def DeleteToolByPos(*args
, **kwargs
):
3707 """DeleteToolByPos(self, size_t pos) -> bool"""
3708 return _controls_
.ToolBarBase_DeleteToolByPos(*args
, **kwargs
)
3710 def DeleteTool(*args
, **kwargs
):
3711 """DeleteTool(self, int id) -> bool"""
3712 return _controls_
.ToolBarBase_DeleteTool(*args
, **kwargs
)
3714 def ClearTools(*args
, **kwargs
):
3715 """ClearTools(self)"""
3716 return _controls_
.ToolBarBase_ClearTools(*args
, **kwargs
)
3718 def Realize(*args
, **kwargs
):
3719 """Realize(self) -> bool"""
3720 return _controls_
.ToolBarBase_Realize(*args
, **kwargs
)
3722 def EnableTool(*args
, **kwargs
):
3723 """EnableTool(self, int id, bool enable)"""
3724 return _controls_
.ToolBarBase_EnableTool(*args
, **kwargs
)
3726 def ToggleTool(*args
, **kwargs
):
3727 """ToggleTool(self, int id, bool toggle)"""
3728 return _controls_
.ToolBarBase_ToggleTool(*args
, **kwargs
)
3730 def SetToggle(*args
, **kwargs
):
3731 """SetToggle(self, int id, bool toggle)"""
3732 return _controls_
.ToolBarBase_SetToggle(*args
, **kwargs
)
3734 def GetToolClientData(*args
, **kwargs
):
3735 """GetToolClientData(self, int id) -> PyObject"""
3736 return _controls_
.ToolBarBase_GetToolClientData(*args
, **kwargs
)
3738 def SetToolClientData(*args
, **kwargs
):
3739 """SetToolClientData(self, int id, PyObject clientData)"""
3740 return _controls_
.ToolBarBase_SetToolClientData(*args
, **kwargs
)
3742 def GetToolPos(*args
, **kwargs
):
3743 """GetToolPos(self, int id) -> int"""
3744 return _controls_
.ToolBarBase_GetToolPos(*args
, **kwargs
)
3746 def GetToolState(*args
, **kwargs
):
3747 """GetToolState(self, int id) -> bool"""
3748 return _controls_
.ToolBarBase_GetToolState(*args
, **kwargs
)
3750 def GetToolEnabled(*args
, **kwargs
):
3751 """GetToolEnabled(self, int id) -> bool"""
3752 return _controls_
.ToolBarBase_GetToolEnabled(*args
, **kwargs
)
3754 def SetToolShortHelp(*args
, **kwargs
):
3755 """SetToolShortHelp(self, int id, String helpString)"""
3756 return _controls_
.ToolBarBase_SetToolShortHelp(*args
, **kwargs
)
3758 def GetToolShortHelp(*args
, **kwargs
):
3759 """GetToolShortHelp(self, int id) -> String"""
3760 return _controls_
.ToolBarBase_GetToolShortHelp(*args
, **kwargs
)
3762 def SetToolLongHelp(*args
, **kwargs
):
3763 """SetToolLongHelp(self, int id, String helpString)"""
3764 return _controls_
.ToolBarBase_SetToolLongHelp(*args
, **kwargs
)
3766 def GetToolLongHelp(*args
, **kwargs
):
3767 """GetToolLongHelp(self, int id) -> String"""
3768 return _controls_
.ToolBarBase_GetToolLongHelp(*args
, **kwargs
)
3770 def SetMarginsXY(*args
, **kwargs
):
3771 """SetMarginsXY(self, int x, int y)"""
3772 return _controls_
.ToolBarBase_SetMarginsXY(*args
, **kwargs
)
3774 def SetMargins(*args
, **kwargs
):
3775 """SetMargins(self, Size size)"""
3776 return _controls_
.ToolBarBase_SetMargins(*args
, **kwargs
)
3778 def SetToolPacking(*args
, **kwargs
):
3779 """SetToolPacking(self, int packing)"""
3780 return _controls_
.ToolBarBase_SetToolPacking(*args
, **kwargs
)
3782 def SetToolSeparation(*args
, **kwargs
):
3783 """SetToolSeparation(self, int separation)"""
3784 return _controls_
.ToolBarBase_SetToolSeparation(*args
, **kwargs
)
3786 def GetToolMargins(*args
, **kwargs
):
3787 """GetToolMargins(self) -> Size"""
3788 return _controls_
.ToolBarBase_GetToolMargins(*args
, **kwargs
)
3790 def GetMargins(*args
, **kwargs
):
3791 """GetMargins(self) -> Size"""
3792 return _controls_
.ToolBarBase_GetMargins(*args
, **kwargs
)
3794 def GetToolPacking(*args
, **kwargs
):
3795 """GetToolPacking(self) -> int"""
3796 return _controls_
.ToolBarBase_GetToolPacking(*args
, **kwargs
)
3798 def GetToolSeparation(*args
, **kwargs
):
3799 """GetToolSeparation(self) -> int"""
3800 return _controls_
.ToolBarBase_GetToolSeparation(*args
, **kwargs
)
3802 def SetRows(*args
, **kwargs
):
3803 """SetRows(self, int nRows)"""
3804 return _controls_
.ToolBarBase_SetRows(*args
, **kwargs
)
3806 def SetMaxRowsCols(*args
, **kwargs
):
3807 """SetMaxRowsCols(self, int rows, int cols)"""
3808 return _controls_
.ToolBarBase_SetMaxRowsCols(*args
, **kwargs
)
3810 def GetMaxRows(*args
, **kwargs
):
3811 """GetMaxRows(self) -> int"""
3812 return _controls_
.ToolBarBase_GetMaxRows(*args
, **kwargs
)
3814 def GetMaxCols(*args
, **kwargs
):
3815 """GetMaxCols(self) -> int"""
3816 return _controls_
.ToolBarBase_GetMaxCols(*args
, **kwargs
)
3818 def SetToolBitmapSize(*args
, **kwargs
):
3819 """SetToolBitmapSize(self, Size size)"""
3820 return _controls_
.ToolBarBase_SetToolBitmapSize(*args
, **kwargs
)
3822 def GetToolBitmapSize(*args
, **kwargs
):
3823 """GetToolBitmapSize(self) -> Size"""
3824 return _controls_
.ToolBarBase_GetToolBitmapSize(*args
, **kwargs
)
3826 def GetToolSize(*args
, **kwargs
):
3827 """GetToolSize(self) -> Size"""
3828 return _controls_
.ToolBarBase_GetToolSize(*args
, **kwargs
)
3830 def FindToolForPosition(*args
, **kwargs
):
3831 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3832 return _controls_
.ToolBarBase_FindToolForPosition(*args
, **kwargs
)
3834 def FindById(*args
, **kwargs
):
3835 """FindById(self, int toolid) -> ToolBarToolBase"""
3836 return _controls_
.ToolBarBase_FindById(*args
, **kwargs
)
3838 def IsVertical(*args
, **kwargs
):
3839 """IsVertical(self) -> bool"""
3840 return _controls_
.ToolBarBase_IsVertical(*args
, **kwargs
)
3842 def GetToolsCount(*args
, **kwargs
):
3843 """GetToolsCount(self) -> size_t"""
3844 return _controls_
.ToolBarBase_GetToolsCount(*args
, **kwargs
)
3846 _controls_
.ToolBarBase_swigregister(ToolBarBase
)
3848 class ToolBar(ToolBarBase
):
3849 """Proxy of C++ ToolBar class"""
3850 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3851 __repr__
= _swig_repr
3852 def __init__(self
, *args
, **kwargs
):
3854 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3855 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
3856 String name=wxPyToolBarNameStr) -> ToolBar
3858 _controls_
.ToolBar_swiginit(self
,_controls_
.new_ToolBar(*args
, **kwargs
))
3859 self
._setOORInfo
(self
)
3861 def Create(*args
, **kwargs
):
3863 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3864 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
3865 String name=wxPyToolBarNameStr) -> bool
3867 return _controls_
.ToolBar_Create(*args
, **kwargs
)
3869 def GetClassDefaultAttributes(*args
, **kwargs
):
3871 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3873 Get the default attributes for this class. This is useful if you want
3874 to use the same font or colour in your own control as in a standard
3875 control -- which is a much better idea than hard coding specific
3876 colours or fonts which might look completely out of place on the
3877 user's system, especially if it uses themes.
3879 The variant parameter is only relevant under Mac currently and is
3880 ignore under other platforms. Under Mac, it will change the size of
3881 the returned font. See `wx.Window.SetWindowVariant` for more about
3884 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
3886 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3887 _controls_
.ToolBar_swigregister(ToolBar
)
3889 def PreToolBar(*args
, **kwargs
):
3890 """PreToolBar() -> ToolBar"""
3891 val
= _controls_
.new_PreToolBar(*args
, **kwargs
)
3894 def ToolBar_GetClassDefaultAttributes(*args
, **kwargs
):
3896 ToolBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3898 Get the default attributes for this class. This is useful if you want
3899 to use the same font or colour in your own control as in a standard
3900 control -- which is a much better idea than hard coding specific
3901 colours or fonts which might look completely out of place on the
3902 user's system, especially if it uses themes.
3904 The variant parameter is only relevant under Mac currently and is
3905 ignore under other platforms. Under Mac, it will change the size of
3906 the returned font. See `wx.Window.SetWindowVariant` for more about
3909 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
3911 #---------------------------------------------------------------------------
3913 LC_VRULES
= _controls_
.LC_VRULES
3914 LC_HRULES
= _controls_
.LC_HRULES
3915 LC_ICON
= _controls_
.LC_ICON
3916 LC_SMALL_ICON
= _controls_
.LC_SMALL_ICON
3917 LC_LIST
= _controls_
.LC_LIST
3918 LC_REPORT
= _controls_
.LC_REPORT
3919 LC_ALIGN_TOP
= _controls_
.LC_ALIGN_TOP
3920 LC_ALIGN_LEFT
= _controls_
.LC_ALIGN_LEFT
3921 LC_AUTOARRANGE
= _controls_
.LC_AUTOARRANGE
3922 LC_VIRTUAL
= _controls_
.LC_VIRTUAL
3923 LC_EDIT_LABELS
= _controls_
.LC_EDIT_LABELS
3924 LC_NO_HEADER
= _controls_
.LC_NO_HEADER
3925 LC_NO_SORT_HEADER
= _controls_
.LC_NO_SORT_HEADER
3926 LC_SINGLE_SEL
= _controls_
.LC_SINGLE_SEL
3927 LC_SORT_ASCENDING
= _controls_
.LC_SORT_ASCENDING
3928 LC_SORT_DESCENDING
= _controls_
.LC_SORT_DESCENDING
3929 LC_MASK_TYPE
= _controls_
.LC_MASK_TYPE
3930 LC_MASK_ALIGN
= _controls_
.LC_MASK_ALIGN
3931 LC_MASK_SORT
= _controls_
.LC_MASK_SORT
3932 LIST_MASK_STATE
= _controls_
.LIST_MASK_STATE
3933 LIST_MASK_TEXT
= _controls_
.LIST_MASK_TEXT
3934 LIST_MASK_IMAGE
= _controls_
.LIST_MASK_IMAGE
3935 LIST_MASK_DATA
= _controls_
.LIST_MASK_DATA
3936 LIST_SET_ITEM
= _controls_
.LIST_SET_ITEM
3937 LIST_MASK_WIDTH
= _controls_
.LIST_MASK_WIDTH
3938 LIST_MASK_FORMAT
= _controls_
.LIST_MASK_FORMAT
3939 LIST_STATE_DONTCARE
= _controls_
.LIST_STATE_DONTCARE
3940 LIST_STATE_DROPHILITED
= _controls_
.LIST_STATE_DROPHILITED
3941 LIST_STATE_FOCUSED
= _controls_
.LIST_STATE_FOCUSED
3942 LIST_STATE_SELECTED
= _controls_
.LIST_STATE_SELECTED
3943 LIST_STATE_CUT
= _controls_
.LIST_STATE_CUT
3944 LIST_STATE_DISABLED
= _controls_
.LIST_STATE_DISABLED
3945 LIST_STATE_FILTERED
= _controls_
.LIST_STATE_FILTERED
3946 LIST_STATE_INUSE
= _controls_
.LIST_STATE_INUSE
3947 LIST_STATE_PICKED
= _controls_
.LIST_STATE_PICKED
3948 LIST_STATE_SOURCE
= _controls_
.LIST_STATE_SOURCE
3949 LIST_HITTEST_ABOVE
= _controls_
.LIST_HITTEST_ABOVE
3950 LIST_HITTEST_BELOW
= _controls_
.LIST_HITTEST_BELOW
3951 LIST_HITTEST_NOWHERE
= _controls_
.LIST_HITTEST_NOWHERE
3952 LIST_HITTEST_ONITEMICON
= _controls_
.LIST_HITTEST_ONITEMICON
3953 LIST_HITTEST_ONITEMLABEL
= _controls_
.LIST_HITTEST_ONITEMLABEL
3954 LIST_HITTEST_ONITEMRIGHT
= _controls_
.LIST_HITTEST_ONITEMRIGHT
3955 LIST_HITTEST_ONITEMSTATEICON
= _controls_
.LIST_HITTEST_ONITEMSTATEICON
3956 LIST_HITTEST_TOLEFT
= _controls_
.LIST_HITTEST_TOLEFT
3957 LIST_HITTEST_TORIGHT
= _controls_
.LIST_HITTEST_TORIGHT
3958 LIST_HITTEST_ONITEM
= _controls_
.LIST_HITTEST_ONITEM
3959 LIST_GETSUBITEMRECT_WHOLEITEM
= _controls_
.LIST_GETSUBITEMRECT_WHOLEITEM
3960 LIST_NEXT_ABOVE
= _controls_
.LIST_NEXT_ABOVE
3961 LIST_NEXT_ALL
= _controls_
.LIST_NEXT_ALL
3962 LIST_NEXT_BELOW
= _controls_
.LIST_NEXT_BELOW
3963 LIST_NEXT_LEFT
= _controls_
.LIST_NEXT_LEFT
3964 LIST_NEXT_RIGHT
= _controls_
.LIST_NEXT_RIGHT
3965 LIST_ALIGN_DEFAULT
= _controls_
.LIST_ALIGN_DEFAULT
3966 LIST_ALIGN_LEFT
= _controls_
.LIST_ALIGN_LEFT
3967 LIST_ALIGN_TOP
= _controls_
.LIST_ALIGN_TOP
3968 LIST_ALIGN_SNAP_TO_GRID
= _controls_
.LIST_ALIGN_SNAP_TO_GRID
3969 LIST_FORMAT_LEFT
= _controls_
.LIST_FORMAT_LEFT
3970 LIST_FORMAT_RIGHT
= _controls_
.LIST_FORMAT_RIGHT
3971 LIST_FORMAT_CENTRE
= _controls_
.LIST_FORMAT_CENTRE
3972 LIST_FORMAT_CENTER
= _controls_
.LIST_FORMAT_CENTER
3973 LIST_AUTOSIZE
= _controls_
.LIST_AUTOSIZE
3974 LIST_AUTOSIZE_USEHEADER
= _controls_
.LIST_AUTOSIZE_USEHEADER
3975 LIST_RECT_BOUNDS
= _controls_
.LIST_RECT_BOUNDS
3976 LIST_RECT_ICON
= _controls_
.LIST_RECT_ICON
3977 LIST_RECT_LABEL
= _controls_
.LIST_RECT_LABEL
3978 LIST_FIND_UP
= _controls_
.LIST_FIND_UP
3979 LIST_FIND_DOWN
= _controls_
.LIST_FIND_DOWN
3980 LIST_FIND_LEFT
= _controls_
.LIST_FIND_LEFT
3981 LIST_FIND_RIGHT
= _controls_
.LIST_FIND_RIGHT
3982 #---------------------------------------------------------------------------
3984 class ListItemAttr(object):
3985 """Proxy of C++ ListItemAttr class"""
3986 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3987 __repr__
= _swig_repr
3988 def __init__(self
, *args
, **kwargs
):
3990 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
3991 Font font=wxNullFont) -> ListItemAttr
3993 _controls_
.ListItemAttr_swiginit(self
,_controls_
.new_ListItemAttr(*args
, **kwargs
))
3994 __swig_destroy__
= _controls_
.delete_ListItemAttr
3995 __del__
= lambda self
: None;
3996 def SetTextColour(*args
, **kwargs
):
3997 """SetTextColour(self, Colour colText)"""
3998 return _controls_
.ListItemAttr_SetTextColour(*args
, **kwargs
)
4000 def SetBackgroundColour(*args
, **kwargs
):
4001 """SetBackgroundColour(self, Colour colBack)"""
4002 return _controls_
.ListItemAttr_SetBackgroundColour(*args
, **kwargs
)
4004 def SetFont(*args
, **kwargs
):
4005 """SetFont(self, Font font)"""
4006 return _controls_
.ListItemAttr_SetFont(*args
, **kwargs
)
4008 def HasTextColour(*args
, **kwargs
):
4009 """HasTextColour(self) -> bool"""
4010 return _controls_
.ListItemAttr_HasTextColour(*args
, **kwargs
)
4012 def HasBackgroundColour(*args
, **kwargs
):
4013 """HasBackgroundColour(self) -> bool"""
4014 return _controls_
.ListItemAttr_HasBackgroundColour(*args
, **kwargs
)
4016 def HasFont(*args
, **kwargs
):
4017 """HasFont(self) -> bool"""
4018 return _controls_
.ListItemAttr_HasFont(*args
, **kwargs
)
4020 def GetTextColour(*args
, **kwargs
):
4021 """GetTextColour(self) -> Colour"""
4022 return _controls_
.ListItemAttr_GetTextColour(*args
, **kwargs
)
4024 def GetBackgroundColour(*args
, **kwargs
):
4025 """GetBackgroundColour(self) -> Colour"""
4026 return _controls_
.ListItemAttr_GetBackgroundColour(*args
, **kwargs
)
4028 def GetFont(*args
, **kwargs
):
4029 """GetFont(self) -> Font"""
4030 return _controls_
.ListItemAttr_GetFont(*args
, **kwargs
)
4032 def AssignFrom(*args
, **kwargs
):
4033 """AssignFrom(self, ListItemAttr source)"""
4034 return _controls_
.ListItemAttr_AssignFrom(*args
, **kwargs
)
4036 def Destroy(*args
, **kwargs
):
4038 val
= _controls_
.ListItemAttr_Destroy(*args
, **kwargs
)
4042 _controls_
.ListItemAttr_swigregister(ListItemAttr
)
4043 ListCtrlNameStr
= cvar
.ListCtrlNameStr
4045 #---------------------------------------------------------------------------
4047 class ListItem(_core
.Object
):
4048 """Proxy of C++ ListItem class"""
4049 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4050 __repr__
= _swig_repr
4051 def __init__(self
, *args
, **kwargs
):
4052 """__init__(self) -> ListItem"""
4053 _controls_
.ListItem_swiginit(self
,_controls_
.new_ListItem(*args
, **kwargs
))
4054 __swig_destroy__
= _controls_
.delete_ListItem
4055 __del__
= lambda self
: None;
4056 def Clear(*args
, **kwargs
):
4058 return _controls_
.ListItem_Clear(*args
, **kwargs
)
4060 def ClearAttributes(*args
, **kwargs
):
4061 """ClearAttributes(self)"""
4062 return _controls_
.ListItem_ClearAttributes(*args
, **kwargs
)
4064 def SetMask(*args
, **kwargs
):
4065 """SetMask(self, long mask)"""
4066 return _controls_
.ListItem_SetMask(*args
, **kwargs
)
4068 def SetId(*args
, **kwargs
):
4069 """SetId(self, long id)"""
4070 return _controls_
.ListItem_SetId(*args
, **kwargs
)
4072 def SetColumn(*args
, **kwargs
):
4073 """SetColumn(self, int col)"""
4074 return _controls_
.ListItem_SetColumn(*args
, **kwargs
)
4076 def SetState(*args
, **kwargs
):
4077 """SetState(self, long state)"""
4078 return _controls_
.ListItem_SetState(*args
, **kwargs
)
4080 def SetStateMask(*args
, **kwargs
):
4081 """SetStateMask(self, long stateMask)"""
4082 return _controls_
.ListItem_SetStateMask(*args
, **kwargs
)
4084 def SetText(*args
, **kwargs
):
4085 """SetText(self, String text)"""
4086 return _controls_
.ListItem_SetText(*args
, **kwargs
)
4088 def SetImage(*args
, **kwargs
):
4089 """SetImage(self, int image)"""
4090 return _controls_
.ListItem_SetImage(*args
, **kwargs
)
4092 def SetData(*args
, **kwargs
):
4093 """SetData(self, long data)"""
4094 return _controls_
.ListItem_SetData(*args
, **kwargs
)
4096 def SetWidth(*args
, **kwargs
):
4097 """SetWidth(self, int width)"""
4098 return _controls_
.ListItem_SetWidth(*args
, **kwargs
)
4100 def SetAlign(*args
, **kwargs
):
4101 """SetAlign(self, int align)"""
4102 return _controls_
.ListItem_SetAlign(*args
, **kwargs
)
4104 def SetTextColour(*args
, **kwargs
):
4105 """SetTextColour(self, Colour colText)"""
4106 return _controls_
.ListItem_SetTextColour(*args
, **kwargs
)
4108 def SetBackgroundColour(*args
, **kwargs
):
4109 """SetBackgroundColour(self, Colour colBack)"""
4110 return _controls_
.ListItem_SetBackgroundColour(*args
, **kwargs
)
4112 def SetFont(*args
, **kwargs
):
4113 """SetFont(self, Font font)"""
4114 return _controls_
.ListItem_SetFont(*args
, **kwargs
)
4116 def GetMask(*args
, **kwargs
):
4117 """GetMask(self) -> long"""
4118 return _controls_
.ListItem_GetMask(*args
, **kwargs
)
4120 def GetId(*args
, **kwargs
):
4121 """GetId(self) -> long"""
4122 return _controls_
.ListItem_GetId(*args
, **kwargs
)
4124 def GetColumn(*args
, **kwargs
):
4125 """GetColumn(self) -> int"""
4126 return _controls_
.ListItem_GetColumn(*args
, **kwargs
)
4128 def GetState(*args
, **kwargs
):
4129 """GetState(self) -> long"""
4130 return _controls_
.ListItem_GetState(*args
, **kwargs
)
4132 def GetText(*args
, **kwargs
):
4133 """GetText(self) -> String"""
4134 return _controls_
.ListItem_GetText(*args
, **kwargs
)
4136 def GetImage(*args
, **kwargs
):
4137 """GetImage(self) -> int"""
4138 return _controls_
.ListItem_GetImage(*args
, **kwargs
)
4140 def GetData(*args
, **kwargs
):
4141 """GetData(self) -> long"""
4142 return _controls_
.ListItem_GetData(*args
, **kwargs
)
4144 def GetWidth(*args
, **kwargs
):
4145 """GetWidth(self) -> int"""
4146 return _controls_
.ListItem_GetWidth(*args
, **kwargs
)
4148 def GetAlign(*args
, **kwargs
):
4149 """GetAlign(self) -> int"""
4150 return _controls_
.ListItem_GetAlign(*args
, **kwargs
)
4152 def GetAttributes(*args
, **kwargs
):
4153 """GetAttributes(self) -> ListItemAttr"""
4154 return _controls_
.ListItem_GetAttributes(*args
, **kwargs
)
4156 def HasAttributes(*args
, **kwargs
):
4157 """HasAttributes(self) -> bool"""
4158 return _controls_
.ListItem_HasAttributes(*args
, **kwargs
)
4160 def GetTextColour(*args
, **kwargs
):
4161 """GetTextColour(self) -> Colour"""
4162 return _controls_
.ListItem_GetTextColour(*args
, **kwargs
)
4164 def GetBackgroundColour(*args
, **kwargs
):
4165 """GetBackgroundColour(self) -> Colour"""
4166 return _controls_
.ListItem_GetBackgroundColour(*args
, **kwargs
)
4168 def GetFont(*args
, **kwargs
):
4169 """GetFont(self) -> Font"""
4170 return _controls_
.ListItem_GetFont(*args
, **kwargs
)
4172 m_mask
= property(_controls_
.ListItem_m_mask_get
, _controls_
.ListItem_m_mask_set
)
4173 m_itemId
= property(_controls_
.ListItem_m_itemId_get
, _controls_
.ListItem_m_itemId_set
)
4174 m_col
= property(_controls_
.ListItem_m_col_get
, _controls_
.ListItem_m_col_set
)
4175 m_state
= property(_controls_
.ListItem_m_state_get
, _controls_
.ListItem_m_state_set
)
4176 m_stateMask
= property(_controls_
.ListItem_m_stateMask_get
, _controls_
.ListItem_m_stateMask_set
)
4177 m_text
= property(_controls_
.ListItem_m_text_get
, _controls_
.ListItem_m_text_set
)
4178 m_image
= property(_controls_
.ListItem_m_image_get
, _controls_
.ListItem_m_image_set
)
4179 m_data
= property(_controls_
.ListItem_m_data_get
, _controls_
.ListItem_m_data_set
)
4180 m_format
= property(_controls_
.ListItem_m_format_get
, _controls_
.ListItem_m_format_set
)
4181 m_width
= property(_controls_
.ListItem_m_width_get
, _controls_
.ListItem_m_width_set
)
4182 _controls_
.ListItem_swigregister(ListItem
)
4184 #---------------------------------------------------------------------------
4186 class ListEvent(_core
.NotifyEvent
):
4187 """Proxy of C++ ListEvent class"""
4188 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4189 __repr__
= _swig_repr
4190 def __init__(self
, *args
, **kwargs
):
4191 """__init__(self, EventType commandType=wxEVT_NULL, int id=0) -> ListEvent"""
4192 _controls_
.ListEvent_swiginit(self
,_controls_
.new_ListEvent(*args
, **kwargs
))
4193 m_code
= property(_controls_
.ListEvent_m_code_get
, _controls_
.ListEvent_m_code_set
)
4194 m_oldItemIndex
= property(_controls_
.ListEvent_m_oldItemIndex_get
, _controls_
.ListEvent_m_oldItemIndex_set
)
4195 m_itemIndex
= property(_controls_
.ListEvent_m_itemIndex_get
, _controls_
.ListEvent_m_itemIndex_set
)
4196 m_col
= property(_controls_
.ListEvent_m_col_get
, _controls_
.ListEvent_m_col_set
)
4197 m_pointDrag
= property(_controls_
.ListEvent_m_pointDrag_get
, _controls_
.ListEvent_m_pointDrag_set
)
4198 m_item
= property(_controls_
.ListEvent_m_item_get
)
4199 def GetKeyCode(*args
, **kwargs
):
4200 """GetKeyCode(self) -> int"""
4201 return _controls_
.ListEvent_GetKeyCode(*args
, **kwargs
)
4203 GetCode
= GetKeyCode
4204 def GetIndex(*args
, **kwargs
):
4205 """GetIndex(self) -> long"""
4206 return _controls_
.ListEvent_GetIndex(*args
, **kwargs
)
4208 def GetColumn(*args
, **kwargs
):
4209 """GetColumn(self) -> int"""
4210 return _controls_
.ListEvent_GetColumn(*args
, **kwargs
)
4212 def GetPoint(*args
, **kwargs
):
4213 """GetPoint(self) -> Point"""
4214 return _controls_
.ListEvent_GetPoint(*args
, **kwargs
)
4216 GetPosition
= GetPoint
4217 def GetLabel(*args
, **kwargs
):
4218 """GetLabel(self) -> String"""
4219 return _controls_
.ListEvent_GetLabel(*args
, **kwargs
)
4221 def GetText(*args
, **kwargs
):
4222 """GetText(self) -> String"""
4223 return _controls_
.ListEvent_GetText(*args
, **kwargs
)
4225 def GetImage(*args
, **kwargs
):
4226 """GetImage(self) -> int"""
4227 return _controls_
.ListEvent_GetImage(*args
, **kwargs
)
4229 def GetData(*args
, **kwargs
):
4230 """GetData(self) -> long"""
4231 return _controls_
.ListEvent_GetData(*args
, **kwargs
)
4233 def GetMask(*args
, **kwargs
):
4234 """GetMask(self) -> long"""
4235 return _controls_
.ListEvent_GetMask(*args
, **kwargs
)
4237 def GetItem(*args
, **kwargs
):
4238 """GetItem(self) -> ListItem"""
4239 return _controls_
.ListEvent_GetItem(*args
, **kwargs
)
4241 def GetCacheFrom(*args
, **kwargs
):
4242 """GetCacheFrom(self) -> long"""
4243 return _controls_
.ListEvent_GetCacheFrom(*args
, **kwargs
)
4245 def GetCacheTo(*args
, **kwargs
):
4246 """GetCacheTo(self) -> long"""
4247 return _controls_
.ListEvent_GetCacheTo(*args
, **kwargs
)
4249 def IsEditCancelled(*args
, **kwargs
):
4250 """IsEditCancelled(self) -> bool"""
4251 return _controls_
.ListEvent_IsEditCancelled(*args
, **kwargs
)
4253 def SetEditCanceled(*args
, **kwargs
):
4254 """SetEditCanceled(self, bool editCancelled)"""
4255 return _controls_
.ListEvent_SetEditCanceled(*args
, **kwargs
)
4257 _controls_
.ListEvent_swigregister(ListEvent
)
4259 wxEVT_COMMAND_LIST_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_DRAG
4260 wxEVT_COMMAND_LIST_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_RDRAG
4261 wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
4262 wxEVT_COMMAND_LIST_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_END_LABEL_EDIT
4263 wxEVT_COMMAND_LIST_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ITEM
4264 wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
4265 wxEVT_COMMAND_LIST_ITEM_SELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_SELECTED
4266 wxEVT_COMMAND_LIST_ITEM_DESELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_DESELECTED
4267 wxEVT_COMMAND_LIST_KEY_DOWN
= _controls_
.wxEVT_COMMAND_LIST_KEY_DOWN
4268 wxEVT_COMMAND_LIST_INSERT_ITEM
= _controls_
.wxEVT_COMMAND_LIST_INSERT_ITEM
4269 wxEVT_COMMAND_LIST_COL_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_CLICK
4270 wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
4271 wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
4272 wxEVT_COMMAND_LIST_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_ACTIVATED
4273 wxEVT_COMMAND_LIST_CACHE_HINT
= _controls_
.wxEVT_COMMAND_LIST_CACHE_HINT
4274 wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
4275 wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
4276 wxEVT_COMMAND_LIST_COL_DRAGGING
= _controls_
.wxEVT_COMMAND_LIST_COL_DRAGGING
4277 wxEVT_COMMAND_LIST_COL_END_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_END_DRAG
4278 wxEVT_COMMAND_LIST_ITEM_FOCUSED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_FOCUSED
4279 EVT_LIST_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG
, 1)
4280 EVT_LIST_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG
, 1)
4281 EVT_LIST_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, 1)
4282 EVT_LIST_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT
, 1)
4283 EVT_LIST_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM
, 1)
4284 EVT_LIST_DELETE_ALL_ITEMS
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, 1)
4289 EVT_LIST_ITEM_SELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED
, 1)
4290 EVT_LIST_ITEM_DESELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED
, 1)
4291 EVT_LIST_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN
, 1)
4292 EVT_LIST_INSERT_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM
, 1)
4293 EVT_LIST_COL_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK
, 1)
4294 EVT_LIST_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, 1)
4295 EVT_LIST_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
, 1)
4296 EVT_LIST_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, 1)
4297 EVT_LIST_CACHE_HINT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT
, 1)
4298 EVT_LIST_COL_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
, 1)
4299 EVT_LIST_COL_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
, 1)
4300 EVT_LIST_COL_DRAGGING
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING
, 1)
4301 EVT_LIST_COL_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG
, 1)
4302 EVT_LIST_ITEM_FOCUSED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
, 1)
4308 #---------------------------------------------------------------------------
4310 class ListCtrl(_core
.Control
):
4311 """Proxy of C++ ListCtrl class"""
4312 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4313 __repr__
= _swig_repr
4314 def __init__(self
, *args
, **kwargs
):
4316 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4317 Size size=DefaultSize, long style=LC_ICON,
4318 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListCtrl
4320 _controls_
.ListCtrl_swiginit(self
,_controls_
.new_ListCtrl(*args
, **kwargs
))
4321 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, ListCtrl
)
4323 def Create(*args
, **kwargs
):
4325 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4326 Size size=DefaultSize, long style=LC_ICON,
4327 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4329 Do the 2nd phase and create the GUI control.
4331 return _controls_
.ListCtrl_Create(*args
, **kwargs
)
4333 def _setCallbackInfo(*args
, **kwargs
):
4334 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4335 return _controls_
.ListCtrl__setCallbackInfo(*args
, **kwargs
)
4337 def GetColumn(*args
, **kwargs
):
4338 """GetColumn(self, int col) -> ListItem"""
4339 val
= _controls_
.ListCtrl_GetColumn(*args
, **kwargs
)
4340 if val
is not None: val
.thisown
= 1
4343 def SetColumn(*args
, **kwargs
):
4344 """SetColumn(self, int col, ListItem item) -> bool"""
4345 return _controls_
.ListCtrl_SetColumn(*args
, **kwargs
)
4347 def GetColumnWidth(*args
, **kwargs
):
4348 """GetColumnWidth(self, int col) -> int"""
4349 return _controls_
.ListCtrl_GetColumnWidth(*args
, **kwargs
)
4351 def SetColumnWidth(*args
, **kwargs
):
4352 """SetColumnWidth(self, int col, int width) -> bool"""
4353 return _controls_
.ListCtrl_SetColumnWidth(*args
, **kwargs
)
4355 def GetCountPerPage(*args
, **kwargs
):
4356 """GetCountPerPage(self) -> int"""
4357 return _controls_
.ListCtrl_GetCountPerPage(*args
, **kwargs
)
4359 def GetViewRect(*args
, **kwargs
):
4360 """GetViewRect(self) -> Rect"""
4361 return _controls_
.ListCtrl_GetViewRect(*args
, **kwargs
)
4363 def GetEditControl(*args
, **kwargs
):
4364 """GetEditControl(self) -> TextCtrl"""
4365 return _controls_
.ListCtrl_GetEditControl(*args
, **kwargs
)
4367 def GetItem(*args
, **kwargs
):
4368 """GetItem(self, long itemId, int col=0) -> ListItem"""
4369 val
= _controls_
.ListCtrl_GetItem(*args
, **kwargs
)
4370 if val
is not None: val
.thisown
= 1
4373 def SetItem(*args
, **kwargs
):
4374 """SetItem(self, ListItem info) -> bool"""
4375 return _controls_
.ListCtrl_SetItem(*args
, **kwargs
)
4377 def SetStringItem(*args
, **kwargs
):
4378 """SetStringItem(self, long index, int col, String label, int imageId=-1) -> long"""
4379 return _controls_
.ListCtrl_SetStringItem(*args
, **kwargs
)
4381 def GetItemState(*args
, **kwargs
):
4382 """GetItemState(self, long item, long stateMask) -> int"""
4383 return _controls_
.ListCtrl_GetItemState(*args
, **kwargs
)
4385 def SetItemState(*args
, **kwargs
):
4386 """SetItemState(self, long item, long state, long stateMask) -> bool"""
4387 return _controls_
.ListCtrl_SetItemState(*args
, **kwargs
)
4389 def SetItemImage(*args
, **kwargs
):
4390 """SetItemImage(self, long item, int image, int selImage=-1) -> bool"""
4391 return _controls_
.ListCtrl_SetItemImage(*args
, **kwargs
)
4393 def SetItemColumnImage(*args
, **kwargs
):
4394 """SetItemColumnImage(self, long item, long column, int image) -> bool"""
4395 return _controls_
.ListCtrl_SetItemColumnImage(*args
, **kwargs
)
4397 def GetItemText(*args
, **kwargs
):
4398 """GetItemText(self, long item) -> String"""
4399 return _controls_
.ListCtrl_GetItemText(*args
, **kwargs
)
4401 def SetItemText(*args
, **kwargs
):
4402 """SetItemText(self, long item, String str)"""
4403 return _controls_
.ListCtrl_SetItemText(*args
, **kwargs
)
4405 def GetItemData(*args
, **kwargs
):
4406 """GetItemData(self, long item) -> long"""
4407 return _controls_
.ListCtrl_GetItemData(*args
, **kwargs
)
4409 def SetItemData(*args
, **kwargs
):
4410 """SetItemData(self, long item, long data) -> bool"""
4411 return _controls_
.ListCtrl_SetItemData(*args
, **kwargs
)
4413 def GetItemPosition(*args
, **kwargs
):
4414 """GetItemPosition(self, long item) -> Point"""
4415 return _controls_
.ListCtrl_GetItemPosition(*args
, **kwargs
)
4417 def GetItemRect(*args
, **kwargs
):
4418 """GetItemRect(self, long item, int code=LIST_RECT_BOUNDS) -> Rect"""
4419 return _controls_
.ListCtrl_GetItemRect(*args
, **kwargs
)
4421 def SetItemPosition(*args
, **kwargs
):
4422 """SetItemPosition(self, long item, Point pos) -> bool"""
4423 return _controls_
.ListCtrl_SetItemPosition(*args
, **kwargs
)
4425 def GetItemCount(*args
, **kwargs
):
4426 """GetItemCount(self) -> int"""
4427 return _controls_
.ListCtrl_GetItemCount(*args
, **kwargs
)
4429 def GetColumnCount(*args
, **kwargs
):
4430 """GetColumnCount(self) -> int"""
4431 return _controls_
.ListCtrl_GetColumnCount(*args
, **kwargs
)
4433 def GetItemSpacing(*args
, **kwargs
):
4434 """GetItemSpacing(self) -> Size"""
4435 return _controls_
.ListCtrl_GetItemSpacing(*args
, **kwargs
)
4437 GetItemSpacing
= wx
._deprecated
(GetItemSpacing
)
4438 def SetItemSpacing(*args
, **kwargs
):
4439 """SetItemSpacing(self, int spacing, bool isSmall=False)"""
4440 return _controls_
.ListCtrl_SetItemSpacing(*args
, **kwargs
)
4442 SetItemSpacing
= wx
._deprecated
(SetItemSpacing
)
4443 def GetSelectedItemCount(*args
, **kwargs
):
4444 """GetSelectedItemCount(self) -> int"""
4445 return _controls_
.ListCtrl_GetSelectedItemCount(*args
, **kwargs
)
4447 def GetTextColour(*args
, **kwargs
):
4448 """GetTextColour(self) -> Colour"""
4449 return _controls_
.ListCtrl_GetTextColour(*args
, **kwargs
)
4451 def SetTextColour(*args
, **kwargs
):
4452 """SetTextColour(self, Colour col)"""
4453 return _controls_
.ListCtrl_SetTextColour(*args
, **kwargs
)
4455 def GetTopItem(*args
, **kwargs
):
4456 """GetTopItem(self) -> long"""
4457 return _controls_
.ListCtrl_GetTopItem(*args
, **kwargs
)
4459 def SetSingleStyle(*args
, **kwargs
):
4460 """SetSingleStyle(self, long style, bool add=True)"""
4461 return _controls_
.ListCtrl_SetSingleStyle(*args
, **kwargs
)
4463 def GetNextItem(*args
, **kwargs
):
4464 """GetNextItem(self, long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -> long"""
4465 return _controls_
.ListCtrl_GetNextItem(*args
, **kwargs
)
4467 def GetImageList(*args
, **kwargs
):
4468 """GetImageList(self, int which) -> ImageList"""
4469 return _controls_
.ListCtrl_GetImageList(*args
, **kwargs
)
4471 def SetImageList(*args
, **kwargs
):
4472 """SetImageList(self, ImageList imageList, int which)"""
4473 return _controls_
.ListCtrl_SetImageList(*args
, **kwargs
)
4475 def AssignImageList(*args
, **kwargs
):
4476 """AssignImageList(self, ImageList imageList, int which)"""
4477 return _controls_
.ListCtrl_AssignImageList(*args
, **kwargs
)
4479 def InReportView(*args
, **kwargs
):
4480 """InReportView(self) -> bool"""
4481 return _controls_
.ListCtrl_InReportView(*args
, **kwargs
)
4483 def IsVirtual(*args
, **kwargs
):
4484 """IsVirtual(self) -> bool"""
4485 return _controls_
.ListCtrl_IsVirtual(*args
, **kwargs
)
4487 def RefreshItem(*args
, **kwargs
):
4488 """RefreshItem(self, long item)"""
4489 return _controls_
.ListCtrl_RefreshItem(*args
, **kwargs
)
4491 def RefreshItems(*args
, **kwargs
):
4492 """RefreshItems(self, long itemFrom, long itemTo)"""
4493 return _controls_
.ListCtrl_RefreshItems(*args
, **kwargs
)
4495 def Arrange(*args
, **kwargs
):
4496 """Arrange(self, int flag=LIST_ALIGN_DEFAULT) -> bool"""
4497 return _controls_
.ListCtrl_Arrange(*args
, **kwargs
)
4499 def DeleteItem(*args
, **kwargs
):
4500 """DeleteItem(self, long item) -> bool"""
4501 return _controls_
.ListCtrl_DeleteItem(*args
, **kwargs
)
4503 def DeleteAllItems(*args
, **kwargs
):
4504 """DeleteAllItems(self) -> bool"""
4505 return _controls_
.ListCtrl_DeleteAllItems(*args
, **kwargs
)
4507 def DeleteColumn(*args
, **kwargs
):
4508 """DeleteColumn(self, int col) -> bool"""
4509 return _controls_
.ListCtrl_DeleteColumn(*args
, **kwargs
)
4511 def DeleteAllColumns(*args
, **kwargs
):
4512 """DeleteAllColumns(self) -> bool"""
4513 return _controls_
.ListCtrl_DeleteAllColumns(*args
, **kwargs
)
4515 def ClearAll(*args
, **kwargs
):
4516 """ClearAll(self)"""
4517 return _controls_
.ListCtrl_ClearAll(*args
, **kwargs
)
4519 def EditLabel(*args
, **kwargs
):
4520 """EditLabel(self, long item)"""
4521 return _controls_
.ListCtrl_EditLabel(*args
, **kwargs
)
4523 def EnsureVisible(*args
, **kwargs
):
4524 """EnsureVisible(self, long item) -> bool"""
4525 return _controls_
.ListCtrl_EnsureVisible(*args
, **kwargs
)
4527 def FindItem(*args
, **kwargs
):
4528 """FindItem(self, long start, String str, bool partial=False) -> long"""
4529 return _controls_
.ListCtrl_FindItem(*args
, **kwargs
)
4531 def FindItemData(*args
, **kwargs
):
4532 """FindItemData(self, long start, long data) -> long"""
4533 return _controls_
.ListCtrl_FindItemData(*args
, **kwargs
)
4535 def FindItemAtPos(*args
, **kwargs
):
4536 """FindItemAtPos(self, long start, Point pt, int direction) -> long"""
4537 return _controls_
.ListCtrl_FindItemAtPos(*args
, **kwargs
)
4539 def HitTest(*args
, **kwargs
):
4541 HitTest(Point point) -> (item, where)
4543 Determines which item (if any) is at the specified point, giving
4544 in the second return value (see wx.LIST_HITTEST flags.)
4546 return _controls_
.ListCtrl_HitTest(*args
, **kwargs
)
4548 def HitTestSubItem(*args
, **kwargs
):
4550 HitTestSubItem(Point point) -> (item, where, subItem)
4552 Determines which item (if any) is at the specified point, giving in
4553 the second return value (see wx.LIST_HITTEST flags) and also the subItem, if
4556 return _controls_
.ListCtrl_HitTestSubItem(*args
, **kwargs
)
4558 def InsertItem(*args
, **kwargs
):
4559 """InsertItem(self, ListItem info) -> long"""
4560 return _controls_
.ListCtrl_InsertItem(*args
, **kwargs
)
4562 def InsertStringItem(*args
, **kwargs
):
4563 """InsertStringItem(self, long index, String label, int imageIndex=-1) -> long"""
4564 return _controls_
.ListCtrl_InsertStringItem(*args
, **kwargs
)
4566 def InsertImageItem(*args
, **kwargs
):
4567 """InsertImageItem(self, long index, int imageIndex) -> long"""
4568 return _controls_
.ListCtrl_InsertImageItem(*args
, **kwargs
)
4570 def InsertImageStringItem(*args
, **kwargs
):
4571 """InsertImageStringItem(self, long index, String label, int imageIndex) -> long"""
4572 return _controls_
.ListCtrl_InsertImageStringItem(*args
, **kwargs
)
4574 def InsertColumnItem(*args
, **kwargs
):
4575 """InsertColumnItem(self, long col, ListItem info) -> long"""
4576 return _controls_
.ListCtrl_InsertColumnItem(*args
, **kwargs
)
4578 InsertColumnInfo
= InsertColumnItem
4579 def InsertColumn(*args
, **kwargs
):
4581 InsertColumn(self, long col, String heading, int format=LIST_FORMAT_LEFT,
4582 int width=-1) -> long
4584 return _controls_
.ListCtrl_InsertColumn(*args
, **kwargs
)
4586 def SetItemCount(*args
, **kwargs
):
4587 """SetItemCount(self, long count)"""
4588 return _controls_
.ListCtrl_SetItemCount(*args
, **kwargs
)
4590 def ScrollList(*args
, **kwargs
):
4591 """ScrollList(self, int dx, int dy) -> bool"""
4592 return _controls_
.ListCtrl_ScrollList(*args
, **kwargs
)
4594 def SetItemTextColour(*args
, **kwargs
):
4595 """SetItemTextColour(self, long item, Colour col)"""
4596 return _controls_
.ListCtrl_SetItemTextColour(*args
, **kwargs
)
4598 def GetItemTextColour(*args
, **kwargs
):
4599 """GetItemTextColour(self, long item) -> Colour"""
4600 return _controls_
.ListCtrl_GetItemTextColour(*args
, **kwargs
)
4602 def SetItemBackgroundColour(*args
, **kwargs
):
4603 """SetItemBackgroundColour(self, long item, Colour col)"""
4604 return _controls_
.ListCtrl_SetItemBackgroundColour(*args
, **kwargs
)
4606 def GetItemBackgroundColour(*args
, **kwargs
):
4607 """GetItemBackgroundColour(self, long item) -> Colour"""
4608 return _controls_
.ListCtrl_GetItemBackgroundColour(*args
, **kwargs
)
4610 def SetItemFont(*args
, **kwargs
):
4611 """SetItemFont(self, long item, Font f)"""
4612 return _controls_
.ListCtrl_SetItemFont(*args
, **kwargs
)
4614 def GetItemFont(*args
, **kwargs
):
4615 """GetItemFont(self, long item) -> Font"""
4616 return _controls_
.ListCtrl_GetItemFont(*args
, **kwargs
)
4620 def Select(self
, idx
, on
=1):
4621 '''[de]select an item'''
4622 if on
: state
= wx
.LIST_STATE_SELECTED
4624 self
.SetItemState(idx
, state
, wx
.LIST_STATE_SELECTED
)
4626 def Focus(self
, idx
):
4627 '''Focus and show the given item'''
4628 self
.SetItemState(idx
, wx
.LIST_STATE_FOCUSED
, wx
.LIST_STATE_FOCUSED
)
4629 self
.EnsureVisible(idx
)
4631 def GetFocusedItem(self
):
4632 '''get the currently focused item or -1 if none'''
4633 return self
.GetNextItem(-1, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_FOCUSED
)
4635 def GetFirstSelected(self
, *args
):
4636 '''return first selected item, or -1 when none'''
4637 return self
.GetNextSelected(-1)
4639 def GetNextSelected(self
, item
):
4640 '''return subsequent selected items, or -1 when no more'''
4641 return self
.GetNextItem(item
, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_SELECTED
)
4643 def IsSelected(self
, idx
):
4644 '''return True if the item is selected'''
4645 return (self
.GetItemState(idx
, wx
.LIST_STATE_SELECTED
) & wx
.LIST_STATE_SELECTED
) != 0
4647 def SetColumnImage(self
, col
, image
):
4648 item
= self
.GetColumn(col
)
4649 # preserve all other attributes too
4650 item
.SetMask( wx
.LIST_MASK_STATE |
4652 wx
.LIST_MASK_IMAGE |
4655 wx
.LIST_MASK_WIDTH |
4656 wx
.LIST_MASK_FORMAT
)
4657 item
.SetImage(image
)
4658 self
.SetColumn(col
, item
)
4660 def ClearColumnImage(self
, col
):
4661 self
.SetColumnImage(col
, -1)
4663 def Append(self
, entry
):
4664 '''Append an item to the list control. The entry parameter should be a
4665 sequence with an item for each column'''
4671 pos
= self
.GetItemCount()
4672 self
.InsertStringItem(pos
, cvtfunc(entry
[0]))
4673 for i
in range(1, len(entry
)):
4674 self
.SetStringItem(pos
, i
, cvtfunc(entry
[i
]))
4677 def SortItems(*args
, **kwargs
):
4678 """SortItems(self, PyObject func) -> bool"""
4679 return _controls_
.ListCtrl_SortItems(*args
, **kwargs
)
4681 def GetMainWindow(*args
, **kwargs
):
4682 """GetMainWindow(self) -> Window"""
4683 return _controls_
.ListCtrl_GetMainWindow(*args
, **kwargs
)
4685 def GetClassDefaultAttributes(*args
, **kwargs
):
4687 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4689 Get the default attributes for this class. This is useful if you want
4690 to use the same font or colour in your own control as in a standard
4691 control -- which is a much better idea than hard coding specific
4692 colours or fonts which might look completely out of place on the
4693 user's system, especially if it uses themes.
4695 The variant parameter is only relevant under Mac currently and is
4696 ignore under other platforms. Under Mac, it will change the size of
4697 the returned font. See `wx.Window.SetWindowVariant` for more about
4700 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4702 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
4703 _controls_
.ListCtrl_swigregister(ListCtrl
)
4705 def PreListCtrl(*args
, **kwargs
):
4706 """PreListCtrl() -> ListCtrl"""
4707 val
= _controls_
.new_PreListCtrl(*args
, **kwargs
)
4710 def ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
4712 ListCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4714 Get the default attributes for this class. This is useful if you want
4715 to use the same font or colour in your own control as in a standard
4716 control -- which is a much better idea than hard coding specific
4717 colours or fonts which might look completely out of place on the
4718 user's system, especially if it uses themes.
4720 The variant parameter is only relevant under Mac currently and is
4721 ignore under other platforms. Under Mac, it will change the size of
4722 the returned font. See `wx.Window.SetWindowVariant` for more about
4725 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4727 #---------------------------------------------------------------------------
4729 class ListView(ListCtrl
):
4730 """Proxy of C++ ListView class"""
4731 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4732 __repr__
= _swig_repr
4733 def __init__(self
, *args
, **kwargs
):
4735 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4736 Size size=DefaultSize, long style=LC_REPORT,
4737 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListView
4739 _controls_
.ListView_swiginit(self
,_controls_
.new_ListView(*args
, **kwargs
))
4740 self
._setOORInfo
(self
)
4742 def Create(*args
, **kwargs
):
4744 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4745 Size size=DefaultSize, long style=LC_REPORT,
4746 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4748 Do the 2nd phase and create the GUI control.
4750 return _controls_
.ListView_Create(*args
, **kwargs
)
4752 def Select(*args
, **kwargs
):
4753 """Select(self, long n, bool on=True)"""
4754 return _controls_
.ListView_Select(*args
, **kwargs
)
4756 def Focus(*args
, **kwargs
):
4757 """Focus(self, long index)"""
4758 return _controls_
.ListView_Focus(*args
, **kwargs
)
4760 def GetFocusedItem(*args
, **kwargs
):
4761 """GetFocusedItem(self) -> long"""
4762 return _controls_
.ListView_GetFocusedItem(*args
, **kwargs
)
4764 def GetNextSelected(*args
, **kwargs
):
4765 """GetNextSelected(self, long item) -> long"""
4766 return _controls_
.ListView_GetNextSelected(*args
, **kwargs
)
4768 def GetFirstSelected(*args
, **kwargs
):
4769 """GetFirstSelected(self) -> long"""
4770 return _controls_
.ListView_GetFirstSelected(*args
, **kwargs
)
4772 def IsSelected(*args
, **kwargs
):
4773 """IsSelected(self, long index) -> bool"""
4774 return _controls_
.ListView_IsSelected(*args
, **kwargs
)
4776 def SetColumnImage(*args
, **kwargs
):
4777 """SetColumnImage(self, int col, int image)"""
4778 return _controls_
.ListView_SetColumnImage(*args
, **kwargs
)
4780 def ClearColumnImage(*args
, **kwargs
):
4781 """ClearColumnImage(self, int col)"""
4782 return _controls_
.ListView_ClearColumnImage(*args
, **kwargs
)
4784 _controls_
.ListView_swigregister(ListView
)
4786 def PreListView(*args
, **kwargs
):
4787 """PreListView() -> ListView"""
4788 val
= _controls_
.new_PreListView(*args
, **kwargs
)
4791 #---------------------------------------------------------------------------
4793 TR_NO_BUTTONS
= _controls_
.TR_NO_BUTTONS
4794 TR_HAS_BUTTONS
= _controls_
.TR_HAS_BUTTONS
4795 TR_NO_LINES
= _controls_
.TR_NO_LINES
4796 TR_LINES_AT_ROOT
= _controls_
.TR_LINES_AT_ROOT
4797 TR_SINGLE
= _controls_
.TR_SINGLE
4798 TR_MULTIPLE
= _controls_
.TR_MULTIPLE
4799 TR_EXTENDED
= _controls_
.TR_EXTENDED
4800 TR_HAS_VARIABLE_ROW_HEIGHT
= _controls_
.TR_HAS_VARIABLE_ROW_HEIGHT
4801 TR_EDIT_LABELS
= _controls_
.TR_EDIT_LABELS
4802 TR_HIDE_ROOT
= _controls_
.TR_HIDE_ROOT
4803 TR_ROW_LINES
= _controls_
.TR_ROW_LINES
4804 TR_FULL_ROW_HIGHLIGHT
= _controls_
.TR_FULL_ROW_HIGHLIGHT
4805 TR_DEFAULT_STYLE
= _controls_
.TR_DEFAULT_STYLE
4806 TR_TWIST_BUTTONS
= _controls_
.TR_TWIST_BUTTONS
4809 wxTR_AQUA_BUTTONS
= 0
4811 TreeItemIcon_Normal
= _controls_
.TreeItemIcon_Normal
4812 TreeItemIcon_Selected
= _controls_
.TreeItemIcon_Selected
4813 TreeItemIcon_Expanded
= _controls_
.TreeItemIcon_Expanded
4814 TreeItemIcon_SelectedExpanded
= _controls_
.TreeItemIcon_SelectedExpanded
4815 TreeItemIcon_Max
= _controls_
.TreeItemIcon_Max
4816 TREE_HITTEST_ABOVE
= _controls_
.TREE_HITTEST_ABOVE
4817 TREE_HITTEST_BELOW
= _controls_
.TREE_HITTEST_BELOW
4818 TREE_HITTEST_NOWHERE
= _controls_
.TREE_HITTEST_NOWHERE
4819 TREE_HITTEST_ONITEMBUTTON
= _controls_
.TREE_HITTEST_ONITEMBUTTON
4820 TREE_HITTEST_ONITEMICON
= _controls_
.TREE_HITTEST_ONITEMICON
4821 TREE_HITTEST_ONITEMINDENT
= _controls_
.TREE_HITTEST_ONITEMINDENT
4822 TREE_HITTEST_ONITEMLABEL
= _controls_
.TREE_HITTEST_ONITEMLABEL
4823 TREE_HITTEST_ONITEMRIGHT
= _controls_
.TREE_HITTEST_ONITEMRIGHT
4824 TREE_HITTEST_ONITEMSTATEICON
= _controls_
.TREE_HITTEST_ONITEMSTATEICON
4825 TREE_HITTEST_TOLEFT
= _controls_
.TREE_HITTEST_TOLEFT
4826 TREE_HITTEST_TORIGHT
= _controls_
.TREE_HITTEST_TORIGHT
4827 TREE_HITTEST_ONITEMUPPERPART
= _controls_
.TREE_HITTEST_ONITEMUPPERPART
4828 TREE_HITTEST_ONITEMLOWERPART
= _controls_
.TREE_HITTEST_ONITEMLOWERPART
4829 TREE_HITTEST_ONITEM
= _controls_
.TREE_HITTEST_ONITEM
4830 #---------------------------------------------------------------------------
4832 class TreeItemId(object):
4833 """Proxy of C++ TreeItemId class"""
4834 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4835 __repr__
= _swig_repr
4836 def __init__(self
, *args
, **kwargs
):
4837 """__init__(self) -> TreeItemId"""
4838 _controls_
.TreeItemId_swiginit(self
,_controls_
.new_TreeItemId(*args
, **kwargs
))
4839 __swig_destroy__
= _controls_
.delete_TreeItemId
4840 __del__
= lambda self
: None;
4841 def IsOk(*args
, **kwargs
):
4842 """IsOk(self) -> bool"""
4843 return _controls_
.TreeItemId_IsOk(*args
, **kwargs
)
4845 def __eq__(*args
, **kwargs
):
4846 """__eq__(self, TreeItemId other) -> bool"""
4847 return _controls_
.TreeItemId___eq__(*args
, **kwargs
)
4849 def __ne__(*args
, **kwargs
):
4850 """__ne__(self, TreeItemId other) -> bool"""
4851 return _controls_
.TreeItemId___ne__(*args
, **kwargs
)
4853 m_pItem
= property(_controls_
.TreeItemId_m_pItem_get
, _controls_
.TreeItemId_m_pItem_set
)
4855 def __nonzero__(self
): return self
.IsOk()
4856 _controls_
.TreeItemId_swigregister(TreeItemId
)
4857 TreeCtrlNameStr
= cvar
.TreeCtrlNameStr
4859 class TreeItemData(object):
4860 """Proxy of C++ TreeItemData class"""
4861 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4862 __repr__
= _swig_repr
4863 def __init__(self
, *args
, **kwargs
):
4864 """__init__(self, PyObject obj=None) -> TreeItemData"""
4865 _controls_
.TreeItemData_swiginit(self
,_controls_
.new_TreeItemData(*args
, **kwargs
))
4866 __swig_destroy__
= _controls_
.delete_TreeItemData
4867 __del__
= lambda self
: None;
4868 def GetData(*args
, **kwargs
):
4869 """GetData(self) -> PyObject"""
4870 return _controls_
.TreeItemData_GetData(*args
, **kwargs
)
4872 def SetData(*args
, **kwargs
):
4873 """SetData(self, PyObject obj)"""
4874 return _controls_
.TreeItemData_SetData(*args
, **kwargs
)
4876 def GetId(*args
, **kwargs
):
4877 """GetId(self) -> TreeItemId"""
4878 return _controls_
.TreeItemData_GetId(*args
, **kwargs
)
4880 def SetId(*args
, **kwargs
):
4881 """SetId(self, TreeItemId id)"""
4882 return _controls_
.TreeItemData_SetId(*args
, **kwargs
)
4884 def Destroy(*args
, **kwargs
):
4886 val
= _controls_
.TreeItemData_Destroy(*args
, **kwargs
)
4890 _controls_
.TreeItemData_swigregister(TreeItemData
)
4892 #---------------------------------------------------------------------------
4894 wxEVT_COMMAND_TREE_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_DRAG
4895 wxEVT_COMMAND_TREE_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_RDRAG
4896 wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
4897 wxEVT_COMMAND_TREE_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_END_LABEL_EDIT
4898 wxEVT_COMMAND_TREE_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_TREE_DELETE_ITEM
4899 wxEVT_COMMAND_TREE_GET_INFO
= _controls_
.wxEVT_COMMAND_TREE_GET_INFO
4900 wxEVT_COMMAND_TREE_SET_INFO
= _controls_
.wxEVT_COMMAND_TREE_SET_INFO
4901 wxEVT_COMMAND_TREE_ITEM_EXPANDED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDED
4902 wxEVT_COMMAND_TREE_ITEM_EXPANDING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDING
4903 wxEVT_COMMAND_TREE_ITEM_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSED
4904 wxEVT_COMMAND_TREE_ITEM_COLLAPSING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSING
4905 wxEVT_COMMAND_TREE_SEL_CHANGED
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGED
4906 wxEVT_COMMAND_TREE_SEL_CHANGING
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGING
4907 wxEVT_COMMAND_TREE_KEY_DOWN
= _controls_
.wxEVT_COMMAND_TREE_KEY_DOWN
4908 wxEVT_COMMAND_TREE_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_ACTIVATED
4909 wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
4910 wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
4911 wxEVT_COMMAND_TREE_END_DRAG
= _controls_
.wxEVT_COMMAND_TREE_END_DRAG
4912 wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
4913 wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
= _controls_
.wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
4914 wxEVT_COMMAND_TREE_ITEM_MENU
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MENU
4915 EVT_TREE_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG
, 1)
4916 EVT_TREE_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG
, 1)
4917 EVT_TREE_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, 1)
4918 EVT_TREE_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, 1)
4919 EVT_TREE_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM
, 1)
4920 EVT_TREE_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO
, 1)
4921 EVT_TREE_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO
, 1)
4922 EVT_TREE_ITEM_EXPANDED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED
, 1)
4923 EVT_TREE_ITEM_EXPANDING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, 1)
4924 EVT_TREE_ITEM_COLLAPSED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, 1)
4925 EVT_TREE_ITEM_COLLAPSING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, 1)
4926 EVT_TREE_SEL_CHANGED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED
, 1)
4927 EVT_TREE_SEL_CHANGING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING
, 1)
4928 EVT_TREE_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN
, 1)
4929 EVT_TREE_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, 1)
4930 EVT_TREE_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, 1)
4931 EVT_TREE_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, 1)
4932 EVT_TREE_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG
, 1)
4933 EVT_TREE_STATE_IMAGE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
, 1)
4934 EVT_TREE_ITEM_GETTOOLTIP
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
, 1)
4935 EVT_TREE_ITEM_MENU
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MENU
, 1)
4937 class TreeEvent(_core
.NotifyEvent
):
4938 """Proxy of C++ TreeEvent class"""
4939 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4940 __repr__
= _swig_repr
4941 def __init__(self
, *args
):
4943 __init__(self, EventType commandType=wxEVT_NULL, int id=0) -> TreeEvent
4944 __init__(self, EventType commandType, TreeCtrl tree, TreeItemId item=NullTreeItemId) -> TreeEvent
4946 _controls_
.TreeEvent_swiginit(self
,_controls_
.new_TreeEvent(*args
))
4947 def GetItem(*args
, **kwargs
):
4948 """GetItem(self) -> TreeItemId"""
4949 return _controls_
.TreeEvent_GetItem(*args
, **kwargs
)
4951 def SetItem(*args
, **kwargs
):
4952 """SetItem(self, TreeItemId item)"""
4953 return _controls_
.TreeEvent_SetItem(*args
, **kwargs
)
4955 def GetOldItem(*args
, **kwargs
):
4956 """GetOldItem(self) -> TreeItemId"""
4957 return _controls_
.TreeEvent_GetOldItem(*args
, **kwargs
)
4959 def SetOldItem(*args
, **kwargs
):
4960 """SetOldItem(self, TreeItemId item)"""
4961 return _controls_
.TreeEvent_SetOldItem(*args
, **kwargs
)
4963 def GetPoint(*args
, **kwargs
):
4964 """GetPoint(self) -> Point"""
4965 return _controls_
.TreeEvent_GetPoint(*args
, **kwargs
)
4967 def SetPoint(*args
, **kwargs
):
4968 """SetPoint(self, Point pt)"""
4969 return _controls_
.TreeEvent_SetPoint(*args
, **kwargs
)
4971 def GetKeyEvent(*args
, **kwargs
):
4972 """GetKeyEvent(self) -> KeyEvent"""
4973 return _controls_
.TreeEvent_GetKeyEvent(*args
, **kwargs
)
4975 def GetKeyCode(*args
, **kwargs
):
4976 """GetKeyCode(self) -> int"""
4977 return _controls_
.TreeEvent_GetKeyCode(*args
, **kwargs
)
4979 def SetKeyEvent(*args
, **kwargs
):
4980 """SetKeyEvent(self, KeyEvent evt)"""
4981 return _controls_
.TreeEvent_SetKeyEvent(*args
, **kwargs
)
4983 def GetLabel(*args
, **kwargs
):
4984 """GetLabel(self) -> String"""
4985 return _controls_
.TreeEvent_GetLabel(*args
, **kwargs
)
4987 def SetLabel(*args
, **kwargs
):
4988 """SetLabel(self, String label)"""
4989 return _controls_
.TreeEvent_SetLabel(*args
, **kwargs
)
4991 def IsEditCancelled(*args
, **kwargs
):
4992 """IsEditCancelled(self) -> bool"""
4993 return _controls_
.TreeEvent_IsEditCancelled(*args
, **kwargs
)
4995 def SetEditCanceled(*args
, **kwargs
):
4996 """SetEditCanceled(self, bool editCancelled)"""
4997 return _controls_
.TreeEvent_SetEditCanceled(*args
, **kwargs
)
4999 def SetToolTip(*args
, **kwargs
):
5000 """SetToolTip(self, String toolTip)"""
5001 return _controls_
.TreeEvent_SetToolTip(*args
, **kwargs
)
5003 def GetToolTip(*args
, **kwargs
):
5004 """GetToolTip(self) -> String"""
5005 return _controls_
.TreeEvent_GetToolTip(*args
, **kwargs
)
5007 _controls_
.TreeEvent_swigregister(TreeEvent
)
5009 #---------------------------------------------------------------------------
5011 class TreeCtrl(_core
.Control
):
5012 """Proxy of C++ TreeCtrl class"""
5013 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5014 __repr__
= _swig_repr
5015 def __init__(self
, *args
, **kwargs
):
5017 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
5018 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
5019 Validator validator=DefaultValidator,
5020 String name=TreeCtrlNameStr) -> TreeCtrl
5022 _controls_
.TreeCtrl_swiginit(self
,_controls_
.new_TreeCtrl(*args
, **kwargs
))
5023 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, TreeCtrl
)
5025 def Create(*args
, **kwargs
):
5027 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
5028 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
5029 Validator validator=DefaultValidator,
5030 String name=TreeCtrlNameStr) -> bool
5032 Do the 2nd phase and create the GUI control.
5034 return _controls_
.TreeCtrl_Create(*args
, **kwargs
)
5036 def _setCallbackInfo(*args
, **kwargs
):
5037 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5038 return _controls_
.TreeCtrl__setCallbackInfo(*args
, **kwargs
)
5040 def GetCount(*args
, **kwargs
):
5041 """GetCount(self) -> unsigned int"""
5042 return _controls_
.TreeCtrl_GetCount(*args
, **kwargs
)
5044 def GetIndent(*args
, **kwargs
):
5045 """GetIndent(self) -> unsigned int"""
5046 return _controls_
.TreeCtrl_GetIndent(*args
, **kwargs
)
5048 def SetIndent(*args
, **kwargs
):
5049 """SetIndent(self, unsigned int indent)"""
5050 return _controls_
.TreeCtrl_SetIndent(*args
, **kwargs
)
5052 def GetSpacing(*args
, **kwargs
):
5053 """GetSpacing(self) -> unsigned int"""
5054 return _controls_
.TreeCtrl_GetSpacing(*args
, **kwargs
)
5056 def SetSpacing(*args
, **kwargs
):
5057 """SetSpacing(self, unsigned int spacing)"""
5058 return _controls_
.TreeCtrl_SetSpacing(*args
, **kwargs
)
5060 def GetImageList(*args
, **kwargs
):
5061 """GetImageList(self) -> ImageList"""
5062 return _controls_
.TreeCtrl_GetImageList(*args
, **kwargs
)
5064 def GetStateImageList(*args
, **kwargs
):
5065 """GetStateImageList(self) -> ImageList"""
5066 return _controls_
.TreeCtrl_GetStateImageList(*args
, **kwargs
)
5068 def SetImageList(*args
, **kwargs
):
5069 """SetImageList(self, ImageList imageList)"""
5070 return _controls_
.TreeCtrl_SetImageList(*args
, **kwargs
)
5072 def SetStateImageList(*args
, **kwargs
):
5073 """SetStateImageList(self, ImageList imageList)"""
5074 return _controls_
.TreeCtrl_SetStateImageList(*args
, **kwargs
)
5076 def AssignImageList(*args
, **kwargs
):
5077 """AssignImageList(self, ImageList imageList)"""
5078 return _controls_
.TreeCtrl_AssignImageList(*args
, **kwargs
)
5080 def AssignStateImageList(*args
, **kwargs
):
5081 """AssignStateImageList(self, ImageList imageList)"""
5082 return _controls_
.TreeCtrl_AssignStateImageList(*args
, **kwargs
)
5084 def GetItemText(*args
, **kwargs
):
5085 """GetItemText(self, TreeItemId item) -> String"""
5086 return _controls_
.TreeCtrl_GetItemText(*args
, **kwargs
)
5088 def GetItemImage(*args
, **kwargs
):
5089 """GetItemImage(self, TreeItemId item, int which=TreeItemIcon_Normal) -> int"""
5090 return _controls_
.TreeCtrl_GetItemImage(*args
, **kwargs
)
5092 def GetItemData(*args
, **kwargs
):
5093 """GetItemData(self, TreeItemId item) -> TreeItemData"""
5094 return _controls_
.TreeCtrl_GetItemData(*args
, **kwargs
)
5096 def GetItemPyData(*args
, **kwargs
):
5097 """GetItemPyData(self, TreeItemId item) -> PyObject"""
5098 return _controls_
.TreeCtrl_GetItemPyData(*args
, **kwargs
)
5100 GetPyData
= GetItemPyData
5101 def GetItemTextColour(*args
, **kwargs
):
5102 """GetItemTextColour(self, TreeItemId item) -> Colour"""
5103 return _controls_
.TreeCtrl_GetItemTextColour(*args
, **kwargs
)
5105 def GetItemBackgroundColour(*args
, **kwargs
):
5106 """GetItemBackgroundColour(self, TreeItemId item) -> Colour"""
5107 return _controls_
.TreeCtrl_GetItemBackgroundColour(*args
, **kwargs
)
5109 def GetItemFont(*args
, **kwargs
):
5110 """GetItemFont(self, TreeItemId item) -> Font"""
5111 return _controls_
.TreeCtrl_GetItemFont(*args
, **kwargs
)
5113 def SetItemText(*args
, **kwargs
):
5114 """SetItemText(self, TreeItemId item, String text)"""
5115 return _controls_
.TreeCtrl_SetItemText(*args
, **kwargs
)
5117 def SetItemImage(*args
, **kwargs
):
5118 """SetItemImage(self, TreeItemId item, int image, int which=TreeItemIcon_Normal)"""
5119 return _controls_
.TreeCtrl_SetItemImage(*args
, **kwargs
)
5121 def SetItemData(*args
, **kwargs
):
5122 """SetItemData(self, TreeItemId item, TreeItemData data)"""
5123 return _controls_
.TreeCtrl_SetItemData(*args
, **kwargs
)
5125 def SetItemPyData(*args
, **kwargs
):
5126 """SetItemPyData(self, TreeItemId item, PyObject obj)"""
5127 return _controls_
.TreeCtrl_SetItemPyData(*args
, **kwargs
)
5129 SetPyData
= SetItemPyData
5130 def SetItemHasChildren(*args
, **kwargs
):
5131 """SetItemHasChildren(self, TreeItemId item, bool has=True)"""
5132 return _controls_
.TreeCtrl_SetItemHasChildren(*args
, **kwargs
)
5134 def SetItemBold(*args
, **kwargs
):
5135 """SetItemBold(self, TreeItemId item, bool bold=True)"""
5136 return _controls_
.TreeCtrl_SetItemBold(*args
, **kwargs
)
5138 def SetItemDropHighlight(*args
, **kwargs
):
5139 """SetItemDropHighlight(self, TreeItemId item, bool highlight=True)"""
5140 return _controls_
.TreeCtrl_SetItemDropHighlight(*args
, **kwargs
)
5142 def SetItemTextColour(*args
, **kwargs
):
5143 """SetItemTextColour(self, TreeItemId item, Colour col)"""
5144 return _controls_
.TreeCtrl_SetItemTextColour(*args
, **kwargs
)
5146 def SetItemBackgroundColour(*args
, **kwargs
):
5147 """SetItemBackgroundColour(self, TreeItemId item, Colour col)"""
5148 return _controls_
.TreeCtrl_SetItemBackgroundColour(*args
, **kwargs
)
5150 def SetItemFont(*args
, **kwargs
):
5151 """SetItemFont(self, TreeItemId item, Font font)"""
5152 return _controls_
.TreeCtrl_SetItemFont(*args
, **kwargs
)
5154 def IsVisible(*args
, **kwargs
):
5155 """IsVisible(self, TreeItemId item) -> bool"""
5156 return _controls_
.TreeCtrl_IsVisible(*args
, **kwargs
)
5158 def ItemHasChildren(*args
, **kwargs
):
5159 """ItemHasChildren(self, TreeItemId item) -> bool"""
5160 return _controls_
.TreeCtrl_ItemHasChildren(*args
, **kwargs
)
5162 def IsExpanded(*args
, **kwargs
):
5163 """IsExpanded(self, TreeItemId item) -> bool"""
5164 return _controls_
.TreeCtrl_IsExpanded(*args
, **kwargs
)
5166 def IsSelected(*args
, **kwargs
):
5167 """IsSelected(self, TreeItemId item) -> bool"""
5168 return _controls_
.TreeCtrl_IsSelected(*args
, **kwargs
)
5170 def IsBold(*args
, **kwargs
):
5171 """IsBold(self, TreeItemId item) -> bool"""
5172 return _controls_
.TreeCtrl_IsBold(*args
, **kwargs
)
5174 def GetChildrenCount(*args
, **kwargs
):
5175 """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t"""
5176 return _controls_
.TreeCtrl_GetChildrenCount(*args
, **kwargs
)
5178 def GetRootItem(*args
, **kwargs
):
5179 """GetRootItem(self) -> TreeItemId"""
5180 return _controls_
.TreeCtrl_GetRootItem(*args
, **kwargs
)
5182 def GetSelection(*args
, **kwargs
):
5183 """GetSelection(self) -> TreeItemId"""
5184 return _controls_
.TreeCtrl_GetSelection(*args
, **kwargs
)
5186 def GetSelections(*args
, **kwargs
):
5187 """GetSelections(self) -> PyObject"""
5188 return _controls_
.TreeCtrl_GetSelections(*args
, **kwargs
)
5190 def GetItemParent(*args
, **kwargs
):
5191 """GetItemParent(self, TreeItemId item) -> TreeItemId"""
5192 return _controls_
.TreeCtrl_GetItemParent(*args
, **kwargs
)
5194 def GetFirstChild(*args
, **kwargs
):
5195 """GetFirstChild(self, TreeItemId item) -> PyObject"""
5196 return _controls_
.TreeCtrl_GetFirstChild(*args
, **kwargs
)
5198 def GetNextChild(*args
, **kwargs
):
5199 """GetNextChild(self, TreeItemId item, void cookie) -> PyObject"""
5200 return _controls_
.TreeCtrl_GetNextChild(*args
, **kwargs
)
5202 def GetLastChild(*args
, **kwargs
):
5203 """GetLastChild(self, TreeItemId item) -> TreeItemId"""
5204 return _controls_
.TreeCtrl_GetLastChild(*args
, **kwargs
)
5206 def GetNextSibling(*args
, **kwargs
):
5207 """GetNextSibling(self, TreeItemId item) -> TreeItemId"""
5208 return _controls_
.TreeCtrl_GetNextSibling(*args
, **kwargs
)
5210 def GetPrevSibling(*args
, **kwargs
):
5211 """GetPrevSibling(self, TreeItemId item) -> TreeItemId"""
5212 return _controls_
.TreeCtrl_GetPrevSibling(*args
, **kwargs
)
5214 def GetFirstVisibleItem(*args
, **kwargs
):
5215 """GetFirstVisibleItem(self) -> TreeItemId"""
5216 return _controls_
.TreeCtrl_GetFirstVisibleItem(*args
, **kwargs
)
5218 def GetNextVisible(*args
, **kwargs
):
5219 """GetNextVisible(self, TreeItemId item) -> TreeItemId"""
5220 return _controls_
.TreeCtrl_GetNextVisible(*args
, **kwargs
)
5222 def GetPrevVisible(*args
, **kwargs
):
5223 """GetPrevVisible(self, TreeItemId item) -> TreeItemId"""
5224 return _controls_
.TreeCtrl_GetPrevVisible(*args
, **kwargs
)
5226 def AddRoot(*args
, **kwargs
):
5227 """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId"""
5228 return _controls_
.TreeCtrl_AddRoot(*args
, **kwargs
)
5230 def PrependItem(*args
, **kwargs
):
5232 PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5233 TreeItemData data=None) -> TreeItemId
5235 return _controls_
.TreeCtrl_PrependItem(*args
, **kwargs
)
5237 def InsertItem(*args
, **kwargs
):
5239 InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text,
5240 int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5242 return _controls_
.TreeCtrl_InsertItem(*args
, **kwargs
)
5244 def InsertItemBefore(*args
, **kwargs
):
5246 InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1,
5247 int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5249 return _controls_
.TreeCtrl_InsertItemBefore(*args
, **kwargs
)
5251 def AppendItem(*args
, **kwargs
):
5253 AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5254 TreeItemData data=None) -> TreeItemId
5256 return _controls_
.TreeCtrl_AppendItem(*args
, **kwargs
)
5258 def Delete(*args
, **kwargs
):
5259 """Delete(self, TreeItemId item)"""
5260 return _controls_
.TreeCtrl_Delete(*args
, **kwargs
)
5262 def DeleteChildren(*args
, **kwargs
):
5263 """DeleteChildren(self, TreeItemId item)"""
5264 return _controls_
.TreeCtrl_DeleteChildren(*args
, **kwargs
)
5266 def DeleteAllItems(*args
, **kwargs
):
5267 """DeleteAllItems(self)"""
5268 return _controls_
.TreeCtrl_DeleteAllItems(*args
, **kwargs
)
5270 def Expand(*args
, **kwargs
):
5271 """Expand(self, TreeItemId item)"""
5272 return _controls_
.TreeCtrl_Expand(*args
, **kwargs
)
5274 def ExpandAllChildren(*args
, **kwargs
):
5275 """ExpandAllChildren(self, TreeItemId item)"""
5276 return _controls_
.TreeCtrl_ExpandAllChildren(*args
, **kwargs
)
5278 def ExpandAll(*args
, **kwargs
):
5279 """ExpandAll(self)"""
5280 return _controls_
.TreeCtrl_ExpandAll(*args
, **kwargs
)
5282 def Collapse(*args
, **kwargs
):
5283 """Collapse(self, TreeItemId item)"""
5284 return _controls_
.TreeCtrl_Collapse(*args
, **kwargs
)
5286 def CollapseAndReset(*args
, **kwargs
):
5287 """CollapseAndReset(self, TreeItemId item)"""
5288 return _controls_
.TreeCtrl_CollapseAndReset(*args
, **kwargs
)
5290 def Toggle(*args
, **kwargs
):
5291 """Toggle(self, TreeItemId item)"""
5292 return _controls_
.TreeCtrl_Toggle(*args
, **kwargs
)
5294 def Unselect(*args
, **kwargs
):
5295 """Unselect(self)"""
5296 return _controls_
.TreeCtrl_Unselect(*args
, **kwargs
)
5298 def UnselectItem(*args
, **kwargs
):
5299 """UnselectItem(self, TreeItemId item)"""
5300 return _controls_
.TreeCtrl_UnselectItem(*args
, **kwargs
)
5302 def UnselectAll(*args
, **kwargs
):
5303 """UnselectAll(self)"""
5304 return _controls_
.TreeCtrl_UnselectAll(*args
, **kwargs
)
5306 def SelectItem(*args
, **kwargs
):
5307 """SelectItem(self, TreeItemId item, bool select=True)"""
5308 return _controls_
.TreeCtrl_SelectItem(*args
, **kwargs
)
5310 def ToggleItemSelection(*args
, **kwargs
):
5311 """ToggleItemSelection(self, TreeItemId item)"""
5312 return _controls_
.TreeCtrl_ToggleItemSelection(*args
, **kwargs
)
5314 def EnsureVisible(*args
, **kwargs
):
5315 """EnsureVisible(self, TreeItemId item)"""
5316 return _controls_
.TreeCtrl_EnsureVisible(*args
, **kwargs
)
5318 def ScrollTo(*args
, **kwargs
):
5319 """ScrollTo(self, TreeItemId item)"""
5320 return _controls_
.TreeCtrl_ScrollTo(*args
, **kwargs
)
5322 def EditLabel(*args
, **kwargs
):
5323 """EditLabel(self, TreeItemId item)"""
5324 return _controls_
.TreeCtrl_EditLabel(*args
, **kwargs
)
5326 def GetEditControl(*args
, **kwargs
):
5327 """GetEditControl(self) -> TextCtrl"""
5328 return _controls_
.TreeCtrl_GetEditControl(*args
, **kwargs
)
5330 def SortChildren(*args
, **kwargs
):
5331 """SortChildren(self, TreeItemId item)"""
5332 return _controls_
.TreeCtrl_SortChildren(*args
, **kwargs
)
5334 def HitTest(*args
, **kwargs
):
5336 HitTest(Point point) -> (item, where)
5338 Determine which item (if any) belongs the given point. The coordinates
5339 specified are relative to the client area of tree ctrl and the where return
5340 value is set to a bitmask of wxTREE_HITTEST_xxx constants.
5343 return _controls_
.TreeCtrl_HitTest(*args
, **kwargs
)
5345 def GetBoundingRect(*args
, **kwargs
):
5346 """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject"""
5347 return _controls_
.TreeCtrl_GetBoundingRect(*args
, **kwargs
)
5349 def GetClassDefaultAttributes(*args
, **kwargs
):
5351 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5353 Get the default attributes for this class. This is useful if you want
5354 to use the same font or colour in your own control as in a standard
5355 control -- which is a much better idea than hard coding specific
5356 colours or fonts which might look completely out of place on the
5357 user's system, especially if it uses themes.
5359 The variant parameter is only relevant under Mac currently and is
5360 ignore under other platforms. Under Mac, it will change the size of
5361 the returned font. See `wx.Window.SetWindowVariant` for more about
5364 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5366 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
5367 def SetQuickBestSize(*args
, **kwargs
):
5368 """SetQuickBestSize(self, bool q)"""
5369 return _controls_
.TreeCtrl_SetQuickBestSize(*args
, **kwargs
)
5371 def GetQuickBestSize(*args
, **kwargs
):
5372 """GetQuickBestSize(self) -> bool"""
5373 return _controls_
.TreeCtrl_GetQuickBestSize(*args
, **kwargs
)
5375 _controls_
.TreeCtrl_swigregister(TreeCtrl
)
5377 def PreTreeCtrl(*args
, **kwargs
):
5378 """PreTreeCtrl() -> TreeCtrl"""
5379 val
= _controls_
.new_PreTreeCtrl(*args
, **kwargs
)
5382 def TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
5384 TreeCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5386 Get the default attributes for this class. This is useful if you want
5387 to use the same font or colour in your own control as in a standard
5388 control -- which is a much better idea than hard coding specific
5389 colours or fonts which might look completely out of place on the
5390 user's system, especially if it uses themes.
5392 The variant parameter is only relevant under Mac currently and is
5393 ignore under other platforms. Under Mac, it will change the size of
5394 the returned font. See `wx.Window.SetWindowVariant` for more about
5397 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5399 #---------------------------------------------------------------------------
5401 DIRCTRL_DIR_ONLY
= _controls_
.DIRCTRL_DIR_ONLY
5402 DIRCTRL_SELECT_FIRST
= _controls_
.DIRCTRL_SELECT_FIRST
5403 DIRCTRL_SHOW_FILTERS
= _controls_
.DIRCTRL_SHOW_FILTERS
5404 DIRCTRL_3D_INTERNAL
= _controls_
.DIRCTRL_3D_INTERNAL
5405 DIRCTRL_EDIT_LABELS
= _controls_
.DIRCTRL_EDIT_LABELS
5406 class GenericDirCtrl(_core
.Control
):
5407 """Proxy of C++ GenericDirCtrl class"""
5408 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5409 __repr__
= _swig_repr
5410 def __init__(self
, *args
, **kwargs
):
5412 __init__(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5413 Point pos=DefaultPosition, Size size=DefaultSize,
5414 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5415 String filter=EmptyString,
5416 int defaultFilter=0, String name=TreeCtrlNameStr) -> GenericDirCtrl
5418 _controls_
.GenericDirCtrl_swiginit(self
,_controls_
.new_GenericDirCtrl(*args
, **kwargs
))
5419 self
._setOORInfo
(self
)
5421 def Create(*args
, **kwargs
):
5423 Create(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5424 Point pos=DefaultPosition, Size size=DefaultSize,
5425 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5426 String filter=EmptyString,
5427 int defaultFilter=0, String name=TreeCtrlNameStr) -> bool
5429 return _controls_
.GenericDirCtrl_Create(*args
, **kwargs
)
5431 def ExpandPath(*args
, **kwargs
):
5432 """ExpandPath(self, String path) -> bool"""
5433 return _controls_
.GenericDirCtrl_ExpandPath(*args
, **kwargs
)
5435 def CollapsePath(*args
, **kwargs
):
5436 """CollapsePath(self, String path) -> bool"""
5437 return _controls_
.GenericDirCtrl_CollapsePath(*args
, **kwargs
)
5439 def GetDefaultPath(*args
, **kwargs
):
5440 """GetDefaultPath(self) -> String"""
5441 return _controls_
.GenericDirCtrl_GetDefaultPath(*args
, **kwargs
)
5443 def SetDefaultPath(*args
, **kwargs
):
5444 """SetDefaultPath(self, String path)"""
5445 return _controls_
.GenericDirCtrl_SetDefaultPath(*args
, **kwargs
)
5447 def GetPath(*args
, **kwargs
):
5448 """GetPath(self) -> String"""
5449 return _controls_
.GenericDirCtrl_GetPath(*args
, **kwargs
)
5451 def GetFilePath(*args
, **kwargs
):
5452 """GetFilePath(self) -> String"""
5453 return _controls_
.GenericDirCtrl_GetFilePath(*args
, **kwargs
)
5455 def SetPath(*args
, **kwargs
):
5456 """SetPath(self, String path)"""
5457 return _controls_
.GenericDirCtrl_SetPath(*args
, **kwargs
)
5459 def ShowHidden(*args
, **kwargs
):
5460 """ShowHidden(self, bool show)"""
5461 return _controls_
.GenericDirCtrl_ShowHidden(*args
, **kwargs
)
5463 def GetShowHidden(*args
, **kwargs
):
5464 """GetShowHidden(self) -> bool"""
5465 return _controls_
.GenericDirCtrl_GetShowHidden(*args
, **kwargs
)
5467 def GetFilter(*args
, **kwargs
):
5468 """GetFilter(self) -> String"""
5469 return _controls_
.GenericDirCtrl_GetFilter(*args
, **kwargs
)
5471 def SetFilter(*args
, **kwargs
):
5472 """SetFilter(self, String filter)"""
5473 return _controls_
.GenericDirCtrl_SetFilter(*args
, **kwargs
)
5475 def GetFilterIndex(*args
, **kwargs
):
5476 """GetFilterIndex(self) -> int"""
5477 return _controls_
.GenericDirCtrl_GetFilterIndex(*args
, **kwargs
)
5479 def SetFilterIndex(*args
, **kwargs
):
5480 """SetFilterIndex(self, int n)"""
5481 return _controls_
.GenericDirCtrl_SetFilterIndex(*args
, **kwargs
)
5483 def GetRootId(*args
, **kwargs
):
5484 """GetRootId(self) -> TreeItemId"""
5485 return _controls_
.GenericDirCtrl_GetRootId(*args
, **kwargs
)
5487 def GetTreeCtrl(*args
, **kwargs
):
5488 """GetTreeCtrl(self) -> TreeCtrl"""
5489 return _controls_
.GenericDirCtrl_GetTreeCtrl(*args
, **kwargs
)
5491 def GetFilterListCtrl(*args
, **kwargs
):
5492 """GetFilterListCtrl(self) -> DirFilterListCtrl"""
5493 return _controls_
.GenericDirCtrl_GetFilterListCtrl(*args
, **kwargs
)
5495 def FindChild(*args
, **kwargs
):
5497 FindChild(wxTreeItemId parentId, wxString path) -> (item, done)
5499 Find the child that matches the first part of 'path'. E.g. if a child
5500 path is "/usr" and 'path' is "/usr/include" then the child for
5501 /usr is returned. If the path string has been used (we're at the
5502 leaf), done is set to True.
5505 return _controls_
.GenericDirCtrl_FindChild(*args
, **kwargs
)
5507 def DoResize(*args
, **kwargs
):
5508 """DoResize(self)"""
5509 return _controls_
.GenericDirCtrl_DoResize(*args
, **kwargs
)
5511 def ReCreateTree(*args
, **kwargs
):
5512 """ReCreateTree(self)"""
5513 return _controls_
.GenericDirCtrl_ReCreateTree(*args
, **kwargs
)
5515 _controls_
.GenericDirCtrl_swigregister(GenericDirCtrl
)
5516 DirDialogDefaultFolderStr
= cvar
.DirDialogDefaultFolderStr
5518 def PreGenericDirCtrl(*args
, **kwargs
):
5519 """PreGenericDirCtrl() -> GenericDirCtrl"""
5520 val
= _controls_
.new_PreGenericDirCtrl(*args
, **kwargs
)
5523 class DirFilterListCtrl(Choice
):
5524 """Proxy of C++ DirFilterListCtrl class"""
5525 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5526 __repr__
= _swig_repr
5527 def __init__(self
, *args
, **kwargs
):
5529 __init__(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5530 Size size=DefaultSize, long style=0) -> DirFilterListCtrl
5532 _controls_
.DirFilterListCtrl_swiginit(self
,_controls_
.new_DirFilterListCtrl(*args
, **kwargs
))
5533 self
._setOORInfo
(self
)
5535 def Create(*args
, **kwargs
):
5537 Create(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5538 Size size=DefaultSize, long style=0) -> bool
5540 return _controls_
.DirFilterListCtrl_Create(*args
, **kwargs
)
5542 def FillFilterList(*args
, **kwargs
):
5543 """FillFilterList(self, String filter, int defaultFilter)"""
5544 return _controls_
.DirFilterListCtrl_FillFilterList(*args
, **kwargs
)
5546 _controls_
.DirFilterListCtrl_swigregister(DirFilterListCtrl
)
5548 def PreDirFilterListCtrl(*args
, **kwargs
):
5549 """PreDirFilterListCtrl() -> DirFilterListCtrl"""
5550 val
= _controls_
.new_PreDirFilterListCtrl(*args
, **kwargs
)
5553 #---------------------------------------------------------------------------
5555 class PyControl(_core
.Control
):
5556 """Proxy of C++ PyControl class"""
5557 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5558 __repr__
= _swig_repr
5559 def __init__(self
, *args
, **kwargs
):
5561 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
5562 Size size=DefaultSize, long style=0, Validator validator=DefaultValidator,
5563 String name=ControlNameStr) -> PyControl
5565 _controls_
.PyControl_swiginit(self
,_controls_
.new_PyControl(*args
, **kwargs
))
5566 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyControl
)
5568 def _setCallbackInfo(*args
, **kwargs
):
5569 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5570 return _controls_
.PyControl__setCallbackInfo(*args
, **kwargs
)
5572 def SetBestSize(*args
, **kwargs
):
5573 """SetBestSize(self, Size size)"""
5574 return _controls_
.PyControl_SetBestSize(*args
, **kwargs
)
5576 def DoEraseBackground(*args
, **kwargs
):
5577 """DoEraseBackground(self, DC dc) -> bool"""
5578 return _controls_
.PyControl_DoEraseBackground(*args
, **kwargs
)
5580 def DoMoveWindow(*args
, **kwargs
):
5581 """DoMoveWindow(self, int x, int y, int width, int height)"""
5582 return _controls_
.PyControl_DoMoveWindow(*args
, **kwargs
)
5584 def DoSetSize(*args
, **kwargs
):
5585 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
5586 return _controls_
.PyControl_DoSetSize(*args
, **kwargs
)
5588 def DoSetClientSize(*args
, **kwargs
):
5589 """DoSetClientSize(self, int width, int height)"""
5590 return _controls_
.PyControl_DoSetClientSize(*args
, **kwargs
)
5592 def DoSetVirtualSize(*args
, **kwargs
):
5593 """DoSetVirtualSize(self, int x, int y)"""
5594 return _controls_
.PyControl_DoSetVirtualSize(*args
, **kwargs
)
5596 def DoGetSize(*args
, **kwargs
):
5597 """DoGetSize() -> (width, height)"""
5598 return _controls_
.PyControl_DoGetSize(*args
, **kwargs
)
5600 def DoGetClientSize(*args
, **kwargs
):
5601 """DoGetClientSize() -> (width, height)"""
5602 return _controls_
.PyControl_DoGetClientSize(*args
, **kwargs
)
5604 def DoGetPosition(*args
, **kwargs
):
5605 """DoGetPosition() -> (x,y)"""
5606 return _controls_
.PyControl_DoGetPosition(*args
, **kwargs
)
5608 def DoGetVirtualSize(*args
, **kwargs
):
5609 """DoGetVirtualSize(self) -> Size"""
5610 return _controls_
.PyControl_DoGetVirtualSize(*args
, **kwargs
)
5612 def DoGetBestSize(*args
, **kwargs
):
5613 """DoGetBestSize(self) -> Size"""
5614 return _controls_
.PyControl_DoGetBestSize(*args
, **kwargs
)
5616 def GetDefaultAttributes(*args
, **kwargs
):
5617 """GetDefaultAttributes(self) -> VisualAttributes"""
5618 return _controls_
.PyControl_GetDefaultAttributes(*args
, **kwargs
)
5620 def OnInternalIdle(*args
, **kwargs
):
5621 """OnInternalIdle(self)"""
5622 return _controls_
.PyControl_OnInternalIdle(*args
, **kwargs
)
5624 def base_DoMoveWindow(*args
, **kw
):
5625 return PyScrolledWindow
.DoMoveWindow(*args
, **kw
)
5626 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
5627 "Please use PyScrolledWindow.DoMoveWindow instead.")
5629 def base_DoSetSize(*args
, **kw
):
5630 return PyScrolledWindow
.DoSetSize(*args
, **kw
)
5631 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
5632 "Please use PyScrolledWindow.DoSetSize instead.")
5634 def base_DoSetClientSize(*args
, **kw
):
5635 return PyScrolledWindow
.DoSetClientSize(*args
, **kw
)
5636 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
5637 "Please use PyScrolledWindow.DoSetClientSize instead.")
5639 def base_DoSetVirtualSize(*args
, **kw
):
5640 return PyScrolledWindow
.DoSetVirtualSize(*args
, **kw
)
5641 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
5642 "Please use PyScrolledWindow.DoSetVirtualSize instead.")
5644 def base_DoGetSize(*args
, **kw
):
5645 return PyScrolledWindow
.DoGetSize(*args
, **kw
)
5646 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
5647 "Please use PyScrolledWindow.DoGetSize instead.")
5649 def base_DoGetClientSize(*args
, **kw
):
5650 return PyScrolledWindow
.DoGetClientSize(*args
, **kw
)
5651 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
5652 "Please use PyScrolledWindow.DoGetClientSize instead.")
5654 def base_DoGetPosition(*args
, **kw
):
5655 return PyScrolledWindow
.DoGetPosition(*args
, **kw
)
5656 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
5657 "Please use PyScrolledWindow.DoGetPosition instead.")
5659 def base_DoGetVirtualSize(*args
, **kw
):
5660 return PyScrolledWindow
.DoGetVirtualSize(*args
, **kw
)
5661 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
5662 "Please use PyScrolledWindow.DoGetVirtualSize instead.")
5664 def base_DoGetBestSize(*args
, **kw
):
5665 return PyScrolledWindow
.DoGetBestSize(*args
, **kw
)
5666 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
5667 "Please use PyScrolledWindow.DoGetBestSize instead.")
5669 def base_InitDialog(*args
, **kw
):
5670 return PyScrolledWindow
.InitDialog(*args
, **kw
)
5671 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
5672 "Please use PyScrolledWindow.InitDialog instead.")
5674 def base_TransferDataToWindow(*args
, **kw
):
5675 return PyScrolledWindow
.TransferDataToWindow(*args
, **kw
)
5676 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
5677 "Please use PyScrolledWindow.TransferDataToWindow instead.")
5679 def base_TransferDataFromWindow(*args
, **kw
):
5680 return PyScrolledWindow
.TransferDataFromWindow(*args
, **kw
)
5681 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
5682 "Please use PyScrolledWindow.TransferDataFromWindow instead.")
5684 def base_Validate(*args
, **kw
):
5685 return PyScrolledWindow
.Validate(*args
, **kw
)
5686 base_Validate
= wx
._deprecated
(base_Validate
,
5687 "Please use PyScrolledWindow.Validate instead.")
5689 def base_AcceptsFocus(*args
, **kw
):
5690 return PyScrolledWindow
.AcceptsFocus(*args
, **kw
)
5691 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
5692 "Please use PyScrolledWindow.AcceptsFocus instead.")
5694 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
5695 return PyScrolledWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
5696 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
5697 "Please use PyScrolledWindow.AcceptsFocusFromKeyboard instead.")
5699 def base_GetMaxSize(*args
, **kw
):
5700 return PyScrolledWindow
.GetMaxSize(*args
, **kw
)
5701 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
5702 "Please use PyScrolledWindow.GetMaxSize instead.")
5704 def base_AddChild(*args
, **kw
):
5705 return PyScrolledWindow
.AddChild(*args
, **kw
)
5706 base_AddChild
= wx
._deprecated
(base_AddChild
,
5707 "Please use PyScrolledWindow.AddChild instead.")
5709 def base_RemoveChild(*args
, **kw
):
5710 return PyScrolledWindow
.RemoveChild(*args
, **kw
)
5711 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
5712 "Please use PyScrolledWindow.RemoveChild instead.")
5714 def base_ShouldInheritColours(*args
, **kw
):
5715 return PyScrolledWindow
.ShouldInheritColours(*args
, **kw
)
5716 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
5717 "Please use PyScrolledWindow.ShouldInheritColours instead.")
5719 def base_GetDefaultAttributes(*args
, **kw
):
5720 return PyScrolledWindow
.GetDefaultAttributes(*args
, **kw
)
5721 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
5722 "Please use PyScrolledWindow.GetDefaultAttributes instead.")
5724 def base_OnInternalIdle(*args
, **kw
):
5725 return PyScrolledWindow
.OnInternalIdle(*args
, **kw
)
5726 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
5727 "Please use PyScrolledWindow.OnInternalIdle instead.")
5729 _controls_
.PyControl_swigregister(PyControl
)
5731 def PrePyControl(*args
, **kwargs
):
5732 """PrePyControl() -> PyControl"""
5733 val
= _controls_
.new_PrePyControl(*args
, **kwargs
)
5736 #---------------------------------------------------------------------------
5738 wxEVT_HELP
= _controls_
.wxEVT_HELP
5739 wxEVT_DETAILED_HELP
= _controls_
.wxEVT_DETAILED_HELP
5740 EVT_HELP
= wx
.PyEventBinder( wxEVT_HELP
, 1)
5741 EVT_HELP_RANGE
= wx
.PyEventBinder( wxEVT_HELP
, 2)
5742 EVT_DETAILED_HELP
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 1)
5743 EVT_DETAILED_HELP_RANGE
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 2)
5745 class HelpEvent(_core
.CommandEvent
):
5747 A help event is sent when the user has requested context-sensitive
5748 help. This can either be caused by the application requesting
5749 context-sensitive help mode via wx.ContextHelp, or (on MS Windows) by
5750 the system generating a WM_HELP message when the user pressed F1 or
5751 clicked on the query button in a dialog caption.
5753 A help event is sent to the window that the user clicked on, and is
5754 propagated up the window hierarchy until the event is processed or
5755 there are no more event handlers. The application should call
5756 event.GetId to check the identity of the clicked-on window, and then
5757 either show some suitable help or call event.Skip if the identifier is
5758 unrecognised. Calling Skip is important because it allows wxWindows to
5759 generate further events for ancestors of the clicked-on
5760 window. Otherwise it would be impossible to show help for container
5761 windows, since processing would stop after the first window found.
5763 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5764 __repr__
= _swig_repr
5765 Origin_Unknown
= _controls_
.HelpEvent_Origin_Unknown
5766 Origin_Keyboard
= _controls_
.HelpEvent_Origin_Keyboard
5767 Origin_HelpButton
= _controls_
.HelpEvent_Origin_HelpButton
5768 def __init__(self
, *args
, **kwargs
):
5770 __init__(self, EventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition,
5771 int origin=Origin_Unknown) -> HelpEvent
5773 _controls_
.HelpEvent_swiginit(self
,_controls_
.new_HelpEvent(*args
, **kwargs
))
5774 def GetPosition(*args
, **kwargs
):
5776 GetPosition(self) -> Point
5778 Returns the left-click position of the mouse, in screen
5779 coordinates. This allows the application to position the help
5782 return _controls_
.HelpEvent_GetPosition(*args
, **kwargs
)
5784 def SetPosition(*args
, **kwargs
):
5786 SetPosition(self, Point pos)
5788 Sets the left-click position of the mouse, in screen coordinates.
5790 return _controls_
.HelpEvent_SetPosition(*args
, **kwargs
)
5792 def GetLink(*args
, **kwargs
):
5794 GetLink(self) -> String
5796 Get an optional link to further help
5798 return _controls_
.HelpEvent_GetLink(*args
, **kwargs
)
5800 def SetLink(*args
, **kwargs
):
5802 SetLink(self, String link)
5804 Set an optional link to further help
5806 return _controls_
.HelpEvent_SetLink(*args
, **kwargs
)
5808 def GetTarget(*args
, **kwargs
):
5810 GetTarget(self) -> String
5812 Get an optional target to display help in. E.g. a window specification
5814 return _controls_
.HelpEvent_GetTarget(*args
, **kwargs
)
5816 def SetTarget(*args
, **kwargs
):
5818 SetTarget(self, String target)
5820 Set an optional target to display help in. E.g. a window specification
5822 return _controls_
.HelpEvent_SetTarget(*args
, **kwargs
)
5824 def GetOrigin(*args
, **kwargs
):
5826 GetOrigin(self) -> int
5828 Optiononal indication of the source of the event.
5830 return _controls_
.HelpEvent_GetOrigin(*args
, **kwargs
)
5832 def SetOrigin(*args
, **kwargs
):
5833 """SetOrigin(self, int origin)"""
5834 return _controls_
.HelpEvent_SetOrigin(*args
, **kwargs
)
5836 _controls_
.HelpEvent_swigregister(HelpEvent
)
5838 class ContextHelp(_core
.Object
):
5840 This class changes the cursor to a query and puts the application into
5841 a 'context-sensitive help mode'. When the user left-clicks on a window
5842 within the specified window, a ``EVT_HELP`` event is sent to that
5843 control, and the application may respond to it by popping up some
5846 There are a couple of ways to invoke this behaviour implicitly:
5848 * Use the wx.WS_EX_CONTEXTHELP extended style for a dialog or frame
5849 (Windows only). This will put a question mark in the titlebar,
5850 and Windows will put the application into context-sensitive help
5851 mode automatically, with further programming.
5853 * Create a `wx.ContextHelpButton`, whose predefined behaviour is
5854 to create a context help object. Normally you will write your
5855 application so that this button is only added to a dialog for
5856 non-Windows platforms (use ``wx.WS_EX_CONTEXTHELP`` on
5859 :see: `wx.ContextHelpButton`
5862 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5863 __repr__
= _swig_repr
5864 def __init__(self
, *args
, **kwargs
):
5866 __init__(self, Window window=None, bool doNow=True) -> ContextHelp
5868 Constructs a context help object, calling BeginContextHelp if doNow is
5871 If window is None, the top window is used.
5873 _controls_
.ContextHelp_swiginit(self
,_controls_
.new_ContextHelp(*args
, **kwargs
))
5874 __swig_destroy__
= _controls_
.delete_ContextHelp
5875 __del__
= lambda self
: None;
5876 def BeginContextHelp(*args
, **kwargs
):
5878 BeginContextHelp(self, Window window=None) -> bool
5880 Puts the application into context-sensitive help mode. window is the
5881 window which will be used to catch events; if NULL, the top window
5884 Returns true if the application was successfully put into
5885 context-sensitive help mode. This function only returns when the event
5888 return _controls_
.ContextHelp_BeginContextHelp(*args
, **kwargs
)
5890 def EndContextHelp(*args
, **kwargs
):
5892 EndContextHelp(self) -> bool
5894 Ends context-sensitive help mode. Not normally called by the
5897 return _controls_
.ContextHelp_EndContextHelp(*args
, **kwargs
)
5899 _controls_
.ContextHelp_swigregister(ContextHelp
)
5901 class ContextHelpButton(BitmapButton
):
5903 Instances of this class may be used to add a question mark button that
5904 when pressed, puts the application into context-help mode. It does
5905 this by creating a wx.ContextHelp object which itself generates a
5906 ``EVT_HELP`` event when the user clicks on a window.
5908 On Windows, you may add a question-mark icon to a dialog by use of the
5909 ``wx.DIALOG_EX_CONTEXTHELP`` extra style, but on other platforms you
5910 will have to add a button explicitly, usually next to OK, Cancel or
5913 :see: `wx.ContextHelp`, `wx.ContextHelpButton`
5916 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5917 __repr__
= _swig_repr
5918 def __init__(self
, *args
, **kwargs
):
5920 __init__(self, Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
5921 Size size=DefaultSize, long style=BU_AUTODRAW) -> ContextHelpButton
5923 Constructor, creating and showing a context help button.
5925 _controls_
.ContextHelpButton_swiginit(self
,_controls_
.new_ContextHelpButton(*args
, **kwargs
))
5926 self
._setOORInfo
(self
)
5928 _controls_
.ContextHelpButton_swigregister(ContextHelpButton
)
5930 class HelpProvider(object):
5932 wx.HelpProvider is an abstract class used by a program
5933 implementing context-sensitive help to show the help text for the
5936 The current help provider must be explicitly set by the
5937 application using wx.HelpProvider.Set().
5939 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5940 def __init__(self
): raise AttributeError, "No constructor defined"
5941 __repr__
= _swig_repr
5942 __swig_destroy__
= _controls_
.delete_HelpProvider
5943 __del__
= lambda self
: None;
5944 def Set(*args
, **kwargs
):
5946 Set(HelpProvider helpProvider) -> HelpProvider
5948 Sset the current, application-wide help provider. Returns the previous
5949 one. Unlike some other classes, the help provider is not created on
5950 demand. This must be explicitly done by the application.
5952 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5954 Set
= staticmethod(Set
)
5955 def Get(*args
, **kwargs
):
5957 Get() -> HelpProvider
5959 Return the current application-wide help provider.
5961 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
5963 Get
= staticmethod(Get
)
5964 def GetHelp(*args
, **kwargs
):
5966 GetHelp(self, Window window) -> String
5968 Gets the help string for this window. Its interpretation is dependent
5969 on the help provider except that empty string always means that no
5970 help is associated with the window.
5972 return _controls_
.HelpProvider_GetHelp(*args
, **kwargs
)
5974 def ShowHelp(*args
, **kwargs
):
5976 ShowHelp(self, Window window) -> bool
5978 Shows help for the given window. Uses GetHelp internally if
5979 applicable. Returns True if it was done, or False if no help was
5980 available for this window.
5982 return _controls_
.HelpProvider_ShowHelp(*args
, **kwargs
)
5984 def ShowHelpAtPoint(*args
, **kwargs
):
5986 ShowHelpAtPoint(self, wxWindowBase window, Point pt, int origin) -> bool
5988 Show help for the given window (uses window.GetHelpAtPoint()
5989 internally if applicable), return true if it was done or false if no
5990 help available for this window.
5992 return _controls_
.HelpProvider_ShowHelpAtPoint(*args
, **kwargs
)
5994 def AddHelp(*args
, **kwargs
):
5996 AddHelp(self, Window window, String text)
5998 Associates the text with the given window.
6000 return _controls_
.HelpProvider_AddHelp(*args
, **kwargs
)
6002 def AddHelpById(*args
, **kwargs
):
6004 AddHelpById(self, int id, String text)
6006 This version associates the given text with all windows with this
6007 id. May be used to set the same help string for all Cancel buttons in
6008 the application, for example.
6010 return _controls_
.HelpProvider_AddHelpById(*args
, **kwargs
)
6012 def RemoveHelp(*args
, **kwargs
):
6014 RemoveHelp(self, Window window)
6016 Removes the association between the window pointer and the help
6017 text. This is called by the wx.Window destructor. Without this, the
6018 table of help strings will fill up and when window pointers are
6019 reused, the wrong help string will be found.
6021 return _controls_
.HelpProvider_RemoveHelp(*args
, **kwargs
)
6023 def Destroy(*args
, **kwargs
):
6025 val
= _controls_
.HelpProvider_Destroy(*args
, **kwargs
)
6029 _controls_
.HelpProvider_swigregister(HelpProvider
)
6031 def HelpProvider_Set(*args
, **kwargs
):
6033 HelpProvider_Set(HelpProvider helpProvider) -> HelpProvider
6035 Sset the current, application-wide help provider. Returns the previous
6036 one. Unlike some other classes, the help provider is not created on
6037 demand. This must be explicitly done by the application.
6039 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
6041 def HelpProvider_Get(*args
):
6043 HelpProvider_Get() -> HelpProvider
6045 Return the current application-wide help provider.
6047 return _controls_
.HelpProvider_Get(*args
)
6049 class SimpleHelpProvider(HelpProvider
):
6051 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6052 supports only plain text help strings, and shows the string associated
6053 with the control (if any) in a tooltip.
6055 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6056 __repr__
= _swig_repr
6057 def __init__(self
, *args
, **kwargs
):
6059 __init__(self) -> SimpleHelpProvider
6061 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6062 supports only plain text help strings, and shows the string associated
6063 with the control (if any) in a tooltip.
6065 _controls_
.SimpleHelpProvider_swiginit(self
,_controls_
.new_SimpleHelpProvider(*args
, **kwargs
))
6066 _controls_
.SimpleHelpProvider_swigregister(SimpleHelpProvider
)
6068 #---------------------------------------------------------------------------
6070 class DragImage(_core
.Object
):
6071 """Proxy of C++ DragImage class"""
6072 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6073 __repr__
= _swig_repr
6074 def __init__(self
, *args
, **kwargs
):
6075 """__init__(self, Bitmap image, Cursor cursor=wxNullCursor) -> DragImage"""
6076 _controls_
.DragImage_swiginit(self
,_controls_
.new_DragImage(*args
, **kwargs
))
6077 __swig_destroy__
= _controls_
.delete_DragImage
6078 __del__
= lambda self
: None;
6079 def SetBackingBitmap(*args
, **kwargs
):
6080 """SetBackingBitmap(self, Bitmap bitmap)"""
6081 return _controls_
.DragImage_SetBackingBitmap(*args
, **kwargs
)
6083 def BeginDrag(*args
, **kwargs
):
6085 BeginDrag(self, Point hotspot, Window window, bool fullScreen=False,
6086 Rect rect=None) -> bool
6088 return _controls_
.DragImage_BeginDrag(*args
, **kwargs
)
6090 def BeginDragBounded(*args
, **kwargs
):
6091 """BeginDragBounded(self, Point hotspot, Window window, Window boundingWindow) -> bool"""
6092 return _controls_
.DragImage_BeginDragBounded(*args
, **kwargs
)
6094 def EndDrag(*args
, **kwargs
):
6095 """EndDrag(self) -> bool"""
6096 return _controls_
.DragImage_EndDrag(*args
, **kwargs
)
6098 def Move(*args
, **kwargs
):
6099 """Move(self, Point pt) -> bool"""
6100 return _controls_
.DragImage_Move(*args
, **kwargs
)
6102 def Show(*args
, **kwargs
):
6103 """Show(self) -> bool"""
6104 return _controls_
.DragImage_Show(*args
, **kwargs
)
6106 def Hide(*args
, **kwargs
):
6107 """Hide(self) -> bool"""
6108 return _controls_
.DragImage_Hide(*args
, **kwargs
)
6110 def GetImageRect(*args
, **kwargs
):
6111 """GetImageRect(self, Point pos) -> Rect"""
6112 return _controls_
.DragImage_GetImageRect(*args
, **kwargs
)
6114 def DoDrawImage(*args
, **kwargs
):
6115 """DoDrawImage(self, DC dc, Point pos) -> bool"""
6116 return _controls_
.DragImage_DoDrawImage(*args
, **kwargs
)
6118 def UpdateBackingFromWindow(*args
, **kwargs
):
6119 """UpdateBackingFromWindow(self, DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -> bool"""
6120 return _controls_
.DragImage_UpdateBackingFromWindow(*args
, **kwargs
)
6122 def RedrawImage(*args
, **kwargs
):
6123 """RedrawImage(self, Point oldPos, Point newPos, bool eraseOld, bool drawNew) -> bool"""
6124 return _controls_
.DragImage_RedrawImage(*args
, **kwargs
)
6126 ImageRect
= property(GetImageRect
,doc
="See `GetImageRect`")
6127 _controls_
.DragImage_swigregister(DragImage
)
6129 def DragIcon(*args
, **kwargs
):
6130 """DragIcon(Icon image, Cursor cursor=wxNullCursor) -> DragImage"""
6131 val
= _controls_
.new_DragIcon(*args
, **kwargs
)
6134 def DragString(*args
, **kwargs
):
6135 """DragString(String str, Cursor cursor=wxNullCursor) -> DragImage"""
6136 val
= _controls_
.new_DragString(*args
, **kwargs
)
6139 def DragTreeItem(*args
, **kwargs
):
6140 """DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -> DragImage"""
6141 val
= _controls_
.new_DragTreeItem(*args
, **kwargs
)
6144 def DragListItem(*args
, **kwargs
):
6145 """DragListItem(ListCtrl listCtrl, long id) -> DragImage"""
6146 val
= _controls_
.new_DragListItem(*args
, **kwargs
)
6149 #---------------------------------------------------------------------------
6151 DP_DEFAULT
= _controls_
.DP_DEFAULT
6152 DP_SPIN
= _controls_
.DP_SPIN
6153 DP_DROPDOWN
= _controls_
.DP_DROPDOWN
6154 DP_SHOWCENTURY
= _controls_
.DP_SHOWCENTURY
6155 DP_ALLOWNONE
= _controls_
.DP_ALLOWNONE
6156 class DatePickerCtrl(_core
.Control
):
6158 This control allows the user to select a date. Unlike
6159 `wx.calendar.CalendarCtrl`, which is a relatively big control,
6160 `wx.DatePickerCtrl` is implemented as a small window showing the
6161 currently selected date. The control can be edited using the keyboard,
6162 and can also display a popup window for more user-friendly date
6163 selection, depending on the styles used and the platform.
6165 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6166 __repr__
= _swig_repr
6167 def __init__(self
, *args
, **kwargs
):
6169 __init__(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6170 Point pos=DefaultPosition, Size size=DefaultSize,
6171 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6172 Validator validator=DefaultValidator,
6173 String name=DatePickerCtrlNameStr) -> DatePickerCtrl
6175 Create a new DatePickerCtrl.
6177 _controls_
.DatePickerCtrl_swiginit(self
,_controls_
.new_DatePickerCtrl(*args
, **kwargs
))
6178 self
._setOORInfo
(self
)
6180 def Create(*args
, **kwargs
):
6182 Create(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6183 Point pos=DefaultPosition, Size size=DefaultSize,
6184 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6185 Validator validator=DefaultValidator,
6186 String name=DatePickerCtrlNameStr) -> bool
6188 Create the GUI parts of the DatePickerCtrl, for use in 2-phase
6191 return _controls_
.DatePickerCtrl_Create(*args
, **kwargs
)
6193 def SetValue(*args
, **kwargs
):
6195 SetValue(self, DateTime dt)
6197 Changes the current value of the control. The date should be valid and
6198 included in the currently selected range, if any.
6200 Calling this method does not result in a date change event.
6202 return _controls_
.DatePickerCtrl_SetValue(*args
, **kwargs
)
6204 def GetValue(*args
, **kwargs
):
6206 GetValue(self) -> DateTime
6208 Returns the currently selected date. If there is no selection or the
6209 selection is outside of the current range, an invalid `wx.DateTime`
6212 return _controls_
.DatePickerCtrl_GetValue(*args
, **kwargs
)
6214 def SetRange(*args
, **kwargs
):
6216 SetRange(self, DateTime dt1, DateTime dt2)
6218 Sets the valid range for the date selection. If dt1 is valid, it
6219 becomes the earliest date (inclusive) accepted by the control. If dt2
6220 is valid, it becomes the latest possible date.
6222 If the current value of the control is outside of the newly set range
6223 bounds, the behaviour is undefined.
6225 return _controls_
.DatePickerCtrl_SetRange(*args
, **kwargs
)
6227 def GetLowerLimit(*args
, **kwargs
):
6229 GetLowerLimit(self) -> DateTime
6231 Get the lower limit of the valid range for the date selection, if any.
6232 If there is no range or there is no lower limit, then the
6233 `wx.DateTime` value returned will be invalid.
6235 return _controls_
.DatePickerCtrl_GetLowerLimit(*args
, **kwargs
)
6237 def GetUpperLimit(*args
, **kwargs
):
6239 GetUpperLimit(self) -> DateTime
6241 Get the upper limit of the valid range for the date selection, if any.
6242 If there is no range or there is no upper limit, then the
6243 `wx.DateTime` value returned will be invalid.
6245 return _controls_
.DatePickerCtrl_GetUpperLimit(*args
, **kwargs
)
6247 LowerLimit
= property(GetLowerLimit
,doc
="See `GetLowerLimit`")
6248 UpperLimit
= property(GetUpperLimit
,doc
="See `GetUpperLimit`")
6249 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
6250 _controls_
.DatePickerCtrl_swigregister(DatePickerCtrl
)
6251 DatePickerCtrlNameStr
= cvar
.DatePickerCtrlNameStr
6253 def PreDatePickerCtrl(*args
, **kwargs
):
6255 PreDatePickerCtrl() -> DatePickerCtrl
6257 Precreate a DatePickerCtrl for use in 2-phase creation.
6259 val
= _controls_
.new_PreDatePickerCtrl(*args
, **kwargs
)
6262 HL_CONTEXTMENU
= _controls_
.HL_CONTEXTMENU
6263 HL_DEFAULT_STYLE
= _controls_
.HL_DEFAULT_STYLE
6264 #---------------------------------------------------------------------------
6266 class HyperlinkCtrl(_core
.Control
):
6268 A static text control that emulates a hyperlink. The link is displayed
6269 in an appropriate text style, derived from the control's normal font.
6270 When the mouse rolls over the link, the cursor changes to a hand and
6271 the link's color changes to the active color.
6273 Clicking on the link does not launch a web browser; instead, a
6274 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6278 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6279 __repr__
= _swig_repr
6280 def __init__(self
, *args
, **kwargs
):
6282 __init__(self, Window parent, int id, String label, String url, Point pos=DefaultPosition,
6283 Size size=DefaultSize,
6284 long style=HL_DEFAULT_STYLE, String name=HyperlinkCtrlNameStr) -> HyperlinkCtrl
6286 A static text control that emulates a hyperlink. The link is displayed
6287 in an appropriate text style, derived from the control's normal font.
6288 When the mouse rolls over the link, the cursor changes to a hand and
6289 the link's color changes to the active color.
6291 Clicking on the link does not launch a web browser; instead, a
6292 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6296 _controls_
.HyperlinkCtrl_swiginit(self
,_controls_
.new_HyperlinkCtrl(*args
, **kwargs
))
6297 self
._setOORInfo
(self
)
6299 def Create(*args
, **kwargs
):
6301 Create(self, Window parent, int id, String label, String url, Point pos=DefaultPosition,
6302 Size size=DefaultSize,
6303 long style=HL_DEFAULT_STYLE, String name=HyperlinkCtrlNameStr) -> bool
6305 return _controls_
.HyperlinkCtrl_Create(*args
, **kwargs
)
6307 def GetHoverColour(*args
, **kwargs
):
6308 """GetHoverColour(self) -> Colour"""
6309 return _controls_
.HyperlinkCtrl_GetHoverColour(*args
, **kwargs
)
6311 def SetHoverColour(*args
, **kwargs
):
6312 """SetHoverColour(self, Colour colour)"""
6313 return _controls_
.HyperlinkCtrl_SetHoverColour(*args
, **kwargs
)
6315 def GetNormalColour(*args
, **kwargs
):
6316 """GetNormalColour(self) -> Colour"""
6317 return _controls_
.HyperlinkCtrl_GetNormalColour(*args
, **kwargs
)
6319 def SetNormalColour(*args
, **kwargs
):
6320 """SetNormalColour(self, Colour colour)"""
6321 return _controls_
.HyperlinkCtrl_SetNormalColour(*args
, **kwargs
)
6323 def GetVisitedColour(*args
, **kwargs
):
6324 """GetVisitedColour(self) -> Colour"""
6325 return _controls_
.HyperlinkCtrl_GetVisitedColour(*args
, **kwargs
)
6327 def SetVisitedColour(*args
, **kwargs
):
6328 """SetVisitedColour(self, Colour colour)"""
6329 return _controls_
.HyperlinkCtrl_SetVisitedColour(*args
, **kwargs
)
6331 def GetURL(*args
, **kwargs
):
6332 """GetURL(self) -> String"""
6333 return _controls_
.HyperlinkCtrl_GetURL(*args
, **kwargs
)
6335 def SetURL(*args
, **kwargs
):
6336 """SetURL(self, String url)"""
6337 return _controls_
.HyperlinkCtrl_SetURL(*args
, **kwargs
)
6339 def SetVisited(*args
, **kwargs
):
6340 """SetVisited(self, bool visited=True)"""
6341 return _controls_
.HyperlinkCtrl_SetVisited(*args
, **kwargs
)
6343 def GetVisited(*args
, **kwargs
):
6344 """GetVisited(self) -> bool"""
6345 return _controls_
.HyperlinkCtrl_GetVisited(*args
, **kwargs
)
6347 _controls_
.HyperlinkCtrl_swigregister(HyperlinkCtrl
)
6348 HyperlinkCtrlNameStr
= cvar
.HyperlinkCtrlNameStr
6350 def PreHyperlinkCtrl(*args
, **kwargs
):
6352 PreHyperlinkCtrl() -> HyperlinkCtrl
6354 A static text control that emulates a hyperlink. The link is displayed
6355 in an appropriate text style, derived from the control's normal font.
6356 When the mouse rolls over the link, the cursor changes to a hand and
6357 the link's color changes to the active color.
6359 Clicking on the link does not launch a web browser; instead, a
6360 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6364 val
= _controls_
.new_PreHyperlinkCtrl(*args
, **kwargs
)
6367 wxEVT_COMMAND_HYPERLINK
= _controls_
.wxEVT_COMMAND_HYPERLINK
6368 class HyperlinkEvent(_core
.CommandEvent
):
6369 """Proxy of C++ HyperlinkEvent class"""
6370 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6371 __repr__
= _swig_repr
6372 def __init__(self
, *args
, **kwargs
):
6373 """__init__(self, Object generator, int id, String url) -> HyperlinkEvent"""
6374 _controls_
.HyperlinkEvent_swiginit(self
,_controls_
.new_HyperlinkEvent(*args
, **kwargs
))
6375 def GetURL(*args
, **kwargs
):
6376 """GetURL(self) -> String"""
6377 return _controls_
.HyperlinkEvent_GetURL(*args
, **kwargs
)
6379 def SetURL(*args
, **kwargs
):
6380 """SetURL(self, String url)"""
6381 return _controls_
.HyperlinkEvent_SetURL(*args
, **kwargs
)
6383 _controls_
.HyperlinkEvent_swigregister(HyperlinkEvent
)
6385 EVT_HYPERLINK
= wx
.PyEventBinder( wxEVT_COMMAND_HYPERLINK
, 1 )
6387 #---------------------------------------------------------------------------
6389 PB_USE_TEXTCTRL
= _controls_
.PB_USE_TEXTCTRL
6390 class PickerBase(_core
.Control
):
6392 Base abstract class for all pickers which support an auxiliary text
6393 control. This class handles all positioning and sizing of the text
6394 control like a an horizontal `wx.BoxSizer` would do, with the text
6395 control on the left of the picker button and the proportion of the
6396 picker fixed to value 1.
6398 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6399 def __init__(self
): raise AttributeError, "No constructor defined"
6400 __repr__
= _swig_repr
6401 def CreateBase(*args
, **kwargs
):
6403 CreateBase(self, Window parent, int id, String text=wxEmptyString, Point pos=DefaultPosition,
6404 Size size=DefaultSize,
6405 long style=0, Validator validator=DefaultValidator,
6406 String name=wxButtonNameStr) -> bool
6408 return _controls_
.PickerBase_CreateBase(*args
, **kwargs
)
6410 def SetInternalMargin(*args
, **kwargs
):
6412 SetInternalMargin(self, int newmargin)
6414 Sets the margin (in pixels) between the picker and the text control.
6416 return _controls_
.PickerBase_SetInternalMargin(*args
, **kwargs
)
6418 def GetInternalMargin(*args
, **kwargs
):
6420 GetInternalMargin(self) -> int
6422 Returns the margin (in pixels) between the picker and the text
6425 return _controls_
.PickerBase_GetInternalMargin(*args
, **kwargs
)
6427 def SetTextCtrlProportion(*args
, **kwargs
):
6429 SetTextCtrlProportion(self, int prop)
6431 Sets the proportion between the text control and the picker button.
6432 This is used to set relative sizes of the text contorl and the picker.
6433 The value passed to this function must be >= 1.
6435 return _controls_
.PickerBase_SetTextCtrlProportion(*args
, **kwargs
)
6437 def GetTextCtrlProportion(*args
, **kwargs
):
6439 GetTextCtrlProportion(self) -> int
6441 Returns the proportion between the text control and the picker.
6443 return _controls_
.PickerBase_GetTextCtrlProportion(*args
, **kwargs
)
6445 def SetPickerCtrlProportion(*args
, **kwargs
):
6447 SetPickerCtrlProportion(self, int prop)
6449 Sets the proportion value of the picker.
6451 return _controls_
.PickerBase_SetPickerCtrlProportion(*args
, **kwargs
)
6453 def GetPickerCtrlProportion(*args
, **kwargs
):
6455 GetPickerCtrlProportion(self) -> int
6457 Gets the proportion value of the picker.
6459 return _controls_
.PickerBase_GetPickerCtrlProportion(*args
, **kwargs
)
6461 def IsTextCtrlGrowable(*args
, **kwargs
):
6462 """IsTextCtrlGrowable(self) -> bool"""
6463 return _controls_
.PickerBase_IsTextCtrlGrowable(*args
, **kwargs
)
6465 def SetTextCtrlGrowable(*args
, **kwargs
):
6466 """SetTextCtrlGrowable(self, bool grow=True)"""
6467 return _controls_
.PickerBase_SetTextCtrlGrowable(*args
, **kwargs
)
6469 def IsPickerCtrlGrowable(*args
, **kwargs
):
6470 """IsPickerCtrlGrowable(self) -> bool"""
6471 return _controls_
.PickerBase_IsPickerCtrlGrowable(*args
, **kwargs
)
6473 def SetPickerCtrlGrowable(*args
, **kwargs
):
6474 """SetPickerCtrlGrowable(self, bool grow=True)"""
6475 return _controls_
.PickerBase_SetPickerCtrlGrowable(*args
, **kwargs
)
6477 def HasTextCtrl(*args
, **kwargs
):
6479 HasTextCtrl(self) -> bool
6481 Returns true if this class has a valid text control (i.e. if the
6482 wx.PB_USE_TEXTCTRL style was given when creating this control).
6484 return _controls_
.PickerBase_HasTextCtrl(*args
, **kwargs
)
6486 def GetTextCtrl(*args
, **kwargs
):
6488 GetTextCtrl(self) -> TextCtrl
6490 Returns a pointer to the text control handled by this class or None if
6491 the wx.PB_USE_TEXTCTRL style was not specified when this control was
6494 Very important: the contents of the text control could be containing
6495 an invalid representation of the entity which can be chosen through
6496 the picker (e.g. the user entered an invalid colour syntax because of
6497 a typo). Thus you should never parse the content of the textctrl to
6498 get the user's input; rather use the derived-class getter
6499 (e.g. `wx.ColourPickerCtrl.GetColour`, `wx.FilePickerCtrl.GetPath`,
6502 return _controls_
.PickerBase_GetTextCtrl(*args
, **kwargs
)
6504 def GetPickerCtrl(*args
, **kwargs
):
6505 """GetPickerCtrl(self) -> Control"""
6506 return _controls_
.PickerBase_GetPickerCtrl(*args
, **kwargs
)
6508 _controls_
.PickerBase_swigregister(PickerBase
)
6510 #---------------------------------------------------------------------------
6512 CLRP_SHOW_LABEL
= _controls_
.CLRP_SHOW_LABEL
6513 CLRP_USE_TEXTCTRL
= _controls_
.CLRP_USE_TEXTCTRL
6514 CLRP_DEFAULT_STYLE
= _controls_
.CLRP_DEFAULT_STYLE
6515 class ColourPickerCtrl(PickerBase
):
6517 This control allows the user to select a colour. The generic
6518 implementation is a button which brings up a `wx.ColourDialog` when
6519 clicked. Native implementations may differ but this is usually a
6520 (small) widget which give access to the colour-chooser dialog.
6522 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6523 __repr__
= _swig_repr
6524 def __init__(self
, *args
, **kwargs
):
6526 __init__(self, Window parent, int id=-1, Colour col=*wxBLACK, Point pos=DefaultPosition,
6527 Size size=DefaultSize,
6528 long style=CLRP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6529 String name=ColourPickerCtrlNameStr) -> ColourPickerCtrl
6531 This control allows the user to select a colour. The generic
6532 implementation is a button which brings up a `wx.ColourDialog` when
6533 clicked. Native implementations may differ but this is usually a
6534 (small) widget which give access to the colour-chooser dialog.
6536 _controls_
.ColourPickerCtrl_swiginit(self
,_controls_
.new_ColourPickerCtrl(*args
, **kwargs
))
6537 self
._setOORInfo
(self
)
6539 def Create(*args
, **kwargs
):
6541 Create(self, Window parent, int id, Colour col=*wxBLACK, Point pos=DefaultPosition,
6542 Size size=DefaultSize, long style=CLRP_DEFAULT_STYLE,
6543 Validator validator=DefaultValidator,
6544 String name=ColourPickerCtrlNameStr) -> bool
6546 return _controls_
.ColourPickerCtrl_Create(*args
, **kwargs
)
6548 def GetColour(*args
, **kwargs
):
6550 GetColour(self) -> Colour
6552 Returns the currently selected colour.
6554 return _controls_
.ColourPickerCtrl_GetColour(*args
, **kwargs
)
6556 def SetColour(*args
, **kwargs
):
6558 SetColour(self, Colour col)
6560 Set the displayed colour.
6562 return _controls_
.ColourPickerCtrl_SetColour(*args
, **kwargs
)
6564 Colour
= property(GetColour
,SetColour
,doc
="See `GetColour` and `SetColour`")
6565 _controls_
.ColourPickerCtrl_swigregister(ColourPickerCtrl
)
6566 ColourPickerCtrlNameStr
= cvar
.ColourPickerCtrlNameStr
6568 def PreColourPickerCtrl(*args
, **kwargs
):
6570 PreColourPickerCtrl() -> ColourPickerCtrl
6572 This control allows the user to select a colour. The generic
6573 implementation is a button which brings up a `wx.ColourDialog` when
6574 clicked. Native implementations may differ but this is usually a
6575 (small) widget which give access to the colour-chooser dialog.
6577 val
= _controls_
.new_PreColourPickerCtrl(*args
, **kwargs
)
6580 wxEVT_COMMAND_COLOURPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_COLOURPICKER_CHANGED
6581 EVT_COLOURPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_COLOURPICKER_CHANGED
, 1 )
6583 class ColourPickerEvent(_core
.CommandEvent
):
6584 """Proxy of C++ ColourPickerEvent class"""
6585 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6586 __repr__
= _swig_repr
6587 def __init__(self
, *args
, **kwargs
):
6588 """__init__(self, Object generator, int id, Colour col) -> ColourPickerEvent"""
6589 _controls_
.ColourPickerEvent_swiginit(self
,_controls_
.new_ColourPickerEvent(*args
, **kwargs
))
6590 def GetColour(*args
, **kwargs
):
6591 """GetColour(self) -> Colour"""
6592 return _controls_
.ColourPickerEvent_GetColour(*args
, **kwargs
)
6594 def SetColour(*args
, **kwargs
):
6595 """SetColour(self, Colour c)"""
6596 return _controls_
.ColourPickerEvent_SetColour(*args
, **kwargs
)
6598 Colour
= property(GetColour
,SetColour
,doc
="See `GetColour` and `SetColour`")
6599 _controls_
.ColourPickerEvent_swigregister(ColourPickerEvent
)
6601 #---------------------------------------------------------------------------
6603 FLP_OPEN
= _controls_
.FLP_OPEN
6604 FLP_SAVE
= _controls_
.FLP_SAVE
6605 FLP_OVERWRITE_PROMPT
= _controls_
.FLP_OVERWRITE_PROMPT
6606 FLP_FILE_MUST_EXIST
= _controls_
.FLP_FILE_MUST_EXIST
6607 FLP_CHANGE_DIR
= _controls_
.FLP_CHANGE_DIR
6608 DIRP_DIR_MUST_EXIST
= _controls_
.DIRP_DIR_MUST_EXIST
6609 DIRP_CHANGE_DIR
= _controls_
.DIRP_CHANGE_DIR
6610 FLP_USE_TEXTCTRL
= _controls_
.FLP_USE_TEXTCTRL
6611 FLP_DEFAULT_STYLE
= _controls_
.FLP_DEFAULT_STYLE
6612 DIRP_USE_TEXTCTRL
= _controls_
.DIRP_USE_TEXTCTRL
6613 DIRP_DEFAULT_STYLE
= _controls_
.DIRP_DEFAULT_STYLE
6614 class FilePickerCtrl(PickerBase
):
6615 """Proxy of C++ FilePickerCtrl class"""
6616 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6617 __repr__
= _swig_repr
6618 def __init__(self
, *args
, **kwargs
):
6620 __init__(self, Window parent, int id=-1, String path=EmptyString,
6621 String message=FileSelectorPromptStr, String wildcard=FileSelectorDefaultWildcardStr,
6622 Point pos=DefaultPosition,
6623 Size size=DefaultSize,
6624 long style=FLP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6625 String name=FilePickerCtrlNameStr) -> FilePickerCtrl
6627 _controls_
.FilePickerCtrl_swiginit(self
,_controls_
.new_FilePickerCtrl(*args
, **kwargs
))
6628 self
._setOORInfo
(self
)
6630 def Create(*args
, **kwargs
):
6632 Create(self, Window parent, int id=-1, String path=EmptyString,
6633 String message=FileSelectorPromptStr, String wildcard=FileSelectorDefaultWildcardStr,
6634 Point pos=DefaultPosition,
6635 Size size=DefaultSize,
6636 long style=FLP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6637 String name=FilePickerCtrlNameStr) -> bool
6639 return _controls_
.FilePickerCtrl_Create(*args
, **kwargs
)
6641 def GetPath(*args
, **kwargs
):
6642 """GetPath(self) -> String"""
6643 return _controls_
.FilePickerCtrl_GetPath(*args
, **kwargs
)
6645 def SetPath(*args
, **kwargs
):
6646 """SetPath(self, String str)"""
6647 return _controls_
.FilePickerCtrl_SetPath(*args
, **kwargs
)
6649 def CheckPath(*args
, **kwargs
):
6650 """CheckPath(self, String path) -> bool"""
6651 return _controls_
.FilePickerCtrl_CheckPath(*args
, **kwargs
)
6653 def GetTextCtrlValue(*args
, **kwargs
):
6654 """GetTextCtrlValue(self) -> String"""
6655 return _controls_
.FilePickerCtrl_GetTextCtrlValue(*args
, **kwargs
)
6657 _controls_
.FilePickerCtrl_swigregister(FilePickerCtrl
)
6658 FilePickerCtrlNameStr
= cvar
.FilePickerCtrlNameStr
6659 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
6660 DirPickerCtrlNameStr
= cvar
.DirPickerCtrlNameStr
6661 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
6662 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
6664 def PreFilePickerCtrl(*args
, **kwargs
):
6665 """PreFilePickerCtrl() -> FilePickerCtrl"""
6666 val
= _controls_
.new_PreFilePickerCtrl(*args
, **kwargs
)
6669 class DirPickerCtrl(PickerBase
):
6670 """Proxy of C++ DirPickerCtrl class"""
6671 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6672 __repr__
= _swig_repr
6673 def __init__(self
, *args
, **kwargs
):
6675 __init__(self, Window parent, int id=-1, String path=EmptyString,
6676 String message=DirSelectorPromptStr, Point pos=DefaultPosition,
6677 Size size=DefaultSize, long style=DIRP_DEFAULT_STYLE,
6678 Validator validator=DefaultValidator,
6679 String name=DirPickerCtrlNameStr) -> DirPickerCtrl
6681 _controls_
.DirPickerCtrl_swiginit(self
,_controls_
.new_DirPickerCtrl(*args
, **kwargs
))
6682 self
._setOORInfo
(self
)
6684 def Create(*args
, **kwargs
):
6686 Create(self, Window parent, int id=-1, String path=EmptyString,
6687 String message=DirSelectorPromptStr, Point pos=DefaultPosition,
6688 Size size=DefaultSize, long style=DIRP_DEFAULT_STYLE,
6689 Validator validator=DefaultValidator,
6690 String name=DirPickerCtrlNameStr) -> bool
6692 return _controls_
.DirPickerCtrl_Create(*args
, **kwargs
)
6694 def GetPath(*args
, **kwargs
):
6695 """GetPath(self) -> String"""
6696 return _controls_
.DirPickerCtrl_GetPath(*args
, **kwargs
)
6698 def SetPath(*args
, **kwargs
):
6699 """SetPath(self, String str)"""
6700 return _controls_
.DirPickerCtrl_SetPath(*args
, **kwargs
)
6702 def CheckPath(*args
, **kwargs
):
6703 """CheckPath(self, String path) -> bool"""
6704 return _controls_
.DirPickerCtrl_CheckPath(*args
, **kwargs
)
6706 def GetTextCtrlValue(*args
, **kwargs
):
6707 """GetTextCtrlValue(self) -> String"""
6708 return _controls_
.DirPickerCtrl_GetTextCtrlValue(*args
, **kwargs
)
6710 Path
= property(GetPath
,SetPath
,doc
="See `GetPath` and `SetPath`")
6711 TextCtrlValue
= property(GetTextCtrlValue
,doc
="See `GetTextCtrlValue`")
6712 _controls_
.DirPickerCtrl_swigregister(DirPickerCtrl
)
6714 def PreDirPickerCtrl(*args
, **kwargs
):
6715 """PreDirPickerCtrl() -> DirPickerCtrl"""
6716 val
= _controls_
.new_PreDirPickerCtrl(*args
, **kwargs
)
6719 wxEVT_COMMAND_FILEPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_FILEPICKER_CHANGED
6720 wxEVT_COMMAND_DIRPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_DIRPICKER_CHANGED
6721 EVT_FILEPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_FILEPICKER_CHANGED
, 1 )
6722 EVT_DIRPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_DIRPICKER_CHANGED
, 1 )
6724 class FileDirPickerEvent(_core
.CommandEvent
):
6725 """Proxy of C++ FileDirPickerEvent class"""
6726 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6727 __repr__
= _swig_repr
6728 def __init__(self
, *args
, **kwargs
):
6729 """__init__(self, EventType type, Object generator, int id, String path) -> FileDirPickerEvent"""
6730 _controls_
.FileDirPickerEvent_swiginit(self
,_controls_
.new_FileDirPickerEvent(*args
, **kwargs
))
6731 def GetPath(*args
, **kwargs
):
6732 """GetPath(self) -> String"""
6733 return _controls_
.FileDirPickerEvent_GetPath(*args
, **kwargs
)
6735 def SetPath(*args
, **kwargs
):
6736 """SetPath(self, String p)"""
6737 return _controls_
.FileDirPickerEvent_SetPath(*args
, **kwargs
)
6739 _controls_
.FileDirPickerEvent_swigregister(FileDirPickerEvent
)
6741 #---------------------------------------------------------------------------
6743 FNTP_FONTDESC_AS_LABEL
= _controls_
.FNTP_FONTDESC_AS_LABEL
6744 FNTP_USEFONT_FOR_LABEL
= _controls_
.FNTP_USEFONT_FOR_LABEL
6745 FNTP_USE_TEXTCTRL
= _controls_
.FNTP_USE_TEXTCTRL
6746 FNTP_DEFAULT_STYLE
= _controls_
.FNTP_DEFAULT_STYLE
6747 class FontPickerCtrl(PickerBase
):
6748 """Proxy of C++ FontPickerCtrl class"""
6749 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6750 __repr__
= _swig_repr
6751 def __init__(self
, *args
, **kwargs
):
6753 __init__(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
6754 Point pos=DefaultPosition, Size size=DefaultSize,
6755 long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6756 String name=FontPickerCtrlNameStr) -> FontPickerCtrl
6758 _controls_
.FontPickerCtrl_swiginit(self
,_controls_
.new_FontPickerCtrl(*args
, **kwargs
))
6759 self
._setOORInfo
(self
)
6761 def Create(*args
, **kwargs
):
6763 Create(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
6764 Point pos=DefaultPosition, Size size=DefaultSize,
6765 long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6766 String name=FontPickerCtrlNameStr) -> bool
6768 return _controls_
.FontPickerCtrl_Create(*args
, **kwargs
)
6770 def GetSelectedFont(*args
, **kwargs
):
6771 """GetSelectedFont(self) -> Font"""
6772 return _controls_
.FontPickerCtrl_GetSelectedFont(*args
, **kwargs
)
6774 def SetSelectedFont(*args
, **kwargs
):
6775 """SetSelectedFont(self, Font f)"""
6776 return _controls_
.FontPickerCtrl_SetSelectedFont(*args
, **kwargs
)
6778 def SetMaxPointSize(*args
, **kwargs
):
6779 """SetMaxPointSize(self, unsigned int max)"""
6780 return _controls_
.FontPickerCtrl_SetMaxPointSize(*args
, **kwargs
)
6782 def GetMaxPointSize(*args
, **kwargs
):
6783 """GetMaxPointSize(self) -> unsigned int"""
6784 return _controls_
.FontPickerCtrl_GetMaxPointSize(*args
, **kwargs
)
6786 _controls_
.FontPickerCtrl_swigregister(FontPickerCtrl
)
6787 FontPickerCtrlNameStr
= cvar
.FontPickerCtrlNameStr
6789 def PreFontPickerCtrl(*args
, **kwargs
):
6790 """PreFontPickerCtrl() -> FontPickerCtrl"""
6791 val
= _controls_
.new_PreFontPickerCtrl(*args
, **kwargs
)
6794 wxEVT_COMMAND_FONTPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_FONTPICKER_CHANGED
6795 EVT_FONTPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_FONTPICKER_CHANGED
, 1 )
6797 class FontPickerEvent(_core
.CommandEvent
):
6798 """Proxy of C++ FontPickerEvent class"""
6799 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6800 __repr__
= _swig_repr
6801 def __init__(self
, *args
, **kwargs
):
6802 """__init__(self, Object generator, int id, Font f) -> FontPickerEvent"""
6803 _controls_
.FontPickerEvent_swiginit(self
,_controls_
.new_FontPickerEvent(*args
, **kwargs
))
6804 def GetFont(*args
, **kwargs
):
6805 """GetFont(self) -> Font"""
6806 return _controls_
.FontPickerEvent_GetFont(*args
, **kwargs
)
6808 def SetFont(*args
, **kwargs
):
6809 """SetFont(self, Font c)"""
6810 return _controls_
.FontPickerEvent_SetFont(*args
, **kwargs
)
6812 _controls_
.FontPickerEvent_swigregister(FontPickerEvent
)