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(Choice
):
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 SetEditable(*args
, **kwargs
):
711 """SetEditable(self, bool editable)"""
712 return _controls_
.ComboBox_SetEditable(*args
, **kwargs
)
714 def SetInsertionPointEnd(*args
, **kwargs
):
716 SetInsertionPointEnd(self)
718 Sets the insertion point at the end of the combobox text field.
720 return _controls_
.ComboBox_SetInsertionPointEnd(*args
, **kwargs
)
722 def Remove(*args
, **kwargs
):
724 Remove(self, long from, long to)
726 Removes the text between the two positions in the combobox text field.
728 return _controls_
.ComboBox_Remove(*args
, **kwargs
)
730 def IsEditable(*args
, **kwargs
):
732 IsEditable(self) -> bool
734 Returns True if the combo is ediatable (not read-only.)
736 return _controls_
.ComboBox_IsEditable(*args
, **kwargs
)
738 def Undo(*args
, **kwargs
):
742 Redoes the last undo in the text field. Windows only.
744 return _controls_
.ComboBox_Undo(*args
, **kwargs
)
746 def Redo(*args
, **kwargs
):
750 Undoes the last edit in the text field. Windows only.
752 return _controls_
.ComboBox_Redo(*args
, **kwargs
)
754 def SelectAll(*args
, **kwargs
):
758 Select all the text in the combo's text field.
760 return _controls_
.ComboBox_SelectAll(*args
, **kwargs
)
762 def CanCopy(*args
, **kwargs
):
764 CanCopy(self) -> bool
766 Returns True if the combobox is editable and there is a text selection
767 to copy to the clipboard. Only available on Windows.
769 return _controls_
.ComboBox_CanCopy(*args
, **kwargs
)
771 def CanCut(*args
, **kwargs
):
775 Returns True if the combobox is editable and there is a text selection
776 to copy to the clipboard. Only available on Windows.
778 return _controls_
.ComboBox_CanCut(*args
, **kwargs
)
780 def CanPaste(*args
, **kwargs
):
782 CanPaste(self) -> bool
784 Returns True if the combobox is editable and there is text on the
785 clipboard that can be pasted into the text field. Only available on
788 return _controls_
.ComboBox_CanPaste(*args
, **kwargs
)
790 def CanUndo(*args
, **kwargs
):
792 CanUndo(self) -> bool
794 Returns True if the combobox is editable and the last edit can be
795 undone. Only available on Windows.
797 return _controls_
.ComboBox_CanUndo(*args
, **kwargs
)
799 def CanRedo(*args
, **kwargs
):
801 CanRedo(self) -> bool
803 Returns True if the combobox is editable and the last undo can be
804 redone. Only available on Windows.
806 return _controls_
.ComboBox_CanRedo(*args
, **kwargs
)
808 def GetClassDefaultAttributes(*args
, **kwargs
):
810 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
812 Get the default attributes for this class. This is useful if you want
813 to use the same font or colour in your own control as in a standard
814 control -- which is a much better idea than hard coding specific
815 colours or fonts which might look completely out of place on the
816 user's system, especially if it uses themes.
818 The variant parameter is only relevant under Mac currently and is
819 ignore under other platforms. Under Mac, it will change the size of
820 the returned font. See `wx.Window.SetWindowVariant` for more about
823 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
825 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
826 CurrentSelection
= property(GetCurrentSelection
,doc
="See `GetCurrentSelection`")
827 InsertionPoint
= property(GetInsertionPoint
,SetInsertionPoint
,doc
="See `GetInsertionPoint` and `SetInsertionPoint`")
828 LastPosition
= property(GetLastPosition
,doc
="See `GetLastPosition`")
829 Mark
= property(GetMark
,SetMark
,doc
="See `GetMark` and `SetMark`")
830 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
831 _controls_
.ComboBox_swigregister(ComboBox
)
832 ComboBoxNameStr
= cvar
.ComboBoxNameStr
834 def PreComboBox(*args
, **kwargs
):
836 PreComboBox() -> ComboBox
838 Precreate a ComboBox control for 2-phase creation.
840 val
= _controls_
.new_PreComboBox(*args
, **kwargs
)
843 def ComboBox_GetClassDefaultAttributes(*args
, **kwargs
):
845 ComboBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
847 Get the default attributes for this class. This is useful if you want
848 to use the same font or colour in your own control as in a standard
849 control -- which is a much better idea than hard coding specific
850 colours or fonts which might look completely out of place on the
851 user's system, especially if it uses themes.
853 The variant parameter is only relevant under Mac currently and is
854 ignore under other platforms. Under Mac, it will change the size of
855 the returned font. See `wx.Window.SetWindowVariant` for more about
858 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
860 #---------------------------------------------------------------------------
862 GA_HORIZONTAL
= _controls_
.GA_HORIZONTAL
863 GA_VERTICAL
= _controls_
.GA_VERTICAL
864 GA_SMOOTH
= _controls_
.GA_SMOOTH
865 GA_PROGRESSBAR
= 0 # obsolete
866 class Gauge(_core
.Control
):
867 """Proxy of C++ Gauge class"""
868 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
869 __repr__
= _swig_repr
870 def __init__(self
, *args
, **kwargs
):
872 __init__(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
873 Size size=DefaultSize, long style=GA_HORIZONTAL,
874 Validator validator=DefaultValidator,
875 String name=GaugeNameStr) -> Gauge
877 _controls_
.Gauge_swiginit(self
,_controls_
.new_Gauge(*args
, **kwargs
))
878 self
._setOORInfo
(self
)
880 def Create(*args
, **kwargs
):
882 Create(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
883 Size size=DefaultSize, long style=GA_HORIZONTAL,
884 Validator validator=DefaultValidator,
885 String name=GaugeNameStr) -> bool
887 return _controls_
.Gauge_Create(*args
, **kwargs
)
889 def SetRange(*args
, **kwargs
):
890 """SetRange(self, int range)"""
891 return _controls_
.Gauge_SetRange(*args
, **kwargs
)
893 def GetRange(*args
, **kwargs
):
894 """GetRange(self) -> int"""
895 return _controls_
.Gauge_GetRange(*args
, **kwargs
)
897 def SetValue(*args
, **kwargs
):
898 """SetValue(self, int pos)"""
899 return _controls_
.Gauge_SetValue(*args
, **kwargs
)
901 def GetValue(*args
, **kwargs
):
902 """GetValue(self) -> int"""
903 return _controls_
.Gauge_GetValue(*args
, **kwargs
)
905 def Pulse(*args
, **kwargs
):
907 return _controls_
.Gauge_Pulse(*args
, **kwargs
)
909 def IsVertical(*args
, **kwargs
):
910 """IsVertical(self) -> bool"""
911 return _controls_
.Gauge_IsVertical(*args
, **kwargs
)
913 def SetShadowWidth(*args
, **kwargs
):
914 """SetShadowWidth(self, int w)"""
915 return _controls_
.Gauge_SetShadowWidth(*args
, **kwargs
)
917 def GetShadowWidth(*args
, **kwargs
):
918 """GetShadowWidth(self) -> int"""
919 return _controls_
.Gauge_GetShadowWidth(*args
, **kwargs
)
921 def SetBezelFace(*args
, **kwargs
):
922 """SetBezelFace(self, int w)"""
923 return _controls_
.Gauge_SetBezelFace(*args
, **kwargs
)
925 def GetBezelFace(*args
, **kwargs
):
926 """GetBezelFace(self) -> int"""
927 return _controls_
.Gauge_GetBezelFace(*args
, **kwargs
)
929 def GetClassDefaultAttributes(*args
, **kwargs
):
931 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
933 Get the default attributes for this class. This is useful if you want
934 to use the same font or colour in your own control as in a standard
935 control -- which is a much better idea than hard coding specific
936 colours or fonts which might look completely out of place on the
937 user's system, especially if it uses themes.
939 The variant parameter is only relevant under Mac currently and is
940 ignore under other platforms. Under Mac, it will change the size of
941 the returned font. See `wx.Window.SetWindowVariant` for more about
944 return _controls_
.Gauge_GetClassDefaultAttributes(*args
, **kwargs
)
946 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
947 BezelFace
= property(GetBezelFace
,SetBezelFace
,doc
="See `GetBezelFace` and `SetBezelFace`")
948 Range
= property(GetRange
,SetRange
,doc
="See `GetRange` and `SetRange`")
949 ShadowWidth
= property(GetShadowWidth
,SetShadowWidth
,doc
="See `GetShadowWidth` and `SetShadowWidth`")
950 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
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 Selections
= property(GetSelections
,doc
="See `GetSelections`")
1409 _controls_
.ListBox_swigregister(ListBox
)
1410 ListBoxNameStr
= cvar
.ListBoxNameStr
1412 def PreListBox(*args
, **kwargs
):
1413 """PreListBox() -> ListBox"""
1414 val
= _controls_
.new_PreListBox(*args
, **kwargs
)
1417 def ListBox_GetClassDefaultAttributes(*args
, **kwargs
):
1419 ListBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1421 Get the default attributes for this class. This is useful if you want
1422 to use the same font or colour in your own control as in a standard
1423 control -- which is a much better idea than hard coding specific
1424 colours or fonts which might look completely out of place on the
1425 user's system, especially if it uses themes.
1427 The variant parameter is only relevant under Mac currently and is
1428 ignore under other platforms. Under Mac, it will change the size of
1429 the returned font. See `wx.Window.SetWindowVariant` for more about
1432 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1434 #---------------------------------------------------------------------------
1436 class CheckListBox(ListBox
):
1437 """Proxy of C++ CheckListBox class"""
1438 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1439 __repr__
= _swig_repr
1440 def __init__(self
, *args
, **kwargs
):
1442 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1443 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1444 long style=0, Validator validator=DefaultValidator,
1445 String name=ListBoxNameStr) -> CheckListBox
1447 _controls_
.CheckListBox_swiginit(self
,_controls_
.new_CheckListBox(*args
, **kwargs
))
1448 self
._setOORInfo
(self
)
1450 def Create(*args
, **kwargs
):
1452 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1453 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1454 long style=0, Validator validator=DefaultValidator,
1455 String name=ListBoxNameStr) -> bool
1457 return _controls_
.CheckListBox_Create(*args
, **kwargs
)
1459 def IsChecked(*args
, **kwargs
):
1460 """IsChecked(self, unsigned int index) -> bool"""
1461 return _controls_
.CheckListBox_IsChecked(*args
, **kwargs
)
1463 def Check(*args
, **kwargs
):
1464 """Check(self, unsigned int index, int check=True)"""
1465 return _controls_
.CheckListBox_Check(*args
, **kwargs
)
1467 def GetItemHeight(*args
, **kwargs
):
1468 """GetItemHeight(self) -> int"""
1469 return _controls_
.CheckListBox_GetItemHeight(*args
, **kwargs
)
1471 ItemHeight
= property(GetItemHeight
,doc
="See `GetItemHeight`")
1472 _controls_
.CheckListBox_swigregister(CheckListBox
)
1474 def PreCheckListBox(*args
, **kwargs
):
1475 """PreCheckListBox() -> CheckListBox"""
1476 val
= _controls_
.new_PreCheckListBox(*args
, **kwargs
)
1479 #---------------------------------------------------------------------------
1481 TE_NO_VSCROLL
= _controls_
.TE_NO_VSCROLL
1482 TE_AUTO_SCROLL
= _controls_
.TE_AUTO_SCROLL
1483 TE_READONLY
= _controls_
.TE_READONLY
1484 TE_MULTILINE
= _controls_
.TE_MULTILINE
1485 TE_PROCESS_TAB
= _controls_
.TE_PROCESS_TAB
1486 TE_LEFT
= _controls_
.TE_LEFT
1487 TE_CENTER
= _controls_
.TE_CENTER
1488 TE_RIGHT
= _controls_
.TE_RIGHT
1489 TE_CENTRE
= _controls_
.TE_CENTRE
1490 TE_RICH
= _controls_
.TE_RICH
1491 TE_PROCESS_ENTER
= _controls_
.TE_PROCESS_ENTER
1492 TE_PASSWORD
= _controls_
.TE_PASSWORD
1493 TE_AUTO_URL
= _controls_
.TE_AUTO_URL
1494 TE_NOHIDESEL
= _controls_
.TE_NOHIDESEL
1495 TE_DONTWRAP
= _controls_
.TE_DONTWRAP
1496 TE_CHARWRAP
= _controls_
.TE_CHARWRAP
1497 TE_WORDWRAP
= _controls_
.TE_WORDWRAP
1498 TE_BESTWRAP
= _controls_
.TE_BESTWRAP
1499 TE_RICH2
= _controls_
.TE_RICH2
1500 TE_CAPITALIZE
= _controls_
.TE_CAPITALIZE
1501 TE_LINEWRAP
= TE_CHARWRAP
1502 TEXT_ALIGNMENT_DEFAULT
= _controls_
.TEXT_ALIGNMENT_DEFAULT
1503 TEXT_ALIGNMENT_LEFT
= _controls_
.TEXT_ALIGNMENT_LEFT
1504 TEXT_ALIGNMENT_CENTRE
= _controls_
.TEXT_ALIGNMENT_CENTRE
1505 TEXT_ALIGNMENT_CENTER
= _controls_
.TEXT_ALIGNMENT_CENTER
1506 TEXT_ALIGNMENT_RIGHT
= _controls_
.TEXT_ALIGNMENT_RIGHT
1507 TEXT_ALIGNMENT_JUSTIFIED
= _controls_
.TEXT_ALIGNMENT_JUSTIFIED
1508 TEXT_ATTR_TEXT_COLOUR
= _controls_
.TEXT_ATTR_TEXT_COLOUR
1509 TEXT_ATTR_BACKGROUND_COLOUR
= _controls_
.TEXT_ATTR_BACKGROUND_COLOUR
1510 TEXT_ATTR_FONT_FACE
= _controls_
.TEXT_ATTR_FONT_FACE
1511 TEXT_ATTR_FONT_SIZE
= _controls_
.TEXT_ATTR_FONT_SIZE
1512 TEXT_ATTR_FONT_WEIGHT
= _controls_
.TEXT_ATTR_FONT_WEIGHT
1513 TEXT_ATTR_FONT_ITALIC
= _controls_
.TEXT_ATTR_FONT_ITALIC
1514 TEXT_ATTR_FONT_UNDERLINE
= _controls_
.TEXT_ATTR_FONT_UNDERLINE
1515 TEXT_ATTR_FONT
= _controls_
.TEXT_ATTR_FONT
1516 TEXT_ATTR_ALIGNMENT
= _controls_
.TEXT_ATTR_ALIGNMENT
1517 TEXT_ATTR_LEFT_INDENT
= _controls_
.TEXT_ATTR_LEFT_INDENT
1518 TEXT_ATTR_RIGHT_INDENT
= _controls_
.TEXT_ATTR_RIGHT_INDENT
1519 TEXT_ATTR_TABS
= _controls_
.TEXT_ATTR_TABS
1520 TE_HT_UNKNOWN
= _controls_
.TE_HT_UNKNOWN
1521 TE_HT_BEFORE
= _controls_
.TE_HT_BEFORE
1522 TE_HT_ON_TEXT
= _controls_
.TE_HT_ON_TEXT
1523 TE_HT_BELOW
= _controls_
.TE_HT_BELOW
1524 TE_HT_BEYOND
= _controls_
.TE_HT_BEYOND
1525 OutOfRangeTextCoord
= _controls_
.OutOfRangeTextCoord
1526 InvalidTextCoord
= _controls_
.InvalidTextCoord
1527 TEXT_TYPE_ANY
= _controls_
.TEXT_TYPE_ANY
1528 class TextAttr(object):
1529 """Proxy of C++ TextAttr class"""
1530 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1531 __repr__
= _swig_repr
1532 def __init__(self
, *args
, **kwargs
):
1534 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
1535 Font font=wxNullFont, int alignment=TEXT_ALIGNMENT_DEFAULT) -> TextAttr
1537 _controls_
.TextAttr_swiginit(self
,_controls_
.new_TextAttr(*args
, **kwargs
))
1538 __swig_destroy__
= _controls_
.delete_TextAttr
1539 __del__
= lambda self
: None;
1540 def Init(*args
, **kwargs
):
1542 return _controls_
.TextAttr_Init(*args
, **kwargs
)
1544 def Merge(*args
, **kwargs
):
1545 """Merge(TextAttr base, TextAttr overlay) -> TextAttr"""
1546 return _controls_
.TextAttr_Merge(*args
, **kwargs
)
1548 Merge
= staticmethod(Merge
)
1549 def SetTextColour(*args
, **kwargs
):
1550 """SetTextColour(self, Colour colText)"""
1551 return _controls_
.TextAttr_SetTextColour(*args
, **kwargs
)
1553 def SetBackgroundColour(*args
, **kwargs
):
1554 """SetBackgroundColour(self, Colour colBack)"""
1555 return _controls_
.TextAttr_SetBackgroundColour(*args
, **kwargs
)
1557 def SetFont(*args
, **kwargs
):
1558 """SetFont(self, Font font, long flags=TEXT_ATTR_FONT)"""
1559 return _controls_
.TextAttr_SetFont(*args
, **kwargs
)
1561 def SetAlignment(*args
, **kwargs
):
1562 """SetAlignment(self, int alignment)"""
1563 return _controls_
.TextAttr_SetAlignment(*args
, **kwargs
)
1565 def SetTabs(*args
, **kwargs
):
1566 """SetTabs(self, wxArrayInt tabs)"""
1567 return _controls_
.TextAttr_SetTabs(*args
, **kwargs
)
1569 def SetLeftIndent(*args
, **kwargs
):
1570 """SetLeftIndent(self, int indent, int subIndent=0)"""
1571 return _controls_
.TextAttr_SetLeftIndent(*args
, **kwargs
)
1573 def SetRightIndent(*args
, **kwargs
):
1574 """SetRightIndent(self, int indent)"""
1575 return _controls_
.TextAttr_SetRightIndent(*args
, **kwargs
)
1577 def SetFlags(*args
, **kwargs
):
1578 """SetFlags(self, long flags)"""
1579 return _controls_
.TextAttr_SetFlags(*args
, **kwargs
)
1581 def HasTextColour(*args
, **kwargs
):
1582 """HasTextColour(self) -> bool"""
1583 return _controls_
.TextAttr_HasTextColour(*args
, **kwargs
)
1585 def HasBackgroundColour(*args
, **kwargs
):
1586 """HasBackgroundColour(self) -> bool"""
1587 return _controls_
.TextAttr_HasBackgroundColour(*args
, **kwargs
)
1589 def HasFont(*args
, **kwargs
):
1590 """HasFont(self) -> bool"""
1591 return _controls_
.TextAttr_HasFont(*args
, **kwargs
)
1593 def HasAlignment(*args
, **kwargs
):
1594 """HasAlignment(self) -> bool"""
1595 return _controls_
.TextAttr_HasAlignment(*args
, **kwargs
)
1597 def HasTabs(*args
, **kwargs
):
1598 """HasTabs(self) -> bool"""
1599 return _controls_
.TextAttr_HasTabs(*args
, **kwargs
)
1601 def HasLeftIndent(*args
, **kwargs
):
1602 """HasLeftIndent(self) -> bool"""
1603 return _controls_
.TextAttr_HasLeftIndent(*args
, **kwargs
)
1605 def HasRightIndent(*args
, **kwargs
):
1606 """HasRightIndent(self) -> bool"""
1607 return _controls_
.TextAttr_HasRightIndent(*args
, **kwargs
)
1609 def HasFlag(*args
, **kwargs
):
1610 """HasFlag(self, long flag) -> bool"""
1611 return _controls_
.TextAttr_HasFlag(*args
, **kwargs
)
1613 def GetTextColour(*args
, **kwargs
):
1614 """GetTextColour(self) -> Colour"""
1615 return _controls_
.TextAttr_GetTextColour(*args
, **kwargs
)
1617 def GetBackgroundColour(*args
, **kwargs
):
1618 """GetBackgroundColour(self) -> Colour"""
1619 return _controls_
.TextAttr_GetBackgroundColour(*args
, **kwargs
)
1621 def GetFont(*args
, **kwargs
):
1622 """GetFont(self) -> Font"""
1623 return _controls_
.TextAttr_GetFont(*args
, **kwargs
)
1625 def GetAlignment(*args
, **kwargs
):
1626 """GetAlignment(self) -> int"""
1627 return _controls_
.TextAttr_GetAlignment(*args
, **kwargs
)
1629 def GetTabs(*args
, **kwargs
):
1630 """GetTabs(self) -> wxArrayInt"""
1631 return _controls_
.TextAttr_GetTabs(*args
, **kwargs
)
1633 def GetLeftIndent(*args
, **kwargs
):
1634 """GetLeftIndent(self) -> long"""
1635 return _controls_
.TextAttr_GetLeftIndent(*args
, **kwargs
)
1637 def GetLeftSubIndent(*args
, **kwargs
):
1638 """GetLeftSubIndent(self) -> long"""
1639 return _controls_
.TextAttr_GetLeftSubIndent(*args
, **kwargs
)
1641 def GetRightIndent(*args
, **kwargs
):
1642 """GetRightIndent(self) -> long"""
1643 return _controls_
.TextAttr_GetRightIndent(*args
, **kwargs
)
1645 def GetFlags(*args
, **kwargs
):
1646 """GetFlags(self) -> long"""
1647 return _controls_
.TextAttr_GetFlags(*args
, **kwargs
)
1649 def IsDefault(*args
, **kwargs
):
1650 """IsDefault(self) -> bool"""
1651 return _controls_
.TextAttr_IsDefault(*args
, **kwargs
)
1653 def Combine(*args
, **kwargs
):
1654 """Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1655 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1657 Combine
= staticmethod(Combine
)
1658 Alignment
= property(GetAlignment
,SetAlignment
,doc
="See `GetAlignment` and `SetAlignment`")
1659 BackgroundColour
= property(GetBackgroundColour
,SetBackgroundColour
,doc
="See `GetBackgroundColour` and `SetBackgroundColour`")
1660 Flags
= property(GetFlags
,SetFlags
,doc
="See `GetFlags` and `SetFlags`")
1661 Font
= property(GetFont
,SetFont
,doc
="See `GetFont` and `SetFont`")
1662 LeftIndent
= property(GetLeftIndent
,SetLeftIndent
,doc
="See `GetLeftIndent` and `SetLeftIndent`")
1663 LeftSubIndent
= property(GetLeftSubIndent
,doc
="See `GetLeftSubIndent`")
1664 RightIndent
= property(GetRightIndent
,SetRightIndent
,doc
="See `GetRightIndent` and `SetRightIndent`")
1665 Tabs
= property(GetTabs
,SetTabs
,doc
="See `GetTabs` and `SetTabs`")
1666 TextColour
= property(GetTextColour
,SetTextColour
,doc
="See `GetTextColour` and `SetTextColour`")
1667 _controls_
.TextAttr_swigregister(TextAttr
)
1668 TextCtrlNameStr
= cvar
.TextCtrlNameStr
1670 def TextAttr_Merge(*args
, **kwargs
):
1671 """TextAttr_Merge(TextAttr base, TextAttr overlay) -> TextAttr"""
1672 return _controls_
.TextAttr_Merge(*args
, **kwargs
)
1674 def TextAttr_Combine(*args
, **kwargs
):
1675 """TextAttr_Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1676 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1678 class TextCtrl(_core
.Control
):
1679 """Proxy of C++ TextCtrl class"""
1680 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1681 __repr__
= _swig_repr
1682 def __init__(self
, *args
, **kwargs
):
1684 __init__(self, Window parent, int id=-1, String value=EmptyString,
1685 Point pos=DefaultPosition, Size size=DefaultSize,
1686 long style=0, Validator validator=DefaultValidator,
1687 String name=TextCtrlNameStr) -> TextCtrl
1689 _controls_
.TextCtrl_swiginit(self
,_controls_
.new_TextCtrl(*args
, **kwargs
))
1690 self
._setOORInfo
(self
)
1692 def Create(*args
, **kwargs
):
1694 Create(self, Window parent, int id=-1, String value=EmptyString,
1695 Point pos=DefaultPosition, Size size=DefaultSize,
1696 long style=0, Validator validator=DefaultValidator,
1697 String name=TextCtrlNameStr) -> bool
1699 return _controls_
.TextCtrl_Create(*args
, **kwargs
)
1701 def GetValue(*args
, **kwargs
):
1702 """GetValue(self) -> String"""
1703 return _controls_
.TextCtrl_GetValue(*args
, **kwargs
)
1705 def SetValue(*args
, **kwargs
):
1706 """SetValue(self, String value)"""
1707 return _controls_
.TextCtrl_SetValue(*args
, **kwargs
)
1709 def IsEmpty(*args
, **kwargs
):
1710 """IsEmpty(self) -> bool"""
1711 return _controls_
.TextCtrl_IsEmpty(*args
, **kwargs
)
1713 def ChangeValue(*args
, **kwargs
):
1714 """ChangeValue(self, String value)"""
1715 return _controls_
.TextCtrl_ChangeValue(*args
, **kwargs
)
1717 def GetRange(*args
, **kwargs
):
1718 """GetRange(self, long from, long to) -> String"""
1719 return _controls_
.TextCtrl_GetRange(*args
, **kwargs
)
1721 def GetLineLength(*args
, **kwargs
):
1722 """GetLineLength(self, long lineNo) -> int"""
1723 return _controls_
.TextCtrl_GetLineLength(*args
, **kwargs
)
1725 def GetLineText(*args
, **kwargs
):
1726 """GetLineText(self, long lineNo) -> String"""
1727 return _controls_
.TextCtrl_GetLineText(*args
, **kwargs
)
1729 def GetNumberOfLines(*args
, **kwargs
):
1730 """GetNumberOfLines(self) -> int"""
1731 return _controls_
.TextCtrl_GetNumberOfLines(*args
, **kwargs
)
1733 def IsModified(*args
, **kwargs
):
1734 """IsModified(self) -> bool"""
1735 return _controls_
.TextCtrl_IsModified(*args
, **kwargs
)
1737 def IsEditable(*args
, **kwargs
):
1738 """IsEditable(self) -> bool"""
1739 return _controls_
.TextCtrl_IsEditable(*args
, **kwargs
)
1741 def IsSingleLine(*args
, **kwargs
):
1742 """IsSingleLine(self) -> bool"""
1743 return _controls_
.TextCtrl_IsSingleLine(*args
, **kwargs
)
1745 def IsMultiLine(*args
, **kwargs
):
1746 """IsMultiLine(self) -> bool"""
1747 return _controls_
.TextCtrl_IsMultiLine(*args
, **kwargs
)
1749 def GetSelection(*args
, **kwargs
):
1751 GetSelection() -> (from, to)
1753 If the return values from and to are the same, there is no selection.
1755 return _controls_
.TextCtrl_GetSelection(*args
, **kwargs
)
1757 def GetStringSelection(*args
, **kwargs
):
1758 """GetStringSelection(self) -> String"""
1759 return _controls_
.TextCtrl_GetStringSelection(*args
, **kwargs
)
1761 def Clear(*args
, **kwargs
):
1763 return _controls_
.TextCtrl_Clear(*args
, **kwargs
)
1765 def Replace(*args
, **kwargs
):
1766 """Replace(self, long from, long to, String value)"""
1767 return _controls_
.TextCtrl_Replace(*args
, **kwargs
)
1769 def Remove(*args
, **kwargs
):
1770 """Remove(self, long from, long to)"""
1771 return _controls_
.TextCtrl_Remove(*args
, **kwargs
)
1773 def LoadFile(*args
, **kwargs
):
1774 """LoadFile(self, String file, int fileType=TEXT_TYPE_ANY) -> bool"""
1775 return _controls_
.TextCtrl_LoadFile(*args
, **kwargs
)
1777 def SaveFile(*args
, **kwargs
):
1778 """SaveFile(self, String file=EmptyString, int fileType=TEXT_TYPE_ANY) -> bool"""
1779 return _controls_
.TextCtrl_SaveFile(*args
, **kwargs
)
1781 def MarkDirty(*args
, **kwargs
):
1782 """MarkDirty(self)"""
1783 return _controls_
.TextCtrl_MarkDirty(*args
, **kwargs
)
1785 def DiscardEdits(*args
, **kwargs
):
1786 """DiscardEdits(self)"""
1787 return _controls_
.TextCtrl_DiscardEdits(*args
, **kwargs
)
1789 def SetModified(*args
, **kwargs
):
1790 """SetModified(self, bool modified)"""
1791 return _controls_
.TextCtrl_SetModified(*args
, **kwargs
)
1793 def SetMaxLength(*args
, **kwargs
):
1794 """SetMaxLength(self, unsigned long len)"""
1795 return _controls_
.TextCtrl_SetMaxLength(*args
, **kwargs
)
1797 def WriteText(*args
, **kwargs
):
1798 """WriteText(self, String text)"""
1799 return _controls_
.TextCtrl_WriteText(*args
, **kwargs
)
1801 def AppendText(*args
, **kwargs
):
1802 """AppendText(self, String text)"""
1803 return _controls_
.TextCtrl_AppendText(*args
, **kwargs
)
1805 def EmulateKeyPress(*args
, **kwargs
):
1806 """EmulateKeyPress(self, KeyEvent event) -> bool"""
1807 return _controls_
.TextCtrl_EmulateKeyPress(*args
, **kwargs
)
1809 def SetStyle(*args
, **kwargs
):
1810 """SetStyle(self, long start, long end, TextAttr style) -> bool"""
1811 return _controls_
.TextCtrl_SetStyle(*args
, **kwargs
)
1813 def GetStyle(*args
, **kwargs
):
1814 """GetStyle(self, long position, TextAttr style) -> bool"""
1815 return _controls_
.TextCtrl_GetStyle(*args
, **kwargs
)
1817 def SetDefaultStyle(*args
, **kwargs
):
1818 """SetDefaultStyle(self, TextAttr style) -> bool"""
1819 return _controls_
.TextCtrl_SetDefaultStyle(*args
, **kwargs
)
1821 def GetDefaultStyle(*args
, **kwargs
):
1822 """GetDefaultStyle(self) -> TextAttr"""
1823 return _controls_
.TextCtrl_GetDefaultStyle(*args
, **kwargs
)
1825 def XYToPosition(*args
, **kwargs
):
1826 """XYToPosition(self, long x, long y) -> long"""
1827 return _controls_
.TextCtrl_XYToPosition(*args
, **kwargs
)
1829 def PositionToXY(*args
, **kwargs
):
1830 """PositionToXY(long pos) -> (x, y)"""
1831 return _controls_
.TextCtrl_PositionToXY(*args
, **kwargs
)
1833 def ShowPosition(*args
, **kwargs
):
1834 """ShowPosition(self, long pos)"""
1835 return _controls_
.TextCtrl_ShowPosition(*args
, **kwargs
)
1837 def HitTest(*args
, **kwargs
):
1839 HitTest(Point pt) -> (result, col, row)
1841 Find the row, col coresponding to the character at the point given in
1842 pixels. NB: pt is in device coords but is not adjusted for the client
1843 area origin nor scrolling.
1845 return _controls_
.TextCtrl_HitTest(*args
, **kwargs
)
1847 def HitTestPos(*args
, **kwargs
):
1849 HitTestPos(Point pt) -> (result, position)
1851 Find the character position in the text coresponding to the point
1852 given in pixels. NB: pt is in device coords but is not adjusted for
1853 the client area origin nor scrolling.
1855 return _controls_
.TextCtrl_HitTestPos(*args
, **kwargs
)
1857 def Copy(*args
, **kwargs
):
1859 return _controls_
.TextCtrl_Copy(*args
, **kwargs
)
1861 def Cut(*args
, **kwargs
):
1863 return _controls_
.TextCtrl_Cut(*args
, **kwargs
)
1865 def Paste(*args
, **kwargs
):
1867 return _controls_
.TextCtrl_Paste(*args
, **kwargs
)
1869 def CanCopy(*args
, **kwargs
):
1870 """CanCopy(self) -> bool"""
1871 return _controls_
.TextCtrl_CanCopy(*args
, **kwargs
)
1873 def CanCut(*args
, **kwargs
):
1874 """CanCut(self) -> bool"""
1875 return _controls_
.TextCtrl_CanCut(*args
, **kwargs
)
1877 def CanPaste(*args
, **kwargs
):
1878 """CanPaste(self) -> bool"""
1879 return _controls_
.TextCtrl_CanPaste(*args
, **kwargs
)
1881 def Undo(*args
, **kwargs
):
1883 return _controls_
.TextCtrl_Undo(*args
, **kwargs
)
1885 def Redo(*args
, **kwargs
):
1887 return _controls_
.TextCtrl_Redo(*args
, **kwargs
)
1889 def CanUndo(*args
, **kwargs
):
1890 """CanUndo(self) -> bool"""
1891 return _controls_
.TextCtrl_CanUndo(*args
, **kwargs
)
1893 def CanRedo(*args
, **kwargs
):
1894 """CanRedo(self) -> bool"""
1895 return _controls_
.TextCtrl_CanRedo(*args
, **kwargs
)
1897 def SetInsertionPoint(*args
, **kwargs
):
1898 """SetInsertionPoint(self, long pos)"""
1899 return _controls_
.TextCtrl_SetInsertionPoint(*args
, **kwargs
)
1901 def SetInsertionPointEnd(*args
, **kwargs
):
1902 """SetInsertionPointEnd(self)"""
1903 return _controls_
.TextCtrl_SetInsertionPointEnd(*args
, **kwargs
)
1905 def GetInsertionPoint(*args
, **kwargs
):
1906 """GetInsertionPoint(self) -> long"""
1907 return _controls_
.TextCtrl_GetInsertionPoint(*args
, **kwargs
)
1909 def GetLastPosition(*args
, **kwargs
):
1910 """GetLastPosition(self) -> long"""
1911 return _controls_
.TextCtrl_GetLastPosition(*args
, **kwargs
)
1913 def SetSelection(*args
, **kwargs
):
1914 """SetSelection(self, long from, long to)"""
1915 return _controls_
.TextCtrl_SetSelection(*args
, **kwargs
)
1917 def SelectAll(*args
, **kwargs
):
1918 """SelectAll(self)"""
1919 return _controls_
.TextCtrl_SelectAll(*args
, **kwargs
)
1921 def SetEditable(*args
, **kwargs
):
1922 """SetEditable(self, bool editable)"""
1923 return _controls_
.TextCtrl_SetEditable(*args
, **kwargs
)
1925 def MacCheckSpelling(*args
, **kwargs
):
1926 """MacCheckSpelling(self, bool check)"""
1927 return _controls_
.TextCtrl_MacCheckSpelling(*args
, **kwargs
)
1929 def SendTextUpdatedEvent(*args
, **kwargs
):
1930 """SendTextUpdatedEvent(self)"""
1931 return _controls_
.TextCtrl_SendTextUpdatedEvent(*args
, **kwargs
)
1933 def ShowNativeCaret(*args
, **kwargs
):
1934 """ShowNativeCaret(self, bool show=True) -> bool"""
1935 return _controls_
.TextCtrl_ShowNativeCaret(*args
, **kwargs
)
1937 def HideNativeCaret(*args
, **kwargs
):
1938 """HideNativeCaret(self) -> bool"""
1939 return _controls_
.TextCtrl_HideNativeCaret(*args
, **kwargs
)
1941 def write(*args
, **kwargs
):
1942 """write(self, String text)"""
1943 return _controls_
.TextCtrl_write(*args
, **kwargs
)
1945 def GetString(*args
, **kwargs
):
1946 """GetString(self, long from, long to) -> String"""
1947 return _controls_
.TextCtrl_GetString(*args
, **kwargs
)
1949 def GetClassDefaultAttributes(*args
, **kwargs
):
1951 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1953 Get the default attributes for this class. This is useful if you want
1954 to use the same font or colour in your own control as in a standard
1955 control -- which is a much better idea than hard coding specific
1956 colours or fonts which might look completely out of place on the
1957 user's system, especially if it uses themes.
1959 The variant parameter is only relevant under Mac currently and is
1960 ignore under other platforms. Under Mac, it will change the size of
1961 the returned font. See `wx.Window.SetWindowVariant` for more about
1964 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1966 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1967 DefaultStyle
= property(GetDefaultStyle
,SetDefaultStyle
,doc
="See `GetDefaultStyle` and `SetDefaultStyle`")
1968 InsertionPoint
= property(GetInsertionPoint
,SetInsertionPoint
,doc
="See `GetInsertionPoint` and `SetInsertionPoint`")
1969 LastPosition
= property(GetLastPosition
,doc
="See `GetLastPosition`")
1970 NumberOfLines
= property(GetNumberOfLines
,doc
="See `GetNumberOfLines`")
1971 Selection
= property(GetSelection
,SetSelection
,doc
="See `GetSelection` and `SetSelection`")
1972 StringSelection
= property(GetStringSelection
,doc
="See `GetStringSelection`")
1973 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
1974 _controls_
.TextCtrl_swigregister(TextCtrl
)
1976 def PreTextCtrl(*args
, **kwargs
):
1977 """PreTextCtrl() -> TextCtrl"""
1978 val
= _controls_
.new_PreTextCtrl(*args
, **kwargs
)
1981 def TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
1983 TextCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1985 Get the default attributes for this class. This is useful if you want
1986 to use the same font or colour in your own control as in a standard
1987 control -- which is a much better idea than hard coding specific
1988 colours or fonts which might look completely out of place on the
1989 user's system, especially if it uses themes.
1991 The variant parameter is only relevant under Mac currently and is
1992 ignore under other platforms. Under Mac, it will change the size of
1993 the returned font. See `wx.Window.SetWindowVariant` for more about
1996 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1998 wxEVT_COMMAND_TEXT_UPDATED
= _controls_
.wxEVT_COMMAND_TEXT_UPDATED
1999 wxEVT_COMMAND_TEXT_ENTER
= _controls_
.wxEVT_COMMAND_TEXT_ENTER
2000 wxEVT_COMMAND_TEXT_URL
= _controls_
.wxEVT_COMMAND_TEXT_URL
2001 wxEVT_COMMAND_TEXT_MAXLEN
= _controls_
.wxEVT_COMMAND_TEXT_MAXLEN
2002 class TextUrlEvent(_core
.CommandEvent
):
2003 """Proxy of C++ TextUrlEvent class"""
2004 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2005 __repr__
= _swig_repr
2006 def __init__(self
, *args
, **kwargs
):
2007 """__init__(self, int winid, MouseEvent evtMouse, long start, long end) -> TextUrlEvent"""
2008 _controls_
.TextUrlEvent_swiginit(self
,_controls_
.new_TextUrlEvent(*args
, **kwargs
))
2009 def GetMouseEvent(*args
, **kwargs
):
2010 """GetMouseEvent(self) -> MouseEvent"""
2011 return _controls_
.TextUrlEvent_GetMouseEvent(*args
, **kwargs
)
2013 def GetURLStart(*args
, **kwargs
):
2014 """GetURLStart(self) -> long"""
2015 return _controls_
.TextUrlEvent_GetURLStart(*args
, **kwargs
)
2017 def GetURLEnd(*args
, **kwargs
):
2018 """GetURLEnd(self) -> long"""
2019 return _controls_
.TextUrlEvent_GetURLEnd(*args
, **kwargs
)
2021 MouseEvent
= property(GetMouseEvent
,doc
="See `GetMouseEvent`")
2022 URLEnd
= property(GetURLEnd
,doc
="See `GetURLEnd`")
2023 URLStart
= property(GetURLStart
,doc
="See `GetURLStart`")
2024 _controls_
.TextUrlEvent_swigregister(TextUrlEvent
)
2026 EVT_TEXT
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED
, 1)
2027 EVT_TEXT_ENTER
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER
, 1)
2028 EVT_TEXT_URL
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_URL
, 1)
2029 EVT_TEXT_MAXLEN
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN
, 1)
2031 #---------------------------------------------------------------------------
2033 class ScrollBar(_core
.Control
):
2034 """Proxy of C++ ScrollBar class"""
2035 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2036 __repr__
= _swig_repr
2037 def __init__(self
, *args
, **kwargs
):
2039 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2040 Size size=DefaultSize, long style=SB_HORIZONTAL,
2041 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> ScrollBar
2043 _controls_
.ScrollBar_swiginit(self
,_controls_
.new_ScrollBar(*args
, **kwargs
))
2044 self
._setOORInfo
(self
)
2046 def Create(*args
, **kwargs
):
2048 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2049 Size size=DefaultSize, long style=SB_HORIZONTAL,
2050 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> bool
2052 Do the 2nd phase and create the GUI control.
2054 return _controls_
.ScrollBar_Create(*args
, **kwargs
)
2056 def GetThumbPosition(*args
, **kwargs
):
2057 """GetThumbPosition(self) -> int"""
2058 return _controls_
.ScrollBar_GetThumbPosition(*args
, **kwargs
)
2060 def GetThumbSize(*args
, **kwargs
):
2061 """GetThumbSize(self) -> int"""
2062 return _controls_
.ScrollBar_GetThumbSize(*args
, **kwargs
)
2064 GetThumbLength
= GetThumbSize
2065 def GetPageSize(*args
, **kwargs
):
2066 """GetPageSize(self) -> int"""
2067 return _controls_
.ScrollBar_GetPageSize(*args
, **kwargs
)
2069 def GetRange(*args
, **kwargs
):
2070 """GetRange(self) -> int"""
2071 return _controls_
.ScrollBar_GetRange(*args
, **kwargs
)
2073 def IsVertical(*args
, **kwargs
):
2074 """IsVertical(self) -> bool"""
2075 return _controls_
.ScrollBar_IsVertical(*args
, **kwargs
)
2077 def SetThumbPosition(*args
, **kwargs
):
2078 """SetThumbPosition(self, int viewStart)"""
2079 return _controls_
.ScrollBar_SetThumbPosition(*args
, **kwargs
)
2081 def GetClassDefaultAttributes(*args
, **kwargs
):
2083 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2085 Get the default attributes for this class. This is useful if you want
2086 to use the same font or colour in your own control as in a standard
2087 control -- which is a much better idea than hard coding specific
2088 colours or fonts which might look completely out of place on the
2089 user's system, especially if it uses themes.
2091 The variant parameter is only relevant under Mac currently and is
2092 ignore under other platforms. Under Mac, it will change the size of
2093 the returned font. See `wx.Window.SetWindowVariant` for more about
2096 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
2098 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2099 PageSize
= property(GetPageSize
,doc
="See `GetPageSize`")
2100 Range
= property(GetRange
,doc
="See `GetRange`")
2101 ThumbPosition
= property(GetThumbPosition
,SetThumbPosition
,doc
="See `GetThumbPosition` and `SetThumbPosition`")
2102 ThumbSize
= property(GetThumbSize
,doc
="See `GetThumbSize`")
2103 _controls_
.ScrollBar_swigregister(ScrollBar
)
2104 ScrollBarNameStr
= cvar
.ScrollBarNameStr
2106 def PreScrollBar(*args
, **kwargs
):
2107 """PreScrollBar() -> ScrollBar"""
2108 val
= _controls_
.new_PreScrollBar(*args
, **kwargs
)
2111 def ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
):
2113 ScrollBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2115 Get the default attributes for this class. This is useful if you want
2116 to use the same font or colour in your own control as in a standard
2117 control -- which is a much better idea than hard coding specific
2118 colours or fonts which might look completely out of place on the
2119 user's system, especially if it uses themes.
2121 The variant parameter is only relevant under Mac currently and is
2122 ignore under other platforms. Under Mac, it will change the size of
2123 the returned font. See `wx.Window.SetWindowVariant` for more about
2126 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
2128 #---------------------------------------------------------------------------
2130 SP_HORIZONTAL
= _controls_
.SP_HORIZONTAL
2131 SP_VERTICAL
= _controls_
.SP_VERTICAL
2132 SP_ARROW_KEYS
= _controls_
.SP_ARROW_KEYS
2133 SP_WRAP
= _controls_
.SP_WRAP
2134 class SpinButton(_core
.Control
):
2135 """Proxy of C++ SpinButton class"""
2136 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2137 __repr__
= _swig_repr
2138 def __init__(self
, *args
, **kwargs
):
2140 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2141 Size size=DefaultSize, long style=SP_HORIZONTAL,
2142 String name=SPIN_BUTTON_NAME) -> SpinButton
2144 _controls_
.SpinButton_swiginit(self
,_controls_
.new_SpinButton(*args
, **kwargs
))
2145 self
._setOORInfo
(self
)
2147 def Create(*args
, **kwargs
):
2149 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2150 Size size=DefaultSize, long style=SP_HORIZONTAL,
2151 String name=SPIN_BUTTON_NAME) -> bool
2153 return _controls_
.SpinButton_Create(*args
, **kwargs
)
2155 def GetValue(*args
, **kwargs
):
2156 """GetValue(self) -> int"""
2157 return _controls_
.SpinButton_GetValue(*args
, **kwargs
)
2159 def GetMin(*args
, **kwargs
):
2160 """GetMin(self) -> int"""
2161 return _controls_
.SpinButton_GetMin(*args
, **kwargs
)
2163 def GetMax(*args
, **kwargs
):
2164 """GetMax(self) -> int"""
2165 return _controls_
.SpinButton_GetMax(*args
, **kwargs
)
2167 def SetValue(*args
, **kwargs
):
2168 """SetValue(self, int val)"""
2169 return _controls_
.SpinButton_SetValue(*args
, **kwargs
)
2171 def SetMin(*args
, **kwargs
):
2172 """SetMin(self, int minVal)"""
2173 return _controls_
.SpinButton_SetMin(*args
, **kwargs
)
2175 def SetMax(*args
, **kwargs
):
2176 """SetMax(self, int maxVal)"""
2177 return _controls_
.SpinButton_SetMax(*args
, **kwargs
)
2179 def SetRange(*args
, **kwargs
):
2180 """SetRange(self, int minVal, int maxVal)"""
2181 return _controls_
.SpinButton_SetRange(*args
, **kwargs
)
2183 def IsVertical(*args
, **kwargs
):
2184 """IsVertical(self) -> bool"""
2185 return _controls_
.SpinButton_IsVertical(*args
, **kwargs
)
2187 def GetClassDefaultAttributes(*args
, **kwargs
):
2189 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2191 Get the default attributes for this class. This is useful if you want
2192 to use the same font or colour in your own control as in a standard
2193 control -- which is a much better idea than hard coding specific
2194 colours or fonts which might look completely out of place on the
2195 user's system, especially if it uses themes.
2197 The variant parameter is only relevant under Mac currently and is
2198 ignore under other platforms. Under Mac, it will change the size of
2199 the returned font. See `wx.Window.SetWindowVariant` for more about
2202 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2204 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2205 Max
= property(GetMax
,SetMax
,doc
="See `GetMax` and `SetMax`")
2206 Min
= property(GetMin
,SetMin
,doc
="See `GetMin` and `SetMin`")
2207 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
2208 _controls_
.SpinButton_swigregister(SpinButton
)
2209 SPIN_BUTTON_NAME
= cvar
.SPIN_BUTTON_NAME
2210 SpinCtrlNameStr
= cvar
.SpinCtrlNameStr
2212 def PreSpinButton(*args
, **kwargs
):
2213 """PreSpinButton() -> SpinButton"""
2214 val
= _controls_
.new_PreSpinButton(*args
, **kwargs
)
2217 def SpinButton_GetClassDefaultAttributes(*args
, **kwargs
):
2219 SpinButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2221 Get the default attributes for this class. This is useful if you want
2222 to use the same font or colour in your own control as in a standard
2223 control -- which is a much better idea than hard coding specific
2224 colours or fonts which might look completely out of place on the
2225 user's system, especially if it uses themes.
2227 The variant parameter is only relevant under Mac currently and is
2228 ignore under other platforms. Under Mac, it will change the size of
2229 the returned font. See `wx.Window.SetWindowVariant` for more about
2232 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2234 class SpinCtrl(_core
.Control
):
2235 """Proxy of C++ SpinCtrl class"""
2236 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2237 __repr__
= _swig_repr
2238 def __init__(self
, *args
, **kwargs
):
2240 __init__(self, Window parent, int id=-1, String value=EmptyString,
2241 Point pos=DefaultPosition, Size size=DefaultSize,
2242 long style=SP_ARROW_KEYS, int min=0, int max=100,
2243 int initial=0, String name=SpinCtrlNameStr) -> SpinCtrl
2245 _controls_
.SpinCtrl_swiginit(self
,_controls_
.new_SpinCtrl(*args
, **kwargs
))
2246 self
._setOORInfo
(self
)
2248 def Create(*args
, **kwargs
):
2250 Create(self, Window parent, int id=-1, String value=EmptyString,
2251 Point pos=DefaultPosition, Size size=DefaultSize,
2252 long style=SP_ARROW_KEYS, int min=0, int max=100,
2253 int initial=0, String name=SpinCtrlNameStr) -> bool
2255 return _controls_
.SpinCtrl_Create(*args
, **kwargs
)
2257 def GetValue(*args
, **kwargs
):
2258 """GetValue(self) -> int"""
2259 return _controls_
.SpinCtrl_GetValue(*args
, **kwargs
)
2261 def SetValue(*args
, **kwargs
):
2262 """SetValue(self, int value)"""
2263 return _controls_
.SpinCtrl_SetValue(*args
, **kwargs
)
2265 def SetValueString(*args
, **kwargs
):
2266 """SetValueString(self, String text)"""
2267 return _controls_
.SpinCtrl_SetValueString(*args
, **kwargs
)
2269 def SetRange(*args
, **kwargs
):
2270 """SetRange(self, int minVal, int maxVal)"""
2271 return _controls_
.SpinCtrl_SetRange(*args
, **kwargs
)
2273 def GetMin(*args
, **kwargs
):
2274 """GetMin(self) -> int"""
2275 return _controls_
.SpinCtrl_GetMin(*args
, **kwargs
)
2277 def GetMax(*args
, **kwargs
):
2278 """GetMax(self) -> int"""
2279 return _controls_
.SpinCtrl_GetMax(*args
, **kwargs
)
2281 def SetSelection(*args
, **kwargs
):
2282 """SetSelection(self, long from, long to)"""
2283 return _controls_
.SpinCtrl_SetSelection(*args
, **kwargs
)
2285 def GetClassDefaultAttributes(*args
, **kwargs
):
2287 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2289 Get the default attributes for this class. This is useful if you want
2290 to use the same font or colour in your own control as in a standard
2291 control -- which is a much better idea than hard coding specific
2292 colours or fonts which might look completely out of place on the
2293 user's system, especially if it uses themes.
2295 The variant parameter is only relevant under Mac currently and is
2296 ignore under other platforms. Under Mac, it will change the size of
2297 the returned font. See `wx.Window.SetWindowVariant` for more about
2300 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2302 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2303 Max
= property(GetMax
,doc
="See `GetMax`")
2304 Min
= property(GetMin
,doc
="See `GetMin`")
2305 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
2306 _controls_
.SpinCtrl_swigregister(SpinCtrl
)
2308 def PreSpinCtrl(*args
, **kwargs
):
2309 """PreSpinCtrl() -> SpinCtrl"""
2310 val
= _controls_
.new_PreSpinCtrl(*args
, **kwargs
)
2313 def SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
2315 SpinCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2317 Get the default attributes for this class. This is useful if you want
2318 to use the same font or colour in your own control as in a standard
2319 control -- which is a much better idea than hard coding specific
2320 colours or fonts which might look completely out of place on the
2321 user's system, especially if it uses themes.
2323 The variant parameter is only relevant under Mac currently and is
2324 ignore under other platforms. Under Mac, it will change the size of
2325 the returned font. See `wx.Window.SetWindowVariant` for more about
2328 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2330 class SpinEvent(_core
.NotifyEvent
):
2331 """Proxy of C++ SpinEvent class"""
2332 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2333 __repr__
= _swig_repr
2334 def __init__(self
, *args
, **kwargs
):
2335 """__init__(self, EventType commandType=wxEVT_NULL, int winid=0) -> SpinEvent"""
2336 _controls_
.SpinEvent_swiginit(self
,_controls_
.new_SpinEvent(*args
, **kwargs
))
2337 def GetPosition(*args
, **kwargs
):
2338 """GetPosition(self) -> int"""
2339 return _controls_
.SpinEvent_GetPosition(*args
, **kwargs
)
2341 def SetPosition(*args
, **kwargs
):
2342 """SetPosition(self, int pos)"""
2343 return _controls_
.SpinEvent_SetPosition(*args
, **kwargs
)
2345 Position
= property(GetPosition
,SetPosition
,doc
="See `GetPosition` and `SetPosition`")
2346 _controls_
.SpinEvent_swigregister(SpinEvent
)
2348 wxEVT_COMMAND_SPINCTRL_UPDATED
= _controls_
.wxEVT_COMMAND_SPINCTRL_UPDATED
2349 EVT_SPIN_UP
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEUP
, 1)
2350 EVT_SPIN_DOWN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEDOWN
, 1)
2351 EVT_SPIN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_THUMBTRACK
, 1)
2352 EVT_SPINCTRL
= wx
.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED
, 1)
2354 #---------------------------------------------------------------------------
2356 class RadioBox(_core
.Control
):
2357 """Proxy of C++ RadioBox class"""
2358 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2359 __repr__
= _swig_repr
2360 def __init__(self
, *args
, **kwargs
):
2362 __init__(self, Window parent, int id=-1, String label=EmptyString,
2363 Point pos=DefaultPosition, Size size=DefaultSize,
2364 wxArrayString choices=wxPyEmptyStringArray,
2365 int majorDimension=0, long style=RA_HORIZONTAL,
2366 Validator validator=DefaultValidator,
2367 String name=RadioBoxNameStr) -> RadioBox
2369 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2370 _controls_
.RadioBox_swiginit(self
,_controls_
.new_RadioBox(*args
, **kwargs
))
2371 self
._setOORInfo
(self
)
2373 def Create(*args
, **kwargs
):
2375 Create(self, Window parent, int id=-1, String label=EmptyString,
2376 Point pos=DefaultPosition, Size size=DefaultSize,
2377 wxArrayString choices=wxPyEmptyStringArray,
2378 int majorDimension=0, long style=RA_HORIZONTAL,
2379 Validator validator=DefaultValidator,
2380 String name=RadioBoxNameStr) -> bool
2382 return _controls_
.RadioBox_Create(*args
, **kwargs
)
2384 def SetSelection(*args
, **kwargs
):
2385 """SetSelection(self, int n)"""
2386 return _controls_
.RadioBox_SetSelection(*args
, **kwargs
)
2388 def GetSelection(*args
, **kwargs
):
2389 """GetSelection(self) -> int"""
2390 return _controls_
.RadioBox_GetSelection(*args
, **kwargs
)
2392 def GetStringSelection(*args
, **kwargs
):
2393 """GetStringSelection(self) -> String"""
2394 return _controls_
.RadioBox_GetStringSelection(*args
, **kwargs
)
2396 def SetStringSelection(*args
, **kwargs
):
2397 """SetStringSelection(self, String s) -> bool"""
2398 return _controls_
.RadioBox_SetStringSelection(*args
, **kwargs
)
2400 def GetCount(*args
, **kwargs
):
2401 """GetCount(self) -> size_t"""
2402 return _controls_
.RadioBox_GetCount(*args
, **kwargs
)
2404 def FindString(*args
, **kwargs
):
2405 """FindString(self, String s) -> int"""
2406 return _controls_
.RadioBox_FindString(*args
, **kwargs
)
2408 def GetString(*args
, **kwargs
):
2409 """GetString(self, int n) -> String"""
2410 return _controls_
.RadioBox_GetString(*args
, **kwargs
)
2412 def SetString(*args
, **kwargs
):
2413 """SetString(self, int n, String label)"""
2414 return _controls_
.RadioBox_SetString(*args
, **kwargs
)
2416 GetItemLabel
= GetString
2417 SetItemLabel
= SetString
2418 def EnableItem(*args
, **kwargs
):
2419 """EnableItem(self, unsigned int n, bool enable=True)"""
2420 return _controls_
.RadioBox_EnableItem(*args
, **kwargs
)
2422 def ShowItem(*args
, **kwargs
):
2423 """ShowItem(self, unsigned int n, bool show=True)"""
2424 return _controls_
.RadioBox_ShowItem(*args
, **kwargs
)
2426 def IsItemEnabled(*args
, **kwargs
):
2427 """IsItemEnabled(self, unsigned int n) -> bool"""
2428 return _controls_
.RadioBox_IsItemEnabled(*args
, **kwargs
)
2430 def IsItemShown(*args
, **kwargs
):
2431 """IsItemShown(self, unsigned int n) -> bool"""
2432 return _controls_
.RadioBox_IsItemShown(*args
, **kwargs
)
2434 def GetColumnCount(*args
, **kwargs
):
2435 """GetColumnCount(self) -> unsigned int"""
2436 return _controls_
.RadioBox_GetColumnCount(*args
, **kwargs
)
2438 def GetRowCount(*args
, **kwargs
):
2439 """GetRowCount(self) -> unsigned int"""
2440 return _controls_
.RadioBox_GetRowCount(*args
, **kwargs
)
2442 def GetNextItem(*args
, **kwargs
):
2443 """GetNextItem(self, int item, int dir, long style) -> int"""
2444 return _controls_
.RadioBox_GetNextItem(*args
, **kwargs
)
2446 def SetItemToolTip(*args
, **kwargs
):
2447 """SetItemToolTip(self, unsigned int item, String text)"""
2448 return _controls_
.RadioBox_SetItemToolTip(*args
, **kwargs
)
2450 def GetItemToolTip(*args
, **kwargs
):
2451 """GetItemToolTip(self, unsigned int item) -> ToolTip"""
2452 return _controls_
.RadioBox_GetItemToolTip(*args
, **kwargs
)
2454 def SetItemHelpText(*args
, **kwargs
):
2455 """SetItemHelpText(self, unsigned int n, String helpText)"""
2456 return _controls_
.RadioBox_SetItemHelpText(*args
, **kwargs
)
2458 def GetItemHelpText(*args
, **kwargs
):
2459 """GetItemHelpText(self, unsigned int n) -> String"""
2460 return _controls_
.RadioBox_GetItemHelpText(*args
, **kwargs
)
2462 def GetClassDefaultAttributes(*args
, **kwargs
):
2464 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2466 Get the default attributes for this class. This is useful if you want
2467 to use the same font or colour in your own control as in a standard
2468 control -- which is a much better idea than hard coding specific
2469 colours or fonts which might look completely out of place on the
2470 user's system, especially if it uses themes.
2472 The variant parameter is only relevant under Mac currently and is
2473 ignore under other platforms. Under Mac, it will change the size of
2474 the returned font. See `wx.Window.SetWindowVariant` for more about
2477 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2479 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2480 ColumnCount
= property(GetColumnCount
,doc
="See `GetColumnCount`")
2481 Count
= property(GetCount
,doc
="See `GetCount`")
2482 RowCount
= property(GetRowCount
,doc
="See `GetRowCount`")
2483 Selection
= property(GetSelection
,SetSelection
,doc
="See `GetSelection` and `SetSelection`")
2484 StringSelection
= property(GetStringSelection
,SetStringSelection
,doc
="See `GetStringSelection` and `SetStringSelection`")
2485 _controls_
.RadioBox_swigregister(RadioBox
)
2486 RadioBoxNameStr
= cvar
.RadioBoxNameStr
2487 RadioButtonNameStr
= cvar
.RadioButtonNameStr
2489 def PreRadioBox(*args
, **kwargs
):
2490 """PreRadioBox() -> RadioBox"""
2491 val
= _controls_
.new_PreRadioBox(*args
, **kwargs
)
2494 def RadioBox_GetClassDefaultAttributes(*args
, **kwargs
):
2496 RadioBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2498 Get the default attributes for this class. This is useful if you want
2499 to use the same font or colour in your own control as in a standard
2500 control -- which is a much better idea than hard coding specific
2501 colours or fonts which might look completely out of place on the
2502 user's system, especially if it uses themes.
2504 The variant parameter is only relevant under Mac currently and is
2505 ignore under other platforms. Under Mac, it will change the size of
2506 the returned font. See `wx.Window.SetWindowVariant` for more about
2509 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2511 #---------------------------------------------------------------------------
2513 class RadioButton(_core
.Control
):
2514 """Proxy of C++ RadioButton class"""
2515 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2516 __repr__
= _swig_repr
2517 def __init__(self
, *args
, **kwargs
):
2519 __init__(self, Window parent, int id=-1, String label=EmptyString,
2520 Point pos=DefaultPosition, Size size=DefaultSize,
2521 long style=0, Validator validator=DefaultValidator,
2522 String name=RadioButtonNameStr) -> RadioButton
2524 _controls_
.RadioButton_swiginit(self
,_controls_
.new_RadioButton(*args
, **kwargs
))
2525 self
._setOORInfo
(self
)
2527 def Create(*args
, **kwargs
):
2529 Create(self, Window parent, int id=-1, String label=EmptyString,
2530 Point pos=DefaultPosition, Size size=DefaultSize,
2531 long style=0, Validator validator=DefaultValidator,
2532 String name=RadioButtonNameStr) -> bool
2534 return _controls_
.RadioButton_Create(*args
, **kwargs
)
2536 def GetValue(*args
, **kwargs
):
2537 """GetValue(self) -> bool"""
2538 return _controls_
.RadioButton_GetValue(*args
, **kwargs
)
2540 def SetValue(*args
, **kwargs
):
2541 """SetValue(self, bool value)"""
2542 return _controls_
.RadioButton_SetValue(*args
, **kwargs
)
2544 def GetClassDefaultAttributes(*args
, **kwargs
):
2546 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2548 Get the default attributes for this class. This is useful if you want
2549 to use the same font or colour in your own control as in a standard
2550 control -- which is a much better idea than hard coding specific
2551 colours or fonts which might look completely out of place on the
2552 user's system, especially if it uses themes.
2554 The variant parameter is only relevant under Mac currently and is
2555 ignore under other platforms. Under Mac, it will change the size of
2556 the returned font. See `wx.Window.SetWindowVariant` for more about
2559 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2561 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2562 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
2563 _controls_
.RadioButton_swigregister(RadioButton
)
2565 def PreRadioButton(*args
, **kwargs
):
2566 """PreRadioButton() -> RadioButton"""
2567 val
= _controls_
.new_PreRadioButton(*args
, **kwargs
)
2570 def RadioButton_GetClassDefaultAttributes(*args
, **kwargs
):
2572 RadioButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2574 Get the default attributes for this class. This is useful if you want
2575 to use the same font or colour in your own control as in a standard
2576 control -- which is a much better idea than hard coding specific
2577 colours or fonts which might look completely out of place on the
2578 user's system, especially if it uses themes.
2580 The variant parameter is only relevant under Mac currently and is
2581 ignore under other platforms. Under Mac, it will change the size of
2582 the returned font. See `wx.Window.SetWindowVariant` for more about
2585 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2587 #---------------------------------------------------------------------------
2589 SL_HORIZONTAL
= _controls_
.SL_HORIZONTAL
2590 SL_VERTICAL
= _controls_
.SL_VERTICAL
2591 SL_TICKS
= _controls_
.SL_TICKS
2592 SL_AUTOTICKS
= _controls_
.SL_AUTOTICKS
2593 SL_LABELS
= _controls_
.SL_LABELS
2594 SL_LEFT
= _controls_
.SL_LEFT
2595 SL_TOP
= _controls_
.SL_TOP
2596 SL_RIGHT
= _controls_
.SL_RIGHT
2597 SL_BOTTOM
= _controls_
.SL_BOTTOM
2598 SL_BOTH
= _controls_
.SL_BOTH
2599 SL_SELRANGE
= _controls_
.SL_SELRANGE
2600 SL_INVERSE
= _controls_
.SL_INVERSE
2601 class Slider(_core
.Control
):
2602 """Proxy of C++ Slider class"""
2603 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2604 __repr__
= _swig_repr
2605 def __init__(self
, *args
, **kwargs
):
2607 __init__(self, Window parent, int id=-1, int value=0, int minValue=0,
2608 int maxValue=100, Point pos=DefaultPosition,
2609 Size size=DefaultSize, long style=SL_HORIZONTAL,
2610 Validator validator=DefaultValidator,
2611 String name=SliderNameStr) -> Slider
2613 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2614 _controls_
.Slider_swiginit(self
,_controls_
.new_Slider(*args
, **kwargs
))
2615 self
._setOORInfo
(self
)
2617 def Create(*args
, **kwargs
):
2619 Create(self, Window parent, int id=-1, int value=0, int minValue=0,
2620 int maxValue=100, Point pos=DefaultPosition,
2621 Size size=DefaultSize, long style=SL_HORIZONTAL,
2622 Validator validator=DefaultValidator,
2623 String name=SliderNameStr) -> bool
2625 return _controls_
.Slider_Create(*args
, **kwargs
)
2627 def GetValue(*args
, **kwargs
):
2628 """GetValue(self) -> int"""
2629 return _controls_
.Slider_GetValue(*args
, **kwargs
)
2631 def SetValue(*args
, **kwargs
):
2632 """SetValue(self, int value)"""
2633 return _controls_
.Slider_SetValue(*args
, **kwargs
)
2635 def SetRange(*args
, **kwargs
):
2636 """SetRange(self, int minValue, int maxValue)"""
2637 return _controls_
.Slider_SetRange(*args
, **kwargs
)
2639 def GetMin(*args
, **kwargs
):
2640 """GetMin(self) -> int"""
2641 return _controls_
.Slider_GetMin(*args
, **kwargs
)
2643 def GetMax(*args
, **kwargs
):
2644 """GetMax(self) -> int"""
2645 return _controls_
.Slider_GetMax(*args
, **kwargs
)
2647 def SetMin(*args
, **kwargs
):
2648 """SetMin(self, int minValue)"""
2649 return _controls_
.Slider_SetMin(*args
, **kwargs
)
2651 def SetMax(*args
, **kwargs
):
2652 """SetMax(self, int maxValue)"""
2653 return _controls_
.Slider_SetMax(*args
, **kwargs
)
2655 def SetLineSize(*args
, **kwargs
):
2656 """SetLineSize(self, int lineSize)"""
2657 return _controls_
.Slider_SetLineSize(*args
, **kwargs
)
2659 def SetPageSize(*args
, **kwargs
):
2660 """SetPageSize(self, int pageSize)"""
2661 return _controls_
.Slider_SetPageSize(*args
, **kwargs
)
2663 def GetLineSize(*args
, **kwargs
):
2664 """GetLineSize(self) -> int"""
2665 return _controls_
.Slider_GetLineSize(*args
, **kwargs
)
2667 def GetPageSize(*args
, **kwargs
):
2668 """GetPageSize(self) -> int"""
2669 return _controls_
.Slider_GetPageSize(*args
, **kwargs
)
2671 def SetThumbLength(*args
, **kwargs
):
2672 """SetThumbLength(self, int lenPixels)"""
2673 return _controls_
.Slider_SetThumbLength(*args
, **kwargs
)
2675 def GetThumbLength(*args
, **kwargs
):
2676 """GetThumbLength(self) -> int"""
2677 return _controls_
.Slider_GetThumbLength(*args
, **kwargs
)
2679 def SetTickFreq(*args
, **kwargs
):
2680 """SetTickFreq(self, int n, int pos=1)"""
2681 return _controls_
.Slider_SetTickFreq(*args
, **kwargs
)
2683 def GetTickFreq(*args
, **kwargs
):
2684 """GetTickFreq(self) -> int"""
2685 return _controls_
.Slider_GetTickFreq(*args
, **kwargs
)
2687 def ClearTicks(*args
, **kwargs
):
2688 """ClearTicks(self)"""
2689 return _controls_
.Slider_ClearTicks(*args
, **kwargs
)
2691 def SetTick(*args
, **kwargs
):
2692 """SetTick(self, int tickPos)"""
2693 return _controls_
.Slider_SetTick(*args
, **kwargs
)
2695 def ClearSel(*args
, **kwargs
):
2696 """ClearSel(self)"""
2697 return _controls_
.Slider_ClearSel(*args
, **kwargs
)
2699 def GetSelEnd(*args
, **kwargs
):
2700 """GetSelEnd(self) -> int"""
2701 return _controls_
.Slider_GetSelEnd(*args
, **kwargs
)
2703 def GetSelStart(*args
, **kwargs
):
2704 """GetSelStart(self) -> int"""
2705 return _controls_
.Slider_GetSelStart(*args
, **kwargs
)
2707 def SetSelection(*args
, **kwargs
):
2708 """SetSelection(self, int min, int max)"""
2709 return _controls_
.Slider_SetSelection(*args
, **kwargs
)
2711 def GetClassDefaultAttributes(*args
, **kwargs
):
2713 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2715 Get the default attributes for this class. This is useful if you want
2716 to use the same font or colour in your own control as in a standard
2717 control -- which is a much better idea than hard coding specific
2718 colours or fonts which might look completely out of place on the
2719 user's system, especially if it uses themes.
2721 The variant parameter is only relevant under Mac currently and is
2722 ignore under other platforms. Under Mac, it will change the size of
2723 the returned font. See `wx.Window.SetWindowVariant` for more about
2726 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2728 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2729 LineSize
= property(GetLineSize
,SetLineSize
,doc
="See `GetLineSize` and `SetLineSize`")
2730 Max
= property(GetMax
,SetMax
,doc
="See `GetMax` and `SetMax`")
2731 Min
= property(GetMin
,SetMin
,doc
="See `GetMin` and `SetMin`")
2732 PageSize
= property(GetPageSize
,SetPageSize
,doc
="See `GetPageSize` and `SetPageSize`")
2733 SelEnd
= property(GetSelEnd
,doc
="See `GetSelEnd`")
2734 SelStart
= property(GetSelStart
,doc
="See `GetSelStart`")
2735 ThumbLength
= property(GetThumbLength
,SetThumbLength
,doc
="See `GetThumbLength` and `SetThumbLength`")
2736 TickFreq
= property(GetTickFreq
,SetTickFreq
,doc
="See `GetTickFreq` and `SetTickFreq`")
2737 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
2738 _controls_
.Slider_swigregister(Slider
)
2739 SliderNameStr
= cvar
.SliderNameStr
2741 def PreSlider(*args
, **kwargs
):
2742 """PreSlider() -> Slider"""
2743 val
= _controls_
.new_PreSlider(*args
, **kwargs
)
2746 def Slider_GetClassDefaultAttributes(*args
, **kwargs
):
2748 Slider_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2750 Get the default attributes for this class. This is useful if you want
2751 to use the same font or colour in your own control as in a standard
2752 control -- which is a much better idea than hard coding specific
2753 colours or fonts which might look completely out of place on the
2754 user's system, especially if it uses themes.
2756 The variant parameter is only relevant under Mac currently and is
2757 ignore under other platforms. Under Mac, it will change the size of
2758 the returned font. See `wx.Window.SetWindowVariant` for more about
2761 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2763 #---------------------------------------------------------------------------
2765 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
= _controls_
.wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
2766 EVT_TOGGLEBUTTON
= wx
.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
, 1)
2768 class ToggleButton(_core
.Control
):
2769 """Proxy of C++ ToggleButton class"""
2770 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2771 __repr__
= _swig_repr
2772 def __init__(self
, *args
, **kwargs
):
2774 __init__(self, Window parent, int id=-1, String label=EmptyString,
2775 Point pos=DefaultPosition, Size size=DefaultSize,
2776 long style=0, Validator validator=DefaultValidator,
2777 String name=ToggleButtonNameStr) -> ToggleButton
2779 _controls_
.ToggleButton_swiginit(self
,_controls_
.new_ToggleButton(*args
, **kwargs
))
2780 self
._setOORInfo
(self
)
2782 def Create(*args
, **kwargs
):
2784 Create(self, Window parent, int id=-1, String label=EmptyString,
2785 Point pos=DefaultPosition, Size size=DefaultSize,
2786 long style=0, Validator validator=DefaultValidator,
2787 String name=ToggleButtonNameStr) -> bool
2789 return _controls_
.ToggleButton_Create(*args
, **kwargs
)
2791 def SetValue(*args
, **kwargs
):
2792 """SetValue(self, bool value)"""
2793 return _controls_
.ToggleButton_SetValue(*args
, **kwargs
)
2795 def GetValue(*args
, **kwargs
):
2796 """GetValue(self) -> bool"""
2797 return _controls_
.ToggleButton_GetValue(*args
, **kwargs
)
2799 def GetClassDefaultAttributes(*args
, **kwargs
):
2801 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2803 Get the default attributes for this class. This is useful if you want
2804 to use the same font or colour in your own control as in a standard
2805 control -- which is a much better idea than hard coding specific
2806 colours or fonts which might look completely out of place on the
2807 user's system, especially if it uses themes.
2809 The variant parameter is only relevant under Mac currently and is
2810 ignore under other platforms. Under Mac, it will change the size of
2811 the returned font. See `wx.Window.SetWindowVariant` for more about
2814 return _controls_
.ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
)
2816 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2817 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
2818 _controls_
.ToggleButton_swigregister(ToggleButton
)
2819 ToggleButtonNameStr
= cvar
.ToggleButtonNameStr
2821 def PreToggleButton(*args
, **kwargs
):
2822 """PreToggleButton() -> ToggleButton"""
2823 val
= _controls_
.new_PreToggleButton(*args
, **kwargs
)
2826 def ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
):
2828 ToggleButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2830 Get the default attributes for this class. This is useful if you want
2831 to use the same font or colour in your own control as in a standard
2832 control -- which is a much better idea than hard coding specific
2833 colours or fonts which might look completely out of place on the
2834 user's system, especially if it uses themes.
2836 The variant parameter is only relevant under Mac currently and is
2837 ignore under other platforms. Under Mac, it will change the size of
2838 the returned font. See `wx.Window.SetWindowVariant` for more about
2841 return _controls_
.ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
)
2843 #---------------------------------------------------------------------------
2845 BK_DEFAULT
= _controls_
.BK_DEFAULT
2846 BK_TOP
= _controls_
.BK_TOP
2847 BK_BOTTOM
= _controls_
.BK_BOTTOM
2848 BK_LEFT
= _controls_
.BK_LEFT
2849 BK_RIGHT
= _controls_
.BK_RIGHT
2850 BK_ALIGN_MASK
= _controls_
.BK_ALIGN_MASK
2851 BK_BUTTONBAR
= _controls_
.BK_BUTTONBAR
2852 BK_HITTEST_NOWHERE
= _controls_
.BK_HITTEST_NOWHERE
2853 BK_HITTEST_ONICON
= _controls_
.BK_HITTEST_ONICON
2854 BK_HITTEST_ONLABEL
= _controls_
.BK_HITTEST_ONLABEL
2855 BK_HITTEST_ONITEM
= _controls_
.BK_HITTEST_ONITEM
2856 BK_HITTEST_ONPAGE
= _controls_
.BK_HITTEST_ONPAGE
2857 class BookCtrlBase(_core
.Control
):
2858 """Proxy of C++ BookCtrlBase class"""
2859 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2860 def __init__(self
): raise AttributeError, "No constructor defined"
2861 __repr__
= _swig_repr
2862 def GetPageCount(*args
, **kwargs
):
2863 """GetPageCount(self) -> size_t"""
2864 return _controls_
.BookCtrlBase_GetPageCount(*args
, **kwargs
)
2866 def GetPage(*args
, **kwargs
):
2867 """GetPage(self, size_t n) -> Window"""
2868 return _controls_
.BookCtrlBase_GetPage(*args
, **kwargs
)
2870 def GetCurrentPage(*args
, **kwargs
):
2871 """GetCurrentPage(self) -> Window"""
2872 return _controls_
.BookCtrlBase_GetCurrentPage(*args
, **kwargs
)
2874 def GetSelection(*args
, **kwargs
):
2875 """GetSelection(self) -> int"""
2876 return _controls_
.BookCtrlBase_GetSelection(*args
, **kwargs
)
2878 def SetPageText(*args
, **kwargs
):
2879 """SetPageText(self, size_t n, String strText) -> bool"""
2880 return _controls_
.BookCtrlBase_SetPageText(*args
, **kwargs
)
2882 def GetPageText(*args
, **kwargs
):
2883 """GetPageText(self, size_t n) -> String"""
2884 return _controls_
.BookCtrlBase_GetPageText(*args
, **kwargs
)
2886 def SetImageList(*args
, **kwargs
):
2887 """SetImageList(self, ImageList imageList)"""
2888 return _controls_
.BookCtrlBase_SetImageList(*args
, **kwargs
)
2890 def AssignImageList(*args
, **kwargs
):
2891 """AssignImageList(self, ImageList imageList)"""
2892 return _controls_
.BookCtrlBase_AssignImageList(*args
, **kwargs
)
2894 def GetImageList(*args
, **kwargs
):
2895 """GetImageList(self) -> ImageList"""
2896 return _controls_
.BookCtrlBase_GetImageList(*args
, **kwargs
)
2898 def GetPageImage(*args
, **kwargs
):
2899 """GetPageImage(self, size_t n) -> int"""
2900 return _controls_
.BookCtrlBase_GetPageImage(*args
, **kwargs
)
2902 def SetPageImage(*args
, **kwargs
):
2903 """SetPageImage(self, size_t n, int imageId) -> bool"""
2904 return _controls_
.BookCtrlBase_SetPageImage(*args
, **kwargs
)
2906 def SetPageSize(*args
, **kwargs
):
2907 """SetPageSize(self, Size size)"""
2908 return _controls_
.BookCtrlBase_SetPageSize(*args
, **kwargs
)
2910 def CalcSizeFromPage(*args
, **kwargs
):
2911 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2912 return _controls_
.BookCtrlBase_CalcSizeFromPage(*args
, **kwargs
)
2914 def GetInternalBorder(*args
, **kwargs
):
2915 """GetInternalBorder(self) -> unsigned int"""
2916 return _controls_
.BookCtrlBase_GetInternalBorder(*args
, **kwargs
)
2918 def SetInternalBorder(*args
, **kwargs
):
2919 """SetInternalBorder(self, unsigned int internalBorder)"""
2920 return _controls_
.BookCtrlBase_SetInternalBorder(*args
, **kwargs
)
2922 def IsVertical(*args
, **kwargs
):
2923 """IsVertical(self) -> bool"""
2924 return _controls_
.BookCtrlBase_IsVertical(*args
, **kwargs
)
2926 def SetControlMargin(*args
, **kwargs
):
2927 """SetControlMargin(self, int margin)"""
2928 return _controls_
.BookCtrlBase_SetControlMargin(*args
, **kwargs
)
2930 def GetControlMargin(*args
, **kwargs
):
2931 """GetControlMargin(self) -> int"""
2932 return _controls_
.BookCtrlBase_GetControlMargin(*args
, **kwargs
)
2934 def SetFitToCurrentPage(*args
, **kwargs
):
2935 """SetFitToCurrentPage(self, bool fit)"""
2936 return _controls_
.BookCtrlBase_SetFitToCurrentPage(*args
, **kwargs
)
2938 def GetFitToCurrentPage(*args
, **kwargs
):
2939 """GetFitToCurrentPage(self) -> bool"""
2940 return _controls_
.BookCtrlBase_GetFitToCurrentPage(*args
, **kwargs
)
2942 def GetControlSizer(*args
, **kwargs
):
2943 """GetControlSizer(self) -> Sizer"""
2944 return _controls_
.BookCtrlBase_GetControlSizer(*args
, **kwargs
)
2946 def DeletePage(*args
, **kwargs
):
2947 """DeletePage(self, size_t n) -> bool"""
2948 return _controls_
.BookCtrlBase_DeletePage(*args
, **kwargs
)
2950 def RemovePage(*args
, **kwargs
):
2951 """RemovePage(self, size_t n) -> bool"""
2952 return _controls_
.BookCtrlBase_RemovePage(*args
, **kwargs
)
2954 def DeleteAllPages(*args
, **kwargs
):
2955 """DeleteAllPages(self) -> bool"""
2956 return _controls_
.BookCtrlBase_DeleteAllPages(*args
, **kwargs
)
2958 def AddPage(*args
, **kwargs
):
2959 """AddPage(self, Window page, String text, bool select=False, int imageId=-1) -> bool"""
2960 return _controls_
.BookCtrlBase_AddPage(*args
, **kwargs
)
2962 def InsertPage(*args
, **kwargs
):
2964 InsertPage(self, size_t n, Window page, String text, bool select=False,
2965 int imageId=-1) -> bool
2967 return _controls_
.BookCtrlBase_InsertPage(*args
, **kwargs
)
2969 def SetSelection(*args
, **kwargs
):
2970 """SetSelection(self, size_t n) -> int"""
2971 return _controls_
.BookCtrlBase_SetSelection(*args
, **kwargs
)
2973 def ChangeSelection(*args
, **kwargs
):
2974 """ChangeSelection(self, size_t n) -> int"""
2975 return _controls_
.BookCtrlBase_ChangeSelection(*args
, **kwargs
)
2977 def AdvanceSelection(*args
, **kwargs
):
2978 """AdvanceSelection(self, bool forward=True)"""
2979 return _controls_
.BookCtrlBase_AdvanceSelection(*args
, **kwargs
)
2981 def HitTest(*args
, **kwargs
):
2983 HitTest(Point pt) -> (tab, where)
2985 Returns the page/tab which is hit, and flags indicating where using
2986 wx.NB_HITTEST flags.
2988 return _controls_
.BookCtrlBase_HitTest(*args
, **kwargs
)
2990 def GetClassDefaultAttributes(*args
, **kwargs
):
2992 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2994 Get the default attributes for this class. This is useful if you want
2995 to use the same font or colour in your own control as in a standard
2996 control -- which is a much better idea than hard coding specific
2997 colours or fonts which might look completely out of place on the
2998 user's system, especially if it uses themes.
3000 The variant parameter is only relevant under Mac currently and is
3001 ignore under other platforms. Under Mac, it will change the size of
3002 the returned font. See `wx.Window.SetWindowVariant` for more about
3005 return _controls_
.BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
)
3007 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3008 ControlMargin
= property(GetControlMargin
,SetControlMargin
,doc
="See `GetControlMargin` and `SetControlMargin`")
3009 ControlSizer
= property(GetControlSizer
,doc
="See `GetControlSizer`")
3010 CurrentPage
= property(GetCurrentPage
,doc
="See `GetCurrentPage`")
3011 FitToCurrentPage
= property(GetFitToCurrentPage
,SetFitToCurrentPage
,doc
="See `GetFitToCurrentPage` and `SetFitToCurrentPage`")
3012 ImageList
= property(GetImageList
,SetImageList
,doc
="See `GetImageList` and `SetImageList`")
3013 InternalBorder
= property(GetInternalBorder
,SetInternalBorder
,doc
="See `GetInternalBorder` and `SetInternalBorder`")
3014 Page
= property(GetPage
,doc
="See `GetPage`")
3015 PageCount
= property(GetPageCount
,doc
="See `GetPageCount`")
3016 PageImage
= property(GetPageImage
,SetPageImage
,doc
="See `GetPageImage` and `SetPageImage`")
3017 PageText
= property(GetPageText
,SetPageText
,doc
="See `GetPageText` and `SetPageText`")
3018 Selection
= property(GetSelection
,SetSelection
,doc
="See `GetSelection` and `SetSelection`")
3019 _controls_
.BookCtrlBase_swigregister(BookCtrlBase
)
3020 NotebookNameStr
= cvar
.NotebookNameStr
3022 def BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
):
3024 BookCtrlBase_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3026 Get the default attributes for this class. This is useful if you want
3027 to use the same font or colour in your own control as in a standard
3028 control -- which is a much better idea than hard coding specific
3029 colours or fonts which might look completely out of place on the
3030 user's system, especially if it uses themes.
3032 The variant parameter is only relevant under Mac currently and is
3033 ignore under other platforms. Under Mac, it will change the size of
3034 the returned font. See `wx.Window.SetWindowVariant` for more about
3037 return _controls_
.BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
)
3039 class BookCtrlBaseEvent(_core
.NotifyEvent
):
3040 """Proxy of C++ BookCtrlBaseEvent class"""
3041 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3042 __repr__
= _swig_repr
3043 def __init__(self
, *args
, **kwargs
):
3045 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3046 int nOldSel=-1) -> BookCtrlBaseEvent
3048 _controls_
.BookCtrlBaseEvent_swiginit(self
,_controls_
.new_BookCtrlBaseEvent(*args
, **kwargs
))
3049 def GetSelection(*args
, **kwargs
):
3051 GetSelection(self) -> int
3053 Returns item index for a listbox or choice selection event (not valid
3056 return _controls_
.BookCtrlBaseEvent_GetSelection(*args
, **kwargs
)
3058 def SetSelection(*args
, **kwargs
):
3059 """SetSelection(self, int nSel)"""
3060 return _controls_
.BookCtrlBaseEvent_SetSelection(*args
, **kwargs
)
3062 def GetOldSelection(*args
, **kwargs
):
3063 """GetOldSelection(self) -> int"""
3064 return _controls_
.BookCtrlBaseEvent_GetOldSelection(*args
, **kwargs
)
3066 def SetOldSelection(*args
, **kwargs
):
3067 """SetOldSelection(self, int nOldSel)"""
3068 return _controls_
.BookCtrlBaseEvent_SetOldSelection(*args
, **kwargs
)
3070 OldSelection
= property(GetOldSelection
,SetOldSelection
,doc
="See `GetOldSelection` and `SetOldSelection`")
3071 Selection
= property(GetSelection
,SetSelection
,doc
="See `GetSelection` and `SetSelection`")
3072 _controls_
.BookCtrlBaseEvent_swigregister(BookCtrlBaseEvent
)
3074 #---------------------------------------------------------------------------
3076 NB_FIXEDWIDTH
= _controls_
.NB_FIXEDWIDTH
3077 NB_TOP
= _controls_
.NB_TOP
3078 NB_LEFT
= _controls_
.NB_LEFT
3079 NB_RIGHT
= _controls_
.NB_RIGHT
3080 NB_BOTTOM
= _controls_
.NB_BOTTOM
3081 NB_MULTILINE
= _controls_
.NB_MULTILINE
3082 NB_NOPAGETHEME
= _controls_
.NB_NOPAGETHEME
3083 NB_HITTEST_NOWHERE
= _controls_
.NB_HITTEST_NOWHERE
3084 NB_HITTEST_ONICON
= _controls_
.NB_HITTEST_ONICON
3085 NB_HITTEST_ONLABEL
= _controls_
.NB_HITTEST_ONLABEL
3086 NB_HITTEST_ONITEM
= _controls_
.NB_HITTEST_ONITEM
3087 NB_HITTEST_ONPAGE
= _controls_
.NB_HITTEST_ONPAGE
3088 class Notebook(BookCtrlBase
):
3089 """Proxy of C++ Notebook class"""
3090 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3091 __repr__
= _swig_repr
3092 def __init__(self
, *args
, **kwargs
):
3094 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3095 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> Notebook
3097 _controls_
.Notebook_swiginit(self
,_controls_
.new_Notebook(*args
, **kwargs
))
3098 self
._setOORInfo
(self
)
3100 def Create(*args
, **kwargs
):
3102 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3103 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> bool
3105 return _controls_
.Notebook_Create(*args
, **kwargs
)
3107 def GetRowCount(*args
, **kwargs
):
3108 """GetRowCount(self) -> int"""
3109 return _controls_
.Notebook_GetRowCount(*args
, **kwargs
)
3111 def SetPadding(*args
, **kwargs
):
3112 """SetPadding(self, Size padding)"""
3113 return _controls_
.Notebook_SetPadding(*args
, **kwargs
)
3115 def SetTabSize(*args
, **kwargs
):
3116 """SetTabSize(self, Size sz)"""
3117 return _controls_
.Notebook_SetTabSize(*args
, **kwargs
)
3119 def GetThemeBackgroundColour(*args
, **kwargs
):
3120 """GetThemeBackgroundColour(self) -> Colour"""
3121 return _controls_
.Notebook_GetThemeBackgroundColour(*args
, **kwargs
)
3123 def GetClassDefaultAttributes(*args
, **kwargs
):
3125 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3127 Get the default attributes for this class. This is useful if you want
3128 to use the same font or colour in your own control as in a standard
3129 control -- which is a much better idea than hard coding specific
3130 colours or fonts which might look completely out of place on the
3131 user's system, especially if it uses themes.
3133 The variant parameter is only relevant under Mac currently and is
3134 ignore under other platforms. Under Mac, it will change the size of
3135 the returned font. See `wx.Window.SetWindowVariant` for more about
3138 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
3140 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3141 def SendPageChangingEvent(*args
, **kwargs
):
3142 """SendPageChangingEvent(self, int nPage) -> bool"""
3143 return _controls_
.Notebook_SendPageChangingEvent(*args
, **kwargs
)
3145 def SendPageChangedEvent(*args
, **kwargs
):
3146 """SendPageChangedEvent(self, int nPageOld, int nPageNew=-1)"""
3147 return _controls_
.Notebook_SendPageChangedEvent(*args
, **kwargs
)
3149 RowCount
= property(GetRowCount
,doc
="See `GetRowCount`")
3150 ThemeBackgroundColour
= property(GetThemeBackgroundColour
,doc
="See `GetThemeBackgroundColour`")
3151 _controls_
.Notebook_swigregister(Notebook
)
3153 def PreNotebook(*args
, **kwargs
):
3154 """PreNotebook() -> Notebook"""
3155 val
= _controls_
.new_PreNotebook(*args
, **kwargs
)
3158 def Notebook_GetClassDefaultAttributes(*args
, **kwargs
):
3160 Notebook_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3162 Get the default attributes for this class. This is useful if you want
3163 to use the same font or colour in your own control as in a standard
3164 control -- which is a much better idea than hard coding specific
3165 colours or fonts which might look completely out of place on the
3166 user's system, especially if it uses themes.
3168 The variant parameter is only relevant under Mac currently and is
3169 ignore under other platforms. Under Mac, it will change the size of
3170 the returned font. See `wx.Window.SetWindowVariant` for more about
3173 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
3175 class NotebookEvent(BookCtrlBaseEvent
):
3176 """Proxy of C++ NotebookEvent 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) -> NotebookEvent
3184 _controls_
.NotebookEvent_swiginit(self
,_controls_
.new_NotebookEvent(*args
, **kwargs
))
3185 _controls_
.NotebookEvent_swigregister(NotebookEvent
)
3187 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
3188 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
3190 EVT_NOTEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, 1 )
3191 EVT_NOTEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, 1 )
3193 #----------------------------------------------------------------------------
3195 class NotebookPage(wx
.Panel
):
3197 There is an old (and apparently unsolvable) bug when placing a
3198 window with a nonstandard background colour in a wx.Notebook on
3199 wxGTK1, as the notbooks's background colour would always be used
3200 when the window is refreshed. The solution is to place a panel in
3201 the notbook and the coloured window on the panel, sized to cover
3202 the panel. This simple class does that for you, just put an
3203 instance of this in the notebook and make your regular window a
3204 child of this one and it will handle the resize for you.
3206 def __init__(self
, parent
, id=-1,
3207 pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
,
3208 style
=wx
.TAB_TRAVERSAL
, name
="panel"):
3209 wx
.Panel
.__init
__(self
, parent
, id, pos
, size
, style
, name
)
3211 self
.Bind(wx
.EVT_SIZE
, self
.OnSize
)
3213 def OnSize(self
, evt
):
3214 if self
.child
is None:
3215 children
= self
.GetChildren()
3217 self
.child
= children
[0]
3219 self
.child
.SetPosition((0,0))
3220 self
.child
.SetSize(self
.GetSize())
3223 #---------------------------------------------------------------------------
3225 LB_DEFAULT
= _controls_
.LB_DEFAULT
3226 LB_TOP
= _controls_
.LB_TOP
3227 LB_BOTTOM
= _controls_
.LB_BOTTOM
3228 LB_LEFT
= _controls_
.LB_LEFT
3229 LB_RIGHT
= _controls_
.LB_RIGHT
3230 LB_ALIGN_MASK
= _controls_
.LB_ALIGN_MASK
3231 class Listbook(BookCtrlBase
):
3232 """Proxy of C++ Listbook class"""
3233 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3234 __repr__
= _swig_repr
3235 def __init__(self
, *args
, **kwargs
):
3237 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3238 Size size=DefaultSize, long style=0, String name=EmptyString) -> Listbook
3240 _controls_
.Listbook_swiginit(self
,_controls_
.new_Listbook(*args
, **kwargs
))
3241 self
._setOORInfo
(self
)
3243 def Create(*args
, **kwargs
):
3245 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3246 Size size=DefaultSize, long style=0, String name=EmptyString) -> bool
3248 return _controls_
.Listbook_Create(*args
, **kwargs
)
3250 def GetListView(*args
, **kwargs
):
3251 """GetListView(self) -> ListView"""
3252 return _controls_
.Listbook_GetListView(*args
, **kwargs
)
3254 ListView
= property(GetListView
,doc
="See `GetListView`")
3255 _controls_
.Listbook_swigregister(Listbook
)
3257 def PreListbook(*args
, **kwargs
):
3258 """PreListbook() -> Listbook"""
3259 val
= _controls_
.new_PreListbook(*args
, **kwargs
)
3262 class ListbookEvent(BookCtrlBaseEvent
):
3263 """Proxy of C++ ListbookEvent class"""
3264 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3265 __repr__
= _swig_repr
3266 def __init__(self
, *args
, **kwargs
):
3268 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3269 int nOldSel=-1) -> ListbookEvent
3271 _controls_
.ListbookEvent_swiginit(self
,_controls_
.new_ListbookEvent(*args
, **kwargs
))
3272 _controls_
.ListbookEvent_swigregister(ListbookEvent
)
3274 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
3275 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
3276 EVT_LISTBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
, 1 )
3277 EVT_LISTBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
, 1 )
3279 CHB_DEFAULT
= _controls_
.CHB_DEFAULT
3280 CHB_TOP
= _controls_
.CHB_TOP
3281 CHB_BOTTOM
= _controls_
.CHB_BOTTOM
3282 CHB_LEFT
= _controls_
.CHB_LEFT
3283 CHB_RIGHT
= _controls_
.CHB_RIGHT
3284 CHB_ALIGN_MASK
= _controls_
.CHB_ALIGN_MASK
3285 class Choicebook(BookCtrlBase
):
3286 """Proxy of C++ Choicebook class"""
3287 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3288 __repr__
= _swig_repr
3289 def __init__(self
, *args
, **kwargs
):
3291 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3292 long style=0, String name=EmptyString) -> Choicebook
3294 _controls_
.Choicebook_swiginit(self
,_controls_
.new_Choicebook(*args
, **kwargs
))
3295 self
._setOORInfo
(self
)
3297 def Create(*args
, **kwargs
):
3299 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3300 long style=0, String name=EmptyString) -> bool
3302 return _controls_
.Choicebook_Create(*args
, **kwargs
)
3304 def GetChoiceCtrl(*args
, **kwargs
):
3305 """GetChoiceCtrl(self) -> Choice"""
3306 return _controls_
.Choicebook_GetChoiceCtrl(*args
, **kwargs
)
3308 ChoiceCtrl
= property(GetChoiceCtrl
,doc
="See `GetChoiceCtrl`")
3309 _controls_
.Choicebook_swigregister(Choicebook
)
3311 def PreChoicebook(*args
, **kwargs
):
3312 """PreChoicebook() -> Choicebook"""
3313 val
= _controls_
.new_PreChoicebook(*args
, **kwargs
)
3316 class ChoicebookEvent(BookCtrlBaseEvent
):
3317 """Proxy of C++ ChoicebookEvent class"""
3318 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3319 __repr__
= _swig_repr
3320 def __init__(self
, *args
, **kwargs
):
3322 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3323 int nOldSel=-1) -> ChoicebookEvent
3325 _controls_
.ChoicebookEvent_swiginit(self
,_controls_
.new_ChoicebookEvent(*args
, **kwargs
))
3326 _controls_
.ChoicebookEvent_swigregister(ChoicebookEvent
)
3328 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
3329 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
3330 EVT_CHOICEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
, 1 )
3331 EVT_CHOICEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
, 1 )
3333 #---------------------------------------------------------------------------
3335 class Treebook(BookCtrlBase
):
3336 """Proxy of C++ Treebook class"""
3337 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3338 __repr__
= _swig_repr
3339 def __init__(self
, *args
, **kwargs
):
3341 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3342 long style=BK_DEFAULT,
3343 String name=EmptyString) -> Treebook
3345 _controls_
.Treebook_swiginit(self
,_controls_
.new_Treebook(*args
, **kwargs
))
3346 self
._setOORInfo
(self
)
3348 def Create(*args
, **kwargs
):
3350 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3351 long style=BK_DEFAULT,
3352 String name=EmptyString) -> bool
3354 return _controls_
.Treebook_Create(*args
, **kwargs
)
3356 def InsertSubPage(*args
, **kwargs
):
3358 InsertSubPage(self, size_t pos, Window page, String text, bool select=False,
3359 int imageId=NOT_FOUND) -> bool
3361 return _controls_
.Treebook_InsertSubPage(*args
, **kwargs
)
3363 def AddSubPage(*args
, **kwargs
):
3364 """AddSubPage(self, Window page, String text, bool select=False, int imageId=NOT_FOUND) -> bool"""
3365 return _controls_
.Treebook_AddSubPage(*args
, **kwargs
)
3367 def IsNodeExpanded(*args
, **kwargs
):
3368 """IsNodeExpanded(self, size_t pos) -> bool"""
3369 return _controls_
.Treebook_IsNodeExpanded(*args
, **kwargs
)
3371 def ExpandNode(*args
, **kwargs
):
3372 """ExpandNode(self, size_t pos, bool expand=True) -> bool"""
3373 return _controls_
.Treebook_ExpandNode(*args
, **kwargs
)
3375 def CollapseNode(*args
, **kwargs
):
3376 """CollapseNode(self, size_t pos) -> bool"""
3377 return _controls_
.Treebook_CollapseNode(*args
, **kwargs
)
3379 def GetPageParent(*args
, **kwargs
):
3380 """GetPageParent(self, size_t pos) -> int"""
3381 return _controls_
.Treebook_GetPageParent(*args
, **kwargs
)
3383 def GetTreeCtrl(*args
, **kwargs
):
3384 """GetTreeCtrl(self) -> TreeCtrl"""
3385 return _controls_
.Treebook_GetTreeCtrl(*args
, **kwargs
)
3387 TreeCtrl
= property(GetTreeCtrl
,doc
="See `GetTreeCtrl`")
3388 _controls_
.Treebook_swigregister(Treebook
)
3390 def PreTreebook(*args
, **kwargs
):
3391 """PreTreebook() -> Treebook"""
3392 val
= _controls_
.new_PreTreebook(*args
, **kwargs
)
3395 class TreebookEvent(BookCtrlBaseEvent
):
3396 """Proxy of C++ TreebookEvent class"""
3397 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3398 __repr__
= _swig_repr
3399 def __init__(self
, *args
, **kwargs
):
3401 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=NOT_FOUND,
3402 int nOldSel=NOT_FOUND) -> TreebookEvent
3404 _controls_
.TreebookEvent_swiginit(self
,_controls_
.new_TreebookEvent(*args
, **kwargs
))
3405 _controls_
.TreebookEvent_swigregister(TreebookEvent
)
3407 wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
3408 wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
3409 wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
3410 wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
= _controls_
.wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
3411 EVT_TREEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
, 1 )
3412 EVT_TREEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
, 1)
3413 EVT_TREEBOOK_NODE_COLLAPSED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
, 1 )
3414 EVT_TREEBOOK_NODE_EXPANDED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
, 1 )
3416 #---------------------------------------------------------------------------
3418 class Toolbook(BookCtrlBase
):
3419 """Proxy of C++ Toolbook class"""
3420 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3421 __repr__
= _swig_repr
3422 def __init__(self
, *args
, **kwargs
):
3424 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3425 long style=BK_DEFAULT,
3426 String name=EmptyString) -> Toolbook
3428 _controls_
.Toolbook_swiginit(self
,_controls_
.new_Toolbook(*args
, **kwargs
))
3429 self
._setOORInfo
(self
)
3431 def Create(*args
, **kwargs
):
3433 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3434 long style=0, String name=wxEmptyString) -> bool
3436 return _controls_
.Toolbook_Create(*args
, **kwargs
)
3438 def GetToolBar(*args
, **kwargs
):
3439 """GetToolBar(self) -> ToolBarBase"""
3440 return _controls_
.Toolbook_GetToolBar(*args
, **kwargs
)
3442 def Realize(*args
, **kwargs
):
3444 return _controls_
.Toolbook_Realize(*args
, **kwargs
)
3446 ToolBar
= property(GetToolBar
,doc
="See `GetToolBar`")
3447 _controls_
.Toolbook_swigregister(Toolbook
)
3449 def PreToolbook(*args
, **kwargs
):
3450 """PreToolbook() -> Toolbook"""
3451 val
= _controls_
.new_PreToolbook(*args
, **kwargs
)
3454 class ToolbookEvent(BookCtrlBaseEvent
):
3455 """Proxy of C++ ToolbookEvent class"""
3456 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3457 __repr__
= _swig_repr
3458 def __init__(self
, *args
, **kwargs
):
3460 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=NOT_FOUND,
3461 int nOldSel=NOT_FOUND) -> ToolbookEvent
3463 _controls_
.ToolbookEvent_swiginit(self
,_controls_
.new_ToolbookEvent(*args
, **kwargs
))
3464 _controls_
.ToolbookEvent_swigregister(ToolbookEvent
)
3466 wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
3467 wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
3468 EVT_TOOLBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
, 1)
3469 EVT_TOOLBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
, 1)
3471 #---------------------------------------------------------------------------
3473 TOOL_STYLE_BUTTON
= _controls_
.TOOL_STYLE_BUTTON
3474 TOOL_STYLE_SEPARATOR
= _controls_
.TOOL_STYLE_SEPARATOR
3475 TOOL_STYLE_CONTROL
= _controls_
.TOOL_STYLE_CONTROL
3476 TB_HORIZONTAL
= _controls_
.TB_HORIZONTAL
3477 TB_VERTICAL
= _controls_
.TB_VERTICAL
3478 TB_TOP
= _controls_
.TB_TOP
3479 TB_LEFT
= _controls_
.TB_LEFT
3480 TB_BOTTOM
= _controls_
.TB_BOTTOM
3481 TB_RIGHT
= _controls_
.TB_RIGHT
3482 TB_3DBUTTONS
= _controls_
.TB_3DBUTTONS
3483 TB_FLAT
= _controls_
.TB_FLAT
3484 TB_DOCKABLE
= _controls_
.TB_DOCKABLE
3485 TB_NOICONS
= _controls_
.TB_NOICONS
3486 TB_TEXT
= _controls_
.TB_TEXT
3487 TB_NODIVIDER
= _controls_
.TB_NODIVIDER
3488 TB_NOALIGN
= _controls_
.TB_NOALIGN
3489 TB_HORZ_LAYOUT
= _controls_
.TB_HORZ_LAYOUT
3490 TB_HORZ_TEXT
= _controls_
.TB_HORZ_TEXT
3491 TB_NO_TOOLTIPS
= _controls_
.TB_NO_TOOLTIPS
3492 class ToolBarToolBase(_core
.Object
):
3493 """Proxy of C++ ToolBarToolBase class"""
3494 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3495 def __init__(self
): raise AttributeError, "No constructor defined"
3496 __repr__
= _swig_repr
3497 def GetId(*args
, **kwargs
):
3498 """GetId(self) -> int"""
3499 return _controls_
.ToolBarToolBase_GetId(*args
, **kwargs
)
3501 def GetControl(*args
, **kwargs
):
3502 """GetControl(self) -> Control"""
3503 return _controls_
.ToolBarToolBase_GetControl(*args
, **kwargs
)
3505 def GetToolBar(*args
, **kwargs
):
3506 """GetToolBar(self) -> ToolBarBase"""
3507 return _controls_
.ToolBarToolBase_GetToolBar(*args
, **kwargs
)
3509 def IsButton(*args
, **kwargs
):
3510 """IsButton(self) -> int"""
3511 return _controls_
.ToolBarToolBase_IsButton(*args
, **kwargs
)
3513 def IsControl(*args
, **kwargs
):
3514 """IsControl(self) -> int"""
3515 return _controls_
.ToolBarToolBase_IsControl(*args
, **kwargs
)
3517 def IsSeparator(*args
, **kwargs
):
3518 """IsSeparator(self) -> int"""
3519 return _controls_
.ToolBarToolBase_IsSeparator(*args
, **kwargs
)
3521 def GetStyle(*args
, **kwargs
):
3522 """GetStyle(self) -> int"""
3523 return _controls_
.ToolBarToolBase_GetStyle(*args
, **kwargs
)
3525 def GetKind(*args
, **kwargs
):
3526 """GetKind(self) -> int"""
3527 return _controls_
.ToolBarToolBase_GetKind(*args
, **kwargs
)
3529 def IsEnabled(*args
, **kwargs
):
3530 """IsEnabled(self) -> bool"""
3531 return _controls_
.ToolBarToolBase_IsEnabled(*args
, **kwargs
)
3533 def IsToggled(*args
, **kwargs
):
3534 """IsToggled(self) -> bool"""
3535 return _controls_
.ToolBarToolBase_IsToggled(*args
, **kwargs
)
3537 def CanBeToggled(*args
, **kwargs
):
3538 """CanBeToggled(self) -> bool"""
3539 return _controls_
.ToolBarToolBase_CanBeToggled(*args
, **kwargs
)
3541 def GetNormalBitmap(*args
, **kwargs
):
3542 """GetNormalBitmap(self) -> Bitmap"""
3543 return _controls_
.ToolBarToolBase_GetNormalBitmap(*args
, **kwargs
)
3545 def GetDisabledBitmap(*args
, **kwargs
):
3546 """GetDisabledBitmap(self) -> Bitmap"""
3547 return _controls_
.ToolBarToolBase_GetDisabledBitmap(*args
, **kwargs
)
3549 def GetBitmap(*args
, **kwargs
):
3550 """GetBitmap(self) -> Bitmap"""
3551 return _controls_
.ToolBarToolBase_GetBitmap(*args
, **kwargs
)
3553 def GetLabel(*args
, **kwargs
):
3554 """GetLabel(self) -> String"""
3555 return _controls_
.ToolBarToolBase_GetLabel(*args
, **kwargs
)
3557 def GetShortHelp(*args
, **kwargs
):
3558 """GetShortHelp(self) -> String"""
3559 return _controls_
.ToolBarToolBase_GetShortHelp(*args
, **kwargs
)
3561 def GetLongHelp(*args
, **kwargs
):
3562 """GetLongHelp(self) -> String"""
3563 return _controls_
.ToolBarToolBase_GetLongHelp(*args
, **kwargs
)
3565 def Enable(*args
, **kwargs
):
3566 """Enable(self, bool enable) -> bool"""
3567 return _controls_
.ToolBarToolBase_Enable(*args
, **kwargs
)
3569 def Toggle(*args
, **kwargs
):
3571 return _controls_
.ToolBarToolBase_Toggle(*args
, **kwargs
)
3573 def SetToggle(*args
, **kwargs
):
3574 """SetToggle(self, bool toggle) -> bool"""
3575 return _controls_
.ToolBarToolBase_SetToggle(*args
, **kwargs
)
3577 def SetShortHelp(*args
, **kwargs
):
3578 """SetShortHelp(self, String help) -> bool"""
3579 return _controls_
.ToolBarToolBase_SetShortHelp(*args
, **kwargs
)
3581 def SetLongHelp(*args
, **kwargs
):
3582 """SetLongHelp(self, String help) -> bool"""
3583 return _controls_
.ToolBarToolBase_SetLongHelp(*args
, **kwargs
)
3585 def SetNormalBitmap(*args
, **kwargs
):
3586 """SetNormalBitmap(self, Bitmap bmp)"""
3587 return _controls_
.ToolBarToolBase_SetNormalBitmap(*args
, **kwargs
)
3589 def SetDisabledBitmap(*args
, **kwargs
):
3590 """SetDisabledBitmap(self, Bitmap bmp)"""
3591 return _controls_
.ToolBarToolBase_SetDisabledBitmap(*args
, **kwargs
)
3593 def SetLabel(*args
, **kwargs
):
3594 """SetLabel(self, String label)"""
3595 return _controls_
.ToolBarToolBase_SetLabel(*args
, **kwargs
)
3597 def Detach(*args
, **kwargs
):
3599 return _controls_
.ToolBarToolBase_Detach(*args
, **kwargs
)
3601 def Attach(*args
, **kwargs
):
3602 """Attach(self, ToolBarBase tbar)"""
3603 return _controls_
.ToolBarToolBase_Attach(*args
, **kwargs
)
3605 def GetClientData(*args
, **kwargs
):
3606 """GetClientData(self) -> PyObject"""
3607 return _controls_
.ToolBarToolBase_GetClientData(*args
, **kwargs
)
3609 def SetClientData(*args
, **kwargs
):
3610 """SetClientData(self, PyObject clientData)"""
3611 return _controls_
.ToolBarToolBase_SetClientData(*args
, **kwargs
)
3613 GetBitmap1
= GetNormalBitmap
3614 GetBitmap2
= GetDisabledBitmap
3615 SetBitmap1
= SetNormalBitmap
3616 SetBitmap2
= SetDisabledBitmap
3618 Bitmap
= property(GetBitmap
,doc
="See `GetBitmap`")
3619 ClientData
= property(GetClientData
,SetClientData
,doc
="See `GetClientData` and `SetClientData`")
3620 Control
= property(GetControl
,doc
="See `GetControl`")
3621 DisabledBitmap
= property(GetDisabledBitmap
,SetDisabledBitmap
,doc
="See `GetDisabledBitmap` and `SetDisabledBitmap`")
3622 Id
= property(GetId
,doc
="See `GetId`")
3623 Kind
= property(GetKind
,doc
="See `GetKind`")
3624 Label
= property(GetLabel
,SetLabel
,doc
="See `GetLabel` and `SetLabel`")
3625 LongHelp
= property(GetLongHelp
,SetLongHelp
,doc
="See `GetLongHelp` and `SetLongHelp`")
3626 NormalBitmap
= property(GetNormalBitmap
,SetNormalBitmap
,doc
="See `GetNormalBitmap` and `SetNormalBitmap`")
3627 ShortHelp
= property(GetShortHelp
,SetShortHelp
,doc
="See `GetShortHelp` and `SetShortHelp`")
3628 Style
= property(GetStyle
,doc
="See `GetStyle`")
3629 ToolBar
= property(GetToolBar
,doc
="See `GetToolBar`")
3630 _controls_
.ToolBarToolBase_swigregister(ToolBarToolBase
)
3632 class ToolBarBase(_core
.Control
):
3633 """Proxy of C++ ToolBarBase class"""
3634 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3635 def __init__(self
): raise AttributeError, "No constructor defined"
3636 __repr__
= _swig_repr
3637 def DoAddTool(*args
, **kwargs
):
3639 DoAddTool(self, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3640 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
3641 String longHelp=EmptyString,
3642 PyObject clientData=None) -> ToolBarToolBase
3644 return _controls_
.ToolBarBase_DoAddTool(*args
, **kwargs
)
3646 def DoInsertTool(*args
, **kwargs
):
3648 DoInsertTool(self, size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3649 int kind=ITEM_NORMAL,
3650 String shortHelp=EmptyString, String longHelp=EmptyString,
3651 PyObject clientData=None) -> ToolBarToolBase
3653 return _controls_
.ToolBarBase_DoInsertTool(*args
, **kwargs
)
3655 # These match the original Add methods for this class, kept for
3656 # backwards compatibility with versions < 2.3.3.
3659 def AddTool(self
, id, bitmap
,
3660 pushedBitmap
= wx
.NullBitmap
,
3663 shortHelpString
= '',
3664 longHelpString
= '') :
3665 '''Old style method to add a tool to the toolbar.'''
3666 kind
= wx
.ITEM_NORMAL
3667 if isToggle
: kind
= wx
.ITEM_CHECK
3668 return self
.DoAddTool(id, '', bitmap
, pushedBitmap
, kind
,
3669 shortHelpString
, longHelpString
, clientData
)
3671 def AddSimpleTool(self
, id, bitmap
,
3672 shortHelpString
= '',
3673 longHelpString
= '',
3675 '''Old style method to add a tool to the toolbar.'''
3676 kind
= wx
.ITEM_NORMAL
3677 if isToggle
: kind
= wx
.ITEM_CHECK
3678 return self
.DoAddTool(id, '', bitmap
, wx
.NullBitmap
, kind
,
3679 shortHelpString
, longHelpString
, None)
3681 def InsertTool(self
, pos
, id, bitmap
,
3682 pushedBitmap
= wx
.NullBitmap
,
3685 shortHelpString
= '',
3686 longHelpString
= ''):
3687 '''Old style method to insert a tool in the toolbar.'''
3688 kind
= wx
.ITEM_NORMAL
3689 if isToggle
: kind
= wx
.ITEM_CHECK
3690 return self
.DoInsertTool(pos
, id, '', bitmap
, pushedBitmap
, kind
,
3691 shortHelpString
, longHelpString
, clientData
)
3693 def InsertSimpleTool(self
, pos
, id, bitmap
,
3694 shortHelpString
= '',
3695 longHelpString
= '',
3697 '''Old style method to insert a tool in the toolbar.'''
3698 kind
= wx
.ITEM_NORMAL
3699 if isToggle
: kind
= wx
.ITEM_CHECK
3700 return self
.DoInsertTool(pos
, id, '', bitmap
, wx
.NullBitmap
, kind
,
3701 shortHelpString
, longHelpString
, None)
3704 # The following are the new toolbar Add methods starting with
3705 # 2.3.3. They are renamed to have 'Label' in the name so as to be
3706 # able to keep backwards compatibility with using the above
3707 # methods. Eventually these should migrate to be the methods used
3708 # primarily and lose the 'Label' in the name...
3710 def AddLabelTool(self
, id, label
, bitmap
,
3711 bmpDisabled
= wx
.NullBitmap
,
3712 kind
= wx
.ITEM_NORMAL
,
3713 shortHelp
= '', longHelp
= '',
3716 The full AddTool() function.
3718 If bmpDisabled is wx.NullBitmap, a shadowed version of the normal bitmap
3719 is created and used as the disabled image.
3721 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, kind
,
3722 shortHelp
, longHelp
, clientData
)
3725 def InsertLabelTool(self
, pos
, id, label
, bitmap
,
3726 bmpDisabled
= wx
.NullBitmap
,
3727 kind
= wx
.ITEM_NORMAL
,
3728 shortHelp
= '', longHelp
= '',
3731 Insert the new tool at the given position, if pos == GetToolsCount(), it
3732 is equivalent to AddTool()
3734 return self
.DoInsertTool(pos
, id, label
, bitmap
, bmpDisabled
, kind
,
3735 shortHelp
, longHelp
, clientData
)
3737 def AddCheckLabelTool(self
, id, label
, bitmap
,
3738 bmpDisabled
= wx
.NullBitmap
,
3739 shortHelp
= '', longHelp
= '',
3741 '''Add a check tool, i.e. a tool which can be toggled'''
3742 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3743 shortHelp
, longHelp
, clientData
)
3745 def AddRadioLabelTool(self
, id, label
, bitmap
,
3746 bmpDisabled
= wx
.NullBitmap
,
3747 shortHelp
= '', longHelp
= '',
3750 Add a radio tool, i.e. a tool which can be toggled and releases any
3751 other toggled radio tools in the same group when it happens
3753 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3754 shortHelp
, longHelp
, clientData
)
3757 # For consistency with the backwards compatible methods above, here are
3758 # some non-'Label' versions of the Check and Radio methods
3760 def AddCheckTool(self
, id, bitmap
,
3761 bmpDisabled
= wx
.NullBitmap
,
3762 shortHelp
= '', longHelp
= '',
3764 '''Add a check tool, i.e. a tool which can be toggled'''
3765 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3766 shortHelp
, longHelp
, clientData
)
3768 def AddRadioTool(self
, id, bitmap
,
3769 bmpDisabled
= wx
.NullBitmap
,
3770 shortHelp
= '', longHelp
= '',
3773 Add a radio tool, i.e. a tool which can be toggled and releases any
3774 other toggled radio tools in the same group when it happens
3776 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3777 shortHelp
, longHelp
, clientData
)
3779 def AddToolItem(*args
, **kwargs
):
3780 """AddToolItem(self, ToolBarToolBase tool) -> ToolBarToolBase"""
3781 return _controls_
.ToolBarBase_AddToolItem(*args
, **kwargs
)
3783 def InsertToolItem(*args
, **kwargs
):
3784 """InsertToolItem(self, size_t pos, ToolBarToolBase tool) -> ToolBarToolBase"""
3785 return _controls_
.ToolBarBase_InsertToolItem(*args
, **kwargs
)
3787 def AddControl(*args
, **kwargs
):
3788 """AddControl(self, Control control) -> ToolBarToolBase"""
3789 return _controls_
.ToolBarBase_AddControl(*args
, **kwargs
)
3791 def InsertControl(*args
, **kwargs
):
3792 """InsertControl(self, size_t pos, Control control) -> ToolBarToolBase"""
3793 return _controls_
.ToolBarBase_InsertControl(*args
, **kwargs
)
3795 def FindControl(*args
, **kwargs
):
3796 """FindControl(self, int id) -> Control"""
3797 return _controls_
.ToolBarBase_FindControl(*args
, **kwargs
)
3799 def AddSeparator(*args
, **kwargs
):
3800 """AddSeparator(self) -> ToolBarToolBase"""
3801 return _controls_
.ToolBarBase_AddSeparator(*args
, **kwargs
)
3803 def InsertSeparator(*args
, **kwargs
):
3804 """InsertSeparator(self, size_t pos) -> ToolBarToolBase"""
3805 return _controls_
.ToolBarBase_InsertSeparator(*args
, **kwargs
)
3807 def RemoveTool(*args
, **kwargs
):
3808 """RemoveTool(self, int id) -> ToolBarToolBase"""
3809 return _controls_
.ToolBarBase_RemoveTool(*args
, **kwargs
)
3811 def DeleteToolByPos(*args
, **kwargs
):
3812 """DeleteToolByPos(self, size_t pos) -> bool"""
3813 return _controls_
.ToolBarBase_DeleteToolByPos(*args
, **kwargs
)
3815 def DeleteTool(*args
, **kwargs
):
3816 """DeleteTool(self, int id) -> bool"""
3817 return _controls_
.ToolBarBase_DeleteTool(*args
, **kwargs
)
3819 def ClearTools(*args
, **kwargs
):
3820 """ClearTools(self)"""
3821 return _controls_
.ToolBarBase_ClearTools(*args
, **kwargs
)
3823 def Realize(*args
, **kwargs
):
3824 """Realize(self) -> bool"""
3825 return _controls_
.ToolBarBase_Realize(*args
, **kwargs
)
3827 def EnableTool(*args
, **kwargs
):
3828 """EnableTool(self, int id, bool enable)"""
3829 return _controls_
.ToolBarBase_EnableTool(*args
, **kwargs
)
3831 def ToggleTool(*args
, **kwargs
):
3832 """ToggleTool(self, int id, bool toggle)"""
3833 return _controls_
.ToolBarBase_ToggleTool(*args
, **kwargs
)
3835 def SetToggle(*args
, **kwargs
):
3836 """SetToggle(self, int id, bool toggle)"""
3837 return _controls_
.ToolBarBase_SetToggle(*args
, **kwargs
)
3839 def GetToolClientData(*args
, **kwargs
):
3840 """GetToolClientData(self, int id) -> PyObject"""
3841 return _controls_
.ToolBarBase_GetToolClientData(*args
, **kwargs
)
3843 def SetToolClientData(*args
, **kwargs
):
3844 """SetToolClientData(self, int id, PyObject clientData)"""
3845 return _controls_
.ToolBarBase_SetToolClientData(*args
, **kwargs
)
3847 def GetToolPos(*args
, **kwargs
):
3848 """GetToolPos(self, int id) -> int"""
3849 return _controls_
.ToolBarBase_GetToolPos(*args
, **kwargs
)
3851 def GetToolState(*args
, **kwargs
):
3852 """GetToolState(self, int id) -> bool"""
3853 return _controls_
.ToolBarBase_GetToolState(*args
, **kwargs
)
3855 def GetToolEnabled(*args
, **kwargs
):
3856 """GetToolEnabled(self, int id) -> bool"""
3857 return _controls_
.ToolBarBase_GetToolEnabled(*args
, **kwargs
)
3859 def SetToolShortHelp(*args
, **kwargs
):
3860 """SetToolShortHelp(self, int id, String helpString)"""
3861 return _controls_
.ToolBarBase_SetToolShortHelp(*args
, **kwargs
)
3863 def GetToolShortHelp(*args
, **kwargs
):
3864 """GetToolShortHelp(self, int id) -> String"""
3865 return _controls_
.ToolBarBase_GetToolShortHelp(*args
, **kwargs
)
3867 def SetToolLongHelp(*args
, **kwargs
):
3868 """SetToolLongHelp(self, int id, String helpString)"""
3869 return _controls_
.ToolBarBase_SetToolLongHelp(*args
, **kwargs
)
3871 def GetToolLongHelp(*args
, **kwargs
):
3872 """GetToolLongHelp(self, int id) -> String"""
3873 return _controls_
.ToolBarBase_GetToolLongHelp(*args
, **kwargs
)
3875 def SetMarginsXY(*args
, **kwargs
):
3876 """SetMarginsXY(self, int x, int y)"""
3877 return _controls_
.ToolBarBase_SetMarginsXY(*args
, **kwargs
)
3879 def SetMargins(*args
, **kwargs
):
3880 """SetMargins(self, Size size)"""
3881 return _controls_
.ToolBarBase_SetMargins(*args
, **kwargs
)
3883 def SetToolPacking(*args
, **kwargs
):
3884 """SetToolPacking(self, int packing)"""
3885 return _controls_
.ToolBarBase_SetToolPacking(*args
, **kwargs
)
3887 def SetToolSeparation(*args
, **kwargs
):
3888 """SetToolSeparation(self, int separation)"""
3889 return _controls_
.ToolBarBase_SetToolSeparation(*args
, **kwargs
)
3891 def GetToolMargins(*args
, **kwargs
):
3892 """GetToolMargins(self) -> Size"""
3893 return _controls_
.ToolBarBase_GetToolMargins(*args
, **kwargs
)
3895 def GetMargins(*args
, **kwargs
):
3896 """GetMargins(self) -> Size"""
3897 return _controls_
.ToolBarBase_GetMargins(*args
, **kwargs
)
3899 def GetToolPacking(*args
, **kwargs
):
3900 """GetToolPacking(self) -> int"""
3901 return _controls_
.ToolBarBase_GetToolPacking(*args
, **kwargs
)
3903 def GetToolSeparation(*args
, **kwargs
):
3904 """GetToolSeparation(self) -> int"""
3905 return _controls_
.ToolBarBase_GetToolSeparation(*args
, **kwargs
)
3907 def SetRows(*args
, **kwargs
):
3908 """SetRows(self, int nRows)"""
3909 return _controls_
.ToolBarBase_SetRows(*args
, **kwargs
)
3911 def SetMaxRowsCols(*args
, **kwargs
):
3912 """SetMaxRowsCols(self, int rows, int cols)"""
3913 return _controls_
.ToolBarBase_SetMaxRowsCols(*args
, **kwargs
)
3915 def GetMaxRows(*args
, **kwargs
):
3916 """GetMaxRows(self) -> int"""
3917 return _controls_
.ToolBarBase_GetMaxRows(*args
, **kwargs
)
3919 def GetMaxCols(*args
, **kwargs
):
3920 """GetMaxCols(self) -> int"""
3921 return _controls_
.ToolBarBase_GetMaxCols(*args
, **kwargs
)
3923 def SetToolBitmapSize(*args
, **kwargs
):
3924 """SetToolBitmapSize(self, Size size)"""
3925 return _controls_
.ToolBarBase_SetToolBitmapSize(*args
, **kwargs
)
3927 def GetToolBitmapSize(*args
, **kwargs
):
3928 """GetToolBitmapSize(self) -> Size"""
3929 return _controls_
.ToolBarBase_GetToolBitmapSize(*args
, **kwargs
)
3931 def GetToolSize(*args
, **kwargs
):
3932 """GetToolSize(self) -> Size"""
3933 return _controls_
.ToolBarBase_GetToolSize(*args
, **kwargs
)
3935 def FindToolForPosition(*args
, **kwargs
):
3936 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3937 return _controls_
.ToolBarBase_FindToolForPosition(*args
, **kwargs
)
3939 def FindById(*args
, **kwargs
):
3940 """FindById(self, int toolid) -> ToolBarToolBase"""
3941 return _controls_
.ToolBarBase_FindById(*args
, **kwargs
)
3943 def IsVertical(*args
, **kwargs
):
3944 """IsVertical(self) -> bool"""
3945 return _controls_
.ToolBarBase_IsVertical(*args
, **kwargs
)
3947 def GetToolsCount(*args
, **kwargs
):
3948 """GetToolsCount(self) -> size_t"""
3949 return _controls_
.ToolBarBase_GetToolsCount(*args
, **kwargs
)
3951 Margins
= property(GetMargins
,SetMargins
,doc
="See `GetMargins` and `SetMargins`")
3952 MaxCols
= property(GetMaxCols
,doc
="See `GetMaxCols`")
3953 MaxRows
= property(GetMaxRows
,doc
="See `GetMaxRows`")
3954 ToolBitmapSize
= property(GetToolBitmapSize
,SetToolBitmapSize
,doc
="See `GetToolBitmapSize` and `SetToolBitmapSize`")
3955 ToolMargins
= property(GetToolMargins
,doc
="See `GetToolMargins`")
3956 ToolPacking
= property(GetToolPacking
,SetToolPacking
,doc
="See `GetToolPacking` and `SetToolPacking`")
3957 ToolSeparation
= property(GetToolSeparation
,SetToolSeparation
,doc
="See `GetToolSeparation` and `SetToolSeparation`")
3958 ToolSize
= property(GetToolSize
,doc
="See `GetToolSize`")
3959 ToolsCount
= property(GetToolsCount
,doc
="See `GetToolsCount`")
3960 _controls_
.ToolBarBase_swigregister(ToolBarBase
)
3962 class ToolBar(ToolBarBase
):
3963 """Proxy of C++ ToolBar class"""
3964 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3965 __repr__
= _swig_repr
3966 def __init__(self
, *args
, **kwargs
):
3968 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3969 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
3970 String name=wxPyToolBarNameStr) -> ToolBar
3972 _controls_
.ToolBar_swiginit(self
,_controls_
.new_ToolBar(*args
, **kwargs
))
3973 self
._setOORInfo
(self
)
3975 def Create(*args
, **kwargs
):
3977 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3978 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
3979 String name=wxPyToolBarNameStr) -> bool
3981 return _controls_
.ToolBar_Create(*args
, **kwargs
)
3983 def GetClassDefaultAttributes(*args
, **kwargs
):
3985 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3987 Get the default attributes for this class. This is useful if you want
3988 to use the same font or colour in your own control as in a standard
3989 control -- which is a much better idea than hard coding specific
3990 colours or fonts which might look completely out of place on the
3991 user's system, especially if it uses themes.
3993 The variant parameter is only relevant under Mac currently and is
3994 ignore under other platforms. Under Mac, it will change the size of
3995 the returned font. See `wx.Window.SetWindowVariant` for more about
3998 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
4000 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
4001 _controls_
.ToolBar_swigregister(ToolBar
)
4003 def PreToolBar(*args
, **kwargs
):
4004 """PreToolBar() -> ToolBar"""
4005 val
= _controls_
.new_PreToolBar(*args
, **kwargs
)
4008 def ToolBar_GetClassDefaultAttributes(*args
, **kwargs
):
4010 ToolBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4012 Get the default attributes for this class. This is useful if you want
4013 to use the same font or colour in your own control as in a standard
4014 control -- which is a much better idea than hard coding specific
4015 colours or fonts which might look completely out of place on the
4016 user's system, especially if it uses themes.
4018 The variant parameter is only relevant under Mac currently and is
4019 ignore under other platforms. Under Mac, it will change the size of
4020 the returned font. See `wx.Window.SetWindowVariant` for more about
4023 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
4025 #---------------------------------------------------------------------------
4027 LC_VRULES
= _controls_
.LC_VRULES
4028 LC_HRULES
= _controls_
.LC_HRULES
4029 LC_ICON
= _controls_
.LC_ICON
4030 LC_SMALL_ICON
= _controls_
.LC_SMALL_ICON
4031 LC_LIST
= _controls_
.LC_LIST
4032 LC_REPORT
= _controls_
.LC_REPORT
4033 LC_ALIGN_TOP
= _controls_
.LC_ALIGN_TOP
4034 LC_ALIGN_LEFT
= _controls_
.LC_ALIGN_LEFT
4035 LC_AUTOARRANGE
= _controls_
.LC_AUTOARRANGE
4036 LC_VIRTUAL
= _controls_
.LC_VIRTUAL
4037 LC_EDIT_LABELS
= _controls_
.LC_EDIT_LABELS
4038 LC_NO_HEADER
= _controls_
.LC_NO_HEADER
4039 LC_NO_SORT_HEADER
= _controls_
.LC_NO_SORT_HEADER
4040 LC_SINGLE_SEL
= _controls_
.LC_SINGLE_SEL
4041 LC_SORT_ASCENDING
= _controls_
.LC_SORT_ASCENDING
4042 LC_SORT_DESCENDING
= _controls_
.LC_SORT_DESCENDING
4043 LC_MASK_TYPE
= _controls_
.LC_MASK_TYPE
4044 LC_MASK_ALIGN
= _controls_
.LC_MASK_ALIGN
4045 LC_MASK_SORT
= _controls_
.LC_MASK_SORT
4046 LIST_MASK_STATE
= _controls_
.LIST_MASK_STATE
4047 LIST_MASK_TEXT
= _controls_
.LIST_MASK_TEXT
4048 LIST_MASK_IMAGE
= _controls_
.LIST_MASK_IMAGE
4049 LIST_MASK_DATA
= _controls_
.LIST_MASK_DATA
4050 LIST_SET_ITEM
= _controls_
.LIST_SET_ITEM
4051 LIST_MASK_WIDTH
= _controls_
.LIST_MASK_WIDTH
4052 LIST_MASK_FORMAT
= _controls_
.LIST_MASK_FORMAT
4053 LIST_STATE_DONTCARE
= _controls_
.LIST_STATE_DONTCARE
4054 LIST_STATE_DROPHILITED
= _controls_
.LIST_STATE_DROPHILITED
4055 LIST_STATE_FOCUSED
= _controls_
.LIST_STATE_FOCUSED
4056 LIST_STATE_SELECTED
= _controls_
.LIST_STATE_SELECTED
4057 LIST_STATE_CUT
= _controls_
.LIST_STATE_CUT
4058 LIST_STATE_DISABLED
= _controls_
.LIST_STATE_DISABLED
4059 LIST_STATE_FILTERED
= _controls_
.LIST_STATE_FILTERED
4060 LIST_STATE_INUSE
= _controls_
.LIST_STATE_INUSE
4061 LIST_STATE_PICKED
= _controls_
.LIST_STATE_PICKED
4062 LIST_STATE_SOURCE
= _controls_
.LIST_STATE_SOURCE
4063 LIST_HITTEST_ABOVE
= _controls_
.LIST_HITTEST_ABOVE
4064 LIST_HITTEST_BELOW
= _controls_
.LIST_HITTEST_BELOW
4065 LIST_HITTEST_NOWHERE
= _controls_
.LIST_HITTEST_NOWHERE
4066 LIST_HITTEST_ONITEMICON
= _controls_
.LIST_HITTEST_ONITEMICON
4067 LIST_HITTEST_ONITEMLABEL
= _controls_
.LIST_HITTEST_ONITEMLABEL
4068 LIST_HITTEST_ONITEMRIGHT
= _controls_
.LIST_HITTEST_ONITEMRIGHT
4069 LIST_HITTEST_ONITEMSTATEICON
= _controls_
.LIST_HITTEST_ONITEMSTATEICON
4070 LIST_HITTEST_TOLEFT
= _controls_
.LIST_HITTEST_TOLEFT
4071 LIST_HITTEST_TORIGHT
= _controls_
.LIST_HITTEST_TORIGHT
4072 LIST_HITTEST_ONITEM
= _controls_
.LIST_HITTEST_ONITEM
4073 LIST_GETSUBITEMRECT_WHOLEITEM
= _controls_
.LIST_GETSUBITEMRECT_WHOLEITEM
4074 LIST_NEXT_ABOVE
= _controls_
.LIST_NEXT_ABOVE
4075 LIST_NEXT_ALL
= _controls_
.LIST_NEXT_ALL
4076 LIST_NEXT_BELOW
= _controls_
.LIST_NEXT_BELOW
4077 LIST_NEXT_LEFT
= _controls_
.LIST_NEXT_LEFT
4078 LIST_NEXT_RIGHT
= _controls_
.LIST_NEXT_RIGHT
4079 LIST_ALIGN_DEFAULT
= _controls_
.LIST_ALIGN_DEFAULT
4080 LIST_ALIGN_LEFT
= _controls_
.LIST_ALIGN_LEFT
4081 LIST_ALIGN_TOP
= _controls_
.LIST_ALIGN_TOP
4082 LIST_ALIGN_SNAP_TO_GRID
= _controls_
.LIST_ALIGN_SNAP_TO_GRID
4083 LIST_FORMAT_LEFT
= _controls_
.LIST_FORMAT_LEFT
4084 LIST_FORMAT_RIGHT
= _controls_
.LIST_FORMAT_RIGHT
4085 LIST_FORMAT_CENTRE
= _controls_
.LIST_FORMAT_CENTRE
4086 LIST_FORMAT_CENTER
= _controls_
.LIST_FORMAT_CENTER
4087 LIST_AUTOSIZE
= _controls_
.LIST_AUTOSIZE
4088 LIST_AUTOSIZE_USEHEADER
= _controls_
.LIST_AUTOSIZE_USEHEADER
4089 LIST_RECT_BOUNDS
= _controls_
.LIST_RECT_BOUNDS
4090 LIST_RECT_ICON
= _controls_
.LIST_RECT_ICON
4091 LIST_RECT_LABEL
= _controls_
.LIST_RECT_LABEL
4092 LIST_FIND_UP
= _controls_
.LIST_FIND_UP
4093 LIST_FIND_DOWN
= _controls_
.LIST_FIND_DOWN
4094 LIST_FIND_LEFT
= _controls_
.LIST_FIND_LEFT
4095 LIST_FIND_RIGHT
= _controls_
.LIST_FIND_RIGHT
4096 #---------------------------------------------------------------------------
4098 class ListItemAttr(object):
4099 """Proxy of C++ ListItemAttr class"""
4100 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4101 __repr__
= _swig_repr
4102 def __init__(self
, *args
, **kwargs
):
4104 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
4105 Font font=wxNullFont) -> ListItemAttr
4107 _controls_
.ListItemAttr_swiginit(self
,_controls_
.new_ListItemAttr(*args
, **kwargs
))
4108 __swig_destroy__
= _controls_
.delete_ListItemAttr
4109 __del__
= lambda self
: None;
4110 def SetTextColour(*args
, **kwargs
):
4111 """SetTextColour(self, Colour colText)"""
4112 return _controls_
.ListItemAttr_SetTextColour(*args
, **kwargs
)
4114 def SetBackgroundColour(*args
, **kwargs
):
4115 """SetBackgroundColour(self, Colour colBack)"""
4116 return _controls_
.ListItemAttr_SetBackgroundColour(*args
, **kwargs
)
4118 def SetFont(*args
, **kwargs
):
4119 """SetFont(self, Font font)"""
4120 return _controls_
.ListItemAttr_SetFont(*args
, **kwargs
)
4122 def HasTextColour(*args
, **kwargs
):
4123 """HasTextColour(self) -> bool"""
4124 return _controls_
.ListItemAttr_HasTextColour(*args
, **kwargs
)
4126 def HasBackgroundColour(*args
, **kwargs
):
4127 """HasBackgroundColour(self) -> bool"""
4128 return _controls_
.ListItemAttr_HasBackgroundColour(*args
, **kwargs
)
4130 def HasFont(*args
, **kwargs
):
4131 """HasFont(self) -> bool"""
4132 return _controls_
.ListItemAttr_HasFont(*args
, **kwargs
)
4134 def GetTextColour(*args
, **kwargs
):
4135 """GetTextColour(self) -> Colour"""
4136 return _controls_
.ListItemAttr_GetTextColour(*args
, **kwargs
)
4138 def GetBackgroundColour(*args
, **kwargs
):
4139 """GetBackgroundColour(self) -> Colour"""
4140 return _controls_
.ListItemAttr_GetBackgroundColour(*args
, **kwargs
)
4142 def GetFont(*args
, **kwargs
):
4143 """GetFont(self) -> Font"""
4144 return _controls_
.ListItemAttr_GetFont(*args
, **kwargs
)
4146 def AssignFrom(*args
, **kwargs
):
4147 """AssignFrom(self, ListItemAttr source)"""
4148 return _controls_
.ListItemAttr_AssignFrom(*args
, **kwargs
)
4150 def Destroy(*args
, **kwargs
):
4152 args
[0].this
.own(False)
4153 return _controls_
.ListItemAttr_Destroy(*args
, **kwargs
)
4155 BackgroundColour
= property(GetBackgroundColour
,SetBackgroundColour
,doc
="See `GetBackgroundColour` and `SetBackgroundColour`")
4156 Font
= property(GetFont
,SetFont
,doc
="See `GetFont` and `SetFont`")
4157 TextColour
= property(GetTextColour
,SetTextColour
,doc
="See `GetTextColour` and `SetTextColour`")
4158 _controls_
.ListItemAttr_swigregister(ListItemAttr
)
4159 ListCtrlNameStr
= cvar
.ListCtrlNameStr
4161 #---------------------------------------------------------------------------
4163 class ListItem(_core
.Object
):
4164 """Proxy of C++ ListItem class"""
4165 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4166 __repr__
= _swig_repr
4167 def __init__(self
, *args
, **kwargs
):
4168 """__init__(self) -> ListItem"""
4169 _controls_
.ListItem_swiginit(self
,_controls_
.new_ListItem(*args
, **kwargs
))
4170 __swig_destroy__
= _controls_
.delete_ListItem
4171 __del__
= lambda self
: None;
4172 def Clear(*args
, **kwargs
):
4174 return _controls_
.ListItem_Clear(*args
, **kwargs
)
4176 def ClearAttributes(*args
, **kwargs
):
4177 """ClearAttributes(self)"""
4178 return _controls_
.ListItem_ClearAttributes(*args
, **kwargs
)
4180 def SetMask(*args
, **kwargs
):
4181 """SetMask(self, long mask)"""
4182 return _controls_
.ListItem_SetMask(*args
, **kwargs
)
4184 def SetId(*args
, **kwargs
):
4185 """SetId(self, long id)"""
4186 return _controls_
.ListItem_SetId(*args
, **kwargs
)
4188 def SetColumn(*args
, **kwargs
):
4189 """SetColumn(self, int col)"""
4190 return _controls_
.ListItem_SetColumn(*args
, **kwargs
)
4192 def SetState(*args
, **kwargs
):
4193 """SetState(self, long state)"""
4194 return _controls_
.ListItem_SetState(*args
, **kwargs
)
4196 def SetStateMask(*args
, **kwargs
):
4197 """SetStateMask(self, long stateMask)"""
4198 return _controls_
.ListItem_SetStateMask(*args
, **kwargs
)
4200 def SetText(*args
, **kwargs
):
4201 """SetText(self, String text)"""
4202 return _controls_
.ListItem_SetText(*args
, **kwargs
)
4204 def SetImage(*args
, **kwargs
):
4205 """SetImage(self, int image)"""
4206 return _controls_
.ListItem_SetImage(*args
, **kwargs
)
4208 def SetData(*args
, **kwargs
):
4209 """SetData(self, long data)"""
4210 return _controls_
.ListItem_SetData(*args
, **kwargs
)
4212 def SetWidth(*args
, **kwargs
):
4213 """SetWidth(self, int width)"""
4214 return _controls_
.ListItem_SetWidth(*args
, **kwargs
)
4216 def SetAlign(*args
, **kwargs
):
4217 """SetAlign(self, int align)"""
4218 return _controls_
.ListItem_SetAlign(*args
, **kwargs
)
4220 def SetTextColour(*args
, **kwargs
):
4221 """SetTextColour(self, Colour colText)"""
4222 return _controls_
.ListItem_SetTextColour(*args
, **kwargs
)
4224 def SetBackgroundColour(*args
, **kwargs
):
4225 """SetBackgroundColour(self, Colour colBack)"""
4226 return _controls_
.ListItem_SetBackgroundColour(*args
, **kwargs
)
4228 def SetFont(*args
, **kwargs
):
4229 """SetFont(self, Font font)"""
4230 return _controls_
.ListItem_SetFont(*args
, **kwargs
)
4232 def GetMask(*args
, **kwargs
):
4233 """GetMask(self) -> long"""
4234 return _controls_
.ListItem_GetMask(*args
, **kwargs
)
4236 def GetId(*args
, **kwargs
):
4237 """GetId(self) -> long"""
4238 return _controls_
.ListItem_GetId(*args
, **kwargs
)
4240 def GetColumn(*args
, **kwargs
):
4241 """GetColumn(self) -> int"""
4242 return _controls_
.ListItem_GetColumn(*args
, **kwargs
)
4244 def GetState(*args
, **kwargs
):
4245 """GetState(self) -> long"""
4246 return _controls_
.ListItem_GetState(*args
, **kwargs
)
4248 def GetText(*args
, **kwargs
):
4249 """GetText(self) -> String"""
4250 return _controls_
.ListItem_GetText(*args
, **kwargs
)
4252 def GetImage(*args
, **kwargs
):
4253 """GetImage(self) -> int"""
4254 return _controls_
.ListItem_GetImage(*args
, **kwargs
)
4256 def GetData(*args
, **kwargs
):
4257 """GetData(self) -> long"""
4258 return _controls_
.ListItem_GetData(*args
, **kwargs
)
4260 def GetWidth(*args
, **kwargs
):
4261 """GetWidth(self) -> int"""
4262 return _controls_
.ListItem_GetWidth(*args
, **kwargs
)
4264 def GetAlign(*args
, **kwargs
):
4265 """GetAlign(self) -> int"""
4266 return _controls_
.ListItem_GetAlign(*args
, **kwargs
)
4268 def GetAttributes(*args
, **kwargs
):
4269 """GetAttributes(self) -> ListItemAttr"""
4270 return _controls_
.ListItem_GetAttributes(*args
, **kwargs
)
4272 def HasAttributes(*args
, **kwargs
):
4273 """HasAttributes(self) -> bool"""
4274 return _controls_
.ListItem_HasAttributes(*args
, **kwargs
)
4276 def GetTextColour(*args
, **kwargs
):
4277 """GetTextColour(self) -> Colour"""
4278 return _controls_
.ListItem_GetTextColour(*args
, **kwargs
)
4280 def GetBackgroundColour(*args
, **kwargs
):
4281 """GetBackgroundColour(self) -> Colour"""
4282 return _controls_
.ListItem_GetBackgroundColour(*args
, **kwargs
)
4284 def GetFont(*args
, **kwargs
):
4285 """GetFont(self) -> Font"""
4286 return _controls_
.ListItem_GetFont(*args
, **kwargs
)
4288 m_mask
= property(_controls_
.ListItem_m_mask_get
, _controls_
.ListItem_m_mask_set
)
4289 m_itemId
= property(_controls_
.ListItem_m_itemId_get
, _controls_
.ListItem_m_itemId_set
)
4290 m_col
= property(_controls_
.ListItem_m_col_get
, _controls_
.ListItem_m_col_set
)
4291 m_state
= property(_controls_
.ListItem_m_state_get
, _controls_
.ListItem_m_state_set
)
4292 m_stateMask
= property(_controls_
.ListItem_m_stateMask_get
, _controls_
.ListItem_m_stateMask_set
)
4293 m_text
= property(_controls_
.ListItem_m_text_get
, _controls_
.ListItem_m_text_set
)
4294 m_image
= property(_controls_
.ListItem_m_image_get
, _controls_
.ListItem_m_image_set
)
4295 m_data
= property(_controls_
.ListItem_m_data_get
, _controls_
.ListItem_m_data_set
)
4296 m_format
= property(_controls_
.ListItem_m_format_get
, _controls_
.ListItem_m_format_set
)
4297 m_width
= property(_controls_
.ListItem_m_width_get
, _controls_
.ListItem_m_width_set
)
4298 Align
= property(GetAlign
,SetAlign
,doc
="See `GetAlign` and `SetAlign`")
4299 Attributes
= property(GetAttributes
,doc
="See `GetAttributes`")
4300 BackgroundColour
= property(GetBackgroundColour
,SetBackgroundColour
,doc
="See `GetBackgroundColour` and `SetBackgroundColour`")
4301 Column
= property(GetColumn
,SetColumn
,doc
="See `GetColumn` and `SetColumn`")
4302 Data
= property(GetData
,SetData
,doc
="See `GetData` and `SetData`")
4303 Font
= property(GetFont
,SetFont
,doc
="See `GetFont` and `SetFont`")
4304 Id
= property(GetId
,SetId
,doc
="See `GetId` and `SetId`")
4305 Image
= property(GetImage
,SetImage
,doc
="See `GetImage` and `SetImage`")
4306 Mask
= property(GetMask
,SetMask
,doc
="See `GetMask` and `SetMask`")
4307 State
= property(GetState
,SetState
,doc
="See `GetState` and `SetState`")
4308 Text
= property(GetText
,SetText
,doc
="See `GetText` and `SetText`")
4309 TextColour
= property(GetTextColour
,SetTextColour
,doc
="See `GetTextColour` and `SetTextColour`")
4310 Width
= property(GetWidth
,SetWidth
,doc
="See `GetWidth` and `SetWidth`")
4311 _controls_
.ListItem_swigregister(ListItem
)
4313 #---------------------------------------------------------------------------
4315 class ListEvent(_core
.NotifyEvent
):
4316 """Proxy of C++ ListEvent class"""
4317 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4318 __repr__
= _swig_repr
4319 def __init__(self
, *args
, **kwargs
):
4320 """__init__(self, EventType commandType=wxEVT_NULL, int id=0) -> ListEvent"""
4321 _controls_
.ListEvent_swiginit(self
,_controls_
.new_ListEvent(*args
, **kwargs
))
4322 m_code
= property(_controls_
.ListEvent_m_code_get
, _controls_
.ListEvent_m_code_set
)
4323 m_oldItemIndex
= property(_controls_
.ListEvent_m_oldItemIndex_get
, _controls_
.ListEvent_m_oldItemIndex_set
)
4324 m_itemIndex
= property(_controls_
.ListEvent_m_itemIndex_get
, _controls_
.ListEvent_m_itemIndex_set
)
4325 m_col
= property(_controls_
.ListEvent_m_col_get
, _controls_
.ListEvent_m_col_set
)
4326 m_pointDrag
= property(_controls_
.ListEvent_m_pointDrag_get
, _controls_
.ListEvent_m_pointDrag_set
)
4327 m_item
= property(_controls_
.ListEvent_m_item_get
)
4328 def GetKeyCode(*args
, **kwargs
):
4329 """GetKeyCode(self) -> int"""
4330 return _controls_
.ListEvent_GetKeyCode(*args
, **kwargs
)
4332 GetCode
= GetKeyCode
4333 def GetIndex(*args
, **kwargs
):
4334 """GetIndex(self) -> long"""
4335 return _controls_
.ListEvent_GetIndex(*args
, **kwargs
)
4337 def GetColumn(*args
, **kwargs
):
4338 """GetColumn(self) -> int"""
4339 return _controls_
.ListEvent_GetColumn(*args
, **kwargs
)
4341 def GetPoint(*args
, **kwargs
):
4342 """GetPoint(self) -> Point"""
4343 return _controls_
.ListEvent_GetPoint(*args
, **kwargs
)
4345 GetPosition
= GetPoint
4346 def GetLabel(*args
, **kwargs
):
4347 """GetLabel(self) -> String"""
4348 return _controls_
.ListEvent_GetLabel(*args
, **kwargs
)
4350 def GetText(*args
, **kwargs
):
4351 """GetText(self) -> String"""
4352 return _controls_
.ListEvent_GetText(*args
, **kwargs
)
4354 def GetImage(*args
, **kwargs
):
4355 """GetImage(self) -> int"""
4356 return _controls_
.ListEvent_GetImage(*args
, **kwargs
)
4358 def GetData(*args
, **kwargs
):
4359 """GetData(self) -> long"""
4360 return _controls_
.ListEvent_GetData(*args
, **kwargs
)
4362 def GetMask(*args
, **kwargs
):
4363 """GetMask(self) -> long"""
4364 return _controls_
.ListEvent_GetMask(*args
, **kwargs
)
4366 def GetItem(*args
, **kwargs
):
4367 """GetItem(self) -> ListItem"""
4368 return _controls_
.ListEvent_GetItem(*args
, **kwargs
)
4370 def GetCacheFrom(*args
, **kwargs
):
4371 """GetCacheFrom(self) -> long"""
4372 return _controls_
.ListEvent_GetCacheFrom(*args
, **kwargs
)
4374 def GetCacheTo(*args
, **kwargs
):
4375 """GetCacheTo(self) -> long"""
4376 return _controls_
.ListEvent_GetCacheTo(*args
, **kwargs
)
4378 def IsEditCancelled(*args
, **kwargs
):
4379 """IsEditCancelled(self) -> bool"""
4380 return _controls_
.ListEvent_IsEditCancelled(*args
, **kwargs
)
4382 def SetEditCanceled(*args
, **kwargs
):
4383 """SetEditCanceled(self, bool editCancelled)"""
4384 return _controls_
.ListEvent_SetEditCanceled(*args
, **kwargs
)
4386 CacheFrom
= property(GetCacheFrom
,doc
="See `GetCacheFrom`")
4387 CacheTo
= property(GetCacheTo
,doc
="See `GetCacheTo`")
4388 Column
= property(GetColumn
,doc
="See `GetColumn`")
4389 Data
= property(GetData
,doc
="See `GetData`")
4390 Image
= property(GetImage
,doc
="See `GetImage`")
4391 Index
= property(GetIndex
,doc
="See `GetIndex`")
4392 Item
= property(GetItem
,doc
="See `GetItem`")
4393 KeyCode
= property(GetKeyCode
,doc
="See `GetKeyCode`")
4394 Label
= property(GetLabel
,doc
="See `GetLabel`")
4395 Mask
= property(GetMask
,doc
="See `GetMask`")
4396 Point
= property(GetPoint
,doc
="See `GetPoint`")
4397 Text
= property(GetText
,doc
="See `GetText`")
4398 _controls_
.ListEvent_swigregister(ListEvent
)
4400 wxEVT_COMMAND_LIST_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_DRAG
4401 wxEVT_COMMAND_LIST_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_RDRAG
4402 wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
4403 wxEVT_COMMAND_LIST_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_END_LABEL_EDIT
4404 wxEVT_COMMAND_LIST_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ITEM
4405 wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
4406 wxEVT_COMMAND_LIST_ITEM_SELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_SELECTED
4407 wxEVT_COMMAND_LIST_ITEM_DESELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_DESELECTED
4408 wxEVT_COMMAND_LIST_KEY_DOWN
= _controls_
.wxEVT_COMMAND_LIST_KEY_DOWN
4409 wxEVT_COMMAND_LIST_INSERT_ITEM
= _controls_
.wxEVT_COMMAND_LIST_INSERT_ITEM
4410 wxEVT_COMMAND_LIST_COL_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_CLICK
4411 wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
4412 wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
4413 wxEVT_COMMAND_LIST_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_ACTIVATED
4414 wxEVT_COMMAND_LIST_CACHE_HINT
= _controls_
.wxEVT_COMMAND_LIST_CACHE_HINT
4415 wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
4416 wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
4417 wxEVT_COMMAND_LIST_COL_DRAGGING
= _controls_
.wxEVT_COMMAND_LIST_COL_DRAGGING
4418 wxEVT_COMMAND_LIST_COL_END_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_END_DRAG
4419 wxEVT_COMMAND_LIST_ITEM_FOCUSED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_FOCUSED
4420 EVT_LIST_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG
, 1)
4421 EVT_LIST_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG
, 1)
4422 EVT_LIST_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, 1)
4423 EVT_LIST_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT
, 1)
4424 EVT_LIST_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM
, 1)
4425 EVT_LIST_DELETE_ALL_ITEMS
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, 1)
4430 EVT_LIST_ITEM_SELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED
, 1)
4431 EVT_LIST_ITEM_DESELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED
, 1)
4432 EVT_LIST_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN
, 1)
4433 EVT_LIST_INSERT_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM
, 1)
4434 EVT_LIST_COL_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK
, 1)
4435 EVT_LIST_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, 1)
4436 EVT_LIST_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
, 1)
4437 EVT_LIST_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, 1)
4438 EVT_LIST_CACHE_HINT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT
, 1)
4439 EVT_LIST_COL_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
, 1)
4440 EVT_LIST_COL_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
, 1)
4441 EVT_LIST_COL_DRAGGING
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING
, 1)
4442 EVT_LIST_COL_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG
, 1)
4443 EVT_LIST_ITEM_FOCUSED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
, 1)
4449 #---------------------------------------------------------------------------
4451 class ListCtrl(_core
.Control
):
4452 """Proxy of C++ ListCtrl class"""
4453 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4454 __repr__
= _swig_repr
4455 def __init__(self
, *args
, **kwargs
):
4457 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4458 Size size=DefaultSize, long style=LC_ICON,
4459 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListCtrl
4461 _controls_
.ListCtrl_swiginit(self
,_controls_
.new_ListCtrl(*args
, **kwargs
))
4462 self
._setOORInfo
(self
);ListCtrl
._setCallbackInfo
(self
, self
, ListCtrl
)
4464 def Create(*args
, **kwargs
):
4466 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4467 Size size=DefaultSize, long style=LC_ICON,
4468 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4470 Do the 2nd phase and create the GUI control.
4472 return _controls_
.ListCtrl_Create(*args
, **kwargs
)
4474 def _setCallbackInfo(*args
, **kwargs
):
4475 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4476 return _controls_
.ListCtrl__setCallbackInfo(*args
, **kwargs
)
4478 def GetColumn(*args
, **kwargs
):
4479 """GetColumn(self, int col) -> ListItem"""
4480 val
= _controls_
.ListCtrl_GetColumn(*args
, **kwargs
)
4481 if val
is not None: val
.thisown
= 1
4484 def SetColumn(*args
, **kwargs
):
4485 """SetColumn(self, int col, ListItem item) -> bool"""
4486 return _controls_
.ListCtrl_SetColumn(*args
, **kwargs
)
4488 def GetColumnWidth(*args
, **kwargs
):
4489 """GetColumnWidth(self, int col) -> int"""
4490 return _controls_
.ListCtrl_GetColumnWidth(*args
, **kwargs
)
4492 def SetColumnWidth(*args
, **kwargs
):
4493 """SetColumnWidth(self, int col, int width) -> bool"""
4494 return _controls_
.ListCtrl_SetColumnWidth(*args
, **kwargs
)
4496 def GetCountPerPage(*args
, **kwargs
):
4497 """GetCountPerPage(self) -> int"""
4498 return _controls_
.ListCtrl_GetCountPerPage(*args
, **kwargs
)
4500 def GetViewRect(*args
, **kwargs
):
4501 """GetViewRect(self) -> Rect"""
4502 return _controls_
.ListCtrl_GetViewRect(*args
, **kwargs
)
4504 def GetEditControl(*args
, **kwargs
):
4505 """GetEditControl(self) -> TextCtrl"""
4506 return _controls_
.ListCtrl_GetEditControl(*args
, **kwargs
)
4508 def GetItem(*args
, **kwargs
):
4509 """GetItem(self, long itemId, int col=0) -> ListItem"""
4510 val
= _controls_
.ListCtrl_GetItem(*args
, **kwargs
)
4511 if val
is not None: val
.thisown
= 1
4514 def SetItem(*args
, **kwargs
):
4515 """SetItem(self, ListItem info) -> bool"""
4516 return _controls_
.ListCtrl_SetItem(*args
, **kwargs
)
4518 def SetStringItem(*args
, **kwargs
):
4519 """SetStringItem(self, long index, int col, String label, int imageId=-1) -> long"""
4520 return _controls_
.ListCtrl_SetStringItem(*args
, **kwargs
)
4522 def GetItemState(*args
, **kwargs
):
4523 """GetItemState(self, long item, long stateMask) -> int"""
4524 return _controls_
.ListCtrl_GetItemState(*args
, **kwargs
)
4526 def SetItemState(*args
, **kwargs
):
4527 """SetItemState(self, long item, long state, long stateMask) -> bool"""
4528 return _controls_
.ListCtrl_SetItemState(*args
, **kwargs
)
4530 def SetItemImage(*args
, **kwargs
):
4531 """SetItemImage(self, long item, int image, int selImage=-1) -> bool"""
4532 return _controls_
.ListCtrl_SetItemImage(*args
, **kwargs
)
4534 def SetItemColumnImage(*args
, **kwargs
):
4535 """SetItemColumnImage(self, long item, long column, int image) -> bool"""
4536 return _controls_
.ListCtrl_SetItemColumnImage(*args
, **kwargs
)
4538 def GetItemText(*args
, **kwargs
):
4539 """GetItemText(self, long item) -> String"""
4540 return _controls_
.ListCtrl_GetItemText(*args
, **kwargs
)
4542 def SetItemText(*args
, **kwargs
):
4543 """SetItemText(self, long item, String str)"""
4544 return _controls_
.ListCtrl_SetItemText(*args
, **kwargs
)
4546 def GetItemData(*args
, **kwargs
):
4547 """GetItemData(self, long item) -> long"""
4548 return _controls_
.ListCtrl_GetItemData(*args
, **kwargs
)
4550 def SetItemData(*args
, **kwargs
):
4551 """SetItemData(self, long item, long data) -> bool"""
4552 return _controls_
.ListCtrl_SetItemData(*args
, **kwargs
)
4554 def GetItemPosition(*args
, **kwargs
):
4555 """GetItemPosition(self, long item) -> Point"""
4556 return _controls_
.ListCtrl_GetItemPosition(*args
, **kwargs
)
4558 def GetItemRect(*args
, **kwargs
):
4559 """GetItemRect(self, long item, int code=LIST_RECT_BOUNDS) -> Rect"""
4560 return _controls_
.ListCtrl_GetItemRect(*args
, **kwargs
)
4562 def SetItemPosition(*args
, **kwargs
):
4563 """SetItemPosition(self, long item, Point pos) -> bool"""
4564 return _controls_
.ListCtrl_SetItemPosition(*args
, **kwargs
)
4566 def GetItemCount(*args
, **kwargs
):
4567 """GetItemCount(self) -> int"""
4568 return _controls_
.ListCtrl_GetItemCount(*args
, **kwargs
)
4570 def GetColumnCount(*args
, **kwargs
):
4571 """GetColumnCount(self) -> int"""
4572 return _controls_
.ListCtrl_GetColumnCount(*args
, **kwargs
)
4574 def GetItemSpacing(*args
, **kwargs
):
4575 """GetItemSpacing(self) -> Size"""
4576 return _controls_
.ListCtrl_GetItemSpacing(*args
, **kwargs
)
4578 GetItemSpacing
= wx
._deprecated
(GetItemSpacing
)
4579 def GetSelectedItemCount(*args
, **kwargs
):
4580 """GetSelectedItemCount(self) -> int"""
4581 return _controls_
.ListCtrl_GetSelectedItemCount(*args
, **kwargs
)
4583 def GetTextColour(*args
, **kwargs
):
4584 """GetTextColour(self) -> Colour"""
4585 return _controls_
.ListCtrl_GetTextColour(*args
, **kwargs
)
4587 def SetTextColour(*args
, **kwargs
):
4588 """SetTextColour(self, Colour col)"""
4589 return _controls_
.ListCtrl_SetTextColour(*args
, **kwargs
)
4591 def GetTopItem(*args
, **kwargs
):
4592 """GetTopItem(self) -> long"""
4593 return _controls_
.ListCtrl_GetTopItem(*args
, **kwargs
)
4595 def SetSingleStyle(*args
, **kwargs
):
4596 """SetSingleStyle(self, long style, bool add=True)"""
4597 return _controls_
.ListCtrl_SetSingleStyle(*args
, **kwargs
)
4599 def GetNextItem(*args
, **kwargs
):
4600 """GetNextItem(self, long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -> long"""
4601 return _controls_
.ListCtrl_GetNextItem(*args
, **kwargs
)
4603 def GetImageList(*args
, **kwargs
):
4604 """GetImageList(self, int which) -> ImageList"""
4605 return _controls_
.ListCtrl_GetImageList(*args
, **kwargs
)
4607 def SetImageList(*args
, **kwargs
):
4608 """SetImageList(self, ImageList imageList, int which)"""
4609 return _controls_
.ListCtrl_SetImageList(*args
, **kwargs
)
4611 def AssignImageList(*args
, **kwargs
):
4612 """AssignImageList(self, ImageList imageList, int which)"""
4613 return _controls_
.ListCtrl_AssignImageList(*args
, **kwargs
)
4615 def InReportView(*args
, **kwargs
):
4616 """InReportView(self) -> bool"""
4617 return _controls_
.ListCtrl_InReportView(*args
, **kwargs
)
4619 def IsVirtual(*args
, **kwargs
):
4620 """IsVirtual(self) -> bool"""
4621 return _controls_
.ListCtrl_IsVirtual(*args
, **kwargs
)
4623 def RefreshItem(*args
, **kwargs
):
4624 """RefreshItem(self, long item)"""
4625 return _controls_
.ListCtrl_RefreshItem(*args
, **kwargs
)
4627 def RefreshItems(*args
, **kwargs
):
4628 """RefreshItems(self, long itemFrom, long itemTo)"""
4629 return _controls_
.ListCtrl_RefreshItems(*args
, **kwargs
)
4631 def Arrange(*args
, **kwargs
):
4632 """Arrange(self, int flag=LIST_ALIGN_DEFAULT) -> bool"""
4633 return _controls_
.ListCtrl_Arrange(*args
, **kwargs
)
4635 def DeleteItem(*args
, **kwargs
):
4636 """DeleteItem(self, long item) -> bool"""
4637 return _controls_
.ListCtrl_DeleteItem(*args
, **kwargs
)
4639 def DeleteAllItems(*args
, **kwargs
):
4640 """DeleteAllItems(self) -> bool"""
4641 return _controls_
.ListCtrl_DeleteAllItems(*args
, **kwargs
)
4643 def DeleteColumn(*args
, **kwargs
):
4644 """DeleteColumn(self, int col) -> bool"""
4645 return _controls_
.ListCtrl_DeleteColumn(*args
, **kwargs
)
4647 def DeleteAllColumns(*args
, **kwargs
):
4648 """DeleteAllColumns(self) -> bool"""
4649 return _controls_
.ListCtrl_DeleteAllColumns(*args
, **kwargs
)
4651 def ClearAll(*args
, **kwargs
):
4652 """ClearAll(self)"""
4653 return _controls_
.ListCtrl_ClearAll(*args
, **kwargs
)
4655 def EditLabel(*args
, **kwargs
):
4656 """EditLabel(self, long item) -> TextCtrl"""
4657 return _controls_
.ListCtrl_EditLabel(*args
, **kwargs
)
4659 def EndEditLabel(*args
, **kwargs
):
4660 """EndEditLabel(self, bool cancel) -> bool"""
4661 return _controls_
.ListCtrl_EndEditLabel(*args
, **kwargs
)
4663 def EnsureVisible(*args
, **kwargs
):
4664 """EnsureVisible(self, long item) -> bool"""
4665 return _controls_
.ListCtrl_EnsureVisible(*args
, **kwargs
)
4667 def FindItem(*args
, **kwargs
):
4668 """FindItem(self, long start, String str, bool partial=False) -> long"""
4669 return _controls_
.ListCtrl_FindItem(*args
, **kwargs
)
4671 def FindItemData(*args
, **kwargs
):
4672 """FindItemData(self, long start, long data) -> long"""
4673 return _controls_
.ListCtrl_FindItemData(*args
, **kwargs
)
4675 def FindItemAtPos(*args
, **kwargs
):
4676 """FindItemAtPos(self, long start, Point pt, int direction) -> long"""
4677 return _controls_
.ListCtrl_FindItemAtPos(*args
, **kwargs
)
4679 def HitTest(*args
, **kwargs
):
4681 HitTest(Point point) -> (item, where)
4683 Determines which item (if any) is at the specified point, giving
4684 in the second return value (see wx.LIST_HITTEST flags.)
4686 return _controls_
.ListCtrl_HitTest(*args
, **kwargs
)
4688 def HitTestSubItem(*args
, **kwargs
):
4690 HitTestSubItem(Point point) -> (item, where, subItem)
4692 Determines which item (if any) is at the specified point, giving in
4693 the second return value (see wx.LIST_HITTEST flags) and also the subItem, if
4696 return _controls_
.ListCtrl_HitTestSubItem(*args
, **kwargs
)
4698 def InsertItem(*args
, **kwargs
):
4699 """InsertItem(self, ListItem info) -> long"""
4700 return _controls_
.ListCtrl_InsertItem(*args
, **kwargs
)
4702 def InsertStringItem(*args
, **kwargs
):
4703 """InsertStringItem(self, long index, String label, int imageIndex=-1) -> long"""
4704 return _controls_
.ListCtrl_InsertStringItem(*args
, **kwargs
)
4706 def InsertImageItem(*args
, **kwargs
):
4707 """InsertImageItem(self, long index, int imageIndex) -> long"""
4708 return _controls_
.ListCtrl_InsertImageItem(*args
, **kwargs
)
4710 def InsertImageStringItem(*args
, **kwargs
):
4711 """InsertImageStringItem(self, long index, String label, int imageIndex) -> long"""
4712 return _controls_
.ListCtrl_InsertImageStringItem(*args
, **kwargs
)
4714 def InsertColumnItem(*args
, **kwargs
):
4715 """InsertColumnItem(self, long col, ListItem info) -> long"""
4716 return _controls_
.ListCtrl_InsertColumnItem(*args
, **kwargs
)
4718 InsertColumnInfo
= InsertColumnItem
4719 def InsertColumn(*args
, **kwargs
):
4721 InsertColumn(self, long col, String heading, int format=LIST_FORMAT_LEFT,
4722 int width=-1) -> long
4724 return _controls_
.ListCtrl_InsertColumn(*args
, **kwargs
)
4726 def SetItemCount(*args
, **kwargs
):
4727 """SetItemCount(self, long count)"""
4728 return _controls_
.ListCtrl_SetItemCount(*args
, **kwargs
)
4730 def ScrollList(*args
, **kwargs
):
4731 """ScrollList(self, int dx, int dy) -> bool"""
4732 return _controls_
.ListCtrl_ScrollList(*args
, **kwargs
)
4734 def SetItemTextColour(*args
, **kwargs
):
4735 """SetItemTextColour(self, long item, Colour col)"""
4736 return _controls_
.ListCtrl_SetItemTextColour(*args
, **kwargs
)
4738 def GetItemTextColour(*args
, **kwargs
):
4739 """GetItemTextColour(self, long item) -> Colour"""
4740 return _controls_
.ListCtrl_GetItemTextColour(*args
, **kwargs
)
4742 def SetItemBackgroundColour(*args
, **kwargs
):
4743 """SetItemBackgroundColour(self, long item, Colour col)"""
4744 return _controls_
.ListCtrl_SetItemBackgroundColour(*args
, **kwargs
)
4746 def GetItemBackgroundColour(*args
, **kwargs
):
4747 """GetItemBackgroundColour(self, long item) -> Colour"""
4748 return _controls_
.ListCtrl_GetItemBackgroundColour(*args
, **kwargs
)
4750 def SetItemFont(*args
, **kwargs
):
4751 """SetItemFont(self, long item, Font f)"""
4752 return _controls_
.ListCtrl_SetItemFont(*args
, **kwargs
)
4754 def GetItemFont(*args
, **kwargs
):
4755 """GetItemFont(self, long item) -> Font"""
4756 return _controls_
.ListCtrl_GetItemFont(*args
, **kwargs
)
4760 def Select(self
, idx
, on
=1):
4761 '''[de]select an item'''
4762 if on
: state
= wx
.LIST_STATE_SELECTED
4764 self
.SetItemState(idx
, state
, wx
.LIST_STATE_SELECTED
)
4766 def Focus(self
, idx
):
4767 '''Focus and show the given item'''
4768 self
.SetItemState(idx
, wx
.LIST_STATE_FOCUSED
, wx
.LIST_STATE_FOCUSED
)
4769 self
.EnsureVisible(idx
)
4771 def GetFocusedItem(self
):
4772 '''get the currently focused item or -1 if none'''
4773 return self
.GetNextItem(-1, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_FOCUSED
)
4775 def GetFirstSelected(self
, *args
):
4776 '''return first selected item, or -1 when none'''
4777 return self
.GetNextSelected(-1)
4779 def GetNextSelected(self
, item
):
4780 '''return subsequent selected items, or -1 when no more'''
4781 return self
.GetNextItem(item
, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_SELECTED
)
4783 def IsSelected(self
, idx
):
4784 '''return True if the item is selected'''
4785 return (self
.GetItemState(idx
, wx
.LIST_STATE_SELECTED
) & wx
.LIST_STATE_SELECTED
) != 0
4787 def SetColumnImage(self
, col
, image
):
4788 item
= self
.GetColumn(col
)
4789 # preserve all other attributes too
4790 item
.SetMask( wx
.LIST_MASK_STATE |
4792 wx
.LIST_MASK_IMAGE |
4795 wx
.LIST_MASK_WIDTH |
4796 wx
.LIST_MASK_FORMAT
)
4797 item
.SetImage(image
)
4798 self
.SetColumn(col
, item
)
4800 def ClearColumnImage(self
, col
):
4801 self
.SetColumnImage(col
, -1)
4803 def Append(self
, entry
):
4804 '''Append an item to the list control. The entry parameter should be a
4805 sequence with an item for each column'''
4811 pos
= self
.GetItemCount()
4812 self
.InsertStringItem(pos
, cvtfunc(entry
[0]))
4813 for i
in range(1, len(entry
)):
4814 self
.SetStringItem(pos
, i
, cvtfunc(entry
[i
]))
4817 def SortItems(*args
, **kwargs
):
4818 """SortItems(self, PyObject func) -> bool"""
4819 return _controls_
.ListCtrl_SortItems(*args
, **kwargs
)
4821 def GetMainWindow(*args
, **kwargs
):
4822 """GetMainWindow(self) -> Window"""
4823 return _controls_
.ListCtrl_GetMainWindow(*args
, **kwargs
)
4825 def GetClassDefaultAttributes(*args
, **kwargs
):
4827 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4829 Get the default attributes for this class. This is useful if you want
4830 to use the same font or colour in your own control as in a standard
4831 control -- which is a much better idea than hard coding specific
4832 colours or fonts which might look completely out of place on the
4833 user's system, especially if it uses themes.
4835 The variant parameter is only relevant under Mac currently and is
4836 ignore under other platforms. Under Mac, it will change the size of
4837 the returned font. See `wx.Window.SetWindowVariant` for more about
4840 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4842 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
4843 ColumnCount
= property(GetColumnCount
,doc
="See `GetColumnCount`")
4844 CountPerPage
= property(GetCountPerPage
,doc
="See `GetCountPerPage`")
4845 EditControl
= property(GetEditControl
,doc
="See `GetEditControl`")
4846 FocusedItem
= property(GetFocusedItem
,doc
="See `GetFocusedItem`")
4847 ImageList
= property(GetImageList
,SetImageList
,doc
="See `GetImageList` and `SetImageList`")
4848 ItemCount
= property(GetItemCount
,SetItemCount
,doc
="See `GetItemCount` and `SetItemCount`")
4849 MainWindow
= property(GetMainWindow
,doc
="See `GetMainWindow`")
4850 SelectedItemCount
= property(GetSelectedItemCount
,doc
="See `GetSelectedItemCount`")
4851 TextColour
= property(GetTextColour
,SetTextColour
,doc
="See `GetTextColour` and `SetTextColour`")
4852 TopItem
= property(GetTopItem
,doc
="See `GetTopItem`")
4853 ViewRect
= property(GetViewRect
,doc
="See `GetViewRect`")
4854 _controls_
.ListCtrl_swigregister(ListCtrl
)
4856 def PreListCtrl(*args
, **kwargs
):
4857 """PreListCtrl() -> ListCtrl"""
4858 val
= _controls_
.new_PreListCtrl(*args
, **kwargs
)
4861 def ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
4863 ListCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4865 Get the default attributes for this class. This is useful if you want
4866 to use the same font or colour in your own control as in a standard
4867 control -- which is a much better idea than hard coding specific
4868 colours or fonts which might look completely out of place on the
4869 user's system, especially if it uses themes.
4871 The variant parameter is only relevant under Mac currently and is
4872 ignore under other platforms. Under Mac, it will change the size of
4873 the returned font. See `wx.Window.SetWindowVariant` for more about
4876 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4878 #---------------------------------------------------------------------------
4880 class ListView(ListCtrl
):
4881 """Proxy of C++ ListView class"""
4882 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4883 __repr__
= _swig_repr
4884 def __init__(self
, *args
, **kwargs
):
4886 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4887 Size size=DefaultSize, long style=LC_REPORT,
4888 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListView
4890 _controls_
.ListView_swiginit(self
,_controls_
.new_ListView(*args
, **kwargs
))
4891 self
._setOORInfo
(self
)
4893 def Create(*args
, **kwargs
):
4895 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4896 Size size=DefaultSize, long style=LC_REPORT,
4897 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4899 Do the 2nd phase and create the GUI control.
4901 return _controls_
.ListView_Create(*args
, **kwargs
)
4903 def Select(*args
, **kwargs
):
4904 """Select(self, long n, bool on=True)"""
4905 return _controls_
.ListView_Select(*args
, **kwargs
)
4907 def Focus(*args
, **kwargs
):
4908 """Focus(self, long index)"""
4909 return _controls_
.ListView_Focus(*args
, **kwargs
)
4911 def GetFocusedItem(*args
, **kwargs
):
4912 """GetFocusedItem(self) -> long"""
4913 return _controls_
.ListView_GetFocusedItem(*args
, **kwargs
)
4915 def GetNextSelected(*args
, **kwargs
):
4916 """GetNextSelected(self, long item) -> long"""
4917 return _controls_
.ListView_GetNextSelected(*args
, **kwargs
)
4919 def GetFirstSelected(*args
, **kwargs
):
4920 """GetFirstSelected(self) -> long"""
4921 return _controls_
.ListView_GetFirstSelected(*args
, **kwargs
)
4923 def IsSelected(*args
, **kwargs
):
4924 """IsSelected(self, long index) -> bool"""
4925 return _controls_
.ListView_IsSelected(*args
, **kwargs
)
4927 def SetColumnImage(*args
, **kwargs
):
4928 """SetColumnImage(self, int col, int image)"""
4929 return _controls_
.ListView_SetColumnImage(*args
, **kwargs
)
4931 def ClearColumnImage(*args
, **kwargs
):
4932 """ClearColumnImage(self, int col)"""
4933 return _controls_
.ListView_ClearColumnImage(*args
, **kwargs
)
4935 FocusedItem
= property(GetFocusedItem
,doc
="See `GetFocusedItem`")
4936 _controls_
.ListView_swigregister(ListView
)
4938 def PreListView(*args
, **kwargs
):
4939 """PreListView() -> ListView"""
4940 val
= _controls_
.new_PreListView(*args
, **kwargs
)
4943 #---------------------------------------------------------------------------
4945 TR_NO_BUTTONS
= _controls_
.TR_NO_BUTTONS
4946 TR_HAS_BUTTONS
= _controls_
.TR_HAS_BUTTONS
4947 TR_NO_LINES
= _controls_
.TR_NO_LINES
4948 TR_LINES_AT_ROOT
= _controls_
.TR_LINES_AT_ROOT
4949 TR_SINGLE
= _controls_
.TR_SINGLE
4950 TR_MULTIPLE
= _controls_
.TR_MULTIPLE
4951 TR_EXTENDED
= _controls_
.TR_EXTENDED
4952 TR_HAS_VARIABLE_ROW_HEIGHT
= _controls_
.TR_HAS_VARIABLE_ROW_HEIGHT
4953 TR_EDIT_LABELS
= _controls_
.TR_EDIT_LABELS
4954 TR_HIDE_ROOT
= _controls_
.TR_HIDE_ROOT
4955 TR_ROW_LINES
= _controls_
.TR_ROW_LINES
4956 TR_FULL_ROW_HIGHLIGHT
= _controls_
.TR_FULL_ROW_HIGHLIGHT
4957 TR_DEFAULT_STYLE
= _controls_
.TR_DEFAULT_STYLE
4958 TR_TWIST_BUTTONS
= _controls_
.TR_TWIST_BUTTONS
4961 wxTR_AQUA_BUTTONS
= 0
4963 TreeItemIcon_Normal
= _controls_
.TreeItemIcon_Normal
4964 TreeItemIcon_Selected
= _controls_
.TreeItemIcon_Selected
4965 TreeItemIcon_Expanded
= _controls_
.TreeItemIcon_Expanded
4966 TreeItemIcon_SelectedExpanded
= _controls_
.TreeItemIcon_SelectedExpanded
4967 TreeItemIcon_Max
= _controls_
.TreeItemIcon_Max
4968 TREE_HITTEST_ABOVE
= _controls_
.TREE_HITTEST_ABOVE
4969 TREE_HITTEST_BELOW
= _controls_
.TREE_HITTEST_BELOW
4970 TREE_HITTEST_NOWHERE
= _controls_
.TREE_HITTEST_NOWHERE
4971 TREE_HITTEST_ONITEMBUTTON
= _controls_
.TREE_HITTEST_ONITEMBUTTON
4972 TREE_HITTEST_ONITEMICON
= _controls_
.TREE_HITTEST_ONITEMICON
4973 TREE_HITTEST_ONITEMINDENT
= _controls_
.TREE_HITTEST_ONITEMINDENT
4974 TREE_HITTEST_ONITEMLABEL
= _controls_
.TREE_HITTEST_ONITEMLABEL
4975 TREE_HITTEST_ONITEMRIGHT
= _controls_
.TREE_HITTEST_ONITEMRIGHT
4976 TREE_HITTEST_ONITEMSTATEICON
= _controls_
.TREE_HITTEST_ONITEMSTATEICON
4977 TREE_HITTEST_TOLEFT
= _controls_
.TREE_HITTEST_TOLEFT
4978 TREE_HITTEST_TORIGHT
= _controls_
.TREE_HITTEST_TORIGHT
4979 TREE_HITTEST_ONITEMUPPERPART
= _controls_
.TREE_HITTEST_ONITEMUPPERPART
4980 TREE_HITTEST_ONITEMLOWERPART
= _controls_
.TREE_HITTEST_ONITEMLOWERPART
4981 TREE_HITTEST_ONITEM
= _controls_
.TREE_HITTEST_ONITEM
4982 #---------------------------------------------------------------------------
4984 class TreeItemId(object):
4985 """Proxy of C++ TreeItemId class"""
4986 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4987 __repr__
= _swig_repr
4988 def __init__(self
, *args
, **kwargs
):
4989 """__init__(self) -> TreeItemId"""
4990 _controls_
.TreeItemId_swiginit(self
,_controls_
.new_TreeItemId(*args
, **kwargs
))
4991 __swig_destroy__
= _controls_
.delete_TreeItemId
4992 __del__
= lambda self
: None;
4993 def IsOk(*args
, **kwargs
):
4994 """IsOk(self) -> bool"""
4995 return _controls_
.TreeItemId_IsOk(*args
, **kwargs
)
4997 def __eq__(*args
, **kwargs
):
4998 """__eq__(self, TreeItemId other) -> bool"""
4999 return _controls_
.TreeItemId___eq__(*args
, **kwargs
)
5001 def __ne__(*args
, **kwargs
):
5002 """__ne__(self, TreeItemId other) -> bool"""
5003 return _controls_
.TreeItemId___ne__(*args
, **kwargs
)
5005 m_pItem
= property(_controls_
.TreeItemId_m_pItem_get
, _controls_
.TreeItemId_m_pItem_set
)
5007 def __nonzero__(self
): return self
.IsOk()
5008 _controls_
.TreeItemId_swigregister(TreeItemId
)
5009 TreeCtrlNameStr
= cvar
.TreeCtrlNameStr
5011 class TreeItemData(object):
5012 """Proxy of C++ TreeItemData 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
):
5016 """__init__(self, PyObject obj=None) -> TreeItemData"""
5017 _controls_
.TreeItemData_swiginit(self
,_controls_
.new_TreeItemData(*args
, **kwargs
))
5018 __swig_destroy__
= _controls_
.delete_TreeItemData
5019 __del__
= lambda self
: None;
5020 def GetData(*args
, **kwargs
):
5021 """GetData(self) -> PyObject"""
5022 return _controls_
.TreeItemData_GetData(*args
, **kwargs
)
5024 def SetData(*args
, **kwargs
):
5025 """SetData(self, PyObject obj)"""
5026 return _controls_
.TreeItemData_SetData(*args
, **kwargs
)
5028 def GetId(*args
, **kwargs
):
5029 """GetId(self) -> TreeItemId"""
5030 return _controls_
.TreeItemData_GetId(*args
, **kwargs
)
5032 def SetId(*args
, **kwargs
):
5033 """SetId(self, TreeItemId id)"""
5034 return _controls_
.TreeItemData_SetId(*args
, **kwargs
)
5036 def Destroy(*args
, **kwargs
):
5038 args
[0].this
.own(False)
5039 return _controls_
.TreeItemData_Destroy(*args
, **kwargs
)
5041 Data
= property(GetData
,SetData
,doc
="See `GetData` and `SetData`")
5042 Id
= property(GetId
,SetId
,doc
="See `GetId` and `SetId`")
5043 _controls_
.TreeItemData_swigregister(TreeItemData
)
5045 #---------------------------------------------------------------------------
5047 wxEVT_COMMAND_TREE_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_DRAG
5048 wxEVT_COMMAND_TREE_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_RDRAG
5049 wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
5050 wxEVT_COMMAND_TREE_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_END_LABEL_EDIT
5051 wxEVT_COMMAND_TREE_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_TREE_DELETE_ITEM
5052 wxEVT_COMMAND_TREE_GET_INFO
= _controls_
.wxEVT_COMMAND_TREE_GET_INFO
5053 wxEVT_COMMAND_TREE_SET_INFO
= _controls_
.wxEVT_COMMAND_TREE_SET_INFO
5054 wxEVT_COMMAND_TREE_ITEM_EXPANDED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDED
5055 wxEVT_COMMAND_TREE_ITEM_EXPANDING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDING
5056 wxEVT_COMMAND_TREE_ITEM_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSED
5057 wxEVT_COMMAND_TREE_ITEM_COLLAPSING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSING
5058 wxEVT_COMMAND_TREE_SEL_CHANGED
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGED
5059 wxEVT_COMMAND_TREE_SEL_CHANGING
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGING
5060 wxEVT_COMMAND_TREE_KEY_DOWN
= _controls_
.wxEVT_COMMAND_TREE_KEY_DOWN
5061 wxEVT_COMMAND_TREE_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_ACTIVATED
5062 wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
5063 wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
5064 wxEVT_COMMAND_TREE_END_DRAG
= _controls_
.wxEVT_COMMAND_TREE_END_DRAG
5065 wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
5066 wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
= _controls_
.wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
5067 wxEVT_COMMAND_TREE_ITEM_MENU
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MENU
5068 EVT_TREE_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG
, 1)
5069 EVT_TREE_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG
, 1)
5070 EVT_TREE_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, 1)
5071 EVT_TREE_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, 1)
5072 EVT_TREE_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM
, 1)
5073 EVT_TREE_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO
, 1)
5074 EVT_TREE_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO
, 1)
5075 EVT_TREE_ITEM_EXPANDED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED
, 1)
5076 EVT_TREE_ITEM_EXPANDING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, 1)
5077 EVT_TREE_ITEM_COLLAPSED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, 1)
5078 EVT_TREE_ITEM_COLLAPSING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, 1)
5079 EVT_TREE_SEL_CHANGED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED
, 1)
5080 EVT_TREE_SEL_CHANGING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING
, 1)
5081 EVT_TREE_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN
, 1)
5082 EVT_TREE_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, 1)
5083 EVT_TREE_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, 1)
5084 EVT_TREE_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, 1)
5085 EVT_TREE_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG
, 1)
5086 EVT_TREE_STATE_IMAGE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
, 1)
5087 EVT_TREE_ITEM_GETTOOLTIP
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
, 1)
5088 EVT_TREE_ITEM_MENU
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MENU
, 1)
5090 class TreeEvent(_core
.NotifyEvent
):
5091 """Proxy of C++ TreeEvent class"""
5092 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5093 __repr__
= _swig_repr
5094 def __init__(self
, *args
):
5096 __init__(self, EventType commandType=wxEVT_NULL, int id=0) -> TreeEvent
5097 __init__(self, EventType commandType, TreeCtrl tree, TreeItemId item=NullTreeItemId) -> TreeEvent
5099 _controls_
.TreeEvent_swiginit(self
,_controls_
.new_TreeEvent(*args
))
5100 def GetItem(*args
, **kwargs
):
5101 """GetItem(self) -> TreeItemId"""
5102 return _controls_
.TreeEvent_GetItem(*args
, **kwargs
)
5104 def SetItem(*args
, **kwargs
):
5105 """SetItem(self, TreeItemId item)"""
5106 return _controls_
.TreeEvent_SetItem(*args
, **kwargs
)
5108 def GetOldItem(*args
, **kwargs
):
5109 """GetOldItem(self) -> TreeItemId"""
5110 return _controls_
.TreeEvent_GetOldItem(*args
, **kwargs
)
5112 def SetOldItem(*args
, **kwargs
):
5113 """SetOldItem(self, TreeItemId item)"""
5114 return _controls_
.TreeEvent_SetOldItem(*args
, **kwargs
)
5116 def GetPoint(*args
, **kwargs
):
5117 """GetPoint(self) -> Point"""
5118 return _controls_
.TreeEvent_GetPoint(*args
, **kwargs
)
5120 def SetPoint(*args
, **kwargs
):
5121 """SetPoint(self, Point pt)"""
5122 return _controls_
.TreeEvent_SetPoint(*args
, **kwargs
)
5124 def GetKeyEvent(*args
, **kwargs
):
5125 """GetKeyEvent(self) -> KeyEvent"""
5126 return _controls_
.TreeEvent_GetKeyEvent(*args
, **kwargs
)
5128 def GetKeyCode(*args
, **kwargs
):
5129 """GetKeyCode(self) -> int"""
5130 return _controls_
.TreeEvent_GetKeyCode(*args
, **kwargs
)
5132 def SetKeyEvent(*args
, **kwargs
):
5133 """SetKeyEvent(self, KeyEvent evt)"""
5134 return _controls_
.TreeEvent_SetKeyEvent(*args
, **kwargs
)
5136 def GetLabel(*args
, **kwargs
):
5137 """GetLabel(self) -> String"""
5138 return _controls_
.TreeEvent_GetLabel(*args
, **kwargs
)
5140 def SetLabel(*args
, **kwargs
):
5141 """SetLabel(self, String label)"""
5142 return _controls_
.TreeEvent_SetLabel(*args
, **kwargs
)
5144 def IsEditCancelled(*args
, **kwargs
):
5145 """IsEditCancelled(self) -> bool"""
5146 return _controls_
.TreeEvent_IsEditCancelled(*args
, **kwargs
)
5148 def SetEditCanceled(*args
, **kwargs
):
5149 """SetEditCanceled(self, bool editCancelled)"""
5150 return _controls_
.TreeEvent_SetEditCanceled(*args
, **kwargs
)
5152 def SetToolTip(*args
, **kwargs
):
5153 """SetToolTip(self, String toolTip)"""
5154 return _controls_
.TreeEvent_SetToolTip(*args
, **kwargs
)
5156 def GetToolTip(*args
, **kwargs
):
5157 """GetToolTip(self) -> String"""
5158 return _controls_
.TreeEvent_GetToolTip(*args
, **kwargs
)
5160 Item
= property(GetItem
,SetItem
,doc
="See `GetItem` and `SetItem`")
5161 KeyCode
= property(GetKeyCode
,doc
="See `GetKeyCode`")
5162 KeyEvent
= property(GetKeyEvent
,SetKeyEvent
,doc
="See `GetKeyEvent` and `SetKeyEvent`")
5163 Label
= property(GetLabel
,SetLabel
,doc
="See `GetLabel` and `SetLabel`")
5164 OldItem
= property(GetOldItem
,SetOldItem
,doc
="See `GetOldItem` and `SetOldItem`")
5165 Point
= property(GetPoint
,SetPoint
,doc
="See `GetPoint` and `SetPoint`")
5166 ToolTip
= property(GetToolTip
,SetToolTip
,doc
="See `GetToolTip` and `SetToolTip`")
5167 EditCancelled
= property(IsEditCancelled
,SetEditCanceled
,doc
="See `IsEditCancelled` and `SetEditCanceled`")
5168 _controls_
.TreeEvent_swigregister(TreeEvent
)
5170 #---------------------------------------------------------------------------
5172 class TreeCtrl(_core
.Control
):
5173 """Proxy of C++ TreeCtrl class"""
5174 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5175 __repr__
= _swig_repr
5176 def __init__(self
, *args
, **kwargs
):
5178 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
5179 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
5180 Validator validator=DefaultValidator,
5181 String name=TreeCtrlNameStr) -> TreeCtrl
5183 _controls_
.TreeCtrl_swiginit(self
,_controls_
.new_TreeCtrl(*args
, **kwargs
))
5184 self
._setOORInfo
(self
);TreeCtrl
._setCallbackInfo
(self
, self
, TreeCtrl
)
5186 def Create(*args
, **kwargs
):
5188 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
5189 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
5190 Validator validator=DefaultValidator,
5191 String name=TreeCtrlNameStr) -> bool
5193 Do the 2nd phase and create the GUI control.
5195 return _controls_
.TreeCtrl_Create(*args
, **kwargs
)
5197 def _setCallbackInfo(*args
, **kwargs
):
5198 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5199 return _controls_
.TreeCtrl__setCallbackInfo(*args
, **kwargs
)
5201 def GetCount(*args
, **kwargs
):
5202 """GetCount(self) -> unsigned int"""
5203 return _controls_
.TreeCtrl_GetCount(*args
, **kwargs
)
5205 def GetIndent(*args
, **kwargs
):
5206 """GetIndent(self) -> unsigned int"""
5207 return _controls_
.TreeCtrl_GetIndent(*args
, **kwargs
)
5209 def SetIndent(*args
, **kwargs
):
5210 """SetIndent(self, unsigned int indent)"""
5211 return _controls_
.TreeCtrl_SetIndent(*args
, **kwargs
)
5213 def GetSpacing(*args
, **kwargs
):
5214 """GetSpacing(self) -> unsigned int"""
5215 return _controls_
.TreeCtrl_GetSpacing(*args
, **kwargs
)
5217 def SetSpacing(*args
, **kwargs
):
5218 """SetSpacing(self, unsigned int spacing)"""
5219 return _controls_
.TreeCtrl_SetSpacing(*args
, **kwargs
)
5221 def GetImageList(*args
, **kwargs
):
5222 """GetImageList(self) -> ImageList"""
5223 return _controls_
.TreeCtrl_GetImageList(*args
, **kwargs
)
5225 def GetStateImageList(*args
, **kwargs
):
5226 """GetStateImageList(self) -> ImageList"""
5227 return _controls_
.TreeCtrl_GetStateImageList(*args
, **kwargs
)
5229 def SetImageList(*args
, **kwargs
):
5230 """SetImageList(self, ImageList imageList)"""
5231 return _controls_
.TreeCtrl_SetImageList(*args
, **kwargs
)
5233 def SetStateImageList(*args
, **kwargs
):
5234 """SetStateImageList(self, ImageList imageList)"""
5235 return _controls_
.TreeCtrl_SetStateImageList(*args
, **kwargs
)
5237 def AssignImageList(*args
, **kwargs
):
5238 """AssignImageList(self, ImageList imageList)"""
5239 return _controls_
.TreeCtrl_AssignImageList(*args
, **kwargs
)
5241 def AssignStateImageList(*args
, **kwargs
):
5242 """AssignStateImageList(self, ImageList imageList)"""
5243 return _controls_
.TreeCtrl_AssignStateImageList(*args
, **kwargs
)
5245 def GetItemText(*args
, **kwargs
):
5246 """GetItemText(self, TreeItemId item) -> String"""
5247 return _controls_
.TreeCtrl_GetItemText(*args
, **kwargs
)
5249 def GetItemImage(*args
, **kwargs
):
5250 """GetItemImage(self, TreeItemId item, int which=TreeItemIcon_Normal) -> int"""
5251 return _controls_
.TreeCtrl_GetItemImage(*args
, **kwargs
)
5253 def GetItemData(*args
, **kwargs
):
5254 """GetItemData(self, TreeItemId item) -> TreeItemData"""
5255 return _controls_
.TreeCtrl_GetItemData(*args
, **kwargs
)
5257 def GetItemPyData(*args
, **kwargs
):
5258 """GetItemPyData(self, TreeItemId item) -> PyObject"""
5259 return _controls_
.TreeCtrl_GetItemPyData(*args
, **kwargs
)
5261 GetPyData
= GetItemPyData
5262 def GetItemTextColour(*args
, **kwargs
):
5263 """GetItemTextColour(self, TreeItemId item) -> Colour"""
5264 return _controls_
.TreeCtrl_GetItemTextColour(*args
, **kwargs
)
5266 def GetItemBackgroundColour(*args
, **kwargs
):
5267 """GetItemBackgroundColour(self, TreeItemId item) -> Colour"""
5268 return _controls_
.TreeCtrl_GetItemBackgroundColour(*args
, **kwargs
)
5270 def GetItemFont(*args
, **kwargs
):
5271 """GetItemFont(self, TreeItemId item) -> Font"""
5272 return _controls_
.TreeCtrl_GetItemFont(*args
, **kwargs
)
5274 def SetItemText(*args
, **kwargs
):
5275 """SetItemText(self, TreeItemId item, String text)"""
5276 return _controls_
.TreeCtrl_SetItemText(*args
, **kwargs
)
5278 def SetItemImage(*args
, **kwargs
):
5279 """SetItemImage(self, TreeItemId item, int image, int which=TreeItemIcon_Normal)"""
5280 return _controls_
.TreeCtrl_SetItemImage(*args
, **kwargs
)
5282 def SetItemData(*args
, **kwargs
):
5283 """SetItemData(self, TreeItemId item, TreeItemData data)"""
5284 return _controls_
.TreeCtrl_SetItemData(*args
, **kwargs
)
5286 def SetItemPyData(*args
, **kwargs
):
5287 """SetItemPyData(self, TreeItemId item, PyObject obj)"""
5288 return _controls_
.TreeCtrl_SetItemPyData(*args
, **kwargs
)
5290 SetPyData
= SetItemPyData
5291 def SetItemHasChildren(*args
, **kwargs
):
5292 """SetItemHasChildren(self, TreeItemId item, bool has=True)"""
5293 return _controls_
.TreeCtrl_SetItemHasChildren(*args
, **kwargs
)
5295 def SetItemBold(*args
, **kwargs
):
5296 """SetItemBold(self, TreeItemId item, bool bold=True)"""
5297 return _controls_
.TreeCtrl_SetItemBold(*args
, **kwargs
)
5299 def SetItemDropHighlight(*args
, **kwargs
):
5300 """SetItemDropHighlight(self, TreeItemId item, bool highlight=True)"""
5301 return _controls_
.TreeCtrl_SetItemDropHighlight(*args
, **kwargs
)
5303 def SetItemTextColour(*args
, **kwargs
):
5304 """SetItemTextColour(self, TreeItemId item, Colour col)"""
5305 return _controls_
.TreeCtrl_SetItemTextColour(*args
, **kwargs
)
5307 def SetItemBackgroundColour(*args
, **kwargs
):
5308 """SetItemBackgroundColour(self, TreeItemId item, Colour col)"""
5309 return _controls_
.TreeCtrl_SetItemBackgroundColour(*args
, **kwargs
)
5311 def SetItemFont(*args
, **kwargs
):
5312 """SetItemFont(self, TreeItemId item, Font font)"""
5313 return _controls_
.TreeCtrl_SetItemFont(*args
, **kwargs
)
5315 def IsVisible(*args
, **kwargs
):
5316 """IsVisible(self, TreeItemId item) -> bool"""
5317 return _controls_
.TreeCtrl_IsVisible(*args
, **kwargs
)
5319 def ItemHasChildren(*args
, **kwargs
):
5320 """ItemHasChildren(self, TreeItemId item) -> bool"""
5321 return _controls_
.TreeCtrl_ItemHasChildren(*args
, **kwargs
)
5323 def IsExpanded(*args
, **kwargs
):
5324 """IsExpanded(self, TreeItemId item) -> bool"""
5325 return _controls_
.TreeCtrl_IsExpanded(*args
, **kwargs
)
5327 def IsSelected(*args
, **kwargs
):
5328 """IsSelected(self, TreeItemId item) -> bool"""
5329 return _controls_
.TreeCtrl_IsSelected(*args
, **kwargs
)
5331 def IsBold(*args
, **kwargs
):
5332 """IsBold(self, TreeItemId item) -> bool"""
5333 return _controls_
.TreeCtrl_IsBold(*args
, **kwargs
)
5335 def GetChildrenCount(*args
, **kwargs
):
5336 """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t"""
5337 return _controls_
.TreeCtrl_GetChildrenCount(*args
, **kwargs
)
5339 def GetRootItem(*args
, **kwargs
):
5340 """GetRootItem(self) -> TreeItemId"""
5341 return _controls_
.TreeCtrl_GetRootItem(*args
, **kwargs
)
5343 def GetSelection(*args
, **kwargs
):
5344 """GetSelection(self) -> TreeItemId"""
5345 return _controls_
.TreeCtrl_GetSelection(*args
, **kwargs
)
5347 def GetSelections(*args
, **kwargs
):
5348 """GetSelections(self) -> PyObject"""
5349 return _controls_
.TreeCtrl_GetSelections(*args
, **kwargs
)
5351 def GetItemParent(*args
, **kwargs
):
5352 """GetItemParent(self, TreeItemId item) -> TreeItemId"""
5353 return _controls_
.TreeCtrl_GetItemParent(*args
, **kwargs
)
5355 def GetFirstChild(*args
, **kwargs
):
5356 """GetFirstChild(self, TreeItemId item) -> PyObject"""
5357 return _controls_
.TreeCtrl_GetFirstChild(*args
, **kwargs
)
5359 def GetNextChild(*args
, **kwargs
):
5360 """GetNextChild(self, TreeItemId item, void cookie) -> PyObject"""
5361 return _controls_
.TreeCtrl_GetNextChild(*args
, **kwargs
)
5363 def GetLastChild(*args
, **kwargs
):
5364 """GetLastChild(self, TreeItemId item) -> TreeItemId"""
5365 return _controls_
.TreeCtrl_GetLastChild(*args
, **kwargs
)
5367 def GetNextSibling(*args
, **kwargs
):
5368 """GetNextSibling(self, TreeItemId item) -> TreeItemId"""
5369 return _controls_
.TreeCtrl_GetNextSibling(*args
, **kwargs
)
5371 def GetPrevSibling(*args
, **kwargs
):
5372 """GetPrevSibling(self, TreeItemId item) -> TreeItemId"""
5373 return _controls_
.TreeCtrl_GetPrevSibling(*args
, **kwargs
)
5375 def GetFirstVisibleItem(*args
, **kwargs
):
5376 """GetFirstVisibleItem(self) -> TreeItemId"""
5377 return _controls_
.TreeCtrl_GetFirstVisibleItem(*args
, **kwargs
)
5379 def GetNextVisible(*args
, **kwargs
):
5380 """GetNextVisible(self, TreeItemId item) -> TreeItemId"""
5381 return _controls_
.TreeCtrl_GetNextVisible(*args
, **kwargs
)
5383 def GetPrevVisible(*args
, **kwargs
):
5384 """GetPrevVisible(self, TreeItemId item) -> TreeItemId"""
5385 return _controls_
.TreeCtrl_GetPrevVisible(*args
, **kwargs
)
5387 def AddRoot(*args
, **kwargs
):
5388 """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId"""
5389 return _controls_
.TreeCtrl_AddRoot(*args
, **kwargs
)
5391 def PrependItem(*args
, **kwargs
):
5393 PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5394 TreeItemData data=None) -> TreeItemId
5396 return _controls_
.TreeCtrl_PrependItem(*args
, **kwargs
)
5398 def InsertItem(*args
, **kwargs
):
5400 InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text,
5401 int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5403 return _controls_
.TreeCtrl_InsertItem(*args
, **kwargs
)
5405 def InsertItemBefore(*args
, **kwargs
):
5407 InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1,
5408 int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5410 return _controls_
.TreeCtrl_InsertItemBefore(*args
, **kwargs
)
5412 def AppendItem(*args
, **kwargs
):
5414 AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5415 TreeItemData data=None) -> TreeItemId
5417 return _controls_
.TreeCtrl_AppendItem(*args
, **kwargs
)
5419 def Delete(*args
, **kwargs
):
5420 """Delete(self, TreeItemId item)"""
5421 return _controls_
.TreeCtrl_Delete(*args
, **kwargs
)
5423 def DeleteChildren(*args
, **kwargs
):
5424 """DeleteChildren(self, TreeItemId item)"""
5425 return _controls_
.TreeCtrl_DeleteChildren(*args
, **kwargs
)
5427 def DeleteAllItems(*args
, **kwargs
):
5428 """DeleteAllItems(self)"""
5429 return _controls_
.TreeCtrl_DeleteAllItems(*args
, **kwargs
)
5431 def Expand(*args
, **kwargs
):
5432 """Expand(self, TreeItemId item)"""
5433 return _controls_
.TreeCtrl_Expand(*args
, **kwargs
)
5435 def ExpandAllChildren(*args
, **kwargs
):
5436 """ExpandAllChildren(self, TreeItemId item)"""
5437 return _controls_
.TreeCtrl_ExpandAllChildren(*args
, **kwargs
)
5439 def ExpandAll(*args
, **kwargs
):
5440 """ExpandAll(self)"""
5441 return _controls_
.TreeCtrl_ExpandAll(*args
, **kwargs
)
5443 def Collapse(*args
, **kwargs
):
5444 """Collapse(self, TreeItemId item)"""
5445 return _controls_
.TreeCtrl_Collapse(*args
, **kwargs
)
5447 def CollapseAndReset(*args
, **kwargs
):
5448 """CollapseAndReset(self, TreeItemId item)"""
5449 return _controls_
.TreeCtrl_CollapseAndReset(*args
, **kwargs
)
5451 def Toggle(*args
, **kwargs
):
5452 """Toggle(self, TreeItemId item)"""
5453 return _controls_
.TreeCtrl_Toggle(*args
, **kwargs
)
5455 def Unselect(*args
, **kwargs
):
5456 """Unselect(self)"""
5457 return _controls_
.TreeCtrl_Unselect(*args
, **kwargs
)
5459 def UnselectItem(*args
, **kwargs
):
5460 """UnselectItem(self, TreeItemId item)"""
5461 return _controls_
.TreeCtrl_UnselectItem(*args
, **kwargs
)
5463 def UnselectAll(*args
, **kwargs
):
5464 """UnselectAll(self)"""
5465 return _controls_
.TreeCtrl_UnselectAll(*args
, **kwargs
)
5467 def SelectItem(*args
, **kwargs
):
5468 """SelectItem(self, TreeItemId item, bool select=True)"""
5469 return _controls_
.TreeCtrl_SelectItem(*args
, **kwargs
)
5471 def ToggleItemSelection(*args
, **kwargs
):
5472 """ToggleItemSelection(self, TreeItemId item)"""
5473 return _controls_
.TreeCtrl_ToggleItemSelection(*args
, **kwargs
)
5475 def EnsureVisible(*args
, **kwargs
):
5476 """EnsureVisible(self, TreeItemId item)"""
5477 return _controls_
.TreeCtrl_EnsureVisible(*args
, **kwargs
)
5479 def ScrollTo(*args
, **kwargs
):
5480 """ScrollTo(self, TreeItemId item)"""
5481 return _controls_
.TreeCtrl_ScrollTo(*args
, **kwargs
)
5483 def EditLabel(*args
, **kwargs
):
5484 """EditLabel(self, TreeItemId item)"""
5485 return _controls_
.TreeCtrl_EditLabel(*args
, **kwargs
)
5487 def GetEditControl(*args
, **kwargs
):
5488 """GetEditControl(self) -> TextCtrl"""
5489 return _controls_
.TreeCtrl_GetEditControl(*args
, **kwargs
)
5491 def EndEditLabel(*args
, **kwargs
):
5492 """EndEditLabel(self, TreeItemId item, bool discardChanges=False)"""
5493 return _controls_
.TreeCtrl_EndEditLabel(*args
, **kwargs
)
5495 def SortChildren(*args
, **kwargs
):
5496 """SortChildren(self, TreeItemId item)"""
5497 return _controls_
.TreeCtrl_SortChildren(*args
, **kwargs
)
5499 def HitTest(*args
, **kwargs
):
5501 HitTest(Point point) -> (item, where)
5503 Determine which item (if any) belongs the given point. The coordinates
5504 specified are relative to the client area of tree ctrl and the where return
5505 value is set to a bitmask of wxTREE_HITTEST_xxx constants.
5508 return _controls_
.TreeCtrl_HitTest(*args
, **kwargs
)
5510 def GetBoundingRect(*args
, **kwargs
):
5511 """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject"""
5512 return _controls_
.TreeCtrl_GetBoundingRect(*args
, **kwargs
)
5514 def SetState(*args
, **kwargs
):
5515 """SetState(self, TreeItemId node, int state)"""
5516 return _controls_
.TreeCtrl_SetState(*args
, **kwargs
)
5518 def GetState(*args
, **kwargs
):
5519 """GetState(self, TreeItemId node) -> int"""
5520 return _controls_
.TreeCtrl_GetState(*args
, **kwargs
)
5522 def GetClassDefaultAttributes(*args
, **kwargs
):
5524 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5526 Get the default attributes for this class. This is useful if you want
5527 to use the same font or colour in your own control as in a standard
5528 control -- which is a much better idea than hard coding specific
5529 colours or fonts which might look completely out of place on the
5530 user's system, especially if it uses themes.
5532 The variant parameter is only relevant under Mac currently and is
5533 ignore under other platforms. Under Mac, it will change the size of
5534 the returned font. See `wx.Window.SetWindowVariant` for more about
5537 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5539 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
5540 def SetQuickBestSize(*args
, **kwargs
):
5541 """SetQuickBestSize(self, bool q)"""
5542 return _controls_
.TreeCtrl_SetQuickBestSize(*args
, **kwargs
)
5544 def GetQuickBestSize(*args
, **kwargs
):
5545 """GetQuickBestSize(self) -> bool"""
5546 return _controls_
.TreeCtrl_GetQuickBestSize(*args
, **kwargs
)
5548 Count
= property(GetCount
,doc
="See `GetCount`")
5549 EditControl
= property(GetEditControl
,doc
="See `GetEditControl`")
5550 FirstVisibleItem
= property(GetFirstVisibleItem
,doc
="See `GetFirstVisibleItem`")
5551 ImageList
= property(GetImageList
,SetImageList
,doc
="See `GetImageList` and `SetImageList`")
5552 Indent
= property(GetIndent
,SetIndent
,doc
="See `GetIndent` and `SetIndent`")
5553 QuickBestSize
= property(GetQuickBestSize
,SetQuickBestSize
,doc
="See `GetQuickBestSize` and `SetQuickBestSize`")
5554 RootItem
= property(GetRootItem
,doc
="See `GetRootItem`")
5555 Selection
= property(GetSelection
,doc
="See `GetSelection`")
5556 Selections
= property(GetSelections
,doc
="See `GetSelections`")
5557 Spacing
= property(GetSpacing
,SetSpacing
,doc
="See `GetSpacing` and `SetSpacing`")
5558 StateImageList
= property(GetStateImageList
,SetStateImageList
,doc
="See `GetStateImageList` and `SetStateImageList`")
5559 _controls_
.TreeCtrl_swigregister(TreeCtrl
)
5561 def PreTreeCtrl(*args
, **kwargs
):
5562 """PreTreeCtrl() -> TreeCtrl"""
5563 val
= _controls_
.new_PreTreeCtrl(*args
, **kwargs
)
5566 def TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
5568 TreeCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5570 Get the default attributes for this class. This is useful if you want
5571 to use the same font or colour in your own control as in a standard
5572 control -- which is a much better idea than hard coding specific
5573 colours or fonts which might look completely out of place on the
5574 user's system, especially if it uses themes.
5576 The variant parameter is only relevant under Mac currently and is
5577 ignore under other platforms. Under Mac, it will change the size of
5578 the returned font. See `wx.Window.SetWindowVariant` for more about
5581 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5583 #---------------------------------------------------------------------------
5585 DIRCTRL_DIR_ONLY
= _controls_
.DIRCTRL_DIR_ONLY
5586 DIRCTRL_SELECT_FIRST
= _controls_
.DIRCTRL_SELECT_FIRST
5587 DIRCTRL_SHOW_FILTERS
= _controls_
.DIRCTRL_SHOW_FILTERS
5588 DIRCTRL_3D_INTERNAL
= _controls_
.DIRCTRL_3D_INTERNAL
5589 DIRCTRL_EDIT_LABELS
= _controls_
.DIRCTRL_EDIT_LABELS
5590 class GenericDirCtrl(_core
.Control
):
5591 """Proxy of C++ GenericDirCtrl class"""
5592 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5593 __repr__
= _swig_repr
5594 def __init__(self
, *args
, **kwargs
):
5596 __init__(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5597 Point pos=DefaultPosition, Size size=DefaultSize,
5598 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5599 String filter=EmptyString,
5600 int defaultFilter=0, String name=TreeCtrlNameStr) -> GenericDirCtrl
5602 _controls_
.GenericDirCtrl_swiginit(self
,_controls_
.new_GenericDirCtrl(*args
, **kwargs
))
5603 self
._setOORInfo
(self
)
5605 def Create(*args
, **kwargs
):
5607 Create(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5608 Point pos=DefaultPosition, Size size=DefaultSize,
5609 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5610 String filter=EmptyString,
5611 int defaultFilter=0, String name=TreeCtrlNameStr) -> bool
5613 return _controls_
.GenericDirCtrl_Create(*args
, **kwargs
)
5615 def ExpandPath(*args
, **kwargs
):
5616 """ExpandPath(self, String path) -> bool"""
5617 return _controls_
.GenericDirCtrl_ExpandPath(*args
, **kwargs
)
5619 def CollapsePath(*args
, **kwargs
):
5620 """CollapsePath(self, String path) -> bool"""
5621 return _controls_
.GenericDirCtrl_CollapsePath(*args
, **kwargs
)
5623 def GetDefaultPath(*args
, **kwargs
):
5624 """GetDefaultPath(self) -> String"""
5625 return _controls_
.GenericDirCtrl_GetDefaultPath(*args
, **kwargs
)
5627 def SetDefaultPath(*args
, **kwargs
):
5628 """SetDefaultPath(self, String path)"""
5629 return _controls_
.GenericDirCtrl_SetDefaultPath(*args
, **kwargs
)
5631 def GetPath(*args
, **kwargs
):
5632 """GetPath(self) -> String"""
5633 return _controls_
.GenericDirCtrl_GetPath(*args
, **kwargs
)
5635 def GetFilePath(*args
, **kwargs
):
5636 """GetFilePath(self) -> String"""
5637 return _controls_
.GenericDirCtrl_GetFilePath(*args
, **kwargs
)
5639 def SetPath(*args
, **kwargs
):
5640 """SetPath(self, String path)"""
5641 return _controls_
.GenericDirCtrl_SetPath(*args
, **kwargs
)
5643 def ShowHidden(*args
, **kwargs
):
5644 """ShowHidden(self, bool show)"""
5645 return _controls_
.GenericDirCtrl_ShowHidden(*args
, **kwargs
)
5647 def GetShowHidden(*args
, **kwargs
):
5648 """GetShowHidden(self) -> bool"""
5649 return _controls_
.GenericDirCtrl_GetShowHidden(*args
, **kwargs
)
5651 def GetFilter(*args
, **kwargs
):
5652 """GetFilter(self) -> String"""
5653 return _controls_
.GenericDirCtrl_GetFilter(*args
, **kwargs
)
5655 def SetFilter(*args
, **kwargs
):
5656 """SetFilter(self, String filter)"""
5657 return _controls_
.GenericDirCtrl_SetFilter(*args
, **kwargs
)
5659 def GetFilterIndex(*args
, **kwargs
):
5660 """GetFilterIndex(self) -> int"""
5661 return _controls_
.GenericDirCtrl_GetFilterIndex(*args
, **kwargs
)
5663 def SetFilterIndex(*args
, **kwargs
):
5664 """SetFilterIndex(self, int n)"""
5665 return _controls_
.GenericDirCtrl_SetFilterIndex(*args
, **kwargs
)
5667 def GetRootId(*args
, **kwargs
):
5668 """GetRootId(self) -> TreeItemId"""
5669 return _controls_
.GenericDirCtrl_GetRootId(*args
, **kwargs
)
5671 def GetTreeCtrl(*args
, **kwargs
):
5672 """GetTreeCtrl(self) -> TreeCtrl"""
5673 return _controls_
.GenericDirCtrl_GetTreeCtrl(*args
, **kwargs
)
5675 def GetFilterListCtrl(*args
, **kwargs
):
5676 """GetFilterListCtrl(self) -> DirFilterListCtrl"""
5677 return _controls_
.GenericDirCtrl_GetFilterListCtrl(*args
, **kwargs
)
5679 def FindChild(*args
, **kwargs
):
5681 FindChild(wxTreeItemId parentId, wxString path) -> (item, done)
5683 Find the child that matches the first part of 'path'. E.g. if a child
5684 path is "/usr" and 'path' is "/usr/include" then the child for
5685 /usr is returned. If the path string has been used (we're at the
5686 leaf), done is set to True.
5689 return _controls_
.GenericDirCtrl_FindChild(*args
, **kwargs
)
5691 def DoResize(*args
, **kwargs
):
5692 """DoResize(self)"""
5693 return _controls_
.GenericDirCtrl_DoResize(*args
, **kwargs
)
5695 def ReCreateTree(*args
, **kwargs
):
5696 """ReCreateTree(self)"""
5697 return _controls_
.GenericDirCtrl_ReCreateTree(*args
, **kwargs
)
5699 DefaultPath
= property(GetDefaultPath
,SetDefaultPath
,doc
="See `GetDefaultPath` and `SetDefaultPath`")
5700 FilePath
= property(GetFilePath
,doc
="See `GetFilePath`")
5701 Filter
= property(GetFilter
,SetFilter
,doc
="See `GetFilter` and `SetFilter`")
5702 FilterIndex
= property(GetFilterIndex
,SetFilterIndex
,doc
="See `GetFilterIndex` and `SetFilterIndex`")
5703 FilterListCtrl
= property(GetFilterListCtrl
,doc
="See `GetFilterListCtrl`")
5704 Path
= property(GetPath
,SetPath
,doc
="See `GetPath` and `SetPath`")
5705 RootId
= property(GetRootId
,doc
="See `GetRootId`")
5706 TreeCtrl
= property(GetTreeCtrl
,doc
="See `GetTreeCtrl`")
5707 _controls_
.GenericDirCtrl_swigregister(GenericDirCtrl
)
5708 DirDialogDefaultFolderStr
= cvar
.DirDialogDefaultFolderStr
5710 def PreGenericDirCtrl(*args
, **kwargs
):
5711 """PreGenericDirCtrl() -> GenericDirCtrl"""
5712 val
= _controls_
.new_PreGenericDirCtrl(*args
, **kwargs
)
5715 class DirFilterListCtrl(Choice
):
5716 """Proxy of C++ DirFilterListCtrl class"""
5717 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5718 __repr__
= _swig_repr
5719 def __init__(self
, *args
, **kwargs
):
5721 __init__(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5722 Size size=DefaultSize, long style=0) -> DirFilterListCtrl
5724 _controls_
.DirFilterListCtrl_swiginit(self
,_controls_
.new_DirFilterListCtrl(*args
, **kwargs
))
5725 self
._setOORInfo
(self
)
5727 def Create(*args
, **kwargs
):
5729 Create(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5730 Size size=DefaultSize, long style=0) -> bool
5732 return _controls_
.DirFilterListCtrl_Create(*args
, **kwargs
)
5734 def FillFilterList(*args
, **kwargs
):
5735 """FillFilterList(self, String filter, int defaultFilter)"""
5736 return _controls_
.DirFilterListCtrl_FillFilterList(*args
, **kwargs
)
5738 _controls_
.DirFilterListCtrl_swigregister(DirFilterListCtrl
)
5740 def PreDirFilterListCtrl(*args
, **kwargs
):
5741 """PreDirFilterListCtrl() -> DirFilterListCtrl"""
5742 val
= _controls_
.new_PreDirFilterListCtrl(*args
, **kwargs
)
5745 #---------------------------------------------------------------------------
5747 class PyControl(_core
.Control
):
5748 """Proxy of C++ PyControl class"""
5749 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5750 __repr__
= _swig_repr
5751 def __init__(self
, *args
, **kwargs
):
5753 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
5754 Size size=DefaultSize, long style=0, Validator validator=DefaultValidator,
5755 String name=ControlNameStr) -> PyControl
5757 _controls_
.PyControl_swiginit(self
,_controls_
.new_PyControl(*args
, **kwargs
))
5758 self
._setOORInfo
(self
);PyControl
._setCallbackInfo
(self
, self
, PyControl
)
5760 def _setCallbackInfo(*args
, **kwargs
):
5761 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5762 return _controls_
.PyControl__setCallbackInfo(*args
, **kwargs
)
5764 SetBestSize
= wx
.Window
.SetInitialSize
5765 def DoEraseBackground(*args
, **kwargs
):
5766 """DoEraseBackground(self, DC dc) -> bool"""
5767 return _controls_
.PyControl_DoEraseBackground(*args
, **kwargs
)
5769 def DoMoveWindow(*args
, **kwargs
):
5770 """DoMoveWindow(self, int x, int y, int width, int height)"""
5771 return _controls_
.PyControl_DoMoveWindow(*args
, **kwargs
)
5773 def DoSetSize(*args
, **kwargs
):
5774 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
5775 return _controls_
.PyControl_DoSetSize(*args
, **kwargs
)
5777 def DoSetClientSize(*args
, **kwargs
):
5778 """DoSetClientSize(self, int width, int height)"""
5779 return _controls_
.PyControl_DoSetClientSize(*args
, **kwargs
)
5781 def DoSetVirtualSize(*args
, **kwargs
):
5782 """DoSetVirtualSize(self, int x, int y)"""
5783 return _controls_
.PyControl_DoSetVirtualSize(*args
, **kwargs
)
5785 def DoGetSize(*args
, **kwargs
):
5786 """DoGetSize() -> (width, height)"""
5787 return _controls_
.PyControl_DoGetSize(*args
, **kwargs
)
5789 def DoGetClientSize(*args
, **kwargs
):
5790 """DoGetClientSize() -> (width, height)"""
5791 return _controls_
.PyControl_DoGetClientSize(*args
, **kwargs
)
5793 def DoGetPosition(*args
, **kwargs
):
5794 """DoGetPosition() -> (x,y)"""
5795 return _controls_
.PyControl_DoGetPosition(*args
, **kwargs
)
5797 def DoGetVirtualSize(*args
, **kwargs
):
5798 """DoGetVirtualSize(self) -> Size"""
5799 return _controls_
.PyControl_DoGetVirtualSize(*args
, **kwargs
)
5801 def DoGetBestSize(*args
, **kwargs
):
5802 """DoGetBestSize(self) -> Size"""
5803 return _controls_
.PyControl_DoGetBestSize(*args
, **kwargs
)
5805 def GetDefaultAttributes(*args
, **kwargs
):
5806 """GetDefaultAttributes(self) -> VisualAttributes"""
5807 return _controls_
.PyControl_GetDefaultAttributes(*args
, **kwargs
)
5809 def OnInternalIdle(*args
, **kwargs
):
5810 """OnInternalIdle(self)"""
5811 return _controls_
.PyControl_OnInternalIdle(*args
, **kwargs
)
5813 def base_DoMoveWindow(*args
, **kw
):
5814 return PyScrolledWindow
.DoMoveWindow(*args
, **kw
)
5815 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
5816 "Please use PyScrolledWindow.DoMoveWindow instead.")
5818 def base_DoSetSize(*args
, **kw
):
5819 return PyScrolledWindow
.DoSetSize(*args
, **kw
)
5820 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
5821 "Please use PyScrolledWindow.DoSetSize instead.")
5823 def base_DoSetClientSize(*args
, **kw
):
5824 return PyScrolledWindow
.DoSetClientSize(*args
, **kw
)
5825 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
5826 "Please use PyScrolledWindow.DoSetClientSize instead.")
5828 def base_DoSetVirtualSize(*args
, **kw
):
5829 return PyScrolledWindow
.DoSetVirtualSize(*args
, **kw
)
5830 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
5831 "Please use PyScrolledWindow.DoSetVirtualSize instead.")
5833 def base_DoGetSize(*args
, **kw
):
5834 return PyScrolledWindow
.DoGetSize(*args
, **kw
)
5835 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
5836 "Please use PyScrolledWindow.DoGetSize instead.")
5838 def base_DoGetClientSize(*args
, **kw
):
5839 return PyScrolledWindow
.DoGetClientSize(*args
, **kw
)
5840 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
5841 "Please use PyScrolledWindow.DoGetClientSize instead.")
5843 def base_DoGetPosition(*args
, **kw
):
5844 return PyScrolledWindow
.DoGetPosition(*args
, **kw
)
5845 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
5846 "Please use PyScrolledWindow.DoGetPosition instead.")
5848 def base_DoGetVirtualSize(*args
, **kw
):
5849 return PyScrolledWindow
.DoGetVirtualSize(*args
, **kw
)
5850 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
5851 "Please use PyScrolledWindow.DoGetVirtualSize instead.")
5853 def base_DoGetBestSize(*args
, **kw
):
5854 return PyScrolledWindow
.DoGetBestSize(*args
, **kw
)
5855 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
5856 "Please use PyScrolledWindow.DoGetBestSize instead.")
5858 def base_InitDialog(*args
, **kw
):
5859 return PyScrolledWindow
.InitDialog(*args
, **kw
)
5860 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
5861 "Please use PyScrolledWindow.InitDialog instead.")
5863 def base_TransferDataToWindow(*args
, **kw
):
5864 return PyScrolledWindow
.TransferDataToWindow(*args
, **kw
)
5865 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
5866 "Please use PyScrolledWindow.TransferDataToWindow instead.")
5868 def base_TransferDataFromWindow(*args
, **kw
):
5869 return PyScrolledWindow
.TransferDataFromWindow(*args
, **kw
)
5870 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
5871 "Please use PyScrolledWindow.TransferDataFromWindow instead.")
5873 def base_Validate(*args
, **kw
):
5874 return PyScrolledWindow
.Validate(*args
, **kw
)
5875 base_Validate
= wx
._deprecated
(base_Validate
,
5876 "Please use PyScrolledWindow.Validate instead.")
5878 def base_AcceptsFocus(*args
, **kw
):
5879 return PyScrolledWindow
.AcceptsFocus(*args
, **kw
)
5880 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
5881 "Please use PyScrolledWindow.AcceptsFocus instead.")
5883 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
5884 return PyScrolledWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
5885 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
5886 "Please use PyScrolledWindow.AcceptsFocusFromKeyboard instead.")
5888 def base_GetMaxSize(*args
, **kw
):
5889 return PyScrolledWindow
.GetMaxSize(*args
, **kw
)
5890 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
5891 "Please use PyScrolledWindow.GetMaxSize instead.")
5893 def base_AddChild(*args
, **kw
):
5894 return PyScrolledWindow
.AddChild(*args
, **kw
)
5895 base_AddChild
= wx
._deprecated
(base_AddChild
,
5896 "Please use PyScrolledWindow.AddChild instead.")
5898 def base_RemoveChild(*args
, **kw
):
5899 return PyScrolledWindow
.RemoveChild(*args
, **kw
)
5900 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
5901 "Please use PyScrolledWindow.RemoveChild instead.")
5903 def base_ShouldInheritColours(*args
, **kw
):
5904 return PyScrolledWindow
.ShouldInheritColours(*args
, **kw
)
5905 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
5906 "Please use PyScrolledWindow.ShouldInheritColours instead.")
5908 def base_GetDefaultAttributes(*args
, **kw
):
5909 return PyScrolledWindow
.GetDefaultAttributes(*args
, **kw
)
5910 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
5911 "Please use PyScrolledWindow.GetDefaultAttributes instead.")
5913 def base_OnInternalIdle(*args
, **kw
):
5914 return PyScrolledWindow
.OnInternalIdle(*args
, **kw
)
5915 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
5916 "Please use PyScrolledWindow.OnInternalIdle instead.")
5918 _controls_
.PyControl_swigregister(PyControl
)
5920 def PrePyControl(*args
, **kwargs
):
5921 """PrePyControl() -> PyControl"""
5922 val
= _controls_
.new_PrePyControl(*args
, **kwargs
)
5925 #---------------------------------------------------------------------------
5927 wxEVT_HELP
= _controls_
.wxEVT_HELP
5928 wxEVT_DETAILED_HELP
= _controls_
.wxEVT_DETAILED_HELP
5929 EVT_HELP
= wx
.PyEventBinder( wxEVT_HELP
, 1)
5930 EVT_HELP_RANGE
= wx
.PyEventBinder( wxEVT_HELP
, 2)
5931 EVT_DETAILED_HELP
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 1)
5932 EVT_DETAILED_HELP_RANGE
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 2)
5934 class HelpEvent(_core
.CommandEvent
):
5936 A help event is sent when the user has requested context-sensitive
5937 help. This can either be caused by the application requesting
5938 context-sensitive help mode via wx.ContextHelp, or (on MS Windows) by
5939 the system generating a WM_HELP message when the user pressed F1 or
5940 clicked on the query button in a dialog caption.
5942 A help event is sent to the window that the user clicked on, and is
5943 propagated up the window hierarchy until the event is processed or
5944 there are no more event handlers. The application should call
5945 event.GetId to check the identity of the clicked-on window, and then
5946 either show some suitable help or call event.Skip if the identifier is
5947 unrecognised. Calling Skip is important because it allows wxWindows to
5948 generate further events for ancestors of the clicked-on
5949 window. Otherwise it would be impossible to show help for container
5950 windows, since processing would stop after the first window found.
5952 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5953 __repr__
= _swig_repr
5954 Origin_Unknown
= _controls_
.HelpEvent_Origin_Unknown
5955 Origin_Keyboard
= _controls_
.HelpEvent_Origin_Keyboard
5956 Origin_HelpButton
= _controls_
.HelpEvent_Origin_HelpButton
5957 def __init__(self
, *args
, **kwargs
):
5959 __init__(self, EventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition,
5960 int origin=Origin_Unknown) -> HelpEvent
5962 _controls_
.HelpEvent_swiginit(self
,_controls_
.new_HelpEvent(*args
, **kwargs
))
5963 def GetPosition(*args
, **kwargs
):
5965 GetPosition(self) -> Point
5967 Returns the left-click position of the mouse, in screen
5968 coordinates. This allows the application to position the help
5971 return _controls_
.HelpEvent_GetPosition(*args
, **kwargs
)
5973 def SetPosition(*args
, **kwargs
):
5975 SetPosition(self, Point pos)
5977 Sets the left-click position of the mouse, in screen coordinates.
5979 return _controls_
.HelpEvent_SetPosition(*args
, **kwargs
)
5981 def GetLink(*args
, **kwargs
):
5983 GetLink(self) -> String
5985 Get an optional link to further help
5987 return _controls_
.HelpEvent_GetLink(*args
, **kwargs
)
5989 def SetLink(*args
, **kwargs
):
5991 SetLink(self, String link)
5993 Set an optional link to further help
5995 return _controls_
.HelpEvent_SetLink(*args
, **kwargs
)
5997 def GetTarget(*args
, **kwargs
):
5999 GetTarget(self) -> String
6001 Get an optional target to display help in. E.g. a window specification
6003 return _controls_
.HelpEvent_GetTarget(*args
, **kwargs
)
6005 def SetTarget(*args
, **kwargs
):
6007 SetTarget(self, String target)
6009 Set an optional target to display help in. E.g. a window specification
6011 return _controls_
.HelpEvent_SetTarget(*args
, **kwargs
)
6013 def GetOrigin(*args
, **kwargs
):
6015 GetOrigin(self) -> int
6017 Optiononal indication of the source of the event.
6019 return _controls_
.HelpEvent_GetOrigin(*args
, **kwargs
)
6021 def SetOrigin(*args
, **kwargs
):
6022 """SetOrigin(self, int origin)"""
6023 return _controls_
.HelpEvent_SetOrigin(*args
, **kwargs
)
6025 Link
= property(GetLink
,SetLink
,doc
="See `GetLink` and `SetLink`")
6026 Origin
= property(GetOrigin
,SetOrigin
,doc
="See `GetOrigin` and `SetOrigin`")
6027 Position
= property(GetPosition
,SetPosition
,doc
="See `GetPosition` and `SetPosition`")
6028 Target
= property(GetTarget
,SetTarget
,doc
="See `GetTarget` and `SetTarget`")
6029 _controls_
.HelpEvent_swigregister(HelpEvent
)
6031 class ContextHelp(_core
.Object
):
6033 This class changes the cursor to a query and puts the application into
6034 a 'context-sensitive help mode'. When the user left-clicks on a window
6035 within the specified window, a ``EVT_HELP`` event is sent to that
6036 control, and the application may respond to it by popping up some
6039 There are a couple of ways to invoke this behaviour implicitly:
6041 * Use the wx.WS_EX_CONTEXTHELP extended style for a dialog or frame
6042 (Windows only). This will put a question mark in the titlebar,
6043 and Windows will put the application into context-sensitive help
6044 mode automatically, with further programming.
6046 * Create a `wx.ContextHelpButton`, whose predefined behaviour is
6047 to create a context help object. Normally you will write your
6048 application so that this button is only added to a dialog for
6049 non-Windows platforms (use ``wx.WS_EX_CONTEXTHELP`` on
6052 :see: `wx.ContextHelpButton`
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, Window window=None, bool doNow=True) -> ContextHelp
6061 Constructs a context help object, calling BeginContextHelp if doNow is
6064 If window is None, the top window is used.
6066 _controls_
.ContextHelp_swiginit(self
,_controls_
.new_ContextHelp(*args
, **kwargs
))
6067 __swig_destroy__
= _controls_
.delete_ContextHelp
6068 __del__
= lambda self
: None;
6069 def BeginContextHelp(*args
, **kwargs
):
6071 BeginContextHelp(self, Window window=None) -> bool
6073 Puts the application into context-sensitive help mode. window is the
6074 window which will be used to catch events; if NULL, the top window
6077 Returns true if the application was successfully put into
6078 context-sensitive help mode. This function only returns when the event
6081 return _controls_
.ContextHelp_BeginContextHelp(*args
, **kwargs
)
6083 def EndContextHelp(*args
, **kwargs
):
6085 EndContextHelp(self) -> bool
6087 Ends context-sensitive help mode. Not normally called by the
6090 return _controls_
.ContextHelp_EndContextHelp(*args
, **kwargs
)
6092 _controls_
.ContextHelp_swigregister(ContextHelp
)
6094 class ContextHelpButton(BitmapButton
):
6096 Instances of this class may be used to add a question mark button that
6097 when pressed, puts the application into context-help mode. It does
6098 this by creating a wx.ContextHelp object which itself generates a
6099 ``EVT_HELP`` event when the user clicks on a window.
6101 On Windows, you may add a question-mark icon to a dialog by use of the
6102 ``wx.DIALOG_EX_CONTEXTHELP`` extra style, but on other platforms you
6103 will have to add a button explicitly, usually next to OK, Cancel or
6106 :see: `wx.ContextHelp`, `wx.ContextHelpButton`
6109 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6110 __repr__
= _swig_repr
6111 def __init__(self
, *args
, **kwargs
):
6113 __init__(self, Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
6114 Size size=DefaultSize, long style=BU_AUTODRAW) -> ContextHelpButton
6116 Constructor, creating and showing a context help button.
6118 _controls_
.ContextHelpButton_swiginit(self
,_controls_
.new_ContextHelpButton(*args
, **kwargs
))
6119 self
._setOORInfo
(self
)
6121 _controls_
.ContextHelpButton_swigregister(ContextHelpButton
)
6123 class HelpProvider(object):
6125 wx.HelpProvider is an abstract class used by a program
6126 implementing context-sensitive help to show the help text for the
6129 The current help provider must be explicitly set by the
6130 application using wx.HelpProvider.Set().
6132 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6133 def __init__(self
): raise AttributeError, "No constructor defined"
6134 __repr__
= _swig_repr
6135 __swig_destroy__
= _controls_
.delete_HelpProvider
6136 __del__
= lambda self
: None;
6137 def Set(*args
, **kwargs
):
6139 Set(HelpProvider helpProvider) -> HelpProvider
6141 Sset the current, application-wide help provider. Returns the previous
6142 one. Unlike some other classes, the help provider is not created on
6143 demand. This must be explicitly done by the application.
6145 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
6147 Set
= staticmethod(Set
)
6148 def Get(*args
, **kwargs
):
6150 Get() -> HelpProvider
6152 Return the current application-wide help provider.
6154 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
6156 Get
= staticmethod(Get
)
6157 def GetHelp(*args
, **kwargs
):
6159 GetHelp(self, Window window) -> String
6161 Gets the help string for this window. Its interpretation is dependent
6162 on the help provider except that empty string always means that no
6163 help is associated with the window.
6165 return _controls_
.HelpProvider_GetHelp(*args
, **kwargs
)
6167 def ShowHelp(*args
, **kwargs
):
6169 ShowHelp(self, Window window) -> bool
6171 Shows help for the given window. Uses GetHelp internally if
6172 applicable. Returns True if it was done, or False if no help was
6173 available for this window.
6175 return _controls_
.HelpProvider_ShowHelp(*args
, **kwargs
)
6177 def ShowHelpAtPoint(*args
, **kwargs
):
6179 ShowHelpAtPoint(self, wxWindowBase window, Point pt, int origin) -> bool
6181 Show help for the given window (uses window.GetHelpAtPoint()
6182 internally if applicable), return true if it was done or false if no
6183 help available for this window.
6185 return _controls_
.HelpProvider_ShowHelpAtPoint(*args
, **kwargs
)
6187 def AddHelp(*args
, **kwargs
):
6189 AddHelp(self, Window window, String text)
6191 Associates the text with the given window.
6193 return _controls_
.HelpProvider_AddHelp(*args
, **kwargs
)
6195 def AddHelpById(*args
, **kwargs
):
6197 AddHelpById(self, int id, String text)
6199 This version associates the given text with all windows with this
6200 id. May be used to set the same help string for all Cancel buttons in
6201 the application, for example.
6203 return _controls_
.HelpProvider_AddHelpById(*args
, **kwargs
)
6205 def RemoveHelp(*args
, **kwargs
):
6207 RemoveHelp(self, Window window)
6209 Removes the association between the window pointer and the help
6210 text. This is called by the wx.Window destructor. Without this, the
6211 table of help strings will fill up and when window pointers are
6212 reused, the wrong help string will be found.
6214 return _controls_
.HelpProvider_RemoveHelp(*args
, **kwargs
)
6216 def Destroy(*args
, **kwargs
):
6218 args
[0].this
.own(False)
6219 return _controls_
.HelpProvider_Destroy(*args
, **kwargs
)
6221 _controls_
.HelpProvider_swigregister(HelpProvider
)
6223 def HelpProvider_Set(*args
, **kwargs
):
6225 HelpProvider_Set(HelpProvider helpProvider) -> HelpProvider
6227 Sset the current, application-wide help provider. Returns the previous
6228 one. Unlike some other classes, the help provider is not created on
6229 demand. This must be explicitly done by the application.
6231 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
6233 def HelpProvider_Get(*args
):
6235 HelpProvider_Get() -> HelpProvider
6237 Return the current application-wide help provider.
6239 return _controls_
.HelpProvider_Get(*args
)
6241 class SimpleHelpProvider(HelpProvider
):
6243 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6244 supports only plain text help strings, and shows the string associated
6245 with the control (if any) in a tooltip.
6247 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6248 __repr__
= _swig_repr
6249 def __init__(self
, *args
, **kwargs
):
6251 __init__(self) -> SimpleHelpProvider
6253 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6254 supports only plain text help strings, and shows the string associated
6255 with the control (if any) in a tooltip.
6257 _controls_
.SimpleHelpProvider_swiginit(self
,_controls_
.new_SimpleHelpProvider(*args
, **kwargs
))
6258 _controls_
.SimpleHelpProvider_swigregister(SimpleHelpProvider
)
6260 #---------------------------------------------------------------------------
6262 class DragImage(_core
.Object
):
6263 """Proxy of C++ DragImage class"""
6264 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6265 __repr__
= _swig_repr
6266 def __init__(self
, *args
, **kwargs
):
6267 """__init__(self, Bitmap image, Cursor cursor=wxNullCursor) -> DragImage"""
6268 _controls_
.DragImage_swiginit(self
,_controls_
.new_DragImage(*args
, **kwargs
))
6269 __swig_destroy__
= _controls_
.delete_DragImage
6270 __del__
= lambda self
: None;
6271 def SetBackingBitmap(*args
, **kwargs
):
6272 """SetBackingBitmap(self, Bitmap bitmap)"""
6273 return _controls_
.DragImage_SetBackingBitmap(*args
, **kwargs
)
6275 def BeginDrag(*args
, **kwargs
):
6277 BeginDrag(self, Point hotspot, Window window, bool fullScreen=False,
6278 Rect rect=None) -> bool
6280 return _controls_
.DragImage_BeginDrag(*args
, **kwargs
)
6282 def BeginDragBounded(*args
, **kwargs
):
6283 """BeginDragBounded(self, Point hotspot, Window window, Window boundingWindow) -> bool"""
6284 return _controls_
.DragImage_BeginDragBounded(*args
, **kwargs
)
6286 def EndDrag(*args
, **kwargs
):
6287 """EndDrag(self) -> bool"""
6288 return _controls_
.DragImage_EndDrag(*args
, **kwargs
)
6290 def Move(*args
, **kwargs
):
6291 """Move(self, Point pt) -> bool"""
6292 return _controls_
.DragImage_Move(*args
, **kwargs
)
6294 def Show(*args
, **kwargs
):
6295 """Show(self) -> bool"""
6296 return _controls_
.DragImage_Show(*args
, **kwargs
)
6298 def Hide(*args
, **kwargs
):
6299 """Hide(self) -> bool"""
6300 return _controls_
.DragImage_Hide(*args
, **kwargs
)
6302 def GetImageRect(*args
, **kwargs
):
6303 """GetImageRect(self, Point pos) -> Rect"""
6304 return _controls_
.DragImage_GetImageRect(*args
, **kwargs
)
6306 def DoDrawImage(*args
, **kwargs
):
6307 """DoDrawImage(self, DC dc, Point pos) -> bool"""
6308 return _controls_
.DragImage_DoDrawImage(*args
, **kwargs
)
6310 def UpdateBackingFromWindow(*args
, **kwargs
):
6311 """UpdateBackingFromWindow(self, DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -> bool"""
6312 return _controls_
.DragImage_UpdateBackingFromWindow(*args
, **kwargs
)
6314 def RedrawImage(*args
, **kwargs
):
6315 """RedrawImage(self, Point oldPos, Point newPos, bool eraseOld, bool drawNew) -> bool"""
6316 return _controls_
.DragImage_RedrawImage(*args
, **kwargs
)
6318 ImageRect
= property(GetImageRect
,doc
="See `GetImageRect`")
6319 _controls_
.DragImage_swigregister(DragImage
)
6321 def DragIcon(*args
, **kwargs
):
6322 """DragIcon(Icon image, Cursor cursor=wxNullCursor) -> DragImage"""
6323 val
= _controls_
.new_DragIcon(*args
, **kwargs
)
6326 def DragString(*args
, **kwargs
):
6327 """DragString(String str, Cursor cursor=wxNullCursor) -> DragImage"""
6328 val
= _controls_
.new_DragString(*args
, **kwargs
)
6331 def DragTreeItem(*args
, **kwargs
):
6332 """DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -> DragImage"""
6333 val
= _controls_
.new_DragTreeItem(*args
, **kwargs
)
6336 def DragListItem(*args
, **kwargs
):
6337 """DragListItem(ListCtrl listCtrl, long id) -> DragImage"""
6338 val
= _controls_
.new_DragListItem(*args
, **kwargs
)
6341 #---------------------------------------------------------------------------
6343 DP_DEFAULT
= _controls_
.DP_DEFAULT
6344 DP_SPIN
= _controls_
.DP_SPIN
6345 DP_DROPDOWN
= _controls_
.DP_DROPDOWN
6346 DP_SHOWCENTURY
= _controls_
.DP_SHOWCENTURY
6347 DP_ALLOWNONE
= _controls_
.DP_ALLOWNONE
6348 class DatePickerCtrl(_core
.Control
):
6350 This control allows the user to select a date. Unlike
6351 `wx.calendar.CalendarCtrl`, which is a relatively big control,
6352 `wx.DatePickerCtrl` is implemented as a small window showing the
6353 currently selected date. The control can be edited using the keyboard,
6354 and can also display a popup window for more user-friendly date
6355 selection, depending on the styles used and the platform.
6357 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6358 __repr__
= _swig_repr
6359 def __init__(self
, *args
, **kwargs
):
6361 __init__(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6362 Point pos=DefaultPosition, Size size=DefaultSize,
6363 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6364 Validator validator=DefaultValidator,
6365 String name=DatePickerCtrlNameStr) -> DatePickerCtrl
6367 Create a new DatePickerCtrl.
6369 _controls_
.DatePickerCtrl_swiginit(self
,_controls_
.new_DatePickerCtrl(*args
, **kwargs
))
6370 self
._setOORInfo
(self
)
6372 def Create(*args
, **kwargs
):
6374 Create(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6375 Point pos=DefaultPosition, Size size=DefaultSize,
6376 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6377 Validator validator=DefaultValidator,
6378 String name=DatePickerCtrlNameStr) -> bool
6380 Create the GUI parts of the DatePickerCtrl, for use in 2-phase
6383 return _controls_
.DatePickerCtrl_Create(*args
, **kwargs
)
6385 def SetValue(*args
, **kwargs
):
6387 SetValue(self, DateTime dt)
6389 Changes the current value of the control. The date should be valid and
6390 included in the currently selected range, if any.
6392 Calling this method does not result in a date change event.
6394 return _controls_
.DatePickerCtrl_SetValue(*args
, **kwargs
)
6396 def GetValue(*args
, **kwargs
):
6398 GetValue(self) -> DateTime
6400 Returns the currently selected date. If there is no selection or the
6401 selection is outside of the current range, an invalid `wx.DateTime`
6404 return _controls_
.DatePickerCtrl_GetValue(*args
, **kwargs
)
6406 def SetRange(*args
, **kwargs
):
6408 SetRange(self, DateTime dt1, DateTime dt2)
6410 Sets the valid range for the date selection. If dt1 is valid, it
6411 becomes the earliest date (inclusive) accepted by the control. If dt2
6412 is valid, it becomes the latest possible date.
6414 If the current value of the control is outside of the newly set range
6415 bounds, the behaviour is undefined.
6417 return _controls_
.DatePickerCtrl_SetRange(*args
, **kwargs
)
6419 def GetLowerLimit(*args
, **kwargs
):
6421 GetLowerLimit(self) -> DateTime
6423 Get the lower limit of the valid range for the date selection, if any.
6424 If there is no range or there is no lower limit, then the
6425 `wx.DateTime` value returned will be invalid.
6427 return _controls_
.DatePickerCtrl_GetLowerLimit(*args
, **kwargs
)
6429 def GetUpperLimit(*args
, **kwargs
):
6431 GetUpperLimit(self) -> DateTime
6433 Get the upper limit of the valid range for the date selection, if any.
6434 If there is no range or there is no upper limit, then the
6435 `wx.DateTime` value returned will be invalid.
6437 return _controls_
.DatePickerCtrl_GetUpperLimit(*args
, **kwargs
)
6439 LowerLimit
= property(GetLowerLimit
,doc
="See `GetLowerLimit`")
6440 UpperLimit
= property(GetUpperLimit
,doc
="See `GetUpperLimit`")
6441 Value
= property(GetValue
,SetValue
,doc
="See `GetValue` and `SetValue`")
6442 _controls_
.DatePickerCtrl_swigregister(DatePickerCtrl
)
6443 DatePickerCtrlNameStr
= cvar
.DatePickerCtrlNameStr
6445 def PreDatePickerCtrl(*args
, **kwargs
):
6447 PreDatePickerCtrl() -> DatePickerCtrl
6449 Precreate a DatePickerCtrl for use in 2-phase creation.
6451 val
= _controls_
.new_PreDatePickerCtrl(*args
, **kwargs
)
6454 HL_CONTEXTMENU
= _controls_
.HL_CONTEXTMENU
6455 HL_ALIGN_LEFT
= _controls_
.HL_ALIGN_LEFT
6456 HL_ALIGN_RIGHT
= _controls_
.HL_ALIGN_RIGHT
6457 HL_ALIGN_CENTRE
= _controls_
.HL_ALIGN_CENTRE
6458 HL_DEFAULT_STYLE
= _controls_
.HL_DEFAULT_STYLE
6459 #---------------------------------------------------------------------------
6461 class HyperlinkCtrl(_core
.Control
):
6463 A static text control that emulates a hyperlink. The link is displayed
6464 in an appropriate text style, derived from the control's normal font.
6465 When the mouse rolls over the link, the cursor changes to a hand and
6466 the link's color changes to the active color.
6468 Clicking on the link does not launch a web browser; instead, a
6469 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6473 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6474 __repr__
= _swig_repr
6475 def __init__(self
, *args
, **kwargs
):
6477 __init__(self, Window parent, int id, String label, String url, Point pos=DefaultPosition,
6478 Size size=DefaultSize,
6479 long style=HL_DEFAULT_STYLE, String name=HyperlinkCtrlNameStr) -> HyperlinkCtrl
6481 A static text control that emulates a hyperlink. The link is displayed
6482 in an appropriate text style, derived from the control's normal font.
6483 When the mouse rolls over the link, the cursor changes to a hand and
6484 the link's color changes to the active color.
6486 Clicking on the link does not launch a web browser; instead, a
6487 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6491 _controls_
.HyperlinkCtrl_swiginit(self
,_controls_
.new_HyperlinkCtrl(*args
, **kwargs
))
6492 self
._setOORInfo
(self
)
6494 def Create(*args
, **kwargs
):
6496 Create(self, Window parent, int id, String label, String url, Point pos=DefaultPosition,
6497 Size size=DefaultSize,
6498 long style=HL_DEFAULT_STYLE, String name=HyperlinkCtrlNameStr) -> bool
6500 return _controls_
.HyperlinkCtrl_Create(*args
, **kwargs
)
6502 def GetHoverColour(*args
, **kwargs
):
6503 """GetHoverColour(self) -> Colour"""
6504 return _controls_
.HyperlinkCtrl_GetHoverColour(*args
, **kwargs
)
6506 def SetHoverColour(*args
, **kwargs
):
6507 """SetHoverColour(self, Colour colour)"""
6508 return _controls_
.HyperlinkCtrl_SetHoverColour(*args
, **kwargs
)
6510 def GetNormalColour(*args
, **kwargs
):
6511 """GetNormalColour(self) -> Colour"""
6512 return _controls_
.HyperlinkCtrl_GetNormalColour(*args
, **kwargs
)
6514 def SetNormalColour(*args
, **kwargs
):
6515 """SetNormalColour(self, Colour colour)"""
6516 return _controls_
.HyperlinkCtrl_SetNormalColour(*args
, **kwargs
)
6518 def GetVisitedColour(*args
, **kwargs
):
6519 """GetVisitedColour(self) -> Colour"""
6520 return _controls_
.HyperlinkCtrl_GetVisitedColour(*args
, **kwargs
)
6522 def SetVisitedColour(*args
, **kwargs
):
6523 """SetVisitedColour(self, Colour colour)"""
6524 return _controls_
.HyperlinkCtrl_SetVisitedColour(*args
, **kwargs
)
6526 def GetURL(*args
, **kwargs
):
6527 """GetURL(self) -> String"""
6528 return _controls_
.HyperlinkCtrl_GetURL(*args
, **kwargs
)
6530 def SetURL(*args
, **kwargs
):
6531 """SetURL(self, String url)"""
6532 return _controls_
.HyperlinkCtrl_SetURL(*args
, **kwargs
)
6534 def SetVisited(*args
, **kwargs
):
6535 """SetVisited(self, bool visited=True)"""
6536 return _controls_
.HyperlinkCtrl_SetVisited(*args
, **kwargs
)
6538 def GetVisited(*args
, **kwargs
):
6539 """GetVisited(self) -> bool"""
6540 return _controls_
.HyperlinkCtrl_GetVisited(*args
, **kwargs
)
6542 HoverColour
= property(GetHoverColour
,SetHoverColour
,doc
="See `GetHoverColour` and `SetHoverColour`")
6543 NormalColour
= property(GetNormalColour
,SetNormalColour
,doc
="See `GetNormalColour` and `SetNormalColour`")
6544 URL
= property(GetURL
,SetURL
,doc
="See `GetURL` and `SetURL`")
6545 Visited
= property(GetVisited
,SetVisited
,doc
="See `GetVisited` and `SetVisited`")
6546 VisitedColour
= property(GetVisitedColour
,SetVisitedColour
,doc
="See `GetVisitedColour` and `SetVisitedColour`")
6547 _controls_
.HyperlinkCtrl_swigregister(HyperlinkCtrl
)
6548 HyperlinkCtrlNameStr
= cvar
.HyperlinkCtrlNameStr
6550 def PreHyperlinkCtrl(*args
, **kwargs
):
6552 PreHyperlinkCtrl() -> HyperlinkCtrl
6554 A static text control that emulates a hyperlink. The link is displayed
6555 in an appropriate text style, derived from the control's normal font.
6556 When the mouse rolls over the link, the cursor changes to a hand and
6557 the link's color changes to the active color.
6559 Clicking on the link does not launch a web browser; instead, a
6560 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6564 val
= _controls_
.new_PreHyperlinkCtrl(*args
, **kwargs
)
6567 wxEVT_COMMAND_HYPERLINK
= _controls_
.wxEVT_COMMAND_HYPERLINK
6568 class HyperlinkEvent(_core
.CommandEvent
):
6569 """Proxy of C++ HyperlinkEvent class"""
6570 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6571 __repr__
= _swig_repr
6572 def __init__(self
, *args
, **kwargs
):
6573 """__init__(self, Object generator, int id, String url) -> HyperlinkEvent"""
6574 _controls_
.HyperlinkEvent_swiginit(self
,_controls_
.new_HyperlinkEvent(*args
, **kwargs
))
6575 def GetURL(*args
, **kwargs
):
6576 """GetURL(self) -> String"""
6577 return _controls_
.HyperlinkEvent_GetURL(*args
, **kwargs
)
6579 def SetURL(*args
, **kwargs
):
6580 """SetURL(self, String url)"""
6581 return _controls_
.HyperlinkEvent_SetURL(*args
, **kwargs
)
6583 URL
= property(GetURL
,SetURL
,doc
="See `GetURL` and `SetURL`")
6584 _controls_
.HyperlinkEvent_swigregister(HyperlinkEvent
)
6586 EVT_HYPERLINK
= wx
.PyEventBinder( wxEVT_COMMAND_HYPERLINK
, 1 )
6588 #---------------------------------------------------------------------------
6590 PB_USE_TEXTCTRL
= _controls_
.PB_USE_TEXTCTRL
6591 class PickerBase(_core
.Control
):
6593 Base abstract class for all pickers which support an auxiliary text
6594 control. This class handles all positioning and sizing of the text
6595 control like a an horizontal `wx.BoxSizer` would do, with the text
6596 control on the left of the picker button and the proportion of the
6597 picker fixed to value 1.
6599 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6600 def __init__(self
): raise AttributeError, "No constructor defined"
6601 __repr__
= _swig_repr
6602 def CreateBase(*args
, **kwargs
):
6604 CreateBase(self, Window parent, int id, String text=wxEmptyString, Point pos=DefaultPosition,
6605 Size size=DefaultSize,
6606 long style=0, Validator validator=DefaultValidator,
6607 String name=wxButtonNameStr) -> bool
6609 return _controls_
.PickerBase_CreateBase(*args
, **kwargs
)
6611 def SetInternalMargin(*args
, **kwargs
):
6613 SetInternalMargin(self, int newmargin)
6615 Sets the margin (in pixels) between the picker and the text control.
6617 return _controls_
.PickerBase_SetInternalMargin(*args
, **kwargs
)
6619 def GetInternalMargin(*args
, **kwargs
):
6621 GetInternalMargin(self) -> int
6623 Returns the margin (in pixels) between the picker and the text
6626 return _controls_
.PickerBase_GetInternalMargin(*args
, **kwargs
)
6628 def SetTextCtrlProportion(*args
, **kwargs
):
6630 SetTextCtrlProportion(self, int prop)
6632 Sets the proportion between the text control and the picker button.
6633 This is used to set relative sizes of the text contorl and the picker.
6634 The value passed to this function must be >= 1.
6636 return _controls_
.PickerBase_SetTextCtrlProportion(*args
, **kwargs
)
6638 def GetTextCtrlProportion(*args
, **kwargs
):
6640 GetTextCtrlProportion(self) -> int
6642 Returns the proportion between the text control and the picker.
6644 return _controls_
.PickerBase_GetTextCtrlProportion(*args
, **kwargs
)
6646 def SetPickerCtrlProportion(*args
, **kwargs
):
6648 SetPickerCtrlProportion(self, int prop)
6650 Sets the proportion value of the picker.
6652 return _controls_
.PickerBase_SetPickerCtrlProportion(*args
, **kwargs
)
6654 def GetPickerCtrlProportion(*args
, **kwargs
):
6656 GetPickerCtrlProportion(self) -> int
6658 Gets the proportion value of the picker.
6660 return _controls_
.PickerBase_GetPickerCtrlProportion(*args
, **kwargs
)
6662 def IsTextCtrlGrowable(*args
, **kwargs
):
6663 """IsTextCtrlGrowable(self) -> bool"""
6664 return _controls_
.PickerBase_IsTextCtrlGrowable(*args
, **kwargs
)
6666 def SetTextCtrlGrowable(*args
, **kwargs
):
6667 """SetTextCtrlGrowable(self, bool grow=True)"""
6668 return _controls_
.PickerBase_SetTextCtrlGrowable(*args
, **kwargs
)
6670 def IsPickerCtrlGrowable(*args
, **kwargs
):
6671 """IsPickerCtrlGrowable(self) -> bool"""
6672 return _controls_
.PickerBase_IsPickerCtrlGrowable(*args
, **kwargs
)
6674 def SetPickerCtrlGrowable(*args
, **kwargs
):
6675 """SetPickerCtrlGrowable(self, bool grow=True)"""
6676 return _controls_
.PickerBase_SetPickerCtrlGrowable(*args
, **kwargs
)
6678 def HasTextCtrl(*args
, **kwargs
):
6680 HasTextCtrl(self) -> bool
6682 Returns true if this class has a valid text control (i.e. if the
6683 wx.PB_USE_TEXTCTRL style was given when creating this control).
6685 return _controls_
.PickerBase_HasTextCtrl(*args
, **kwargs
)
6687 def GetTextCtrl(*args
, **kwargs
):
6689 GetTextCtrl(self) -> TextCtrl
6691 Returns a pointer to the text control handled by this class or None if
6692 the wx.PB_USE_TEXTCTRL style was not specified when this control was
6695 Very important: the contents of the text control could be containing
6696 an invalid representation of the entity which can be chosen through
6697 the picker (e.g. the user entered an invalid colour syntax because of
6698 a typo). Thus you should never parse the content of the textctrl to
6699 get the user's input; rather use the derived-class getter
6700 (e.g. `wx.ColourPickerCtrl.GetColour`, `wx.FilePickerCtrl.GetPath`,
6703 return _controls_
.PickerBase_GetTextCtrl(*args
, **kwargs
)
6705 def GetPickerCtrl(*args
, **kwargs
):
6706 """GetPickerCtrl(self) -> Control"""
6707 return _controls_
.PickerBase_GetPickerCtrl(*args
, **kwargs
)
6709 InternalMargin
= property(GetInternalMargin
,SetInternalMargin
,doc
="See `GetInternalMargin` and `SetInternalMargin`")
6710 PickerCtrl
= property(GetPickerCtrl
,doc
="See `GetPickerCtrl`")
6711 PickerCtrlProportion
= property(GetPickerCtrlProportion
,SetPickerCtrlProportion
,doc
="See `GetPickerCtrlProportion` and `SetPickerCtrlProportion`")
6712 TextCtrl
= property(GetTextCtrl
,doc
="See `GetTextCtrl`")
6713 TextCtrlProportion
= property(GetTextCtrlProportion
,SetTextCtrlProportion
,doc
="See `GetTextCtrlProportion` and `SetTextCtrlProportion`")
6714 TextCtrlGrowable
= property(IsTextCtrlGrowable
,SetTextCtrlGrowable
,doc
="See `IsTextCtrlGrowable` and `SetTextCtrlGrowable`")
6715 PickerCtrlGrowable
= property(IsPickerCtrlGrowable
,SetPickerCtrlGrowable
,doc
="See `IsPickerCtrlGrowable` and `SetPickerCtrlGrowable`")
6716 _controls_
.PickerBase_swigregister(PickerBase
)
6718 #---------------------------------------------------------------------------
6720 CLRP_SHOW_LABEL
= _controls_
.CLRP_SHOW_LABEL
6721 CLRP_USE_TEXTCTRL
= _controls_
.CLRP_USE_TEXTCTRL
6722 CLRP_DEFAULT_STYLE
= _controls_
.CLRP_DEFAULT_STYLE
6723 class ColourPickerCtrl(PickerBase
):
6725 This control allows the user to select a colour. The generic
6726 implementation is a button which brings up a `wx.ColourDialog` when
6727 clicked. Native implementations may differ but this is usually a
6728 (small) widget which give access to the colour-chooser dialog.
6730 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6731 __repr__
= _swig_repr
6732 def __init__(self
, *args
, **kwargs
):
6734 __init__(self, Window parent, int id=-1, Colour col=*wxBLACK, Point pos=DefaultPosition,
6735 Size size=DefaultSize,
6736 long style=CLRP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6737 String name=ColourPickerCtrlNameStr) -> ColourPickerCtrl
6739 This control allows the user to select a colour. The generic
6740 implementation is a button which brings up a `wx.ColourDialog` when
6741 clicked. Native implementations may differ but this is usually a
6742 (small) widget which give access to the colour-chooser dialog.
6744 _controls_
.ColourPickerCtrl_swiginit(self
,_controls_
.new_ColourPickerCtrl(*args
, **kwargs
))
6745 self
._setOORInfo
(self
)
6747 def Create(*args
, **kwargs
):
6749 Create(self, Window parent, int id, Colour col=*wxBLACK, Point pos=DefaultPosition,
6750 Size size=DefaultSize, long style=CLRP_DEFAULT_STYLE,
6751 Validator validator=DefaultValidator,
6752 String name=ColourPickerCtrlNameStr) -> bool
6754 return _controls_
.ColourPickerCtrl_Create(*args
, **kwargs
)
6756 def GetColour(*args
, **kwargs
):
6758 GetColour(self) -> Colour
6760 Returns the currently selected colour.
6762 return _controls_
.ColourPickerCtrl_GetColour(*args
, **kwargs
)
6764 def SetColour(*args
, **kwargs
):
6766 SetColour(self, Colour col)
6768 Set the displayed colour.
6770 return _controls_
.ColourPickerCtrl_SetColour(*args
, **kwargs
)
6772 Colour
= property(GetColour
,SetColour
,doc
="See `GetColour` and `SetColour`")
6773 _controls_
.ColourPickerCtrl_swigregister(ColourPickerCtrl
)
6774 ColourPickerCtrlNameStr
= cvar
.ColourPickerCtrlNameStr
6776 def PreColourPickerCtrl(*args
, **kwargs
):
6778 PreColourPickerCtrl() -> ColourPickerCtrl
6780 This control allows the user to select a colour. The generic
6781 implementation is a button which brings up a `wx.ColourDialog` when
6782 clicked. Native implementations may differ but this is usually a
6783 (small) widget which give access to the colour-chooser dialog.
6785 val
= _controls_
.new_PreColourPickerCtrl(*args
, **kwargs
)
6788 wxEVT_COMMAND_COLOURPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_COLOURPICKER_CHANGED
6789 EVT_COLOURPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_COLOURPICKER_CHANGED
, 1 )
6791 class ColourPickerEvent(_core
.CommandEvent
):
6792 """Proxy of C++ ColourPickerEvent class"""
6793 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6794 __repr__
= _swig_repr
6795 def __init__(self
, *args
, **kwargs
):
6796 """__init__(self, Object generator, int id, Colour col) -> ColourPickerEvent"""
6797 _controls_
.ColourPickerEvent_swiginit(self
,_controls_
.new_ColourPickerEvent(*args
, **kwargs
))
6798 def GetColour(*args
, **kwargs
):
6799 """GetColour(self) -> Colour"""
6800 return _controls_
.ColourPickerEvent_GetColour(*args
, **kwargs
)
6802 def SetColour(*args
, **kwargs
):
6803 """SetColour(self, Colour c)"""
6804 return _controls_
.ColourPickerEvent_SetColour(*args
, **kwargs
)
6806 Colour
= property(GetColour
,SetColour
,doc
="See `GetColour` and `SetColour`")
6807 _controls_
.ColourPickerEvent_swigregister(ColourPickerEvent
)
6809 #---------------------------------------------------------------------------
6811 FLP_OPEN
= _controls_
.FLP_OPEN
6812 FLP_SAVE
= _controls_
.FLP_SAVE
6813 FLP_OVERWRITE_PROMPT
= _controls_
.FLP_OVERWRITE_PROMPT
6814 FLP_FILE_MUST_EXIST
= _controls_
.FLP_FILE_MUST_EXIST
6815 FLP_CHANGE_DIR
= _controls_
.FLP_CHANGE_DIR
6816 DIRP_DIR_MUST_EXIST
= _controls_
.DIRP_DIR_MUST_EXIST
6817 DIRP_CHANGE_DIR
= _controls_
.DIRP_CHANGE_DIR
6818 FLP_USE_TEXTCTRL
= _controls_
.FLP_USE_TEXTCTRL
6819 FLP_DEFAULT_STYLE
= _controls_
.FLP_DEFAULT_STYLE
6820 DIRP_USE_TEXTCTRL
= _controls_
.DIRP_USE_TEXTCTRL
6821 DIRP_DEFAULT_STYLE
= _controls_
.DIRP_DEFAULT_STYLE
6822 class FilePickerCtrl(PickerBase
):
6823 """Proxy of C++ FilePickerCtrl class"""
6824 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6825 __repr__
= _swig_repr
6826 def __init__(self
, *args
, **kwargs
):
6828 __init__(self, Window parent, int id=-1, String path=EmptyString,
6829 String message=FileSelectorPromptStr, String wildcard=FileSelectorDefaultWildcardStr,
6830 Point pos=DefaultPosition,
6831 Size size=DefaultSize,
6832 long style=FLP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6833 String name=FilePickerCtrlNameStr) -> FilePickerCtrl
6835 _controls_
.FilePickerCtrl_swiginit(self
,_controls_
.new_FilePickerCtrl(*args
, **kwargs
))
6836 self
._setOORInfo
(self
)
6838 def Create(*args
, **kwargs
):
6840 Create(self, Window parent, int id=-1, String path=EmptyString,
6841 String message=FileSelectorPromptStr, String wildcard=FileSelectorDefaultWildcardStr,
6842 Point pos=DefaultPosition,
6843 Size size=DefaultSize,
6844 long style=FLP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6845 String name=FilePickerCtrlNameStr) -> bool
6847 return _controls_
.FilePickerCtrl_Create(*args
, **kwargs
)
6849 def GetPath(*args
, **kwargs
):
6850 """GetPath(self) -> String"""
6851 return _controls_
.FilePickerCtrl_GetPath(*args
, **kwargs
)
6853 def SetPath(*args
, **kwargs
):
6854 """SetPath(self, String str)"""
6855 return _controls_
.FilePickerCtrl_SetPath(*args
, **kwargs
)
6857 def CheckPath(*args
, **kwargs
):
6858 """CheckPath(self, String path) -> bool"""
6859 return _controls_
.FilePickerCtrl_CheckPath(*args
, **kwargs
)
6861 def GetTextCtrlValue(*args
, **kwargs
):
6862 """GetTextCtrlValue(self) -> String"""
6863 return _controls_
.FilePickerCtrl_GetTextCtrlValue(*args
, **kwargs
)
6865 Path
= property(GetPath
,SetPath
,doc
="See `GetPath` and `SetPath`")
6866 TextCtrlValue
= property(GetTextCtrlValue
,doc
="See `GetTextCtrlValue`")
6867 _controls_
.FilePickerCtrl_swigregister(FilePickerCtrl
)
6868 FilePickerCtrlNameStr
= cvar
.FilePickerCtrlNameStr
6869 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
6870 DirPickerCtrlNameStr
= cvar
.DirPickerCtrlNameStr
6871 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
6872 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
6874 def PreFilePickerCtrl(*args
, **kwargs
):
6875 """PreFilePickerCtrl() -> FilePickerCtrl"""
6876 val
= _controls_
.new_PreFilePickerCtrl(*args
, **kwargs
)
6879 class DirPickerCtrl(PickerBase
):
6880 """Proxy of C++ DirPickerCtrl class"""
6881 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6882 __repr__
= _swig_repr
6883 def __init__(self
, *args
, **kwargs
):
6885 __init__(self, Window parent, int id=-1, String path=EmptyString,
6886 String message=DirSelectorPromptStr, Point pos=DefaultPosition,
6887 Size size=DefaultSize, long style=DIRP_DEFAULT_STYLE,
6888 Validator validator=DefaultValidator,
6889 String name=DirPickerCtrlNameStr) -> DirPickerCtrl
6891 _controls_
.DirPickerCtrl_swiginit(self
,_controls_
.new_DirPickerCtrl(*args
, **kwargs
))
6892 self
._setOORInfo
(self
)
6894 def Create(*args
, **kwargs
):
6896 Create(self, Window parent, int id=-1, String path=EmptyString,
6897 String message=DirSelectorPromptStr, Point pos=DefaultPosition,
6898 Size size=DefaultSize, long style=DIRP_DEFAULT_STYLE,
6899 Validator validator=DefaultValidator,
6900 String name=DirPickerCtrlNameStr) -> bool
6902 return _controls_
.DirPickerCtrl_Create(*args
, **kwargs
)
6904 def GetPath(*args
, **kwargs
):
6905 """GetPath(self) -> String"""
6906 return _controls_
.DirPickerCtrl_GetPath(*args
, **kwargs
)
6908 def SetPath(*args
, **kwargs
):
6909 """SetPath(self, String str)"""
6910 return _controls_
.DirPickerCtrl_SetPath(*args
, **kwargs
)
6912 def CheckPath(*args
, **kwargs
):
6913 """CheckPath(self, String path) -> bool"""
6914 return _controls_
.DirPickerCtrl_CheckPath(*args
, **kwargs
)
6916 def GetTextCtrlValue(*args
, **kwargs
):
6917 """GetTextCtrlValue(self) -> String"""
6918 return _controls_
.DirPickerCtrl_GetTextCtrlValue(*args
, **kwargs
)
6920 Path
= property(GetPath
,SetPath
,doc
="See `GetPath` and `SetPath`")
6921 TextCtrlValue
= property(GetTextCtrlValue
,doc
="See `GetTextCtrlValue`")
6922 _controls_
.DirPickerCtrl_swigregister(DirPickerCtrl
)
6924 def PreDirPickerCtrl(*args
, **kwargs
):
6925 """PreDirPickerCtrl() -> DirPickerCtrl"""
6926 val
= _controls_
.new_PreDirPickerCtrl(*args
, **kwargs
)
6929 wxEVT_COMMAND_FILEPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_FILEPICKER_CHANGED
6930 wxEVT_COMMAND_DIRPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_DIRPICKER_CHANGED
6931 EVT_FILEPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_FILEPICKER_CHANGED
, 1 )
6932 EVT_DIRPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_DIRPICKER_CHANGED
, 1 )
6934 class FileDirPickerEvent(_core
.CommandEvent
):
6935 """Proxy of C++ FileDirPickerEvent class"""
6936 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6937 __repr__
= _swig_repr
6938 def __init__(self
, *args
, **kwargs
):
6939 """__init__(self, EventType type, Object generator, int id, String path) -> FileDirPickerEvent"""
6940 _controls_
.FileDirPickerEvent_swiginit(self
,_controls_
.new_FileDirPickerEvent(*args
, **kwargs
))
6941 def GetPath(*args
, **kwargs
):
6942 """GetPath(self) -> String"""
6943 return _controls_
.FileDirPickerEvent_GetPath(*args
, **kwargs
)
6945 def SetPath(*args
, **kwargs
):
6946 """SetPath(self, String p)"""
6947 return _controls_
.FileDirPickerEvent_SetPath(*args
, **kwargs
)
6949 Path
= property(GetPath
,SetPath
,doc
="See `GetPath` and `SetPath`")
6950 _controls_
.FileDirPickerEvent_swigregister(FileDirPickerEvent
)
6952 #---------------------------------------------------------------------------
6954 FNTP_FONTDESC_AS_LABEL
= _controls_
.FNTP_FONTDESC_AS_LABEL
6955 FNTP_USEFONT_FOR_LABEL
= _controls_
.FNTP_USEFONT_FOR_LABEL
6956 FNTP_USE_TEXTCTRL
= _controls_
.FNTP_USE_TEXTCTRL
6957 FNTP_DEFAULT_STYLE
= _controls_
.FNTP_DEFAULT_STYLE
6958 class FontPickerCtrl(PickerBase
):
6959 """Proxy of C++ FontPickerCtrl class"""
6960 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6961 __repr__
= _swig_repr
6962 def __init__(self
, *args
, **kwargs
):
6964 __init__(self, Window parent, int id=-1, Font initial=wxNullFont,
6965 Point pos=DefaultPosition, Size size=DefaultSize,
6966 long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6967 String name=FontPickerCtrlNameStr) -> FontPickerCtrl
6969 _controls_
.FontPickerCtrl_swiginit(self
,_controls_
.new_FontPickerCtrl(*args
, **kwargs
))
6970 self
._setOORInfo
(self
)
6972 def Create(*args
, **kwargs
):
6974 Create(self, Window parent, int id=-1, Font initial=wxNullFont,
6975 Point pos=DefaultPosition, Size size=DefaultSize,
6976 long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6977 String name=FontPickerCtrlNameStr) -> bool
6979 return _controls_
.FontPickerCtrl_Create(*args
, **kwargs
)
6981 def GetSelectedFont(*args
, **kwargs
):
6982 """GetSelectedFont(self) -> Font"""
6983 return _controls_
.FontPickerCtrl_GetSelectedFont(*args
, **kwargs
)
6985 def SetSelectedFont(*args
, **kwargs
):
6986 """SetSelectedFont(self, Font f)"""
6987 return _controls_
.FontPickerCtrl_SetSelectedFont(*args
, **kwargs
)
6989 def SetMaxPointSize(*args
, **kwargs
):
6990 """SetMaxPointSize(self, unsigned int max)"""
6991 return _controls_
.FontPickerCtrl_SetMaxPointSize(*args
, **kwargs
)
6993 def GetMaxPointSize(*args
, **kwargs
):
6994 """GetMaxPointSize(self) -> unsigned int"""
6995 return _controls_
.FontPickerCtrl_GetMaxPointSize(*args
, **kwargs
)
6997 MaxPointSize
= property(GetMaxPointSize
,SetMaxPointSize
,doc
="See `GetMaxPointSize` and `SetMaxPointSize`")
6998 SelectedFont
= property(GetSelectedFont
,SetSelectedFont
,doc
="See `GetSelectedFont` and `SetSelectedFont`")
6999 _controls_
.FontPickerCtrl_swigregister(FontPickerCtrl
)
7000 FontPickerCtrlNameStr
= cvar
.FontPickerCtrlNameStr
7002 def PreFontPickerCtrl(*args
, **kwargs
):
7003 """PreFontPickerCtrl() -> FontPickerCtrl"""
7004 val
= _controls_
.new_PreFontPickerCtrl(*args
, **kwargs
)
7007 wxEVT_COMMAND_FONTPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_FONTPICKER_CHANGED
7008 EVT_FONTPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_FONTPICKER_CHANGED
, 1 )
7010 class FontPickerEvent(_core
.CommandEvent
):
7011 """Proxy of C++ FontPickerEvent class"""
7012 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
7013 __repr__
= _swig_repr
7014 def __init__(self
, *args
, **kwargs
):
7015 """__init__(self, Object generator, int id, Font f) -> FontPickerEvent"""
7016 _controls_
.FontPickerEvent_swiginit(self
,_controls_
.new_FontPickerEvent(*args
, **kwargs
))
7017 def GetFont(*args
, **kwargs
):
7018 """GetFont(self) -> Font"""
7019 return _controls_
.FontPickerEvent_GetFont(*args
, **kwargs
)
7021 def SetFont(*args
, **kwargs
):
7022 """SetFont(self, Font c)"""
7023 return _controls_
.FontPickerEvent_SetFont(*args
, **kwargs
)
7025 Font
= property(GetFont
,SetFont
,doc
="See `GetFont` and `SetFont`")
7026 _controls_
.FontPickerEvent_swigregister(FontPickerEvent
)
7028 #---------------------------------------------------------------------------
7030 CP_DEFAULT_STYLE
= _controls_
.CP_DEFAULT_STYLE
7031 CP_NO_TLW_RESIZE
= _controls_
.CP_NO_TLW_RESIZE
7032 class CollapsiblePane(_core
.Control
):
7034 A collapsable pane is a container with an embedded button-like
7035 control which can be used by the user to collapse or expand the pane's
7038 Once constructed you should use the `GetPane` function to access the
7039 pane and add your controls inside it (i.e. use the window returned
7040 from `GetPane` as the parent for the controls which must go in the
7041 pane, NOT the wx.CollapsiblePane itself!).
7043 Note that because of its nature of control which can dynamically (and
7044 drastically) change its size at run-time under user-input, when
7045 putting a wx.CollapsiblePane inside a `wx.Sizer` you should be careful
7046 to add it with a proportion value of zero; this is because otherwise
7047 all other windows with non-zero proportion values would automatically
7048 get resized each time the user expands or collapses the pane window,
7049 usually resulting a weird, flickering effect.
7051 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
7052 __repr__
= _swig_repr
7053 def __init__(self
, *args
, **kwargs
):
7055 __init__(self, Window parent, int winid=-1, String label=EmptyString,
7056 Point pos=DefaultPosition, Size size=DefaultSize,
7057 long style=CP_DEFAULT_STYLE, Validator val=DefaultValidator,
7058 String name=CollapsiblePaneNameStr) -> CollapsiblePane
7060 Create and show a wx.CollapsiblePane
7062 _controls_
.CollapsiblePane_swiginit(self
,_controls_
.new_CollapsiblePane(*args
, **kwargs
))
7063 self
._setOORInfo
(self
)
7065 def Create(*args
, **kwargs
):
7067 Create(self, Window parent, int winid=-1, String label=EmptyString,
7068 Point pos=DefaultPosition, Size size=DefaultSize,
7069 long style=CP_DEFAULT_STYLE, Validator val=DefaultValidator,
7070 String name=CollapsiblePaneNameStr) -> bool
7072 return _controls_
.CollapsiblePane_Create(*args
, **kwargs
)
7074 def Collapse(*args
, **kwargs
):
7076 Collapse(self, bool collapse=True)
7078 Collapses or expands the pane window.
7080 return _controls_
.CollapsiblePane_Collapse(*args
, **kwargs
)
7082 def Expand(*args
, **kwargs
):
7086 Same as Collapse(False).
7088 return _controls_
.CollapsiblePane_Expand(*args
, **kwargs
)
7090 def IsCollapsed(*args
, **kwargs
):
7092 IsCollapsed(self) -> bool
7094 Returns ``True`` if the pane window is currently hidden.
7096 return _controls_
.CollapsiblePane_IsCollapsed(*args
, **kwargs
)
7098 def IsExpanded(*args
, **kwargs
):
7100 IsExpanded(self) -> bool
7102 Returns ``True`` if the pane window is currently shown.
7104 return _controls_
.CollapsiblePane_IsExpanded(*args
, **kwargs
)
7106 def GetPane(*args
, **kwargs
):
7108 GetPane(self) -> Window
7110 Returns a reference to the pane window. Use the returned `wx.Window`
7111 as the parent of widgets to make them part of the collapsible area.
7113 return _controls_
.CollapsiblePane_GetPane(*args
, **kwargs
)
7115 Expanded
= property(IsExpanded
)
7116 Collapsed
= property(IsCollapsed
)
7117 _controls_
.CollapsiblePane_swigregister(CollapsiblePane
)
7118 CollapsiblePaneNameStr
= cvar
.CollapsiblePaneNameStr
7120 def PreCollapsiblePane(*args
, **kwargs
):
7122 PreCollapsiblePane() -> CollapsiblePane
7124 Precreate a wx.CollapsiblePane for 2-phase creation.
7126 val
= _controls_
.new_PreCollapsiblePane(*args
, **kwargs
)
7129 wxEVT_COMMAND_COLLPANE_CHANGED
= _controls_
.wxEVT_COMMAND_COLLPANE_CHANGED
7130 EVT_COLLAPSIBLEPANE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_COLLPANE_CHANGED
, 1 )
7132 class CollapsiblePaneEvent(_core
.CommandEvent
):
7133 """Proxy of C++ CollapsiblePaneEvent class"""
7134 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
7135 __repr__
= _swig_repr
7136 def __init__(self
, *args
, **kwargs
):
7137 """__init__(self, Object generator, int id, bool collapsed) -> CollapsiblePaneEvent"""
7138 _controls_
.CollapsiblePaneEvent_swiginit(self
,_controls_
.new_CollapsiblePaneEvent(*args
, **kwargs
))
7139 def GetCollapsed(*args
, **kwargs
):
7140 """GetCollapsed(self) -> bool"""
7141 return _controls_
.CollapsiblePaneEvent_GetCollapsed(*args
, **kwargs
)
7143 def SetCollapsed(*args
, **kwargs
):
7144 """SetCollapsed(self, bool c)"""
7145 return _controls_
.CollapsiblePaneEvent_SetCollapsed(*args
, **kwargs
)
7147 Collapsed
= property(GetCollapsed
,SetCollapsed
)
7148 _controls_
.CollapsiblePaneEvent_swigregister(CollapsiblePaneEvent
)