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 _controls_
.BitmapButton_swigregister(BitmapButton
)
302 def PreBitmapButton(*args
, **kwargs
):
304 PreBitmapButton() -> BitmapButton
306 Precreate a BitmapButton for 2-phase creation.
308 val
= _controls_
.new_PreBitmapButton(*args
, **kwargs
)
311 #---------------------------------------------------------------------------
313 CHK_2STATE
= _controls_
.CHK_2STATE
314 CHK_3STATE
= _controls_
.CHK_3STATE
315 CHK_ALLOW_3RD_STATE_FOR_USER
= _controls_
.CHK_ALLOW_3RD_STATE_FOR_USER
316 CHK_UNCHECKED
= _controls_
.CHK_UNCHECKED
317 CHK_CHECKED
= _controls_
.CHK_CHECKED
318 CHK_UNDETERMINED
= _controls_
.CHK_UNDETERMINED
319 class CheckBox(_core
.Control
):
321 A checkbox is a labelled box which by default is either on (the
322 checkmark is visible) or off (no checkmark). Optionally (When the
323 wx.CHK_3STATE style flag is set) it can have a third state, called the
324 mixed or undetermined state. Often this is used as a "Does Not
327 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
328 __repr__
= _swig_repr
329 def __init__(self
, *args
, **kwargs
):
331 __init__(self, Window parent, int id=-1, String label=EmptyString,
332 Point pos=DefaultPosition, Size size=DefaultSize,
333 long style=0, Validator validator=DefaultValidator,
334 String name=CheckBoxNameStr) -> CheckBox
336 Creates and shows a CheckBox control
338 _controls_
.CheckBox_swiginit(self
,_controls_
.new_CheckBox(*args
, **kwargs
))
339 self
._setOORInfo
(self
)
341 def Create(*args
, **kwargs
):
343 Create(self, Window parent, int id=-1, String label=EmptyString,
344 Point pos=DefaultPosition, Size size=DefaultSize,
345 long style=0, Validator validator=DefaultValidator,
346 String name=CheckBoxNameStr) -> bool
348 Actually create the GUI CheckBox for 2-phase creation.
350 return _controls_
.CheckBox_Create(*args
, **kwargs
)
352 def GetValue(*args
, **kwargs
):
354 GetValue(self) -> bool
356 Gets the state of a 2-state CheckBox. Returns True if it is checked,
359 return _controls_
.CheckBox_GetValue(*args
, **kwargs
)
361 def IsChecked(*args
, **kwargs
):
363 IsChecked(self) -> bool
365 Similar to GetValue, but raises an exception if it is not a 2-state
368 return _controls_
.CheckBox_IsChecked(*args
, **kwargs
)
370 def SetValue(*args
, **kwargs
):
372 SetValue(self, bool state)
374 Set the state of a 2-state CheckBox. Pass True for checked, False for
377 return _controls_
.CheckBox_SetValue(*args
, **kwargs
)
379 def Get3StateValue(*args
, **kwargs
):
381 Get3StateValue(self) -> int
383 Returns wx.CHK_UNCHECKED when the CheckBox is unchecked,
384 wx.CHK_CHECKED when it is checked and wx.CHK_UNDETERMINED when it's in
385 the undetermined state. Raises an exceptiion when the function is
386 used with a 2-state CheckBox.
388 return _controls_
.CheckBox_Get3StateValue(*args
, **kwargs
)
390 def Set3StateValue(*args
, **kwargs
):
392 Set3StateValue(self, int state)
394 Sets the CheckBox to the given state. The state parameter can be one
395 of the following: wx.CHK_UNCHECKED (Check is off), wx.CHK_CHECKED (the
396 Check is on) or wx.CHK_UNDETERMINED (Check is mixed). Raises an
397 exception when the CheckBox is a 2-state checkbox and setting the
398 state to wx.CHK_UNDETERMINED.
400 return _controls_
.CheckBox_Set3StateValue(*args
, **kwargs
)
402 def Is3State(*args
, **kwargs
):
404 Is3State(self) -> bool
406 Returns whether or not the CheckBox is a 3-state CheckBox.
408 return _controls_
.CheckBox_Is3State(*args
, **kwargs
)
410 def Is3rdStateAllowedForUser(*args
, **kwargs
):
412 Is3rdStateAllowedForUser(self) -> bool
414 Returns whether or not the user can set the CheckBox to the third
417 return _controls_
.CheckBox_Is3rdStateAllowedForUser(*args
, **kwargs
)
419 def GetClassDefaultAttributes(*args
, **kwargs
):
421 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
423 Get the default attributes for this class. This is useful if you want
424 to use the same font or colour in your own control as in a standard
425 control -- which is a much better idea than hard coding specific
426 colours or fonts which might look completely out of place on the
427 user's system, especially if it uses themes.
429 The variant parameter is only relevant under Mac currently and is
430 ignore under other platforms. Under Mac, it will change the size of
431 the returned font. See `wx.Window.SetWindowVariant` for more about
434 return _controls_
.CheckBox_GetClassDefaultAttributes(*args
, **kwargs
)
436 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
437 _controls_
.CheckBox_swigregister(CheckBox
)
438 CheckBoxNameStr
= cvar
.CheckBoxNameStr
440 def PreCheckBox(*args
, **kwargs
):
442 PreCheckBox() -> CheckBox
444 Precreate a CheckBox for 2-phase creation.
446 val
= _controls_
.new_PreCheckBox(*args
, **kwargs
)
449 def CheckBox_GetClassDefaultAttributes(*args
, **kwargs
):
451 CheckBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
453 Get the default attributes for this class. This is useful if you want
454 to use the same font or colour in your own control as in a standard
455 control -- which is a much better idea than hard coding specific
456 colours or fonts which might look completely out of place on the
457 user's system, especially if it uses themes.
459 The variant parameter is only relevant under Mac currently and is
460 ignore under other platforms. Under Mac, it will change the size of
461 the returned font. See `wx.Window.SetWindowVariant` for more about
464 return _controls_
.CheckBox_GetClassDefaultAttributes(*args
, **kwargs
)
466 #---------------------------------------------------------------------------
468 class Choice(_core
.ControlWithItems
):
470 A Choice control is used to select one of a list of strings.
471 Unlike a `wx.ListBox`, only the selection is visible until the
472 user pulls down the menu of choices.
474 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
475 __repr__
= _swig_repr
476 def __init__(self
, *args
, **kwargs
):
478 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
479 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
480 String name=ChoiceNameStr) -> Choice
482 Create and show a Choice control
484 _controls_
.Choice_swiginit(self
,_controls_
.new_Choice(*args
, **kwargs
))
485 self
._setOORInfo
(self
)
487 def Create(*args
, **kwargs
):
489 Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
490 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
491 String name=ChoiceNameStr) -> bool
493 Actually create the GUI Choice control for 2-phase creation
495 return _controls_
.Choice_Create(*args
, **kwargs
)
497 def GetCurrentSelection(*args
, **kwargs
):
499 GetCurrentSelection(self) -> int
501 Unlike `GetSelection` which only returns the accepted selection value,
502 i.e. the selection in the control once the user closes the dropdown
503 list, this function returns the current selection. That is, while the
504 dropdown list is shown, it returns the currently selected item in
505 it. When it is not shown, its result is the same as for the other
508 return _controls_
.Choice_GetCurrentSelection(*args
, **kwargs
)
510 def GetClassDefaultAttributes(*args
, **kwargs
):
512 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
514 Get the default attributes for this class. This is useful if you want
515 to use the same font or colour in your own control as in a standard
516 control -- which is a much better idea than hard coding specific
517 colours or fonts which might look completely out of place on the
518 user's system, especially if it uses themes.
520 The variant parameter is only relevant under Mac currently and is
521 ignore under other platforms. Under Mac, it will change the size of
522 the returned font. See `wx.Window.SetWindowVariant` for more about
525 return _controls_
.Choice_GetClassDefaultAttributes(*args
, **kwargs
)
527 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
528 _controls_
.Choice_swigregister(Choice
)
529 ChoiceNameStr
= cvar
.ChoiceNameStr
531 def PreChoice(*args
, **kwargs
):
533 PreChoice() -> Choice
535 Precreate a Choice control for 2-phase creation.
537 val
= _controls_
.new_PreChoice(*args
, **kwargs
)
540 def Choice_GetClassDefaultAttributes(*args
, **kwargs
):
542 Choice_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
544 Get the default attributes for this class. This is useful if you want
545 to use the same font or colour in your own control as in a standard
546 control -- which is a much better idea than hard coding specific
547 colours or fonts which might look completely out of place on the
548 user's system, especially if it uses themes.
550 The variant parameter is only relevant under Mac currently and is
551 ignore under other platforms. Under Mac, it will change the size of
552 the returned font. See `wx.Window.SetWindowVariant` for more about
555 return _controls_
.Choice_GetClassDefaultAttributes(*args
, **kwargs
)
557 #---------------------------------------------------------------------------
559 class ComboBox(_core
.Control
,_core
.ItemContainer
):
561 A combobox is like a combination of an edit control and a
562 listbox. It can be displayed as static list with editable or
563 read-only text field; or a drop-down list with text field.
565 A combobox permits a single selection only. Combobox items are
568 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
569 __repr__
= _swig_repr
570 def __init__(self
, *args
, **kwargs
):
572 __init__(Window parent, int id, String value=EmptyString,
573 Point pos=DefaultPosition, Size size=DefaultSize,
574 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
575 String name=ComboBoxNameStr) -> ComboBox
577 Constructor, creates and shows a ComboBox control.
579 _controls_
.ComboBox_swiginit(self
,_controls_
.new_ComboBox(*args
, **kwargs
))
580 self
._setOORInfo
(self
)
582 def Create(*args
, **kwargs
):
584 Create(Window parent, int id, String value=EmptyString,
585 Point pos=DefaultPosition, Size size=DefaultSize,
586 List choices=EmptyList, long style=0, Validator validator=DefaultValidator,
587 String name=ChoiceNameStr) -> bool
589 Actually create the GUI wxComboBox control for 2-phase creation
591 return _controls_
.ComboBox_Create(*args
, **kwargs
)
593 def GetValue(*args
, **kwargs
):
595 GetValue(self) -> String
597 Returns the current value in the combobox text field.
599 return _controls_
.ComboBox_GetValue(*args
, **kwargs
)
601 def SetValue(*args
, **kwargs
):
602 """SetValue(self, String value)"""
603 return _controls_
.ComboBox_SetValue(*args
, **kwargs
)
605 def Copy(*args
, **kwargs
):
609 Copies the selected text to the clipboard.
611 return _controls_
.ComboBox_Copy(*args
, **kwargs
)
613 def Cut(*args
, **kwargs
):
617 Copies the selected text to the clipboard and removes the selection.
619 return _controls_
.ComboBox_Cut(*args
, **kwargs
)
621 def Paste(*args
, **kwargs
):
625 Pastes text from the clipboard to the text field.
627 return _controls_
.ComboBox_Paste(*args
, **kwargs
)
629 def SetInsertionPoint(*args
, **kwargs
):
631 SetInsertionPoint(self, long pos)
633 Sets the insertion point in the combobox text field.
635 return _controls_
.ComboBox_SetInsertionPoint(*args
, **kwargs
)
637 def GetInsertionPoint(*args
, **kwargs
):
639 GetInsertionPoint(self) -> long
641 Returns the insertion point for the combobox's text field.
643 return _controls_
.ComboBox_GetInsertionPoint(*args
, **kwargs
)
645 def GetLastPosition(*args
, **kwargs
):
647 GetLastPosition(self) -> long
649 Returns the last position in the combobox text field.
651 return _controls_
.ComboBox_GetLastPosition(*args
, **kwargs
)
653 def Replace(*args
, **kwargs
):
655 Replace(self, long from, long to, String value)
657 Replaces the text between two positions with the given text, in the
660 return _controls_
.ComboBox_Replace(*args
, **kwargs
)
662 def SetMark(*args
, **kwargs
):
664 SetMark(self, long from, long to)
666 Selects the text between the two positions in the combobox text field.
668 return _controls_
.ComboBox_SetMark(*args
, **kwargs
)
670 def GetCurrentSelection(*args
, **kwargs
):
672 GetCurrentSelection(self) -> int
674 Unlike `GetSelection` which only returns the accepted selection value,
675 i.e. the selection in the control once the user closes the dropdown
676 list, this function returns the current selection. That is, while the
677 dropdown list is shown, it returns the currently selected item in
678 it. When it is not shown, its result is the same as for the other
681 return _controls_
.ComboBox_GetCurrentSelection(*args
, **kwargs
)
683 def SetStringSelection(*args
, **kwargs
):
685 SetStringSelection(self, String string) -> bool
687 Select the item with the specifed string
689 return _controls_
.ComboBox_SetStringSelection(*args
, **kwargs
)
691 def SetString(*args
, **kwargs
):
693 SetString(self, int n, String string)
695 Set the label for the n'th item (zero based) in the list.
697 return _controls_
.ComboBox_SetString(*args
, **kwargs
)
699 def SetEditable(*args
, **kwargs
):
700 """SetEditable(self, bool editable)"""
701 return _controls_
.ComboBox_SetEditable(*args
, **kwargs
)
703 def SetInsertionPointEnd(*args
, **kwargs
):
705 SetInsertionPointEnd(self)
707 Sets the insertion point at the end of the combobox text field.
709 return _controls_
.ComboBox_SetInsertionPointEnd(*args
, **kwargs
)
711 def Remove(*args
, **kwargs
):
713 Remove(self, long from, long to)
715 Removes the text between the two positions in the combobox text field.
717 return _controls_
.ComboBox_Remove(*args
, **kwargs
)
719 def IsEditable(*args
, **kwargs
):
721 IsEditable(self) -> bool
723 Returns True if the combo is ediatable (not read-only.)
725 return _controls_
.ComboBox_IsEditable(*args
, **kwargs
)
727 def Undo(*args
, **kwargs
):
731 Redoes the last undo in the text field. Windows only.
733 return _controls_
.ComboBox_Undo(*args
, **kwargs
)
735 def Redo(*args
, **kwargs
):
739 Undoes the last edit in the text field. Windows only.
741 return _controls_
.ComboBox_Redo(*args
, **kwargs
)
743 def SelectAll(*args
, **kwargs
):
747 Select all the text in the combo's text field.
749 return _controls_
.ComboBox_SelectAll(*args
, **kwargs
)
751 def CanCopy(*args
, **kwargs
):
753 CanCopy(self) -> bool
755 Returns True if the combobox is editable and there is a text selection
756 to copy to the clipboard. Only available on Windows.
758 return _controls_
.ComboBox_CanCopy(*args
, **kwargs
)
760 def CanCut(*args
, **kwargs
):
764 Returns True if the combobox is editable and there is a text selection
765 to copy to the clipboard. Only available on Windows.
767 return _controls_
.ComboBox_CanCut(*args
, **kwargs
)
769 def CanPaste(*args
, **kwargs
):
771 CanPaste(self) -> bool
773 Returns True if the combobox is editable and there is text on the
774 clipboard that can be pasted into the text field. Only available on
777 return _controls_
.ComboBox_CanPaste(*args
, **kwargs
)
779 def CanUndo(*args
, **kwargs
):
781 CanUndo(self) -> bool
783 Returns True if the combobox is editable and the last edit can be
784 undone. Only available on Windows.
786 return _controls_
.ComboBox_CanUndo(*args
, **kwargs
)
788 def CanRedo(*args
, **kwargs
):
790 CanRedo(self) -> bool
792 Returns True if the combobox is editable and the last undo can be
793 redone. Only available on Windows.
795 return _controls_
.ComboBox_CanRedo(*args
, **kwargs
)
797 def GetClassDefaultAttributes(*args
, **kwargs
):
799 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
801 Get the default attributes for this class. This is useful if you want
802 to use the same font or colour in your own control as in a standard
803 control -- which is a much better idea than hard coding specific
804 colours or fonts which might look completely out of place on the
805 user's system, especially if it uses themes.
807 The variant parameter is only relevant under Mac currently and is
808 ignore under other platforms. Under Mac, it will change the size of
809 the returned font. See `wx.Window.SetWindowVariant` for more about
812 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
814 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
815 _controls_
.ComboBox_swigregister(ComboBox
)
816 ComboBoxNameStr
= cvar
.ComboBoxNameStr
818 def PreComboBox(*args
, **kwargs
):
820 PreComboBox() -> ComboBox
822 Precreate a ComboBox control for 2-phase creation.
824 val
= _controls_
.new_PreComboBox(*args
, **kwargs
)
827 def ComboBox_GetClassDefaultAttributes(*args
, **kwargs
):
829 ComboBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
831 Get the default attributes for this class. This is useful if you want
832 to use the same font or colour in your own control as in a standard
833 control -- which is a much better idea than hard coding specific
834 colours or fonts which might look completely out of place on the
835 user's system, especially if it uses themes.
837 The variant parameter is only relevant under Mac currently and is
838 ignore under other platforms. Under Mac, it will change the size of
839 the returned font. See `wx.Window.SetWindowVariant` for more about
842 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
844 #---------------------------------------------------------------------------
846 GA_HORIZONTAL
= _controls_
.GA_HORIZONTAL
847 GA_VERTICAL
= _controls_
.GA_VERTICAL
848 GA_SMOOTH
= _controls_
.GA_SMOOTH
849 GA_PROGRESSBAR
= 0 # obsolete
850 class Gauge(_core
.Control
):
851 """Proxy of C++ Gauge class"""
852 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
853 __repr__
= _swig_repr
854 def __init__(self
, *args
, **kwargs
):
856 __init__(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
857 Size size=DefaultSize, long style=GA_HORIZONTAL,
858 Validator validator=DefaultValidator,
859 String name=GaugeNameStr) -> Gauge
861 _controls_
.Gauge_swiginit(self
,_controls_
.new_Gauge(*args
, **kwargs
))
862 self
._setOORInfo
(self
)
864 def Create(*args
, **kwargs
):
866 Create(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
867 Size size=DefaultSize, long style=GA_HORIZONTAL,
868 Validator validator=DefaultValidator,
869 String name=GaugeNameStr) -> bool
871 return _controls_
.Gauge_Create(*args
, **kwargs
)
873 def SetRange(*args
, **kwargs
):
874 """SetRange(self, int range)"""
875 return _controls_
.Gauge_SetRange(*args
, **kwargs
)
877 def GetRange(*args
, **kwargs
):
878 """GetRange(self) -> int"""
879 return _controls_
.Gauge_GetRange(*args
, **kwargs
)
881 def SetValue(*args
, **kwargs
):
882 """SetValue(self, int pos)"""
883 return _controls_
.Gauge_SetValue(*args
, **kwargs
)
885 def GetValue(*args
, **kwargs
):
886 """GetValue(self) -> int"""
887 return _controls_
.Gauge_GetValue(*args
, **kwargs
)
889 def IsVertical(*args
, **kwargs
):
890 """IsVertical(self) -> bool"""
891 return _controls_
.Gauge_IsVertical(*args
, **kwargs
)
893 def SetShadowWidth(*args
, **kwargs
):
894 """SetShadowWidth(self, int w)"""
895 return _controls_
.Gauge_SetShadowWidth(*args
, **kwargs
)
897 def GetShadowWidth(*args
, **kwargs
):
898 """GetShadowWidth(self) -> int"""
899 return _controls_
.Gauge_GetShadowWidth(*args
, **kwargs
)
901 def SetBezelFace(*args
, **kwargs
):
902 """SetBezelFace(self, int w)"""
903 return _controls_
.Gauge_SetBezelFace(*args
, **kwargs
)
905 def GetBezelFace(*args
, **kwargs
):
906 """GetBezelFace(self) -> int"""
907 return _controls_
.Gauge_GetBezelFace(*args
, **kwargs
)
909 def GetClassDefaultAttributes(*args
, **kwargs
):
911 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
913 Get the default attributes for this class. This is useful if you want
914 to use the same font or colour in your own control as in a standard
915 control -- which is a much better idea than hard coding specific
916 colours or fonts which might look completely out of place on the
917 user's system, especially if it uses themes.
919 The variant parameter is only relevant under Mac currently and is
920 ignore under other platforms. Under Mac, it will change the size of
921 the returned font. See `wx.Window.SetWindowVariant` for more about
924 return _controls_
.Gauge_GetClassDefaultAttributes(*args
, **kwargs
)
926 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
927 _controls_
.Gauge_swigregister(Gauge
)
928 GaugeNameStr
= cvar
.GaugeNameStr
930 def PreGauge(*args
, **kwargs
):
931 """PreGauge() -> Gauge"""
932 val
= _controls_
.new_PreGauge(*args
, **kwargs
)
935 def Gauge_GetClassDefaultAttributes(*args
, **kwargs
):
937 Gauge_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
939 Get the default attributes for this class. This is useful if you want
940 to use the same font or colour in your own control as in a standard
941 control -- which is a much better idea than hard coding specific
942 colours or fonts which might look completely out of place on the
943 user's system, especially if it uses themes.
945 The variant parameter is only relevant under Mac currently and is
946 ignore under other platforms. Under Mac, it will change the size of
947 the returned font. See `wx.Window.SetWindowVariant` for more about
950 return _controls_
.Gauge_GetClassDefaultAttributes(*args
, **kwargs
)
952 #---------------------------------------------------------------------------
954 class StaticBox(_core
.Control
):
955 """Proxy of C++ StaticBox class"""
956 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
957 __repr__
= _swig_repr
958 def __init__(self
, *args
, **kwargs
):
960 __init__(self, Window parent, int id=-1, String label=EmptyString,
961 Point pos=DefaultPosition, Size size=DefaultSize,
962 long style=0, String name=StaticBoxNameStr) -> StaticBox
964 _controls_
.StaticBox_swiginit(self
,_controls_
.new_StaticBox(*args
, **kwargs
))
965 self
._setOORInfo
(self
)
967 def Create(*args
, **kwargs
):
969 Create(self, Window parent, int id=-1, String label=EmptyString,
970 Point pos=DefaultPosition, Size size=DefaultSize,
971 long style=0, String name=StaticBoxNameStr) -> bool
973 return _controls_
.StaticBox_Create(*args
, **kwargs
)
975 def GetClassDefaultAttributes(*args
, **kwargs
):
977 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
979 Get the default attributes for this class. This is useful if you want
980 to use the same font or colour in your own control as in a standard
981 control -- which is a much better idea than hard coding specific
982 colours or fonts which might look completely out of place on the
983 user's system, especially if it uses themes.
985 The variant parameter is only relevant under Mac currently and is
986 ignore under other platforms. Under Mac, it will change the size of
987 the returned font. See `wx.Window.SetWindowVariant` for more about
990 return _controls_
.StaticBox_GetClassDefaultAttributes(*args
, **kwargs
)
992 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
993 _controls_
.StaticBox_swigregister(StaticBox
)
994 StaticBitmapNameStr
= cvar
.StaticBitmapNameStr
995 StaticBoxNameStr
= cvar
.StaticBoxNameStr
996 StaticTextNameStr
= cvar
.StaticTextNameStr
998 def PreStaticBox(*args
, **kwargs
):
999 """PreStaticBox() -> StaticBox"""
1000 val
= _controls_
.new_PreStaticBox(*args
, **kwargs
)
1003 def StaticBox_GetClassDefaultAttributes(*args
, **kwargs
):
1005 StaticBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1007 Get the default attributes for this class. This is useful if you want
1008 to use the same font or colour in your own control as in a standard
1009 control -- which is a much better idea than hard coding specific
1010 colours or fonts which might look completely out of place on the
1011 user's system, especially if it uses themes.
1013 The variant parameter is only relevant under Mac currently and is
1014 ignore under other platforms. Under Mac, it will change the size of
1015 the returned font. See `wx.Window.SetWindowVariant` for more about
1018 return _controls_
.StaticBox_GetClassDefaultAttributes(*args
, **kwargs
)
1020 #---------------------------------------------------------------------------
1022 class StaticLine(_core
.Control
):
1023 """Proxy of C++ StaticLine class"""
1024 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1025 __repr__
= _swig_repr
1026 def __init__(self
, *args
, **kwargs
):
1028 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1029 Size size=DefaultSize, long style=LI_HORIZONTAL,
1030 String name=StaticTextNameStr) -> StaticLine
1032 _controls_
.StaticLine_swiginit(self
,_controls_
.new_StaticLine(*args
, **kwargs
))
1033 self
._setOORInfo
(self
)
1035 def Create(*args
, **kwargs
):
1037 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1038 Size size=DefaultSize, long style=LI_HORIZONTAL,
1039 String name=StaticTextNameStr) -> bool
1041 return _controls_
.StaticLine_Create(*args
, **kwargs
)
1043 def IsVertical(*args
, **kwargs
):
1044 """IsVertical(self) -> bool"""
1045 return _controls_
.StaticLine_IsVertical(*args
, **kwargs
)
1047 def GetDefaultSize(*args
, **kwargs
):
1048 """GetDefaultSize() -> int"""
1049 return _controls_
.StaticLine_GetDefaultSize(*args
, **kwargs
)
1051 GetDefaultSize
= staticmethod(GetDefaultSize
)
1052 def GetClassDefaultAttributes(*args
, **kwargs
):
1054 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1056 Get the default attributes for this class. This is useful if you want
1057 to use the same font or colour in your own control as in a standard
1058 control -- which is a much better idea than hard coding specific
1059 colours or fonts which might look completely out of place on the
1060 user's system, especially if it uses themes.
1062 The variant parameter is only relevant under Mac currently and is
1063 ignore under other platforms. Under Mac, it will change the size of
1064 the returned font. See `wx.Window.SetWindowVariant` for more about
1067 return _controls_
.StaticLine_GetClassDefaultAttributes(*args
, **kwargs
)
1069 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1070 _controls_
.StaticLine_swigregister(StaticLine
)
1072 def PreStaticLine(*args
, **kwargs
):
1073 """PreStaticLine() -> StaticLine"""
1074 val
= _controls_
.new_PreStaticLine(*args
, **kwargs
)
1077 def StaticLine_GetDefaultSize(*args
):
1078 """StaticLine_GetDefaultSize() -> int"""
1079 return _controls_
.StaticLine_GetDefaultSize(*args
)
1081 def StaticLine_GetClassDefaultAttributes(*args
, **kwargs
):
1083 StaticLine_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1085 Get the default attributes for this class. This is useful if you want
1086 to use the same font or colour in your own control as in a standard
1087 control -- which is a much better idea than hard coding specific
1088 colours or fonts which might look completely out of place on the
1089 user's system, especially if it uses themes.
1091 The variant parameter is only relevant under Mac currently and is
1092 ignore under other platforms. Under Mac, it will change the size of
1093 the returned font. See `wx.Window.SetWindowVariant` for more about
1096 return _controls_
.StaticLine_GetClassDefaultAttributes(*args
, **kwargs
)
1098 #---------------------------------------------------------------------------
1100 class StaticText(_core
.Control
):
1101 """Proxy of C++ StaticText class"""
1102 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1103 __repr__
= _swig_repr
1104 def __init__(self
, *args
, **kwargs
):
1106 __init__(self, Window parent, int id=-1, String label=EmptyString,
1107 Point pos=DefaultPosition, Size size=DefaultSize,
1108 long style=0, String name=StaticTextNameStr) -> StaticText
1110 _controls_
.StaticText_swiginit(self
,_controls_
.new_StaticText(*args
, **kwargs
))
1111 self
._setOORInfo
(self
)
1113 def Create(*args
, **kwargs
):
1115 Create(self, Window parent, int id=-1, String label=EmptyString,
1116 Point pos=DefaultPosition, Size size=DefaultSize,
1117 long style=0, String name=StaticTextNameStr) -> bool
1119 return _controls_
.StaticText_Create(*args
, **kwargs
)
1121 def Wrap(*args
, **kwargs
):
1123 Wrap(self, int width)
1125 This functions wraps the control's label so that each of its lines
1126 becomes at most ``width`` pixels wide if possible (the lines are
1127 broken at words boundaries so it might not be the case if words are
1128 too long). If ``width`` is negative, no wrapping is done.
1130 return _controls_
.StaticText_Wrap(*args
, **kwargs
)
1132 def GetClassDefaultAttributes(*args
, **kwargs
):
1134 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1136 Get the default attributes for this class. This is useful if you want
1137 to use the same font or colour in your own control as in a standard
1138 control -- which is a much better idea than hard coding specific
1139 colours or fonts which might look completely out of place on the
1140 user's system, especially if it uses themes.
1142 The variant parameter is only relevant under Mac currently and is
1143 ignore under other platforms. Under Mac, it will change the size of
1144 the returned font. See `wx.Window.SetWindowVariant` for more about
1147 return _controls_
.StaticText_GetClassDefaultAttributes(*args
, **kwargs
)
1149 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1150 _controls_
.StaticText_swigregister(StaticText
)
1152 def PreStaticText(*args
, **kwargs
):
1153 """PreStaticText() -> StaticText"""
1154 val
= _controls_
.new_PreStaticText(*args
, **kwargs
)
1157 def StaticText_GetClassDefaultAttributes(*args
, **kwargs
):
1159 StaticText_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1161 Get the default attributes for this class. This is useful if you want
1162 to use the same font or colour in your own control as in a standard
1163 control -- which is a much better idea than hard coding specific
1164 colours or fonts which might look completely out of place on the
1165 user's system, especially if it uses themes.
1167 The variant parameter is only relevant under Mac currently and is
1168 ignore under other platforms. Under Mac, it will change the size of
1169 the returned font. See `wx.Window.SetWindowVariant` for more about
1172 return _controls_
.StaticText_GetClassDefaultAttributes(*args
, **kwargs
)
1174 #---------------------------------------------------------------------------
1176 class StaticBitmap(_core
.Control
):
1177 """Proxy of C++ StaticBitmap class"""
1178 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1179 __repr__
= _swig_repr
1180 def __init__(self
, *args
, **kwargs
):
1182 __init__(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
1183 Point pos=DefaultPosition, Size size=DefaultSize,
1184 long style=0, String name=StaticBitmapNameStr) -> StaticBitmap
1186 _controls_
.StaticBitmap_swiginit(self
,_controls_
.new_StaticBitmap(*args
, **kwargs
))
1187 self
._setOORInfo
(self
)
1189 def Create(*args
, **kwargs
):
1191 Create(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
1192 Point pos=DefaultPosition, Size size=DefaultSize,
1193 long style=0, String name=StaticBitmapNameStr) -> bool
1195 return _controls_
.StaticBitmap_Create(*args
, **kwargs
)
1197 def GetBitmap(*args
, **kwargs
):
1198 """GetBitmap(self) -> Bitmap"""
1199 return _controls_
.StaticBitmap_GetBitmap(*args
, **kwargs
)
1201 def SetBitmap(*args
, **kwargs
):
1202 """SetBitmap(self, Bitmap bitmap)"""
1203 return _controls_
.StaticBitmap_SetBitmap(*args
, **kwargs
)
1205 def SetIcon(*args
, **kwargs
):
1206 """SetIcon(self, Icon icon)"""
1207 return _controls_
.StaticBitmap_SetIcon(*args
, **kwargs
)
1209 def GetClassDefaultAttributes(*args
, **kwargs
):
1211 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1213 Get the default attributes for this class. This is useful if you want
1214 to use the same font or colour in your own control as in a standard
1215 control -- which is a much better idea than hard coding specific
1216 colours or fonts which might look completely out of place on the
1217 user's system, especially if it uses themes.
1219 The variant parameter is only relevant under Mac currently and is
1220 ignore under other platforms. Under Mac, it will change the size of
1221 the returned font. See `wx.Window.SetWindowVariant` for more about
1224 return _controls_
.StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
)
1226 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1227 _controls_
.StaticBitmap_swigregister(StaticBitmap
)
1229 def PreStaticBitmap(*args
, **kwargs
):
1230 """PreStaticBitmap() -> StaticBitmap"""
1231 val
= _controls_
.new_PreStaticBitmap(*args
, **kwargs
)
1234 def StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
):
1236 StaticBitmap_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1238 Get the default attributes for this class. This is useful if you want
1239 to use the same font or colour in your own control as in a standard
1240 control -- which is a much better idea than hard coding specific
1241 colours or fonts which might look completely out of place on the
1242 user's system, especially if it uses themes.
1244 The variant parameter is only relevant under Mac currently and is
1245 ignore under other platforms. Under Mac, it will change the size of
1246 the returned font. See `wx.Window.SetWindowVariant` for more about
1249 return _controls_
.StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
)
1251 #---------------------------------------------------------------------------
1253 class ListBox(_core
.ControlWithItems
):
1254 """Proxy of C++ ListBox class"""
1255 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1256 __repr__
= _swig_repr
1257 def __init__(self
, *args
, **kwargs
):
1259 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1260 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1261 long style=0, Validator validator=DefaultValidator,
1262 String name=ListBoxNameStr) -> ListBox
1264 _controls_
.ListBox_swiginit(self
,_controls_
.new_ListBox(*args
, **kwargs
))
1265 self
._setOORInfo
(self
)
1267 def Create(*args
, **kwargs
):
1269 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1270 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1271 long style=0, Validator validator=DefaultValidator,
1272 String name=ListBoxNameStr) -> bool
1274 return _controls_
.ListBox_Create(*args
, **kwargs
)
1276 def Insert(*args
, **kwargs
):
1278 Insert(self, String item, int pos, PyObject clientData=None)
1280 Insert an item into the control before the item at the ``pos`` index,
1281 optionally associating some data object with the item.
1283 return _controls_
.ListBox_Insert(*args
, **kwargs
)
1285 def InsertItems(*args
, **kwargs
):
1286 """InsertItems(self, wxArrayString items, unsigned int pos)"""
1287 return _controls_
.ListBox_InsertItems(*args
, **kwargs
)
1289 def Set(*args
, **kwargs
):
1290 """Set(self, wxArrayString items)"""
1291 return _controls_
.ListBox_Set(*args
, **kwargs
)
1293 def IsSelected(*args
, **kwargs
):
1294 """IsSelected(self, int n) -> bool"""
1295 return _controls_
.ListBox_IsSelected(*args
, **kwargs
)
1297 def SetSelection(*args
, **kwargs
):
1298 """SetSelection(self, int n, bool select=True)"""
1299 return _controls_
.ListBox_SetSelection(*args
, **kwargs
)
1301 def Select(*args
, **kwargs
):
1305 This is the same as `SetSelection` and exists only because it is
1306 slightly more natural for controls which support multiple selection.
1308 return _controls_
.ListBox_Select(*args
, **kwargs
)
1310 def Deselect(*args
, **kwargs
):
1311 """Deselect(self, int n)"""
1312 return _controls_
.ListBox_Deselect(*args
, **kwargs
)
1314 def DeselectAll(*args
, **kwargs
):
1315 """DeselectAll(self, int itemToLeaveSelected=-1)"""
1316 return _controls_
.ListBox_DeselectAll(*args
, **kwargs
)
1318 def SetStringSelection(*args
, **kwargs
):
1319 """SetStringSelection(self, String s, bool select=True) -> bool"""
1320 return _controls_
.ListBox_SetStringSelection(*args
, **kwargs
)
1322 def GetSelections(*args
, **kwargs
):
1323 """GetSelections(self) -> PyObject"""
1324 return _controls_
.ListBox_GetSelections(*args
, **kwargs
)
1326 def SetFirstItem(*args
, **kwargs
):
1327 """SetFirstItem(self, int n)"""
1328 return _controls_
.ListBox_SetFirstItem(*args
, **kwargs
)
1330 def SetFirstItemStr(*args
, **kwargs
):
1331 """SetFirstItemStr(self, String s)"""
1332 return _controls_
.ListBox_SetFirstItemStr(*args
, **kwargs
)
1334 def EnsureVisible(*args
, **kwargs
):
1335 """EnsureVisible(self, int n)"""
1336 return _controls_
.ListBox_EnsureVisible(*args
, **kwargs
)
1338 def AppendAndEnsureVisible(*args
, **kwargs
):
1339 """AppendAndEnsureVisible(self, String s)"""
1340 return _controls_
.ListBox_AppendAndEnsureVisible(*args
, **kwargs
)
1342 def IsSorted(*args
, **kwargs
):
1343 """IsSorted(self) -> bool"""
1344 return _controls_
.ListBox_IsSorted(*args
, **kwargs
)
1346 def HitTest(*args
, **kwargs
):
1348 HitTest(self, Point pt) -> int
1350 Test where the given (in client coords) point lies
1352 return _controls_
.ListBox_HitTest(*args
, **kwargs
)
1354 def SetItemForegroundColour(*args
, **kwargs
):
1355 """SetItemForegroundColour(self, int item, Colour c)"""
1356 return _controls_
.ListBox_SetItemForegroundColour(*args
, **kwargs
)
1358 def SetItemBackgroundColour(*args
, **kwargs
):
1359 """SetItemBackgroundColour(self, int item, Colour c)"""
1360 return _controls_
.ListBox_SetItemBackgroundColour(*args
, **kwargs
)
1362 def SetItemFont(*args
, **kwargs
):
1363 """SetItemFont(self, int item, Font f)"""
1364 return _controls_
.ListBox_SetItemFont(*args
, **kwargs
)
1366 def GetClassDefaultAttributes(*args
, **kwargs
):
1368 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1370 Get the default attributes for this class. This is useful if you want
1371 to use the same font or colour in your own control as in a standard
1372 control -- which is a much better idea than hard coding specific
1373 colours or fonts which might look completely out of place on the
1374 user's system, especially if it uses themes.
1376 The variant parameter is only relevant under Mac currently and is
1377 ignore under other platforms. Under Mac, it will change the size of
1378 the returned font. See `wx.Window.SetWindowVariant` for more about
1381 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1383 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1384 _controls_
.ListBox_swigregister(ListBox
)
1385 ListBoxNameStr
= cvar
.ListBoxNameStr
1387 def PreListBox(*args
, **kwargs
):
1388 """PreListBox() -> ListBox"""
1389 val
= _controls_
.new_PreListBox(*args
, **kwargs
)
1392 def ListBox_GetClassDefaultAttributes(*args
, **kwargs
):
1394 ListBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1396 Get the default attributes for this class. This is useful if you want
1397 to use the same font or colour in your own control as in a standard
1398 control -- which is a much better idea than hard coding specific
1399 colours or fonts which might look completely out of place on the
1400 user's system, especially if it uses themes.
1402 The variant parameter is only relevant under Mac currently and is
1403 ignore under other platforms. Under Mac, it will change the size of
1404 the returned font. See `wx.Window.SetWindowVariant` for more about
1407 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1409 #---------------------------------------------------------------------------
1411 class CheckListBox(ListBox
):
1412 """Proxy of C++ CheckListBox class"""
1413 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1414 __repr__
= _swig_repr
1415 def __init__(self
, *args
, **kwargs
):
1417 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1418 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1419 long style=0, Validator validator=DefaultValidator,
1420 String name=ListBoxNameStr) -> CheckListBox
1422 _controls_
.CheckListBox_swiginit(self
,_controls_
.new_CheckListBox(*args
, **kwargs
))
1423 self
._setOORInfo
(self
)
1425 def Create(*args
, **kwargs
):
1427 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1428 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1429 long style=0, Validator validator=DefaultValidator,
1430 String name=ListBoxNameStr) -> bool
1432 return _controls_
.CheckListBox_Create(*args
, **kwargs
)
1434 def IsChecked(*args
, **kwargs
):
1435 """IsChecked(self, unsigned int index) -> bool"""
1436 return _controls_
.CheckListBox_IsChecked(*args
, **kwargs
)
1438 def Check(*args
, **kwargs
):
1439 """Check(self, unsigned int index, int check=True)"""
1440 return _controls_
.CheckListBox_Check(*args
, **kwargs
)
1442 _controls_
.CheckListBox_swigregister(CheckListBox
)
1444 def PreCheckListBox(*args
, **kwargs
):
1445 """PreCheckListBox() -> CheckListBox"""
1446 val
= _controls_
.new_PreCheckListBox(*args
, **kwargs
)
1449 #---------------------------------------------------------------------------
1451 TE_NO_VSCROLL
= _controls_
.TE_NO_VSCROLL
1452 TE_AUTO_SCROLL
= _controls_
.TE_AUTO_SCROLL
1453 TE_READONLY
= _controls_
.TE_READONLY
1454 TE_MULTILINE
= _controls_
.TE_MULTILINE
1455 TE_PROCESS_TAB
= _controls_
.TE_PROCESS_TAB
1456 TE_LEFT
= _controls_
.TE_LEFT
1457 TE_CENTER
= _controls_
.TE_CENTER
1458 TE_RIGHT
= _controls_
.TE_RIGHT
1459 TE_CENTRE
= _controls_
.TE_CENTRE
1460 TE_RICH
= _controls_
.TE_RICH
1461 TE_PROCESS_ENTER
= _controls_
.TE_PROCESS_ENTER
1462 TE_PASSWORD
= _controls_
.TE_PASSWORD
1463 TE_AUTO_URL
= _controls_
.TE_AUTO_URL
1464 TE_NOHIDESEL
= _controls_
.TE_NOHIDESEL
1465 TE_DONTWRAP
= _controls_
.TE_DONTWRAP
1466 TE_CHARWRAP
= _controls_
.TE_CHARWRAP
1467 TE_WORDWRAP
= _controls_
.TE_WORDWRAP
1468 TE_BESTWRAP
= _controls_
.TE_BESTWRAP
1469 TE_RICH2
= _controls_
.TE_RICH2
1470 TE_CAPITALIZE
= _controls_
.TE_CAPITALIZE
1471 TE_LINEWRAP
= TE_CHARWRAP
1472 TEXT_ALIGNMENT_DEFAULT
= _controls_
.TEXT_ALIGNMENT_DEFAULT
1473 TEXT_ALIGNMENT_LEFT
= _controls_
.TEXT_ALIGNMENT_LEFT
1474 TEXT_ALIGNMENT_CENTRE
= _controls_
.TEXT_ALIGNMENT_CENTRE
1475 TEXT_ALIGNMENT_CENTER
= _controls_
.TEXT_ALIGNMENT_CENTER
1476 TEXT_ALIGNMENT_RIGHT
= _controls_
.TEXT_ALIGNMENT_RIGHT
1477 TEXT_ALIGNMENT_JUSTIFIED
= _controls_
.TEXT_ALIGNMENT_JUSTIFIED
1478 TEXT_ATTR_TEXT_COLOUR
= _controls_
.TEXT_ATTR_TEXT_COLOUR
1479 TEXT_ATTR_BACKGROUND_COLOUR
= _controls_
.TEXT_ATTR_BACKGROUND_COLOUR
1480 TEXT_ATTR_FONT_FACE
= _controls_
.TEXT_ATTR_FONT_FACE
1481 TEXT_ATTR_FONT_SIZE
= _controls_
.TEXT_ATTR_FONT_SIZE
1482 TEXT_ATTR_FONT_WEIGHT
= _controls_
.TEXT_ATTR_FONT_WEIGHT
1483 TEXT_ATTR_FONT_ITALIC
= _controls_
.TEXT_ATTR_FONT_ITALIC
1484 TEXT_ATTR_FONT_UNDERLINE
= _controls_
.TEXT_ATTR_FONT_UNDERLINE
1485 TEXT_ATTR_FONT
= _controls_
.TEXT_ATTR_FONT
1486 TEXT_ATTR_ALIGNMENT
= _controls_
.TEXT_ATTR_ALIGNMENT
1487 TEXT_ATTR_LEFT_INDENT
= _controls_
.TEXT_ATTR_LEFT_INDENT
1488 TEXT_ATTR_RIGHT_INDENT
= _controls_
.TEXT_ATTR_RIGHT_INDENT
1489 TEXT_ATTR_TABS
= _controls_
.TEXT_ATTR_TABS
1490 TE_HT_UNKNOWN
= _controls_
.TE_HT_UNKNOWN
1491 TE_HT_BEFORE
= _controls_
.TE_HT_BEFORE
1492 TE_HT_ON_TEXT
= _controls_
.TE_HT_ON_TEXT
1493 TE_HT_BELOW
= _controls_
.TE_HT_BELOW
1494 TE_HT_BEYOND
= _controls_
.TE_HT_BEYOND
1495 OutOfRangeTextCoord
= _controls_
.OutOfRangeTextCoord
1496 InvalidTextCoord
= _controls_
.InvalidTextCoord
1497 class TextAttr(object):
1498 """Proxy of C++ TextAttr class"""
1499 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1500 __repr__
= _swig_repr
1501 def __init__(self
, *args
, **kwargs
):
1503 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
1504 Font font=wxNullFont, int alignment=TEXT_ALIGNMENT_DEFAULT) -> TextAttr
1506 _controls_
.TextAttr_swiginit(self
,_controls_
.new_TextAttr(*args
, **kwargs
))
1507 __swig_destroy__
= _controls_
.delete_TextAttr
1508 __del__
= lambda self
: None;
1509 def Init(*args
, **kwargs
):
1511 return _controls_
.TextAttr_Init(*args
, **kwargs
)
1513 def Merge(*args
, **kwargs
):
1514 """Merge(TextAttr base, TextAttr overlay) -> TextAttr"""
1515 return _controls_
.TextAttr_Merge(*args
, **kwargs
)
1517 Merge
= staticmethod(Merge
)
1518 def SetTextColour(*args
, **kwargs
):
1519 """SetTextColour(self, Colour colText)"""
1520 return _controls_
.TextAttr_SetTextColour(*args
, **kwargs
)
1522 def SetBackgroundColour(*args
, **kwargs
):
1523 """SetBackgroundColour(self, Colour colBack)"""
1524 return _controls_
.TextAttr_SetBackgroundColour(*args
, **kwargs
)
1526 def SetFont(*args
, **kwargs
):
1527 """SetFont(self, Font font, long flags=TEXT_ATTR_FONT)"""
1528 return _controls_
.TextAttr_SetFont(*args
, **kwargs
)
1530 def SetAlignment(*args
, **kwargs
):
1531 """SetAlignment(self, int alignment)"""
1532 return _controls_
.TextAttr_SetAlignment(*args
, **kwargs
)
1534 def SetTabs(*args
, **kwargs
):
1535 """SetTabs(self, wxArrayInt tabs)"""
1536 return _controls_
.TextAttr_SetTabs(*args
, **kwargs
)
1538 def SetLeftIndent(*args
, **kwargs
):
1539 """SetLeftIndent(self, int indent, int subIndent=0)"""
1540 return _controls_
.TextAttr_SetLeftIndent(*args
, **kwargs
)
1542 def SetRightIndent(*args
, **kwargs
):
1543 """SetRightIndent(self, int indent)"""
1544 return _controls_
.TextAttr_SetRightIndent(*args
, **kwargs
)
1546 def SetFlags(*args
, **kwargs
):
1547 """SetFlags(self, long flags)"""
1548 return _controls_
.TextAttr_SetFlags(*args
, **kwargs
)
1550 def HasTextColour(*args
, **kwargs
):
1551 """HasTextColour(self) -> bool"""
1552 return _controls_
.TextAttr_HasTextColour(*args
, **kwargs
)
1554 def HasBackgroundColour(*args
, **kwargs
):
1555 """HasBackgroundColour(self) -> bool"""
1556 return _controls_
.TextAttr_HasBackgroundColour(*args
, **kwargs
)
1558 def HasFont(*args
, **kwargs
):
1559 """HasFont(self) -> bool"""
1560 return _controls_
.TextAttr_HasFont(*args
, **kwargs
)
1562 def HasAlignment(*args
, **kwargs
):
1563 """HasAlignment(self) -> bool"""
1564 return _controls_
.TextAttr_HasAlignment(*args
, **kwargs
)
1566 def HasTabs(*args
, **kwargs
):
1567 """HasTabs(self) -> bool"""
1568 return _controls_
.TextAttr_HasTabs(*args
, **kwargs
)
1570 def HasLeftIndent(*args
, **kwargs
):
1571 """HasLeftIndent(self) -> bool"""
1572 return _controls_
.TextAttr_HasLeftIndent(*args
, **kwargs
)
1574 def HasRightIndent(*args
, **kwargs
):
1575 """HasRightIndent(self) -> bool"""
1576 return _controls_
.TextAttr_HasRightIndent(*args
, **kwargs
)
1578 def HasFlag(*args
, **kwargs
):
1579 """HasFlag(self, long flag) -> bool"""
1580 return _controls_
.TextAttr_HasFlag(*args
, **kwargs
)
1582 def GetTextColour(*args
, **kwargs
):
1583 """GetTextColour(self) -> Colour"""
1584 return _controls_
.TextAttr_GetTextColour(*args
, **kwargs
)
1586 def GetBackgroundColour(*args
, **kwargs
):
1587 """GetBackgroundColour(self) -> Colour"""
1588 return _controls_
.TextAttr_GetBackgroundColour(*args
, **kwargs
)
1590 def GetFont(*args
, **kwargs
):
1591 """GetFont(self) -> Font"""
1592 return _controls_
.TextAttr_GetFont(*args
, **kwargs
)
1594 def GetAlignment(*args
, **kwargs
):
1595 """GetAlignment(self) -> int"""
1596 return _controls_
.TextAttr_GetAlignment(*args
, **kwargs
)
1598 def GetTabs(*args
, **kwargs
):
1599 """GetTabs(self) -> wxArrayInt"""
1600 return _controls_
.TextAttr_GetTabs(*args
, **kwargs
)
1602 def GetLeftIndent(*args
, **kwargs
):
1603 """GetLeftIndent(self) -> long"""
1604 return _controls_
.TextAttr_GetLeftIndent(*args
, **kwargs
)
1606 def GetLeftSubIndent(*args
, **kwargs
):
1607 """GetLeftSubIndent(self) -> long"""
1608 return _controls_
.TextAttr_GetLeftSubIndent(*args
, **kwargs
)
1610 def GetRightIndent(*args
, **kwargs
):
1611 """GetRightIndent(self) -> long"""
1612 return _controls_
.TextAttr_GetRightIndent(*args
, **kwargs
)
1614 def GetFlags(*args
, **kwargs
):
1615 """GetFlags(self) -> long"""
1616 return _controls_
.TextAttr_GetFlags(*args
, **kwargs
)
1618 def IsDefault(*args
, **kwargs
):
1619 """IsDefault(self) -> bool"""
1620 return _controls_
.TextAttr_IsDefault(*args
, **kwargs
)
1622 def Combine(*args
, **kwargs
):
1623 """Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1624 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1626 Combine
= staticmethod(Combine
)
1627 _controls_
.TextAttr_swigregister(TextAttr
)
1628 TextCtrlNameStr
= cvar
.TextCtrlNameStr
1630 def TextAttr_Merge(*args
, **kwargs
):
1631 """TextAttr_Merge(TextAttr base, TextAttr overlay) -> TextAttr"""
1632 return _controls_
.TextAttr_Merge(*args
, **kwargs
)
1634 def TextAttr_Combine(*args
, **kwargs
):
1635 """TextAttr_Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1636 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1638 class TextCtrl(_core
.Control
):
1639 """Proxy of C++ TextCtrl class"""
1640 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1641 __repr__
= _swig_repr
1642 def __init__(self
, *args
, **kwargs
):
1644 __init__(self, Window parent, int id=-1, String value=EmptyString,
1645 Point pos=DefaultPosition, Size size=DefaultSize,
1646 long style=0, Validator validator=DefaultValidator,
1647 String name=TextCtrlNameStr) -> TextCtrl
1649 _controls_
.TextCtrl_swiginit(self
,_controls_
.new_TextCtrl(*args
, **kwargs
))
1650 self
._setOORInfo
(self
)
1652 def Create(*args
, **kwargs
):
1654 Create(self, Window parent, int id=-1, String value=EmptyString,
1655 Point pos=DefaultPosition, Size size=DefaultSize,
1656 long style=0, Validator validator=DefaultValidator,
1657 String name=TextCtrlNameStr) -> bool
1659 return _controls_
.TextCtrl_Create(*args
, **kwargs
)
1661 def GetValue(*args
, **kwargs
):
1662 """GetValue(self) -> String"""
1663 return _controls_
.TextCtrl_GetValue(*args
, **kwargs
)
1665 def SetValue(*args
, **kwargs
):
1666 """SetValue(self, String value)"""
1667 return _controls_
.TextCtrl_SetValue(*args
, **kwargs
)
1669 def GetRange(*args
, **kwargs
):
1670 """GetRange(self, long from, long to) -> String"""
1671 return _controls_
.TextCtrl_GetRange(*args
, **kwargs
)
1673 def GetLineLength(*args
, **kwargs
):
1674 """GetLineLength(self, long lineNo) -> int"""
1675 return _controls_
.TextCtrl_GetLineLength(*args
, **kwargs
)
1677 def GetLineText(*args
, **kwargs
):
1678 """GetLineText(self, long lineNo) -> String"""
1679 return _controls_
.TextCtrl_GetLineText(*args
, **kwargs
)
1681 def GetNumberOfLines(*args
, **kwargs
):
1682 """GetNumberOfLines(self) -> int"""
1683 return _controls_
.TextCtrl_GetNumberOfLines(*args
, **kwargs
)
1685 def IsModified(*args
, **kwargs
):
1686 """IsModified(self) -> bool"""
1687 return _controls_
.TextCtrl_IsModified(*args
, **kwargs
)
1689 def IsEditable(*args
, **kwargs
):
1690 """IsEditable(self) -> bool"""
1691 return _controls_
.TextCtrl_IsEditable(*args
, **kwargs
)
1693 def IsSingleLine(*args
, **kwargs
):
1694 """IsSingleLine(self) -> bool"""
1695 return _controls_
.TextCtrl_IsSingleLine(*args
, **kwargs
)
1697 def IsMultiLine(*args
, **kwargs
):
1698 """IsMultiLine(self) -> bool"""
1699 return _controls_
.TextCtrl_IsMultiLine(*args
, **kwargs
)
1701 def GetSelection(*args
, **kwargs
):
1703 GetSelection() -> (from, to)
1705 If the return values from and to are the same, there is no selection.
1707 return _controls_
.TextCtrl_GetSelection(*args
, **kwargs
)
1709 def GetStringSelection(*args
, **kwargs
):
1710 """GetStringSelection(self) -> String"""
1711 return _controls_
.TextCtrl_GetStringSelection(*args
, **kwargs
)
1713 def Clear(*args
, **kwargs
):
1715 return _controls_
.TextCtrl_Clear(*args
, **kwargs
)
1717 def Replace(*args
, **kwargs
):
1718 """Replace(self, long from, long to, String value)"""
1719 return _controls_
.TextCtrl_Replace(*args
, **kwargs
)
1721 def Remove(*args
, **kwargs
):
1722 """Remove(self, long from, long to)"""
1723 return _controls_
.TextCtrl_Remove(*args
, **kwargs
)
1725 def LoadFile(*args
, **kwargs
):
1726 """LoadFile(self, String file) -> bool"""
1727 return _controls_
.TextCtrl_LoadFile(*args
, **kwargs
)
1729 def SaveFile(*args
, **kwargs
):
1730 """SaveFile(self, String file=EmptyString) -> bool"""
1731 return _controls_
.TextCtrl_SaveFile(*args
, **kwargs
)
1733 def MarkDirty(*args
, **kwargs
):
1734 """MarkDirty(self)"""
1735 return _controls_
.TextCtrl_MarkDirty(*args
, **kwargs
)
1737 def DiscardEdits(*args
, **kwargs
):
1738 """DiscardEdits(self)"""
1739 return _controls_
.TextCtrl_DiscardEdits(*args
, **kwargs
)
1741 def SetModified(*args
, **kwargs
):
1742 """SetModified(self, bool modified)"""
1743 return _controls_
.TextCtrl_SetModified(*args
, **kwargs
)
1745 def SetMaxLength(*args
, **kwargs
):
1746 """SetMaxLength(self, unsigned long len)"""
1747 return _controls_
.TextCtrl_SetMaxLength(*args
, **kwargs
)
1749 def WriteText(*args
, **kwargs
):
1750 """WriteText(self, String text)"""
1751 return _controls_
.TextCtrl_WriteText(*args
, **kwargs
)
1753 def AppendText(*args
, **kwargs
):
1754 """AppendText(self, String text)"""
1755 return _controls_
.TextCtrl_AppendText(*args
, **kwargs
)
1757 def EmulateKeyPress(*args
, **kwargs
):
1758 """EmulateKeyPress(self, KeyEvent event) -> bool"""
1759 return _controls_
.TextCtrl_EmulateKeyPress(*args
, **kwargs
)
1761 def SetStyle(*args
, **kwargs
):
1762 """SetStyle(self, long start, long end, TextAttr style) -> bool"""
1763 return _controls_
.TextCtrl_SetStyle(*args
, **kwargs
)
1765 def GetStyle(*args
, **kwargs
):
1766 """GetStyle(self, long position, TextAttr style) -> bool"""
1767 return _controls_
.TextCtrl_GetStyle(*args
, **kwargs
)
1769 def SetDefaultStyle(*args
, **kwargs
):
1770 """SetDefaultStyle(self, TextAttr style) -> bool"""
1771 return _controls_
.TextCtrl_SetDefaultStyle(*args
, **kwargs
)
1773 def GetDefaultStyle(*args
, **kwargs
):
1774 """GetDefaultStyle(self) -> TextAttr"""
1775 return _controls_
.TextCtrl_GetDefaultStyle(*args
, **kwargs
)
1777 def XYToPosition(*args
, **kwargs
):
1778 """XYToPosition(self, long x, long y) -> long"""
1779 return _controls_
.TextCtrl_XYToPosition(*args
, **kwargs
)
1781 def PositionToXY(*args
, **kwargs
):
1782 """PositionToXY(long pos) -> (x, y)"""
1783 return _controls_
.TextCtrl_PositionToXY(*args
, **kwargs
)
1785 def ShowPosition(*args
, **kwargs
):
1786 """ShowPosition(self, long pos)"""
1787 return _controls_
.TextCtrl_ShowPosition(*args
, **kwargs
)
1789 def HitTest(*args
, **kwargs
):
1791 HitTest(Point pt) -> (result, col, row)
1793 Find the row, col coresponding to the character at the point given in
1794 pixels. NB: pt is in device coords but is not adjusted for the client
1795 area origin nor scrolling.
1797 return _controls_
.TextCtrl_HitTest(*args
, **kwargs
)
1799 def HitTestPos(*args
, **kwargs
):
1801 HitTestPos(Point pt) -> (result, position)
1803 Find the character position in the text coresponding to the point
1804 given in pixels. NB: pt is in device coords but is not adjusted for
1805 the client area origin nor scrolling.
1807 return _controls_
.TextCtrl_HitTestPos(*args
, **kwargs
)
1809 def Copy(*args
, **kwargs
):
1811 return _controls_
.TextCtrl_Copy(*args
, **kwargs
)
1813 def Cut(*args
, **kwargs
):
1815 return _controls_
.TextCtrl_Cut(*args
, **kwargs
)
1817 def Paste(*args
, **kwargs
):
1819 return _controls_
.TextCtrl_Paste(*args
, **kwargs
)
1821 def CanCopy(*args
, **kwargs
):
1822 """CanCopy(self) -> bool"""
1823 return _controls_
.TextCtrl_CanCopy(*args
, **kwargs
)
1825 def CanCut(*args
, **kwargs
):
1826 """CanCut(self) -> bool"""
1827 return _controls_
.TextCtrl_CanCut(*args
, **kwargs
)
1829 def CanPaste(*args
, **kwargs
):
1830 """CanPaste(self) -> bool"""
1831 return _controls_
.TextCtrl_CanPaste(*args
, **kwargs
)
1833 def Undo(*args
, **kwargs
):
1835 return _controls_
.TextCtrl_Undo(*args
, **kwargs
)
1837 def Redo(*args
, **kwargs
):
1839 return _controls_
.TextCtrl_Redo(*args
, **kwargs
)
1841 def CanUndo(*args
, **kwargs
):
1842 """CanUndo(self) -> bool"""
1843 return _controls_
.TextCtrl_CanUndo(*args
, **kwargs
)
1845 def CanRedo(*args
, **kwargs
):
1846 """CanRedo(self) -> bool"""
1847 return _controls_
.TextCtrl_CanRedo(*args
, **kwargs
)
1849 def SetInsertionPoint(*args
, **kwargs
):
1850 """SetInsertionPoint(self, long pos)"""
1851 return _controls_
.TextCtrl_SetInsertionPoint(*args
, **kwargs
)
1853 def SetInsertionPointEnd(*args
, **kwargs
):
1854 """SetInsertionPointEnd(self)"""
1855 return _controls_
.TextCtrl_SetInsertionPointEnd(*args
, **kwargs
)
1857 def GetInsertionPoint(*args
, **kwargs
):
1858 """GetInsertionPoint(self) -> long"""
1859 return _controls_
.TextCtrl_GetInsertionPoint(*args
, **kwargs
)
1861 def GetLastPosition(*args
, **kwargs
):
1862 """GetLastPosition(self) -> long"""
1863 return _controls_
.TextCtrl_GetLastPosition(*args
, **kwargs
)
1865 def SetSelection(*args
, **kwargs
):
1866 """SetSelection(self, long from, long to)"""
1867 return _controls_
.TextCtrl_SetSelection(*args
, **kwargs
)
1869 def SelectAll(*args
, **kwargs
):
1870 """SelectAll(self)"""
1871 return _controls_
.TextCtrl_SelectAll(*args
, **kwargs
)
1873 def SetEditable(*args
, **kwargs
):
1874 """SetEditable(self, bool editable)"""
1875 return _controls_
.TextCtrl_SetEditable(*args
, **kwargs
)
1877 def write(*args
, **kwargs
):
1878 """write(self, String text)"""
1879 return _controls_
.TextCtrl_write(*args
, **kwargs
)
1881 def GetString(*args
, **kwargs
):
1882 """GetString(self, long from, long to) -> String"""
1883 return _controls_
.TextCtrl_GetString(*args
, **kwargs
)
1885 def GetClassDefaultAttributes(*args
, **kwargs
):
1887 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1889 Get the default attributes for this class. This is useful if you want
1890 to use the same font or colour in your own control as in a standard
1891 control -- which is a much better idea than hard coding specific
1892 colours or fonts which might look completely out of place on the
1893 user's system, especially if it uses themes.
1895 The variant parameter is only relevant under Mac currently and is
1896 ignore under other platforms. Under Mac, it will change the size of
1897 the returned font. See `wx.Window.SetWindowVariant` for more about
1900 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1902 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1903 _controls_
.TextCtrl_swigregister(TextCtrl
)
1905 def PreTextCtrl(*args
, **kwargs
):
1906 """PreTextCtrl() -> TextCtrl"""
1907 val
= _controls_
.new_PreTextCtrl(*args
, **kwargs
)
1910 def TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
1912 TextCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1914 Get the default attributes for this class. This is useful if you want
1915 to use the same font or colour in your own control as in a standard
1916 control -- which is a much better idea than hard coding specific
1917 colours or fonts which might look completely out of place on the
1918 user's system, especially if it uses themes.
1920 The variant parameter is only relevant under Mac currently and is
1921 ignore under other platforms. Under Mac, it will change the size of
1922 the returned font. See `wx.Window.SetWindowVariant` for more about
1925 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1927 wxEVT_COMMAND_TEXT_UPDATED
= _controls_
.wxEVT_COMMAND_TEXT_UPDATED
1928 wxEVT_COMMAND_TEXT_ENTER
= _controls_
.wxEVT_COMMAND_TEXT_ENTER
1929 wxEVT_COMMAND_TEXT_URL
= _controls_
.wxEVT_COMMAND_TEXT_URL
1930 wxEVT_COMMAND_TEXT_MAXLEN
= _controls_
.wxEVT_COMMAND_TEXT_MAXLEN
1931 class TextUrlEvent(_core
.CommandEvent
):
1932 """Proxy of C++ TextUrlEvent class"""
1933 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1934 __repr__
= _swig_repr
1935 def __init__(self
, *args
, **kwargs
):
1936 """__init__(self, int winid, MouseEvent evtMouse, long start, long end) -> TextUrlEvent"""
1937 _controls_
.TextUrlEvent_swiginit(self
,_controls_
.new_TextUrlEvent(*args
, **kwargs
))
1938 def GetMouseEvent(*args
, **kwargs
):
1939 """GetMouseEvent(self) -> MouseEvent"""
1940 return _controls_
.TextUrlEvent_GetMouseEvent(*args
, **kwargs
)
1942 def GetURLStart(*args
, **kwargs
):
1943 """GetURLStart(self) -> long"""
1944 return _controls_
.TextUrlEvent_GetURLStart(*args
, **kwargs
)
1946 def GetURLEnd(*args
, **kwargs
):
1947 """GetURLEnd(self) -> long"""
1948 return _controls_
.TextUrlEvent_GetURLEnd(*args
, **kwargs
)
1950 _controls_
.TextUrlEvent_swigregister(TextUrlEvent
)
1952 EVT_TEXT
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED
, 1)
1953 EVT_TEXT_ENTER
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER
, 1)
1954 EVT_TEXT_URL
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_URL
, 1)
1955 EVT_TEXT_MAXLEN
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN
, 1)
1957 #---------------------------------------------------------------------------
1959 class ScrollBar(_core
.Control
):
1960 """Proxy of C++ ScrollBar class"""
1961 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1962 __repr__
= _swig_repr
1963 def __init__(self
, *args
, **kwargs
):
1965 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1966 Size size=DefaultSize, long style=SB_HORIZONTAL,
1967 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> ScrollBar
1969 _controls_
.ScrollBar_swiginit(self
,_controls_
.new_ScrollBar(*args
, **kwargs
))
1970 self
._setOORInfo
(self
)
1972 def Create(*args
, **kwargs
):
1974 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1975 Size size=DefaultSize, long style=SB_HORIZONTAL,
1976 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> bool
1978 Do the 2nd phase and create the GUI control.
1980 return _controls_
.ScrollBar_Create(*args
, **kwargs
)
1982 def GetThumbPosition(*args
, **kwargs
):
1983 """GetThumbPosition(self) -> int"""
1984 return _controls_
.ScrollBar_GetThumbPosition(*args
, **kwargs
)
1986 def GetThumbSize(*args
, **kwargs
):
1987 """GetThumbSize(self) -> int"""
1988 return _controls_
.ScrollBar_GetThumbSize(*args
, **kwargs
)
1990 GetThumbLength
= GetThumbSize
1991 def GetPageSize(*args
, **kwargs
):
1992 """GetPageSize(self) -> int"""
1993 return _controls_
.ScrollBar_GetPageSize(*args
, **kwargs
)
1995 def GetRange(*args
, **kwargs
):
1996 """GetRange(self) -> int"""
1997 return _controls_
.ScrollBar_GetRange(*args
, **kwargs
)
1999 def IsVertical(*args
, **kwargs
):
2000 """IsVertical(self) -> bool"""
2001 return _controls_
.ScrollBar_IsVertical(*args
, **kwargs
)
2003 def SetThumbPosition(*args
, **kwargs
):
2004 """SetThumbPosition(self, int viewStart)"""
2005 return _controls_
.ScrollBar_SetThumbPosition(*args
, **kwargs
)
2007 def GetClassDefaultAttributes(*args
, **kwargs
):
2009 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2011 Get the default attributes for this class. This is useful if you want
2012 to use the same font or colour in your own control as in a standard
2013 control -- which is a much better idea than hard coding specific
2014 colours or fonts which might look completely out of place on the
2015 user's system, especially if it uses themes.
2017 The variant parameter is only relevant under Mac currently and is
2018 ignore under other platforms. Under Mac, it will change the size of
2019 the returned font. See `wx.Window.SetWindowVariant` for more about
2022 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
2024 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2025 _controls_
.ScrollBar_swigregister(ScrollBar
)
2026 ScrollBarNameStr
= cvar
.ScrollBarNameStr
2028 def PreScrollBar(*args
, **kwargs
):
2029 """PreScrollBar() -> ScrollBar"""
2030 val
= _controls_
.new_PreScrollBar(*args
, **kwargs
)
2033 def ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
):
2035 ScrollBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2037 Get the default attributes for this class. This is useful if you want
2038 to use the same font or colour in your own control as in a standard
2039 control -- which is a much better idea than hard coding specific
2040 colours or fonts which might look completely out of place on the
2041 user's system, especially if it uses themes.
2043 The variant parameter is only relevant under Mac currently and is
2044 ignore under other platforms. Under Mac, it will change the size of
2045 the returned font. See `wx.Window.SetWindowVariant` for more about
2048 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
2050 #---------------------------------------------------------------------------
2052 SP_HORIZONTAL
= _controls_
.SP_HORIZONTAL
2053 SP_VERTICAL
= _controls_
.SP_VERTICAL
2054 SP_ARROW_KEYS
= _controls_
.SP_ARROW_KEYS
2055 SP_WRAP
= _controls_
.SP_WRAP
2056 class SpinButton(_core
.Control
):
2057 """Proxy of C++ SpinButton class"""
2058 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2059 __repr__
= _swig_repr
2060 def __init__(self
, *args
, **kwargs
):
2062 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2063 Size size=DefaultSize, long style=SP_HORIZONTAL,
2064 String name=SPIN_BUTTON_NAME) -> SpinButton
2066 _controls_
.SpinButton_swiginit(self
,_controls_
.new_SpinButton(*args
, **kwargs
))
2067 self
._setOORInfo
(self
)
2069 def Create(*args
, **kwargs
):
2071 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2072 Size size=DefaultSize, long style=SP_HORIZONTAL,
2073 String name=SPIN_BUTTON_NAME) -> bool
2075 return _controls_
.SpinButton_Create(*args
, **kwargs
)
2077 def GetValue(*args
, **kwargs
):
2078 """GetValue(self) -> int"""
2079 return _controls_
.SpinButton_GetValue(*args
, **kwargs
)
2081 def GetMin(*args
, **kwargs
):
2082 """GetMin(self) -> int"""
2083 return _controls_
.SpinButton_GetMin(*args
, **kwargs
)
2085 def GetMax(*args
, **kwargs
):
2086 """GetMax(self) -> int"""
2087 return _controls_
.SpinButton_GetMax(*args
, **kwargs
)
2089 def SetValue(*args
, **kwargs
):
2090 """SetValue(self, int val)"""
2091 return _controls_
.SpinButton_SetValue(*args
, **kwargs
)
2093 def SetMin(*args
, **kwargs
):
2094 """SetMin(self, int minVal)"""
2095 return _controls_
.SpinButton_SetMin(*args
, **kwargs
)
2097 def SetMax(*args
, **kwargs
):
2098 """SetMax(self, int maxVal)"""
2099 return _controls_
.SpinButton_SetMax(*args
, **kwargs
)
2101 def SetRange(*args
, **kwargs
):
2102 """SetRange(self, int minVal, int maxVal)"""
2103 return _controls_
.SpinButton_SetRange(*args
, **kwargs
)
2105 def IsVertical(*args
, **kwargs
):
2106 """IsVertical(self) -> bool"""
2107 return _controls_
.SpinButton_IsVertical(*args
, **kwargs
)
2109 def GetClassDefaultAttributes(*args
, **kwargs
):
2111 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2113 Get the default attributes for this class. This is useful if you want
2114 to use the same font or colour in your own control as in a standard
2115 control -- which is a much better idea than hard coding specific
2116 colours or fonts which might look completely out of place on the
2117 user's system, especially if it uses themes.
2119 The variant parameter is only relevant under Mac currently and is
2120 ignore under other platforms. Under Mac, it will change the size of
2121 the returned font. See `wx.Window.SetWindowVariant` for more about
2124 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2126 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2127 _controls_
.SpinButton_swigregister(SpinButton
)
2128 SPIN_BUTTON_NAME
= cvar
.SPIN_BUTTON_NAME
2129 SpinCtrlNameStr
= cvar
.SpinCtrlNameStr
2131 def PreSpinButton(*args
, **kwargs
):
2132 """PreSpinButton() -> SpinButton"""
2133 val
= _controls_
.new_PreSpinButton(*args
, **kwargs
)
2136 def SpinButton_GetClassDefaultAttributes(*args
, **kwargs
):
2138 SpinButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2140 Get the default attributes for this class. This is useful if you want
2141 to use the same font or colour in your own control as in a standard
2142 control -- which is a much better idea than hard coding specific
2143 colours or fonts which might look completely out of place on the
2144 user's system, especially if it uses themes.
2146 The variant parameter is only relevant under Mac currently and is
2147 ignore under other platforms. Under Mac, it will change the size of
2148 the returned font. See `wx.Window.SetWindowVariant` for more about
2151 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2153 class SpinCtrl(_core
.Control
):
2154 """Proxy of C++ SpinCtrl class"""
2155 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2156 __repr__
= _swig_repr
2157 def __init__(self
, *args
, **kwargs
):
2159 __init__(self, Window parent, int id=-1, String value=EmptyString,
2160 Point pos=DefaultPosition, Size size=DefaultSize,
2161 long style=SP_ARROW_KEYS, int min=0, int max=100,
2162 int initial=0, String name=SpinCtrlNameStr) -> SpinCtrl
2164 _controls_
.SpinCtrl_swiginit(self
,_controls_
.new_SpinCtrl(*args
, **kwargs
))
2165 self
._setOORInfo
(self
)
2167 def Create(*args
, **kwargs
):
2169 Create(self, Window parent, int id=-1, String value=EmptyString,
2170 Point pos=DefaultPosition, Size size=DefaultSize,
2171 long style=SP_ARROW_KEYS, int min=0, int max=100,
2172 int initial=0, String name=SpinCtrlNameStr) -> bool
2174 return _controls_
.SpinCtrl_Create(*args
, **kwargs
)
2176 def GetValue(*args
, **kwargs
):
2177 """GetValue(self) -> int"""
2178 return _controls_
.SpinCtrl_GetValue(*args
, **kwargs
)
2180 def SetValue(*args
, **kwargs
):
2181 """SetValue(self, int value)"""
2182 return _controls_
.SpinCtrl_SetValue(*args
, **kwargs
)
2184 def SetValueString(*args
, **kwargs
):
2185 """SetValueString(self, String text)"""
2186 return _controls_
.SpinCtrl_SetValueString(*args
, **kwargs
)
2188 def SetRange(*args
, **kwargs
):
2189 """SetRange(self, int minVal, int maxVal)"""
2190 return _controls_
.SpinCtrl_SetRange(*args
, **kwargs
)
2192 def GetMin(*args
, **kwargs
):
2193 """GetMin(self) -> int"""
2194 return _controls_
.SpinCtrl_GetMin(*args
, **kwargs
)
2196 def GetMax(*args
, **kwargs
):
2197 """GetMax(self) -> int"""
2198 return _controls_
.SpinCtrl_GetMax(*args
, **kwargs
)
2200 def SetSelection(*args
, **kwargs
):
2201 """SetSelection(self, long from, long to)"""
2202 return _controls_
.SpinCtrl_SetSelection(*args
, **kwargs
)
2204 def GetClassDefaultAttributes(*args
, **kwargs
):
2206 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2208 Get the default attributes for this class. This is useful if you want
2209 to use the same font or colour in your own control as in a standard
2210 control -- which is a much better idea than hard coding specific
2211 colours or fonts which might look completely out of place on the
2212 user's system, especially if it uses themes.
2214 The variant parameter is only relevant under Mac currently and is
2215 ignore under other platforms. Under Mac, it will change the size of
2216 the returned font. See `wx.Window.SetWindowVariant` for more about
2219 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2221 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2222 _controls_
.SpinCtrl_swigregister(SpinCtrl
)
2224 def PreSpinCtrl(*args
, **kwargs
):
2225 """PreSpinCtrl() -> SpinCtrl"""
2226 val
= _controls_
.new_PreSpinCtrl(*args
, **kwargs
)
2229 def SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
2231 SpinCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2233 Get the default attributes for this class. This is useful if you want
2234 to use the same font or colour in your own control as in a standard
2235 control -- which is a much better idea than hard coding specific
2236 colours or fonts which might look completely out of place on the
2237 user's system, especially if it uses themes.
2239 The variant parameter is only relevant under Mac currently and is
2240 ignore under other platforms. Under Mac, it will change the size of
2241 the returned font. See `wx.Window.SetWindowVariant` for more about
2244 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2246 class SpinEvent(_core
.NotifyEvent
):
2247 """Proxy of C++ SpinEvent class"""
2248 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2249 __repr__
= _swig_repr
2250 def __init__(self
, *args
, **kwargs
):
2251 """__init__(self, EventType commandType=wxEVT_NULL, int winid=0) -> SpinEvent"""
2252 _controls_
.SpinEvent_swiginit(self
,_controls_
.new_SpinEvent(*args
, **kwargs
))
2253 def GetPosition(*args
, **kwargs
):
2254 """GetPosition(self) -> int"""
2255 return _controls_
.SpinEvent_GetPosition(*args
, **kwargs
)
2257 def SetPosition(*args
, **kwargs
):
2258 """SetPosition(self, int pos)"""
2259 return _controls_
.SpinEvent_SetPosition(*args
, **kwargs
)
2261 _controls_
.SpinEvent_swigregister(SpinEvent
)
2263 wxEVT_COMMAND_SPINCTRL_UPDATED
= _controls_
.wxEVT_COMMAND_SPINCTRL_UPDATED
2264 EVT_SPIN_UP
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEUP
, 1)
2265 EVT_SPIN_DOWN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEDOWN
, 1)
2266 EVT_SPIN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_THUMBTRACK
, 1)
2267 EVT_SPINCTRL
= wx
.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED
, 1)
2269 #---------------------------------------------------------------------------
2271 class RadioBox(_core
.Control
):
2272 """Proxy of C++ RadioBox class"""
2273 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2274 __repr__
= _swig_repr
2275 def __init__(self
, *args
, **kwargs
):
2277 __init__(self, Window parent, int id=-1, String label=EmptyString,
2278 Point pos=DefaultPosition, Size size=DefaultSize,
2279 wxArrayString choices=wxPyEmptyStringArray,
2280 int majorDimension=0, long style=RA_HORIZONTAL,
2281 Validator validator=DefaultValidator,
2282 String name=RadioBoxNameStr) -> RadioBox
2284 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2285 _controls_
.RadioBox_swiginit(self
,_controls_
.new_RadioBox(*args
, **kwargs
))
2286 self
._setOORInfo
(self
)
2288 def Create(*args
, **kwargs
):
2290 Create(self, Window parent, int id=-1, String label=EmptyString,
2291 Point pos=DefaultPosition, Size size=DefaultSize,
2292 wxArrayString choices=wxPyEmptyStringArray,
2293 int majorDimension=0, long style=RA_HORIZONTAL,
2294 Validator validator=DefaultValidator,
2295 String name=RadioBoxNameStr) -> bool
2297 return _controls_
.RadioBox_Create(*args
, **kwargs
)
2299 def SetSelection(*args
, **kwargs
):
2300 """SetSelection(self, int n)"""
2301 return _controls_
.RadioBox_SetSelection(*args
, **kwargs
)
2303 def GetSelection(*args
, **kwargs
):
2304 """GetSelection(self) -> int"""
2305 return _controls_
.RadioBox_GetSelection(*args
, **kwargs
)
2307 def GetStringSelection(*args
, **kwargs
):
2308 """GetStringSelection(self) -> String"""
2309 return _controls_
.RadioBox_GetStringSelection(*args
, **kwargs
)
2311 def SetStringSelection(*args
, **kwargs
):
2312 """SetStringSelection(self, String s) -> bool"""
2313 return _controls_
.RadioBox_SetStringSelection(*args
, **kwargs
)
2315 def GetCount(*args
, **kwargs
):
2316 """GetCount(self) -> size_t"""
2317 return _controls_
.RadioBox_GetCount(*args
, **kwargs
)
2319 def FindString(*args
, **kwargs
):
2320 """FindString(self, String s) -> int"""
2321 return _controls_
.RadioBox_FindString(*args
, **kwargs
)
2323 def GetString(*args
, **kwargs
):
2324 """GetString(self, int n) -> String"""
2325 return _controls_
.RadioBox_GetString(*args
, **kwargs
)
2327 def SetString(*args
, **kwargs
):
2328 """SetString(self, int n, String label)"""
2329 return _controls_
.RadioBox_SetString(*args
, **kwargs
)
2331 GetItemLabel
= GetString
2332 SetItemLabel
= SetString
2333 def EnableItem(*args
, **kwargs
):
2334 """EnableItem(self, unsigned int n, bool enable=True)"""
2335 return _controls_
.RadioBox_EnableItem(*args
, **kwargs
)
2337 def ShowItem(*args
, **kwargs
):
2338 """ShowItem(self, unsigned int n, bool show=True)"""
2339 return _controls_
.RadioBox_ShowItem(*args
, **kwargs
)
2341 def IsItemEnabled(*args
, **kwargs
):
2342 """IsItemEnabled(self, unsigned int n) -> bool"""
2343 return _controls_
.RadioBox_IsItemEnabled(*args
, **kwargs
)
2345 def IsItemShown(*args
, **kwargs
):
2346 """IsItemShown(self, unsigned int n) -> bool"""
2347 return _controls_
.RadioBox_IsItemShown(*args
, **kwargs
)
2349 def GetColumnCount(*args
, **kwargs
):
2350 """GetColumnCount(self) -> unsigned int"""
2351 return _controls_
.RadioBox_GetColumnCount(*args
, **kwargs
)
2353 def GetRowCount(*args
, **kwargs
):
2354 """GetRowCount(self) -> unsigned int"""
2355 return _controls_
.RadioBox_GetRowCount(*args
, **kwargs
)
2357 def GetNextItem(*args
, **kwargs
):
2358 """GetNextItem(self, int item, int dir, long style) -> int"""
2359 return _controls_
.RadioBox_GetNextItem(*args
, **kwargs
)
2361 def SetItemToolTip(*args
, **kwargs
):
2362 """SetItemToolTip(self, unsigned int item, String text)"""
2363 return _controls_
.RadioBox_SetItemToolTip(*args
, **kwargs
)
2365 def GetItemToolTip(*args
, **kwargs
):
2366 """GetItemToolTip(self, unsigned int item) -> ToolTip"""
2367 return _controls_
.RadioBox_GetItemToolTip(*args
, **kwargs
)
2369 def SetItemHelpText(*args
, **kwargs
):
2370 """SetItemHelpText(self, unsigned int n, String helpText)"""
2371 return _controls_
.RadioBox_SetItemHelpText(*args
, **kwargs
)
2373 def GetItemHelpText(*args
, **kwargs
):
2374 """GetItemHelpText(self, unsigned int n) -> String"""
2375 return _controls_
.RadioBox_GetItemHelpText(*args
, **kwargs
)
2377 def GetClassDefaultAttributes(*args
, **kwargs
):
2379 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2381 Get the default attributes for this class. This is useful if you want
2382 to use the same font or colour in your own control as in a standard
2383 control -- which is a much better idea than hard coding specific
2384 colours or fonts which might look completely out of place on the
2385 user's system, especially if it uses themes.
2387 The variant parameter is only relevant under Mac currently and is
2388 ignore under other platforms. Under Mac, it will change the size of
2389 the returned font. See `wx.Window.SetWindowVariant` for more about
2392 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2394 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2395 _controls_
.RadioBox_swigregister(RadioBox
)
2396 RadioBoxNameStr
= cvar
.RadioBoxNameStr
2397 RadioButtonNameStr
= cvar
.RadioButtonNameStr
2399 def PreRadioBox(*args
, **kwargs
):
2400 """PreRadioBox() -> RadioBox"""
2401 val
= _controls_
.new_PreRadioBox(*args
, **kwargs
)
2404 def RadioBox_GetClassDefaultAttributes(*args
, **kwargs
):
2406 RadioBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2408 Get the default attributes for this class. This is useful if you want
2409 to use the same font or colour in your own control as in a standard
2410 control -- which is a much better idea than hard coding specific
2411 colours or fonts which might look completely out of place on the
2412 user's system, especially if it uses themes.
2414 The variant parameter is only relevant under Mac currently and is
2415 ignore under other platforms. Under Mac, it will change the size of
2416 the returned font. See `wx.Window.SetWindowVariant` for more about
2419 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2421 #---------------------------------------------------------------------------
2423 class RadioButton(_core
.Control
):
2424 """Proxy of C++ RadioButton class"""
2425 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2426 __repr__
= _swig_repr
2427 def __init__(self
, *args
, **kwargs
):
2429 __init__(self, Window parent, int id=-1, String label=EmptyString,
2430 Point pos=DefaultPosition, Size size=DefaultSize,
2431 long style=0, Validator validator=DefaultValidator,
2432 String name=RadioButtonNameStr) -> RadioButton
2434 _controls_
.RadioButton_swiginit(self
,_controls_
.new_RadioButton(*args
, **kwargs
))
2435 self
._setOORInfo
(self
)
2437 def Create(*args
, **kwargs
):
2439 Create(self, Window parent, int id=-1, String label=EmptyString,
2440 Point pos=DefaultPosition, Size size=DefaultSize,
2441 long style=0, Validator validator=DefaultValidator,
2442 String name=RadioButtonNameStr) -> bool
2444 return _controls_
.RadioButton_Create(*args
, **kwargs
)
2446 def GetValue(*args
, **kwargs
):
2447 """GetValue(self) -> bool"""
2448 return _controls_
.RadioButton_GetValue(*args
, **kwargs
)
2450 def SetValue(*args
, **kwargs
):
2451 """SetValue(self, bool value)"""
2452 return _controls_
.RadioButton_SetValue(*args
, **kwargs
)
2454 def GetClassDefaultAttributes(*args
, **kwargs
):
2456 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2458 Get the default attributes for this class. This is useful if you want
2459 to use the same font or colour in your own control as in a standard
2460 control -- which is a much better idea than hard coding specific
2461 colours or fonts which might look completely out of place on the
2462 user's system, especially if it uses themes.
2464 The variant parameter is only relevant under Mac currently and is
2465 ignore under other platforms. Under Mac, it will change the size of
2466 the returned font. See `wx.Window.SetWindowVariant` for more about
2469 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2471 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2472 _controls_
.RadioButton_swigregister(RadioButton
)
2474 def PreRadioButton(*args
, **kwargs
):
2475 """PreRadioButton() -> RadioButton"""
2476 val
= _controls_
.new_PreRadioButton(*args
, **kwargs
)
2479 def RadioButton_GetClassDefaultAttributes(*args
, **kwargs
):
2481 RadioButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2483 Get the default attributes for this class. This is useful if you want
2484 to use the same font or colour in your own control as in a standard
2485 control -- which is a much better idea than hard coding specific
2486 colours or fonts which might look completely out of place on the
2487 user's system, especially if it uses themes.
2489 The variant parameter is only relevant under Mac currently and is
2490 ignore under other platforms. Under Mac, it will change the size of
2491 the returned font. See `wx.Window.SetWindowVariant` for more about
2494 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2496 #---------------------------------------------------------------------------
2498 SL_HORIZONTAL
= _controls_
.SL_HORIZONTAL
2499 SL_VERTICAL
= _controls_
.SL_VERTICAL
2500 SL_TICKS
= _controls_
.SL_TICKS
2501 SL_AUTOTICKS
= _controls_
.SL_AUTOTICKS
2502 SL_LABELS
= _controls_
.SL_LABELS
2503 SL_LEFT
= _controls_
.SL_LEFT
2504 SL_TOP
= _controls_
.SL_TOP
2505 SL_RIGHT
= _controls_
.SL_RIGHT
2506 SL_BOTTOM
= _controls_
.SL_BOTTOM
2507 SL_BOTH
= _controls_
.SL_BOTH
2508 SL_SELRANGE
= _controls_
.SL_SELRANGE
2509 SL_INVERSE
= _controls_
.SL_INVERSE
2510 class Slider(_core
.Control
):
2511 """Proxy of C++ Slider class"""
2512 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2513 __repr__
= _swig_repr
2514 def __init__(self
, *args
, **kwargs
):
2516 __init__(self, Window parent, int id=-1, int value=0, int minValue=0,
2517 int maxValue=100, Point pos=DefaultPosition,
2518 Size size=DefaultSize, long style=SL_HORIZONTAL,
2519 Validator validator=DefaultValidator,
2520 String name=SliderNameStr) -> Slider
2522 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2523 _controls_
.Slider_swiginit(self
,_controls_
.new_Slider(*args
, **kwargs
))
2524 self
._setOORInfo
(self
)
2526 def Create(*args
, **kwargs
):
2528 Create(self, Window parent, int id=-1, int value=0, int minValue=0,
2529 int maxValue=100, Point pos=DefaultPosition,
2530 Size size=DefaultSize, long style=SL_HORIZONTAL,
2531 Validator validator=DefaultValidator,
2532 String name=SliderNameStr) -> bool
2534 return _controls_
.Slider_Create(*args
, **kwargs
)
2536 def GetValue(*args
, **kwargs
):
2537 """GetValue(self) -> int"""
2538 return _controls_
.Slider_GetValue(*args
, **kwargs
)
2540 def SetValue(*args
, **kwargs
):
2541 """SetValue(self, int value)"""
2542 return _controls_
.Slider_SetValue(*args
, **kwargs
)
2544 def SetRange(*args
, **kwargs
):
2545 """SetRange(self, int minValue, int maxValue)"""
2546 return _controls_
.Slider_SetRange(*args
, **kwargs
)
2548 def GetMin(*args
, **kwargs
):
2549 """GetMin(self) -> int"""
2550 return _controls_
.Slider_GetMin(*args
, **kwargs
)
2552 def GetMax(*args
, **kwargs
):
2553 """GetMax(self) -> int"""
2554 return _controls_
.Slider_GetMax(*args
, **kwargs
)
2556 def SetMin(*args
, **kwargs
):
2557 """SetMin(self, int minValue)"""
2558 return _controls_
.Slider_SetMin(*args
, **kwargs
)
2560 def SetMax(*args
, **kwargs
):
2561 """SetMax(self, int maxValue)"""
2562 return _controls_
.Slider_SetMax(*args
, **kwargs
)
2564 def SetLineSize(*args
, **kwargs
):
2565 """SetLineSize(self, int lineSize)"""
2566 return _controls_
.Slider_SetLineSize(*args
, **kwargs
)
2568 def SetPageSize(*args
, **kwargs
):
2569 """SetPageSize(self, int pageSize)"""
2570 return _controls_
.Slider_SetPageSize(*args
, **kwargs
)
2572 def GetLineSize(*args
, **kwargs
):
2573 """GetLineSize(self) -> int"""
2574 return _controls_
.Slider_GetLineSize(*args
, **kwargs
)
2576 def GetPageSize(*args
, **kwargs
):
2577 """GetPageSize(self) -> int"""
2578 return _controls_
.Slider_GetPageSize(*args
, **kwargs
)
2580 def SetThumbLength(*args
, **kwargs
):
2581 """SetThumbLength(self, int lenPixels)"""
2582 return _controls_
.Slider_SetThumbLength(*args
, **kwargs
)
2584 def GetThumbLength(*args
, **kwargs
):
2585 """GetThumbLength(self) -> int"""
2586 return _controls_
.Slider_GetThumbLength(*args
, **kwargs
)
2588 def SetTickFreq(*args
, **kwargs
):
2589 """SetTickFreq(self, int n, int pos=1)"""
2590 return _controls_
.Slider_SetTickFreq(*args
, **kwargs
)
2592 def GetTickFreq(*args
, **kwargs
):
2593 """GetTickFreq(self) -> int"""
2594 return _controls_
.Slider_GetTickFreq(*args
, **kwargs
)
2596 def ClearTicks(*args
, **kwargs
):
2597 """ClearTicks(self)"""
2598 return _controls_
.Slider_ClearTicks(*args
, **kwargs
)
2600 def SetTick(*args
, **kwargs
):
2601 """SetTick(self, int tickPos)"""
2602 return _controls_
.Slider_SetTick(*args
, **kwargs
)
2604 def ClearSel(*args
, **kwargs
):
2605 """ClearSel(self)"""
2606 return _controls_
.Slider_ClearSel(*args
, **kwargs
)
2608 def GetSelEnd(*args
, **kwargs
):
2609 """GetSelEnd(self) -> int"""
2610 return _controls_
.Slider_GetSelEnd(*args
, **kwargs
)
2612 def GetSelStart(*args
, **kwargs
):
2613 """GetSelStart(self) -> int"""
2614 return _controls_
.Slider_GetSelStart(*args
, **kwargs
)
2616 def SetSelection(*args
, **kwargs
):
2617 """SetSelection(self, int min, int max)"""
2618 return _controls_
.Slider_SetSelection(*args
, **kwargs
)
2620 def GetClassDefaultAttributes(*args
, **kwargs
):
2622 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2624 Get the default attributes for this class. This is useful if you want
2625 to use the same font or colour in your own control as in a standard
2626 control -- which is a much better idea than hard coding specific
2627 colours or fonts which might look completely out of place on the
2628 user's system, especially if it uses themes.
2630 The variant parameter is only relevant under Mac currently and is
2631 ignore under other platforms. Under Mac, it will change the size of
2632 the returned font. See `wx.Window.SetWindowVariant` for more about
2635 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2637 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2638 _controls_
.Slider_swigregister(Slider
)
2639 SliderNameStr
= cvar
.SliderNameStr
2641 def PreSlider(*args
, **kwargs
):
2642 """PreSlider() -> Slider"""
2643 val
= _controls_
.new_PreSlider(*args
, **kwargs
)
2646 def Slider_GetClassDefaultAttributes(*args
, **kwargs
):
2648 Slider_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2650 Get the default attributes for this class. This is useful if you want
2651 to use the same font or colour in your own control as in a standard
2652 control -- which is a much better idea than hard coding specific
2653 colours or fonts which might look completely out of place on the
2654 user's system, especially if it uses themes.
2656 The variant parameter is only relevant under Mac currently and is
2657 ignore under other platforms. Under Mac, it will change the size of
2658 the returned font. See `wx.Window.SetWindowVariant` for more about
2661 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2663 #---------------------------------------------------------------------------
2665 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
= _controls_
.wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
2666 EVT_TOGGLEBUTTON
= wx
.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
, 1)
2668 class ToggleButton(_core
.Control
):
2669 """Proxy of C++ ToggleButton class"""
2670 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2671 __repr__
= _swig_repr
2672 def __init__(self
, *args
, **kwargs
):
2674 __init__(self, Window parent, int id=-1, String label=EmptyString,
2675 Point pos=DefaultPosition, Size size=DefaultSize,
2676 long style=0, Validator validator=DefaultValidator,
2677 String name=ToggleButtonNameStr) -> ToggleButton
2679 _controls_
.ToggleButton_swiginit(self
,_controls_
.new_ToggleButton(*args
, **kwargs
))
2680 self
._setOORInfo
(self
)
2682 def Create(*args
, **kwargs
):
2684 Create(self, Window parent, int id=-1, String label=EmptyString,
2685 Point pos=DefaultPosition, Size size=DefaultSize,
2686 long style=0, Validator validator=DefaultValidator,
2687 String name=ToggleButtonNameStr) -> bool
2689 return _controls_
.ToggleButton_Create(*args
, **kwargs
)
2691 def SetValue(*args
, **kwargs
):
2692 """SetValue(self, bool value)"""
2693 return _controls_
.ToggleButton_SetValue(*args
, **kwargs
)
2695 def GetValue(*args
, **kwargs
):
2696 """GetValue(self) -> bool"""
2697 return _controls_
.ToggleButton_GetValue(*args
, **kwargs
)
2699 def GetClassDefaultAttributes(*args
, **kwargs
):
2701 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2703 Get the default attributes for this class. This is useful if you want
2704 to use the same font or colour in your own control as in a standard
2705 control -- which is a much better idea than hard coding specific
2706 colours or fonts which might look completely out of place on the
2707 user's system, especially if it uses themes.
2709 The variant parameter is only relevant under Mac currently and is
2710 ignore under other platforms. Under Mac, it will change the size of
2711 the returned font. See `wx.Window.SetWindowVariant` for more about
2714 return _controls_
.ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
)
2716 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2717 _controls_
.ToggleButton_swigregister(ToggleButton
)
2718 ToggleButtonNameStr
= cvar
.ToggleButtonNameStr
2720 def PreToggleButton(*args
, **kwargs
):
2721 """PreToggleButton() -> ToggleButton"""
2722 val
= _controls_
.new_PreToggleButton(*args
, **kwargs
)
2725 def ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
):
2727 ToggleButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2729 Get the default attributes for this class. This is useful if you want
2730 to use the same font or colour in your own control as in a standard
2731 control -- which is a much better idea than hard coding specific
2732 colours or fonts which might look completely out of place on the
2733 user's system, especially if it uses themes.
2735 The variant parameter is only relevant under Mac currently and is
2736 ignore under other platforms. Under Mac, it will change the size of
2737 the returned font. See `wx.Window.SetWindowVariant` for more about
2740 return _controls_
.ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
)
2742 #---------------------------------------------------------------------------
2744 BK_DEFAULT
= _controls_
.BK_DEFAULT
2745 BK_TOP
= _controls_
.BK_TOP
2746 BK_BOTTOM
= _controls_
.BK_BOTTOM
2747 BK_LEFT
= _controls_
.BK_LEFT
2748 BK_RIGHT
= _controls_
.BK_RIGHT
2749 BK_ALIGN_MASK
= _controls_
.BK_ALIGN_MASK
2750 BK_BUTTONBAR
= _controls_
.BK_BUTTONBAR
2751 class BookCtrlBase(_core
.Control
):
2752 """Proxy of C++ BookCtrlBase class"""
2753 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2754 def __init__(self
): raise AttributeError, "No constructor defined"
2755 __repr__
= _swig_repr
2756 def GetPageCount(*args
, **kwargs
):
2757 """GetPageCount(self) -> size_t"""
2758 return _controls_
.BookCtrlBase_GetPageCount(*args
, **kwargs
)
2760 def GetPage(*args
, **kwargs
):
2761 """GetPage(self, size_t n) -> Window"""
2762 return _controls_
.BookCtrlBase_GetPage(*args
, **kwargs
)
2764 def GetCurrentPage(*args
, **kwargs
):
2765 """GetCurrentPage(self) -> Window"""
2766 return _controls_
.BookCtrlBase_GetCurrentPage(*args
, **kwargs
)
2768 def GetSelection(*args
, **kwargs
):
2769 """GetSelection(self) -> int"""
2770 return _controls_
.BookCtrlBase_GetSelection(*args
, **kwargs
)
2772 def SetPageText(*args
, **kwargs
):
2773 """SetPageText(self, size_t n, String strText) -> bool"""
2774 return _controls_
.BookCtrlBase_SetPageText(*args
, **kwargs
)
2776 def GetPageText(*args
, **kwargs
):
2777 """GetPageText(self, size_t n) -> String"""
2778 return _controls_
.BookCtrlBase_GetPageText(*args
, **kwargs
)
2780 def SetImageList(*args
, **kwargs
):
2781 """SetImageList(self, ImageList imageList)"""
2782 return _controls_
.BookCtrlBase_SetImageList(*args
, **kwargs
)
2784 def AssignImageList(*args
, **kwargs
):
2785 """AssignImageList(self, ImageList imageList)"""
2786 return _controls_
.BookCtrlBase_AssignImageList(*args
, **kwargs
)
2788 def GetImageList(*args
, **kwargs
):
2789 """GetImageList(self) -> ImageList"""
2790 return _controls_
.BookCtrlBase_GetImageList(*args
, **kwargs
)
2792 def GetPageImage(*args
, **kwargs
):
2793 """GetPageImage(self, size_t n) -> int"""
2794 return _controls_
.BookCtrlBase_GetPageImage(*args
, **kwargs
)
2796 def SetPageImage(*args
, **kwargs
):
2797 """SetPageImage(self, size_t n, int imageId) -> bool"""
2798 return _controls_
.BookCtrlBase_SetPageImage(*args
, **kwargs
)
2800 def SetPageSize(*args
, **kwargs
):
2801 """SetPageSize(self, Size size)"""
2802 return _controls_
.BookCtrlBase_SetPageSize(*args
, **kwargs
)
2804 def CalcSizeFromPage(*args
, **kwargs
):
2805 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2806 return _controls_
.BookCtrlBase_CalcSizeFromPage(*args
, **kwargs
)
2808 def GetInternalBorder(*args
, **kwargs
):
2809 """GetInternalBorder(self) -> unsigned int"""
2810 return _controls_
.BookCtrlBase_GetInternalBorder(*args
, **kwargs
)
2812 def SetInternalBorder(*args
, **kwargs
):
2813 """SetInternalBorder(self, unsigned int internalBorder)"""
2814 return _controls_
.BookCtrlBase_SetInternalBorder(*args
, **kwargs
)
2816 def IsVertical(*args
, **kwargs
):
2817 """IsVertical(self) -> bool"""
2818 return _controls_
.BookCtrlBase_IsVertical(*args
, **kwargs
)
2820 def SetControlMargin(*args
, **kwargs
):
2821 """SetControlMargin(self, int margin)"""
2822 return _controls_
.BookCtrlBase_SetControlMargin(*args
, **kwargs
)
2824 def GetControlMargin(*args
, **kwargs
):
2825 """GetControlMargin(self) -> int"""
2826 return _controls_
.BookCtrlBase_GetControlMargin(*args
, **kwargs
)
2828 def SetFitToCurrentPage(*args
, **kwargs
):
2829 """SetFitToCurrentPage(self, bool fit)"""
2830 return _controls_
.BookCtrlBase_SetFitToCurrentPage(*args
, **kwargs
)
2832 def GetFitToCurrentPage(*args
, **kwargs
):
2833 """GetFitToCurrentPage(self) -> bool"""
2834 return _controls_
.BookCtrlBase_GetFitToCurrentPage(*args
, **kwargs
)
2836 def GetControlSizer(*args
, **kwargs
):
2837 """GetControlSizer(self) -> Sizer"""
2838 return _controls_
.BookCtrlBase_GetControlSizer(*args
, **kwargs
)
2840 def DeletePage(*args
, **kwargs
):
2841 """DeletePage(self, size_t n) -> bool"""
2842 return _controls_
.BookCtrlBase_DeletePage(*args
, **kwargs
)
2844 def RemovePage(*args
, **kwargs
):
2845 """RemovePage(self, size_t n) -> bool"""
2846 return _controls_
.BookCtrlBase_RemovePage(*args
, **kwargs
)
2848 def DeleteAllPages(*args
, **kwargs
):
2849 """DeleteAllPages(self) -> bool"""
2850 return _controls_
.BookCtrlBase_DeleteAllPages(*args
, **kwargs
)
2852 def AddPage(*args
, **kwargs
):
2853 """AddPage(self, Window page, String text, bool select=False, int imageId=-1) -> bool"""
2854 return _controls_
.BookCtrlBase_AddPage(*args
, **kwargs
)
2856 def InsertPage(*args
, **kwargs
):
2858 InsertPage(self, size_t n, Window page, String text, bool select=False,
2859 int imageId=-1) -> bool
2861 return _controls_
.BookCtrlBase_InsertPage(*args
, **kwargs
)
2863 def SetSelection(*args
, **kwargs
):
2864 """SetSelection(self, size_t n) -> int"""
2865 return _controls_
.BookCtrlBase_SetSelection(*args
, **kwargs
)
2867 def AdvanceSelection(*args
, **kwargs
):
2868 """AdvanceSelection(self, bool forward=True)"""
2869 return _controls_
.BookCtrlBase_AdvanceSelection(*args
, **kwargs
)
2871 def HitTest(*args
, **kwargs
):
2873 HitTest(Point pt) -> (tab, where)
2875 Returns the page/tab which is hit, and flags indicating where using
2876 wx.NB_HITTEST flags.
2878 return _controls_
.BookCtrlBase_HitTest(*args
, **kwargs
)
2880 def GetClassDefaultAttributes(*args
, **kwargs
):
2882 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2884 Get the default attributes for this class. This is useful if you want
2885 to use the same font or colour in your own control as in a standard
2886 control -- which is a much better idea than hard coding specific
2887 colours or fonts which might look completely out of place on the
2888 user's system, especially if it uses themes.
2890 The variant parameter is only relevant under Mac currently and is
2891 ignore under other platforms. Under Mac, it will change the size of
2892 the returned font. See `wx.Window.SetWindowVariant` for more about
2895 return _controls_
.BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
)
2897 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2898 _controls_
.BookCtrlBase_swigregister(BookCtrlBase
)
2899 NotebookNameStr
= cvar
.NotebookNameStr
2901 def BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
):
2903 BookCtrlBase_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2905 Get the default attributes for this class. This is useful if you want
2906 to use the same font or colour in your own control as in a standard
2907 control -- which is a much better idea than hard coding specific
2908 colours or fonts which might look completely out of place on the
2909 user's system, especially if it uses themes.
2911 The variant parameter is only relevant under Mac currently and is
2912 ignore under other platforms. Under Mac, it will change the size of
2913 the returned font. See `wx.Window.SetWindowVariant` for more about
2916 return _controls_
.BookCtrlBase_GetClassDefaultAttributes(*args
, **kwargs
)
2918 class BookCtrlBaseEvent(_core
.NotifyEvent
):
2919 """Proxy of C++ BookCtrlBaseEvent class"""
2920 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2921 __repr__
= _swig_repr
2922 def __init__(self
, *args
, **kwargs
):
2924 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2925 int nOldSel=-1) -> BookCtrlBaseEvent
2927 _controls_
.BookCtrlBaseEvent_swiginit(self
,_controls_
.new_BookCtrlBaseEvent(*args
, **kwargs
))
2928 def GetSelection(*args
, **kwargs
):
2930 GetSelection(self) -> int
2932 Returns item index for a listbox or choice selection event (not valid
2935 return _controls_
.BookCtrlBaseEvent_GetSelection(*args
, **kwargs
)
2937 def SetSelection(*args
, **kwargs
):
2938 """SetSelection(self, int nSel)"""
2939 return _controls_
.BookCtrlBaseEvent_SetSelection(*args
, **kwargs
)
2941 def GetOldSelection(*args
, **kwargs
):
2942 """GetOldSelection(self) -> int"""
2943 return _controls_
.BookCtrlBaseEvent_GetOldSelection(*args
, **kwargs
)
2945 def SetOldSelection(*args
, **kwargs
):
2946 """SetOldSelection(self, int nOldSel)"""
2947 return _controls_
.BookCtrlBaseEvent_SetOldSelection(*args
, **kwargs
)
2949 _controls_
.BookCtrlBaseEvent_swigregister(BookCtrlBaseEvent
)
2951 #---------------------------------------------------------------------------
2953 NB_FIXEDWIDTH
= _controls_
.NB_FIXEDWIDTH
2954 NB_TOP
= _controls_
.NB_TOP
2955 NB_LEFT
= _controls_
.NB_LEFT
2956 NB_RIGHT
= _controls_
.NB_RIGHT
2957 NB_BOTTOM
= _controls_
.NB_BOTTOM
2958 NB_MULTILINE
= _controls_
.NB_MULTILINE
2959 NB_NOPAGETHEME
= _controls_
.NB_NOPAGETHEME
2960 NB_HITTEST_NOWHERE
= _controls_
.NB_HITTEST_NOWHERE
2961 NB_HITTEST_ONICON
= _controls_
.NB_HITTEST_ONICON
2962 NB_HITTEST_ONLABEL
= _controls_
.NB_HITTEST_ONLABEL
2963 NB_HITTEST_ONITEM
= _controls_
.NB_HITTEST_ONITEM
2964 NB_HITTEST_ONPAGE
= _controls_
.NB_HITTEST_ONPAGE
2965 class Notebook(BookCtrlBase
):
2966 """Proxy of C++ Notebook class"""
2967 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2968 __repr__
= _swig_repr
2969 def __init__(self
, *args
, **kwargs
):
2971 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2972 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> Notebook
2974 _controls_
.Notebook_swiginit(self
,_controls_
.new_Notebook(*args
, **kwargs
))
2975 self
._setOORInfo
(self
)
2977 def Create(*args
, **kwargs
):
2979 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2980 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> bool
2982 return _controls_
.Notebook_Create(*args
, **kwargs
)
2984 def GetRowCount(*args
, **kwargs
):
2985 """GetRowCount(self) -> int"""
2986 return _controls_
.Notebook_GetRowCount(*args
, **kwargs
)
2988 def SetPadding(*args
, **kwargs
):
2989 """SetPadding(self, Size padding)"""
2990 return _controls_
.Notebook_SetPadding(*args
, **kwargs
)
2992 def SetTabSize(*args
, **kwargs
):
2993 """SetTabSize(self, Size sz)"""
2994 return _controls_
.Notebook_SetTabSize(*args
, **kwargs
)
2996 def GetThemeBackgroundColour(*args
, **kwargs
):
2997 """GetThemeBackgroundColour(self) -> Colour"""
2998 return _controls_
.Notebook_GetThemeBackgroundColour(*args
, **kwargs
)
3000 def GetClassDefaultAttributes(*args
, **kwargs
):
3002 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3004 Get the default attributes for this class. This is useful if you want
3005 to use the same font or colour in your own control as in a standard
3006 control -- which is a much better idea than hard coding specific
3007 colours or fonts which might look completely out of place on the
3008 user's system, especially if it uses themes.
3010 The variant parameter is only relevant under Mac currently and is
3011 ignore under other platforms. Under Mac, it will change the size of
3012 the returned font. See `wx.Window.SetWindowVariant` for more about
3015 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
3017 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3018 _controls_
.Notebook_swigregister(Notebook
)
3020 def PreNotebook(*args
, **kwargs
):
3021 """PreNotebook() -> Notebook"""
3022 val
= _controls_
.new_PreNotebook(*args
, **kwargs
)
3025 def Notebook_GetClassDefaultAttributes(*args
, **kwargs
):
3027 Notebook_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3029 Get the default attributes for this class. This is useful if you want
3030 to use the same font or colour in your own control as in a standard
3031 control -- which is a much better idea than hard coding specific
3032 colours or fonts which might look completely out of place on the
3033 user's system, especially if it uses themes.
3035 The variant parameter is only relevant under Mac currently and is
3036 ignore under other platforms. Under Mac, it will change the size of
3037 the returned font. See `wx.Window.SetWindowVariant` for more about
3040 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
3042 class NotebookEvent(BookCtrlBaseEvent
):
3043 """Proxy of C++ NotebookEvent class"""
3044 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3045 __repr__
= _swig_repr
3046 def __init__(self
, *args
, **kwargs
):
3048 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3049 int nOldSel=-1) -> NotebookEvent
3051 _controls_
.NotebookEvent_swiginit(self
,_controls_
.new_NotebookEvent(*args
, **kwargs
))
3052 _controls_
.NotebookEvent_swigregister(NotebookEvent
)
3054 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
3055 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
3057 EVT_NOTEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, 1 )
3058 EVT_NOTEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, 1 )
3060 #----------------------------------------------------------------------------
3062 class NotebookPage(wx
.Panel
):
3064 There is an old (and apparently unsolvable) bug when placing a
3065 window with a nonstandard background colour in a wx.Notebook on
3066 wxGTK1, as the notbooks's background colour would always be used
3067 when the window is refreshed. The solution is to place a panel in
3068 the notbook and the coloured window on the panel, sized to cover
3069 the panel. This simple class does that for you, just put an
3070 instance of this in the notebook and make your regular window a
3071 child of this one and it will handle the resize for you.
3073 def __init__(self
, parent
, id=-1,
3074 pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
,
3075 style
=wx
.TAB_TRAVERSAL
, name
="panel"):
3076 wx
.Panel
.__init
__(self
, parent
, id, pos
, size
, style
, name
)
3078 self
.Bind(wx
.EVT_SIZE
, self
.OnSize
)
3080 def OnSize(self
, evt
):
3081 if self
.child
is None:
3082 children
= self
.GetChildren()
3084 self
.child
= children
[0]
3086 self
.child
.SetPosition((0,0))
3087 self
.child
.SetSize(self
.GetSize())
3090 #---------------------------------------------------------------------------
3092 LB_DEFAULT
= _controls_
.LB_DEFAULT
3093 LB_TOP
= _controls_
.LB_TOP
3094 LB_BOTTOM
= _controls_
.LB_BOTTOM
3095 LB_LEFT
= _controls_
.LB_LEFT
3096 LB_RIGHT
= _controls_
.LB_RIGHT
3097 LB_ALIGN_MASK
= _controls_
.LB_ALIGN_MASK
3098 class Listbook(BookCtrlBase
):
3099 """Proxy of C++ Listbook class"""
3100 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3101 __repr__
= _swig_repr
3102 def __init__(self
, *args
, **kwargs
):
3104 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3105 Size size=DefaultSize, long style=0, String name=EmptyString) -> Listbook
3107 _controls_
.Listbook_swiginit(self
,_controls_
.new_Listbook(*args
, **kwargs
))
3108 self
._setOORInfo
(self
)
3110 def Create(*args
, **kwargs
):
3112 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3113 Size size=DefaultSize, long style=0, String name=EmptyString) -> bool
3115 return _controls_
.Listbook_Create(*args
, **kwargs
)
3117 def GetListView(*args
, **kwargs
):
3118 """GetListView(self) -> ListView"""
3119 return _controls_
.Listbook_GetListView(*args
, **kwargs
)
3121 _controls_
.Listbook_swigregister(Listbook
)
3123 def PreListbook(*args
, **kwargs
):
3124 """PreListbook() -> Listbook"""
3125 val
= _controls_
.new_PreListbook(*args
, **kwargs
)
3128 class ListbookEvent(BookCtrlBaseEvent
):
3129 """Proxy of C++ ListbookEvent class"""
3130 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3131 __repr__
= _swig_repr
3132 def __init__(self
, *args
, **kwargs
):
3134 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3135 int nOldSel=-1) -> ListbookEvent
3137 _controls_
.ListbookEvent_swiginit(self
,_controls_
.new_ListbookEvent(*args
, **kwargs
))
3138 _controls_
.ListbookEvent_swigregister(ListbookEvent
)
3140 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
3141 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
3142 EVT_LISTBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
, 1 )
3143 EVT_LISTBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
, 1 )
3145 CHB_DEFAULT
= _controls_
.CHB_DEFAULT
3146 CHB_TOP
= _controls_
.CHB_TOP
3147 CHB_BOTTOM
= _controls_
.CHB_BOTTOM
3148 CHB_LEFT
= _controls_
.CHB_LEFT
3149 CHB_RIGHT
= _controls_
.CHB_RIGHT
3150 CHB_ALIGN_MASK
= _controls_
.CHB_ALIGN_MASK
3151 class Choicebook(BookCtrlBase
):
3152 """Proxy of C++ Choicebook class"""
3153 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3154 __repr__
= _swig_repr
3155 def __init__(self
, *args
, **kwargs
):
3157 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3158 long style=0, String name=EmptyString) -> Choicebook
3160 _controls_
.Choicebook_swiginit(self
,_controls_
.new_Choicebook(*args
, **kwargs
))
3161 self
._setOORInfo
(self
)
3163 def Create(*args
, **kwargs
):
3165 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3166 long style=0, String name=EmptyString) -> bool
3168 return _controls_
.Choicebook_Create(*args
, **kwargs
)
3170 def GetChoiceCtrl(*args
, **kwargs
):
3171 """GetChoiceCtrl(self) -> Choice"""
3172 return _controls_
.Choicebook_GetChoiceCtrl(*args
, **kwargs
)
3174 _controls_
.Choicebook_swigregister(Choicebook
)
3176 def PreChoicebook(*args
, **kwargs
):
3177 """PreChoicebook() -> Choicebook"""
3178 val
= _controls_
.new_PreChoicebook(*args
, **kwargs
)
3181 class ChoicebookEvent(BookCtrlBaseEvent
):
3182 """Proxy of C++ ChoicebookEvent class"""
3183 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3184 __repr__
= _swig_repr
3185 def __init__(self
, *args
, **kwargs
):
3187 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3188 int nOldSel=-1) -> ChoicebookEvent
3190 _controls_
.ChoicebookEvent_swiginit(self
,_controls_
.new_ChoicebookEvent(*args
, **kwargs
))
3191 _controls_
.ChoicebookEvent_swigregister(ChoicebookEvent
)
3193 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
3194 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
3195 EVT_CHOICEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
, 1 )
3196 EVT_CHOICEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
, 1 )
3198 #---------------------------------------------------------------------------
3200 class Treebook(BookCtrlBase
):
3201 """Proxy of C++ Treebook class"""
3202 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3203 __repr__
= _swig_repr
3204 def __init__(self
, *args
, **kwargs
):
3206 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3207 long style=BK_DEFAULT,
3208 String name=EmptyString) -> Treebook
3210 _controls_
.Treebook_swiginit(self
,_controls_
.new_Treebook(*args
, **kwargs
))
3211 self
._setOORInfo
(self
)
3213 def Create(*args
, **kwargs
):
3215 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3216 long style=BK_DEFAULT,
3217 String name=EmptyString) -> bool
3219 return _controls_
.Treebook_Create(*args
, **kwargs
)
3221 def InsertSubPage(*args
, **kwargs
):
3223 InsertSubPage(self, size_t pos, Window page, String text, bool select=False,
3224 int imageId=NOT_FOUND) -> bool
3226 return _controls_
.Treebook_InsertSubPage(*args
, **kwargs
)
3228 def AddSubPage(*args
, **kwargs
):
3229 """AddSubPage(self, Window page, String text, bool select=False, int imageId=NOT_FOUND) -> bool"""
3230 return _controls_
.Treebook_AddSubPage(*args
, **kwargs
)
3232 def IsNodeExpanded(*args
, **kwargs
):
3233 """IsNodeExpanded(self, size_t pos) -> bool"""
3234 return _controls_
.Treebook_IsNodeExpanded(*args
, **kwargs
)
3236 def ExpandNode(*args
, **kwargs
):
3237 """ExpandNode(self, size_t pos, bool expand=True) -> bool"""
3238 return _controls_
.Treebook_ExpandNode(*args
, **kwargs
)
3240 def CollapseNode(*args
, **kwargs
):
3241 """CollapseNode(self, size_t pos) -> bool"""
3242 return _controls_
.Treebook_CollapseNode(*args
, **kwargs
)
3244 def GetPageParent(*args
, **kwargs
):
3245 """GetPageParent(self, size_t pos) -> int"""
3246 return _controls_
.Treebook_GetPageParent(*args
, **kwargs
)
3248 def GetTreeCtrl(*args
, **kwargs
):
3249 """GetTreeCtrl(self) -> wxTreeCtrl"""
3250 return _controls_
.Treebook_GetTreeCtrl(*args
, **kwargs
)
3252 _controls_
.Treebook_swigregister(Treebook
)
3254 def PreTreebook(*args
, **kwargs
):
3255 """PreTreebook() -> Treebook"""
3256 val
= _controls_
.new_PreTreebook(*args
, **kwargs
)
3259 class TreebookEvent(BookCtrlBaseEvent
):
3260 """Proxy of C++ TreebookEvent class"""
3261 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3262 __repr__
= _swig_repr
3263 def __init__(self
, *args
, **kwargs
):
3265 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=NOT_FOUND,
3266 int nOldSel=NOT_FOUND) -> TreebookEvent
3268 _controls_
.TreebookEvent_swiginit(self
,_controls_
.new_TreebookEvent(*args
, **kwargs
))
3269 _controls_
.TreebookEvent_swigregister(TreebookEvent
)
3271 wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
3272 wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
3273 wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
3274 wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
= _controls_
.wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
3275 EVT_TREEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED
, 1 )
3276 EVT_TREEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING
, 1)
3277 EVT_TREEBOOK_NODE_COLLAPSED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED
, 1 )
3278 EVT_TREEBOOK_NODE_EXPANDED
= wx
.PyEventBinder( wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED
, 1 )
3280 #---------------------------------------------------------------------------
3282 class Toolbook(BookCtrlBase
):
3283 """Proxy of C++ Toolbook class"""
3284 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3285 __repr__
= _swig_repr
3286 def __init__(self
, *args
, **kwargs
):
3288 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3289 long style=BK_DEFAULT,
3290 String name=EmptyString) -> Toolbook
3292 _controls_
.Toolbook_swiginit(self
,_controls_
.new_Toolbook(*args
, **kwargs
))
3293 self
._setOORInfo
(self
)
3295 def Create(*args
, **kwargs
):
3297 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3298 long style=0, String name=wxEmptyString) -> bool
3300 return _controls_
.Toolbook_Create(*args
, **kwargs
)
3302 def GetToolBar(*args
, **kwargs
):
3303 """GetToolBar(self) -> ToolBarBase"""
3304 return _controls_
.Toolbook_GetToolBar(*args
, **kwargs
)
3306 def Realize(*args
, **kwargs
):
3308 return _controls_
.Toolbook_Realize(*args
, **kwargs
)
3310 _controls_
.Toolbook_swigregister(Toolbook
)
3312 def PreToolbook(*args
, **kwargs
):
3313 """PreToolbook() -> Toolbook"""
3314 val
= _controls_
.new_PreToolbook(*args
, **kwargs
)
3317 class ToolbookEvent(BookCtrlBaseEvent
):
3318 """Proxy of C++ ToolbookEvent class"""
3319 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3320 __repr__
= _swig_repr
3321 def __init__(self
, *args
, **kwargs
):
3323 __init__(self, EventType commandType=wxEVT_NULL, int id=0, int nSel=NOT_FOUND,
3324 int nOldSel=NOT_FOUND) -> ToolbookEvent
3326 _controls_
.ToolbookEvent_swiginit(self
,_controls_
.new_ToolbookEvent(*args
, **kwargs
))
3327 _controls_
.ToolbookEvent_swigregister(ToolbookEvent
)
3329 wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
3330 wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
3331 EVT_TOOLBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED
, 1)
3332 EVT_TOOLBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING
, 1)
3334 #---------------------------------------------------------------------------
3336 TOOL_STYLE_BUTTON
= _controls_
.TOOL_STYLE_BUTTON
3337 TOOL_STYLE_SEPARATOR
= _controls_
.TOOL_STYLE_SEPARATOR
3338 TOOL_STYLE_CONTROL
= _controls_
.TOOL_STYLE_CONTROL
3339 TB_HORIZONTAL
= _controls_
.TB_HORIZONTAL
3340 TB_VERTICAL
= _controls_
.TB_VERTICAL
3341 TB_3DBUTTONS
= _controls_
.TB_3DBUTTONS
3342 TB_FLAT
= _controls_
.TB_FLAT
3343 TB_DOCKABLE
= _controls_
.TB_DOCKABLE
3344 TB_NOICONS
= _controls_
.TB_NOICONS
3345 TB_TEXT
= _controls_
.TB_TEXT
3346 TB_NODIVIDER
= _controls_
.TB_NODIVIDER
3347 TB_NOALIGN
= _controls_
.TB_NOALIGN
3348 TB_HORZ_LAYOUT
= _controls_
.TB_HORZ_LAYOUT
3349 TB_HORZ_TEXT
= _controls_
.TB_HORZ_TEXT
3350 TB_NO_TOOLTIPS
= _controls_
.TB_NO_TOOLTIPS
3351 class ToolBarToolBase(_core
.Object
):
3352 """Proxy of C++ ToolBarToolBase class"""
3353 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3354 def __init__(self
): raise AttributeError, "No constructor defined"
3355 __repr__
= _swig_repr
3356 def GetId(*args
, **kwargs
):
3357 """GetId(self) -> int"""
3358 return _controls_
.ToolBarToolBase_GetId(*args
, **kwargs
)
3360 def GetControl(*args
, **kwargs
):
3361 """GetControl(self) -> Control"""
3362 return _controls_
.ToolBarToolBase_GetControl(*args
, **kwargs
)
3364 def GetToolBar(*args
, **kwargs
):
3365 """GetToolBar(self) -> ToolBarBase"""
3366 return _controls_
.ToolBarToolBase_GetToolBar(*args
, **kwargs
)
3368 def IsButton(*args
, **kwargs
):
3369 """IsButton(self) -> int"""
3370 return _controls_
.ToolBarToolBase_IsButton(*args
, **kwargs
)
3372 def IsControl(*args
, **kwargs
):
3373 """IsControl(self) -> int"""
3374 return _controls_
.ToolBarToolBase_IsControl(*args
, **kwargs
)
3376 def IsSeparator(*args
, **kwargs
):
3377 """IsSeparator(self) -> int"""
3378 return _controls_
.ToolBarToolBase_IsSeparator(*args
, **kwargs
)
3380 def GetStyle(*args
, **kwargs
):
3381 """GetStyle(self) -> int"""
3382 return _controls_
.ToolBarToolBase_GetStyle(*args
, **kwargs
)
3384 def GetKind(*args
, **kwargs
):
3385 """GetKind(self) -> int"""
3386 return _controls_
.ToolBarToolBase_GetKind(*args
, **kwargs
)
3388 def IsEnabled(*args
, **kwargs
):
3389 """IsEnabled(self) -> bool"""
3390 return _controls_
.ToolBarToolBase_IsEnabled(*args
, **kwargs
)
3392 def IsToggled(*args
, **kwargs
):
3393 """IsToggled(self) -> bool"""
3394 return _controls_
.ToolBarToolBase_IsToggled(*args
, **kwargs
)
3396 def CanBeToggled(*args
, **kwargs
):
3397 """CanBeToggled(self) -> bool"""
3398 return _controls_
.ToolBarToolBase_CanBeToggled(*args
, **kwargs
)
3400 def GetNormalBitmap(*args
, **kwargs
):
3401 """GetNormalBitmap(self) -> Bitmap"""
3402 return _controls_
.ToolBarToolBase_GetNormalBitmap(*args
, **kwargs
)
3404 def GetDisabledBitmap(*args
, **kwargs
):
3405 """GetDisabledBitmap(self) -> Bitmap"""
3406 return _controls_
.ToolBarToolBase_GetDisabledBitmap(*args
, **kwargs
)
3408 def GetBitmap(*args
, **kwargs
):
3409 """GetBitmap(self) -> Bitmap"""
3410 return _controls_
.ToolBarToolBase_GetBitmap(*args
, **kwargs
)
3412 def GetLabel(*args
, **kwargs
):
3413 """GetLabel(self) -> String"""
3414 return _controls_
.ToolBarToolBase_GetLabel(*args
, **kwargs
)
3416 def GetShortHelp(*args
, **kwargs
):
3417 """GetShortHelp(self) -> String"""
3418 return _controls_
.ToolBarToolBase_GetShortHelp(*args
, **kwargs
)
3420 def GetLongHelp(*args
, **kwargs
):
3421 """GetLongHelp(self) -> String"""
3422 return _controls_
.ToolBarToolBase_GetLongHelp(*args
, **kwargs
)
3424 def Enable(*args
, **kwargs
):
3425 """Enable(self, bool enable) -> bool"""
3426 return _controls_
.ToolBarToolBase_Enable(*args
, **kwargs
)
3428 def Toggle(*args
, **kwargs
):
3430 return _controls_
.ToolBarToolBase_Toggle(*args
, **kwargs
)
3432 def SetToggle(*args
, **kwargs
):
3433 """SetToggle(self, bool toggle) -> bool"""
3434 return _controls_
.ToolBarToolBase_SetToggle(*args
, **kwargs
)
3436 def SetShortHelp(*args
, **kwargs
):
3437 """SetShortHelp(self, String help) -> bool"""
3438 return _controls_
.ToolBarToolBase_SetShortHelp(*args
, **kwargs
)
3440 def SetLongHelp(*args
, **kwargs
):
3441 """SetLongHelp(self, String help) -> bool"""
3442 return _controls_
.ToolBarToolBase_SetLongHelp(*args
, **kwargs
)
3444 def SetNormalBitmap(*args
, **kwargs
):
3445 """SetNormalBitmap(self, Bitmap bmp)"""
3446 return _controls_
.ToolBarToolBase_SetNormalBitmap(*args
, **kwargs
)
3448 def SetDisabledBitmap(*args
, **kwargs
):
3449 """SetDisabledBitmap(self, Bitmap bmp)"""
3450 return _controls_
.ToolBarToolBase_SetDisabledBitmap(*args
, **kwargs
)
3452 def SetLabel(*args
, **kwargs
):
3453 """SetLabel(self, String label)"""
3454 return _controls_
.ToolBarToolBase_SetLabel(*args
, **kwargs
)
3456 def Detach(*args
, **kwargs
):
3458 return _controls_
.ToolBarToolBase_Detach(*args
, **kwargs
)
3460 def Attach(*args
, **kwargs
):
3461 """Attach(self, ToolBarBase tbar)"""
3462 return _controls_
.ToolBarToolBase_Attach(*args
, **kwargs
)
3464 def GetClientData(*args
, **kwargs
):
3465 """GetClientData(self) -> PyObject"""
3466 return _controls_
.ToolBarToolBase_GetClientData(*args
, **kwargs
)
3468 def SetClientData(*args
, **kwargs
):
3469 """SetClientData(self, PyObject clientData)"""
3470 return _controls_
.ToolBarToolBase_SetClientData(*args
, **kwargs
)
3472 GetBitmap1
= GetNormalBitmap
3473 GetBitmap2
= GetDisabledBitmap
3474 SetBitmap1
= SetNormalBitmap
3475 SetBitmap2
= SetDisabledBitmap
3477 _controls_
.ToolBarToolBase_swigregister(ToolBarToolBase
)
3479 class ToolBarBase(_core
.Control
):
3480 """Proxy of C++ ToolBarBase class"""
3481 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3482 def __init__(self
): raise AttributeError, "No constructor defined"
3483 __repr__
= _swig_repr
3484 def DoAddTool(*args
, **kwargs
):
3486 DoAddTool(self, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3487 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
3488 String longHelp=EmptyString,
3489 PyObject clientData=None) -> ToolBarToolBase
3491 return _controls_
.ToolBarBase_DoAddTool(*args
, **kwargs
)
3493 def DoInsertTool(*args
, **kwargs
):
3495 DoInsertTool(self, size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3496 int kind=ITEM_NORMAL,
3497 String shortHelp=EmptyString, String longHelp=EmptyString,
3498 PyObject clientData=None) -> ToolBarToolBase
3500 return _controls_
.ToolBarBase_DoInsertTool(*args
, **kwargs
)
3502 # These match the original Add methods for this class, kept for
3503 # backwards compatibility with versions < 2.3.3.
3506 def AddTool(self
, id, bitmap
,
3507 pushedBitmap
= wx
.NullBitmap
,
3510 shortHelpString
= '',
3511 longHelpString
= '') :
3512 '''Old style method to add a tool to the toolbar.'''
3513 kind
= wx
.ITEM_NORMAL
3514 if isToggle
: kind
= wx
.ITEM_CHECK
3515 return self
.DoAddTool(id, '', bitmap
, pushedBitmap
, kind
,
3516 shortHelpString
, longHelpString
, clientData
)
3518 def AddSimpleTool(self
, id, bitmap
,
3519 shortHelpString
= '',
3520 longHelpString
= '',
3522 '''Old style method to add a tool to the toolbar.'''
3523 kind
= wx
.ITEM_NORMAL
3524 if isToggle
: kind
= wx
.ITEM_CHECK
3525 return self
.DoAddTool(id, '', bitmap
, wx
.NullBitmap
, kind
,
3526 shortHelpString
, longHelpString
, None)
3528 def InsertTool(self
, pos
, id, bitmap
,
3529 pushedBitmap
= wx
.NullBitmap
,
3532 shortHelpString
= '',
3533 longHelpString
= ''):
3534 '''Old style method to insert a tool in the toolbar.'''
3535 kind
= wx
.ITEM_NORMAL
3536 if isToggle
: kind
= wx
.ITEM_CHECK
3537 return self
.DoInsertTool(pos
, id, '', bitmap
, pushedBitmap
, kind
,
3538 shortHelpString
, longHelpString
, clientData
)
3540 def InsertSimpleTool(self
, pos
, id, bitmap
,
3541 shortHelpString
= '',
3542 longHelpString
= '',
3544 '''Old style method to insert a tool in the toolbar.'''
3545 kind
= wx
.ITEM_NORMAL
3546 if isToggle
: kind
= wx
.ITEM_CHECK
3547 return self
.DoInsertTool(pos
, id, '', bitmap
, wx
.NullBitmap
, kind
,
3548 shortHelpString
, longHelpString
, None)
3551 # The following are the new toolbar Add methods starting with
3552 # 2.3.3. They are renamed to have 'Label' in the name so as to be
3553 # able to keep backwards compatibility with using the above
3554 # methods. Eventually these should migrate to be the methods used
3555 # primarily and lose the 'Label' in the name...
3557 def AddLabelTool(self
, id, label
, bitmap
,
3558 bmpDisabled
= wx
.NullBitmap
,
3559 kind
= wx
.ITEM_NORMAL
,
3560 shortHelp
= '', longHelp
= '',
3563 The full AddTool() function.
3565 If bmpDisabled is wx.NullBitmap, a shadowed version of the normal bitmap
3566 is created and used as the disabled image.
3568 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, kind
,
3569 shortHelp
, longHelp
, clientData
)
3572 def InsertLabelTool(self
, pos
, id, label
, bitmap
,
3573 bmpDisabled
= wx
.NullBitmap
,
3574 kind
= wx
.ITEM_NORMAL
,
3575 shortHelp
= '', longHelp
= '',
3578 Insert the new tool at the given position, if pos == GetToolsCount(), it
3579 is equivalent to AddTool()
3581 return self
.DoInsertTool(pos
, id, label
, bitmap
, bmpDisabled
, kind
,
3582 shortHelp
, longHelp
, clientData
)
3584 def AddCheckLabelTool(self
, id, label
, bitmap
,
3585 bmpDisabled
= wx
.NullBitmap
,
3586 shortHelp
= '', longHelp
= '',
3588 '''Add a check tool, i.e. a tool which can be toggled'''
3589 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3590 shortHelp
, longHelp
, clientData
)
3592 def AddRadioLabelTool(self
, id, label
, bitmap
,
3593 bmpDisabled
= wx
.NullBitmap
,
3594 shortHelp
= '', longHelp
= '',
3597 Add a radio tool, i.e. a tool which can be toggled and releases any
3598 other toggled radio tools in the same group when it happens
3600 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3601 shortHelp
, longHelp
, clientData
)
3604 # For consistency with the backwards compatible methods above, here are
3605 # some non-'Label' versions of the Check and Radio methods
3607 def AddCheckTool(self
, id, bitmap
,
3608 bmpDisabled
= wx
.NullBitmap
,
3609 shortHelp
= '', longHelp
= '',
3611 '''Add a check tool, i.e. a tool which can be toggled'''
3612 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3613 shortHelp
, longHelp
, clientData
)
3615 def AddRadioTool(self
, id, bitmap
,
3616 bmpDisabled
= wx
.NullBitmap
,
3617 shortHelp
= '', longHelp
= '',
3620 Add a radio tool, i.e. a tool which can be toggled and releases any
3621 other toggled radio tools in the same group when it happens
3623 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3624 shortHelp
, longHelp
, clientData
)
3626 def AddToolItem(*args
, **kwargs
):
3627 """AddToolItem(self, ToolBarToolBase tool) -> ToolBarToolBase"""
3628 return _controls_
.ToolBarBase_AddToolItem(*args
, **kwargs
)
3630 def InsertToolItem(*args
, **kwargs
):
3631 """InsertToolItem(self, size_t pos, ToolBarToolBase tool) -> ToolBarToolBase"""
3632 return _controls_
.ToolBarBase_InsertToolItem(*args
, **kwargs
)
3634 def AddControl(*args
, **kwargs
):
3635 """AddControl(self, Control control) -> ToolBarToolBase"""
3636 return _controls_
.ToolBarBase_AddControl(*args
, **kwargs
)
3638 def InsertControl(*args
, **kwargs
):
3639 """InsertControl(self, size_t pos, Control control) -> ToolBarToolBase"""
3640 return _controls_
.ToolBarBase_InsertControl(*args
, **kwargs
)
3642 def FindControl(*args
, **kwargs
):
3643 """FindControl(self, int id) -> Control"""
3644 return _controls_
.ToolBarBase_FindControl(*args
, **kwargs
)
3646 def AddSeparator(*args
, **kwargs
):
3647 """AddSeparator(self) -> ToolBarToolBase"""
3648 return _controls_
.ToolBarBase_AddSeparator(*args
, **kwargs
)
3650 def InsertSeparator(*args
, **kwargs
):
3651 """InsertSeparator(self, size_t pos) -> ToolBarToolBase"""
3652 return _controls_
.ToolBarBase_InsertSeparator(*args
, **kwargs
)
3654 def RemoveTool(*args
, **kwargs
):
3655 """RemoveTool(self, int id) -> ToolBarToolBase"""
3656 return _controls_
.ToolBarBase_RemoveTool(*args
, **kwargs
)
3658 def DeleteToolByPos(*args
, **kwargs
):
3659 """DeleteToolByPos(self, size_t pos) -> bool"""
3660 return _controls_
.ToolBarBase_DeleteToolByPos(*args
, **kwargs
)
3662 def DeleteTool(*args
, **kwargs
):
3663 """DeleteTool(self, int id) -> bool"""
3664 return _controls_
.ToolBarBase_DeleteTool(*args
, **kwargs
)
3666 def ClearTools(*args
, **kwargs
):
3667 """ClearTools(self)"""
3668 return _controls_
.ToolBarBase_ClearTools(*args
, **kwargs
)
3670 def Realize(*args
, **kwargs
):
3671 """Realize(self) -> bool"""
3672 return _controls_
.ToolBarBase_Realize(*args
, **kwargs
)
3674 def EnableTool(*args
, **kwargs
):
3675 """EnableTool(self, int id, bool enable)"""
3676 return _controls_
.ToolBarBase_EnableTool(*args
, **kwargs
)
3678 def ToggleTool(*args
, **kwargs
):
3679 """ToggleTool(self, int id, bool toggle)"""
3680 return _controls_
.ToolBarBase_ToggleTool(*args
, **kwargs
)
3682 def SetToggle(*args
, **kwargs
):
3683 """SetToggle(self, int id, bool toggle)"""
3684 return _controls_
.ToolBarBase_SetToggle(*args
, **kwargs
)
3686 def GetToolClientData(*args
, **kwargs
):
3687 """GetToolClientData(self, int id) -> PyObject"""
3688 return _controls_
.ToolBarBase_GetToolClientData(*args
, **kwargs
)
3690 def SetToolClientData(*args
, **kwargs
):
3691 """SetToolClientData(self, int id, PyObject clientData)"""
3692 return _controls_
.ToolBarBase_SetToolClientData(*args
, **kwargs
)
3694 def GetToolPos(*args
, **kwargs
):
3695 """GetToolPos(self, int id) -> int"""
3696 return _controls_
.ToolBarBase_GetToolPos(*args
, **kwargs
)
3698 def GetToolState(*args
, **kwargs
):
3699 """GetToolState(self, int id) -> bool"""
3700 return _controls_
.ToolBarBase_GetToolState(*args
, **kwargs
)
3702 def GetToolEnabled(*args
, **kwargs
):
3703 """GetToolEnabled(self, int id) -> bool"""
3704 return _controls_
.ToolBarBase_GetToolEnabled(*args
, **kwargs
)
3706 def SetToolShortHelp(*args
, **kwargs
):
3707 """SetToolShortHelp(self, int id, String helpString)"""
3708 return _controls_
.ToolBarBase_SetToolShortHelp(*args
, **kwargs
)
3710 def GetToolShortHelp(*args
, **kwargs
):
3711 """GetToolShortHelp(self, int id) -> String"""
3712 return _controls_
.ToolBarBase_GetToolShortHelp(*args
, **kwargs
)
3714 def SetToolLongHelp(*args
, **kwargs
):
3715 """SetToolLongHelp(self, int id, String helpString)"""
3716 return _controls_
.ToolBarBase_SetToolLongHelp(*args
, **kwargs
)
3718 def GetToolLongHelp(*args
, **kwargs
):
3719 """GetToolLongHelp(self, int id) -> String"""
3720 return _controls_
.ToolBarBase_GetToolLongHelp(*args
, **kwargs
)
3722 def SetMarginsXY(*args
, **kwargs
):
3723 """SetMarginsXY(self, int x, int y)"""
3724 return _controls_
.ToolBarBase_SetMarginsXY(*args
, **kwargs
)
3726 def SetMargins(*args
, **kwargs
):
3727 """SetMargins(self, Size size)"""
3728 return _controls_
.ToolBarBase_SetMargins(*args
, **kwargs
)
3730 def SetToolPacking(*args
, **kwargs
):
3731 """SetToolPacking(self, int packing)"""
3732 return _controls_
.ToolBarBase_SetToolPacking(*args
, **kwargs
)
3734 def SetToolSeparation(*args
, **kwargs
):
3735 """SetToolSeparation(self, int separation)"""
3736 return _controls_
.ToolBarBase_SetToolSeparation(*args
, **kwargs
)
3738 def GetToolMargins(*args
, **kwargs
):
3739 """GetToolMargins(self) -> Size"""
3740 return _controls_
.ToolBarBase_GetToolMargins(*args
, **kwargs
)
3742 def GetMargins(*args
, **kwargs
):
3743 """GetMargins(self) -> Size"""
3744 return _controls_
.ToolBarBase_GetMargins(*args
, **kwargs
)
3746 def GetToolPacking(*args
, **kwargs
):
3747 """GetToolPacking(self) -> int"""
3748 return _controls_
.ToolBarBase_GetToolPacking(*args
, **kwargs
)
3750 def GetToolSeparation(*args
, **kwargs
):
3751 """GetToolSeparation(self) -> int"""
3752 return _controls_
.ToolBarBase_GetToolSeparation(*args
, **kwargs
)
3754 def SetRows(*args
, **kwargs
):
3755 """SetRows(self, int nRows)"""
3756 return _controls_
.ToolBarBase_SetRows(*args
, **kwargs
)
3758 def SetMaxRowsCols(*args
, **kwargs
):
3759 """SetMaxRowsCols(self, int rows, int cols)"""
3760 return _controls_
.ToolBarBase_SetMaxRowsCols(*args
, **kwargs
)
3762 def GetMaxRows(*args
, **kwargs
):
3763 """GetMaxRows(self) -> int"""
3764 return _controls_
.ToolBarBase_GetMaxRows(*args
, **kwargs
)
3766 def GetMaxCols(*args
, **kwargs
):
3767 """GetMaxCols(self) -> int"""
3768 return _controls_
.ToolBarBase_GetMaxCols(*args
, **kwargs
)
3770 def SetToolBitmapSize(*args
, **kwargs
):
3771 """SetToolBitmapSize(self, Size size)"""
3772 return _controls_
.ToolBarBase_SetToolBitmapSize(*args
, **kwargs
)
3774 def GetToolBitmapSize(*args
, **kwargs
):
3775 """GetToolBitmapSize(self) -> Size"""
3776 return _controls_
.ToolBarBase_GetToolBitmapSize(*args
, **kwargs
)
3778 def GetToolSize(*args
, **kwargs
):
3779 """GetToolSize(self) -> Size"""
3780 return _controls_
.ToolBarBase_GetToolSize(*args
, **kwargs
)
3782 def FindToolForPosition(*args
, **kwargs
):
3783 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3784 return _controls_
.ToolBarBase_FindToolForPosition(*args
, **kwargs
)
3786 def FindById(*args
, **kwargs
):
3787 """FindById(self, int toolid) -> ToolBarToolBase"""
3788 return _controls_
.ToolBarBase_FindById(*args
, **kwargs
)
3790 def IsVertical(*args
, **kwargs
):
3791 """IsVertical(self) -> bool"""
3792 return _controls_
.ToolBarBase_IsVertical(*args
, **kwargs
)
3794 def GetToolsCount(*args
, **kwargs
):
3795 """GetToolsCount(self) -> size_t"""
3796 return _controls_
.ToolBarBase_GetToolsCount(*args
, **kwargs
)
3798 _controls_
.ToolBarBase_swigregister(ToolBarBase
)
3800 class ToolBar(ToolBarBase
):
3801 """Proxy of C++ ToolBar class"""
3802 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3803 __repr__
= _swig_repr
3804 def __init__(self
, *args
, **kwargs
):
3806 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3807 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
3808 String name=wxPyToolBarNameStr) -> ToolBar
3810 _controls_
.ToolBar_swiginit(self
,_controls_
.new_ToolBar(*args
, **kwargs
))
3811 self
._setOORInfo
(self
)
3813 def Create(*args
, **kwargs
):
3815 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3816 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
3817 String name=wxPyToolBarNameStr) -> bool
3819 return _controls_
.ToolBar_Create(*args
, **kwargs
)
3821 def GetClassDefaultAttributes(*args
, **kwargs
):
3823 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3825 Get the default attributes for this class. This is useful if you want
3826 to use the same font or colour in your own control as in a standard
3827 control -- which is a much better idea than hard coding specific
3828 colours or fonts which might look completely out of place on the
3829 user's system, especially if it uses themes.
3831 The variant parameter is only relevant under Mac currently and is
3832 ignore under other platforms. Under Mac, it will change the size of
3833 the returned font. See `wx.Window.SetWindowVariant` for more about
3836 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
3838 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3839 _controls_
.ToolBar_swigregister(ToolBar
)
3841 def PreToolBar(*args
, **kwargs
):
3842 """PreToolBar() -> ToolBar"""
3843 val
= _controls_
.new_PreToolBar(*args
, **kwargs
)
3846 def ToolBar_GetClassDefaultAttributes(*args
, **kwargs
):
3848 ToolBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3850 Get the default attributes for this class. This is useful if you want
3851 to use the same font or colour in your own control as in a standard
3852 control -- which is a much better idea than hard coding specific
3853 colours or fonts which might look completely out of place on the
3854 user's system, especially if it uses themes.
3856 The variant parameter is only relevant under Mac currently and is
3857 ignore under other platforms. Under Mac, it will change the size of
3858 the returned font. See `wx.Window.SetWindowVariant` for more about
3861 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
3863 #---------------------------------------------------------------------------
3865 LC_VRULES
= _controls_
.LC_VRULES
3866 LC_HRULES
= _controls_
.LC_HRULES
3867 LC_ICON
= _controls_
.LC_ICON
3868 LC_SMALL_ICON
= _controls_
.LC_SMALL_ICON
3869 LC_LIST
= _controls_
.LC_LIST
3870 LC_REPORT
= _controls_
.LC_REPORT
3871 LC_ALIGN_TOP
= _controls_
.LC_ALIGN_TOP
3872 LC_ALIGN_LEFT
= _controls_
.LC_ALIGN_LEFT
3873 LC_AUTOARRANGE
= _controls_
.LC_AUTOARRANGE
3874 LC_VIRTUAL
= _controls_
.LC_VIRTUAL
3875 LC_EDIT_LABELS
= _controls_
.LC_EDIT_LABELS
3876 LC_NO_HEADER
= _controls_
.LC_NO_HEADER
3877 LC_NO_SORT_HEADER
= _controls_
.LC_NO_SORT_HEADER
3878 LC_SINGLE_SEL
= _controls_
.LC_SINGLE_SEL
3879 LC_SORT_ASCENDING
= _controls_
.LC_SORT_ASCENDING
3880 LC_SORT_DESCENDING
= _controls_
.LC_SORT_DESCENDING
3881 LC_MASK_TYPE
= _controls_
.LC_MASK_TYPE
3882 LC_MASK_ALIGN
= _controls_
.LC_MASK_ALIGN
3883 LC_MASK_SORT
= _controls_
.LC_MASK_SORT
3884 LIST_MASK_STATE
= _controls_
.LIST_MASK_STATE
3885 LIST_MASK_TEXT
= _controls_
.LIST_MASK_TEXT
3886 LIST_MASK_IMAGE
= _controls_
.LIST_MASK_IMAGE
3887 LIST_MASK_DATA
= _controls_
.LIST_MASK_DATA
3888 LIST_SET_ITEM
= _controls_
.LIST_SET_ITEM
3889 LIST_MASK_WIDTH
= _controls_
.LIST_MASK_WIDTH
3890 LIST_MASK_FORMAT
= _controls_
.LIST_MASK_FORMAT
3891 LIST_STATE_DONTCARE
= _controls_
.LIST_STATE_DONTCARE
3892 LIST_STATE_DROPHILITED
= _controls_
.LIST_STATE_DROPHILITED
3893 LIST_STATE_FOCUSED
= _controls_
.LIST_STATE_FOCUSED
3894 LIST_STATE_SELECTED
= _controls_
.LIST_STATE_SELECTED
3895 LIST_STATE_CUT
= _controls_
.LIST_STATE_CUT
3896 LIST_STATE_DISABLED
= _controls_
.LIST_STATE_DISABLED
3897 LIST_STATE_FILTERED
= _controls_
.LIST_STATE_FILTERED
3898 LIST_STATE_INUSE
= _controls_
.LIST_STATE_INUSE
3899 LIST_STATE_PICKED
= _controls_
.LIST_STATE_PICKED
3900 LIST_STATE_SOURCE
= _controls_
.LIST_STATE_SOURCE
3901 LIST_HITTEST_ABOVE
= _controls_
.LIST_HITTEST_ABOVE
3902 LIST_HITTEST_BELOW
= _controls_
.LIST_HITTEST_BELOW
3903 LIST_HITTEST_NOWHERE
= _controls_
.LIST_HITTEST_NOWHERE
3904 LIST_HITTEST_ONITEMICON
= _controls_
.LIST_HITTEST_ONITEMICON
3905 LIST_HITTEST_ONITEMLABEL
= _controls_
.LIST_HITTEST_ONITEMLABEL
3906 LIST_HITTEST_ONITEMRIGHT
= _controls_
.LIST_HITTEST_ONITEMRIGHT
3907 LIST_HITTEST_ONITEMSTATEICON
= _controls_
.LIST_HITTEST_ONITEMSTATEICON
3908 LIST_HITTEST_TOLEFT
= _controls_
.LIST_HITTEST_TOLEFT
3909 LIST_HITTEST_TORIGHT
= _controls_
.LIST_HITTEST_TORIGHT
3910 LIST_HITTEST_ONITEM
= _controls_
.LIST_HITTEST_ONITEM
3911 LIST_GETSUBITEMRECT_WHOLEITEM
= _controls_
.LIST_GETSUBITEMRECT_WHOLEITEM
3912 LIST_NEXT_ABOVE
= _controls_
.LIST_NEXT_ABOVE
3913 LIST_NEXT_ALL
= _controls_
.LIST_NEXT_ALL
3914 LIST_NEXT_BELOW
= _controls_
.LIST_NEXT_BELOW
3915 LIST_NEXT_LEFT
= _controls_
.LIST_NEXT_LEFT
3916 LIST_NEXT_RIGHT
= _controls_
.LIST_NEXT_RIGHT
3917 LIST_ALIGN_DEFAULT
= _controls_
.LIST_ALIGN_DEFAULT
3918 LIST_ALIGN_LEFT
= _controls_
.LIST_ALIGN_LEFT
3919 LIST_ALIGN_TOP
= _controls_
.LIST_ALIGN_TOP
3920 LIST_ALIGN_SNAP_TO_GRID
= _controls_
.LIST_ALIGN_SNAP_TO_GRID
3921 LIST_FORMAT_LEFT
= _controls_
.LIST_FORMAT_LEFT
3922 LIST_FORMAT_RIGHT
= _controls_
.LIST_FORMAT_RIGHT
3923 LIST_FORMAT_CENTRE
= _controls_
.LIST_FORMAT_CENTRE
3924 LIST_FORMAT_CENTER
= _controls_
.LIST_FORMAT_CENTER
3925 LIST_AUTOSIZE
= _controls_
.LIST_AUTOSIZE
3926 LIST_AUTOSIZE_USEHEADER
= _controls_
.LIST_AUTOSIZE_USEHEADER
3927 LIST_RECT_BOUNDS
= _controls_
.LIST_RECT_BOUNDS
3928 LIST_RECT_ICON
= _controls_
.LIST_RECT_ICON
3929 LIST_RECT_LABEL
= _controls_
.LIST_RECT_LABEL
3930 LIST_FIND_UP
= _controls_
.LIST_FIND_UP
3931 LIST_FIND_DOWN
= _controls_
.LIST_FIND_DOWN
3932 LIST_FIND_LEFT
= _controls_
.LIST_FIND_LEFT
3933 LIST_FIND_RIGHT
= _controls_
.LIST_FIND_RIGHT
3934 #---------------------------------------------------------------------------
3936 class ListItemAttr(object):
3937 """Proxy of C++ ListItemAttr class"""
3938 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3939 __repr__
= _swig_repr
3940 def __init__(self
, *args
, **kwargs
):
3942 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
3943 Font font=wxNullFont) -> ListItemAttr
3945 _controls_
.ListItemAttr_swiginit(self
,_controls_
.new_ListItemAttr(*args
, **kwargs
))
3946 __swig_destroy__
= _controls_
.delete_ListItemAttr
3947 __del__
= lambda self
: None;
3948 def SetTextColour(*args
, **kwargs
):
3949 """SetTextColour(self, Colour colText)"""
3950 return _controls_
.ListItemAttr_SetTextColour(*args
, **kwargs
)
3952 def SetBackgroundColour(*args
, **kwargs
):
3953 """SetBackgroundColour(self, Colour colBack)"""
3954 return _controls_
.ListItemAttr_SetBackgroundColour(*args
, **kwargs
)
3956 def SetFont(*args
, **kwargs
):
3957 """SetFont(self, Font font)"""
3958 return _controls_
.ListItemAttr_SetFont(*args
, **kwargs
)
3960 def HasTextColour(*args
, **kwargs
):
3961 """HasTextColour(self) -> bool"""
3962 return _controls_
.ListItemAttr_HasTextColour(*args
, **kwargs
)
3964 def HasBackgroundColour(*args
, **kwargs
):
3965 """HasBackgroundColour(self) -> bool"""
3966 return _controls_
.ListItemAttr_HasBackgroundColour(*args
, **kwargs
)
3968 def HasFont(*args
, **kwargs
):
3969 """HasFont(self) -> bool"""
3970 return _controls_
.ListItemAttr_HasFont(*args
, **kwargs
)
3972 def GetTextColour(*args
, **kwargs
):
3973 """GetTextColour(self) -> Colour"""
3974 return _controls_
.ListItemAttr_GetTextColour(*args
, **kwargs
)
3976 def GetBackgroundColour(*args
, **kwargs
):
3977 """GetBackgroundColour(self) -> Colour"""
3978 return _controls_
.ListItemAttr_GetBackgroundColour(*args
, **kwargs
)
3980 def GetFont(*args
, **kwargs
):
3981 """GetFont(self) -> Font"""
3982 return _controls_
.ListItemAttr_GetFont(*args
, **kwargs
)
3984 def AssignFrom(*args
, **kwargs
):
3985 """AssignFrom(self, ListItemAttr source)"""
3986 return _controls_
.ListItemAttr_AssignFrom(*args
, **kwargs
)
3988 def Destroy(*args
, **kwargs
):
3990 val
= _controls_
.ListItemAttr_Destroy(*args
, **kwargs
)
3994 _controls_
.ListItemAttr_swigregister(ListItemAttr
)
3995 ListCtrlNameStr
= cvar
.ListCtrlNameStr
3997 #---------------------------------------------------------------------------
3999 class ListItem(_core
.Object
):
4000 """Proxy of C++ ListItem class"""
4001 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4002 __repr__
= _swig_repr
4003 def __init__(self
, *args
, **kwargs
):
4004 """__init__(self) -> ListItem"""
4005 _controls_
.ListItem_swiginit(self
,_controls_
.new_ListItem(*args
, **kwargs
))
4006 __swig_destroy__
= _controls_
.delete_ListItem
4007 __del__
= lambda self
: None;
4008 def Clear(*args
, **kwargs
):
4010 return _controls_
.ListItem_Clear(*args
, **kwargs
)
4012 def ClearAttributes(*args
, **kwargs
):
4013 """ClearAttributes(self)"""
4014 return _controls_
.ListItem_ClearAttributes(*args
, **kwargs
)
4016 def SetMask(*args
, **kwargs
):
4017 """SetMask(self, long mask)"""
4018 return _controls_
.ListItem_SetMask(*args
, **kwargs
)
4020 def SetId(*args
, **kwargs
):
4021 """SetId(self, long id)"""
4022 return _controls_
.ListItem_SetId(*args
, **kwargs
)
4024 def SetColumn(*args
, **kwargs
):
4025 """SetColumn(self, int col)"""
4026 return _controls_
.ListItem_SetColumn(*args
, **kwargs
)
4028 def SetState(*args
, **kwargs
):
4029 """SetState(self, long state)"""
4030 return _controls_
.ListItem_SetState(*args
, **kwargs
)
4032 def SetStateMask(*args
, **kwargs
):
4033 """SetStateMask(self, long stateMask)"""
4034 return _controls_
.ListItem_SetStateMask(*args
, **kwargs
)
4036 def SetText(*args
, **kwargs
):
4037 """SetText(self, String text)"""
4038 return _controls_
.ListItem_SetText(*args
, **kwargs
)
4040 def SetImage(*args
, **kwargs
):
4041 """SetImage(self, int image)"""
4042 return _controls_
.ListItem_SetImage(*args
, **kwargs
)
4044 def SetData(*args
, **kwargs
):
4045 """SetData(self, long data)"""
4046 return _controls_
.ListItem_SetData(*args
, **kwargs
)
4048 def SetWidth(*args
, **kwargs
):
4049 """SetWidth(self, int width)"""
4050 return _controls_
.ListItem_SetWidth(*args
, **kwargs
)
4052 def SetAlign(*args
, **kwargs
):
4053 """SetAlign(self, int align)"""
4054 return _controls_
.ListItem_SetAlign(*args
, **kwargs
)
4056 def SetTextColour(*args
, **kwargs
):
4057 """SetTextColour(self, Colour colText)"""
4058 return _controls_
.ListItem_SetTextColour(*args
, **kwargs
)
4060 def SetBackgroundColour(*args
, **kwargs
):
4061 """SetBackgroundColour(self, Colour colBack)"""
4062 return _controls_
.ListItem_SetBackgroundColour(*args
, **kwargs
)
4064 def SetFont(*args
, **kwargs
):
4065 """SetFont(self, Font font)"""
4066 return _controls_
.ListItem_SetFont(*args
, **kwargs
)
4068 def GetMask(*args
, **kwargs
):
4069 """GetMask(self) -> long"""
4070 return _controls_
.ListItem_GetMask(*args
, **kwargs
)
4072 def GetId(*args
, **kwargs
):
4073 """GetId(self) -> long"""
4074 return _controls_
.ListItem_GetId(*args
, **kwargs
)
4076 def GetColumn(*args
, **kwargs
):
4077 """GetColumn(self) -> int"""
4078 return _controls_
.ListItem_GetColumn(*args
, **kwargs
)
4080 def GetState(*args
, **kwargs
):
4081 """GetState(self) -> long"""
4082 return _controls_
.ListItem_GetState(*args
, **kwargs
)
4084 def GetText(*args
, **kwargs
):
4085 """GetText(self) -> String"""
4086 return _controls_
.ListItem_GetText(*args
, **kwargs
)
4088 def GetImage(*args
, **kwargs
):
4089 """GetImage(self) -> int"""
4090 return _controls_
.ListItem_GetImage(*args
, **kwargs
)
4092 def GetData(*args
, **kwargs
):
4093 """GetData(self) -> long"""
4094 return _controls_
.ListItem_GetData(*args
, **kwargs
)
4096 def GetWidth(*args
, **kwargs
):
4097 """GetWidth(self) -> int"""
4098 return _controls_
.ListItem_GetWidth(*args
, **kwargs
)
4100 def GetAlign(*args
, **kwargs
):
4101 """GetAlign(self) -> int"""
4102 return _controls_
.ListItem_GetAlign(*args
, **kwargs
)
4104 def GetAttributes(*args
, **kwargs
):
4105 """GetAttributes(self) -> ListItemAttr"""
4106 return _controls_
.ListItem_GetAttributes(*args
, **kwargs
)
4108 def HasAttributes(*args
, **kwargs
):
4109 """HasAttributes(self) -> bool"""
4110 return _controls_
.ListItem_HasAttributes(*args
, **kwargs
)
4112 def GetTextColour(*args
, **kwargs
):
4113 """GetTextColour(self) -> Colour"""
4114 return _controls_
.ListItem_GetTextColour(*args
, **kwargs
)
4116 def GetBackgroundColour(*args
, **kwargs
):
4117 """GetBackgroundColour(self) -> Colour"""
4118 return _controls_
.ListItem_GetBackgroundColour(*args
, **kwargs
)
4120 def GetFont(*args
, **kwargs
):
4121 """GetFont(self) -> Font"""
4122 return _controls_
.ListItem_GetFont(*args
, **kwargs
)
4124 m_mask
= property(_controls_
.ListItem_m_mask_get
, _controls_
.ListItem_m_mask_set
)
4125 m_itemId
= property(_controls_
.ListItem_m_itemId_get
, _controls_
.ListItem_m_itemId_set
)
4126 m_col
= property(_controls_
.ListItem_m_col_get
, _controls_
.ListItem_m_col_set
)
4127 m_state
= property(_controls_
.ListItem_m_state_get
, _controls_
.ListItem_m_state_set
)
4128 m_stateMask
= property(_controls_
.ListItem_m_stateMask_get
, _controls_
.ListItem_m_stateMask_set
)
4129 m_text
= property(_controls_
.ListItem_m_text_get
, _controls_
.ListItem_m_text_set
)
4130 m_image
= property(_controls_
.ListItem_m_image_get
, _controls_
.ListItem_m_image_set
)
4131 m_data
= property(_controls_
.ListItem_m_data_get
, _controls_
.ListItem_m_data_set
)
4132 m_format
= property(_controls_
.ListItem_m_format_get
, _controls_
.ListItem_m_format_set
)
4133 m_width
= property(_controls_
.ListItem_m_width_get
, _controls_
.ListItem_m_width_set
)
4134 _controls_
.ListItem_swigregister(ListItem
)
4136 #---------------------------------------------------------------------------
4138 class ListEvent(_core
.NotifyEvent
):
4139 """Proxy of C++ ListEvent class"""
4140 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4141 __repr__
= _swig_repr
4142 def __init__(self
, *args
, **kwargs
):
4143 """__init__(self, EventType commandType=wxEVT_NULL, int id=0) -> ListEvent"""
4144 _controls_
.ListEvent_swiginit(self
,_controls_
.new_ListEvent(*args
, **kwargs
))
4145 m_code
= property(_controls_
.ListEvent_m_code_get
, _controls_
.ListEvent_m_code_set
)
4146 m_oldItemIndex
= property(_controls_
.ListEvent_m_oldItemIndex_get
, _controls_
.ListEvent_m_oldItemIndex_set
)
4147 m_itemIndex
= property(_controls_
.ListEvent_m_itemIndex_get
, _controls_
.ListEvent_m_itemIndex_set
)
4148 m_col
= property(_controls_
.ListEvent_m_col_get
, _controls_
.ListEvent_m_col_set
)
4149 m_pointDrag
= property(_controls_
.ListEvent_m_pointDrag_get
, _controls_
.ListEvent_m_pointDrag_set
)
4150 m_item
= property(_controls_
.ListEvent_m_item_get
)
4151 def GetKeyCode(*args
, **kwargs
):
4152 """GetKeyCode(self) -> int"""
4153 return _controls_
.ListEvent_GetKeyCode(*args
, **kwargs
)
4155 GetCode
= GetKeyCode
4156 def GetIndex(*args
, **kwargs
):
4157 """GetIndex(self) -> long"""
4158 return _controls_
.ListEvent_GetIndex(*args
, **kwargs
)
4160 def GetColumn(*args
, **kwargs
):
4161 """GetColumn(self) -> int"""
4162 return _controls_
.ListEvent_GetColumn(*args
, **kwargs
)
4164 def GetPoint(*args
, **kwargs
):
4165 """GetPoint(self) -> Point"""
4166 return _controls_
.ListEvent_GetPoint(*args
, **kwargs
)
4168 GetPosition
= GetPoint
4169 def GetLabel(*args
, **kwargs
):
4170 """GetLabel(self) -> String"""
4171 return _controls_
.ListEvent_GetLabel(*args
, **kwargs
)
4173 def GetText(*args
, **kwargs
):
4174 """GetText(self) -> String"""
4175 return _controls_
.ListEvent_GetText(*args
, **kwargs
)
4177 def GetImage(*args
, **kwargs
):
4178 """GetImage(self) -> int"""
4179 return _controls_
.ListEvent_GetImage(*args
, **kwargs
)
4181 def GetData(*args
, **kwargs
):
4182 """GetData(self) -> long"""
4183 return _controls_
.ListEvent_GetData(*args
, **kwargs
)
4185 def GetMask(*args
, **kwargs
):
4186 """GetMask(self) -> long"""
4187 return _controls_
.ListEvent_GetMask(*args
, **kwargs
)
4189 def GetItem(*args
, **kwargs
):
4190 """GetItem(self) -> ListItem"""
4191 return _controls_
.ListEvent_GetItem(*args
, **kwargs
)
4193 def GetCacheFrom(*args
, **kwargs
):
4194 """GetCacheFrom(self) -> long"""
4195 return _controls_
.ListEvent_GetCacheFrom(*args
, **kwargs
)
4197 def GetCacheTo(*args
, **kwargs
):
4198 """GetCacheTo(self) -> long"""
4199 return _controls_
.ListEvent_GetCacheTo(*args
, **kwargs
)
4201 def IsEditCancelled(*args
, **kwargs
):
4202 """IsEditCancelled(self) -> bool"""
4203 return _controls_
.ListEvent_IsEditCancelled(*args
, **kwargs
)
4205 def SetEditCanceled(*args
, **kwargs
):
4206 """SetEditCanceled(self, bool editCancelled)"""
4207 return _controls_
.ListEvent_SetEditCanceled(*args
, **kwargs
)
4209 _controls_
.ListEvent_swigregister(ListEvent
)
4211 wxEVT_COMMAND_LIST_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_DRAG
4212 wxEVT_COMMAND_LIST_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_RDRAG
4213 wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
4214 wxEVT_COMMAND_LIST_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_END_LABEL_EDIT
4215 wxEVT_COMMAND_LIST_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ITEM
4216 wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
4217 wxEVT_COMMAND_LIST_ITEM_SELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_SELECTED
4218 wxEVT_COMMAND_LIST_ITEM_DESELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_DESELECTED
4219 wxEVT_COMMAND_LIST_KEY_DOWN
= _controls_
.wxEVT_COMMAND_LIST_KEY_DOWN
4220 wxEVT_COMMAND_LIST_INSERT_ITEM
= _controls_
.wxEVT_COMMAND_LIST_INSERT_ITEM
4221 wxEVT_COMMAND_LIST_COL_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_CLICK
4222 wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
4223 wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
4224 wxEVT_COMMAND_LIST_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_ACTIVATED
4225 wxEVT_COMMAND_LIST_CACHE_HINT
= _controls_
.wxEVT_COMMAND_LIST_CACHE_HINT
4226 wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
4227 wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
4228 wxEVT_COMMAND_LIST_COL_DRAGGING
= _controls_
.wxEVT_COMMAND_LIST_COL_DRAGGING
4229 wxEVT_COMMAND_LIST_COL_END_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_END_DRAG
4230 wxEVT_COMMAND_LIST_ITEM_FOCUSED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_FOCUSED
4231 EVT_LIST_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG
, 1)
4232 EVT_LIST_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG
, 1)
4233 EVT_LIST_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, 1)
4234 EVT_LIST_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT
, 1)
4235 EVT_LIST_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM
, 1)
4236 EVT_LIST_DELETE_ALL_ITEMS
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, 1)
4241 EVT_LIST_ITEM_SELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED
, 1)
4242 EVT_LIST_ITEM_DESELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED
, 1)
4243 EVT_LIST_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN
, 1)
4244 EVT_LIST_INSERT_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM
, 1)
4245 EVT_LIST_COL_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK
, 1)
4246 EVT_LIST_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, 1)
4247 EVT_LIST_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
, 1)
4248 EVT_LIST_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, 1)
4249 EVT_LIST_CACHE_HINT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT
, 1)
4250 EVT_LIST_COL_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
, 1)
4251 EVT_LIST_COL_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
, 1)
4252 EVT_LIST_COL_DRAGGING
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING
, 1)
4253 EVT_LIST_COL_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG
, 1)
4254 EVT_LIST_ITEM_FOCUSED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
, 1)
4260 #---------------------------------------------------------------------------
4262 class ListCtrl(_core
.Control
):
4263 """Proxy of C++ ListCtrl class"""
4264 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4265 __repr__
= _swig_repr
4266 def __init__(self
, *args
, **kwargs
):
4268 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4269 Size size=DefaultSize, long style=LC_ICON,
4270 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListCtrl
4272 _controls_
.ListCtrl_swiginit(self
,_controls_
.new_ListCtrl(*args
, **kwargs
))
4273 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, ListCtrl
)
4275 def Create(*args
, **kwargs
):
4277 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4278 Size size=DefaultSize, long style=LC_ICON,
4279 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4281 Do the 2nd phase and create the GUI control.
4283 return _controls_
.ListCtrl_Create(*args
, **kwargs
)
4285 def _setCallbackInfo(*args
, **kwargs
):
4286 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4287 return _controls_
.ListCtrl__setCallbackInfo(*args
, **kwargs
)
4289 def GetColumn(*args
, **kwargs
):
4290 """GetColumn(self, int col) -> ListItem"""
4291 val
= _controls_
.ListCtrl_GetColumn(*args
, **kwargs
)
4292 if val
is not None: val
.thisown
= 1
4295 def SetColumn(*args
, **kwargs
):
4296 """SetColumn(self, int col, ListItem item) -> bool"""
4297 return _controls_
.ListCtrl_SetColumn(*args
, **kwargs
)
4299 def GetColumnWidth(*args
, **kwargs
):
4300 """GetColumnWidth(self, int col) -> int"""
4301 return _controls_
.ListCtrl_GetColumnWidth(*args
, **kwargs
)
4303 def SetColumnWidth(*args
, **kwargs
):
4304 """SetColumnWidth(self, int col, int width) -> bool"""
4305 return _controls_
.ListCtrl_SetColumnWidth(*args
, **kwargs
)
4307 def GetCountPerPage(*args
, **kwargs
):
4308 """GetCountPerPage(self) -> int"""
4309 return _controls_
.ListCtrl_GetCountPerPage(*args
, **kwargs
)
4311 def GetViewRect(*args
, **kwargs
):
4312 """GetViewRect(self) -> Rect"""
4313 return _controls_
.ListCtrl_GetViewRect(*args
, **kwargs
)
4315 def GetEditControl(*args
, **kwargs
):
4316 """GetEditControl(self) -> TextCtrl"""
4317 return _controls_
.ListCtrl_GetEditControl(*args
, **kwargs
)
4319 def GetItem(*args
, **kwargs
):
4320 """GetItem(self, long itemId, int col=0) -> ListItem"""
4321 val
= _controls_
.ListCtrl_GetItem(*args
, **kwargs
)
4322 if val
is not None: val
.thisown
= 1
4325 def SetItem(*args
, **kwargs
):
4326 """SetItem(self, ListItem info) -> bool"""
4327 return _controls_
.ListCtrl_SetItem(*args
, **kwargs
)
4329 def SetStringItem(*args
, **kwargs
):
4330 """SetStringItem(self, long index, int col, String label, int imageId=-1) -> long"""
4331 return _controls_
.ListCtrl_SetStringItem(*args
, **kwargs
)
4333 def GetItemState(*args
, **kwargs
):
4334 """GetItemState(self, long item, long stateMask) -> int"""
4335 return _controls_
.ListCtrl_GetItemState(*args
, **kwargs
)
4337 def SetItemState(*args
, **kwargs
):
4338 """SetItemState(self, long item, long state, long stateMask) -> bool"""
4339 return _controls_
.ListCtrl_SetItemState(*args
, **kwargs
)
4341 def SetItemImage(*args
, **kwargs
):
4342 """SetItemImage(self, long item, int image, int selImage=-1) -> bool"""
4343 return _controls_
.ListCtrl_SetItemImage(*args
, **kwargs
)
4345 def SetItemColumnImage(*args
, **kwargs
):
4346 """SetItemColumnImage(self, long item, long column, int image) -> bool"""
4347 return _controls_
.ListCtrl_SetItemColumnImage(*args
, **kwargs
)
4349 def GetItemText(*args
, **kwargs
):
4350 """GetItemText(self, long item) -> String"""
4351 return _controls_
.ListCtrl_GetItemText(*args
, **kwargs
)
4353 def SetItemText(*args
, **kwargs
):
4354 """SetItemText(self, long item, String str)"""
4355 return _controls_
.ListCtrl_SetItemText(*args
, **kwargs
)
4357 def GetItemData(*args
, **kwargs
):
4358 """GetItemData(self, long item) -> long"""
4359 return _controls_
.ListCtrl_GetItemData(*args
, **kwargs
)
4361 def SetItemData(*args
, **kwargs
):
4362 """SetItemData(self, long item, long data) -> bool"""
4363 return _controls_
.ListCtrl_SetItemData(*args
, **kwargs
)
4365 def GetItemPosition(*args
, **kwargs
):
4366 """GetItemPosition(self, long item) -> Point"""
4367 return _controls_
.ListCtrl_GetItemPosition(*args
, **kwargs
)
4369 def GetItemRect(*args
, **kwargs
):
4370 """GetItemRect(self, long item, int code=LIST_RECT_BOUNDS) -> Rect"""
4371 return _controls_
.ListCtrl_GetItemRect(*args
, **kwargs
)
4373 def SetItemPosition(*args
, **kwargs
):
4374 """SetItemPosition(self, long item, Point pos) -> bool"""
4375 return _controls_
.ListCtrl_SetItemPosition(*args
, **kwargs
)
4377 def GetItemCount(*args
, **kwargs
):
4378 """GetItemCount(self) -> int"""
4379 return _controls_
.ListCtrl_GetItemCount(*args
, **kwargs
)
4381 def GetColumnCount(*args
, **kwargs
):
4382 """GetColumnCount(self) -> int"""
4383 return _controls_
.ListCtrl_GetColumnCount(*args
, **kwargs
)
4385 def GetItemSpacing(*args
, **kwargs
):
4386 """GetItemSpacing(self) -> Size"""
4387 return _controls_
.ListCtrl_GetItemSpacing(*args
, **kwargs
)
4389 GetItemSpacing
= wx
._deprecated
(GetItemSpacing
)
4390 def SetItemSpacing(*args
, **kwargs
):
4391 """SetItemSpacing(self, int spacing, bool isSmall=False)"""
4392 return _controls_
.ListCtrl_SetItemSpacing(*args
, **kwargs
)
4394 SetItemSpacing
= wx
._deprecated
(SetItemSpacing
)
4395 def GetSelectedItemCount(*args
, **kwargs
):
4396 """GetSelectedItemCount(self) -> int"""
4397 return _controls_
.ListCtrl_GetSelectedItemCount(*args
, **kwargs
)
4399 def GetTextColour(*args
, **kwargs
):
4400 """GetTextColour(self) -> Colour"""
4401 return _controls_
.ListCtrl_GetTextColour(*args
, **kwargs
)
4403 def SetTextColour(*args
, **kwargs
):
4404 """SetTextColour(self, Colour col)"""
4405 return _controls_
.ListCtrl_SetTextColour(*args
, **kwargs
)
4407 def GetTopItem(*args
, **kwargs
):
4408 """GetTopItem(self) -> long"""
4409 return _controls_
.ListCtrl_GetTopItem(*args
, **kwargs
)
4411 def SetSingleStyle(*args
, **kwargs
):
4412 """SetSingleStyle(self, long style, bool add=True)"""
4413 return _controls_
.ListCtrl_SetSingleStyle(*args
, **kwargs
)
4415 def GetNextItem(*args
, **kwargs
):
4416 """GetNextItem(self, long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -> long"""
4417 return _controls_
.ListCtrl_GetNextItem(*args
, **kwargs
)
4419 def GetImageList(*args
, **kwargs
):
4420 """GetImageList(self, int which) -> ImageList"""
4421 return _controls_
.ListCtrl_GetImageList(*args
, **kwargs
)
4423 def SetImageList(*args
, **kwargs
):
4424 """SetImageList(self, ImageList imageList, int which)"""
4425 return _controls_
.ListCtrl_SetImageList(*args
, **kwargs
)
4427 def AssignImageList(*args
, **kwargs
):
4428 """AssignImageList(self, ImageList imageList, int which)"""
4429 return _controls_
.ListCtrl_AssignImageList(*args
, **kwargs
)
4431 def InReportView(*args
, **kwargs
):
4432 """InReportView(self) -> bool"""
4433 return _controls_
.ListCtrl_InReportView(*args
, **kwargs
)
4435 def IsVirtual(*args
, **kwargs
):
4436 """IsVirtual(self) -> bool"""
4437 return _controls_
.ListCtrl_IsVirtual(*args
, **kwargs
)
4439 def RefreshItem(*args
, **kwargs
):
4440 """RefreshItem(self, long item)"""
4441 return _controls_
.ListCtrl_RefreshItem(*args
, **kwargs
)
4443 def RefreshItems(*args
, **kwargs
):
4444 """RefreshItems(self, long itemFrom, long itemTo)"""
4445 return _controls_
.ListCtrl_RefreshItems(*args
, **kwargs
)
4447 def Arrange(*args
, **kwargs
):
4448 """Arrange(self, int flag=LIST_ALIGN_DEFAULT) -> bool"""
4449 return _controls_
.ListCtrl_Arrange(*args
, **kwargs
)
4451 def DeleteItem(*args
, **kwargs
):
4452 """DeleteItem(self, long item) -> bool"""
4453 return _controls_
.ListCtrl_DeleteItem(*args
, **kwargs
)
4455 def DeleteAllItems(*args
, **kwargs
):
4456 """DeleteAllItems(self) -> bool"""
4457 return _controls_
.ListCtrl_DeleteAllItems(*args
, **kwargs
)
4459 def DeleteColumn(*args
, **kwargs
):
4460 """DeleteColumn(self, int col) -> bool"""
4461 return _controls_
.ListCtrl_DeleteColumn(*args
, **kwargs
)
4463 def DeleteAllColumns(*args
, **kwargs
):
4464 """DeleteAllColumns(self) -> bool"""
4465 return _controls_
.ListCtrl_DeleteAllColumns(*args
, **kwargs
)
4467 def ClearAll(*args
, **kwargs
):
4468 """ClearAll(self)"""
4469 return _controls_
.ListCtrl_ClearAll(*args
, **kwargs
)
4471 def EditLabel(*args
, **kwargs
):
4472 """EditLabel(self, long item)"""
4473 return _controls_
.ListCtrl_EditLabel(*args
, **kwargs
)
4475 def EnsureVisible(*args
, **kwargs
):
4476 """EnsureVisible(self, long item) -> bool"""
4477 return _controls_
.ListCtrl_EnsureVisible(*args
, **kwargs
)
4479 def FindItem(*args
, **kwargs
):
4480 """FindItem(self, long start, String str, bool partial=False) -> long"""
4481 return _controls_
.ListCtrl_FindItem(*args
, **kwargs
)
4483 def FindItemData(*args
, **kwargs
):
4484 """FindItemData(self, long start, long data) -> long"""
4485 return _controls_
.ListCtrl_FindItemData(*args
, **kwargs
)
4487 def FindItemAtPos(*args
, **kwargs
):
4488 """FindItemAtPos(self, long start, Point pt, int direction) -> long"""
4489 return _controls_
.ListCtrl_FindItemAtPos(*args
, **kwargs
)
4491 def HitTest(*args
, **kwargs
):
4493 HitTest(Point point) -> (item, where)
4495 Determines which item (if any) is at the specified point, giving
4496 in the second return value (see wx.LIST_HITTEST flags.)
4498 return _controls_
.ListCtrl_HitTest(*args
, **kwargs
)
4500 def HitTestSubItem(*args
, **kwargs
):
4502 HitTestSubItem(Point point) -> (item, where, subItem)
4504 Determines which item (if any) is at the specified point, giving in
4505 the second return value (see wx.LIST_HITTEST flags) and also the subItem, if
4508 return _controls_
.ListCtrl_HitTestSubItem(*args
, **kwargs
)
4510 def InsertItem(*args
, **kwargs
):
4511 """InsertItem(self, ListItem info) -> long"""
4512 return _controls_
.ListCtrl_InsertItem(*args
, **kwargs
)
4514 def InsertStringItem(*args
, **kwargs
):
4515 """InsertStringItem(self, long index, String label, int imageIndex=-1) -> long"""
4516 return _controls_
.ListCtrl_InsertStringItem(*args
, **kwargs
)
4518 def InsertImageItem(*args
, **kwargs
):
4519 """InsertImageItem(self, long index, int imageIndex) -> long"""
4520 return _controls_
.ListCtrl_InsertImageItem(*args
, **kwargs
)
4522 def InsertImageStringItem(*args
, **kwargs
):
4523 """InsertImageStringItem(self, long index, String label, int imageIndex) -> long"""
4524 return _controls_
.ListCtrl_InsertImageStringItem(*args
, **kwargs
)
4526 def InsertColumnItem(*args
, **kwargs
):
4527 """InsertColumnItem(self, long col, ListItem info) -> long"""
4528 return _controls_
.ListCtrl_InsertColumnItem(*args
, **kwargs
)
4530 InsertColumnInfo
= InsertColumnItem
4531 def InsertColumn(*args
, **kwargs
):
4533 InsertColumn(self, long col, String heading, int format=LIST_FORMAT_LEFT,
4534 int width=-1) -> long
4536 return _controls_
.ListCtrl_InsertColumn(*args
, **kwargs
)
4538 def SetItemCount(*args
, **kwargs
):
4539 """SetItemCount(self, long count)"""
4540 return _controls_
.ListCtrl_SetItemCount(*args
, **kwargs
)
4542 def ScrollList(*args
, **kwargs
):
4543 """ScrollList(self, int dx, int dy) -> bool"""
4544 return _controls_
.ListCtrl_ScrollList(*args
, **kwargs
)
4546 def SetItemTextColour(*args
, **kwargs
):
4547 """SetItemTextColour(self, long item, Colour col)"""
4548 return _controls_
.ListCtrl_SetItemTextColour(*args
, **kwargs
)
4550 def GetItemTextColour(*args
, **kwargs
):
4551 """GetItemTextColour(self, long item) -> Colour"""
4552 return _controls_
.ListCtrl_GetItemTextColour(*args
, **kwargs
)
4554 def SetItemBackgroundColour(*args
, **kwargs
):
4555 """SetItemBackgroundColour(self, long item, Colour col)"""
4556 return _controls_
.ListCtrl_SetItemBackgroundColour(*args
, **kwargs
)
4558 def GetItemBackgroundColour(*args
, **kwargs
):
4559 """GetItemBackgroundColour(self, long item) -> Colour"""
4560 return _controls_
.ListCtrl_GetItemBackgroundColour(*args
, **kwargs
)
4562 def SetItemFont(*args
, **kwargs
):
4563 """SetItemFont(self, long item, Font f)"""
4564 return _controls_
.ListCtrl_SetItemFont(*args
, **kwargs
)
4566 def GetItemFont(*args
, **kwargs
):
4567 """GetItemFont(self, long item) -> Font"""
4568 return _controls_
.ListCtrl_GetItemFont(*args
, **kwargs
)
4572 def Select(self
, idx
, on
=1):
4573 '''[de]select an item'''
4574 if on
: state
= wx
.LIST_STATE_SELECTED
4576 self
.SetItemState(idx
, state
, wx
.LIST_STATE_SELECTED
)
4578 def Focus(self
, idx
):
4579 '''Focus and show the given item'''
4580 self
.SetItemState(idx
, wx
.LIST_STATE_FOCUSED
, wx
.LIST_STATE_FOCUSED
)
4581 self
.EnsureVisible(idx
)
4583 def GetFocusedItem(self
):
4584 '''get the currently focused item or -1 if none'''
4585 return self
.GetNextItem(-1, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_FOCUSED
)
4587 def GetFirstSelected(self
, *args
):
4588 '''return first selected item, or -1 when none'''
4589 return self
.GetNextSelected(-1)
4591 def GetNextSelected(self
, item
):
4592 '''return subsequent selected items, or -1 when no more'''
4593 return self
.GetNextItem(item
, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_SELECTED
)
4595 def IsSelected(self
, idx
):
4596 '''return True if the item is selected'''
4597 return (self
.GetItemState(idx
, wx
.LIST_STATE_SELECTED
) & wx
.LIST_STATE_SELECTED
) != 0
4599 def SetColumnImage(self
, col
, image
):
4600 item
= self
.GetColumn(col
)
4601 # preserve all other attributes too
4602 item
.SetMask( wx
.LIST_MASK_STATE |
4604 wx
.LIST_MASK_IMAGE |
4607 wx
.LIST_MASK_WIDTH |
4608 wx
.LIST_MASK_FORMAT
)
4609 item
.SetImage(image
)
4610 self
.SetColumn(col
, item
)
4612 def ClearColumnImage(self
, col
):
4613 self
.SetColumnImage(col
, -1)
4615 def Append(self
, entry
):
4616 '''Append an item to the list control. The entry parameter should be a
4617 sequence with an item for each column'''
4623 pos
= self
.GetItemCount()
4624 self
.InsertStringItem(pos
, cvtfunc(entry
[0]))
4625 for i
in range(1, len(entry
)):
4626 self
.SetStringItem(pos
, i
, cvtfunc(entry
[i
]))
4629 def SortItems(*args
, **kwargs
):
4630 """SortItems(self, PyObject func) -> bool"""
4631 return _controls_
.ListCtrl_SortItems(*args
, **kwargs
)
4633 def GetMainWindow(*args
, **kwargs
):
4634 """GetMainWindow(self) -> Window"""
4635 return _controls_
.ListCtrl_GetMainWindow(*args
, **kwargs
)
4637 def GetClassDefaultAttributes(*args
, **kwargs
):
4639 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4641 Get the default attributes for this class. This is useful if you want
4642 to use the same font or colour in your own control as in a standard
4643 control -- which is a much better idea than hard coding specific
4644 colours or fonts which might look completely out of place on the
4645 user's system, especially if it uses themes.
4647 The variant parameter is only relevant under Mac currently and is
4648 ignore under other platforms. Under Mac, it will change the size of
4649 the returned font. See `wx.Window.SetWindowVariant` for more about
4652 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4654 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
4655 _controls_
.ListCtrl_swigregister(ListCtrl
)
4657 def PreListCtrl(*args
, **kwargs
):
4658 """PreListCtrl() -> ListCtrl"""
4659 val
= _controls_
.new_PreListCtrl(*args
, **kwargs
)
4662 def ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
4664 ListCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4666 Get the default attributes for this class. This is useful if you want
4667 to use the same font or colour in your own control as in a standard
4668 control -- which is a much better idea than hard coding specific
4669 colours or fonts which might look completely out of place on the
4670 user's system, especially if it uses themes.
4672 The variant parameter is only relevant under Mac currently and is
4673 ignore under other platforms. Under Mac, it will change the size of
4674 the returned font. See `wx.Window.SetWindowVariant` for more about
4677 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4679 #---------------------------------------------------------------------------
4681 class ListView(ListCtrl
):
4682 """Proxy of C++ ListView class"""
4683 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4684 __repr__
= _swig_repr
4685 def __init__(self
, *args
, **kwargs
):
4687 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4688 Size size=DefaultSize, long style=LC_REPORT,
4689 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListView
4691 _controls_
.ListView_swiginit(self
,_controls_
.new_ListView(*args
, **kwargs
))
4692 self
._setOORInfo
(self
)
4694 def Create(*args
, **kwargs
):
4696 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4697 Size size=DefaultSize, long style=LC_REPORT,
4698 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4700 Do the 2nd phase and create the GUI control.
4702 return _controls_
.ListView_Create(*args
, **kwargs
)
4704 def Select(*args
, **kwargs
):
4705 """Select(self, long n, bool on=True)"""
4706 return _controls_
.ListView_Select(*args
, **kwargs
)
4708 def Focus(*args
, **kwargs
):
4709 """Focus(self, long index)"""
4710 return _controls_
.ListView_Focus(*args
, **kwargs
)
4712 def GetFocusedItem(*args
, **kwargs
):
4713 """GetFocusedItem(self) -> long"""
4714 return _controls_
.ListView_GetFocusedItem(*args
, **kwargs
)
4716 def GetNextSelected(*args
, **kwargs
):
4717 """GetNextSelected(self, long item) -> long"""
4718 return _controls_
.ListView_GetNextSelected(*args
, **kwargs
)
4720 def GetFirstSelected(*args
, **kwargs
):
4721 """GetFirstSelected(self) -> long"""
4722 return _controls_
.ListView_GetFirstSelected(*args
, **kwargs
)
4724 def IsSelected(*args
, **kwargs
):
4725 """IsSelected(self, long index) -> bool"""
4726 return _controls_
.ListView_IsSelected(*args
, **kwargs
)
4728 def SetColumnImage(*args
, **kwargs
):
4729 """SetColumnImage(self, int col, int image)"""
4730 return _controls_
.ListView_SetColumnImage(*args
, **kwargs
)
4732 def ClearColumnImage(*args
, **kwargs
):
4733 """ClearColumnImage(self, int col)"""
4734 return _controls_
.ListView_ClearColumnImage(*args
, **kwargs
)
4736 _controls_
.ListView_swigregister(ListView
)
4738 def PreListView(*args
, **kwargs
):
4739 """PreListView() -> ListView"""
4740 val
= _controls_
.new_PreListView(*args
, **kwargs
)
4743 #---------------------------------------------------------------------------
4745 TR_NO_BUTTONS
= _controls_
.TR_NO_BUTTONS
4746 TR_HAS_BUTTONS
= _controls_
.TR_HAS_BUTTONS
4747 TR_NO_LINES
= _controls_
.TR_NO_LINES
4748 TR_LINES_AT_ROOT
= _controls_
.TR_LINES_AT_ROOT
4749 TR_SINGLE
= _controls_
.TR_SINGLE
4750 TR_MULTIPLE
= _controls_
.TR_MULTIPLE
4751 TR_EXTENDED
= _controls_
.TR_EXTENDED
4752 TR_HAS_VARIABLE_ROW_HEIGHT
= _controls_
.TR_HAS_VARIABLE_ROW_HEIGHT
4753 TR_EDIT_LABELS
= _controls_
.TR_EDIT_LABELS
4754 TR_HIDE_ROOT
= _controls_
.TR_HIDE_ROOT
4755 TR_ROW_LINES
= _controls_
.TR_ROW_LINES
4756 TR_FULL_ROW_HIGHLIGHT
= _controls_
.TR_FULL_ROW_HIGHLIGHT
4757 TR_DEFAULT_STYLE
= _controls_
.TR_DEFAULT_STYLE
4758 TR_TWIST_BUTTONS
= _controls_
.TR_TWIST_BUTTONS
4761 wxTR_AQUA_BUTTONS
= 0
4763 TreeItemIcon_Normal
= _controls_
.TreeItemIcon_Normal
4764 TreeItemIcon_Selected
= _controls_
.TreeItemIcon_Selected
4765 TreeItemIcon_Expanded
= _controls_
.TreeItemIcon_Expanded
4766 TreeItemIcon_SelectedExpanded
= _controls_
.TreeItemIcon_SelectedExpanded
4767 TreeItemIcon_Max
= _controls_
.TreeItemIcon_Max
4768 TREE_HITTEST_ABOVE
= _controls_
.TREE_HITTEST_ABOVE
4769 TREE_HITTEST_BELOW
= _controls_
.TREE_HITTEST_BELOW
4770 TREE_HITTEST_NOWHERE
= _controls_
.TREE_HITTEST_NOWHERE
4771 TREE_HITTEST_ONITEMBUTTON
= _controls_
.TREE_HITTEST_ONITEMBUTTON
4772 TREE_HITTEST_ONITEMICON
= _controls_
.TREE_HITTEST_ONITEMICON
4773 TREE_HITTEST_ONITEMINDENT
= _controls_
.TREE_HITTEST_ONITEMINDENT
4774 TREE_HITTEST_ONITEMLABEL
= _controls_
.TREE_HITTEST_ONITEMLABEL
4775 TREE_HITTEST_ONITEMRIGHT
= _controls_
.TREE_HITTEST_ONITEMRIGHT
4776 TREE_HITTEST_ONITEMSTATEICON
= _controls_
.TREE_HITTEST_ONITEMSTATEICON
4777 TREE_HITTEST_TOLEFT
= _controls_
.TREE_HITTEST_TOLEFT
4778 TREE_HITTEST_TORIGHT
= _controls_
.TREE_HITTEST_TORIGHT
4779 TREE_HITTEST_ONITEMUPPERPART
= _controls_
.TREE_HITTEST_ONITEMUPPERPART
4780 TREE_HITTEST_ONITEMLOWERPART
= _controls_
.TREE_HITTEST_ONITEMLOWERPART
4781 TREE_HITTEST_ONITEM
= _controls_
.TREE_HITTEST_ONITEM
4782 #---------------------------------------------------------------------------
4784 class TreeItemId(object):
4785 """Proxy of C++ TreeItemId class"""
4786 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4787 __repr__
= _swig_repr
4788 def __init__(self
, *args
, **kwargs
):
4789 """__init__(self) -> TreeItemId"""
4790 _controls_
.TreeItemId_swiginit(self
,_controls_
.new_TreeItemId(*args
, **kwargs
))
4791 __swig_destroy__
= _controls_
.delete_TreeItemId
4792 __del__
= lambda self
: None;
4793 def IsOk(*args
, **kwargs
):
4794 """IsOk(self) -> bool"""
4795 return _controls_
.TreeItemId_IsOk(*args
, **kwargs
)
4797 def __eq__(*args
, **kwargs
):
4798 """__eq__(self, TreeItemId other) -> bool"""
4799 return _controls_
.TreeItemId___eq__(*args
, **kwargs
)
4801 def __ne__(*args
, **kwargs
):
4802 """__ne__(self, TreeItemId other) -> bool"""
4803 return _controls_
.TreeItemId___ne__(*args
, **kwargs
)
4805 m_pItem
= property(_controls_
.TreeItemId_m_pItem_get
, _controls_
.TreeItemId_m_pItem_set
)
4807 def __nonzero__(self
): return self
.IsOk()
4808 _controls_
.TreeItemId_swigregister(TreeItemId
)
4809 TreeCtrlNameStr
= cvar
.TreeCtrlNameStr
4811 class TreeItemData(object):
4812 """Proxy of C++ TreeItemData class"""
4813 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4814 __repr__
= _swig_repr
4815 def __init__(self
, *args
, **kwargs
):
4816 """__init__(self, PyObject obj=None) -> TreeItemData"""
4817 _controls_
.TreeItemData_swiginit(self
,_controls_
.new_TreeItemData(*args
, **kwargs
))
4818 __swig_destroy__
= _controls_
.delete_TreeItemData
4819 __del__
= lambda self
: None;
4820 def GetData(*args
, **kwargs
):
4821 """GetData(self) -> PyObject"""
4822 return _controls_
.TreeItemData_GetData(*args
, **kwargs
)
4824 def SetData(*args
, **kwargs
):
4825 """SetData(self, PyObject obj)"""
4826 return _controls_
.TreeItemData_SetData(*args
, **kwargs
)
4828 def GetId(*args
, **kwargs
):
4829 """GetId(self) -> TreeItemId"""
4830 return _controls_
.TreeItemData_GetId(*args
, **kwargs
)
4832 def SetId(*args
, **kwargs
):
4833 """SetId(self, TreeItemId id)"""
4834 return _controls_
.TreeItemData_SetId(*args
, **kwargs
)
4836 def Destroy(*args
, **kwargs
):
4838 val
= _controls_
.TreeItemData_Destroy(*args
, **kwargs
)
4842 _controls_
.TreeItemData_swigregister(TreeItemData
)
4844 #---------------------------------------------------------------------------
4846 wxEVT_COMMAND_TREE_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_DRAG
4847 wxEVT_COMMAND_TREE_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_RDRAG
4848 wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
4849 wxEVT_COMMAND_TREE_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_END_LABEL_EDIT
4850 wxEVT_COMMAND_TREE_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_TREE_DELETE_ITEM
4851 wxEVT_COMMAND_TREE_GET_INFO
= _controls_
.wxEVT_COMMAND_TREE_GET_INFO
4852 wxEVT_COMMAND_TREE_SET_INFO
= _controls_
.wxEVT_COMMAND_TREE_SET_INFO
4853 wxEVT_COMMAND_TREE_ITEM_EXPANDED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDED
4854 wxEVT_COMMAND_TREE_ITEM_EXPANDING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDING
4855 wxEVT_COMMAND_TREE_ITEM_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSED
4856 wxEVT_COMMAND_TREE_ITEM_COLLAPSING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSING
4857 wxEVT_COMMAND_TREE_SEL_CHANGED
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGED
4858 wxEVT_COMMAND_TREE_SEL_CHANGING
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGING
4859 wxEVT_COMMAND_TREE_KEY_DOWN
= _controls_
.wxEVT_COMMAND_TREE_KEY_DOWN
4860 wxEVT_COMMAND_TREE_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_ACTIVATED
4861 wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
4862 wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
4863 wxEVT_COMMAND_TREE_END_DRAG
= _controls_
.wxEVT_COMMAND_TREE_END_DRAG
4864 wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
4865 wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
= _controls_
.wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
4866 wxEVT_COMMAND_TREE_ITEM_MENU
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MENU
4867 EVT_TREE_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG
, 1)
4868 EVT_TREE_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG
, 1)
4869 EVT_TREE_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, 1)
4870 EVT_TREE_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, 1)
4871 EVT_TREE_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM
, 1)
4872 EVT_TREE_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO
, 1)
4873 EVT_TREE_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO
, 1)
4874 EVT_TREE_ITEM_EXPANDED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED
, 1)
4875 EVT_TREE_ITEM_EXPANDING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, 1)
4876 EVT_TREE_ITEM_COLLAPSED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, 1)
4877 EVT_TREE_ITEM_COLLAPSING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, 1)
4878 EVT_TREE_SEL_CHANGED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED
, 1)
4879 EVT_TREE_SEL_CHANGING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING
, 1)
4880 EVT_TREE_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN
, 1)
4881 EVT_TREE_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, 1)
4882 EVT_TREE_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, 1)
4883 EVT_TREE_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, 1)
4884 EVT_TREE_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG
, 1)
4885 EVT_TREE_STATE_IMAGE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
, 1)
4886 EVT_TREE_ITEM_GETTOOLTIP
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
, 1)
4887 EVT_TREE_ITEM_MENU
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MENU
, 1)
4889 class TreeEvent(_core
.NotifyEvent
):
4890 """Proxy of C++ TreeEvent class"""
4891 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4892 __repr__
= _swig_repr
4893 def __init__(self
, *args
):
4895 __init__(self, EventType commandType=wxEVT_NULL, int id=0) -> TreeEvent
4896 __init__(self, EventType commandType, TreeCtrl tree, TreeItemId item=NullTreeItemId) -> TreeEvent
4898 _controls_
.TreeEvent_swiginit(self
,_controls_
.new_TreeEvent(*args
))
4899 def GetItem(*args
, **kwargs
):
4900 """GetItem(self) -> TreeItemId"""
4901 return _controls_
.TreeEvent_GetItem(*args
, **kwargs
)
4903 def SetItem(*args
, **kwargs
):
4904 """SetItem(self, TreeItemId item)"""
4905 return _controls_
.TreeEvent_SetItem(*args
, **kwargs
)
4907 def GetOldItem(*args
, **kwargs
):
4908 """GetOldItem(self) -> TreeItemId"""
4909 return _controls_
.TreeEvent_GetOldItem(*args
, **kwargs
)
4911 def SetOldItem(*args
, **kwargs
):
4912 """SetOldItem(self, TreeItemId item)"""
4913 return _controls_
.TreeEvent_SetOldItem(*args
, **kwargs
)
4915 def GetPoint(*args
, **kwargs
):
4916 """GetPoint(self) -> Point"""
4917 return _controls_
.TreeEvent_GetPoint(*args
, **kwargs
)
4919 def SetPoint(*args
, **kwargs
):
4920 """SetPoint(self, Point pt)"""
4921 return _controls_
.TreeEvent_SetPoint(*args
, **kwargs
)
4923 def GetKeyEvent(*args
, **kwargs
):
4924 """GetKeyEvent(self) -> KeyEvent"""
4925 return _controls_
.TreeEvent_GetKeyEvent(*args
, **kwargs
)
4927 def GetKeyCode(*args
, **kwargs
):
4928 """GetKeyCode(self) -> int"""
4929 return _controls_
.TreeEvent_GetKeyCode(*args
, **kwargs
)
4931 def SetKeyEvent(*args
, **kwargs
):
4932 """SetKeyEvent(self, KeyEvent evt)"""
4933 return _controls_
.TreeEvent_SetKeyEvent(*args
, **kwargs
)
4935 def GetLabel(*args
, **kwargs
):
4936 """GetLabel(self) -> String"""
4937 return _controls_
.TreeEvent_GetLabel(*args
, **kwargs
)
4939 def SetLabel(*args
, **kwargs
):
4940 """SetLabel(self, String label)"""
4941 return _controls_
.TreeEvent_SetLabel(*args
, **kwargs
)
4943 def IsEditCancelled(*args
, **kwargs
):
4944 """IsEditCancelled(self) -> bool"""
4945 return _controls_
.TreeEvent_IsEditCancelled(*args
, **kwargs
)
4947 def SetEditCanceled(*args
, **kwargs
):
4948 """SetEditCanceled(self, bool editCancelled)"""
4949 return _controls_
.TreeEvent_SetEditCanceled(*args
, **kwargs
)
4951 def SetToolTip(*args
, **kwargs
):
4952 """SetToolTip(self, String toolTip)"""
4953 return _controls_
.TreeEvent_SetToolTip(*args
, **kwargs
)
4955 def GetToolTip(*args
, **kwargs
):
4956 """GetToolTip(self) -> String"""
4957 return _controls_
.TreeEvent_GetToolTip(*args
, **kwargs
)
4959 _controls_
.TreeEvent_swigregister(TreeEvent
)
4961 #---------------------------------------------------------------------------
4963 class TreeCtrl(_core
.Control
):
4964 """Proxy of C++ TreeCtrl class"""
4965 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4966 __repr__
= _swig_repr
4967 def __init__(self
, *args
, **kwargs
):
4969 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4970 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
4971 Validator validator=DefaultValidator,
4972 String name=TreeCtrlNameStr) -> TreeCtrl
4974 _controls_
.TreeCtrl_swiginit(self
,_controls_
.new_TreeCtrl(*args
, **kwargs
))
4975 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, TreeCtrl
)
4977 def Create(*args
, **kwargs
):
4979 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4980 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
4981 Validator validator=DefaultValidator,
4982 String name=TreeCtrlNameStr) -> bool
4984 Do the 2nd phase and create the GUI control.
4986 return _controls_
.TreeCtrl_Create(*args
, **kwargs
)
4988 def _setCallbackInfo(*args
, **kwargs
):
4989 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4990 return _controls_
.TreeCtrl__setCallbackInfo(*args
, **kwargs
)
4992 def GetCount(*args
, **kwargs
):
4993 """GetCount(self) -> unsigned int"""
4994 return _controls_
.TreeCtrl_GetCount(*args
, **kwargs
)
4996 def GetIndent(*args
, **kwargs
):
4997 """GetIndent(self) -> unsigned int"""
4998 return _controls_
.TreeCtrl_GetIndent(*args
, **kwargs
)
5000 def SetIndent(*args
, **kwargs
):
5001 """SetIndent(self, unsigned int indent)"""
5002 return _controls_
.TreeCtrl_SetIndent(*args
, **kwargs
)
5004 def GetSpacing(*args
, **kwargs
):
5005 """GetSpacing(self) -> unsigned int"""
5006 return _controls_
.TreeCtrl_GetSpacing(*args
, **kwargs
)
5008 def SetSpacing(*args
, **kwargs
):
5009 """SetSpacing(self, unsigned int spacing)"""
5010 return _controls_
.TreeCtrl_SetSpacing(*args
, **kwargs
)
5012 def GetImageList(*args
, **kwargs
):
5013 """GetImageList(self) -> ImageList"""
5014 return _controls_
.TreeCtrl_GetImageList(*args
, **kwargs
)
5016 def GetStateImageList(*args
, **kwargs
):
5017 """GetStateImageList(self) -> ImageList"""
5018 return _controls_
.TreeCtrl_GetStateImageList(*args
, **kwargs
)
5020 def SetImageList(*args
, **kwargs
):
5021 """SetImageList(self, ImageList imageList)"""
5022 return _controls_
.TreeCtrl_SetImageList(*args
, **kwargs
)
5024 def SetStateImageList(*args
, **kwargs
):
5025 """SetStateImageList(self, ImageList imageList)"""
5026 return _controls_
.TreeCtrl_SetStateImageList(*args
, **kwargs
)
5028 def AssignImageList(*args
, **kwargs
):
5029 """AssignImageList(self, ImageList imageList)"""
5030 return _controls_
.TreeCtrl_AssignImageList(*args
, **kwargs
)
5032 def AssignStateImageList(*args
, **kwargs
):
5033 """AssignStateImageList(self, ImageList imageList)"""
5034 return _controls_
.TreeCtrl_AssignStateImageList(*args
, **kwargs
)
5036 def GetItemText(*args
, **kwargs
):
5037 """GetItemText(self, TreeItemId item) -> String"""
5038 return _controls_
.TreeCtrl_GetItemText(*args
, **kwargs
)
5040 def GetItemImage(*args
, **kwargs
):
5041 """GetItemImage(self, TreeItemId item, int which=TreeItemIcon_Normal) -> int"""
5042 return _controls_
.TreeCtrl_GetItemImage(*args
, **kwargs
)
5044 def GetItemData(*args
, **kwargs
):
5045 """GetItemData(self, TreeItemId item) -> TreeItemData"""
5046 return _controls_
.TreeCtrl_GetItemData(*args
, **kwargs
)
5048 def GetItemPyData(*args
, **kwargs
):
5049 """GetItemPyData(self, TreeItemId item) -> PyObject"""
5050 return _controls_
.TreeCtrl_GetItemPyData(*args
, **kwargs
)
5052 GetPyData
= GetItemPyData
5053 def GetItemTextColour(*args
, **kwargs
):
5054 """GetItemTextColour(self, TreeItemId item) -> Colour"""
5055 return _controls_
.TreeCtrl_GetItemTextColour(*args
, **kwargs
)
5057 def GetItemBackgroundColour(*args
, **kwargs
):
5058 """GetItemBackgroundColour(self, TreeItemId item) -> Colour"""
5059 return _controls_
.TreeCtrl_GetItemBackgroundColour(*args
, **kwargs
)
5061 def GetItemFont(*args
, **kwargs
):
5062 """GetItemFont(self, TreeItemId item) -> Font"""
5063 return _controls_
.TreeCtrl_GetItemFont(*args
, **kwargs
)
5065 def SetItemText(*args
, **kwargs
):
5066 """SetItemText(self, TreeItemId item, String text)"""
5067 return _controls_
.TreeCtrl_SetItemText(*args
, **kwargs
)
5069 def SetItemImage(*args
, **kwargs
):
5070 """SetItemImage(self, TreeItemId item, int image, int which=TreeItemIcon_Normal)"""
5071 return _controls_
.TreeCtrl_SetItemImage(*args
, **kwargs
)
5073 def SetItemData(*args
, **kwargs
):
5074 """SetItemData(self, TreeItemId item, TreeItemData data)"""
5075 return _controls_
.TreeCtrl_SetItemData(*args
, **kwargs
)
5077 def SetItemPyData(*args
, **kwargs
):
5078 """SetItemPyData(self, TreeItemId item, PyObject obj)"""
5079 return _controls_
.TreeCtrl_SetItemPyData(*args
, **kwargs
)
5081 SetPyData
= SetItemPyData
5082 def SetItemHasChildren(*args
, **kwargs
):
5083 """SetItemHasChildren(self, TreeItemId item, bool has=True)"""
5084 return _controls_
.TreeCtrl_SetItemHasChildren(*args
, **kwargs
)
5086 def SetItemBold(*args
, **kwargs
):
5087 """SetItemBold(self, TreeItemId item, bool bold=True)"""
5088 return _controls_
.TreeCtrl_SetItemBold(*args
, **kwargs
)
5090 def SetItemDropHighlight(*args
, **kwargs
):
5091 """SetItemDropHighlight(self, TreeItemId item, bool highlight=True)"""
5092 return _controls_
.TreeCtrl_SetItemDropHighlight(*args
, **kwargs
)
5094 def SetItemTextColour(*args
, **kwargs
):
5095 """SetItemTextColour(self, TreeItemId item, Colour col)"""
5096 return _controls_
.TreeCtrl_SetItemTextColour(*args
, **kwargs
)
5098 def SetItemBackgroundColour(*args
, **kwargs
):
5099 """SetItemBackgroundColour(self, TreeItemId item, Colour col)"""
5100 return _controls_
.TreeCtrl_SetItemBackgroundColour(*args
, **kwargs
)
5102 def SetItemFont(*args
, **kwargs
):
5103 """SetItemFont(self, TreeItemId item, Font font)"""
5104 return _controls_
.TreeCtrl_SetItemFont(*args
, **kwargs
)
5106 def IsVisible(*args
, **kwargs
):
5107 """IsVisible(self, TreeItemId item) -> bool"""
5108 return _controls_
.TreeCtrl_IsVisible(*args
, **kwargs
)
5110 def ItemHasChildren(*args
, **kwargs
):
5111 """ItemHasChildren(self, TreeItemId item) -> bool"""
5112 return _controls_
.TreeCtrl_ItemHasChildren(*args
, **kwargs
)
5114 def IsExpanded(*args
, **kwargs
):
5115 """IsExpanded(self, TreeItemId item) -> bool"""
5116 return _controls_
.TreeCtrl_IsExpanded(*args
, **kwargs
)
5118 def IsSelected(*args
, **kwargs
):
5119 """IsSelected(self, TreeItemId item) -> bool"""
5120 return _controls_
.TreeCtrl_IsSelected(*args
, **kwargs
)
5122 def IsBold(*args
, **kwargs
):
5123 """IsBold(self, TreeItemId item) -> bool"""
5124 return _controls_
.TreeCtrl_IsBold(*args
, **kwargs
)
5126 def GetChildrenCount(*args
, **kwargs
):
5127 """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t"""
5128 return _controls_
.TreeCtrl_GetChildrenCount(*args
, **kwargs
)
5130 def GetRootItem(*args
, **kwargs
):
5131 """GetRootItem(self) -> TreeItemId"""
5132 return _controls_
.TreeCtrl_GetRootItem(*args
, **kwargs
)
5134 def GetSelection(*args
, **kwargs
):
5135 """GetSelection(self) -> TreeItemId"""
5136 return _controls_
.TreeCtrl_GetSelection(*args
, **kwargs
)
5138 def GetSelections(*args
, **kwargs
):
5139 """GetSelections(self) -> PyObject"""
5140 return _controls_
.TreeCtrl_GetSelections(*args
, **kwargs
)
5142 def GetItemParent(*args
, **kwargs
):
5143 """GetItemParent(self, TreeItemId item) -> TreeItemId"""
5144 return _controls_
.TreeCtrl_GetItemParent(*args
, **kwargs
)
5146 def GetFirstChild(*args
, **kwargs
):
5147 """GetFirstChild(self, TreeItemId item) -> PyObject"""
5148 return _controls_
.TreeCtrl_GetFirstChild(*args
, **kwargs
)
5150 def GetNextChild(*args
, **kwargs
):
5151 """GetNextChild(self, TreeItemId item, void cookie) -> PyObject"""
5152 return _controls_
.TreeCtrl_GetNextChild(*args
, **kwargs
)
5154 def GetLastChild(*args
, **kwargs
):
5155 """GetLastChild(self, TreeItemId item) -> TreeItemId"""
5156 return _controls_
.TreeCtrl_GetLastChild(*args
, **kwargs
)
5158 def GetNextSibling(*args
, **kwargs
):
5159 """GetNextSibling(self, TreeItemId item) -> TreeItemId"""
5160 return _controls_
.TreeCtrl_GetNextSibling(*args
, **kwargs
)
5162 def GetPrevSibling(*args
, **kwargs
):
5163 """GetPrevSibling(self, TreeItemId item) -> TreeItemId"""
5164 return _controls_
.TreeCtrl_GetPrevSibling(*args
, **kwargs
)
5166 def GetFirstVisibleItem(*args
, **kwargs
):
5167 """GetFirstVisibleItem(self) -> TreeItemId"""
5168 return _controls_
.TreeCtrl_GetFirstVisibleItem(*args
, **kwargs
)
5170 def GetNextVisible(*args
, **kwargs
):
5171 """GetNextVisible(self, TreeItemId item) -> TreeItemId"""
5172 return _controls_
.TreeCtrl_GetNextVisible(*args
, **kwargs
)
5174 def GetPrevVisible(*args
, **kwargs
):
5175 """GetPrevVisible(self, TreeItemId item) -> TreeItemId"""
5176 return _controls_
.TreeCtrl_GetPrevVisible(*args
, **kwargs
)
5178 def AddRoot(*args
, **kwargs
):
5179 """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId"""
5180 return _controls_
.TreeCtrl_AddRoot(*args
, **kwargs
)
5182 def PrependItem(*args
, **kwargs
):
5184 PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5185 TreeItemData data=None) -> TreeItemId
5187 return _controls_
.TreeCtrl_PrependItem(*args
, **kwargs
)
5189 def InsertItem(*args
, **kwargs
):
5191 InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text,
5192 int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5194 return _controls_
.TreeCtrl_InsertItem(*args
, **kwargs
)
5196 def InsertItemBefore(*args
, **kwargs
):
5198 InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1,
5199 int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5201 return _controls_
.TreeCtrl_InsertItemBefore(*args
, **kwargs
)
5203 def AppendItem(*args
, **kwargs
):
5205 AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5206 TreeItemData data=None) -> TreeItemId
5208 return _controls_
.TreeCtrl_AppendItem(*args
, **kwargs
)
5210 def Delete(*args
, **kwargs
):
5211 """Delete(self, TreeItemId item)"""
5212 return _controls_
.TreeCtrl_Delete(*args
, **kwargs
)
5214 def DeleteChildren(*args
, **kwargs
):
5215 """DeleteChildren(self, TreeItemId item)"""
5216 return _controls_
.TreeCtrl_DeleteChildren(*args
, **kwargs
)
5218 def DeleteAllItems(*args
, **kwargs
):
5219 """DeleteAllItems(self)"""
5220 return _controls_
.TreeCtrl_DeleteAllItems(*args
, **kwargs
)
5222 def Expand(*args
, **kwargs
):
5223 """Expand(self, TreeItemId item)"""
5224 return _controls_
.TreeCtrl_Expand(*args
, **kwargs
)
5226 def ExpandAllChildren(*args
, **kwargs
):
5227 """ExpandAllChildren(self, TreeItemId item)"""
5228 return _controls_
.TreeCtrl_ExpandAllChildren(*args
, **kwargs
)
5230 def ExpandAll(*args
, **kwargs
):
5231 """ExpandAll(self)"""
5232 return _controls_
.TreeCtrl_ExpandAll(*args
, **kwargs
)
5234 def Collapse(*args
, **kwargs
):
5235 """Collapse(self, TreeItemId item)"""
5236 return _controls_
.TreeCtrl_Collapse(*args
, **kwargs
)
5238 def CollapseAndReset(*args
, **kwargs
):
5239 """CollapseAndReset(self, TreeItemId item)"""
5240 return _controls_
.TreeCtrl_CollapseAndReset(*args
, **kwargs
)
5242 def Toggle(*args
, **kwargs
):
5243 """Toggle(self, TreeItemId item)"""
5244 return _controls_
.TreeCtrl_Toggle(*args
, **kwargs
)
5246 def Unselect(*args
, **kwargs
):
5247 """Unselect(self)"""
5248 return _controls_
.TreeCtrl_Unselect(*args
, **kwargs
)
5250 def UnselectItem(*args
, **kwargs
):
5251 """UnselectItem(self, TreeItemId item)"""
5252 return _controls_
.TreeCtrl_UnselectItem(*args
, **kwargs
)
5254 def UnselectAll(*args
, **kwargs
):
5255 """UnselectAll(self)"""
5256 return _controls_
.TreeCtrl_UnselectAll(*args
, **kwargs
)
5258 def SelectItem(*args
, **kwargs
):
5259 """SelectItem(self, TreeItemId item, bool select=True)"""
5260 return _controls_
.TreeCtrl_SelectItem(*args
, **kwargs
)
5262 def ToggleItemSelection(*args
, **kwargs
):
5263 """ToggleItemSelection(self, TreeItemId item)"""
5264 return _controls_
.TreeCtrl_ToggleItemSelection(*args
, **kwargs
)
5266 def EnsureVisible(*args
, **kwargs
):
5267 """EnsureVisible(self, TreeItemId item)"""
5268 return _controls_
.TreeCtrl_EnsureVisible(*args
, **kwargs
)
5270 def ScrollTo(*args
, **kwargs
):
5271 """ScrollTo(self, TreeItemId item)"""
5272 return _controls_
.TreeCtrl_ScrollTo(*args
, **kwargs
)
5274 def EditLabel(*args
, **kwargs
):
5275 """EditLabel(self, TreeItemId item)"""
5276 return _controls_
.TreeCtrl_EditLabel(*args
, **kwargs
)
5278 def GetEditControl(*args
, **kwargs
):
5279 """GetEditControl(self) -> TextCtrl"""
5280 return _controls_
.TreeCtrl_GetEditControl(*args
, **kwargs
)
5282 def SortChildren(*args
, **kwargs
):
5283 """SortChildren(self, TreeItemId item)"""
5284 return _controls_
.TreeCtrl_SortChildren(*args
, **kwargs
)
5286 def HitTest(*args
, **kwargs
):
5288 HitTest(Point point) -> (item, where)
5290 Determine which item (if any) belongs the given point. The coordinates
5291 specified are relative to the client area of tree ctrl and the where return
5292 value is set to a bitmask of wxTREE_HITTEST_xxx constants.
5295 return _controls_
.TreeCtrl_HitTest(*args
, **kwargs
)
5297 def GetBoundingRect(*args
, **kwargs
):
5298 """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject"""
5299 return _controls_
.TreeCtrl_GetBoundingRect(*args
, **kwargs
)
5301 def GetClassDefaultAttributes(*args
, **kwargs
):
5303 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5305 Get the default attributes for this class. This is useful if you want
5306 to use the same font or colour in your own control as in a standard
5307 control -- which is a much better idea than hard coding specific
5308 colours or fonts which might look completely out of place on the
5309 user's system, especially if it uses themes.
5311 The variant parameter is only relevant under Mac currently and is
5312 ignore under other platforms. Under Mac, it will change the size of
5313 the returned font. See `wx.Window.SetWindowVariant` for more about
5316 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5318 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
5319 def SetQuickBestSize(*args
, **kwargs
):
5320 """SetQuickBestSize(self, bool q)"""
5321 return _controls_
.TreeCtrl_SetQuickBestSize(*args
, **kwargs
)
5323 def GetQuickBestSize(*args
, **kwargs
):
5324 """GetQuickBestSize(self) -> bool"""
5325 return _controls_
.TreeCtrl_GetQuickBestSize(*args
, **kwargs
)
5327 _controls_
.TreeCtrl_swigregister(TreeCtrl
)
5329 def PreTreeCtrl(*args
, **kwargs
):
5330 """PreTreeCtrl() -> TreeCtrl"""
5331 val
= _controls_
.new_PreTreeCtrl(*args
, **kwargs
)
5334 def TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
5336 TreeCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5338 Get the default attributes for this class. This is useful if you want
5339 to use the same font or colour in your own control as in a standard
5340 control -- which is a much better idea than hard coding specific
5341 colours or fonts which might look completely out of place on the
5342 user's system, especially if it uses themes.
5344 The variant parameter is only relevant under Mac currently and is
5345 ignore under other platforms. Under Mac, it will change the size of
5346 the returned font. See `wx.Window.SetWindowVariant` for more about
5349 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5351 #---------------------------------------------------------------------------
5353 DIRCTRL_DIR_ONLY
= _controls_
.DIRCTRL_DIR_ONLY
5354 DIRCTRL_SELECT_FIRST
= _controls_
.DIRCTRL_SELECT_FIRST
5355 DIRCTRL_SHOW_FILTERS
= _controls_
.DIRCTRL_SHOW_FILTERS
5356 DIRCTRL_3D_INTERNAL
= _controls_
.DIRCTRL_3D_INTERNAL
5357 DIRCTRL_EDIT_LABELS
= _controls_
.DIRCTRL_EDIT_LABELS
5358 class GenericDirCtrl(_core
.Control
):
5359 """Proxy of C++ GenericDirCtrl class"""
5360 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5361 __repr__
= _swig_repr
5362 def __init__(self
, *args
, **kwargs
):
5364 __init__(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5365 Point pos=DefaultPosition, Size size=DefaultSize,
5366 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5367 String filter=EmptyString,
5368 int defaultFilter=0, String name=TreeCtrlNameStr) -> GenericDirCtrl
5370 _controls_
.GenericDirCtrl_swiginit(self
,_controls_
.new_GenericDirCtrl(*args
, **kwargs
))
5371 self
._setOORInfo
(self
)
5373 def Create(*args
, **kwargs
):
5375 Create(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5376 Point pos=DefaultPosition, Size size=DefaultSize,
5377 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5378 String filter=EmptyString,
5379 int defaultFilter=0, String name=TreeCtrlNameStr) -> bool
5381 return _controls_
.GenericDirCtrl_Create(*args
, **kwargs
)
5383 def ExpandPath(*args
, **kwargs
):
5384 """ExpandPath(self, String path) -> bool"""
5385 return _controls_
.GenericDirCtrl_ExpandPath(*args
, **kwargs
)
5387 def CollapsePath(*args
, **kwargs
):
5388 """CollapsePath(self, String path) -> bool"""
5389 return _controls_
.GenericDirCtrl_CollapsePath(*args
, **kwargs
)
5391 def GetDefaultPath(*args
, **kwargs
):
5392 """GetDefaultPath(self) -> String"""
5393 return _controls_
.GenericDirCtrl_GetDefaultPath(*args
, **kwargs
)
5395 def SetDefaultPath(*args
, **kwargs
):
5396 """SetDefaultPath(self, String path)"""
5397 return _controls_
.GenericDirCtrl_SetDefaultPath(*args
, **kwargs
)
5399 def GetPath(*args
, **kwargs
):
5400 """GetPath(self) -> String"""
5401 return _controls_
.GenericDirCtrl_GetPath(*args
, **kwargs
)
5403 def GetFilePath(*args
, **kwargs
):
5404 """GetFilePath(self) -> String"""
5405 return _controls_
.GenericDirCtrl_GetFilePath(*args
, **kwargs
)
5407 def SetPath(*args
, **kwargs
):
5408 """SetPath(self, String path)"""
5409 return _controls_
.GenericDirCtrl_SetPath(*args
, **kwargs
)
5411 def ShowHidden(*args
, **kwargs
):
5412 """ShowHidden(self, bool show)"""
5413 return _controls_
.GenericDirCtrl_ShowHidden(*args
, **kwargs
)
5415 def GetShowHidden(*args
, **kwargs
):
5416 """GetShowHidden(self) -> bool"""
5417 return _controls_
.GenericDirCtrl_GetShowHidden(*args
, **kwargs
)
5419 def GetFilter(*args
, **kwargs
):
5420 """GetFilter(self) -> String"""
5421 return _controls_
.GenericDirCtrl_GetFilter(*args
, **kwargs
)
5423 def SetFilter(*args
, **kwargs
):
5424 """SetFilter(self, String filter)"""
5425 return _controls_
.GenericDirCtrl_SetFilter(*args
, **kwargs
)
5427 def GetFilterIndex(*args
, **kwargs
):
5428 """GetFilterIndex(self) -> int"""
5429 return _controls_
.GenericDirCtrl_GetFilterIndex(*args
, **kwargs
)
5431 def SetFilterIndex(*args
, **kwargs
):
5432 """SetFilterIndex(self, int n)"""
5433 return _controls_
.GenericDirCtrl_SetFilterIndex(*args
, **kwargs
)
5435 def GetRootId(*args
, **kwargs
):
5436 """GetRootId(self) -> TreeItemId"""
5437 return _controls_
.GenericDirCtrl_GetRootId(*args
, **kwargs
)
5439 def GetTreeCtrl(*args
, **kwargs
):
5440 """GetTreeCtrl(self) -> TreeCtrl"""
5441 return _controls_
.GenericDirCtrl_GetTreeCtrl(*args
, **kwargs
)
5443 def GetFilterListCtrl(*args
, **kwargs
):
5444 """GetFilterListCtrl(self) -> DirFilterListCtrl"""
5445 return _controls_
.GenericDirCtrl_GetFilterListCtrl(*args
, **kwargs
)
5447 def FindChild(*args
, **kwargs
):
5449 FindChild(wxTreeItemId parentId, wxString path) -> (item, done)
5451 Find the child that matches the first part of 'path'. E.g. if a child
5452 path is "/usr" and 'path' is "/usr/include" then the child for
5453 /usr is returned. If the path string has been used (we're at the
5454 leaf), done is set to True.
5457 return _controls_
.GenericDirCtrl_FindChild(*args
, **kwargs
)
5459 def DoResize(*args
, **kwargs
):
5460 """DoResize(self)"""
5461 return _controls_
.GenericDirCtrl_DoResize(*args
, **kwargs
)
5463 def ReCreateTree(*args
, **kwargs
):
5464 """ReCreateTree(self)"""
5465 return _controls_
.GenericDirCtrl_ReCreateTree(*args
, **kwargs
)
5467 _controls_
.GenericDirCtrl_swigregister(GenericDirCtrl
)
5468 DirDialogDefaultFolderStr
= cvar
.DirDialogDefaultFolderStr
5470 def PreGenericDirCtrl(*args
, **kwargs
):
5471 """PreGenericDirCtrl() -> GenericDirCtrl"""
5472 val
= _controls_
.new_PreGenericDirCtrl(*args
, **kwargs
)
5475 class DirFilterListCtrl(Choice
):
5476 """Proxy of C++ DirFilterListCtrl class"""
5477 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5478 __repr__
= _swig_repr
5479 def __init__(self
, *args
, **kwargs
):
5481 __init__(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5482 Size size=DefaultSize, long style=0) -> DirFilterListCtrl
5484 _controls_
.DirFilterListCtrl_swiginit(self
,_controls_
.new_DirFilterListCtrl(*args
, **kwargs
))
5485 self
._setOORInfo
(self
)
5487 def Create(*args
, **kwargs
):
5489 Create(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5490 Size size=DefaultSize, long style=0) -> bool
5492 return _controls_
.DirFilterListCtrl_Create(*args
, **kwargs
)
5494 def FillFilterList(*args
, **kwargs
):
5495 """FillFilterList(self, String filter, int defaultFilter)"""
5496 return _controls_
.DirFilterListCtrl_FillFilterList(*args
, **kwargs
)
5498 _controls_
.DirFilterListCtrl_swigregister(DirFilterListCtrl
)
5500 def PreDirFilterListCtrl(*args
, **kwargs
):
5501 """PreDirFilterListCtrl() -> DirFilterListCtrl"""
5502 val
= _controls_
.new_PreDirFilterListCtrl(*args
, **kwargs
)
5505 #---------------------------------------------------------------------------
5507 class PyControl(_core
.Control
):
5508 """Proxy of C++ PyControl class"""
5509 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5510 __repr__
= _swig_repr
5511 def __init__(self
, *args
, **kwargs
):
5513 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
5514 Size size=DefaultSize, long style=0, Validator validator=DefaultValidator,
5515 String name=ControlNameStr) -> PyControl
5517 _controls_
.PyControl_swiginit(self
,_controls_
.new_PyControl(*args
, **kwargs
))
5518 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyControl
)
5520 def _setCallbackInfo(*args
, **kwargs
):
5521 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5522 return _controls_
.PyControl__setCallbackInfo(*args
, **kwargs
)
5524 def SetBestSize(*args
, **kwargs
):
5525 """SetBestSize(self, Size size)"""
5526 return _controls_
.PyControl_SetBestSize(*args
, **kwargs
)
5528 def DoEraseBackground(*args
, **kwargs
):
5529 """DoEraseBackground(self, DC dc) -> bool"""
5530 return _controls_
.PyControl_DoEraseBackground(*args
, **kwargs
)
5532 def DoMoveWindow(*args
, **kwargs
):
5533 """DoMoveWindow(self, int x, int y, int width, int height)"""
5534 return _controls_
.PyControl_DoMoveWindow(*args
, **kwargs
)
5536 def DoSetSize(*args
, **kwargs
):
5537 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
5538 return _controls_
.PyControl_DoSetSize(*args
, **kwargs
)
5540 def DoSetClientSize(*args
, **kwargs
):
5541 """DoSetClientSize(self, int width, int height)"""
5542 return _controls_
.PyControl_DoSetClientSize(*args
, **kwargs
)
5544 def DoSetVirtualSize(*args
, **kwargs
):
5545 """DoSetVirtualSize(self, int x, int y)"""
5546 return _controls_
.PyControl_DoSetVirtualSize(*args
, **kwargs
)
5548 def DoGetSize(*args
, **kwargs
):
5549 """DoGetSize() -> (width, height)"""
5550 return _controls_
.PyControl_DoGetSize(*args
, **kwargs
)
5552 def DoGetClientSize(*args
, **kwargs
):
5553 """DoGetClientSize() -> (width, height)"""
5554 return _controls_
.PyControl_DoGetClientSize(*args
, **kwargs
)
5556 def DoGetPosition(*args
, **kwargs
):
5557 """DoGetPosition() -> (x,y)"""
5558 return _controls_
.PyControl_DoGetPosition(*args
, **kwargs
)
5560 def DoGetVirtualSize(*args
, **kwargs
):
5561 """DoGetVirtualSize(self) -> Size"""
5562 return _controls_
.PyControl_DoGetVirtualSize(*args
, **kwargs
)
5564 def DoGetBestSize(*args
, **kwargs
):
5565 """DoGetBestSize(self) -> Size"""
5566 return _controls_
.PyControl_DoGetBestSize(*args
, **kwargs
)
5568 def GetDefaultAttributes(*args
, **kwargs
):
5569 """GetDefaultAttributes(self) -> VisualAttributes"""
5570 return _controls_
.PyControl_GetDefaultAttributes(*args
, **kwargs
)
5572 def OnInternalIdle(*args
, **kwargs
):
5573 """OnInternalIdle(self)"""
5574 return _controls_
.PyControl_OnInternalIdle(*args
, **kwargs
)
5576 def base_DoMoveWindow(*args
, **kw
):
5577 return PyScrolledWindow
.DoMoveWindow(*args
, **kw
)
5578 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
5579 "Please use PyScrolledWindow.DoMoveWindow instead.")
5581 def base_DoSetSize(*args
, **kw
):
5582 return PyScrolledWindow
.DoSetSize(*args
, **kw
)
5583 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
5584 "Please use PyScrolledWindow.DoSetSize instead.")
5586 def base_DoSetClientSize(*args
, **kw
):
5587 return PyScrolledWindow
.DoSetClientSize(*args
, **kw
)
5588 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
5589 "Please use PyScrolledWindow.DoSetClientSize instead.")
5591 def base_DoSetVirtualSize(*args
, **kw
):
5592 return PyScrolledWindow
.DoSetVirtualSize(*args
, **kw
)
5593 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
5594 "Please use PyScrolledWindow.DoSetVirtualSize instead.")
5596 def base_DoGetSize(*args
, **kw
):
5597 return PyScrolledWindow
.DoGetSize(*args
, **kw
)
5598 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
5599 "Please use PyScrolledWindow.DoGetSize instead.")
5601 def base_DoGetClientSize(*args
, **kw
):
5602 return PyScrolledWindow
.DoGetClientSize(*args
, **kw
)
5603 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
5604 "Please use PyScrolledWindow.DoGetClientSize instead.")
5606 def base_DoGetPosition(*args
, **kw
):
5607 return PyScrolledWindow
.DoGetPosition(*args
, **kw
)
5608 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
5609 "Please use PyScrolledWindow.DoGetPosition instead.")
5611 def base_DoGetVirtualSize(*args
, **kw
):
5612 return PyScrolledWindow
.DoGetVirtualSize(*args
, **kw
)
5613 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
5614 "Please use PyScrolledWindow.DoGetVirtualSize instead.")
5616 def base_DoGetBestSize(*args
, **kw
):
5617 return PyScrolledWindow
.DoGetBestSize(*args
, **kw
)
5618 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
5619 "Please use PyScrolledWindow.DoGetBestSize instead.")
5621 def base_InitDialog(*args
, **kw
):
5622 return PyScrolledWindow
.InitDialog(*args
, **kw
)
5623 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
5624 "Please use PyScrolledWindow.InitDialog instead.")
5626 def base_TransferDataToWindow(*args
, **kw
):
5627 return PyScrolledWindow
.TransferDataToWindow(*args
, **kw
)
5628 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
5629 "Please use PyScrolledWindow.TransferDataToWindow instead.")
5631 def base_TransferDataFromWindow(*args
, **kw
):
5632 return PyScrolledWindow
.TransferDataFromWindow(*args
, **kw
)
5633 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
5634 "Please use PyScrolledWindow.TransferDataFromWindow instead.")
5636 def base_Validate(*args
, **kw
):
5637 return PyScrolledWindow
.Validate(*args
, **kw
)
5638 base_Validate
= wx
._deprecated
(base_Validate
,
5639 "Please use PyScrolledWindow.Validate instead.")
5641 def base_AcceptsFocus(*args
, **kw
):
5642 return PyScrolledWindow
.AcceptsFocus(*args
, **kw
)
5643 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
5644 "Please use PyScrolledWindow.AcceptsFocus instead.")
5646 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
5647 return PyScrolledWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
5648 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
5649 "Please use PyScrolledWindow.AcceptsFocusFromKeyboard instead.")
5651 def base_GetMaxSize(*args
, **kw
):
5652 return PyScrolledWindow
.GetMaxSize(*args
, **kw
)
5653 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
5654 "Please use PyScrolledWindow.GetMaxSize instead.")
5656 def base_AddChild(*args
, **kw
):
5657 return PyScrolledWindow
.AddChild(*args
, **kw
)
5658 base_AddChild
= wx
._deprecated
(base_AddChild
,
5659 "Please use PyScrolledWindow.AddChild instead.")
5661 def base_RemoveChild(*args
, **kw
):
5662 return PyScrolledWindow
.RemoveChild(*args
, **kw
)
5663 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
5664 "Please use PyScrolledWindow.RemoveChild instead.")
5666 def base_ShouldInheritColours(*args
, **kw
):
5667 return PyScrolledWindow
.ShouldInheritColours(*args
, **kw
)
5668 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
5669 "Please use PyScrolledWindow.ShouldInheritColours instead.")
5671 def base_GetDefaultAttributes(*args
, **kw
):
5672 return PyScrolledWindow
.GetDefaultAttributes(*args
, **kw
)
5673 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
5674 "Please use PyScrolledWindow.GetDefaultAttributes instead.")
5676 def base_OnInternalIdle(*args
, **kw
):
5677 return PyScrolledWindow
.OnInternalIdle(*args
, **kw
)
5678 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
5679 "Please use PyScrolledWindow.OnInternalIdle instead.")
5681 _controls_
.PyControl_swigregister(PyControl
)
5683 def PrePyControl(*args
, **kwargs
):
5684 """PrePyControl() -> PyControl"""
5685 val
= _controls_
.new_PrePyControl(*args
, **kwargs
)
5688 #---------------------------------------------------------------------------
5690 FRAME_EX_CONTEXTHELP
= _controls_
.FRAME_EX_CONTEXTHELP
5691 DIALOG_EX_CONTEXTHELP
= _controls_
.DIALOG_EX_CONTEXTHELP
5692 wxEVT_HELP
= _controls_
.wxEVT_HELP
5693 wxEVT_DETAILED_HELP
= _controls_
.wxEVT_DETAILED_HELP
5694 EVT_HELP
= wx
.PyEventBinder( wxEVT_HELP
, 1)
5695 EVT_HELP_RANGE
= wx
.PyEventBinder( wxEVT_HELP
, 2)
5696 EVT_DETAILED_HELP
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 1)
5697 EVT_DETAILED_HELP_RANGE
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 2)
5699 class HelpEvent(_core
.CommandEvent
):
5701 A help event is sent when the user has requested context-sensitive
5702 help. This can either be caused by the application requesting
5703 context-sensitive help mode via wx.ContextHelp, or (on MS Windows) by
5704 the system generating a WM_HELP message when the user pressed F1 or
5705 clicked on the query button in a dialog caption.
5707 A help event is sent to the window that the user clicked on, and is
5708 propagated up the window hierarchy until the event is processed or
5709 there are no more event handlers. The application should call
5710 event.GetId to check the identity of the clicked-on window, and then
5711 either show some suitable help or call event.Skip if the identifier is
5712 unrecognised. Calling Skip is important because it allows wxWindows to
5713 generate further events for ancestors of the clicked-on
5714 window. Otherwise it would be impossible to show help for container
5715 windows, since processing would stop after the first window found.
5717 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5718 __repr__
= _swig_repr
5719 Origin_Unknown
= _controls_
.HelpEvent_Origin_Unknown
5720 Origin_Keyboard
= _controls_
.HelpEvent_Origin_Keyboard
5721 Origin_HelpButton
= _controls_
.HelpEvent_Origin_HelpButton
5722 def __init__(self
, *args
, **kwargs
):
5724 __init__(self, EventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition,
5725 int origin=Origin_Unknown) -> HelpEvent
5727 _controls_
.HelpEvent_swiginit(self
,_controls_
.new_HelpEvent(*args
, **kwargs
))
5728 def GetPosition(*args
, **kwargs
):
5730 GetPosition(self) -> Point
5732 Returns the left-click position of the mouse, in screen
5733 coordinates. This allows the application to position the help
5736 return _controls_
.HelpEvent_GetPosition(*args
, **kwargs
)
5738 def SetPosition(*args
, **kwargs
):
5740 SetPosition(self, Point pos)
5742 Sets the left-click position of the mouse, in screen coordinates.
5744 return _controls_
.HelpEvent_SetPosition(*args
, **kwargs
)
5746 def GetLink(*args
, **kwargs
):
5748 GetLink(self) -> String
5750 Get an optional link to further help
5752 return _controls_
.HelpEvent_GetLink(*args
, **kwargs
)
5754 def SetLink(*args
, **kwargs
):
5756 SetLink(self, String link)
5758 Set an optional link to further help
5760 return _controls_
.HelpEvent_SetLink(*args
, **kwargs
)
5762 def GetTarget(*args
, **kwargs
):
5764 GetTarget(self) -> String
5766 Get an optional target to display help in. E.g. a window specification
5768 return _controls_
.HelpEvent_GetTarget(*args
, **kwargs
)
5770 def SetTarget(*args
, **kwargs
):
5772 SetTarget(self, String target)
5774 Set an optional target to display help in. E.g. a window specification
5776 return _controls_
.HelpEvent_SetTarget(*args
, **kwargs
)
5778 def GetOrigin(*args
, **kwargs
):
5780 GetOrigin(self) -> int
5782 Optiononal indication of the source of the event.
5784 return _controls_
.HelpEvent_GetOrigin(*args
, **kwargs
)
5786 def SetOrigin(*args
, **kwargs
):
5787 """SetOrigin(self, int origin)"""
5788 return _controls_
.HelpEvent_SetOrigin(*args
, **kwargs
)
5790 _controls_
.HelpEvent_swigregister(HelpEvent
)
5792 class ContextHelp(_core
.Object
):
5794 This class changes the cursor to a query and puts the application into
5795 a 'context-sensitive help mode'. When the user left-clicks on a window
5796 within the specified window, a ``EVT_HELP`` event is sent to that
5797 control, and the application may respond to it by popping up some
5800 There are a couple of ways to invoke this behaviour implicitly:
5802 * Use the wx.DIALOG_EX_CONTEXTHELP extended style for a dialog
5803 (Windows only). This will put a question mark in the titlebar,
5804 and Windows will put the application into context-sensitive help
5805 mode automatically, with further programming.
5807 * Create a `wx.ContextHelpButton`, whose predefined behaviour is
5808 to create a context help object. Normally you will write your
5809 application so that this button is only added to a dialog for
5810 non-Windows platforms (use ``wx.DIALOG_EX_CONTEXTHELP`` on
5813 :see: `wx.ContextHelpButton`
5816 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5817 __repr__
= _swig_repr
5818 def __init__(self
, *args
, **kwargs
):
5820 __init__(self, Window window=None, bool doNow=True) -> ContextHelp
5822 Constructs a context help object, calling BeginContextHelp if doNow is
5825 If window is None, the top window is used.
5827 _controls_
.ContextHelp_swiginit(self
,_controls_
.new_ContextHelp(*args
, **kwargs
))
5828 __swig_destroy__
= _controls_
.delete_ContextHelp
5829 __del__
= lambda self
: None;
5830 def BeginContextHelp(*args
, **kwargs
):
5832 BeginContextHelp(self, Window window=None) -> bool
5834 Puts the application into context-sensitive help mode. window is the
5835 window which will be used to catch events; if NULL, the top window
5838 Returns true if the application was successfully put into
5839 context-sensitive help mode. This function only returns when the event
5842 return _controls_
.ContextHelp_BeginContextHelp(*args
, **kwargs
)
5844 def EndContextHelp(*args
, **kwargs
):
5846 EndContextHelp(self) -> bool
5848 Ends context-sensitive help mode. Not normally called by the
5851 return _controls_
.ContextHelp_EndContextHelp(*args
, **kwargs
)
5853 _controls_
.ContextHelp_swigregister(ContextHelp
)
5855 class ContextHelpButton(BitmapButton
):
5857 Instances of this class may be used to add a question mark button that
5858 when pressed, puts the application into context-help mode. It does
5859 this by creating a wx.ContextHelp object which itself generates a
5860 ``EVT_HELP`` event when the user clicks on a window.
5862 On Windows, you may add a question-mark icon to a dialog by use of the
5863 ``wx.DIALOG_EX_CONTEXTHELP`` extra style, but on other platforms you
5864 will have to add a button explicitly, usually next to OK, Cancel or
5867 :see: `wx.ContextHelp`, `wx.ContextHelpButton`
5870 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5871 __repr__
= _swig_repr
5872 def __init__(self
, *args
, **kwargs
):
5874 __init__(self, Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
5875 Size size=DefaultSize, long style=BU_AUTODRAW) -> ContextHelpButton
5877 Constructor, creating and showing a context help button.
5879 _controls_
.ContextHelpButton_swiginit(self
,_controls_
.new_ContextHelpButton(*args
, **kwargs
))
5880 self
._setOORInfo
(self
)
5882 _controls_
.ContextHelpButton_swigregister(ContextHelpButton
)
5884 class HelpProvider(object):
5886 wx.HelpProvider is an abstract class used by a program
5887 implementing context-sensitive help to show the help text for the
5890 The current help provider must be explicitly set by the
5891 application using wx.HelpProvider.Set().
5893 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5894 def __init__(self
): raise AttributeError, "No constructor defined"
5895 __repr__
= _swig_repr
5896 __swig_destroy__
= _controls_
.delete_HelpProvider
5897 __del__
= lambda self
: None;
5898 def Set(*args
, **kwargs
):
5900 Set(HelpProvider helpProvider) -> HelpProvider
5902 Sset the current, application-wide help provider. Returns the previous
5903 one. Unlike some other classes, the help provider is not created on
5904 demand. This must be explicitly done by the application.
5906 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5908 Set
= staticmethod(Set
)
5909 def Get(*args
, **kwargs
):
5911 Get() -> HelpProvider
5913 Return the current application-wide help provider.
5915 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
5917 Get
= staticmethod(Get
)
5918 def GetHelp(*args
, **kwargs
):
5920 GetHelp(self, Window window) -> String
5922 Gets the help string for this window. Its interpretation is dependent
5923 on the help provider except that empty string always means that no
5924 help is associated with the window.
5926 return _controls_
.HelpProvider_GetHelp(*args
, **kwargs
)
5928 def ShowHelp(*args
, **kwargs
):
5930 ShowHelp(self, Window window) -> bool
5932 Shows help for the given window. Uses GetHelp internally if
5933 applicable. Returns True if it was done, or False if no help was
5934 available for this window.
5936 return _controls_
.HelpProvider_ShowHelp(*args
, **kwargs
)
5938 def ShowHelpAtPoint(*args
, **kwargs
):
5940 ShowHelpAtPoint(self, wxWindowBase window, Point pt, int origin) -> bool
5942 Show help for the given window (uses window.GetHelpAtPoint()
5943 internally if applicable), return true if it was done or false if no
5944 help available for this window.
5946 return _controls_
.HelpProvider_ShowHelpAtPoint(*args
, **kwargs
)
5948 def AddHelp(*args
, **kwargs
):
5950 AddHelp(self, Window window, String text)
5952 Associates the text with the given window.
5954 return _controls_
.HelpProvider_AddHelp(*args
, **kwargs
)
5956 def AddHelpById(*args
, **kwargs
):
5958 AddHelpById(self, int id, String text)
5960 This version associates the given text with all windows with this
5961 id. May be used to set the same help string for all Cancel buttons in
5962 the application, for example.
5964 return _controls_
.HelpProvider_AddHelpById(*args
, **kwargs
)
5966 def RemoveHelp(*args
, **kwargs
):
5968 RemoveHelp(self, Window window)
5970 Removes the association between the window pointer and the help
5971 text. This is called by the wx.Window destructor. Without this, the
5972 table of help strings will fill up and when window pointers are
5973 reused, the wrong help string will be found.
5975 return _controls_
.HelpProvider_RemoveHelp(*args
, **kwargs
)
5977 def Destroy(*args
, **kwargs
):
5979 val
= _controls_
.HelpProvider_Destroy(*args
, **kwargs
)
5983 _controls_
.HelpProvider_swigregister(HelpProvider
)
5985 def HelpProvider_Set(*args
, **kwargs
):
5987 HelpProvider_Set(HelpProvider helpProvider) -> HelpProvider
5989 Sset the current, application-wide help provider. Returns the previous
5990 one. Unlike some other classes, the help provider is not created on
5991 demand. This must be explicitly done by the application.
5993 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5995 def HelpProvider_Get(*args
):
5997 HelpProvider_Get() -> HelpProvider
5999 Return the current application-wide help provider.
6001 return _controls_
.HelpProvider_Get(*args
)
6003 class SimpleHelpProvider(HelpProvider
):
6005 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6006 supports only plain text help strings, and shows the string associated
6007 with the control (if any) in a tooltip.
6009 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6010 __repr__
= _swig_repr
6011 def __init__(self
, *args
, **kwargs
):
6013 __init__(self) -> SimpleHelpProvider
6015 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6016 supports only plain text help strings, and shows the string associated
6017 with the control (if any) in a tooltip.
6019 _controls_
.SimpleHelpProvider_swiginit(self
,_controls_
.new_SimpleHelpProvider(*args
, **kwargs
))
6020 _controls_
.SimpleHelpProvider_swigregister(SimpleHelpProvider
)
6022 #---------------------------------------------------------------------------
6024 class DragImage(_core
.Object
):
6025 """Proxy of C++ DragImage class"""
6026 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6027 __repr__
= _swig_repr
6028 def __init__(self
, *args
, **kwargs
):
6029 """__init__(self, Bitmap image, Cursor cursor=wxNullCursor) -> DragImage"""
6030 _controls_
.DragImage_swiginit(self
,_controls_
.new_DragImage(*args
, **kwargs
))
6031 __swig_destroy__
= _controls_
.delete_DragImage
6032 __del__
= lambda self
: None;
6033 def SetBackingBitmap(*args
, **kwargs
):
6034 """SetBackingBitmap(self, Bitmap bitmap)"""
6035 return _controls_
.DragImage_SetBackingBitmap(*args
, **kwargs
)
6037 def BeginDrag(*args
, **kwargs
):
6039 BeginDrag(self, Point hotspot, Window window, bool fullScreen=False,
6040 Rect rect=None) -> bool
6042 return _controls_
.DragImage_BeginDrag(*args
, **kwargs
)
6044 def BeginDragBounded(*args
, **kwargs
):
6045 """BeginDragBounded(self, Point hotspot, Window window, Window boundingWindow) -> bool"""
6046 return _controls_
.DragImage_BeginDragBounded(*args
, **kwargs
)
6048 def EndDrag(*args
, **kwargs
):
6049 """EndDrag(self) -> bool"""
6050 return _controls_
.DragImage_EndDrag(*args
, **kwargs
)
6052 def Move(*args
, **kwargs
):
6053 """Move(self, Point pt) -> bool"""
6054 return _controls_
.DragImage_Move(*args
, **kwargs
)
6056 def Show(*args
, **kwargs
):
6057 """Show(self) -> bool"""
6058 return _controls_
.DragImage_Show(*args
, **kwargs
)
6060 def Hide(*args
, **kwargs
):
6061 """Hide(self) -> bool"""
6062 return _controls_
.DragImage_Hide(*args
, **kwargs
)
6064 def GetImageRect(*args
, **kwargs
):
6065 """GetImageRect(self, Point pos) -> Rect"""
6066 return _controls_
.DragImage_GetImageRect(*args
, **kwargs
)
6068 def DoDrawImage(*args
, **kwargs
):
6069 """DoDrawImage(self, DC dc, Point pos) -> bool"""
6070 return _controls_
.DragImage_DoDrawImage(*args
, **kwargs
)
6072 def UpdateBackingFromWindow(*args
, **kwargs
):
6073 """UpdateBackingFromWindow(self, DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -> bool"""
6074 return _controls_
.DragImage_UpdateBackingFromWindow(*args
, **kwargs
)
6076 def RedrawImage(*args
, **kwargs
):
6077 """RedrawImage(self, Point oldPos, Point newPos, bool eraseOld, bool drawNew) -> bool"""
6078 return _controls_
.DragImage_RedrawImage(*args
, **kwargs
)
6080 _controls_
.DragImage_swigregister(DragImage
)
6082 def DragIcon(*args
, **kwargs
):
6083 """DragIcon(Icon image, Cursor cursor=wxNullCursor) -> DragImage"""
6084 val
= _controls_
.new_DragIcon(*args
, **kwargs
)
6087 def DragString(*args
, **kwargs
):
6088 """DragString(String str, Cursor cursor=wxNullCursor) -> DragImage"""
6089 val
= _controls_
.new_DragString(*args
, **kwargs
)
6092 def DragTreeItem(*args
, **kwargs
):
6093 """DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -> DragImage"""
6094 val
= _controls_
.new_DragTreeItem(*args
, **kwargs
)
6097 def DragListItem(*args
, **kwargs
):
6098 """DragListItem(ListCtrl listCtrl, long id) -> DragImage"""
6099 val
= _controls_
.new_DragListItem(*args
, **kwargs
)
6102 #---------------------------------------------------------------------------
6104 DP_DEFAULT
= _controls_
.DP_DEFAULT
6105 DP_SPIN
= _controls_
.DP_SPIN
6106 DP_DROPDOWN
= _controls_
.DP_DROPDOWN
6107 DP_SHOWCENTURY
= _controls_
.DP_SHOWCENTURY
6108 DP_ALLOWNONE
= _controls_
.DP_ALLOWNONE
6109 class DatePickerCtrl(_core
.Control
):
6111 This control allows the user to select a date. Unlike
6112 `wx.calendar.CalendarCtrl`, which is a relatively big control,
6113 `wx.DatePickerCtrl` is implemented as a small window showing the
6114 currently selected date. The control can be edited using the keyboard,
6115 and can also display a popup window for more user-friendly date
6116 selection, depending on the styles used and the platform.
6118 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6119 __repr__
= _swig_repr
6120 def __init__(self
, *args
, **kwargs
):
6122 __init__(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6123 Point pos=DefaultPosition, Size size=DefaultSize,
6124 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6125 Validator validator=DefaultValidator,
6126 String name=DatePickerCtrlNameStr) -> DatePickerCtrl
6128 Create a new DatePickerCtrl.
6130 _controls_
.DatePickerCtrl_swiginit(self
,_controls_
.new_DatePickerCtrl(*args
, **kwargs
))
6131 self
._setOORInfo
(self
)
6133 def Create(*args
, **kwargs
):
6135 Create(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6136 Point pos=DefaultPosition, Size size=DefaultSize,
6137 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6138 Validator validator=DefaultValidator,
6139 String name=DatePickerCtrlNameStr) -> bool
6141 Create the GUI parts of the DatePickerCtrl, for use in 2-phase
6144 return _controls_
.DatePickerCtrl_Create(*args
, **kwargs
)
6146 def SetValue(*args
, **kwargs
):
6148 SetValue(self, DateTime dt)
6150 Changes the current value of the control. The date should be valid and
6151 included in the currently selected range, if any.
6153 Calling this method does not result in a date change event.
6155 return _controls_
.DatePickerCtrl_SetValue(*args
, **kwargs
)
6157 def GetValue(*args
, **kwargs
):
6159 GetValue(self) -> DateTime
6161 Returns the currently selected date. If there is no selection or the
6162 selection is outside of the current range, an invalid `wx.DateTime`
6165 return _controls_
.DatePickerCtrl_GetValue(*args
, **kwargs
)
6167 def SetRange(*args
, **kwargs
):
6169 SetRange(self, DateTime dt1, DateTime dt2)
6171 Sets the valid range for the date selection. If dt1 is valid, it
6172 becomes the earliest date (inclusive) accepted by the control. If dt2
6173 is valid, it becomes the latest possible date.
6175 If the current value of the control is outside of the newly set range
6176 bounds, the behaviour is undefined.
6178 return _controls_
.DatePickerCtrl_SetRange(*args
, **kwargs
)
6180 def GetLowerLimit(*args
, **kwargs
):
6182 GetLowerLimit(self) -> DateTime
6184 Get the lower limit of the valid range for the date selection, if any.
6185 If there is no range or there is no lower limit, then the
6186 `wx.DateTime` value returned will be invalid.
6188 return _controls_
.DatePickerCtrl_GetLowerLimit(*args
, **kwargs
)
6190 def GetUpperLimit(*args
, **kwargs
):
6192 GetUpperLimit(self) -> DateTime
6194 Get the upper limit of the valid range for the date selection, if any.
6195 If there is no range or there is no upper limit, then the
6196 `wx.DateTime` value returned will be invalid.
6198 return _controls_
.DatePickerCtrl_GetUpperLimit(*args
, **kwargs
)
6200 _controls_
.DatePickerCtrl_swigregister(DatePickerCtrl
)
6201 DatePickerCtrlNameStr
= cvar
.DatePickerCtrlNameStr
6203 def PreDatePickerCtrl(*args
, **kwargs
):
6205 PreDatePickerCtrl() -> DatePickerCtrl
6207 Precreate a DatePickerCtrl for use in 2-phase creation.
6209 val
= _controls_
.new_PreDatePickerCtrl(*args
, **kwargs
)
6212 HL_CONTEXTMENU
= _controls_
.HL_CONTEXTMENU
6213 HL_DEFAULT_STYLE
= _controls_
.HL_DEFAULT_STYLE
6214 #---------------------------------------------------------------------------
6216 class HyperlinkCtrl(_core
.Control
):
6218 A static text control that emulates a hyperlink. The link is displayed
6219 in an appropriate text style, derived from the control's normal font.
6220 When the mouse rolls over the link, the cursor changes to a hand and
6221 the link's color changes to the active color.
6223 Clicking on the link does not launch a web browser; instead, a
6224 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6228 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6229 __repr__
= _swig_repr
6230 def __init__(self
, *args
, **kwargs
):
6232 __init__(self, Window parent, int id, String label, String url, Point pos=DefaultPosition,
6233 Size size=DefaultSize,
6234 long style=HL_DEFAULT_STYLE, String name=HyperlinkCtrlNameStr) -> HyperlinkCtrl
6236 A static text control that emulates a hyperlink. The link is displayed
6237 in an appropriate text style, derived from the control's normal font.
6238 When the mouse rolls over the link, the cursor changes to a hand and
6239 the link's color changes to the active color.
6241 Clicking on the link does not launch a web browser; instead, a
6242 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6246 _controls_
.HyperlinkCtrl_swiginit(self
,_controls_
.new_HyperlinkCtrl(*args
, **kwargs
))
6247 self
._setOORInfo
(self
)
6249 def Create(*args
, **kwargs
):
6251 Create(self, Window parent, int id, String label, String url, Point pos=DefaultPosition,
6252 Size size=DefaultSize,
6253 long style=HL_DEFAULT_STYLE, String name=HyperlinkCtrlNameStr) -> bool
6255 return _controls_
.HyperlinkCtrl_Create(*args
, **kwargs
)
6257 def GetHoverColour(*args
, **kwargs
):
6258 """GetHoverColour(self) -> Colour"""
6259 return _controls_
.HyperlinkCtrl_GetHoverColour(*args
, **kwargs
)
6261 def SetHoverColour(*args
, **kwargs
):
6262 """SetHoverColour(self, Colour colour)"""
6263 return _controls_
.HyperlinkCtrl_SetHoverColour(*args
, **kwargs
)
6265 def GetNormalColour(*args
, **kwargs
):
6266 """GetNormalColour(self) -> Colour"""
6267 return _controls_
.HyperlinkCtrl_GetNormalColour(*args
, **kwargs
)
6269 def SetNormalColour(*args
, **kwargs
):
6270 """SetNormalColour(self, Colour colour)"""
6271 return _controls_
.HyperlinkCtrl_SetNormalColour(*args
, **kwargs
)
6273 def GetVisitedColour(*args
, **kwargs
):
6274 """GetVisitedColour(self) -> Colour"""
6275 return _controls_
.HyperlinkCtrl_GetVisitedColour(*args
, **kwargs
)
6277 def SetVisitedColour(*args
, **kwargs
):
6278 """SetVisitedColour(self, Colour colour)"""
6279 return _controls_
.HyperlinkCtrl_SetVisitedColour(*args
, **kwargs
)
6281 def GetURL(*args
, **kwargs
):
6282 """GetURL(self) -> String"""
6283 return _controls_
.HyperlinkCtrl_GetURL(*args
, **kwargs
)
6285 def SetURL(*args
, **kwargs
):
6286 """SetURL(self, String url)"""
6287 return _controls_
.HyperlinkCtrl_SetURL(*args
, **kwargs
)
6289 def SetVisited(*args
, **kwargs
):
6290 """SetVisited(self, bool visited=True)"""
6291 return _controls_
.HyperlinkCtrl_SetVisited(*args
, **kwargs
)
6293 def GetVisited(*args
, **kwargs
):
6294 """GetVisited(self) -> bool"""
6295 return _controls_
.HyperlinkCtrl_GetVisited(*args
, **kwargs
)
6297 _controls_
.HyperlinkCtrl_swigregister(HyperlinkCtrl
)
6298 HyperlinkCtrlNameStr
= cvar
.HyperlinkCtrlNameStr
6300 def PreHyperlinkCtrl(*args
, **kwargs
):
6302 PreHyperlinkCtrl() -> HyperlinkCtrl
6304 A static text control that emulates a hyperlink. The link is displayed
6305 in an appropriate text style, derived from the control's normal font.
6306 When the mouse rolls over the link, the cursor changes to a hand and
6307 the link's color changes to the active color.
6309 Clicking on the link does not launch a web browser; instead, a
6310 wx.HyperlinkEvent is fired. Use the wx.EVT_HYPERLINK to catch link
6314 val
= _controls_
.new_PreHyperlinkCtrl(*args
, **kwargs
)
6317 wxEVT_COMMAND_HYPERLINK
= _controls_
.wxEVT_COMMAND_HYPERLINK
6318 class HyperlinkEvent(_core
.CommandEvent
):
6319 """Proxy of C++ HyperlinkEvent class"""
6320 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6321 __repr__
= _swig_repr
6322 def __init__(self
, *args
, **kwargs
):
6323 """__init__(self, Object generator, int id, String url) -> HyperlinkEvent"""
6324 _controls_
.HyperlinkEvent_swiginit(self
,_controls_
.new_HyperlinkEvent(*args
, **kwargs
))
6325 def GetURL(*args
, **kwargs
):
6326 """GetURL(self) -> String"""
6327 return _controls_
.HyperlinkEvent_GetURL(*args
, **kwargs
)
6329 def SetURL(*args
, **kwargs
):
6330 """SetURL(self, String url)"""
6331 return _controls_
.HyperlinkEvent_SetURL(*args
, **kwargs
)
6333 _controls_
.HyperlinkEvent_swigregister(HyperlinkEvent
)
6335 EVT_HYPERLINK
= wx
.PyEventBinder( wxEVT_COMMAND_HYPERLINK
, 1 )
6337 #---------------------------------------------------------------------------
6339 PB_USE_TEXTCTRL
= _controls_
.PB_USE_TEXTCTRL
6340 class PickerBase(_core
.Control
):
6342 Base abstract class for all pickers which support an auxiliary text
6343 control. This class handles all positioning and sizing of the text
6344 control like a an horizontal `wx.BoxSizer` would do, with the text
6345 control on the left of the picker button and the proportion of the
6346 picker fixed to value 1.
6348 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6349 def __init__(self
): raise AttributeError, "No constructor defined"
6350 __repr__
= _swig_repr
6351 def CreateBase(*args
, **kwargs
):
6353 CreateBase(self, Window parent, int id, String text=wxEmptyString, Point pos=DefaultPosition,
6354 Size size=DefaultSize,
6355 long style=0, Validator validator=DefaultValidator,
6356 String name=wxButtonNameStr) -> bool
6358 return _controls_
.PickerBase_CreateBase(*args
, **kwargs
)
6360 def SetInternalMargin(*args
, **kwargs
):
6362 SetInternalMargin(self, int newmargin)
6364 Sets the margin (in pixels) between the picker and the text control.
6366 return _controls_
.PickerBase_SetInternalMargin(*args
, **kwargs
)
6368 def GetInternalMargin(*args
, **kwargs
):
6370 GetInternalMargin(self) -> int
6372 Returns the margin (in pixels) between the picker and the text
6375 return _controls_
.PickerBase_GetInternalMargin(*args
, **kwargs
)
6377 def SetTextCtrlProportion(*args
, **kwargs
):
6379 SetTextCtrlProportion(self, int prop)
6381 Sets the proportion between the text control and the picker button.
6382 This is used to set relative sizes of the text contorl and the picker.
6383 The value passed to this function must be >= 1.
6385 return _controls_
.PickerBase_SetTextCtrlProportion(*args
, **kwargs
)
6387 def GetTextCtrlProportion(*args
, **kwargs
):
6389 GetTextCtrlProportion(self) -> int
6391 Returns the proportion between the text control and the picker.
6393 return _controls_
.PickerBase_GetTextCtrlProportion(*args
, **kwargs
)
6395 def IsTextCtrlGrowable(*args
, **kwargs
):
6396 """IsTextCtrlGrowable(self) -> bool"""
6397 return _controls_
.PickerBase_IsTextCtrlGrowable(*args
, **kwargs
)
6399 def SetTextCtrlGrowable(*args
, **kwargs
):
6400 """SetTextCtrlGrowable(self, bool grow=True)"""
6401 return _controls_
.PickerBase_SetTextCtrlGrowable(*args
, **kwargs
)
6403 def IsPickerCtrlGrowable(*args
, **kwargs
):
6404 """IsPickerCtrlGrowable(self) -> bool"""
6405 return _controls_
.PickerBase_IsPickerCtrlGrowable(*args
, **kwargs
)
6407 def SetPickerCtrlGrowable(*args
, **kwargs
):
6408 """SetPickerCtrlGrowable(self, bool grow=True)"""
6409 return _controls_
.PickerBase_SetPickerCtrlGrowable(*args
, **kwargs
)
6411 def HasTextCtrl(*args
, **kwargs
):
6413 HasTextCtrl(self) -> bool
6415 Returns true if this class has a valid text control (i.e. if the
6416 wx.PB_USE_TEXTCTRL style was given when creating this control).
6418 return _controls_
.PickerBase_HasTextCtrl(*args
, **kwargs
)
6420 def GetTextCtrl(*args
, **kwargs
):
6422 GetTextCtrl(self) -> TextCtrl
6424 Returns a pointer to the text control handled by this class or None if
6425 the wx.PB_USE_TEXTCTRL style was not specified when this control was
6428 Very important: the contents of the text control could be containing
6429 an invalid representation of the entity which can be chosen through
6430 the picker (e.g. the user entered an invalid colour syntax because of
6431 a typo). Thus you should never parse the content of the textctrl to
6432 get the user's input; rather use the derived-class getter
6433 (e.g. `wx.ColourPickerCtrl.GetColour`, `wx.FilePickerCtrl.GetPath`,
6436 return _controls_
.PickerBase_GetTextCtrl(*args
, **kwargs
)
6438 def GetPickerCtrl(*args
, **kwargs
):
6439 """GetPickerCtrl(self) -> Control"""
6440 return _controls_
.PickerBase_GetPickerCtrl(*args
, **kwargs
)
6442 _controls_
.PickerBase_swigregister(PickerBase
)
6444 #---------------------------------------------------------------------------
6446 CLRP_SHOW_LABEL
= _controls_
.CLRP_SHOW_LABEL
6447 CLRP_USE_TEXTCTRL
= _controls_
.CLRP_USE_TEXTCTRL
6448 CLRP_DEFAULT_STYLE
= _controls_
.CLRP_DEFAULT_STYLE
6449 class ColourPickerCtrl(PickerBase
):
6451 This control allows the user to select a colour. The generic
6452 implementation is a button which brings up a `wx.ColourDialog` when
6453 clicked. Native implementations may differ but this is usually a
6454 (small) widget which give access to the colour-chooser dialog.
6456 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6457 __repr__
= _swig_repr
6458 def __init__(self
, *args
, **kwargs
):
6460 __init__(self, Window parent, int id=-1, Colour col=*wxBLACK, Point pos=DefaultPosition,
6461 Size size=DefaultSize,
6462 long style=CLRP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6463 String name=ColourPickerCtrlNameStr) -> ColourPickerCtrl
6465 This control allows the user to select a colour. The generic
6466 implementation is a button which brings up a `wx.ColourDialog` when
6467 clicked. Native implementations may differ but this is usually a
6468 (small) widget which give access to the colour-chooser dialog.
6470 _controls_
.ColourPickerCtrl_swiginit(self
,_controls_
.new_ColourPickerCtrl(*args
, **kwargs
))
6471 self
._setOORInfo
(self
)
6473 def Create(*args
, **kwargs
):
6475 Create(self, Window parent, int id, Colour col=*wxBLACK, Point pos=DefaultPosition,
6476 Size size=DefaultSize, long style=CLRP_DEFAULT_STYLE,
6477 Validator validator=DefaultValidator,
6478 String name=ColourPickerCtrlNameStr) -> bool
6480 return _controls_
.ColourPickerCtrl_Create(*args
, **kwargs
)
6482 def GetColour(*args
, **kwargs
):
6484 GetColour(self) -> Colour
6486 Returns the currently selected colour.
6488 return _controls_
.ColourPickerCtrl_GetColour(*args
, **kwargs
)
6490 def SetColour(*args
, **kwargs
):
6492 SetColour(self, Colour col)
6494 Set the displayed colour.
6496 return _controls_
.ColourPickerCtrl_SetColour(*args
, **kwargs
)
6498 _controls_
.ColourPickerCtrl_swigregister(ColourPickerCtrl
)
6499 ColourPickerCtrlNameStr
= cvar
.ColourPickerCtrlNameStr
6501 def PreColourPickerCtrl(*args
, **kwargs
):
6503 PreColourPickerCtrl() -> ColourPickerCtrl
6505 This control allows the user to select a colour. The generic
6506 implementation is a button which brings up a `wx.ColourDialog` when
6507 clicked. Native implementations may differ but this is usually a
6508 (small) widget which give access to the colour-chooser dialog.
6510 val
= _controls_
.new_PreColourPickerCtrl(*args
, **kwargs
)
6513 wxEVT_COMMAND_COLOURPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_COLOURPICKER_CHANGED
6514 EVT_COLOURPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_COLOURPICKER_CHANGED
, 1 )
6516 class ColourPickerEvent(_core
.CommandEvent
):
6517 """Proxy of C++ ColourPickerEvent class"""
6518 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6519 __repr__
= _swig_repr
6520 def __init__(self
, *args
, **kwargs
):
6521 """__init__(self, Object generator, int id, Colour col) -> ColourPickerEvent"""
6522 _controls_
.ColourPickerEvent_swiginit(self
,_controls_
.new_ColourPickerEvent(*args
, **kwargs
))
6523 def GetColour(*args
, **kwargs
):
6524 """GetColour(self) -> Colour"""
6525 return _controls_
.ColourPickerEvent_GetColour(*args
, **kwargs
)
6527 def SetColour(*args
, **kwargs
):
6528 """SetColour(self, Colour c)"""
6529 return _controls_
.ColourPickerEvent_SetColour(*args
, **kwargs
)
6531 _controls_
.ColourPickerEvent_swigregister(ColourPickerEvent
)
6533 #---------------------------------------------------------------------------
6535 FLP_OPEN
= _controls_
.FLP_OPEN
6536 FLP_SAVE
= _controls_
.FLP_SAVE
6537 FLP_OVERWRITE_PROMPT
= _controls_
.FLP_OVERWRITE_PROMPT
6538 FLP_FILE_MUST_EXIST
= _controls_
.FLP_FILE_MUST_EXIST
6539 FLP_CHANGE_DIR
= _controls_
.FLP_CHANGE_DIR
6540 DIRP_DIR_MUST_EXIST
= _controls_
.DIRP_DIR_MUST_EXIST
6541 DIRP_CHANGE_DIR
= _controls_
.DIRP_CHANGE_DIR
6542 FLP_USE_TEXTCTRL
= _controls_
.FLP_USE_TEXTCTRL
6543 FLP_DEFAULT_STYLE
= _controls_
.FLP_DEFAULT_STYLE
6544 DIRP_USE_TEXTCTRL
= _controls_
.DIRP_USE_TEXTCTRL
6545 DIRP_DEFAULT_STYLE
= _controls_
.DIRP_DEFAULT_STYLE
6546 class FilePickerCtrl(PickerBase
):
6547 """Proxy of C++ FilePickerCtrl class"""
6548 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6549 __repr__
= _swig_repr
6550 def __init__(self
, *args
, **kwargs
):
6552 __init__(self, Window parent, int id=-1, String path=EmptyString,
6553 String message=FileSelectorPromptStr, String wildcard=FileSelectorDefaultWildcardStr,
6554 Point pos=DefaultPosition,
6555 Size size=DefaultSize,
6556 long style=FLP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6557 String name=FilePickerCtrlNameStr) -> FilePickerCtrl
6559 _controls_
.FilePickerCtrl_swiginit(self
,_controls_
.new_FilePickerCtrl(*args
, **kwargs
))
6560 self
._setOORInfo
(self
)
6562 def Create(*args
, **kwargs
):
6564 Create(self, Window parent, int id=-1, String path=EmptyString,
6565 String message=FileSelectorPromptStr, String wildcard=FileSelectorDefaultWildcardStr,
6566 Point pos=DefaultPosition,
6567 Size size=DefaultSize,
6568 long style=FLP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6569 String name=FilePickerCtrlNameStr) -> bool
6571 return _controls_
.FilePickerCtrl_Create(*args
, **kwargs
)
6573 def GetPath(*args
, **kwargs
):
6574 """GetPath(self) -> String"""
6575 return _controls_
.FilePickerCtrl_GetPath(*args
, **kwargs
)
6577 def SetPath(*args
, **kwargs
):
6578 """SetPath(self, String str)"""
6579 return _controls_
.FilePickerCtrl_SetPath(*args
, **kwargs
)
6581 def CheckPath(*args
, **kwargs
):
6582 """CheckPath(self, String path) -> bool"""
6583 return _controls_
.FilePickerCtrl_CheckPath(*args
, **kwargs
)
6585 def GetTextCtrlValue(*args
, **kwargs
):
6586 """GetTextCtrlValue(self) -> String"""
6587 return _controls_
.FilePickerCtrl_GetTextCtrlValue(*args
, **kwargs
)
6589 _controls_
.FilePickerCtrl_swigregister(FilePickerCtrl
)
6590 FilePickerCtrlNameStr
= cvar
.FilePickerCtrlNameStr
6591 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
6592 DirPickerCtrlNameStr
= cvar
.DirPickerCtrlNameStr
6593 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
6594 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
6596 def PreFilePickerCtrl(*args
, **kwargs
):
6597 """PreFilePickerCtrl() -> FilePickerCtrl"""
6598 val
= _controls_
.new_PreFilePickerCtrl(*args
, **kwargs
)
6601 class DirPickerCtrl(PickerBase
):
6602 """Proxy of C++ DirPickerCtrl class"""
6603 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6604 __repr__
= _swig_repr
6605 def __init__(self
, *args
, **kwargs
):
6607 __init__(self, Window parent, int id=-1, String path=EmptyString,
6608 String message=DirSelectorPromptStr, Point pos=DefaultPosition,
6609 Size size=DefaultSize, long style=DIRP_DEFAULT_STYLE,
6610 Validator validator=DefaultValidator,
6611 String name=DirPickerCtrlNameStr) -> DirPickerCtrl
6613 _controls_
.DirPickerCtrl_swiginit(self
,_controls_
.new_DirPickerCtrl(*args
, **kwargs
))
6614 self
._setOORInfo
(self
)
6616 def Create(*args
, **kwargs
):
6618 Create(self, Window parent, int id=-1, String path=EmptyString,
6619 String message=DirSelectorPromptStr, Point pos=DefaultPosition,
6620 Size size=DefaultSize, long style=DIRP_DEFAULT_STYLE,
6621 Validator validator=DefaultValidator,
6622 String name=DirPickerCtrlNameStr) -> bool
6624 return _controls_
.DirPickerCtrl_Create(*args
, **kwargs
)
6626 def GetPath(*args
, **kwargs
):
6627 """GetPath(self) -> String"""
6628 return _controls_
.DirPickerCtrl_GetPath(*args
, **kwargs
)
6630 def SetPath(*args
, **kwargs
):
6631 """SetPath(self, String str)"""
6632 return _controls_
.DirPickerCtrl_SetPath(*args
, **kwargs
)
6634 def CheckPath(*args
, **kwargs
):
6635 """CheckPath(self, String path) -> bool"""
6636 return _controls_
.DirPickerCtrl_CheckPath(*args
, **kwargs
)
6638 def GetTextCtrlValue(*args
, **kwargs
):
6639 """GetTextCtrlValue(self) -> String"""
6640 return _controls_
.DirPickerCtrl_GetTextCtrlValue(*args
, **kwargs
)
6642 _controls_
.DirPickerCtrl_swigregister(DirPickerCtrl
)
6644 def PreDirPickerCtrl(*args
, **kwargs
):
6645 """PreDirPickerCtrl() -> DirPickerCtrl"""
6646 val
= _controls_
.new_PreDirPickerCtrl(*args
, **kwargs
)
6649 wxEVT_COMMAND_FILEPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_FILEPICKER_CHANGED
6650 wxEVT_COMMAND_DIRPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_DIRPICKER_CHANGED
6651 EVT_FILEPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_FILEPICKER_CHANGED
, 1 )
6652 EVT_DIRPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_DIRPICKER_CHANGED
, 1 )
6654 class FileDirPickerEvent(_core
.CommandEvent
):
6655 """Proxy of C++ FileDirPickerEvent class"""
6656 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6657 __repr__
= _swig_repr
6658 def __init__(self
, *args
, **kwargs
):
6659 """__init__(self, EventType type, Object generator, int id, String path) -> FileDirPickerEvent"""
6660 _controls_
.FileDirPickerEvent_swiginit(self
,_controls_
.new_FileDirPickerEvent(*args
, **kwargs
))
6661 def GetPath(*args
, **kwargs
):
6662 """GetPath(self) -> String"""
6663 return _controls_
.FileDirPickerEvent_GetPath(*args
, **kwargs
)
6665 def SetPath(*args
, **kwargs
):
6666 """SetPath(self, String p)"""
6667 return _controls_
.FileDirPickerEvent_SetPath(*args
, **kwargs
)
6669 _controls_
.FileDirPickerEvent_swigregister(FileDirPickerEvent
)
6671 #---------------------------------------------------------------------------
6673 FNTP_FONTDESC_AS_LABEL
= _controls_
.FNTP_FONTDESC_AS_LABEL
6674 FNTP_USEFONT_FOR_LABEL
= _controls_
.FNTP_USEFONT_FOR_LABEL
6675 FNTP_USE_TEXTCTRL
= _controls_
.FNTP_USE_TEXTCTRL
6676 FNTP_DEFAULT_STYLE
= _controls_
.FNTP_DEFAULT_STYLE
6677 class FontPickerCtrl(PickerBase
):
6678 """Proxy of C++ FontPickerCtrl class"""
6679 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6680 __repr__
= _swig_repr
6681 def __init__(self
, *args
, **kwargs
):
6683 __init__(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
6684 Point pos=DefaultPosition, Size size=DefaultSize,
6685 long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6686 String name=FontPickerCtrlNameStr) -> FontPickerCtrl
6688 _controls_
.FontPickerCtrl_swiginit(self
,_controls_
.new_FontPickerCtrl(*args
, **kwargs
))
6689 self
._setOORInfo
(self
)
6691 def Create(*args
, **kwargs
):
6693 Create(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
6694 Point pos=DefaultPosition, Size size=DefaultSize,
6695 long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
6696 String name=FontPickerCtrlNameStr) -> bool
6698 return _controls_
.FontPickerCtrl_Create(*args
, **kwargs
)
6700 def GetSelectedFont(*args
, **kwargs
):
6701 """GetSelectedFont(self) -> Font"""
6702 return _controls_
.FontPickerCtrl_GetSelectedFont(*args
, **kwargs
)
6704 def SetSelectedFont(*args
, **kwargs
):
6705 """SetSelectedFont(self, Font f)"""
6706 return _controls_
.FontPickerCtrl_SetSelectedFont(*args
, **kwargs
)
6708 def SetMaxPointSize(*args
, **kwargs
):
6709 """SetMaxPointSize(self, unsigned int max)"""
6710 return _controls_
.FontPickerCtrl_SetMaxPointSize(*args
, **kwargs
)
6712 def GetMaxPointSize(*args
, **kwargs
):
6713 """GetMaxPointSize(self) -> unsigned int"""
6714 return _controls_
.FontPickerCtrl_GetMaxPointSize(*args
, **kwargs
)
6716 _controls_
.FontPickerCtrl_swigregister(FontPickerCtrl
)
6717 FontPickerCtrlNameStr
= cvar
.FontPickerCtrlNameStr
6719 def PreFontPickerCtrl(*args
, **kwargs
):
6720 """PreFontPickerCtrl() -> FontPickerCtrl"""
6721 val
= _controls_
.new_PreFontPickerCtrl(*args
, **kwargs
)
6724 wxEVT_COMMAND_FONTPICKER_CHANGED
= _controls_
.wxEVT_COMMAND_FONTPICKER_CHANGED
6725 EVT_FONTPICKER_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_FONTPICKER_CHANGED
, 1 )
6727 class FontPickerEvent(_core
.CommandEvent
):
6728 """Proxy of C++ FontPickerEvent class"""
6729 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
6730 __repr__
= _swig_repr
6731 def __init__(self
, *args
, **kwargs
):
6732 """__init__(self, Object generator, int id, Font f) -> FontPickerEvent"""
6733 _controls_
.FontPickerEvent_swiginit(self
,_controls_
.new_FontPickerEvent(*args
, **kwargs
))
6734 def GetFont(*args
, **kwargs
):
6735 """GetFont(self) -> Font"""
6736 return _controls_
.FontPickerEvent_GetFont(*args
, **kwargs
)
6738 def SetFont(*args
, **kwargs
):
6739 """SetFont(self, Font c)"""
6740 return _controls_
.FontPickerEvent_SetFont(*args
, **kwargs
)
6742 _controls_
.FontPickerEvent_swigregister(FontPickerEvent
)