1 # This file was created automatically by SWIG.
2 # Don't modify this file, modify the SWIG interface instead.
8 #---------------------------------------------------------------------------
10 BU_LEFT
= _controls_
.BU_LEFT
11 BU_TOP
= _controls_
.BU_TOP
12 BU_RIGHT
= _controls_
.BU_RIGHT
13 BU_BOTTOM
= _controls_
.BU_BOTTOM
14 BU_EXACTFIT
= _controls_
.BU_EXACTFIT
15 BU_AUTODRAW
= _controls_
.BU_AUTODRAW
16 class Button(_core
.Control
):
18 A button is a control that contains a text string, and is one of the most
19 common elements of a GUI. It may be placed on a dialog box or panel, or
20 indeed almost any other window.
23 return "<%s.%s; proxy of C++ wxButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
24 def __init__(self
, *args
, **kwargs
):
26 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
27 Size size=DefaultSize, long style=0,
28 Validator validator=DefaultValidator, String name=ButtonNameStr) -> Button
30 Create and show a button.
32 newobj
= _controls_
.new_Button(*args
, **kwargs
)
33 self
.this
= newobj
.this
36 self
._setOORInfo
(self
)
38 def Create(*args
, **kwargs
):
40 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
41 Size size=DefaultSize, long style=0,
42 Validator validator=DefaultValidator, String name=ButtonNameStr) -> bool
44 Acutally create the GUI Button for 2-phase creation.
46 return _controls_
.Button_Create(*args
, **kwargs
)
48 def SetDefault(*args
, **kwargs
):
52 This sets the button to be the default item for the panel or dialog box.
54 return _controls_
.Button_SetDefault(*args
, **kwargs
)
56 def GetDefaultSize(*args
, **kwargs
):
58 GetDefaultSize() -> Size
60 Returns the default button size for this platform.
62 return _controls_
.Button_GetDefaultSize(*args
, **kwargs
)
64 GetDefaultSize
= staticmethod(GetDefaultSize
)
65 def GetClassDefaultAttributes(*args
, **kwargs
):
67 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
69 Get the default attributes for this class. This is useful if you want
70 to use the same font or colour in your own control as in a standard
71 control -- which is a much better idea than hard coding specific
72 colours or fonts which might look completely out of place on the
73 user's system, especially if it uses themes.
75 The variant parameter is only relevant under Mac currently and is
76 ignore under other platforms. Under Mac, it will change the size of
77 the returned font. See `wx.Window.SetWindowVariant` for more about
80 return _controls_
.Button_GetClassDefaultAttributes(*args
, **kwargs
)
82 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
84 class ButtonPtr(Button
):
85 def __init__(self
, this
):
87 if not hasattr(self
,"thisown"): self
.thisown
= 0
88 self
.__class
__ = Button
89 _controls_
.Button_swigregister(ButtonPtr
)
90 cvar
= _controls_
.cvar
91 ButtonNameStr
= cvar
.ButtonNameStr
93 def PreButton(*args
, **kwargs
):
97 Precreate a Button for 2-phase creation.
99 val
= _controls_
.new_PreButton(*args
, **kwargs
)
103 def Button_GetDefaultSize(*args
, **kwargs
):
105 Button_GetDefaultSize() -> Size
107 Returns the default button size for this platform.
109 return _controls_
.Button_GetDefaultSize(*args
, **kwargs
)
111 def Button_GetClassDefaultAttributes(*args
, **kwargs
):
113 Button_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
115 Get the default attributes for this class. This is useful if you want
116 to use the same font or colour in your own control as in a standard
117 control -- which is a much better idea than hard coding specific
118 colours or fonts which might look completely out of place on the
119 user's system, especially if it uses themes.
121 The variant parameter is only relevant under Mac currently and is
122 ignore under other platforms. Under Mac, it will change the size of
123 the returned font. See `wx.Window.SetWindowVariant` for more about
126 return _controls_
.Button_GetClassDefaultAttributes(*args
, **kwargs
)
128 class BitmapButton(Button
):
130 A Button that contains a bitmap. A bitmap button can be supplied with a
131 single bitmap, and wxWidgets will draw all button states using this bitmap. If
132 the application needs more control, additional bitmaps for the selected state,
133 unpressed focused state, and greyed-out state may be supplied.
136 return "<%s.%s; proxy of C++ wxBitmapButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
137 def __init__(self
, *args
, **kwargs
):
139 __init__(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
140 Size size=DefaultSize, long style=BU_AUTODRAW,
141 Validator validator=DefaultValidator,
142 String name=ButtonNameStr) -> BitmapButton
144 Create and show a button with a bitmap for the label.
146 newobj
= _controls_
.new_BitmapButton(*args
, **kwargs
)
147 self
.this
= newobj
.this
150 self
._setOORInfo
(self
)
152 def Create(*args
, **kwargs
):
154 Create(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
155 Size size=DefaultSize, long style=BU_AUTODRAW,
156 Validator validator=DefaultValidator,
157 String name=ButtonNameStr) -> bool
159 Acutally create the GUI BitmapButton for 2-phase creation.
161 return _controls_
.BitmapButton_Create(*args
, **kwargs
)
163 def GetBitmapLabel(*args
, **kwargs
):
165 GetBitmapLabel(self) -> Bitmap
167 Returns the label bitmap (the one passed to the constructor).
169 return _controls_
.BitmapButton_GetBitmapLabel(*args
, **kwargs
)
171 def GetBitmapDisabled(*args
, **kwargs
):
173 GetBitmapDisabled(self) -> Bitmap
175 Returns the bitmap for the disabled state.
177 return _controls_
.BitmapButton_GetBitmapDisabled(*args
, **kwargs
)
179 def GetBitmapFocus(*args
, **kwargs
):
181 GetBitmapFocus(self) -> Bitmap
183 Returns the bitmap for the focused state.
185 return _controls_
.BitmapButton_GetBitmapFocus(*args
, **kwargs
)
187 def GetBitmapSelected(*args
, **kwargs
):
189 GetBitmapSelected(self) -> Bitmap
191 Returns the bitmap for the selected state.
193 return _controls_
.BitmapButton_GetBitmapSelected(*args
, **kwargs
)
195 def SetBitmapDisabled(*args
, **kwargs
):
197 SetBitmapDisabled(self, Bitmap bitmap)
199 Sets the bitmap for the disabled button appearance.
201 return _controls_
.BitmapButton_SetBitmapDisabled(*args
, **kwargs
)
203 def SetBitmapFocus(*args
, **kwargs
):
205 SetBitmapFocus(self, Bitmap bitmap)
207 Sets the bitmap for the button appearance when it has the keyboard focus.
209 return _controls_
.BitmapButton_SetBitmapFocus(*args
, **kwargs
)
211 def SetBitmapSelected(*args
, **kwargs
):
213 SetBitmapSelected(self, Bitmap bitmap)
215 Sets the bitmap for the selected (depressed) button appearance.
217 return _controls_
.BitmapButton_SetBitmapSelected(*args
, **kwargs
)
219 def SetBitmapLabel(*args
, **kwargs
):
221 SetBitmapLabel(self, Bitmap bitmap)
223 Sets the bitmap label for the button. This is the bitmap used for the
224 unselected state, and for all other states if no other bitmaps are provided.
226 return _controls_
.BitmapButton_SetBitmapLabel(*args
, **kwargs
)
228 def SetMargins(*args
, **kwargs
):
229 """SetMargins(self, int x, int y)"""
230 return _controls_
.BitmapButton_SetMargins(*args
, **kwargs
)
232 def GetMarginX(*args
, **kwargs
):
233 """GetMarginX(self) -> int"""
234 return _controls_
.BitmapButton_GetMarginX(*args
, **kwargs
)
236 def GetMarginY(*args
, **kwargs
):
237 """GetMarginY(self) -> int"""
238 return _controls_
.BitmapButton_GetMarginY(*args
, **kwargs
)
241 class BitmapButtonPtr(BitmapButton
):
242 def __init__(self
, this
):
244 if not hasattr(self
,"thisown"): self
.thisown
= 0
245 self
.__class
__ = BitmapButton
246 _controls_
.BitmapButton_swigregister(BitmapButtonPtr
)
248 def PreBitmapButton(*args
, **kwargs
):
250 PreBitmapButton() -> BitmapButton
252 Precreate a BitmapButton for 2-phase creation.
254 val
= _controls_
.new_PreBitmapButton(*args
, **kwargs
)
258 #---------------------------------------------------------------------------
260 CHK_2STATE
= _controls_
.CHK_2STATE
261 CHK_3STATE
= _controls_
.CHK_3STATE
262 CHK_ALLOW_3RD_STATE_FOR_USER
= _controls_
.CHK_ALLOW_3RD_STATE_FOR_USER
263 CHK_UNCHECKED
= _controls_
.CHK_UNCHECKED
264 CHK_CHECKED
= _controls_
.CHK_CHECKED
265 CHK_UNDETERMINED
= _controls_
.CHK_UNDETERMINED
266 class CheckBox(_core
.Control
):
268 A checkbox is a labelled box which by default is either on (the
269 checkmark is visible) or off (no checkmark). Optionally (When the
270 wx.CHK_3STATE style flag is set) it can have a third state, called the
271 mixed or undetermined state. Often this is used as a "Does Not
275 return "<%s.%s; proxy of C++ wxCheckBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
276 def __init__(self
, *args
, **kwargs
):
278 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
279 Size size=DefaultSize, long style=0,
280 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -> CheckBox
282 Creates and shows a CheckBox control
284 newobj
= _controls_
.new_CheckBox(*args
, **kwargs
)
285 self
.this
= newobj
.this
288 self
._setOORInfo
(self
)
290 def Create(*args
, **kwargs
):
292 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
293 Size size=DefaultSize, long style=0,
294 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -> bool
296 Actually create the GUI CheckBox for 2-phase creation.
298 return _controls_
.CheckBox_Create(*args
, **kwargs
)
300 def GetValue(*args
, **kwargs
):
302 GetValue(self) -> bool
304 Gets the state of a 2-state CheckBox. Returns True if it is checked,
307 return _controls_
.CheckBox_GetValue(*args
, **kwargs
)
309 def IsChecked(*args
, **kwargs
):
311 IsChecked(self) -> bool
313 Similar to GetValue, but raises an exception if it is not a 2-state
316 return _controls_
.CheckBox_IsChecked(*args
, **kwargs
)
318 def SetValue(*args
, **kwargs
):
320 SetValue(self, bool state)
322 Set the state of a 2-state CheckBox. Pass True for checked, False for
325 return _controls_
.CheckBox_SetValue(*args
, **kwargs
)
327 def Get3StateValue(*args
, **kwargs
):
329 Get3StateValue(self) -> int
331 Returns wx.CHK_UNCHECKED when the CheckBox is unchecked,
332 wx.CHK_CHECKED when it is checked and wx.CHK_UNDETERMINED when it's in
333 the undetermined state. Raises an exceptiion when the function is
334 used with a 2-state CheckBox.
336 return _controls_
.CheckBox_Get3StateValue(*args
, **kwargs
)
338 def Set3StateValue(*args
, **kwargs
):
340 Set3StateValue(self, int state)
342 Sets the CheckBox to the given state. The state parameter can be one
343 of the following: wx.CHK_UNCHECKED (Check is off), wx.CHK_CHECKED (the
344 Check is on) or wx.CHK_UNDETERMINED (Check is mixed). Raises an
345 exception when the CheckBox is a 2-state checkbox and setting the
346 state to wx.CHK_UNDETERMINED.
348 return _controls_
.CheckBox_Set3StateValue(*args
, **kwargs
)
350 def Is3State(*args
, **kwargs
):
352 Is3State(self) -> bool
354 Returns whether or not the CheckBox is a 3-state CheckBox.
356 return _controls_
.CheckBox_Is3State(*args
, **kwargs
)
358 def Is3rdStateAllowedForUser(*args
, **kwargs
):
360 Is3rdStateAllowedForUser(self) -> bool
362 Returns whether or not the user can set the CheckBox to the third
365 return _controls_
.CheckBox_Is3rdStateAllowedForUser(*args
, **kwargs
)
367 def GetClassDefaultAttributes(*args
, **kwargs
):
369 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
371 Get the default attributes for this class. This is useful if you want
372 to use the same font or colour in your own control as in a standard
373 control -- which is a much better idea than hard coding specific
374 colours or fonts which might look completely out of place on the
375 user's system, especially if it uses themes.
377 The variant parameter is only relevant under Mac currently and is
378 ignore under other platforms. Under Mac, it will change the size of
379 the returned font. See `wx.Window.SetWindowVariant` for more about
382 return _controls_
.CheckBox_GetClassDefaultAttributes(*args
, **kwargs
)
384 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
386 class CheckBoxPtr(CheckBox
):
387 def __init__(self
, this
):
389 if not hasattr(self
,"thisown"): self
.thisown
= 0
390 self
.__class
__ = CheckBox
391 _controls_
.CheckBox_swigregister(CheckBoxPtr
)
392 CheckBoxNameStr
= cvar
.CheckBoxNameStr
394 def PreCheckBox(*args
, **kwargs
):
396 PreCheckBox() -> CheckBox
398 Precreate a CheckBox for 2-phase creation.
400 val
= _controls_
.new_PreCheckBox(*args
, **kwargs
)
404 def CheckBox_GetClassDefaultAttributes(*args
, **kwargs
):
406 CheckBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
408 Get the default attributes for this class. This is useful if you want
409 to use the same font or colour in your own control as in a standard
410 control -- which is a much better idea than hard coding specific
411 colours or fonts which might look completely out of place on the
412 user's system, especially if it uses themes.
414 The variant parameter is only relevant under Mac currently and is
415 ignore under other platforms. Under Mac, it will change the size of
416 the returned font. See `wx.Window.SetWindowVariant` for more about
419 return _controls_
.CheckBox_GetClassDefaultAttributes(*args
, **kwargs
)
421 #---------------------------------------------------------------------------
423 class Choice(_core
.ControlWithItems
):
425 A Choice control is used to select one of a list of strings.
426 Unlike a `wx.ListBox`, only the selection is visible until the
427 user pulls down the menu of choices.
430 return "<%s.%s; proxy of C++ wxChoice instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
431 def __init__(self
, *args
, **kwargs
):
433 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
434 List choices=[], long style=0, Validator validator=DefaultValidator,
435 String name=ChoiceNameStr) -> Choice
437 Create and show a Choice control
439 newobj
= _controls_
.new_Choice(*args
, **kwargs
)
440 self
.this
= newobj
.this
443 self
._setOORInfo
(self
)
445 def Create(*args
, **kwargs
):
447 Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
448 List choices=[], long style=0, Validator validator=DefaultValidator,
449 String name=ChoiceNameStr) -> bool
451 return _controls_
.Choice_Create(*args
, **kwargs
)
453 def SetSelection(*args
, **kwargs
):
455 SetSelection(self, int n)
457 Select the n'th item (zero based) in the list.
459 return _controls_
.Choice_SetSelection(*args
, **kwargs
)
461 def SetStringSelection(*args
, **kwargs
):
463 SetStringSelection(self, String string) -> bool
465 Select the item with the specifed string
467 return _controls_
.Choice_SetStringSelection(*args
, **kwargs
)
469 def SetString(*args
, **kwargs
):
471 SetString(self, int n, String string)
473 Set the label for the n'th item (zero based) in the list.
475 return _controls_
.Choice_SetString(*args
, **kwargs
)
477 Select
= SetSelection
478 def GetClassDefaultAttributes(*args
, **kwargs
):
480 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
482 Get the default attributes for this class. This is useful if you want
483 to use the same font or colour in your own control as in a standard
484 control -- which is a much better idea than hard coding specific
485 colours or fonts which might look completely out of place on the
486 user's system, especially if it uses themes.
488 The variant parameter is only relevant under Mac currently and is
489 ignore under other platforms. Under Mac, it will change the size of
490 the returned font. See `wx.Window.SetWindowVariant` for more about
493 return _controls_
.Choice_GetClassDefaultAttributes(*args
, **kwargs
)
495 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
497 class ChoicePtr(Choice
):
498 def __init__(self
, this
):
500 if not hasattr(self
,"thisown"): self
.thisown
= 0
501 self
.__class
__ = Choice
502 _controls_
.Choice_swigregister(ChoicePtr
)
503 ChoiceNameStr
= cvar
.ChoiceNameStr
505 def PreChoice(*args
, **kwargs
):
507 PreChoice() -> Choice
509 Precreate a Choice control for 2-phase creation.
511 val
= _controls_
.new_PreChoice(*args
, **kwargs
)
515 def Choice_GetClassDefaultAttributes(*args
, **kwargs
):
517 Choice_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
519 Get the default attributes for this class. This is useful if you want
520 to use the same font or colour in your own control as in a standard
521 control -- which is a much better idea than hard coding specific
522 colours or fonts which might look completely out of place on the
523 user's system, especially if it uses themes.
525 The variant parameter is only relevant under Mac currently and is
526 ignore under other platforms. Under Mac, it will change the size of
527 the returned font. See `wx.Window.SetWindowVariant` for more about
530 return _controls_
.Choice_GetClassDefaultAttributes(*args
, **kwargs
)
532 #---------------------------------------------------------------------------
534 class ComboBox(Choice
):
536 A combobox is like a combination of an edit control and a
537 listbox. It can be displayed as static list with editable or
538 read-only text field; or a drop-down list with text field.
540 A combobox permits a single selection only. Combobox items are
544 return "<%s.%s; proxy of C++ wxComboBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
545 def __init__(self
, *args
, **kwargs
):
547 __init__(Window parent, int id, String value=EmptyString,
548 Point pos=DefaultPosition, Size size=DefaultSize,
549 List choices=[], long style=0, Validator validator=DefaultValidator,
550 String name=ComboBoxNameStr) -> ComboBox
552 Constructor, creates and shows a ComboBox control.
554 newobj
= _controls_
.new_ComboBox(*args
, **kwargs
)
555 self
.this
= newobj
.this
558 self
._setOORInfo
(self
)
560 def Create(*args
, **kwargs
):
562 Create(Window parent, int id, String value=EmptyString,
563 Point pos=DefaultPosition, Size size=DefaultSize,
564 List choices=[], long style=0, Validator validator=DefaultValidator,
565 String name=ChoiceNameStr) -> bool
567 return _controls_
.ComboBox_Create(*args
, **kwargs
)
569 def GetValue(*args
, **kwargs
):
571 GetValue(self) -> String
573 Returns the current value in the combobox text field.
575 return _controls_
.ComboBox_GetValue(*args
, **kwargs
)
577 def SetValue(*args
, **kwargs
):
578 """SetValue(self, String value)"""
579 return _controls_
.ComboBox_SetValue(*args
, **kwargs
)
581 def Copy(*args
, **kwargs
):
585 Copies the selected text to the clipboard.
587 return _controls_
.ComboBox_Copy(*args
, **kwargs
)
589 def Cut(*args
, **kwargs
):
593 Copies the selected text to the clipboard and removes the selection.
595 return _controls_
.ComboBox_Cut(*args
, **kwargs
)
597 def Paste(*args
, **kwargs
):
601 Pastes text from the clipboard to the text field.
603 return _controls_
.ComboBox_Paste(*args
, **kwargs
)
605 def SetInsertionPoint(*args
, **kwargs
):
607 SetInsertionPoint(self, long pos)
609 Sets the insertion point in the combobox text field.
611 return _controls_
.ComboBox_SetInsertionPoint(*args
, **kwargs
)
613 def GetInsertionPoint(*args
, **kwargs
):
615 GetInsertionPoint(self) -> long
617 Returns the insertion point for the combobox's text field.
619 return _controls_
.ComboBox_GetInsertionPoint(*args
, **kwargs
)
621 def GetLastPosition(*args
, **kwargs
):
623 GetLastPosition(self) -> long
625 Returns the last position in the combobox text field.
627 return _controls_
.ComboBox_GetLastPosition(*args
, **kwargs
)
629 def Replace(*args
, **kwargs
):
631 Replace(self, long from, long to, String value)
633 Replaces the text between two positions with the given text, in the
636 return _controls_
.ComboBox_Replace(*args
, **kwargs
)
638 def SetSelection(*args
, **kwargs
):
640 SetSelection(self, int n)
642 Sets the item at index 'n' to be the selected item.
644 return _controls_
.ComboBox_SetSelection(*args
, **kwargs
)
646 def SetMark(*args
, **kwargs
):
648 SetMark(self, long from, long to)
650 Selects the text between the two positions in the combobox text field.
652 return _controls_
.ComboBox_SetMark(*args
, **kwargs
)
654 def SetStringSelection(*args
, **kwargs
):
656 SetStringSelection(self, String string) -> bool
658 Select the item with the specifed string
660 return _controls_
.ComboBox_SetStringSelection(*args
, **kwargs
)
662 def SetString(*args
, **kwargs
):
664 SetString(self, int n, String string)
666 Set the label for the n'th item (zero based) in the list.
668 return _controls_
.ComboBox_SetString(*args
, **kwargs
)
670 def SetEditable(*args
, **kwargs
):
671 """SetEditable(self, bool editable)"""
672 return _controls_
.ComboBox_SetEditable(*args
, **kwargs
)
674 def SetInsertionPointEnd(*args
, **kwargs
):
676 SetInsertionPointEnd(self)
678 Sets the insertion point at the end of the combobox text field.
680 return _controls_
.ComboBox_SetInsertionPointEnd(*args
, **kwargs
)
682 def Remove(*args
, **kwargs
):
684 Remove(self, long from, long to)
686 Removes the text between the two positions in the combobox text field.
688 return _controls_
.ComboBox_Remove(*args
, **kwargs
)
690 def GetClassDefaultAttributes(*args
, **kwargs
):
692 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
694 Get the default attributes for this class. This is useful if you want
695 to use the same font or colour in your own control as in a standard
696 control -- which is a much better idea than hard coding specific
697 colours or fonts which might look completely out of place on the
698 user's system, especially if it uses themes.
700 The variant parameter is only relevant under Mac currently and is
701 ignore under other platforms. Under Mac, it will change the size of
702 the returned font. See `wx.Window.SetWindowVariant` for more about
705 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
707 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
709 class ComboBoxPtr(ComboBox
):
710 def __init__(self
, this
):
712 if not hasattr(self
,"thisown"): self
.thisown
= 0
713 self
.__class
__ = ComboBox
714 _controls_
.ComboBox_swigregister(ComboBoxPtr
)
715 ComboBoxNameStr
= cvar
.ComboBoxNameStr
717 def PreComboBox(*args
, **kwargs
):
719 PreComboBox() -> ComboBox
721 Precreate a ComboBox control for 2-phase creation.
723 val
= _controls_
.new_PreComboBox(*args
, **kwargs
)
727 def ComboBox_GetClassDefaultAttributes(*args
, **kwargs
):
729 ComboBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
731 Get the default attributes for this class. This is useful if you want
732 to use the same font or colour in your own control as in a standard
733 control -- which is a much better idea than hard coding specific
734 colours or fonts which might look completely out of place on the
735 user's system, especially if it uses themes.
737 The variant parameter is only relevant under Mac currently and is
738 ignore under other platforms. Under Mac, it will change the size of
739 the returned font. See `wx.Window.SetWindowVariant` for more about
742 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
744 #---------------------------------------------------------------------------
746 GA_HORIZONTAL
= _controls_
.GA_HORIZONTAL
747 GA_VERTICAL
= _controls_
.GA_VERTICAL
748 GA_SMOOTH
= _controls_
.GA_SMOOTH
749 GA_PROGRESSBAR
= _controls_
.GA_PROGRESSBAR
750 class Gauge(_core
.Control
):
752 return "<%s.%s; proxy of C++ wxGauge instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
753 def __init__(self
, *args
, **kwargs
):
755 __init__(self, Window parent, int id, int range, Point pos=DefaultPosition,
756 Size size=DefaultSize, long style=GA_HORIZONTAL,
757 Validator validator=DefaultValidator,
758 String name=GaugeNameStr) -> Gauge
760 newobj
= _controls_
.new_Gauge(*args
, **kwargs
)
761 self
.this
= newobj
.this
764 self
._setOORInfo
(self
)
766 def Create(*args
, **kwargs
):
768 Create(self, Window parent, int id, int range, Point pos=DefaultPosition,
769 Size size=DefaultSize, long style=GA_HORIZONTAL,
770 Validator validator=DefaultValidator,
771 String name=GaugeNameStr) -> bool
773 return _controls_
.Gauge_Create(*args
, **kwargs
)
775 def SetRange(*args
, **kwargs
):
776 """SetRange(self, int range)"""
777 return _controls_
.Gauge_SetRange(*args
, **kwargs
)
779 def GetRange(*args
, **kwargs
):
780 """GetRange(self) -> int"""
781 return _controls_
.Gauge_GetRange(*args
, **kwargs
)
783 def SetValue(*args
, **kwargs
):
784 """SetValue(self, int pos)"""
785 return _controls_
.Gauge_SetValue(*args
, **kwargs
)
787 def GetValue(*args
, **kwargs
):
788 """GetValue(self) -> int"""
789 return _controls_
.Gauge_GetValue(*args
, **kwargs
)
791 def IsVertical(*args
, **kwargs
):
792 """IsVertical(self) -> bool"""
793 return _controls_
.Gauge_IsVertical(*args
, **kwargs
)
795 def SetShadowWidth(*args
, **kwargs
):
796 """SetShadowWidth(self, int w)"""
797 return _controls_
.Gauge_SetShadowWidth(*args
, **kwargs
)
799 def GetShadowWidth(*args
, **kwargs
):
800 """GetShadowWidth(self) -> int"""
801 return _controls_
.Gauge_GetShadowWidth(*args
, **kwargs
)
803 def SetBezelFace(*args
, **kwargs
):
804 """SetBezelFace(self, int w)"""
805 return _controls_
.Gauge_SetBezelFace(*args
, **kwargs
)
807 def GetBezelFace(*args
, **kwargs
):
808 """GetBezelFace(self) -> int"""
809 return _controls_
.Gauge_GetBezelFace(*args
, **kwargs
)
811 def GetClassDefaultAttributes(*args
, **kwargs
):
813 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
815 Get the default attributes for this class. This is useful if you want
816 to use the same font or colour in your own control as in a standard
817 control -- which is a much better idea than hard coding specific
818 colours or fonts which might look completely out of place on the
819 user's system, especially if it uses themes.
821 The variant parameter is only relevant under Mac currently and is
822 ignore under other platforms. Under Mac, it will change the size of
823 the returned font. See `wx.Window.SetWindowVariant` for more about
826 return _controls_
.Gauge_GetClassDefaultAttributes(*args
, **kwargs
)
828 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
830 class GaugePtr(Gauge
):
831 def __init__(self
, this
):
833 if not hasattr(self
,"thisown"): self
.thisown
= 0
834 self
.__class
__ = Gauge
835 _controls_
.Gauge_swigregister(GaugePtr
)
836 GaugeNameStr
= cvar
.GaugeNameStr
838 def PreGauge(*args
, **kwargs
):
839 """PreGauge() -> Gauge"""
840 val
= _controls_
.new_PreGauge(*args
, **kwargs
)
844 def Gauge_GetClassDefaultAttributes(*args
, **kwargs
):
846 Gauge_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
848 Get the default attributes for this class. This is useful if you want
849 to use the same font or colour in your own control as in a standard
850 control -- which is a much better idea than hard coding specific
851 colours or fonts which might look completely out of place on the
852 user's system, especially if it uses themes.
854 The variant parameter is only relevant under Mac currently and is
855 ignore under other platforms. Under Mac, it will change the size of
856 the returned font. See `wx.Window.SetWindowVariant` for more about
859 return _controls_
.Gauge_GetClassDefaultAttributes(*args
, **kwargs
)
861 #---------------------------------------------------------------------------
863 class StaticBox(_core
.Control
):
865 return "<%s.%s; proxy of C++ wxStaticBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
866 def __init__(self
, *args
, **kwargs
):
868 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
869 Size size=DefaultSize, long style=0,
870 String name=StaticBoxNameStr) -> StaticBox
872 newobj
= _controls_
.new_StaticBox(*args
, **kwargs
)
873 self
.this
= newobj
.this
876 self
._setOORInfo
(self
)
878 def Create(*args
, **kwargs
):
880 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
881 Size size=DefaultSize, long style=0,
882 String name=StaticBoxNameStr) -> bool
884 return _controls_
.StaticBox_Create(*args
, **kwargs
)
886 def GetClassDefaultAttributes(*args
, **kwargs
):
888 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
890 Get the default attributes for this class. This is useful if you want
891 to use the same font or colour in your own control as in a standard
892 control -- which is a much better idea than hard coding specific
893 colours or fonts which might look completely out of place on the
894 user's system, especially if it uses themes.
896 The variant parameter is only relevant under Mac currently and is
897 ignore under other platforms. Under Mac, it will change the size of
898 the returned font. See `wx.Window.SetWindowVariant` for more about
901 return _controls_
.StaticBox_GetClassDefaultAttributes(*args
, **kwargs
)
903 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
905 class StaticBoxPtr(StaticBox
):
906 def __init__(self
, this
):
908 if not hasattr(self
,"thisown"): self
.thisown
= 0
909 self
.__class
__ = StaticBox
910 _controls_
.StaticBox_swigregister(StaticBoxPtr
)
911 StaticBitmapNameStr
= cvar
.StaticBitmapNameStr
912 StaticBoxNameStr
= cvar
.StaticBoxNameStr
913 StaticTextNameStr
= cvar
.StaticTextNameStr
915 def PreStaticBox(*args
, **kwargs
):
916 """PreStaticBox() -> StaticBox"""
917 val
= _controls_
.new_PreStaticBox(*args
, **kwargs
)
921 def StaticBox_GetClassDefaultAttributes(*args
, **kwargs
):
923 StaticBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
925 Get the default attributes for this class. This is useful if you want
926 to use the same font or colour in your own control as in a standard
927 control -- which is a much better idea than hard coding specific
928 colours or fonts which might look completely out of place on the
929 user's system, especially if it uses themes.
931 The variant parameter is only relevant under Mac currently and is
932 ignore under other platforms. Under Mac, it will change the size of
933 the returned font. See `wx.Window.SetWindowVariant` for more about
936 return _controls_
.StaticBox_GetClassDefaultAttributes(*args
, **kwargs
)
938 #---------------------------------------------------------------------------
940 class StaticLine(_core
.Control
):
942 return "<%s.%s; proxy of C++ wxStaticLine instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
943 def __init__(self
, *args
, **kwargs
):
945 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
946 long style=LI_HORIZONTAL,
947 String name=StaticTextNameStr) -> StaticLine
949 newobj
= _controls_
.new_StaticLine(*args
, **kwargs
)
950 self
.this
= newobj
.this
953 self
._setOORInfo
(self
)
955 def Create(*args
, **kwargs
):
957 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
958 long style=LI_HORIZONTAL,
959 String name=StaticTextNameStr) -> bool
961 return _controls_
.StaticLine_Create(*args
, **kwargs
)
963 def IsVertical(*args
, **kwargs
):
964 """IsVertical(self) -> bool"""
965 return _controls_
.StaticLine_IsVertical(*args
, **kwargs
)
967 def GetDefaultSize(*args
, **kwargs
):
968 """GetDefaultSize() -> int"""
969 return _controls_
.StaticLine_GetDefaultSize(*args
, **kwargs
)
971 GetDefaultSize
= staticmethod(GetDefaultSize
)
972 def GetClassDefaultAttributes(*args
, **kwargs
):
974 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
976 Get the default attributes for this class. This is useful if you want
977 to use the same font or colour in your own control as in a standard
978 control -- which is a much better idea than hard coding specific
979 colours or fonts which might look completely out of place on the
980 user's system, especially if it uses themes.
982 The variant parameter is only relevant under Mac currently and is
983 ignore under other platforms. Under Mac, it will change the size of
984 the returned font. See `wx.Window.SetWindowVariant` for more about
987 return _controls_
.StaticLine_GetClassDefaultAttributes(*args
, **kwargs
)
989 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
991 class StaticLinePtr(StaticLine
):
992 def __init__(self
, this
):
994 if not hasattr(self
,"thisown"): self
.thisown
= 0
995 self
.__class
__ = StaticLine
996 _controls_
.StaticLine_swigregister(StaticLinePtr
)
998 def PreStaticLine(*args
, **kwargs
):
999 """PreStaticLine() -> StaticLine"""
1000 val
= _controls_
.new_PreStaticLine(*args
, **kwargs
)
1004 def StaticLine_GetDefaultSize(*args
, **kwargs
):
1005 """StaticLine_GetDefaultSize() -> int"""
1006 return _controls_
.StaticLine_GetDefaultSize(*args
, **kwargs
)
1008 def StaticLine_GetClassDefaultAttributes(*args
, **kwargs
):
1010 StaticLine_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1012 Get the default attributes for this class. This is useful if you want
1013 to use the same font or colour in your own control as in a standard
1014 control -- which is a much better idea than hard coding specific
1015 colours or fonts which might look completely out of place on the
1016 user's system, especially if it uses themes.
1018 The variant parameter is only relevant under Mac currently and is
1019 ignore under other platforms. Under Mac, it will change the size of
1020 the returned font. See `wx.Window.SetWindowVariant` for more about
1023 return _controls_
.StaticLine_GetClassDefaultAttributes(*args
, **kwargs
)
1025 #---------------------------------------------------------------------------
1027 class StaticText(_core
.Control
):
1029 return "<%s.%s; proxy of C++ wxStaticText instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1030 def __init__(self
, *args
, **kwargs
):
1032 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
1033 Size size=DefaultSize, long style=0,
1034 String name=StaticTextNameStr) -> StaticText
1036 newobj
= _controls_
.new_StaticText(*args
, **kwargs
)
1037 self
.this
= newobj
.this
1040 self
._setOORInfo
(self
)
1042 def Create(*args
, **kwargs
):
1044 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
1045 Size size=DefaultSize, long style=0,
1046 String name=StaticTextNameStr) -> bool
1048 return _controls_
.StaticText_Create(*args
, **kwargs
)
1050 def GetClassDefaultAttributes(*args
, **kwargs
):
1052 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1054 Get the default attributes for this class. This is useful if you want
1055 to use the same font or colour in your own control as in a standard
1056 control -- which is a much better idea than hard coding specific
1057 colours or fonts which might look completely out of place on the
1058 user's system, especially if it uses themes.
1060 The variant parameter is only relevant under Mac currently and is
1061 ignore under other platforms. Under Mac, it will change the size of
1062 the returned font. See `wx.Window.SetWindowVariant` for more about
1065 return _controls_
.StaticText_GetClassDefaultAttributes(*args
, **kwargs
)
1067 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1069 class StaticTextPtr(StaticText
):
1070 def __init__(self
, this
):
1072 if not hasattr(self
,"thisown"): self
.thisown
= 0
1073 self
.__class
__ = StaticText
1074 _controls_
.StaticText_swigregister(StaticTextPtr
)
1076 def PreStaticText(*args
, **kwargs
):
1077 """PreStaticText() -> StaticText"""
1078 val
= _controls_
.new_PreStaticText(*args
, **kwargs
)
1082 def StaticText_GetClassDefaultAttributes(*args
, **kwargs
):
1084 StaticText_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1086 Get the default attributes for this class. This is useful if you want
1087 to use the same font or colour in your own control as in a standard
1088 control -- which is a much better idea than hard coding specific
1089 colours or fonts which might look completely out of place on the
1090 user's system, especially if it uses themes.
1092 The variant parameter is only relevant under Mac currently and is
1093 ignore under other platforms. Under Mac, it will change the size of
1094 the returned font. See `wx.Window.SetWindowVariant` for more about
1097 return _controls_
.StaticText_GetClassDefaultAttributes(*args
, **kwargs
)
1099 #---------------------------------------------------------------------------
1101 class StaticBitmap(_core
.Control
):
1103 return "<%s.%s; proxy of C++ wxStaticBitmap instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1104 def __init__(self
, *args
, **kwargs
):
1106 __init__(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
1107 Size size=DefaultSize, long style=0,
1108 String name=StaticBitmapNameStr) -> StaticBitmap
1110 newobj
= _controls_
.new_StaticBitmap(*args
, **kwargs
)
1111 self
.this
= newobj
.this
1114 self
._setOORInfo
(self
)
1116 def Create(*args
, **kwargs
):
1118 Create(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
1119 Size size=DefaultSize, long style=0,
1120 String name=StaticBitmapNameStr) -> bool
1122 return _controls_
.StaticBitmap_Create(*args
, **kwargs
)
1124 def GetBitmap(*args
, **kwargs
):
1125 """GetBitmap(self) -> Bitmap"""
1126 return _controls_
.StaticBitmap_GetBitmap(*args
, **kwargs
)
1128 def SetBitmap(*args
, **kwargs
):
1129 """SetBitmap(self, Bitmap bitmap)"""
1130 return _controls_
.StaticBitmap_SetBitmap(*args
, **kwargs
)
1132 def SetIcon(*args
, **kwargs
):
1133 """SetIcon(self, Icon icon)"""
1134 return _controls_
.StaticBitmap_SetIcon(*args
, **kwargs
)
1136 def GetClassDefaultAttributes(*args
, **kwargs
):
1138 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1140 Get the default attributes for this class. This is useful if you want
1141 to use the same font or colour in your own control as in a standard
1142 control -- which is a much better idea than hard coding specific
1143 colours or fonts which might look completely out of place on the
1144 user's system, especially if it uses themes.
1146 The variant parameter is only relevant under Mac currently and is
1147 ignore under other platforms. Under Mac, it will change the size of
1148 the returned font. See `wx.Window.SetWindowVariant` for more about
1151 return _controls_
.StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
)
1153 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1155 class StaticBitmapPtr(StaticBitmap
):
1156 def __init__(self
, this
):
1158 if not hasattr(self
,"thisown"): self
.thisown
= 0
1159 self
.__class
__ = StaticBitmap
1160 _controls_
.StaticBitmap_swigregister(StaticBitmapPtr
)
1162 def PreStaticBitmap(*args
, **kwargs
):
1163 """PreStaticBitmap() -> StaticBitmap"""
1164 val
= _controls_
.new_PreStaticBitmap(*args
, **kwargs
)
1168 def StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
):
1170 StaticBitmap_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1172 Get the default attributes for this class. This is useful if you want
1173 to use the same font or colour in your own control as in a standard
1174 control -- which is a much better idea than hard coding specific
1175 colours or fonts which might look completely out of place on the
1176 user's system, especially if it uses themes.
1178 The variant parameter is only relevant under Mac currently and is
1179 ignore under other platforms. Under Mac, it will change the size of
1180 the returned font. See `wx.Window.SetWindowVariant` for more about
1183 return _controls_
.StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
)
1185 #---------------------------------------------------------------------------
1187 class ListBox(_core
.ControlWithItems
):
1189 return "<%s.%s; proxy of C++ wxListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1190 def __init__(self
, *args
, **kwargs
):
1192 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1193 wxArrayString choices=wxPyEmptyStringArray,
1194 long style=0, Validator validator=DefaultValidator,
1195 String name=ListBoxNameStr) -> ListBox
1197 newobj
= _controls_
.new_ListBox(*args
, **kwargs
)
1198 self
.this
= newobj
.this
1201 self
._setOORInfo
(self
)
1203 def Create(*args
, **kwargs
):
1205 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1206 wxArrayString choices=wxPyEmptyStringArray,
1207 long style=0, Validator validator=DefaultValidator,
1208 String name=ListBoxNameStr) -> bool
1210 return _controls_
.ListBox_Create(*args
, **kwargs
)
1212 def Insert(*args
, **kwargs
):
1214 Insert(self, String item, int pos, PyObject clientData=None)
1216 Insert an item into the control before the item at the ``pos`` index,
1217 optionally associating some data object with the item.
1219 return _controls_
.ListBox_Insert(*args
, **kwargs
)
1221 def InsertItems(*args
, **kwargs
):
1222 """InsertItems(self, wxArrayString items, int pos)"""
1223 return _controls_
.ListBox_InsertItems(*args
, **kwargs
)
1225 def Set(*args
, **kwargs
):
1226 """Set(self, wxArrayString items)"""
1227 return _controls_
.ListBox_Set(*args
, **kwargs
)
1229 def IsSelected(*args
, **kwargs
):
1230 """IsSelected(self, int n) -> bool"""
1231 return _controls_
.ListBox_IsSelected(*args
, **kwargs
)
1233 def SetSelection(*args
, **kwargs
):
1234 """SetSelection(self, int n, bool select=True)"""
1235 return _controls_
.ListBox_SetSelection(*args
, **kwargs
)
1237 def Select(*args
, **kwargs
):
1241 Sets the item at index 'n' to be the selected item.
1243 return _controls_
.ListBox_Select(*args
, **kwargs
)
1245 def Deselect(*args
, **kwargs
):
1246 """Deselect(self, int n)"""
1247 return _controls_
.ListBox_Deselect(*args
, **kwargs
)
1249 def DeselectAll(*args
, **kwargs
):
1250 """DeselectAll(self, int itemToLeaveSelected=-1)"""
1251 return _controls_
.ListBox_DeselectAll(*args
, **kwargs
)
1253 def SetStringSelection(*args
, **kwargs
):
1254 """SetStringSelection(self, String s, bool select=True) -> bool"""
1255 return _controls_
.ListBox_SetStringSelection(*args
, **kwargs
)
1257 def GetSelections(*args
, **kwargs
):
1258 """GetSelections(self) -> PyObject"""
1259 return _controls_
.ListBox_GetSelections(*args
, **kwargs
)
1261 def SetFirstItem(*args
, **kwargs
):
1262 """SetFirstItem(self, int n)"""
1263 return _controls_
.ListBox_SetFirstItem(*args
, **kwargs
)
1265 def SetFirstItemStr(*args
, **kwargs
):
1266 """SetFirstItemStr(self, String s)"""
1267 return _controls_
.ListBox_SetFirstItemStr(*args
, **kwargs
)
1269 def EnsureVisible(*args
, **kwargs
):
1270 """EnsureVisible(self, int n)"""
1271 return _controls_
.ListBox_EnsureVisible(*args
, **kwargs
)
1273 def AppendAndEnsureVisible(*args
, **kwargs
):
1274 """AppendAndEnsureVisible(self, String s)"""
1275 return _controls_
.ListBox_AppendAndEnsureVisible(*args
, **kwargs
)
1277 def IsSorted(*args
, **kwargs
):
1278 """IsSorted(self) -> bool"""
1279 return _controls_
.ListBox_IsSorted(*args
, **kwargs
)
1281 def SetItemForegroundColour(*args
, **kwargs
):
1282 """SetItemForegroundColour(self, int item, Colour c)"""
1283 return _controls_
.ListBox_SetItemForegroundColour(*args
, **kwargs
)
1285 def SetItemBackgroundColour(*args
, **kwargs
):
1286 """SetItemBackgroundColour(self, int item, Colour c)"""
1287 return _controls_
.ListBox_SetItemBackgroundColour(*args
, **kwargs
)
1289 def SetItemFont(*args
, **kwargs
):
1290 """SetItemFont(self, int item, Font f)"""
1291 return _controls_
.ListBox_SetItemFont(*args
, **kwargs
)
1293 def GetClassDefaultAttributes(*args
, **kwargs
):
1295 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1297 Get the default attributes for this class. This is useful if you want
1298 to use the same font or colour in your own control as in a standard
1299 control -- which is a much better idea than hard coding specific
1300 colours or fonts which might look completely out of place on the
1301 user's system, especially if it uses themes.
1303 The variant parameter is only relevant under Mac currently and is
1304 ignore under other platforms. Under Mac, it will change the size of
1305 the returned font. See `wx.Window.SetWindowVariant` for more about
1308 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1310 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1312 class ListBoxPtr(ListBox
):
1313 def __init__(self
, this
):
1315 if not hasattr(self
,"thisown"): self
.thisown
= 0
1316 self
.__class
__ = ListBox
1317 _controls_
.ListBox_swigregister(ListBoxPtr
)
1318 ListBoxNameStr
= cvar
.ListBoxNameStr
1320 def PreListBox(*args
, **kwargs
):
1321 """PreListBox() -> ListBox"""
1322 val
= _controls_
.new_PreListBox(*args
, **kwargs
)
1326 def ListBox_GetClassDefaultAttributes(*args
, **kwargs
):
1328 ListBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1330 Get the default attributes for this class. This is useful if you want
1331 to use the same font or colour in your own control as in a standard
1332 control -- which is a much better idea than hard coding specific
1333 colours or fonts which might look completely out of place on the
1334 user's system, especially if it uses themes.
1336 The variant parameter is only relevant under Mac currently and is
1337 ignore under other platforms. Under Mac, it will change the size of
1338 the returned font. See `wx.Window.SetWindowVariant` for more about
1341 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1343 #---------------------------------------------------------------------------
1345 class CheckListBox(ListBox
):
1347 return "<%s.%s; proxy of C++ wxCheckListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1348 def __init__(self
, *args
, **kwargs
):
1350 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1351 wxArrayString choices=wxPyEmptyStringArray,
1352 long style=0, Validator validator=DefaultValidator,
1353 String name=ListBoxNameStr) -> CheckListBox
1355 newobj
= _controls_
.new_CheckListBox(*args
, **kwargs
)
1356 self
.this
= newobj
.this
1359 self
._setOORInfo
(self
)
1361 def Create(*args
, **kwargs
):
1363 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1364 wxArrayString choices=wxPyEmptyStringArray,
1365 long style=0, Validator validator=DefaultValidator,
1366 String name=ListBoxNameStr) -> bool
1368 return _controls_
.CheckListBox_Create(*args
, **kwargs
)
1370 def IsChecked(*args
, **kwargs
):
1371 """IsChecked(self, int index) -> bool"""
1372 return _controls_
.CheckListBox_IsChecked(*args
, **kwargs
)
1374 def Check(*args
, **kwargs
):
1375 """Check(self, int index, int check=True)"""
1376 return _controls_
.CheckListBox_Check(*args
, **kwargs
)
1378 def GetItemHeight(*args
, **kwargs
):
1379 """GetItemHeight(self) -> int"""
1380 return _controls_
.CheckListBox_GetItemHeight(*args
, **kwargs
)
1382 def HitTest(*args
, **kwargs
):
1384 HitTest(self, Point pt) -> int
1386 Test where the given (in client coords) point lies
1388 return _controls_
.CheckListBox_HitTest(*args
, **kwargs
)
1390 def HitTestXY(*args
, **kwargs
):
1392 HitTestXY(self, int x, int y) -> int
1394 Test where the given (in client coords) point lies
1396 return _controls_
.CheckListBox_HitTestXY(*args
, **kwargs
)
1399 class CheckListBoxPtr(CheckListBox
):
1400 def __init__(self
, this
):
1402 if not hasattr(self
,"thisown"): self
.thisown
= 0
1403 self
.__class
__ = CheckListBox
1404 _controls_
.CheckListBox_swigregister(CheckListBoxPtr
)
1406 def PreCheckListBox(*args
, **kwargs
):
1407 """PreCheckListBox() -> CheckListBox"""
1408 val
= _controls_
.new_PreCheckListBox(*args
, **kwargs
)
1412 #---------------------------------------------------------------------------
1414 TE_NO_VSCROLL
= _controls_
.TE_NO_VSCROLL
1415 TE_AUTO_SCROLL
= _controls_
.TE_AUTO_SCROLL
1416 TE_READONLY
= _controls_
.TE_READONLY
1417 TE_MULTILINE
= _controls_
.TE_MULTILINE
1418 TE_PROCESS_TAB
= _controls_
.TE_PROCESS_TAB
1419 TE_LEFT
= _controls_
.TE_LEFT
1420 TE_CENTER
= _controls_
.TE_CENTER
1421 TE_RIGHT
= _controls_
.TE_RIGHT
1422 TE_CENTRE
= _controls_
.TE_CENTRE
1423 TE_RICH
= _controls_
.TE_RICH
1424 TE_PROCESS_ENTER
= _controls_
.TE_PROCESS_ENTER
1425 TE_PASSWORD
= _controls_
.TE_PASSWORD
1426 TE_AUTO_URL
= _controls_
.TE_AUTO_URL
1427 TE_NOHIDESEL
= _controls_
.TE_NOHIDESEL
1428 TE_DONTWRAP
= _controls_
.TE_DONTWRAP
1429 TE_LINEWRAP
= _controls_
.TE_LINEWRAP
1430 TE_WORDWRAP
= _controls_
.TE_WORDWRAP
1431 TE_RICH2
= _controls_
.TE_RICH2
1432 TEXT_ALIGNMENT_DEFAULT
= _controls_
.TEXT_ALIGNMENT_DEFAULT
1433 TEXT_ALIGNMENT_LEFT
= _controls_
.TEXT_ALIGNMENT_LEFT
1434 TEXT_ALIGNMENT_CENTRE
= _controls_
.TEXT_ALIGNMENT_CENTRE
1435 TEXT_ALIGNMENT_CENTER
= _controls_
.TEXT_ALIGNMENT_CENTER
1436 TEXT_ALIGNMENT_RIGHT
= _controls_
.TEXT_ALIGNMENT_RIGHT
1437 TEXT_ALIGNMENT_JUSTIFIED
= _controls_
.TEXT_ALIGNMENT_JUSTIFIED
1438 TEXT_ATTR_TEXT_COLOUR
= _controls_
.TEXT_ATTR_TEXT_COLOUR
1439 TEXT_ATTR_BACKGROUND_COLOUR
= _controls_
.TEXT_ATTR_BACKGROUND_COLOUR
1440 TEXT_ATTR_FONT_FACE
= _controls_
.TEXT_ATTR_FONT_FACE
1441 TEXT_ATTR_FONT_SIZE
= _controls_
.TEXT_ATTR_FONT_SIZE
1442 TEXT_ATTR_FONT_WEIGHT
= _controls_
.TEXT_ATTR_FONT_WEIGHT
1443 TEXT_ATTR_FONT_ITALIC
= _controls_
.TEXT_ATTR_FONT_ITALIC
1444 TEXT_ATTR_FONT_UNDERLINE
= _controls_
.TEXT_ATTR_FONT_UNDERLINE
1445 TEXT_ATTR_FONT
= _controls_
.TEXT_ATTR_FONT
1446 TEXT_ATTR_ALIGNMENT
= _controls_
.TEXT_ATTR_ALIGNMENT
1447 TEXT_ATTR_LEFT_INDENT
= _controls_
.TEXT_ATTR_LEFT_INDENT
1448 TEXT_ATTR_RIGHT_INDENT
= _controls_
.TEXT_ATTR_RIGHT_INDENT
1449 TEXT_ATTR_TABS
= _controls_
.TEXT_ATTR_TABS
1450 TE_HT_UNKNOWN
= _controls_
.TE_HT_UNKNOWN
1451 TE_HT_BEFORE
= _controls_
.TE_HT_BEFORE
1452 TE_HT_ON_TEXT
= _controls_
.TE_HT_ON_TEXT
1453 TE_HT_BELOW
= _controls_
.TE_HT_BELOW
1454 TE_HT_BEYOND
= _controls_
.TE_HT_BEYOND
1455 class TextAttr(object):
1457 return "<%s.%s; proxy of C++ wxTextAttr instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1458 def __init__(self
, *args
):
1460 __init__(self) -> TextAttr
1461 __init__(self, Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
1462 int alignment=TEXT_ALIGNMENT_DEFAULT) -> TextAttr
1464 newobj
= _controls_
.new_TextAttr(*args
)
1465 self
.this
= newobj
.this
1468 def __del__(self
, destroy
=_controls_
.delete_TextAttr
):
1471 if self
.thisown
: destroy(self
)
1474 def Init(*args
, **kwargs
):
1476 return _controls_
.TextAttr_Init(*args
, **kwargs
)
1478 def SetTextColour(*args
, **kwargs
):
1479 """SetTextColour(self, Colour colText)"""
1480 return _controls_
.TextAttr_SetTextColour(*args
, **kwargs
)
1482 def SetBackgroundColour(*args
, **kwargs
):
1483 """SetBackgroundColour(self, Colour colBack)"""
1484 return _controls_
.TextAttr_SetBackgroundColour(*args
, **kwargs
)
1486 def SetFont(*args
, **kwargs
):
1487 """SetFont(self, Font font, long flags=TEXT_ATTR_FONT)"""
1488 return _controls_
.TextAttr_SetFont(*args
, **kwargs
)
1490 def SetAlignment(*args
, **kwargs
):
1491 """SetAlignment(self, int alignment)"""
1492 return _controls_
.TextAttr_SetAlignment(*args
, **kwargs
)
1494 def SetTabs(*args
, **kwargs
):
1495 """SetTabs(self, wxArrayInt tabs)"""
1496 return _controls_
.TextAttr_SetTabs(*args
, **kwargs
)
1498 def SetLeftIndent(*args
, **kwargs
):
1499 """SetLeftIndent(self, int indent, int subIndent=0)"""
1500 return _controls_
.TextAttr_SetLeftIndent(*args
, **kwargs
)
1502 def SetRightIndent(*args
, **kwargs
):
1503 """SetRightIndent(self, int indent)"""
1504 return _controls_
.TextAttr_SetRightIndent(*args
, **kwargs
)
1506 def SetFlags(*args
, **kwargs
):
1507 """SetFlags(self, long flags)"""
1508 return _controls_
.TextAttr_SetFlags(*args
, **kwargs
)
1510 def HasTextColour(*args
, **kwargs
):
1511 """HasTextColour(self) -> bool"""
1512 return _controls_
.TextAttr_HasTextColour(*args
, **kwargs
)
1514 def HasBackgroundColour(*args
, **kwargs
):
1515 """HasBackgroundColour(self) -> bool"""
1516 return _controls_
.TextAttr_HasBackgroundColour(*args
, **kwargs
)
1518 def HasFont(*args
, **kwargs
):
1519 """HasFont(self) -> bool"""
1520 return _controls_
.TextAttr_HasFont(*args
, **kwargs
)
1522 def HasAlignment(*args
, **kwargs
):
1523 """HasAlignment(self) -> bool"""
1524 return _controls_
.TextAttr_HasAlignment(*args
, **kwargs
)
1526 def HasTabs(*args
, **kwargs
):
1527 """HasTabs(self) -> bool"""
1528 return _controls_
.TextAttr_HasTabs(*args
, **kwargs
)
1530 def HasLeftIndent(*args
, **kwargs
):
1531 """HasLeftIndent(self) -> bool"""
1532 return _controls_
.TextAttr_HasLeftIndent(*args
, **kwargs
)
1534 def HasRightIndent(*args
, **kwargs
):
1535 """HasRightIndent(self) -> bool"""
1536 return _controls_
.TextAttr_HasRightIndent(*args
, **kwargs
)
1538 def HasFlag(*args
, **kwargs
):
1539 """HasFlag(self, long flag) -> bool"""
1540 return _controls_
.TextAttr_HasFlag(*args
, **kwargs
)
1542 def GetTextColour(*args
, **kwargs
):
1543 """GetTextColour(self) -> Colour"""
1544 return _controls_
.TextAttr_GetTextColour(*args
, **kwargs
)
1546 def GetBackgroundColour(*args
, **kwargs
):
1547 """GetBackgroundColour(self) -> Colour"""
1548 return _controls_
.TextAttr_GetBackgroundColour(*args
, **kwargs
)
1550 def GetFont(*args
, **kwargs
):
1551 """GetFont(self) -> Font"""
1552 return _controls_
.TextAttr_GetFont(*args
, **kwargs
)
1554 def GetAlignment(*args
, **kwargs
):
1555 """GetAlignment(self) -> int"""
1556 return _controls_
.TextAttr_GetAlignment(*args
, **kwargs
)
1558 def GetTabs(*args
, **kwargs
):
1559 """GetTabs(self) -> wxArrayInt"""
1560 return _controls_
.TextAttr_GetTabs(*args
, **kwargs
)
1562 def GetLeftIndent(*args
, **kwargs
):
1563 """GetLeftIndent(self) -> long"""
1564 return _controls_
.TextAttr_GetLeftIndent(*args
, **kwargs
)
1566 def GetLeftSubIndent(*args
, **kwargs
):
1567 """GetLeftSubIndent(self) -> long"""
1568 return _controls_
.TextAttr_GetLeftSubIndent(*args
, **kwargs
)
1570 def GetRightIndent(*args
, **kwargs
):
1571 """GetRightIndent(self) -> long"""
1572 return _controls_
.TextAttr_GetRightIndent(*args
, **kwargs
)
1574 def GetFlags(*args
, **kwargs
):
1575 """GetFlags(self) -> long"""
1576 return _controls_
.TextAttr_GetFlags(*args
, **kwargs
)
1578 def IsDefault(*args
, **kwargs
):
1579 """IsDefault(self) -> bool"""
1580 return _controls_
.TextAttr_IsDefault(*args
, **kwargs
)
1582 def Combine(*args
, **kwargs
):
1583 """Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1584 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1586 Combine
= staticmethod(Combine
)
1588 class TextAttrPtr(TextAttr
):
1589 def __init__(self
, this
):
1591 if not hasattr(self
,"thisown"): self
.thisown
= 0
1592 self
.__class
__ = TextAttr
1593 _controls_
.TextAttr_swigregister(TextAttrPtr
)
1594 TextCtrlNameStr
= cvar
.TextCtrlNameStr
1596 def TextAttr_Combine(*args
, **kwargs
):
1597 """TextAttr_Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1598 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1600 class TextCtrl(_core
.Control
):
1602 return "<%s.%s; proxy of C++ wxTextCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1603 def __init__(self
, *args
, **kwargs
):
1605 __init__(self, Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
1606 Size size=DefaultSize,
1607 long style=0, Validator validator=DefaultValidator,
1608 String name=TextCtrlNameStr) -> TextCtrl
1610 newobj
= _controls_
.new_TextCtrl(*args
, **kwargs
)
1611 self
.this
= newobj
.this
1614 self
._setOORInfo
(self
)
1616 def Create(*args
, **kwargs
):
1618 Create(self, Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
1619 Size size=DefaultSize,
1620 long style=0, Validator validator=DefaultValidator,
1621 String name=TextCtrlNameStr) -> bool
1623 return _controls_
.TextCtrl_Create(*args
, **kwargs
)
1625 def GetValue(*args
, **kwargs
):
1626 """GetValue(self) -> String"""
1627 return _controls_
.TextCtrl_GetValue(*args
, **kwargs
)
1629 def SetValue(*args
, **kwargs
):
1630 """SetValue(self, String value)"""
1631 return _controls_
.TextCtrl_SetValue(*args
, **kwargs
)
1633 def GetRange(*args
, **kwargs
):
1634 """GetRange(self, long from, long to) -> String"""
1635 return _controls_
.TextCtrl_GetRange(*args
, **kwargs
)
1637 def GetLineLength(*args
, **kwargs
):
1638 """GetLineLength(self, long lineNo) -> int"""
1639 return _controls_
.TextCtrl_GetLineLength(*args
, **kwargs
)
1641 def GetLineText(*args
, **kwargs
):
1642 """GetLineText(self, long lineNo) -> String"""
1643 return _controls_
.TextCtrl_GetLineText(*args
, **kwargs
)
1645 def GetNumberOfLines(*args
, **kwargs
):
1646 """GetNumberOfLines(self) -> int"""
1647 return _controls_
.TextCtrl_GetNumberOfLines(*args
, **kwargs
)
1649 def IsModified(*args
, **kwargs
):
1650 """IsModified(self) -> bool"""
1651 return _controls_
.TextCtrl_IsModified(*args
, **kwargs
)
1653 def IsEditable(*args
, **kwargs
):
1654 """IsEditable(self) -> bool"""
1655 return _controls_
.TextCtrl_IsEditable(*args
, **kwargs
)
1657 def IsSingleLine(*args
, **kwargs
):
1658 """IsSingleLine(self) -> bool"""
1659 return _controls_
.TextCtrl_IsSingleLine(*args
, **kwargs
)
1661 def IsMultiLine(*args
, **kwargs
):
1662 """IsMultiLine(self) -> bool"""
1663 return _controls_
.TextCtrl_IsMultiLine(*args
, **kwargs
)
1665 def GetSelection(*args
, **kwargs
):
1666 """GetSelection() -> (from, to)"""
1667 return _controls_
.TextCtrl_GetSelection(*args
, **kwargs
)
1669 def GetStringSelection(*args
, **kwargs
):
1670 """GetStringSelection(self) -> String"""
1671 return _controls_
.TextCtrl_GetStringSelection(*args
, **kwargs
)
1673 def Clear(*args
, **kwargs
):
1675 return _controls_
.TextCtrl_Clear(*args
, **kwargs
)
1677 def Replace(*args
, **kwargs
):
1678 """Replace(self, long from, long to, String value)"""
1679 return _controls_
.TextCtrl_Replace(*args
, **kwargs
)
1681 def Remove(*args
, **kwargs
):
1682 """Remove(self, long from, long to)"""
1683 return _controls_
.TextCtrl_Remove(*args
, **kwargs
)
1685 def LoadFile(*args
, **kwargs
):
1686 """LoadFile(self, String file) -> bool"""
1687 return _controls_
.TextCtrl_LoadFile(*args
, **kwargs
)
1689 def SaveFile(*args
, **kwargs
):
1690 """SaveFile(self, String file=EmptyString) -> bool"""
1691 return _controls_
.TextCtrl_SaveFile(*args
, **kwargs
)
1693 def MarkDirty(*args
, **kwargs
):
1694 """MarkDirty(self)"""
1695 return _controls_
.TextCtrl_MarkDirty(*args
, **kwargs
)
1697 def DiscardEdits(*args
, **kwargs
):
1698 """DiscardEdits(self)"""
1699 return _controls_
.TextCtrl_DiscardEdits(*args
, **kwargs
)
1701 def SetMaxLength(*args
, **kwargs
):
1702 """SetMaxLength(self, unsigned long len)"""
1703 return _controls_
.TextCtrl_SetMaxLength(*args
, **kwargs
)
1705 def WriteText(*args
, **kwargs
):
1706 """WriteText(self, String text)"""
1707 return _controls_
.TextCtrl_WriteText(*args
, **kwargs
)
1709 def AppendText(*args
, **kwargs
):
1710 """AppendText(self, String text)"""
1711 return _controls_
.TextCtrl_AppendText(*args
, **kwargs
)
1713 def EmulateKeyPress(*args
, **kwargs
):
1714 """EmulateKeyPress(self, KeyEvent event) -> bool"""
1715 return _controls_
.TextCtrl_EmulateKeyPress(*args
, **kwargs
)
1717 def SetStyle(*args
, **kwargs
):
1718 """SetStyle(self, long start, long end, TextAttr style) -> bool"""
1719 return _controls_
.TextCtrl_SetStyle(*args
, **kwargs
)
1721 def GetStyle(*args
, **kwargs
):
1722 """GetStyle(self, long position, TextAttr style) -> bool"""
1723 return _controls_
.TextCtrl_GetStyle(*args
, **kwargs
)
1725 def SetDefaultStyle(*args
, **kwargs
):
1726 """SetDefaultStyle(self, TextAttr style) -> bool"""
1727 return _controls_
.TextCtrl_SetDefaultStyle(*args
, **kwargs
)
1729 def GetDefaultStyle(*args
, **kwargs
):
1730 """GetDefaultStyle(self) -> TextAttr"""
1731 return _controls_
.TextCtrl_GetDefaultStyle(*args
, **kwargs
)
1733 def XYToPosition(*args
, **kwargs
):
1734 """XYToPosition(self, long x, long y) -> long"""
1735 return _controls_
.TextCtrl_XYToPosition(*args
, **kwargs
)
1737 def PositionToXY(*args
, **kwargs
):
1738 """PositionToXY(long pos) -> (x, y)"""
1739 return _controls_
.TextCtrl_PositionToXY(*args
, **kwargs
)
1741 def ShowPosition(*args
, **kwargs
):
1742 """ShowPosition(self, long pos)"""
1743 return _controls_
.TextCtrl_ShowPosition(*args
, **kwargs
)
1745 def HitTest(*args
, **kwargs
):
1746 """HitTest(Point pt) -> (result, row, col)"""
1747 return _controls_
.TextCtrl_HitTest(*args
, **kwargs
)
1749 def Copy(*args
, **kwargs
):
1751 return _controls_
.TextCtrl_Copy(*args
, **kwargs
)
1753 def Cut(*args
, **kwargs
):
1755 return _controls_
.TextCtrl_Cut(*args
, **kwargs
)
1757 def Paste(*args
, **kwargs
):
1759 return _controls_
.TextCtrl_Paste(*args
, **kwargs
)
1761 def CanCopy(*args
, **kwargs
):
1762 """CanCopy(self) -> bool"""
1763 return _controls_
.TextCtrl_CanCopy(*args
, **kwargs
)
1765 def CanCut(*args
, **kwargs
):
1766 """CanCut(self) -> bool"""
1767 return _controls_
.TextCtrl_CanCut(*args
, **kwargs
)
1769 def CanPaste(*args
, **kwargs
):
1770 """CanPaste(self) -> bool"""
1771 return _controls_
.TextCtrl_CanPaste(*args
, **kwargs
)
1773 def Undo(*args
, **kwargs
):
1775 return _controls_
.TextCtrl_Undo(*args
, **kwargs
)
1777 def Redo(*args
, **kwargs
):
1779 return _controls_
.TextCtrl_Redo(*args
, **kwargs
)
1781 def CanUndo(*args
, **kwargs
):
1782 """CanUndo(self) -> bool"""
1783 return _controls_
.TextCtrl_CanUndo(*args
, **kwargs
)
1785 def CanRedo(*args
, **kwargs
):
1786 """CanRedo(self) -> bool"""
1787 return _controls_
.TextCtrl_CanRedo(*args
, **kwargs
)
1789 def SetInsertionPoint(*args
, **kwargs
):
1790 """SetInsertionPoint(self, long pos)"""
1791 return _controls_
.TextCtrl_SetInsertionPoint(*args
, **kwargs
)
1793 def SetInsertionPointEnd(*args
, **kwargs
):
1794 """SetInsertionPointEnd(self)"""
1795 return _controls_
.TextCtrl_SetInsertionPointEnd(*args
, **kwargs
)
1797 def GetInsertionPoint(*args
, **kwargs
):
1798 """GetInsertionPoint(self) -> long"""
1799 return _controls_
.TextCtrl_GetInsertionPoint(*args
, **kwargs
)
1801 def GetLastPosition(*args
, **kwargs
):
1802 """GetLastPosition(self) -> long"""
1803 return _controls_
.TextCtrl_GetLastPosition(*args
, **kwargs
)
1805 def SetSelection(*args
, **kwargs
):
1806 """SetSelection(self, long from, long to)"""
1807 return _controls_
.TextCtrl_SetSelection(*args
, **kwargs
)
1809 def SelectAll(*args
, **kwargs
):
1810 """SelectAll(self)"""
1811 return _controls_
.TextCtrl_SelectAll(*args
, **kwargs
)
1813 def SetEditable(*args
, **kwargs
):
1814 """SetEditable(self, bool editable)"""
1815 return _controls_
.TextCtrl_SetEditable(*args
, **kwargs
)
1817 def ShowNativeCaret(*args
, **kwargs
):
1818 """ShowNativeCaret(self, bool show=True) -> bool"""
1819 return _controls_
.TextCtrl_ShowNativeCaret(*args
, **kwargs
)
1821 def HideNativeCaret(*args
, **kwargs
):
1822 """HideNativeCaret(self) -> bool"""
1823 return _controls_
.TextCtrl_HideNativeCaret(*args
, **kwargs
)
1825 def write(*args
, **kwargs
):
1826 """write(self, String text)"""
1827 return _controls_
.TextCtrl_write(*args
, **kwargs
)
1829 def GetString(*args
, **kwargs
):
1830 """GetString(self, long from, long to) -> String"""
1831 return _controls_
.TextCtrl_GetString(*args
, **kwargs
)
1833 def GetClassDefaultAttributes(*args
, **kwargs
):
1835 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1837 Get the default attributes for this class. This is useful if you want
1838 to use the same font or colour in your own control as in a standard
1839 control -- which is a much better idea than hard coding specific
1840 colours or fonts which might look completely out of place on the
1841 user's system, especially if it uses themes.
1843 The variant parameter is only relevant under Mac currently and is
1844 ignore under other platforms. Under Mac, it will change the size of
1845 the returned font. See `wx.Window.SetWindowVariant` for more about
1848 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1850 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1852 class TextCtrlPtr(TextCtrl
):
1853 def __init__(self
, this
):
1855 if not hasattr(self
,"thisown"): self
.thisown
= 0
1856 self
.__class
__ = TextCtrl
1857 _controls_
.TextCtrl_swigregister(TextCtrlPtr
)
1859 def PreTextCtrl(*args
, **kwargs
):
1860 """PreTextCtrl() -> TextCtrl"""
1861 val
= _controls_
.new_PreTextCtrl(*args
, **kwargs
)
1865 def TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
1867 TextCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1869 Get the default attributes for this class. This is useful if you want
1870 to use the same font or colour in your own control as in a standard
1871 control -- which is a much better idea than hard coding specific
1872 colours or fonts which might look completely out of place on the
1873 user's system, especially if it uses themes.
1875 The variant parameter is only relevant under Mac currently and is
1876 ignore under other platforms. Under Mac, it will change the size of
1877 the returned font. See `wx.Window.SetWindowVariant` for more about
1880 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1882 wxEVT_COMMAND_TEXT_UPDATED
= _controls_
.wxEVT_COMMAND_TEXT_UPDATED
1883 wxEVT_COMMAND_TEXT_ENTER
= _controls_
.wxEVT_COMMAND_TEXT_ENTER
1884 wxEVT_COMMAND_TEXT_URL
= _controls_
.wxEVT_COMMAND_TEXT_URL
1885 wxEVT_COMMAND_TEXT_MAXLEN
= _controls_
.wxEVT_COMMAND_TEXT_MAXLEN
1886 class TextUrlEvent(_core
.CommandEvent
):
1888 return "<%s.%s; proxy of C++ wxTextUrlEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1889 def __init__(self
, *args
, **kwargs
):
1890 """__init__(self, int winid, MouseEvent evtMouse, long start, long end) -> TextUrlEvent"""
1891 newobj
= _controls_
.new_TextUrlEvent(*args
, **kwargs
)
1892 self
.this
= newobj
.this
1895 def GetMouseEvent(*args
, **kwargs
):
1896 """GetMouseEvent(self) -> MouseEvent"""
1897 return _controls_
.TextUrlEvent_GetMouseEvent(*args
, **kwargs
)
1899 def GetURLStart(*args
, **kwargs
):
1900 """GetURLStart(self) -> long"""
1901 return _controls_
.TextUrlEvent_GetURLStart(*args
, **kwargs
)
1903 def GetURLEnd(*args
, **kwargs
):
1904 """GetURLEnd(self) -> long"""
1905 return _controls_
.TextUrlEvent_GetURLEnd(*args
, **kwargs
)
1908 class TextUrlEventPtr(TextUrlEvent
):
1909 def __init__(self
, this
):
1911 if not hasattr(self
,"thisown"): self
.thisown
= 0
1912 self
.__class
__ = TextUrlEvent
1913 _controls_
.TextUrlEvent_swigregister(TextUrlEventPtr
)
1915 EVT_TEXT
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED
, 1)
1916 EVT_TEXT_ENTER
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER
, 1)
1917 EVT_TEXT_URL
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_URL
, 1)
1918 EVT_TEXT_MAXLEN
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN
, 1)
1920 #---------------------------------------------------------------------------
1922 class ScrollBar(_core
.Control
):
1924 return "<%s.%s; proxy of C++ wxScrollBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1925 def __init__(self
, *args
, **kwargs
):
1927 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1928 Size size=DefaultSize, long style=SB_HORIZONTAL,
1929 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> ScrollBar
1931 newobj
= _controls_
.new_ScrollBar(*args
, **kwargs
)
1932 self
.this
= newobj
.this
1935 self
._setOORInfo
(self
)
1937 def Create(*args
, **kwargs
):
1939 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1940 Size size=DefaultSize, long style=SB_HORIZONTAL,
1941 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> bool
1943 Do the 2nd phase and create the GUI control.
1945 return _controls_
.ScrollBar_Create(*args
, **kwargs
)
1947 def GetThumbPosition(*args
, **kwargs
):
1948 """GetThumbPosition(self) -> int"""
1949 return _controls_
.ScrollBar_GetThumbPosition(*args
, **kwargs
)
1951 def GetThumbSize(*args
, **kwargs
):
1952 """GetThumbSize(self) -> int"""
1953 return _controls_
.ScrollBar_GetThumbSize(*args
, **kwargs
)
1955 GetThumbLength
= GetThumbSize
1956 def GetPageSize(*args
, **kwargs
):
1957 """GetPageSize(self) -> int"""
1958 return _controls_
.ScrollBar_GetPageSize(*args
, **kwargs
)
1960 def GetRange(*args
, **kwargs
):
1961 """GetRange(self) -> int"""
1962 return _controls_
.ScrollBar_GetRange(*args
, **kwargs
)
1964 def IsVertical(*args
, **kwargs
):
1965 """IsVertical(self) -> bool"""
1966 return _controls_
.ScrollBar_IsVertical(*args
, **kwargs
)
1968 def SetThumbPosition(*args
, **kwargs
):
1969 """SetThumbPosition(self, int viewStart)"""
1970 return _controls_
.ScrollBar_SetThumbPosition(*args
, **kwargs
)
1972 def SetScrollbar(*args
, **kwargs
):
1974 SetScrollbar(self, int position, int thumbSize, int range, int pageSize,
1977 Sets the scrollbar properties of a built-in scrollbar.
1979 return _controls_
.ScrollBar_SetScrollbar(*args
, **kwargs
)
1981 def GetClassDefaultAttributes(*args
, **kwargs
):
1983 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1985 Get the default attributes for this class. This is useful if you want
1986 to use the same font or colour in your own control as in a standard
1987 control -- which is a much better idea than hard coding specific
1988 colours or fonts which might look completely out of place on the
1989 user's system, especially if it uses themes.
1991 The variant parameter is only relevant under Mac currently and is
1992 ignore under other platforms. Under Mac, it will change the size of
1993 the returned font. See `wx.Window.SetWindowVariant` for more about
1996 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
1998 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2000 class ScrollBarPtr(ScrollBar
):
2001 def __init__(self
, this
):
2003 if not hasattr(self
,"thisown"): self
.thisown
= 0
2004 self
.__class
__ = ScrollBar
2005 _controls_
.ScrollBar_swigregister(ScrollBarPtr
)
2006 ScrollBarNameStr
= cvar
.ScrollBarNameStr
2008 def PreScrollBar(*args
, **kwargs
):
2009 """PreScrollBar() -> ScrollBar"""
2010 val
= _controls_
.new_PreScrollBar(*args
, **kwargs
)
2014 def ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
):
2016 ScrollBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2018 Get the default attributes for this class. This is useful if you want
2019 to use the same font or colour in your own control as in a standard
2020 control -- which is a much better idea than hard coding specific
2021 colours or fonts which might look completely out of place on the
2022 user's system, especially if it uses themes.
2024 The variant parameter is only relevant under Mac currently and is
2025 ignore under other platforms. Under Mac, it will change the size of
2026 the returned font. See `wx.Window.SetWindowVariant` for more about
2029 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
2031 #---------------------------------------------------------------------------
2033 SP_HORIZONTAL
= _controls_
.SP_HORIZONTAL
2034 SP_VERTICAL
= _controls_
.SP_VERTICAL
2035 SP_ARROW_KEYS
= _controls_
.SP_ARROW_KEYS
2036 SP_WRAP
= _controls_
.SP_WRAP
2037 class SpinButton(_core
.Control
):
2039 return "<%s.%s; proxy of C++ wxSpinButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2040 def __init__(self
, *args
, **kwargs
):
2042 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2043 Size size=DefaultSize, long style=SP_HORIZONTAL,
2044 String name=SPIN_BUTTON_NAME) -> SpinButton
2046 newobj
= _controls_
.new_SpinButton(*args
, **kwargs
)
2047 self
.this
= newobj
.this
2050 self
._setOORInfo
(self
)
2052 def Create(*args
, **kwargs
):
2054 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2055 Size size=DefaultSize, long style=SP_HORIZONTAL,
2056 String name=SPIN_BUTTON_NAME) -> bool
2058 return _controls_
.SpinButton_Create(*args
, **kwargs
)
2060 def GetValue(*args
, **kwargs
):
2061 """GetValue(self) -> int"""
2062 return _controls_
.SpinButton_GetValue(*args
, **kwargs
)
2064 def GetMin(*args
, **kwargs
):
2065 """GetMin(self) -> int"""
2066 return _controls_
.SpinButton_GetMin(*args
, **kwargs
)
2068 def GetMax(*args
, **kwargs
):
2069 """GetMax(self) -> int"""
2070 return _controls_
.SpinButton_GetMax(*args
, **kwargs
)
2072 def SetValue(*args
, **kwargs
):
2073 """SetValue(self, int val)"""
2074 return _controls_
.SpinButton_SetValue(*args
, **kwargs
)
2076 def SetMin(*args
, **kwargs
):
2077 """SetMin(self, int minVal)"""
2078 return _controls_
.SpinButton_SetMin(*args
, **kwargs
)
2080 def SetMax(*args
, **kwargs
):
2081 """SetMax(self, int maxVal)"""
2082 return _controls_
.SpinButton_SetMax(*args
, **kwargs
)
2084 def SetRange(*args
, **kwargs
):
2085 """SetRange(self, int minVal, int maxVal)"""
2086 return _controls_
.SpinButton_SetRange(*args
, **kwargs
)
2088 def IsVertical(*args
, **kwargs
):
2089 """IsVertical(self) -> bool"""
2090 return _controls_
.SpinButton_IsVertical(*args
, **kwargs
)
2092 def GetClassDefaultAttributes(*args
, **kwargs
):
2094 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2096 Get the default attributes for this class. This is useful if you want
2097 to use the same font or colour in your own control as in a standard
2098 control -- which is a much better idea than hard coding specific
2099 colours or fonts which might look completely out of place on the
2100 user's system, especially if it uses themes.
2102 The variant parameter is only relevant under Mac currently and is
2103 ignore under other platforms. Under Mac, it will change the size of
2104 the returned font. See `wx.Window.SetWindowVariant` for more about
2107 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2109 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2111 class SpinButtonPtr(SpinButton
):
2112 def __init__(self
, this
):
2114 if not hasattr(self
,"thisown"): self
.thisown
= 0
2115 self
.__class
__ = SpinButton
2116 _controls_
.SpinButton_swigregister(SpinButtonPtr
)
2117 SPIN_BUTTON_NAME
= cvar
.SPIN_BUTTON_NAME
2118 SpinCtrlNameStr
= cvar
.SpinCtrlNameStr
2120 def PreSpinButton(*args
, **kwargs
):
2121 """PreSpinButton() -> SpinButton"""
2122 val
= _controls_
.new_PreSpinButton(*args
, **kwargs
)
2126 def SpinButton_GetClassDefaultAttributes(*args
, **kwargs
):
2128 SpinButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2130 Get the default attributes for this class. This is useful if you want
2131 to use the same font or colour in your own control as in a standard
2132 control -- which is a much better idea than hard coding specific
2133 colours or fonts which might look completely out of place on the
2134 user's system, especially if it uses themes.
2136 The variant parameter is only relevant under Mac currently and is
2137 ignore under other platforms. Under Mac, it will change the size of
2138 the returned font. See `wx.Window.SetWindowVariant` for more about
2141 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2143 class SpinCtrl(_core
.Control
):
2145 return "<%s.%s; proxy of C++ wxSpinCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2146 def __init__(self
, *args
, **kwargs
):
2148 __init__(self, Window parent, int id=-1, String value=EmptyString,
2149 Point pos=DefaultPosition, Size size=DefaultSize,
2150 long style=SP_ARROW_KEYS, int min=0, int max=100,
2151 int initial=0, String name=SpinCtrlNameStr) -> SpinCtrl
2153 newobj
= _controls_
.new_SpinCtrl(*args
, **kwargs
)
2154 self
.this
= newobj
.this
2157 self
._setOORInfo
(self
)
2159 def Create(*args
, **kwargs
):
2161 Create(self, Window parent, int id=-1, String value=EmptyString,
2162 Point pos=DefaultPosition, Size size=DefaultSize,
2163 long style=SP_ARROW_KEYS, int min=0, int max=100,
2164 int initial=0, String name=SpinCtrlNameStr) -> bool
2166 return _controls_
.SpinCtrl_Create(*args
, **kwargs
)
2168 def GetValue(*args
, **kwargs
):
2169 """GetValue(self) -> int"""
2170 return _controls_
.SpinCtrl_GetValue(*args
, **kwargs
)
2172 def SetValue(*args
, **kwargs
):
2173 """SetValue(self, int value)"""
2174 return _controls_
.SpinCtrl_SetValue(*args
, **kwargs
)
2176 def SetValueString(*args
, **kwargs
):
2177 """SetValueString(self, String text)"""
2178 return _controls_
.SpinCtrl_SetValueString(*args
, **kwargs
)
2180 def SetRange(*args
, **kwargs
):
2181 """SetRange(self, int minVal, int maxVal)"""
2182 return _controls_
.SpinCtrl_SetRange(*args
, **kwargs
)
2184 def GetMin(*args
, **kwargs
):
2185 """GetMin(self) -> int"""
2186 return _controls_
.SpinCtrl_GetMin(*args
, **kwargs
)
2188 def GetMax(*args
, **kwargs
):
2189 """GetMax(self) -> int"""
2190 return _controls_
.SpinCtrl_GetMax(*args
, **kwargs
)
2192 def SetSelection(*args
, **kwargs
):
2193 """SetSelection(self, long from, long to)"""
2194 return _controls_
.SpinCtrl_SetSelection(*args
, **kwargs
)
2196 def GetClassDefaultAttributes(*args
, **kwargs
):
2198 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2200 Get the default attributes for this class. This is useful if you want
2201 to use the same font or colour in your own control as in a standard
2202 control -- which is a much better idea than hard coding specific
2203 colours or fonts which might look completely out of place on the
2204 user's system, especially if it uses themes.
2206 The variant parameter is only relevant under Mac currently and is
2207 ignore under other platforms. Under Mac, it will change the size of
2208 the returned font. See `wx.Window.SetWindowVariant` for more about
2211 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2213 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2215 class SpinCtrlPtr(SpinCtrl
):
2216 def __init__(self
, this
):
2218 if not hasattr(self
,"thisown"): self
.thisown
= 0
2219 self
.__class
__ = SpinCtrl
2220 _controls_
.SpinCtrl_swigregister(SpinCtrlPtr
)
2222 def PreSpinCtrl(*args
, **kwargs
):
2223 """PreSpinCtrl() -> SpinCtrl"""
2224 val
= _controls_
.new_PreSpinCtrl(*args
, **kwargs
)
2228 def SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
2230 SpinCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2232 Get the default attributes for this class. This is useful if you want
2233 to use the same font or colour in your own control as in a standard
2234 control -- which is a much better idea than hard coding specific
2235 colours or fonts which might look completely out of place on the
2236 user's system, especially if it uses themes.
2238 The variant parameter is only relevant under Mac currently and is
2239 ignore under other platforms. Under Mac, it will change the size of
2240 the returned font. See `wx.Window.SetWindowVariant` for more about
2243 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2245 class SpinEvent(_core
.NotifyEvent
):
2247 return "<%s.%s; proxy of C++ wxSpinEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2248 def __init__(self
, *args
, **kwargs
):
2249 """__init__(self, wxEventType commandType=wxEVT_NULL, int winid=0) -> SpinEvent"""
2250 newobj
= _controls_
.new_SpinEvent(*args
, **kwargs
)
2251 self
.this
= newobj
.this
2254 def GetPosition(*args
, **kwargs
):
2255 """GetPosition(self) -> int"""
2256 return _controls_
.SpinEvent_GetPosition(*args
, **kwargs
)
2258 def SetPosition(*args
, **kwargs
):
2259 """SetPosition(self, int pos)"""
2260 return _controls_
.SpinEvent_SetPosition(*args
, **kwargs
)
2263 class SpinEventPtr(SpinEvent
):
2264 def __init__(self
, this
):
2266 if not hasattr(self
,"thisown"): self
.thisown
= 0
2267 self
.__class
__ = SpinEvent
2268 _controls_
.SpinEvent_swigregister(SpinEventPtr
)
2270 wxEVT_COMMAND_SPINCTRL_UPDATED
= _controls_
.wxEVT_COMMAND_SPINCTRL_UPDATED
2271 EVT_SPIN_UP
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEUP
, 1)
2272 EVT_SPIN_DOWN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEDOWN
, 1)
2273 EVT_SPIN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_THUMBTRACK
, 1)
2274 EVT_SPINCTRL
= wx
.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED
, 1)
2276 #---------------------------------------------------------------------------
2278 class RadioBox(_core
.Control
):
2280 return "<%s.%s; proxy of C++ wxRadioBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2281 def __init__(self
, *args
, **kwargs
):
2283 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
2284 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
2285 int majorDimension=0,
2286 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
2287 String name=RadioBoxNameStr) -> RadioBox
2289 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2290 newobj
= _controls_
.new_RadioBox(*args
, **kwargs
)
2291 self
.this
= newobj
.this
2294 self
._setOORInfo
(self
)
2296 def Create(*args
, **kwargs
):
2298 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
2299 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
2300 int majorDimension=0,
2301 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
2302 String name=RadioBoxNameStr) -> bool
2304 return _controls_
.RadioBox_Create(*args
, **kwargs
)
2306 def SetSelection(*args
, **kwargs
):
2307 """SetSelection(self, int n)"""
2308 return _controls_
.RadioBox_SetSelection(*args
, **kwargs
)
2310 def GetSelection(*args
, **kwargs
):
2311 """GetSelection(self) -> int"""
2312 return _controls_
.RadioBox_GetSelection(*args
, **kwargs
)
2314 def GetStringSelection(*args
, **kwargs
):
2315 """GetStringSelection(self) -> String"""
2316 return _controls_
.RadioBox_GetStringSelection(*args
, **kwargs
)
2318 def SetStringSelection(*args
, **kwargs
):
2319 """SetStringSelection(self, String s) -> bool"""
2320 return _controls_
.RadioBox_SetStringSelection(*args
, **kwargs
)
2322 def GetCount(*args
, **kwargs
):
2323 """GetCount(self) -> int"""
2324 return _controls_
.RadioBox_GetCount(*args
, **kwargs
)
2326 def FindString(*args
, **kwargs
):
2327 """FindString(self, String s) -> int"""
2328 return _controls_
.RadioBox_FindString(*args
, **kwargs
)
2330 def GetString(*args
, **kwargs
):
2331 """GetString(self, int n) -> String"""
2332 return _controls_
.RadioBox_GetString(*args
, **kwargs
)
2334 def SetString(*args
, **kwargs
):
2335 """SetString(self, int n, String label)"""
2336 return _controls_
.RadioBox_SetString(*args
, **kwargs
)
2338 GetItemLabel
= GetString
2339 SetItemLabel
= SetString
2340 def EnableItem(*args
, **kwargs
):
2341 """EnableItem(self, int n, bool enable=True)"""
2342 return _controls_
.RadioBox_EnableItem(*args
, **kwargs
)
2344 def ShowItem(*args
, **kwargs
):
2345 """ShowItem(self, int n, bool show=True)"""
2346 return _controls_
.RadioBox_ShowItem(*args
, **kwargs
)
2348 def GetColumnCount(*args
, **kwargs
):
2349 """GetColumnCount(self) -> int"""
2350 return _controls_
.RadioBox_GetColumnCount(*args
, **kwargs
)
2352 def GetRowCount(*args
, **kwargs
):
2353 """GetRowCount(self) -> int"""
2354 return _controls_
.RadioBox_GetRowCount(*args
, **kwargs
)
2356 def GetNextItem(*args
, **kwargs
):
2357 """GetNextItem(self, int item, int dir, long style) -> int"""
2358 return _controls_
.RadioBox_GetNextItem(*args
, **kwargs
)
2360 def GetClassDefaultAttributes(*args
, **kwargs
):
2362 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2364 Get the default attributes for this class. This is useful if you want
2365 to use the same font or colour in your own control as in a standard
2366 control -- which is a much better idea than hard coding specific
2367 colours or fonts which might look completely out of place on the
2368 user's system, especially if it uses themes.
2370 The variant parameter is only relevant under Mac currently and is
2371 ignore under other platforms. Under Mac, it will change the size of
2372 the returned font. See `wx.Window.SetWindowVariant` for more about
2375 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2377 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2379 class RadioBoxPtr(RadioBox
):
2380 def __init__(self
, this
):
2382 if not hasattr(self
,"thisown"): self
.thisown
= 0
2383 self
.__class
__ = RadioBox
2384 _controls_
.RadioBox_swigregister(RadioBoxPtr
)
2385 RadioBoxNameStr
= cvar
.RadioBoxNameStr
2386 RadioButtonNameStr
= cvar
.RadioButtonNameStr
2388 def PreRadioBox(*args
, **kwargs
):
2389 """PreRadioBox() -> RadioBox"""
2390 val
= _controls_
.new_PreRadioBox(*args
, **kwargs
)
2394 def RadioBox_GetClassDefaultAttributes(*args
, **kwargs
):
2396 RadioBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2398 Get the default attributes for this class. This is useful if you want
2399 to use the same font or colour in your own control as in a standard
2400 control -- which is a much better idea than hard coding specific
2401 colours or fonts which might look completely out of place on the
2402 user's system, especially if it uses themes.
2404 The variant parameter is only relevant under Mac currently and is
2405 ignore under other platforms. Under Mac, it will change the size of
2406 the returned font. See `wx.Window.SetWindowVariant` for more about
2409 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2411 #---------------------------------------------------------------------------
2413 class RadioButton(_core
.Control
):
2415 return "<%s.%s; proxy of C++ wxRadioButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2416 def __init__(self
, *args
, **kwargs
):
2418 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
2419 Size size=DefaultSize, long style=0,
2420 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -> RadioButton
2422 newobj
= _controls_
.new_RadioButton(*args
, **kwargs
)
2423 self
.this
= newobj
.this
2426 self
._setOORInfo
(self
)
2428 def Create(*args
, **kwargs
):
2430 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
2431 Size size=DefaultSize, long style=0,
2432 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -> bool
2434 return _controls_
.RadioButton_Create(*args
, **kwargs
)
2436 def GetValue(*args
, **kwargs
):
2437 """GetValue(self) -> bool"""
2438 return _controls_
.RadioButton_GetValue(*args
, **kwargs
)
2440 def SetValue(*args
, **kwargs
):
2441 """SetValue(self, bool value)"""
2442 return _controls_
.RadioButton_SetValue(*args
, **kwargs
)
2444 def GetClassDefaultAttributes(*args
, **kwargs
):
2446 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2448 Get the default attributes for this class. This is useful if you want
2449 to use the same font or colour in your own control as in a standard
2450 control -- which is a much better idea than hard coding specific
2451 colours or fonts which might look completely out of place on the
2452 user's system, especially if it uses themes.
2454 The variant parameter is only relevant under Mac currently and is
2455 ignore under other platforms. Under Mac, it will change the size of
2456 the returned font. See `wx.Window.SetWindowVariant` for more about
2459 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2461 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2463 class RadioButtonPtr(RadioButton
):
2464 def __init__(self
, this
):
2466 if not hasattr(self
,"thisown"): self
.thisown
= 0
2467 self
.__class
__ = RadioButton
2468 _controls_
.RadioButton_swigregister(RadioButtonPtr
)
2470 def PreRadioButton(*args
, **kwargs
):
2471 """PreRadioButton() -> RadioButton"""
2472 val
= _controls_
.new_PreRadioButton(*args
, **kwargs
)
2476 def RadioButton_GetClassDefaultAttributes(*args
, **kwargs
):
2478 RadioButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2480 Get the default attributes for this class. This is useful if you want
2481 to use the same font or colour in your own control as in a standard
2482 control -- which is a much better idea than hard coding specific
2483 colours or fonts which might look completely out of place on the
2484 user's system, especially if it uses themes.
2486 The variant parameter is only relevant under Mac currently and is
2487 ignore under other platforms. Under Mac, it will change the size of
2488 the returned font. See `wx.Window.SetWindowVariant` for more about
2491 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2493 #---------------------------------------------------------------------------
2495 class Slider(_core
.Control
):
2497 return "<%s.%s; proxy of C++ wxSlider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2498 def __init__(self
, *args
, **kwargs
):
2500 __init__(self, Window parent, int id, int value, int minValue, int maxValue,
2501 Point pos=DefaultPosition, Size size=DefaultSize,
2502 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
2503 String name=SliderNameStr) -> Slider
2505 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2506 newobj
= _controls_
.new_Slider(*args
, **kwargs
)
2507 self
.this
= newobj
.this
2510 self
._setOORInfo
(self
)
2512 def Create(*args
, **kwargs
):
2514 Create(self, Window parent, int id, int value, int minValue, int maxValue,
2515 Point pos=DefaultPosition, Size size=DefaultSize,
2516 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
2517 String name=SliderNameStr) -> bool
2519 return _controls_
.Slider_Create(*args
, **kwargs
)
2521 def GetValue(*args
, **kwargs
):
2522 """GetValue(self) -> int"""
2523 return _controls_
.Slider_GetValue(*args
, **kwargs
)
2525 def SetValue(*args
, **kwargs
):
2526 """SetValue(self, int value)"""
2527 return _controls_
.Slider_SetValue(*args
, **kwargs
)
2529 def SetRange(*args
, **kwargs
):
2530 """SetRange(self, int minValue, int maxValue)"""
2531 return _controls_
.Slider_SetRange(*args
, **kwargs
)
2533 def GetMin(*args
, **kwargs
):
2534 """GetMin(self) -> int"""
2535 return _controls_
.Slider_GetMin(*args
, **kwargs
)
2537 def GetMax(*args
, **kwargs
):
2538 """GetMax(self) -> int"""
2539 return _controls_
.Slider_GetMax(*args
, **kwargs
)
2541 def SetMin(*args
, **kwargs
):
2542 """SetMin(self, int minValue)"""
2543 return _controls_
.Slider_SetMin(*args
, **kwargs
)
2545 def SetMax(*args
, **kwargs
):
2546 """SetMax(self, int maxValue)"""
2547 return _controls_
.Slider_SetMax(*args
, **kwargs
)
2549 def SetLineSize(*args
, **kwargs
):
2550 """SetLineSize(self, int lineSize)"""
2551 return _controls_
.Slider_SetLineSize(*args
, **kwargs
)
2553 def SetPageSize(*args
, **kwargs
):
2554 """SetPageSize(self, int pageSize)"""
2555 return _controls_
.Slider_SetPageSize(*args
, **kwargs
)
2557 def GetLineSize(*args
, **kwargs
):
2558 """GetLineSize(self) -> int"""
2559 return _controls_
.Slider_GetLineSize(*args
, **kwargs
)
2561 def GetPageSize(*args
, **kwargs
):
2562 """GetPageSize(self) -> int"""
2563 return _controls_
.Slider_GetPageSize(*args
, **kwargs
)
2565 def SetThumbLength(*args
, **kwargs
):
2566 """SetThumbLength(self, int lenPixels)"""
2567 return _controls_
.Slider_SetThumbLength(*args
, **kwargs
)
2569 def GetThumbLength(*args
, **kwargs
):
2570 """GetThumbLength(self) -> int"""
2571 return _controls_
.Slider_GetThumbLength(*args
, **kwargs
)
2573 def SetTickFreq(*args
, **kwargs
):
2574 """SetTickFreq(self, int n, int pos=1)"""
2575 return _controls_
.Slider_SetTickFreq(*args
, **kwargs
)
2577 def GetTickFreq(*args
, **kwargs
):
2578 """GetTickFreq(self) -> int"""
2579 return _controls_
.Slider_GetTickFreq(*args
, **kwargs
)
2581 def ClearTicks(*args
, **kwargs
):
2582 """ClearTicks(self)"""
2583 return _controls_
.Slider_ClearTicks(*args
, **kwargs
)
2585 def SetTick(*args
, **kwargs
):
2586 """SetTick(self, int tickPos)"""
2587 return _controls_
.Slider_SetTick(*args
, **kwargs
)
2589 def ClearSel(*args
, **kwargs
):
2590 """ClearSel(self)"""
2591 return _controls_
.Slider_ClearSel(*args
, **kwargs
)
2593 def GetSelEnd(*args
, **kwargs
):
2594 """GetSelEnd(self) -> int"""
2595 return _controls_
.Slider_GetSelEnd(*args
, **kwargs
)
2597 def GetSelStart(*args
, **kwargs
):
2598 """GetSelStart(self) -> int"""
2599 return _controls_
.Slider_GetSelStart(*args
, **kwargs
)
2601 def SetSelection(*args
, **kwargs
):
2602 """SetSelection(self, int min, int max)"""
2603 return _controls_
.Slider_SetSelection(*args
, **kwargs
)
2605 def GetClassDefaultAttributes(*args
, **kwargs
):
2607 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2609 Get the default attributes for this class. This is useful if you want
2610 to use the same font or colour in your own control as in a standard
2611 control -- which is a much better idea than hard coding specific
2612 colours or fonts which might look completely out of place on the
2613 user's system, especially if it uses themes.
2615 The variant parameter is only relevant under Mac currently and is
2616 ignore under other platforms. Under Mac, it will change the size of
2617 the returned font. See `wx.Window.SetWindowVariant` for more about
2620 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2622 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2624 class SliderPtr(Slider
):
2625 def __init__(self
, this
):
2627 if not hasattr(self
,"thisown"): self
.thisown
= 0
2628 self
.__class
__ = Slider
2629 _controls_
.Slider_swigregister(SliderPtr
)
2630 SliderNameStr
= cvar
.SliderNameStr
2632 def PreSlider(*args
, **kwargs
):
2633 """PreSlider() -> Slider"""
2634 val
= _controls_
.new_PreSlider(*args
, **kwargs
)
2638 def Slider_GetClassDefaultAttributes(*args
, **kwargs
):
2640 Slider_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2642 Get the default attributes for this class. This is useful if you want
2643 to use the same font or colour in your own control as in a standard
2644 control -- which is a much better idea than hard coding specific
2645 colours or fonts which might look completely out of place on the
2646 user's system, especially if it uses themes.
2648 The variant parameter is only relevant under Mac currently and is
2649 ignore under other platforms. Under Mac, it will change the size of
2650 the returned font. See `wx.Window.SetWindowVariant` for more about
2653 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2655 #---------------------------------------------------------------------------
2657 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
= _controls_
.wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
2658 EVT_TOGGLEBUTTON
= wx
.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
, 1)
2660 class ToggleButton(_core
.Control
):
2662 return "<%s.%s; proxy of C++ wxToggleButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2663 def __init__(self
, *args
, **kwargs
):
2665 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
2666 Size size=DefaultSize, long style=0,
2667 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -> ToggleButton
2669 newobj
= _controls_
.new_ToggleButton(*args
, **kwargs
)
2670 self
.this
= newobj
.this
2673 self
._setOORInfo
(self
)
2675 def Create(*args
, **kwargs
):
2677 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
2678 Size size=DefaultSize, long style=0,
2679 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -> bool
2681 return _controls_
.ToggleButton_Create(*args
, **kwargs
)
2683 def SetValue(*args
, **kwargs
):
2684 """SetValue(self, bool value)"""
2685 return _controls_
.ToggleButton_SetValue(*args
, **kwargs
)
2687 def GetValue(*args
, **kwargs
):
2688 """GetValue(self) -> bool"""
2689 return _controls_
.ToggleButton_GetValue(*args
, **kwargs
)
2691 def SetLabel(*args
, **kwargs
):
2693 SetLabel(self, String label)
2695 Sets the item's text.
2697 return _controls_
.ToggleButton_SetLabel(*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
)
2718 class ToggleButtonPtr(ToggleButton
):
2719 def __init__(self
, this
):
2721 if not hasattr(self
,"thisown"): self
.thisown
= 0
2722 self
.__class
__ = ToggleButton
2723 _controls_
.ToggleButton_swigregister(ToggleButtonPtr
)
2724 ToggleButtonNameStr
= cvar
.ToggleButtonNameStr
2726 def PreToggleButton(*args
, **kwargs
):
2727 """PreToggleButton() -> ToggleButton"""
2728 val
= _controls_
.new_PreToggleButton(*args
, **kwargs
)
2732 def ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
):
2734 ToggleButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2736 Get the default attributes for this class. This is useful if you want
2737 to use the same font or colour in your own control as in a standard
2738 control -- which is a much better idea than hard coding specific
2739 colours or fonts which might look completely out of place on the
2740 user's system, especially if it uses themes.
2742 The variant parameter is only relevant under Mac currently and is
2743 ignore under other platforms. Under Mac, it will change the size of
2744 the returned font. See `wx.Window.SetWindowVariant` for more about
2747 return _controls_
.ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
)
2749 #---------------------------------------------------------------------------
2751 class BookCtrl(_core
.Control
):
2752 def __init__(self
): raise RuntimeError, "No constructor defined"
2754 return "<%s.%s; proxy of C++ wxBookCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2755 def GetPageCount(*args
, **kwargs
):
2756 """GetPageCount(self) -> size_t"""
2757 return _controls_
.BookCtrl_GetPageCount(*args
, **kwargs
)
2759 def GetPage(*args
, **kwargs
):
2760 """GetPage(self, size_t n) -> Window"""
2761 return _controls_
.BookCtrl_GetPage(*args
, **kwargs
)
2763 def GetSelection(*args
, **kwargs
):
2764 """GetSelection(self) -> int"""
2765 return _controls_
.BookCtrl_GetSelection(*args
, **kwargs
)
2767 def SetPageText(*args
, **kwargs
):
2768 """SetPageText(self, size_t n, String strText) -> bool"""
2769 return _controls_
.BookCtrl_SetPageText(*args
, **kwargs
)
2771 def GetPageText(*args
, **kwargs
):
2772 """GetPageText(self, size_t n) -> String"""
2773 return _controls_
.BookCtrl_GetPageText(*args
, **kwargs
)
2775 def SetImageList(*args
, **kwargs
):
2776 """SetImageList(self, ImageList imageList)"""
2777 return _controls_
.BookCtrl_SetImageList(*args
, **kwargs
)
2779 def AssignImageList(*args
, **kwargs
):
2780 """AssignImageList(self, ImageList imageList)"""
2781 return _controls_
.BookCtrl_AssignImageList(*args
, **kwargs
)
2783 def GetImageList(*args
, **kwargs
):
2784 """GetImageList(self) -> ImageList"""
2785 return _controls_
.BookCtrl_GetImageList(*args
, **kwargs
)
2787 def GetPageImage(*args
, **kwargs
):
2788 """GetPageImage(self, size_t n) -> int"""
2789 return _controls_
.BookCtrl_GetPageImage(*args
, **kwargs
)
2791 def SetPageImage(*args
, **kwargs
):
2792 """SetPageImage(self, size_t n, int imageId) -> bool"""
2793 return _controls_
.BookCtrl_SetPageImage(*args
, **kwargs
)
2795 def SetPageSize(*args
, **kwargs
):
2796 """SetPageSize(self, Size size)"""
2797 return _controls_
.BookCtrl_SetPageSize(*args
, **kwargs
)
2799 def CalcSizeFromPage(*args
, **kwargs
):
2800 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2801 return _controls_
.BookCtrl_CalcSizeFromPage(*args
, **kwargs
)
2803 def DeletePage(*args
, **kwargs
):
2804 """DeletePage(self, size_t n) -> bool"""
2805 return _controls_
.BookCtrl_DeletePage(*args
, **kwargs
)
2807 def RemovePage(*args
, **kwargs
):
2808 """RemovePage(self, size_t n) -> bool"""
2809 return _controls_
.BookCtrl_RemovePage(*args
, **kwargs
)
2811 def DeleteAllPages(*args
, **kwargs
):
2812 """DeleteAllPages(self) -> bool"""
2813 return _controls_
.BookCtrl_DeleteAllPages(*args
, **kwargs
)
2815 def AddPage(*args
, **kwargs
):
2816 """AddPage(self, Window page, String text, bool select=False, int imageId=-1) -> bool"""
2817 return _controls_
.BookCtrl_AddPage(*args
, **kwargs
)
2819 def InsertPage(*args
, **kwargs
):
2821 InsertPage(self, size_t n, Window page, String text, bool select=False,
2822 int imageId=-1) -> bool
2824 return _controls_
.BookCtrl_InsertPage(*args
, **kwargs
)
2826 def SetSelection(*args
, **kwargs
):
2827 """SetSelection(self, size_t n) -> int"""
2828 return _controls_
.BookCtrl_SetSelection(*args
, **kwargs
)
2830 def AdvanceSelection(*args
, **kwargs
):
2831 """AdvanceSelection(self, bool forward=True)"""
2832 return _controls_
.BookCtrl_AdvanceSelection(*args
, **kwargs
)
2834 def GetClassDefaultAttributes(*args
, **kwargs
):
2836 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2838 Get the default attributes for this class. This is useful if you want
2839 to use the same font or colour in your own control as in a standard
2840 control -- which is a much better idea than hard coding specific
2841 colours or fonts which might look completely out of place on the
2842 user's system, especially if it uses themes.
2844 The variant parameter is only relevant under Mac currently and is
2845 ignore under other platforms. Under Mac, it will change the size of
2846 the returned font. See `wx.Window.SetWindowVariant` for more about
2849 return _controls_
.BookCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2851 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2853 class BookCtrlPtr(BookCtrl
):
2854 def __init__(self
, this
):
2856 if not hasattr(self
,"thisown"): self
.thisown
= 0
2857 self
.__class
__ = BookCtrl
2858 _controls_
.BookCtrl_swigregister(BookCtrlPtr
)
2859 NOTEBOOK_NAME
= cvar
.NOTEBOOK_NAME
2861 def BookCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
2863 BookCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2865 Get the default attributes for this class. This is useful if you want
2866 to use the same font or colour in your own control as in a standard
2867 control -- which is a much better idea than hard coding specific
2868 colours or fonts which might look completely out of place on the
2869 user's system, especially if it uses themes.
2871 The variant parameter is only relevant under Mac currently and is
2872 ignore under other platforms. Under Mac, it will change the size of
2873 the returned font. See `wx.Window.SetWindowVariant` for more about
2876 return _controls_
.BookCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2878 class BookCtrlEvent(_core
.NotifyEvent
):
2880 return "<%s.%s; proxy of C++ wxBookCtrlEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2881 def __init__(self
, *args
, **kwargs
):
2883 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2884 int nOldSel=-1) -> BookCtrlEvent
2886 newobj
= _controls_
.new_BookCtrlEvent(*args
, **kwargs
)
2887 self
.this
= newobj
.this
2890 def GetSelection(*args
, **kwargs
):
2891 """GetSelection(self) -> int"""
2892 return _controls_
.BookCtrlEvent_GetSelection(*args
, **kwargs
)
2894 def SetSelection(*args
, **kwargs
):
2895 """SetSelection(self, int nSel)"""
2896 return _controls_
.BookCtrlEvent_SetSelection(*args
, **kwargs
)
2898 def GetOldSelection(*args
, **kwargs
):
2899 """GetOldSelection(self) -> int"""
2900 return _controls_
.BookCtrlEvent_GetOldSelection(*args
, **kwargs
)
2902 def SetOldSelection(*args
, **kwargs
):
2903 """SetOldSelection(self, int nOldSel)"""
2904 return _controls_
.BookCtrlEvent_SetOldSelection(*args
, **kwargs
)
2907 class BookCtrlEventPtr(BookCtrlEvent
):
2908 def __init__(self
, this
):
2910 if not hasattr(self
,"thisown"): self
.thisown
= 0
2911 self
.__class
__ = BookCtrlEvent
2912 _controls_
.BookCtrlEvent_swigregister(BookCtrlEventPtr
)
2914 #---------------------------------------------------------------------------
2916 NB_FIXEDWIDTH
= _controls_
.NB_FIXEDWIDTH
2917 NB_TOP
= _controls_
.NB_TOP
2918 NB_LEFT
= _controls_
.NB_LEFT
2919 NB_RIGHT
= _controls_
.NB_RIGHT
2920 NB_BOTTOM
= _controls_
.NB_BOTTOM
2921 NB_MULTILINE
= _controls_
.NB_MULTILINE
2922 NB_HITTEST_NOWHERE
= _controls_
.NB_HITTEST_NOWHERE
2923 NB_HITTEST_ONICON
= _controls_
.NB_HITTEST_ONICON
2924 NB_HITTEST_ONLABEL
= _controls_
.NB_HITTEST_ONLABEL
2925 NB_HITTEST_ONITEM
= _controls_
.NB_HITTEST_ONITEM
2926 class Notebook(BookCtrl
):
2928 return "<%s.%s; proxy of C++ wxNotebook instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2929 def __init__(self
, *args
, **kwargs
):
2931 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2932 Size size=DefaultSize, long style=0, String name=NOTEBOOK_NAME) -> Notebook
2934 newobj
= _controls_
.new_Notebook(*args
, **kwargs
)
2935 self
.this
= newobj
.this
2938 self
._setOORInfo
(self
)
2940 def Create(*args
, **kwargs
):
2942 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
2943 long style=0, String name=NOTEBOOK_NAME) -> bool
2945 return _controls_
.Notebook_Create(*args
, **kwargs
)
2947 def GetRowCount(*args
, **kwargs
):
2948 """GetRowCount(self) -> int"""
2949 return _controls_
.Notebook_GetRowCount(*args
, **kwargs
)
2951 def SetPadding(*args
, **kwargs
):
2952 """SetPadding(self, Size padding)"""
2953 return _controls_
.Notebook_SetPadding(*args
, **kwargs
)
2955 def SetTabSize(*args
, **kwargs
):
2956 """SetTabSize(self, Size sz)"""
2957 return _controls_
.Notebook_SetTabSize(*args
, **kwargs
)
2959 def HitTest(*args
, **kwargs
):
2960 """HitTest(Point pt) -> (tab, where)"""
2961 return _controls_
.Notebook_HitTest(*args
, **kwargs
)
2963 def CalcSizeFromPage(*args
, **kwargs
):
2964 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2965 return _controls_
.Notebook_CalcSizeFromPage(*args
, **kwargs
)
2967 def ApplyThemeBackground(*args
, **kwargs
):
2968 """ApplyThemeBackground(self, Window window, Colour colour)"""
2969 return _controls_
.Notebook_ApplyThemeBackground(*args
, **kwargs
)
2971 def GetClassDefaultAttributes(*args
, **kwargs
):
2973 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2975 Get the default attributes for this class. This is useful if you want
2976 to use the same font or colour in your own control as in a standard
2977 control -- which is a much better idea than hard coding specific
2978 colours or fonts which might look completely out of place on the
2979 user's system, especially if it uses themes.
2981 The variant parameter is only relevant under Mac currently and is
2982 ignore under other platforms. Under Mac, it will change the size of
2983 the returned font. See `wx.Window.SetWindowVariant` for more about
2986 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
2988 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2990 class NotebookPtr(Notebook
):
2991 def __init__(self
, this
):
2993 if not hasattr(self
,"thisown"): self
.thisown
= 0
2994 self
.__class
__ = Notebook
2995 _controls_
.Notebook_swigregister(NotebookPtr
)
2997 def PreNotebook(*args
, **kwargs
):
2998 """PreNotebook() -> Notebook"""
2999 val
= _controls_
.new_PreNotebook(*args
, **kwargs
)
3003 def Notebook_GetClassDefaultAttributes(*args
, **kwargs
):
3005 Notebook_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3007 Get the default attributes for this class. This is useful if you want
3008 to use the same font or colour in your own control as in a standard
3009 control -- which is a much better idea than hard coding specific
3010 colours or fonts which might look completely out of place on the
3011 user's system, especially if it uses themes.
3013 The variant parameter is only relevant under Mac currently and is
3014 ignore under other platforms. Under Mac, it will change the size of
3015 the returned font. See `wx.Window.SetWindowVariant` for more about
3018 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
3020 class NotebookEvent(BookCtrlEvent
):
3022 return "<%s.%s; proxy of C++ wxNotebookEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3023 def __init__(self
, *args
, **kwargs
):
3025 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3026 int nOldSel=-1) -> NotebookEvent
3028 newobj
= _controls_
.new_NotebookEvent(*args
, **kwargs
)
3029 self
.this
= newobj
.this
3033 class NotebookEventPtr(NotebookEvent
):
3034 def __init__(self
, this
):
3036 if not hasattr(self
,"thisown"): self
.thisown
= 0
3037 self
.__class
__ = NotebookEvent
3038 _controls_
.NotebookEvent_swigregister(NotebookEventPtr
)
3040 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
3041 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
3043 EVT_NOTEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, 1 )
3044 EVT_NOTEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, 1 )
3046 #----------------------------------------------------------------------------
3048 class NotebookPage(wx
.Panel
):
3050 There is an old (and apparently unsolvable) bug when placing a
3051 window with a nonstandard background colour in a wxNotebook on
3052 wxGTK, as the notbooks's background colour would always be used
3053 when the window is refreshed. The solution is to place a panel in
3054 the notbook and the coloured window on the panel, sized to cover
3055 the panel. This simple class does that for you, just put an
3056 instance of this in the notebook and make your regular window a
3057 child of this one and it will handle the resize for you.
3059 def __init__(self
, parent
, id=-1,
3060 pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
,
3061 style
=wx
.TAB_TRAVERSAL
, name
="panel"):
3062 wx
.Panel
.__init
__(self
, parent
, id, pos
, size
, style
, name
)
3064 EVT_SIZE(self
, self
.OnSize
)
3066 def OnSize(self
, evt
):
3067 if self
.child
is None:
3068 children
= self
.GetChildren()
3070 self
.child
= children
[0]
3072 self
.child
.SetPosition((0,0))
3073 self
.child
.SetSize(self
.GetSize())
3076 #---------------------------------------------------------------------------
3078 LB_DEFAULT
= _controls_
.LB_DEFAULT
3079 LB_TOP
= _controls_
.LB_TOP
3080 LB_BOTTOM
= _controls_
.LB_BOTTOM
3081 LB_LEFT
= _controls_
.LB_LEFT
3082 LB_RIGHT
= _controls_
.LB_RIGHT
3083 LB_ALIGN_MASK
= _controls_
.LB_ALIGN_MASK
3084 class Listbook(BookCtrl
):
3086 return "<%s.%s; proxy of C++ wxListbook instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3087 def __init__(self
, *args
, **kwargs
):
3089 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3090 Size size=DefaultSize, long style=0, String name=EmptyString) -> Listbook
3092 newobj
= _controls_
.new_Listbook(*args
, **kwargs
)
3093 self
.this
= newobj
.this
3096 self
._setOORInfo
(self
)
3098 def Create(*args
, **kwargs
):
3100 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3101 long style=0, String name=EmptyString) -> bool
3103 return _controls_
.Listbook_Create(*args
, **kwargs
)
3105 def IsVertical(*args
, **kwargs
):
3106 """IsVertical(self) -> bool"""
3107 return _controls_
.Listbook_IsVertical(*args
, **kwargs
)
3110 class ListbookPtr(Listbook
):
3111 def __init__(self
, this
):
3113 if not hasattr(self
,"thisown"): self
.thisown
= 0
3114 self
.__class
__ = Listbook
3115 _controls_
.Listbook_swigregister(ListbookPtr
)
3117 def PreListbook(*args
, **kwargs
):
3118 """PreListbook() -> Listbook"""
3119 val
= _controls_
.new_PreListbook(*args
, **kwargs
)
3123 class ListbookEvent(BookCtrlEvent
):
3125 return "<%s.%s; proxy of C++ wxListbookEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3126 def __init__(self
, *args
, **kwargs
):
3128 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3129 int nOldSel=-1) -> ListbookEvent
3131 newobj
= _controls_
.new_ListbookEvent(*args
, **kwargs
)
3132 self
.this
= newobj
.this
3136 class ListbookEventPtr(ListbookEvent
):
3137 def __init__(self
, this
):
3139 if not hasattr(self
,"thisown"): self
.thisown
= 0
3140 self
.__class
__ = ListbookEvent
3141 _controls_
.ListbookEvent_swigregister(ListbookEventPtr
)
3143 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
3144 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
3145 EVT_LISTBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
, 1 )
3146 EVT_LISTBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
, 1 )
3148 #---------------------------------------------------------------------------
3150 class BookCtrlSizer(_core
.Sizer
):
3152 return "<%s.%s; proxy of C++ wxBookCtrlSizer instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3153 def __init__(self
, *args
, **kwargs
):
3154 """__init__(self, BookCtrl nb) -> BookCtrlSizer"""
3155 newobj
= _controls_
.new_BookCtrlSizer(*args
, **kwargs
)
3156 self
.this
= newobj
.this
3159 self
._setOORInfo
(self
)
3161 def RecalcSizes(*args
, **kwargs
):
3162 """RecalcSizes(self)"""
3163 return _controls_
.BookCtrlSizer_RecalcSizes(*args
, **kwargs
)
3165 def CalcMin(*args
, **kwargs
):
3166 """CalcMin(self) -> Size"""
3167 return _controls_
.BookCtrlSizer_CalcMin(*args
, **kwargs
)
3169 def GetControl(*args
, **kwargs
):
3170 """GetControl(self) -> BookCtrl"""
3171 return _controls_
.BookCtrlSizer_GetControl(*args
, **kwargs
)
3174 class BookCtrlSizerPtr(BookCtrlSizer
):
3175 def __init__(self
, this
):
3177 if not hasattr(self
,"thisown"): self
.thisown
= 0
3178 self
.__class
__ = BookCtrlSizer
3179 _controls_
.BookCtrlSizer_swigregister(BookCtrlSizerPtr
)
3181 class NotebookSizer(_core
.Sizer
):
3183 return "<%s.%s; proxy of C++ wxNotebookSizer instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3184 def __init__(self
, *args
, **kwargs
):
3185 """__init__(self, Notebook nb) -> NotebookSizer"""
3186 newobj
= _controls_
.new_NotebookSizer(*args
, **kwargs
)
3187 self
.this
= newobj
.this
3190 self
._setOORInfo
(self
)
3192 def RecalcSizes(*args
, **kwargs
):
3193 """RecalcSizes(self)"""
3194 return _controls_
.NotebookSizer_RecalcSizes(*args
, **kwargs
)
3196 def CalcMin(*args
, **kwargs
):
3197 """CalcMin(self) -> Size"""
3198 return _controls_
.NotebookSizer_CalcMin(*args
, **kwargs
)
3200 def GetNotebook(*args
, **kwargs
):
3201 """GetNotebook(self) -> Notebook"""
3202 return _controls_
.NotebookSizer_GetNotebook(*args
, **kwargs
)
3205 class NotebookSizerPtr(NotebookSizer
):
3206 def __init__(self
, this
):
3208 if not hasattr(self
,"thisown"): self
.thisown
= 0
3209 self
.__class
__ = NotebookSizer
3210 _controls_
.NotebookSizer_swigregister(NotebookSizerPtr
)
3212 #---------------------------------------------------------------------------
3214 TOOL_STYLE_BUTTON
= _controls_
.TOOL_STYLE_BUTTON
3215 TOOL_STYLE_SEPARATOR
= _controls_
.TOOL_STYLE_SEPARATOR
3216 TOOL_STYLE_CONTROL
= _controls_
.TOOL_STYLE_CONTROL
3217 TB_HORIZONTAL
= _controls_
.TB_HORIZONTAL
3218 TB_VERTICAL
= _controls_
.TB_VERTICAL
3219 TB_3DBUTTONS
= _controls_
.TB_3DBUTTONS
3220 TB_FLAT
= _controls_
.TB_FLAT
3221 TB_DOCKABLE
= _controls_
.TB_DOCKABLE
3222 TB_NOICONS
= _controls_
.TB_NOICONS
3223 TB_TEXT
= _controls_
.TB_TEXT
3224 TB_NODIVIDER
= _controls_
.TB_NODIVIDER
3225 TB_NOALIGN
= _controls_
.TB_NOALIGN
3226 TB_HORZ_LAYOUT
= _controls_
.TB_HORZ_LAYOUT
3227 TB_HORZ_TEXT
= _controls_
.TB_HORZ_TEXT
3228 class ToolBarToolBase(_core
.Object
):
3229 def __init__(self
): raise RuntimeError, "No constructor defined"
3231 return "<%s.%s; proxy of C++ wxToolBarToolBase instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3232 def GetId(*args
, **kwargs
):
3233 """GetId(self) -> int"""
3234 return _controls_
.ToolBarToolBase_GetId(*args
, **kwargs
)
3236 def GetControl(*args
, **kwargs
):
3237 """GetControl(self) -> Control"""
3238 return _controls_
.ToolBarToolBase_GetControl(*args
, **kwargs
)
3240 def GetToolBar(*args
, **kwargs
):
3241 """GetToolBar(self) -> ToolBarBase"""
3242 return _controls_
.ToolBarToolBase_GetToolBar(*args
, **kwargs
)
3244 def IsButton(*args
, **kwargs
):
3245 """IsButton(self) -> int"""
3246 return _controls_
.ToolBarToolBase_IsButton(*args
, **kwargs
)
3248 def IsControl(*args
, **kwargs
):
3249 """IsControl(self) -> int"""
3250 return _controls_
.ToolBarToolBase_IsControl(*args
, **kwargs
)
3252 def IsSeparator(*args
, **kwargs
):
3253 """IsSeparator(self) -> int"""
3254 return _controls_
.ToolBarToolBase_IsSeparator(*args
, **kwargs
)
3256 def GetStyle(*args
, **kwargs
):
3257 """GetStyle(self) -> int"""
3258 return _controls_
.ToolBarToolBase_GetStyle(*args
, **kwargs
)
3260 def GetKind(*args
, **kwargs
):
3261 """GetKind(self) -> int"""
3262 return _controls_
.ToolBarToolBase_GetKind(*args
, **kwargs
)
3264 def IsEnabled(*args
, **kwargs
):
3265 """IsEnabled(self) -> bool"""
3266 return _controls_
.ToolBarToolBase_IsEnabled(*args
, **kwargs
)
3268 def IsToggled(*args
, **kwargs
):
3269 """IsToggled(self) -> bool"""
3270 return _controls_
.ToolBarToolBase_IsToggled(*args
, **kwargs
)
3272 def CanBeToggled(*args
, **kwargs
):
3273 """CanBeToggled(self) -> bool"""
3274 return _controls_
.ToolBarToolBase_CanBeToggled(*args
, **kwargs
)
3276 def GetNormalBitmap(*args
, **kwargs
):
3277 """GetNormalBitmap(self) -> Bitmap"""
3278 return _controls_
.ToolBarToolBase_GetNormalBitmap(*args
, **kwargs
)
3280 def GetDisabledBitmap(*args
, **kwargs
):
3281 """GetDisabledBitmap(self) -> Bitmap"""
3282 return _controls_
.ToolBarToolBase_GetDisabledBitmap(*args
, **kwargs
)
3284 def GetBitmap(*args
, **kwargs
):
3285 """GetBitmap(self) -> Bitmap"""
3286 return _controls_
.ToolBarToolBase_GetBitmap(*args
, **kwargs
)
3288 def GetLabel(*args
, **kwargs
):
3289 """GetLabel(self) -> String"""
3290 return _controls_
.ToolBarToolBase_GetLabel(*args
, **kwargs
)
3292 def GetShortHelp(*args
, **kwargs
):
3293 """GetShortHelp(self) -> String"""
3294 return _controls_
.ToolBarToolBase_GetShortHelp(*args
, **kwargs
)
3296 def GetLongHelp(*args
, **kwargs
):
3297 """GetLongHelp(self) -> String"""
3298 return _controls_
.ToolBarToolBase_GetLongHelp(*args
, **kwargs
)
3300 def Enable(*args
, **kwargs
):
3301 """Enable(self, bool enable) -> bool"""
3302 return _controls_
.ToolBarToolBase_Enable(*args
, **kwargs
)
3304 def Toggle(*args
, **kwargs
):
3306 return _controls_
.ToolBarToolBase_Toggle(*args
, **kwargs
)
3308 def SetToggle(*args
, **kwargs
):
3309 """SetToggle(self, bool toggle) -> bool"""
3310 return _controls_
.ToolBarToolBase_SetToggle(*args
, **kwargs
)
3312 def SetShortHelp(*args
, **kwargs
):
3313 """SetShortHelp(self, String help) -> bool"""
3314 return _controls_
.ToolBarToolBase_SetShortHelp(*args
, **kwargs
)
3316 def SetLongHelp(*args
, **kwargs
):
3317 """SetLongHelp(self, String help) -> bool"""
3318 return _controls_
.ToolBarToolBase_SetLongHelp(*args
, **kwargs
)
3320 def SetNormalBitmap(*args
, **kwargs
):
3321 """SetNormalBitmap(self, Bitmap bmp)"""
3322 return _controls_
.ToolBarToolBase_SetNormalBitmap(*args
, **kwargs
)
3324 def SetDisabledBitmap(*args
, **kwargs
):
3325 """SetDisabledBitmap(self, Bitmap bmp)"""
3326 return _controls_
.ToolBarToolBase_SetDisabledBitmap(*args
, **kwargs
)
3328 def SetLabel(*args
, **kwargs
):
3329 """SetLabel(self, String label)"""
3330 return _controls_
.ToolBarToolBase_SetLabel(*args
, **kwargs
)
3332 def Detach(*args
, **kwargs
):
3334 return _controls_
.ToolBarToolBase_Detach(*args
, **kwargs
)
3336 def Attach(*args
, **kwargs
):
3337 """Attach(self, ToolBarBase tbar)"""
3338 return _controls_
.ToolBarToolBase_Attach(*args
, **kwargs
)
3340 def GetClientData(*args
, **kwargs
):
3341 """GetClientData(self) -> PyObject"""
3342 return _controls_
.ToolBarToolBase_GetClientData(*args
, **kwargs
)
3344 def SetClientData(*args
, **kwargs
):
3345 """SetClientData(self, PyObject clientData)"""
3346 return _controls_
.ToolBarToolBase_SetClientData(*args
, **kwargs
)
3348 GetBitmap1
= GetNormalBitmap
3349 GetBitmap2
= GetDisabledBitmap
3350 SetBitmap1
= SetNormalBitmap
3351 SetBitmap2
= SetDisabledBitmap
3354 class ToolBarToolBasePtr(ToolBarToolBase
):
3355 def __init__(self
, this
):
3357 if not hasattr(self
,"thisown"): self
.thisown
= 0
3358 self
.__class
__ = ToolBarToolBase
3359 _controls_
.ToolBarToolBase_swigregister(ToolBarToolBasePtr
)
3361 class ToolBarBase(_core
.Control
):
3362 def __init__(self
): raise RuntimeError, "No constructor defined"
3364 return "<%s.%s; proxy of C++ wxToolBarBase instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3365 def DoAddTool(*args
, **kwargs
):
3367 DoAddTool(self, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3368 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
3369 String longHelp=EmptyString,
3370 PyObject clientData=None) -> ToolBarToolBase
3372 return _controls_
.ToolBarBase_DoAddTool(*args
, **kwargs
)
3374 def DoInsertTool(*args
, **kwargs
):
3376 DoInsertTool(self, size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3377 int kind=ITEM_NORMAL,
3378 String shortHelp=EmptyString, String longHelp=EmptyString,
3379 PyObject clientData=None) -> ToolBarToolBase
3381 return _controls_
.ToolBarBase_DoInsertTool(*args
, **kwargs
)
3383 # These match the original Add methods for this class, kept for
3384 # backwards compatibility with versions < 2.3.3.
3387 def AddTool(self
, id, bitmap
,
3388 pushedBitmap
= wx
.NullBitmap
,
3391 shortHelpString
= '',
3392 longHelpString
= '') :
3393 '''Old style method to add a tool to the toolbar.'''
3394 kind
= wx
.ITEM_NORMAL
3395 if isToggle
: kind
= wx
.ITEM_CHECK
3396 return self
.DoAddTool(id, '', bitmap
, pushedBitmap
, kind
,
3397 shortHelpString
, longHelpString
, clientData
)
3399 def AddSimpleTool(self
, id, bitmap
,
3400 shortHelpString
= '',
3401 longHelpString
= '',
3403 '''Old style method to add a tool to the toolbar.'''
3404 kind
= wx
.ITEM_NORMAL
3405 if isToggle
: kind
= wx
.ITEM_CHECK
3406 return self
.DoAddTool(id, '', bitmap
, wx
.NullBitmap
, kind
,
3407 shortHelpString
, longHelpString
, None)
3409 def InsertTool(self
, pos
, id, bitmap
,
3410 pushedBitmap
= wx
.NullBitmap
,
3413 shortHelpString
= '',
3414 longHelpString
= ''):
3415 '''Old style method to insert a tool in the toolbar.'''
3416 kind
= wx
.ITEM_NORMAL
3417 if isToggle
: kind
= wx
.ITEM_CHECK
3418 return self
.DoInsertTool(pos
, id, '', bitmap
, pushedBitmap
, kind
,
3419 shortHelpString
, longHelpString
, clientData
)
3421 def InsertSimpleTool(self
, pos
, id, bitmap
,
3422 shortHelpString
= '',
3423 longHelpString
= '',
3425 '''Old style method to insert a tool in the toolbar.'''
3426 kind
= wx
.ITEM_NORMAL
3427 if isToggle
: kind
= wx
.ITEM_CHECK
3428 return self
.DoInsertTool(pos
, id, '', bitmap
, wx
.NullBitmap
, kind
,
3429 shortHelpString
, longHelpString
, None)
3432 # The following are the new toolbar Add methods starting with
3433 # 2.3.3. They are renamed to have 'Label' in the name so as to be
3434 # able to keep backwards compatibility with using the above
3435 # methods. Eventually these should migrate to be the methods used
3436 # primarily and lose the 'Label' in the name...
3438 def AddLabelTool(self
, id, label
, bitmap
,
3439 bmpDisabled
= wx
.NullBitmap
,
3440 kind
= wx
.ITEM_NORMAL
,
3441 shortHelp
= '', longHelp
= '',
3444 The full AddTool() function.
3446 If bmpDisabled is wx.NullBitmap, a shadowed version of the normal bitmap
3447 is created and used as the disabled image.
3449 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, kind
,
3450 shortHelp
, longHelp
, clientData
)
3453 def InsertLabelTool(self
, pos
, id, label
, bitmap
,
3454 bmpDisabled
= wx
.NullBitmap
,
3455 kind
= wx
.ITEM_NORMAL
,
3456 shortHelp
= '', longHelp
= '',
3459 Insert the new tool at the given position, if pos == GetToolsCount(), it
3460 is equivalent to AddTool()
3462 return self
.DoInsertTool(pos
, id, label
, bitmap
, bmpDisabled
, kind
,
3463 shortHelp
, longHelp
, clientData
)
3465 def AddCheckLabelTool(self
, id, label
, bitmap
,
3466 bmpDisabled
= wx
.NullBitmap
,
3467 shortHelp
= '', longHelp
= '',
3469 '''Add a check tool, i.e. a tool which can be toggled'''
3470 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3471 shortHelp
, longHelp
, clientData
)
3473 def AddRadioLabelTool(self
, id, label
, bitmap
,
3474 bmpDisabled
= wx
.NullBitmap
,
3475 shortHelp
= '', longHelp
= '',
3478 Add a radio tool, i.e. a tool which can be toggled and releases any
3479 other toggled radio tools in the same group when it happens
3481 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3482 shortHelp
, longHelp
, clientData
)
3485 # For consistency with the backwards compatible methods above, here are
3486 # some non-'Label' versions of the Check and Radio methods
3487 def AddCheckTool(self
, id, bitmap
,
3488 bmpDisabled
= wx
.NullBitmap
,
3489 shortHelp
= '', longHelp
= '',
3491 '''Add a check tool, i.e. a tool which can be toggled'''
3492 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3493 shortHelp
, longHelp
, clientData
)
3495 def AddRadioTool(self
, id, bitmap
,
3496 bmpDisabled
= wx
.NullBitmap
,
3497 shortHelp
= '', longHelp
= '',
3500 Add a radio tool, i.e. a tool which can be toggled and releases any
3501 other toggled radio tools in the same group when it happens
3503 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3504 shortHelp
, longHelp
, clientData
)
3506 def AddToolItem(*args
, **kwargs
):
3507 """AddToolItem(self, ToolBarToolBase tool) -> ToolBarToolBase"""
3508 return _controls_
.ToolBarBase_AddToolItem(*args
, **kwargs
)
3510 def InsertToolItem(*args
, **kwargs
):
3511 """InsertToolItem(self, size_t pos, ToolBarToolBase tool) -> ToolBarToolBase"""
3512 return _controls_
.ToolBarBase_InsertToolItem(*args
, **kwargs
)
3514 def AddControl(*args
, **kwargs
):
3515 """AddControl(self, Control control) -> ToolBarToolBase"""
3516 return _controls_
.ToolBarBase_AddControl(*args
, **kwargs
)
3518 def InsertControl(*args
, **kwargs
):
3519 """InsertControl(self, size_t pos, Control control) -> ToolBarToolBase"""
3520 return _controls_
.ToolBarBase_InsertControl(*args
, **kwargs
)
3522 def FindControl(*args
, **kwargs
):
3523 """FindControl(self, int id) -> Control"""
3524 return _controls_
.ToolBarBase_FindControl(*args
, **kwargs
)
3526 def AddSeparator(*args
, **kwargs
):
3527 """AddSeparator(self) -> ToolBarToolBase"""
3528 return _controls_
.ToolBarBase_AddSeparator(*args
, **kwargs
)
3530 def InsertSeparator(*args
, **kwargs
):
3531 """InsertSeparator(self, size_t pos) -> ToolBarToolBase"""
3532 return _controls_
.ToolBarBase_InsertSeparator(*args
, **kwargs
)
3534 def RemoveTool(*args
, **kwargs
):
3535 """RemoveTool(self, int id) -> ToolBarToolBase"""
3536 return _controls_
.ToolBarBase_RemoveTool(*args
, **kwargs
)
3538 def DeleteToolByPos(*args
, **kwargs
):
3539 """DeleteToolByPos(self, size_t pos) -> bool"""
3540 return _controls_
.ToolBarBase_DeleteToolByPos(*args
, **kwargs
)
3542 def DeleteTool(*args
, **kwargs
):
3543 """DeleteTool(self, int id) -> bool"""
3544 return _controls_
.ToolBarBase_DeleteTool(*args
, **kwargs
)
3546 def ClearTools(*args
, **kwargs
):
3547 """ClearTools(self)"""
3548 return _controls_
.ToolBarBase_ClearTools(*args
, **kwargs
)
3550 def Realize(*args
, **kwargs
):
3551 """Realize(self) -> bool"""
3552 return _controls_
.ToolBarBase_Realize(*args
, **kwargs
)
3554 def EnableTool(*args
, **kwargs
):
3555 """EnableTool(self, int id, bool enable)"""
3556 return _controls_
.ToolBarBase_EnableTool(*args
, **kwargs
)
3558 def ToggleTool(*args
, **kwargs
):
3559 """ToggleTool(self, int id, bool toggle)"""
3560 return _controls_
.ToolBarBase_ToggleTool(*args
, **kwargs
)
3562 def SetToggle(*args
, **kwargs
):
3563 """SetToggle(self, int id, bool toggle)"""
3564 return _controls_
.ToolBarBase_SetToggle(*args
, **kwargs
)
3566 def GetToolClientData(*args
, **kwargs
):
3567 """GetToolClientData(self, int id) -> PyObject"""
3568 return _controls_
.ToolBarBase_GetToolClientData(*args
, **kwargs
)
3570 def SetToolClientData(*args
, **kwargs
):
3571 """SetToolClientData(self, int id, PyObject clientData)"""
3572 return _controls_
.ToolBarBase_SetToolClientData(*args
, **kwargs
)
3574 def GetToolPos(*args
, **kwargs
):
3575 """GetToolPos(self, int id) -> int"""
3576 return _controls_
.ToolBarBase_GetToolPos(*args
, **kwargs
)
3578 def GetToolState(*args
, **kwargs
):
3579 """GetToolState(self, int id) -> bool"""
3580 return _controls_
.ToolBarBase_GetToolState(*args
, **kwargs
)
3582 def GetToolEnabled(*args
, **kwargs
):
3583 """GetToolEnabled(self, int id) -> bool"""
3584 return _controls_
.ToolBarBase_GetToolEnabled(*args
, **kwargs
)
3586 def SetToolShortHelp(*args
, **kwargs
):
3587 """SetToolShortHelp(self, int id, String helpString)"""
3588 return _controls_
.ToolBarBase_SetToolShortHelp(*args
, **kwargs
)
3590 def GetToolShortHelp(*args
, **kwargs
):
3591 """GetToolShortHelp(self, int id) -> String"""
3592 return _controls_
.ToolBarBase_GetToolShortHelp(*args
, **kwargs
)
3594 def SetToolLongHelp(*args
, **kwargs
):
3595 """SetToolLongHelp(self, int id, String helpString)"""
3596 return _controls_
.ToolBarBase_SetToolLongHelp(*args
, **kwargs
)
3598 def GetToolLongHelp(*args
, **kwargs
):
3599 """GetToolLongHelp(self, int id) -> String"""
3600 return _controls_
.ToolBarBase_GetToolLongHelp(*args
, **kwargs
)
3602 def SetMarginsXY(*args
, **kwargs
):
3603 """SetMarginsXY(self, int x, int y)"""
3604 return _controls_
.ToolBarBase_SetMarginsXY(*args
, **kwargs
)
3606 def SetMargins(*args
, **kwargs
):
3607 """SetMargins(self, Size size)"""
3608 return _controls_
.ToolBarBase_SetMargins(*args
, **kwargs
)
3610 def SetToolPacking(*args
, **kwargs
):
3611 """SetToolPacking(self, int packing)"""
3612 return _controls_
.ToolBarBase_SetToolPacking(*args
, **kwargs
)
3614 def SetToolSeparation(*args
, **kwargs
):
3615 """SetToolSeparation(self, int separation)"""
3616 return _controls_
.ToolBarBase_SetToolSeparation(*args
, **kwargs
)
3618 def GetToolMargins(*args
, **kwargs
):
3619 """GetToolMargins(self) -> Size"""
3620 return _controls_
.ToolBarBase_GetToolMargins(*args
, **kwargs
)
3622 def GetMargins(*args
, **kwargs
):
3623 """GetMargins(self) -> Size"""
3624 return _controls_
.ToolBarBase_GetMargins(*args
, **kwargs
)
3626 def GetToolPacking(*args
, **kwargs
):
3627 """GetToolPacking(self) -> int"""
3628 return _controls_
.ToolBarBase_GetToolPacking(*args
, **kwargs
)
3630 def GetToolSeparation(*args
, **kwargs
):
3631 """GetToolSeparation(self) -> int"""
3632 return _controls_
.ToolBarBase_GetToolSeparation(*args
, **kwargs
)
3634 def SetRows(*args
, **kwargs
):
3635 """SetRows(self, int nRows)"""
3636 return _controls_
.ToolBarBase_SetRows(*args
, **kwargs
)
3638 def SetMaxRowsCols(*args
, **kwargs
):
3639 """SetMaxRowsCols(self, int rows, int cols)"""
3640 return _controls_
.ToolBarBase_SetMaxRowsCols(*args
, **kwargs
)
3642 def GetMaxRows(*args
, **kwargs
):
3643 """GetMaxRows(self) -> int"""
3644 return _controls_
.ToolBarBase_GetMaxRows(*args
, **kwargs
)
3646 def GetMaxCols(*args
, **kwargs
):
3647 """GetMaxCols(self) -> int"""
3648 return _controls_
.ToolBarBase_GetMaxCols(*args
, **kwargs
)
3650 def SetToolBitmapSize(*args
, **kwargs
):
3651 """SetToolBitmapSize(self, Size size)"""
3652 return _controls_
.ToolBarBase_SetToolBitmapSize(*args
, **kwargs
)
3654 def GetToolBitmapSize(*args
, **kwargs
):
3655 """GetToolBitmapSize(self) -> Size"""
3656 return _controls_
.ToolBarBase_GetToolBitmapSize(*args
, **kwargs
)
3658 def GetToolSize(*args
, **kwargs
):
3659 """GetToolSize(self) -> Size"""
3660 return _controls_
.ToolBarBase_GetToolSize(*args
, **kwargs
)
3662 def FindToolForPosition(*args
, **kwargs
):
3663 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3664 return _controls_
.ToolBarBase_FindToolForPosition(*args
, **kwargs
)
3666 def FindById(*args
, **kwargs
):
3667 """FindById(self, int toolid) -> ToolBarToolBase"""
3668 return _controls_
.ToolBarBase_FindById(*args
, **kwargs
)
3670 def IsVertical(*args
, **kwargs
):
3671 """IsVertical(self) -> bool"""
3672 return _controls_
.ToolBarBase_IsVertical(*args
, **kwargs
)
3675 class ToolBarBasePtr(ToolBarBase
):
3676 def __init__(self
, this
):
3678 if not hasattr(self
,"thisown"): self
.thisown
= 0
3679 self
.__class
__ = ToolBarBase
3680 _controls_
.ToolBarBase_swigregister(ToolBarBasePtr
)
3682 class ToolBar(ToolBarBase
):
3684 return "<%s.%s; proxy of C++ wxToolBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3685 def __init__(self
, *args
, **kwargs
):
3687 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3688 long style=wxNO_BORDER|wxTB_HORIZONTAL,
3689 String name=wxPyToolBarNameStr) -> ToolBar
3691 newobj
= _controls_
.new_ToolBar(*args
, **kwargs
)
3692 self
.this
= newobj
.this
3695 self
._setOORInfo
(self
)
3697 def Create(*args
, **kwargs
):
3699 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3700 long style=wxNO_BORDER|wxTB_HORIZONTAL,
3701 String name=wxPyToolBarNameStr) -> bool
3703 return _controls_
.ToolBar_Create(*args
, **kwargs
)
3705 def FindToolForPosition(*args
, **kwargs
):
3706 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3707 return _controls_
.ToolBar_FindToolForPosition(*args
, **kwargs
)
3709 def GetClassDefaultAttributes(*args
, **kwargs
):
3711 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3713 Get the default attributes for this class. This is useful if you want
3714 to use the same font or colour in your own control as in a standard
3715 control -- which is a much better idea than hard coding specific
3716 colours or fonts which might look completely out of place on the
3717 user's system, especially if it uses themes.
3719 The variant parameter is only relevant under Mac currently and is
3720 ignore under other platforms. Under Mac, it will change the size of
3721 the returned font. See `wx.Window.SetWindowVariant` for more about
3724 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
3726 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3728 class ToolBarPtr(ToolBar
):
3729 def __init__(self
, this
):
3731 if not hasattr(self
,"thisown"): self
.thisown
= 0
3732 self
.__class
__ = ToolBar
3733 _controls_
.ToolBar_swigregister(ToolBarPtr
)
3735 def PreToolBar(*args
, **kwargs
):
3736 """PreToolBar() -> ToolBar"""
3737 val
= _controls_
.new_PreToolBar(*args
, **kwargs
)
3741 def ToolBar_GetClassDefaultAttributes(*args
, **kwargs
):
3743 ToolBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3745 Get the default attributes for this class. This is useful if you want
3746 to use the same font or colour in your own control as in a standard
3747 control -- which is a much better idea than hard coding specific
3748 colours or fonts which might look completely out of place on the
3749 user's system, especially if it uses themes.
3751 The variant parameter is only relevant under Mac currently and is
3752 ignore under other platforms. Under Mac, it will change the size of
3753 the returned font. See `wx.Window.SetWindowVariant` for more about
3756 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
3758 #---------------------------------------------------------------------------
3760 LC_VRULES
= _controls_
.LC_VRULES
3761 LC_HRULES
= _controls_
.LC_HRULES
3762 LC_ICON
= _controls_
.LC_ICON
3763 LC_SMALL_ICON
= _controls_
.LC_SMALL_ICON
3764 LC_LIST
= _controls_
.LC_LIST
3765 LC_REPORT
= _controls_
.LC_REPORT
3766 LC_ALIGN_TOP
= _controls_
.LC_ALIGN_TOP
3767 LC_ALIGN_LEFT
= _controls_
.LC_ALIGN_LEFT
3768 LC_AUTOARRANGE
= _controls_
.LC_AUTOARRANGE
3769 LC_VIRTUAL
= _controls_
.LC_VIRTUAL
3770 LC_EDIT_LABELS
= _controls_
.LC_EDIT_LABELS
3771 LC_NO_HEADER
= _controls_
.LC_NO_HEADER
3772 LC_NO_SORT_HEADER
= _controls_
.LC_NO_SORT_HEADER
3773 LC_SINGLE_SEL
= _controls_
.LC_SINGLE_SEL
3774 LC_SORT_ASCENDING
= _controls_
.LC_SORT_ASCENDING
3775 LC_SORT_DESCENDING
= _controls_
.LC_SORT_DESCENDING
3776 LC_MASK_TYPE
= _controls_
.LC_MASK_TYPE
3777 LC_MASK_ALIGN
= _controls_
.LC_MASK_ALIGN
3778 LC_MASK_SORT
= _controls_
.LC_MASK_SORT
3779 LIST_MASK_STATE
= _controls_
.LIST_MASK_STATE
3780 LIST_MASK_TEXT
= _controls_
.LIST_MASK_TEXT
3781 LIST_MASK_IMAGE
= _controls_
.LIST_MASK_IMAGE
3782 LIST_MASK_DATA
= _controls_
.LIST_MASK_DATA
3783 LIST_SET_ITEM
= _controls_
.LIST_SET_ITEM
3784 LIST_MASK_WIDTH
= _controls_
.LIST_MASK_WIDTH
3785 LIST_MASK_FORMAT
= _controls_
.LIST_MASK_FORMAT
3786 LIST_STATE_DONTCARE
= _controls_
.LIST_STATE_DONTCARE
3787 LIST_STATE_DROPHILITED
= _controls_
.LIST_STATE_DROPHILITED
3788 LIST_STATE_FOCUSED
= _controls_
.LIST_STATE_FOCUSED
3789 LIST_STATE_SELECTED
= _controls_
.LIST_STATE_SELECTED
3790 LIST_STATE_CUT
= _controls_
.LIST_STATE_CUT
3791 LIST_STATE_DISABLED
= _controls_
.LIST_STATE_DISABLED
3792 LIST_STATE_FILTERED
= _controls_
.LIST_STATE_FILTERED
3793 LIST_STATE_INUSE
= _controls_
.LIST_STATE_INUSE
3794 LIST_STATE_PICKED
= _controls_
.LIST_STATE_PICKED
3795 LIST_STATE_SOURCE
= _controls_
.LIST_STATE_SOURCE
3796 LIST_HITTEST_ABOVE
= _controls_
.LIST_HITTEST_ABOVE
3797 LIST_HITTEST_BELOW
= _controls_
.LIST_HITTEST_BELOW
3798 LIST_HITTEST_NOWHERE
= _controls_
.LIST_HITTEST_NOWHERE
3799 LIST_HITTEST_ONITEMICON
= _controls_
.LIST_HITTEST_ONITEMICON
3800 LIST_HITTEST_ONITEMLABEL
= _controls_
.LIST_HITTEST_ONITEMLABEL
3801 LIST_HITTEST_ONITEMRIGHT
= _controls_
.LIST_HITTEST_ONITEMRIGHT
3802 LIST_HITTEST_ONITEMSTATEICON
= _controls_
.LIST_HITTEST_ONITEMSTATEICON
3803 LIST_HITTEST_TOLEFT
= _controls_
.LIST_HITTEST_TOLEFT
3804 LIST_HITTEST_TORIGHT
= _controls_
.LIST_HITTEST_TORIGHT
3805 LIST_HITTEST_ONITEM
= _controls_
.LIST_HITTEST_ONITEM
3806 LIST_NEXT_ABOVE
= _controls_
.LIST_NEXT_ABOVE
3807 LIST_NEXT_ALL
= _controls_
.LIST_NEXT_ALL
3808 LIST_NEXT_BELOW
= _controls_
.LIST_NEXT_BELOW
3809 LIST_NEXT_LEFT
= _controls_
.LIST_NEXT_LEFT
3810 LIST_NEXT_RIGHT
= _controls_
.LIST_NEXT_RIGHT
3811 LIST_ALIGN_DEFAULT
= _controls_
.LIST_ALIGN_DEFAULT
3812 LIST_ALIGN_LEFT
= _controls_
.LIST_ALIGN_LEFT
3813 LIST_ALIGN_TOP
= _controls_
.LIST_ALIGN_TOP
3814 LIST_ALIGN_SNAP_TO_GRID
= _controls_
.LIST_ALIGN_SNAP_TO_GRID
3815 LIST_FORMAT_LEFT
= _controls_
.LIST_FORMAT_LEFT
3816 LIST_FORMAT_RIGHT
= _controls_
.LIST_FORMAT_RIGHT
3817 LIST_FORMAT_CENTRE
= _controls_
.LIST_FORMAT_CENTRE
3818 LIST_FORMAT_CENTER
= _controls_
.LIST_FORMAT_CENTER
3819 LIST_AUTOSIZE
= _controls_
.LIST_AUTOSIZE
3820 LIST_AUTOSIZE_USEHEADER
= _controls_
.LIST_AUTOSIZE_USEHEADER
3821 LIST_RECT_BOUNDS
= _controls_
.LIST_RECT_BOUNDS
3822 LIST_RECT_ICON
= _controls_
.LIST_RECT_ICON
3823 LIST_RECT_LABEL
= _controls_
.LIST_RECT_LABEL
3824 LIST_FIND_UP
= _controls_
.LIST_FIND_UP
3825 LIST_FIND_DOWN
= _controls_
.LIST_FIND_DOWN
3826 LIST_FIND_LEFT
= _controls_
.LIST_FIND_LEFT
3827 LIST_FIND_RIGHT
= _controls_
.LIST_FIND_RIGHT
3828 #---------------------------------------------------------------------------
3830 class ListItemAttr(object):
3832 return "<%s.%s; proxy of C++ wxListItemAttr instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3833 def __init__(self
, *args
, **kwargs
):
3835 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
3836 Font font=wxNullFont) -> ListItemAttr
3838 newobj
= _controls_
.new_ListItemAttr(*args
, **kwargs
)
3839 self
.this
= newobj
.this
3842 def SetTextColour(*args
, **kwargs
):
3843 """SetTextColour(self, Colour colText)"""
3844 return _controls_
.ListItemAttr_SetTextColour(*args
, **kwargs
)
3846 def SetBackgroundColour(*args
, **kwargs
):
3847 """SetBackgroundColour(self, Colour colBack)"""
3848 return _controls_
.ListItemAttr_SetBackgroundColour(*args
, **kwargs
)
3850 def SetFont(*args
, **kwargs
):
3851 """SetFont(self, Font font)"""
3852 return _controls_
.ListItemAttr_SetFont(*args
, **kwargs
)
3854 def HasTextColour(*args
, **kwargs
):
3855 """HasTextColour(self) -> bool"""
3856 return _controls_
.ListItemAttr_HasTextColour(*args
, **kwargs
)
3858 def HasBackgroundColour(*args
, **kwargs
):
3859 """HasBackgroundColour(self) -> bool"""
3860 return _controls_
.ListItemAttr_HasBackgroundColour(*args
, **kwargs
)
3862 def HasFont(*args
, **kwargs
):
3863 """HasFont(self) -> bool"""
3864 return _controls_
.ListItemAttr_HasFont(*args
, **kwargs
)
3866 def GetTextColour(*args
, **kwargs
):
3867 """GetTextColour(self) -> Colour"""
3868 return _controls_
.ListItemAttr_GetTextColour(*args
, **kwargs
)
3870 def GetBackgroundColour(*args
, **kwargs
):
3871 """GetBackgroundColour(self) -> Colour"""
3872 return _controls_
.ListItemAttr_GetBackgroundColour(*args
, **kwargs
)
3874 def GetFont(*args
, **kwargs
):
3875 """GetFont(self) -> Font"""
3876 return _controls_
.ListItemAttr_GetFont(*args
, **kwargs
)
3878 def Destroy(*args
, **kwargs
):
3880 return _controls_
.ListItemAttr_Destroy(*args
, **kwargs
)
3883 class ListItemAttrPtr(ListItemAttr
):
3884 def __init__(self
, this
):
3886 if not hasattr(self
,"thisown"): self
.thisown
= 0
3887 self
.__class
__ = ListItemAttr
3888 _controls_
.ListItemAttr_swigregister(ListItemAttrPtr
)
3889 ListCtrlNameStr
= cvar
.ListCtrlNameStr
3891 #---------------------------------------------------------------------------
3893 class ListItem(_core
.Object
):
3895 return "<%s.%s; proxy of C++ wxListItem instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3896 def __init__(self
, *args
, **kwargs
):
3897 """__init__(self) -> ListItem"""
3898 newobj
= _controls_
.new_ListItem(*args
, **kwargs
)
3899 self
.this
= newobj
.this
3902 def __del__(self
, destroy
=_controls_
.delete_ListItem
):
3905 if self
.thisown
: destroy(self
)
3908 def Clear(*args
, **kwargs
):
3910 return _controls_
.ListItem_Clear(*args
, **kwargs
)
3912 def ClearAttributes(*args
, **kwargs
):
3913 """ClearAttributes(self)"""
3914 return _controls_
.ListItem_ClearAttributes(*args
, **kwargs
)
3916 def SetMask(*args
, **kwargs
):
3917 """SetMask(self, long mask)"""
3918 return _controls_
.ListItem_SetMask(*args
, **kwargs
)
3920 def SetId(*args
, **kwargs
):
3921 """SetId(self, long id)"""
3922 return _controls_
.ListItem_SetId(*args
, **kwargs
)
3924 def SetColumn(*args
, **kwargs
):
3925 """SetColumn(self, int col)"""
3926 return _controls_
.ListItem_SetColumn(*args
, **kwargs
)
3928 def SetState(*args
, **kwargs
):
3929 """SetState(self, long state)"""
3930 return _controls_
.ListItem_SetState(*args
, **kwargs
)
3932 def SetStateMask(*args
, **kwargs
):
3933 """SetStateMask(self, long stateMask)"""
3934 return _controls_
.ListItem_SetStateMask(*args
, **kwargs
)
3936 def SetText(*args
, **kwargs
):
3937 """SetText(self, String text)"""
3938 return _controls_
.ListItem_SetText(*args
, **kwargs
)
3940 def SetImage(*args
, **kwargs
):
3941 """SetImage(self, int image)"""
3942 return _controls_
.ListItem_SetImage(*args
, **kwargs
)
3944 def SetData(*args
, **kwargs
):
3945 """SetData(self, long data)"""
3946 return _controls_
.ListItem_SetData(*args
, **kwargs
)
3948 def SetWidth(*args
, **kwargs
):
3949 """SetWidth(self, int width)"""
3950 return _controls_
.ListItem_SetWidth(*args
, **kwargs
)
3952 def SetAlign(*args
, **kwargs
):
3953 """SetAlign(self, int align)"""
3954 return _controls_
.ListItem_SetAlign(*args
, **kwargs
)
3956 def SetTextColour(*args
, **kwargs
):
3957 """SetTextColour(self, Colour colText)"""
3958 return _controls_
.ListItem_SetTextColour(*args
, **kwargs
)
3960 def SetBackgroundColour(*args
, **kwargs
):
3961 """SetBackgroundColour(self, Colour colBack)"""
3962 return _controls_
.ListItem_SetBackgroundColour(*args
, **kwargs
)
3964 def SetFont(*args
, **kwargs
):
3965 """SetFont(self, Font font)"""
3966 return _controls_
.ListItem_SetFont(*args
, **kwargs
)
3968 def GetMask(*args
, **kwargs
):
3969 """GetMask(self) -> long"""
3970 return _controls_
.ListItem_GetMask(*args
, **kwargs
)
3972 def GetId(*args
, **kwargs
):
3973 """GetId(self) -> long"""
3974 return _controls_
.ListItem_GetId(*args
, **kwargs
)
3976 def GetColumn(*args
, **kwargs
):
3977 """GetColumn(self) -> int"""
3978 return _controls_
.ListItem_GetColumn(*args
, **kwargs
)
3980 def GetState(*args
, **kwargs
):
3981 """GetState(self) -> long"""
3982 return _controls_
.ListItem_GetState(*args
, **kwargs
)
3984 def GetText(*args
, **kwargs
):
3985 """GetText(self) -> String"""
3986 return _controls_
.ListItem_GetText(*args
, **kwargs
)
3988 def GetImage(*args
, **kwargs
):
3989 """GetImage(self) -> int"""
3990 return _controls_
.ListItem_GetImage(*args
, **kwargs
)
3992 def GetData(*args
, **kwargs
):
3993 """GetData(self) -> long"""
3994 return _controls_
.ListItem_GetData(*args
, **kwargs
)
3996 def GetWidth(*args
, **kwargs
):
3997 """GetWidth(self) -> int"""
3998 return _controls_
.ListItem_GetWidth(*args
, **kwargs
)
4000 def GetAlign(*args
, **kwargs
):
4001 """GetAlign(self) -> int"""
4002 return _controls_
.ListItem_GetAlign(*args
, **kwargs
)
4004 def GetAttributes(*args
, **kwargs
):
4005 """GetAttributes(self) -> ListItemAttr"""
4006 return _controls_
.ListItem_GetAttributes(*args
, **kwargs
)
4008 def HasAttributes(*args
, **kwargs
):
4009 """HasAttributes(self) -> bool"""
4010 return _controls_
.ListItem_HasAttributes(*args
, **kwargs
)
4012 def GetTextColour(*args
, **kwargs
):
4013 """GetTextColour(self) -> Colour"""
4014 return _controls_
.ListItem_GetTextColour(*args
, **kwargs
)
4016 def GetBackgroundColour(*args
, **kwargs
):
4017 """GetBackgroundColour(self) -> Colour"""
4018 return _controls_
.ListItem_GetBackgroundColour(*args
, **kwargs
)
4020 def GetFont(*args
, **kwargs
):
4021 """GetFont(self) -> Font"""
4022 return _controls_
.ListItem_GetFont(*args
, **kwargs
)
4024 m_mask
= property(_controls_
.ListItem_m_mask_get
, _controls_
.ListItem_m_mask_set
)
4025 m_itemId
= property(_controls_
.ListItem_m_itemId_get
, _controls_
.ListItem_m_itemId_set
)
4026 m_col
= property(_controls_
.ListItem_m_col_get
, _controls_
.ListItem_m_col_set
)
4027 m_state
= property(_controls_
.ListItem_m_state_get
, _controls_
.ListItem_m_state_set
)
4028 m_stateMask
= property(_controls_
.ListItem_m_stateMask_get
, _controls_
.ListItem_m_stateMask_set
)
4029 m_text
= property(_controls_
.ListItem_m_text_get
, _controls_
.ListItem_m_text_set
)
4030 m_image
= property(_controls_
.ListItem_m_image_get
, _controls_
.ListItem_m_image_set
)
4031 m_data
= property(_controls_
.ListItem_m_data_get
, _controls_
.ListItem_m_data_set
)
4032 m_format
= property(_controls_
.ListItem_m_format_get
, _controls_
.ListItem_m_format_set
)
4033 m_width
= property(_controls_
.ListItem_m_width_get
, _controls_
.ListItem_m_width_set
)
4035 class ListItemPtr(ListItem
):
4036 def __init__(self
, this
):
4038 if not hasattr(self
,"thisown"): self
.thisown
= 0
4039 self
.__class
__ = ListItem
4040 _controls_
.ListItem_swigregister(ListItemPtr
)
4042 #---------------------------------------------------------------------------
4044 class ListEvent(_core
.NotifyEvent
):
4046 return "<%s.%s; proxy of C++ wxListEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4047 def __init__(self
, *args
, **kwargs
):
4048 """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> ListEvent"""
4049 newobj
= _controls_
.new_ListEvent(*args
, **kwargs
)
4050 self
.this
= newobj
.this
4053 m_code
= property(_controls_
.ListEvent_m_code_get
, _controls_
.ListEvent_m_code_set
)
4054 m_oldItemIndex
= property(_controls_
.ListEvent_m_oldItemIndex_get
, _controls_
.ListEvent_m_oldItemIndex_set
)
4055 m_itemIndex
= property(_controls_
.ListEvent_m_itemIndex_get
, _controls_
.ListEvent_m_itemIndex_set
)
4056 m_col
= property(_controls_
.ListEvent_m_col_get
, _controls_
.ListEvent_m_col_set
)
4057 m_pointDrag
= property(_controls_
.ListEvent_m_pointDrag_get
, _controls_
.ListEvent_m_pointDrag_set
)
4058 m_item
= property(_controls_
.ListEvent_m_item_get
)
4059 def GetKeyCode(*args
, **kwargs
):
4060 """GetKeyCode(self) -> int"""
4061 return _controls_
.ListEvent_GetKeyCode(*args
, **kwargs
)
4063 GetCode
= GetKeyCode
4064 def GetIndex(*args
, **kwargs
):
4065 """GetIndex(self) -> long"""
4066 return _controls_
.ListEvent_GetIndex(*args
, **kwargs
)
4068 def GetColumn(*args
, **kwargs
):
4069 """GetColumn(self) -> int"""
4070 return _controls_
.ListEvent_GetColumn(*args
, **kwargs
)
4072 def GetPoint(*args
, **kwargs
):
4073 """GetPoint(self) -> Point"""
4074 return _controls_
.ListEvent_GetPoint(*args
, **kwargs
)
4076 GetPosition
= GetPoint
4077 def GetLabel(*args
, **kwargs
):
4078 """GetLabel(self) -> String"""
4079 return _controls_
.ListEvent_GetLabel(*args
, **kwargs
)
4081 def GetText(*args
, **kwargs
):
4082 """GetText(self) -> String"""
4083 return _controls_
.ListEvent_GetText(*args
, **kwargs
)
4085 def GetImage(*args
, **kwargs
):
4086 """GetImage(self) -> int"""
4087 return _controls_
.ListEvent_GetImage(*args
, **kwargs
)
4089 def GetData(*args
, **kwargs
):
4090 """GetData(self) -> long"""
4091 return _controls_
.ListEvent_GetData(*args
, **kwargs
)
4093 def GetMask(*args
, **kwargs
):
4094 """GetMask(self) -> long"""
4095 return _controls_
.ListEvent_GetMask(*args
, **kwargs
)
4097 def GetItem(*args
, **kwargs
):
4098 """GetItem(self) -> ListItem"""
4099 return _controls_
.ListEvent_GetItem(*args
, **kwargs
)
4101 def GetCacheFrom(*args
, **kwargs
):
4102 """GetCacheFrom(self) -> long"""
4103 return _controls_
.ListEvent_GetCacheFrom(*args
, **kwargs
)
4105 def GetCacheTo(*args
, **kwargs
):
4106 """GetCacheTo(self) -> long"""
4107 return _controls_
.ListEvent_GetCacheTo(*args
, **kwargs
)
4109 def IsEditCancelled(*args
, **kwargs
):
4110 """IsEditCancelled(self) -> bool"""
4111 return _controls_
.ListEvent_IsEditCancelled(*args
, **kwargs
)
4113 def SetEditCanceled(*args
, **kwargs
):
4114 """SetEditCanceled(self, bool editCancelled)"""
4115 return _controls_
.ListEvent_SetEditCanceled(*args
, **kwargs
)
4118 class ListEventPtr(ListEvent
):
4119 def __init__(self
, this
):
4121 if not hasattr(self
,"thisown"): self
.thisown
= 0
4122 self
.__class
__ = ListEvent
4123 _controls_
.ListEvent_swigregister(ListEventPtr
)
4125 wxEVT_COMMAND_LIST_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_DRAG
4126 wxEVT_COMMAND_LIST_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_RDRAG
4127 wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
4128 wxEVT_COMMAND_LIST_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_END_LABEL_EDIT
4129 wxEVT_COMMAND_LIST_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ITEM
4130 wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
4131 wxEVT_COMMAND_LIST_GET_INFO
= _controls_
.wxEVT_COMMAND_LIST_GET_INFO
4132 wxEVT_COMMAND_LIST_SET_INFO
= _controls_
.wxEVT_COMMAND_LIST_SET_INFO
4133 wxEVT_COMMAND_LIST_ITEM_SELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_SELECTED
4134 wxEVT_COMMAND_LIST_ITEM_DESELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_DESELECTED
4135 wxEVT_COMMAND_LIST_KEY_DOWN
= _controls_
.wxEVT_COMMAND_LIST_KEY_DOWN
4136 wxEVT_COMMAND_LIST_INSERT_ITEM
= _controls_
.wxEVT_COMMAND_LIST_INSERT_ITEM
4137 wxEVT_COMMAND_LIST_COL_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_CLICK
4138 wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
4139 wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
4140 wxEVT_COMMAND_LIST_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_ACTIVATED
4141 wxEVT_COMMAND_LIST_CACHE_HINT
= _controls_
.wxEVT_COMMAND_LIST_CACHE_HINT
4142 wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
4143 wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
4144 wxEVT_COMMAND_LIST_COL_DRAGGING
= _controls_
.wxEVT_COMMAND_LIST_COL_DRAGGING
4145 wxEVT_COMMAND_LIST_COL_END_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_END_DRAG
4146 wxEVT_COMMAND_LIST_ITEM_FOCUSED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_FOCUSED
4147 EVT_LIST_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG
, 1)
4148 EVT_LIST_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG
, 1)
4149 EVT_LIST_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, 1)
4150 EVT_LIST_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT
, 1)
4151 EVT_LIST_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM
, 1)
4152 EVT_LIST_DELETE_ALL_ITEMS
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, 1)
4153 EVT_LIST_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO
, 1)
4154 EVT_LIST_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO
, 1)
4155 EVT_LIST_ITEM_SELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED
, 1)
4156 EVT_LIST_ITEM_DESELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED
, 1)
4157 EVT_LIST_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN
, 1)
4158 EVT_LIST_INSERT_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM
, 1)
4159 EVT_LIST_COL_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK
, 1)
4160 EVT_LIST_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, 1)
4161 EVT_LIST_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
, 1)
4162 EVT_LIST_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, 1)
4163 EVT_LIST_CACHE_HINT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT
, 1)
4164 EVT_LIST_COL_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
, 1)
4165 EVT_LIST_COL_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
, 1)
4166 EVT_LIST_COL_DRAGGING
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING
, 1)
4167 EVT_LIST_COL_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG
, 1)
4168 EVT_LIST_ITEM_FOCUSED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
, 1)
4170 #---------------------------------------------------------------------------
4172 class ListCtrl(_core
.Control
):
4174 return "<%s.%s; proxy of C++ wxPyListCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4175 def __init__(self
, *args
, **kwargs
):
4177 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4178 Size size=DefaultSize, long style=LC_ICON,
4179 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListCtrl
4181 newobj
= _controls_
.new_ListCtrl(*args
, **kwargs
)
4182 self
.this
= newobj
.this
4185 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, ListCtrl
)
4187 def Create(*args
, **kwargs
):
4189 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4190 Size size=DefaultSize, long style=LC_ICON,
4191 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4193 Do the 2nd phase and create the GUI control.
4195 return _controls_
.ListCtrl_Create(*args
, **kwargs
)
4197 def _setCallbackInfo(*args
, **kwargs
):
4198 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4199 return _controls_
.ListCtrl__setCallbackInfo(*args
, **kwargs
)
4201 def SetForegroundColour(*args
, **kwargs
):
4202 """SetForegroundColour(self, Colour col) -> bool"""
4203 return _controls_
.ListCtrl_SetForegroundColour(*args
, **kwargs
)
4205 def SetBackgroundColour(*args
, **kwargs
):
4206 """SetBackgroundColour(self, Colour col) -> bool"""
4207 return _controls_
.ListCtrl_SetBackgroundColour(*args
, **kwargs
)
4209 def GetColumn(*args
, **kwargs
):
4210 """GetColumn(self, int col) -> ListItem"""
4211 val
= _controls_
.ListCtrl_GetColumn(*args
, **kwargs
)
4212 if val
is not None: val
.thisown
= 1
4215 def SetColumn(*args
, **kwargs
):
4216 """SetColumn(self, int col, ListItem item) -> bool"""
4217 return _controls_
.ListCtrl_SetColumn(*args
, **kwargs
)
4219 def GetColumnWidth(*args
, **kwargs
):
4220 """GetColumnWidth(self, int col) -> int"""
4221 return _controls_
.ListCtrl_GetColumnWidth(*args
, **kwargs
)
4223 def SetColumnWidth(*args
, **kwargs
):
4224 """SetColumnWidth(self, int col, int width) -> bool"""
4225 return _controls_
.ListCtrl_SetColumnWidth(*args
, **kwargs
)
4227 def GetCountPerPage(*args
, **kwargs
):
4228 """GetCountPerPage(self) -> int"""
4229 return _controls_
.ListCtrl_GetCountPerPage(*args
, **kwargs
)
4231 def GetViewRect(*args
, **kwargs
):
4232 """GetViewRect(self) -> Rect"""
4233 return _controls_
.ListCtrl_GetViewRect(*args
, **kwargs
)
4235 def GetEditControl(*args
, **kwargs
):
4236 """GetEditControl(self) -> TextCtrl"""
4237 return _controls_
.ListCtrl_GetEditControl(*args
, **kwargs
)
4239 def GetItem(*args
, **kwargs
):
4240 """GetItem(self, long itemId, int col=0) -> ListItem"""
4241 val
= _controls_
.ListCtrl_GetItem(*args
, **kwargs
)
4242 if val
is not None: val
.thisown
= 1
4245 def SetItem(*args
, **kwargs
):
4246 """SetItem(self, ListItem info) -> bool"""
4247 return _controls_
.ListCtrl_SetItem(*args
, **kwargs
)
4249 def SetStringItem(*args
, **kwargs
):
4250 """SetStringItem(self, long index, int col, String label, int imageId=-1) -> long"""
4251 return _controls_
.ListCtrl_SetStringItem(*args
, **kwargs
)
4253 def GetItemState(*args
, **kwargs
):
4254 """GetItemState(self, long item, long stateMask) -> int"""
4255 return _controls_
.ListCtrl_GetItemState(*args
, **kwargs
)
4257 def SetItemState(*args
, **kwargs
):
4258 """SetItemState(self, long item, long state, long stateMask) -> bool"""
4259 return _controls_
.ListCtrl_SetItemState(*args
, **kwargs
)
4261 def SetItemImage(*args
, **kwargs
):
4262 """SetItemImage(self, long item, int image, int selImage) -> bool"""
4263 return _controls_
.ListCtrl_SetItemImage(*args
, **kwargs
)
4265 def GetItemText(*args
, **kwargs
):
4266 """GetItemText(self, long item) -> String"""
4267 return _controls_
.ListCtrl_GetItemText(*args
, **kwargs
)
4269 def SetItemText(*args
, **kwargs
):
4270 """SetItemText(self, long item, String str)"""
4271 return _controls_
.ListCtrl_SetItemText(*args
, **kwargs
)
4273 def GetItemData(*args
, **kwargs
):
4274 """GetItemData(self, long item) -> long"""
4275 return _controls_
.ListCtrl_GetItemData(*args
, **kwargs
)
4277 def SetItemData(*args
, **kwargs
):
4278 """SetItemData(self, long item, long data) -> bool"""
4279 return _controls_
.ListCtrl_SetItemData(*args
, **kwargs
)
4281 def GetItemPosition(*args
, **kwargs
):
4282 """GetItemPosition(self, long item) -> Point"""
4283 return _controls_
.ListCtrl_GetItemPosition(*args
, **kwargs
)
4285 def GetItemRect(*args
, **kwargs
):
4286 """GetItemRect(self, long item, int code=LIST_RECT_BOUNDS) -> Rect"""
4287 return _controls_
.ListCtrl_GetItemRect(*args
, **kwargs
)
4289 def SetItemPosition(*args
, **kwargs
):
4290 """SetItemPosition(self, long item, Point pos) -> bool"""
4291 return _controls_
.ListCtrl_SetItemPosition(*args
, **kwargs
)
4293 def GetItemCount(*args
, **kwargs
):
4294 """GetItemCount(self) -> int"""
4295 return _controls_
.ListCtrl_GetItemCount(*args
, **kwargs
)
4297 def GetColumnCount(*args
, **kwargs
):
4298 """GetColumnCount(self) -> int"""
4299 return _controls_
.ListCtrl_GetColumnCount(*args
, **kwargs
)
4301 def GetItemSpacing(*args
, **kwargs
):
4302 """GetItemSpacing(self) -> Size"""
4303 return _controls_
.ListCtrl_GetItemSpacing(*args
, **kwargs
)
4305 def GetSelectedItemCount(*args
, **kwargs
):
4306 """GetSelectedItemCount(self) -> int"""
4307 return _controls_
.ListCtrl_GetSelectedItemCount(*args
, **kwargs
)
4309 def GetTextColour(*args
, **kwargs
):
4310 """GetTextColour(self) -> Colour"""
4311 return _controls_
.ListCtrl_GetTextColour(*args
, **kwargs
)
4313 def SetTextColour(*args
, **kwargs
):
4314 """SetTextColour(self, Colour col)"""
4315 return _controls_
.ListCtrl_SetTextColour(*args
, **kwargs
)
4317 def GetTopItem(*args
, **kwargs
):
4318 """GetTopItem(self) -> long"""
4319 return _controls_
.ListCtrl_GetTopItem(*args
, **kwargs
)
4321 def SetSingleStyle(*args
, **kwargs
):
4322 """SetSingleStyle(self, long style, bool add=True)"""
4323 return _controls_
.ListCtrl_SetSingleStyle(*args
, **kwargs
)
4325 def SetWindowStyleFlag(*args
, **kwargs
):
4327 SetWindowStyleFlag(self, long style)
4329 Sets the style of the window. Please note that some styles cannot be
4330 changed after the window creation and that Refresh() might need to be
4331 called after changing the others for the change to take place
4334 return _controls_
.ListCtrl_SetWindowStyleFlag(*args
, **kwargs
)
4336 def GetNextItem(*args
, **kwargs
):
4337 """GetNextItem(self, long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -> long"""
4338 return _controls_
.ListCtrl_GetNextItem(*args
, **kwargs
)
4340 def GetImageList(*args
, **kwargs
):
4341 """GetImageList(self, int which) -> ImageList"""
4342 return _controls_
.ListCtrl_GetImageList(*args
, **kwargs
)
4344 def SetImageList(*args
, **kwargs
):
4345 """SetImageList(self, ImageList imageList, int which)"""
4346 return _controls_
.ListCtrl_SetImageList(*args
, **kwargs
)
4348 def AssignImageList(*args
, **kwargs
):
4349 """AssignImageList(self, ImageList imageList, int which)"""
4350 return _controls_
.ListCtrl_AssignImageList(*args
, **kwargs
)
4352 def InReportView(*args
, **kwargs
):
4353 """InReportView(self) -> bool"""
4354 return _controls_
.ListCtrl_InReportView(*args
, **kwargs
)
4356 def IsVirtual(*args
, **kwargs
):
4357 """IsVirtual(self) -> bool"""
4358 return _controls_
.ListCtrl_IsVirtual(*args
, **kwargs
)
4360 def RefreshItem(*args
, **kwargs
):
4361 """RefreshItem(self, long item)"""
4362 return _controls_
.ListCtrl_RefreshItem(*args
, **kwargs
)
4364 def RefreshItems(*args
, **kwargs
):
4365 """RefreshItems(self, long itemFrom, long itemTo)"""
4366 return _controls_
.ListCtrl_RefreshItems(*args
, **kwargs
)
4368 def Arrange(*args
, **kwargs
):
4369 """Arrange(self, int flag=LIST_ALIGN_DEFAULT) -> bool"""
4370 return _controls_
.ListCtrl_Arrange(*args
, **kwargs
)
4372 def DeleteItem(*args
, **kwargs
):
4373 """DeleteItem(self, long item) -> bool"""
4374 return _controls_
.ListCtrl_DeleteItem(*args
, **kwargs
)
4376 def DeleteAllItems(*args
, **kwargs
):
4377 """DeleteAllItems(self) -> bool"""
4378 return _controls_
.ListCtrl_DeleteAllItems(*args
, **kwargs
)
4380 def DeleteColumn(*args
, **kwargs
):
4381 """DeleteColumn(self, int col) -> bool"""
4382 return _controls_
.ListCtrl_DeleteColumn(*args
, **kwargs
)
4384 def DeleteAllColumns(*args
, **kwargs
):
4385 """DeleteAllColumns(self) -> bool"""
4386 return _controls_
.ListCtrl_DeleteAllColumns(*args
, **kwargs
)
4388 def ClearAll(*args
, **kwargs
):
4389 """ClearAll(self)"""
4390 return _controls_
.ListCtrl_ClearAll(*args
, **kwargs
)
4392 def EditLabel(*args
, **kwargs
):
4393 """EditLabel(self, long item) -> TextCtrl"""
4394 return _controls_
.ListCtrl_EditLabel(*args
, **kwargs
)
4396 def EndEditLabel(*args
, **kwargs
):
4397 """EndEditLabel(self, bool cancel) -> bool"""
4398 return _controls_
.ListCtrl_EndEditLabel(*args
, **kwargs
)
4400 def EnsureVisible(*args
, **kwargs
):
4401 """EnsureVisible(self, long item) -> bool"""
4402 return _controls_
.ListCtrl_EnsureVisible(*args
, **kwargs
)
4404 def FindItem(*args
, **kwargs
):
4405 """FindItem(self, long start, String str, bool partial=False) -> long"""
4406 return _controls_
.ListCtrl_FindItem(*args
, **kwargs
)
4408 def FindItemData(*args
, **kwargs
):
4409 """FindItemData(self, long start, long data) -> long"""
4410 return _controls_
.ListCtrl_FindItemData(*args
, **kwargs
)
4412 def FindItemAtPos(*args
, **kwargs
):
4413 """FindItemAtPos(self, long start, Point pt, int direction) -> long"""
4414 return _controls_
.ListCtrl_FindItemAtPos(*args
, **kwargs
)
4416 def HitTest(*args
, **kwargs
):
4417 """HitTest(Point point) -> (item, where)"""
4418 return _controls_
.ListCtrl_HitTest(*args
, **kwargs
)
4420 def InsertItem(*args
, **kwargs
):
4421 """InsertItem(self, ListItem info) -> long"""
4422 return _controls_
.ListCtrl_InsertItem(*args
, **kwargs
)
4424 def InsertStringItem(*args
, **kwargs
):
4425 """InsertStringItem(self, long index, String label) -> long"""
4426 return _controls_
.ListCtrl_InsertStringItem(*args
, **kwargs
)
4428 def InsertImageItem(*args
, **kwargs
):
4429 """InsertImageItem(self, long index, int imageIndex) -> long"""
4430 return _controls_
.ListCtrl_InsertImageItem(*args
, **kwargs
)
4432 def InsertImageStringItem(*args
, **kwargs
):
4433 """InsertImageStringItem(self, long index, String label, int imageIndex) -> long"""
4434 return _controls_
.ListCtrl_InsertImageStringItem(*args
, **kwargs
)
4436 def InsertColumnInfo(*args
, **kwargs
):
4437 """InsertColumnInfo(self, long col, ListItem info) -> long"""
4438 return _controls_
.ListCtrl_InsertColumnInfo(*args
, **kwargs
)
4440 def InsertColumn(*args
, **kwargs
):
4442 InsertColumn(self, long col, String heading, int format=LIST_FORMAT_LEFT,
4443 int width=-1) -> long
4445 return _controls_
.ListCtrl_InsertColumn(*args
, **kwargs
)
4447 def SetItemCount(*args
, **kwargs
):
4448 """SetItemCount(self, long count)"""
4449 return _controls_
.ListCtrl_SetItemCount(*args
, **kwargs
)
4451 def ScrollList(*args
, **kwargs
):
4452 """ScrollList(self, int dx, int dy) -> bool"""
4453 return _controls_
.ListCtrl_ScrollList(*args
, **kwargs
)
4455 def SetItemTextColour(*args
, **kwargs
):
4456 """SetItemTextColour(self, long item, Colour col)"""
4457 return _controls_
.ListCtrl_SetItemTextColour(*args
, **kwargs
)
4459 def GetItemTextColour(*args
, **kwargs
):
4460 """GetItemTextColour(self, long item) -> Colour"""
4461 return _controls_
.ListCtrl_GetItemTextColour(*args
, **kwargs
)
4463 def SetItemBackgroundColour(*args
, **kwargs
):
4464 """SetItemBackgroundColour(self, long item, Colour col)"""
4465 return _controls_
.ListCtrl_SetItemBackgroundColour(*args
, **kwargs
)
4467 def GetItemBackgroundColour(*args
, **kwargs
):
4468 """GetItemBackgroundColour(self, long item) -> Colour"""
4469 return _controls_
.ListCtrl_GetItemBackgroundColour(*args
, **kwargs
)
4473 def Select(self
, idx
, on
=1):
4474 '''[de]select an item'''
4475 if on
: state
= wx
.LIST_STATE_SELECTED
4477 self
.SetItemState(idx
, state
, wx
.LIST_STATE_SELECTED
)
4479 def Focus(self
, idx
):
4480 '''Focus and show the given item'''
4481 self
.SetItemState(idx
, wx
.LIST_STATE_FOCUSED
, wx
.LIST_STATE_FOCUSED
)
4482 self
.EnsureVisible(idx
)
4484 def GetFocusedItem(self
):
4485 '''get the currently focused item or -1 if none'''
4486 return self
.GetNextItem(-1, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_FOCUSED
)
4488 def GetFirstSelected(self
, *args
):
4489 '''return first selected item, or -1 when none'''
4490 return self
.GetNextSelected(-1)
4492 def GetNextSelected(self
, item
):
4493 '''return subsequent selected items, or -1 when no more'''
4494 return self
.GetNextItem(item
, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_SELECTED
)
4496 def IsSelected(self
, idx
):
4497 '''return True if the item is selected'''
4498 return self
.GetItemState(idx
, wx
.LIST_STATE_SELECTED
) != 0
4500 def SetColumnImage(self
, col
, image
):
4501 item
= self
.GetColumn(col
)
4502 # preserve all other attributes too
4503 item
.SetMask( wx
.LIST_MASK_STATE |
4505 wx
.LIST_MASK_IMAGE |
4508 wx
.LIST_MASK_WIDTH |
4509 wx
.LIST_MASK_FORMAT
)
4510 item
.SetImage(image
)
4511 self
.SetColumn(col
, item
)
4513 def ClearColumnImage(self
, col
):
4514 self
.SetColumnImage(col
, -1)
4516 def Append(self
, entry
):
4517 '''Append an item to the list control. The entry parameter should be a
4518 sequence with an item for each column'''
4524 pos
= self
.GetItemCount()
4525 self
.InsertStringItem(pos
, cvtfunc(entry
[0]))
4526 for i
in range(1, len(entry
)):
4527 self
.SetStringItem(pos
, i
, cvtfunc(entry
[i
]))
4530 def SortItems(*args
, **kwargs
):
4531 """SortItems(self, PyObject func) -> bool"""
4532 return _controls_
.ListCtrl_SortItems(*args
, **kwargs
)
4534 def GetMainWindow(*args
, **kwargs
):
4535 """GetMainWindow(self) -> Window"""
4536 return _controls_
.ListCtrl_GetMainWindow(*args
, **kwargs
)
4538 def GetClassDefaultAttributes(*args
, **kwargs
):
4540 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4542 Get the default attributes for this class. This is useful if you want
4543 to use the same font or colour in your own control as in a standard
4544 control -- which is a much better idea than hard coding specific
4545 colours or fonts which might look completely out of place on the
4546 user's system, especially if it uses themes.
4548 The variant parameter is only relevant under Mac currently and is
4549 ignore under other platforms. Under Mac, it will change the size of
4550 the returned font. See `wx.Window.SetWindowVariant` for more about
4553 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4555 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
4557 class ListCtrlPtr(ListCtrl
):
4558 def __init__(self
, this
):
4560 if not hasattr(self
,"thisown"): self
.thisown
= 0
4561 self
.__class
__ = ListCtrl
4562 _controls_
.ListCtrl_swigregister(ListCtrlPtr
)
4564 def PreListCtrl(*args
, **kwargs
):
4565 """PreListCtrl() -> ListCtrl"""
4566 val
= _controls_
.new_PreListCtrl(*args
, **kwargs
)
4570 def ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
4572 ListCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4574 Get the default attributes for this class. This is useful if you want
4575 to use the same font or colour in your own control as in a standard
4576 control -- which is a much better idea than hard coding specific
4577 colours or fonts which might look completely out of place on the
4578 user's system, especially if it uses themes.
4580 The variant parameter is only relevant under Mac currently and is
4581 ignore under other platforms. Under Mac, it will change the size of
4582 the returned font. See `wx.Window.SetWindowVariant` for more about
4585 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4587 #---------------------------------------------------------------------------
4589 class ListView(ListCtrl
):
4591 return "<%s.%s; proxy of C++ wxListView instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4592 def __init__(self
, *args
, **kwargs
):
4594 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4595 Size size=DefaultSize, long style=LC_REPORT,
4596 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListView
4598 newobj
= _controls_
.new_ListView(*args
, **kwargs
)
4599 self
.this
= newobj
.this
4602 self
._setOORInfo
(self
)
4604 def Create(*args
, **kwargs
):
4606 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4607 Size size=DefaultSize, long style=LC_REPORT,
4608 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4610 Do the 2nd phase and create the GUI control.
4612 return _controls_
.ListView_Create(*args
, **kwargs
)
4614 def Select(*args
, **kwargs
):
4615 """Select(self, long n, bool on=True)"""
4616 return _controls_
.ListView_Select(*args
, **kwargs
)
4618 def Focus(*args
, **kwargs
):
4619 """Focus(self, long index)"""
4620 return _controls_
.ListView_Focus(*args
, **kwargs
)
4622 def GetFocusedItem(*args
, **kwargs
):
4623 """GetFocusedItem(self) -> long"""
4624 return _controls_
.ListView_GetFocusedItem(*args
, **kwargs
)
4626 def GetNextSelected(*args
, **kwargs
):
4627 """GetNextSelected(self, long item) -> long"""
4628 return _controls_
.ListView_GetNextSelected(*args
, **kwargs
)
4630 def GetFirstSelected(*args
, **kwargs
):
4631 """GetFirstSelected(self) -> long"""
4632 return _controls_
.ListView_GetFirstSelected(*args
, **kwargs
)
4634 def IsSelected(*args
, **kwargs
):
4635 """IsSelected(self, long index) -> bool"""
4636 return _controls_
.ListView_IsSelected(*args
, **kwargs
)
4638 def SetColumnImage(*args
, **kwargs
):
4639 """SetColumnImage(self, int col, int image)"""
4640 return _controls_
.ListView_SetColumnImage(*args
, **kwargs
)
4642 def ClearColumnImage(*args
, **kwargs
):
4643 """ClearColumnImage(self, int col)"""
4644 return _controls_
.ListView_ClearColumnImage(*args
, **kwargs
)
4647 class ListViewPtr(ListView
):
4648 def __init__(self
, this
):
4650 if not hasattr(self
,"thisown"): self
.thisown
= 0
4651 self
.__class
__ = ListView
4652 _controls_
.ListView_swigregister(ListViewPtr
)
4654 def PreListView(*args
, **kwargs
):
4655 """PreListView() -> ListView"""
4656 val
= _controls_
.new_PreListView(*args
, **kwargs
)
4660 #---------------------------------------------------------------------------
4662 TR_NO_BUTTONS
= _controls_
.TR_NO_BUTTONS
4663 TR_HAS_BUTTONS
= _controls_
.TR_HAS_BUTTONS
4664 TR_NO_LINES
= _controls_
.TR_NO_LINES
4665 TR_LINES_AT_ROOT
= _controls_
.TR_LINES_AT_ROOT
4666 TR_SINGLE
= _controls_
.TR_SINGLE
4667 TR_MULTIPLE
= _controls_
.TR_MULTIPLE
4668 TR_EXTENDED
= _controls_
.TR_EXTENDED
4669 TR_HAS_VARIABLE_ROW_HEIGHT
= _controls_
.TR_HAS_VARIABLE_ROW_HEIGHT
4670 TR_EDIT_LABELS
= _controls_
.TR_EDIT_LABELS
4671 TR_HIDE_ROOT
= _controls_
.TR_HIDE_ROOT
4672 TR_ROW_LINES
= _controls_
.TR_ROW_LINES
4673 TR_FULL_ROW_HIGHLIGHT
= _controls_
.TR_FULL_ROW_HIGHLIGHT
4674 TR_DEFAULT_STYLE
= _controls_
.TR_DEFAULT_STYLE
4675 TR_TWIST_BUTTONS
= _controls_
.TR_TWIST_BUTTONS
4676 TR_MAC_BUTTONS
= _controls_
.TR_MAC_BUTTONS
4677 TR_AQUA_BUTTONS
= _controls_
.TR_AQUA_BUTTONS
4678 TreeItemIcon_Normal
= _controls_
.TreeItemIcon_Normal
4679 TreeItemIcon_Selected
= _controls_
.TreeItemIcon_Selected
4680 TreeItemIcon_Expanded
= _controls_
.TreeItemIcon_Expanded
4681 TreeItemIcon_SelectedExpanded
= _controls_
.TreeItemIcon_SelectedExpanded
4682 TreeItemIcon_Max
= _controls_
.TreeItemIcon_Max
4683 TREE_HITTEST_ABOVE
= _controls_
.TREE_HITTEST_ABOVE
4684 TREE_HITTEST_BELOW
= _controls_
.TREE_HITTEST_BELOW
4685 TREE_HITTEST_NOWHERE
= _controls_
.TREE_HITTEST_NOWHERE
4686 TREE_HITTEST_ONITEMBUTTON
= _controls_
.TREE_HITTEST_ONITEMBUTTON
4687 TREE_HITTEST_ONITEMICON
= _controls_
.TREE_HITTEST_ONITEMICON
4688 TREE_HITTEST_ONITEMINDENT
= _controls_
.TREE_HITTEST_ONITEMINDENT
4689 TREE_HITTEST_ONITEMLABEL
= _controls_
.TREE_HITTEST_ONITEMLABEL
4690 TREE_HITTEST_ONITEMRIGHT
= _controls_
.TREE_HITTEST_ONITEMRIGHT
4691 TREE_HITTEST_ONITEMSTATEICON
= _controls_
.TREE_HITTEST_ONITEMSTATEICON
4692 TREE_HITTEST_TOLEFT
= _controls_
.TREE_HITTEST_TOLEFT
4693 TREE_HITTEST_TORIGHT
= _controls_
.TREE_HITTEST_TORIGHT
4694 TREE_HITTEST_ONITEMUPPERPART
= _controls_
.TREE_HITTEST_ONITEMUPPERPART
4695 TREE_HITTEST_ONITEMLOWERPART
= _controls_
.TREE_HITTEST_ONITEMLOWERPART
4696 TREE_HITTEST_ONITEM
= _controls_
.TREE_HITTEST_ONITEM
4697 #---------------------------------------------------------------------------
4699 class TreeItemId(object):
4701 return "<%s.%s; proxy of C++ wxTreeItemId instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4702 def __init__(self
, *args
, **kwargs
):
4703 """__init__(self) -> TreeItemId"""
4704 newobj
= _controls_
.new_TreeItemId(*args
, **kwargs
)
4705 self
.this
= newobj
.this
4708 def __del__(self
, destroy
=_controls_
.delete_TreeItemId
):
4711 if self
.thisown
: destroy(self
)
4714 def IsOk(*args
, **kwargs
):
4715 """IsOk(self) -> bool"""
4716 return _controls_
.TreeItemId_IsOk(*args
, **kwargs
)
4718 def __eq__(*args
, **kwargs
):
4719 """__eq__(self, TreeItemId other) -> bool"""
4720 return _controls_
.TreeItemId___eq__(*args
, **kwargs
)
4722 def __ne__(*args
, **kwargs
):
4723 """__ne__(self, TreeItemId other) -> bool"""
4724 return _controls_
.TreeItemId___ne__(*args
, **kwargs
)
4726 m_pItem
= property(_controls_
.TreeItemId_m_pItem_get
, _controls_
.TreeItemId_m_pItem_set
)
4728 def __nonzero__(self
): return self
.IsOk()
4730 class TreeItemIdPtr(TreeItemId
):
4731 def __init__(self
, this
):
4733 if not hasattr(self
,"thisown"): self
.thisown
= 0
4734 self
.__class
__ = TreeItemId
4735 _controls_
.TreeItemId_swigregister(TreeItemIdPtr
)
4736 TreeCtrlNameStr
= cvar
.TreeCtrlNameStr
4738 class TreeItemData(object):
4740 return "<%s.%s; proxy of C++ wxPyTreeItemData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4741 def __init__(self
, *args
, **kwargs
):
4742 """__init__(self, PyObject obj=None) -> TreeItemData"""
4743 newobj
= _controls_
.new_TreeItemData(*args
, **kwargs
)
4744 self
.this
= newobj
.this
4747 def GetData(*args
, **kwargs
):
4748 """GetData(self) -> PyObject"""
4749 return _controls_
.TreeItemData_GetData(*args
, **kwargs
)
4751 def SetData(*args
, **kwargs
):
4752 """SetData(self, PyObject obj)"""
4753 return _controls_
.TreeItemData_SetData(*args
, **kwargs
)
4755 def GetId(*args
, **kwargs
):
4756 """GetId(self) -> TreeItemId"""
4757 return _controls_
.TreeItemData_GetId(*args
, **kwargs
)
4759 def SetId(*args
, **kwargs
):
4760 """SetId(self, TreeItemId id)"""
4761 return _controls_
.TreeItemData_SetId(*args
, **kwargs
)
4763 def Destroy(*args
, **kwargs
):
4765 return _controls_
.TreeItemData_Destroy(*args
, **kwargs
)
4768 class TreeItemDataPtr(TreeItemData
):
4769 def __init__(self
, this
):
4771 if not hasattr(self
,"thisown"): self
.thisown
= 0
4772 self
.__class
__ = TreeItemData
4773 _controls_
.TreeItemData_swigregister(TreeItemDataPtr
)
4775 #---------------------------------------------------------------------------
4777 wxEVT_COMMAND_TREE_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_DRAG
4778 wxEVT_COMMAND_TREE_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_RDRAG
4779 wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
4780 wxEVT_COMMAND_TREE_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_END_LABEL_EDIT
4781 wxEVT_COMMAND_TREE_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_TREE_DELETE_ITEM
4782 wxEVT_COMMAND_TREE_GET_INFO
= _controls_
.wxEVT_COMMAND_TREE_GET_INFO
4783 wxEVT_COMMAND_TREE_SET_INFO
= _controls_
.wxEVT_COMMAND_TREE_SET_INFO
4784 wxEVT_COMMAND_TREE_ITEM_EXPANDED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDED
4785 wxEVT_COMMAND_TREE_ITEM_EXPANDING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDING
4786 wxEVT_COMMAND_TREE_ITEM_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSED
4787 wxEVT_COMMAND_TREE_ITEM_COLLAPSING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSING
4788 wxEVT_COMMAND_TREE_SEL_CHANGED
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGED
4789 wxEVT_COMMAND_TREE_SEL_CHANGING
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGING
4790 wxEVT_COMMAND_TREE_KEY_DOWN
= _controls_
.wxEVT_COMMAND_TREE_KEY_DOWN
4791 wxEVT_COMMAND_TREE_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_ACTIVATED
4792 wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
4793 wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
4794 wxEVT_COMMAND_TREE_END_DRAG
= _controls_
.wxEVT_COMMAND_TREE_END_DRAG
4795 wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
4796 wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
= _controls_
.wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
4797 EVT_TREE_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG
, 1)
4798 EVT_TREE_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG
, 1)
4799 EVT_TREE_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, 1)
4800 EVT_TREE_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, 1)
4801 EVT_TREE_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM
, 1)
4802 EVT_TREE_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO
, 1)
4803 EVT_TREE_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO
, 1)
4804 EVT_TREE_ITEM_EXPANDED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED
, 1)
4805 EVT_TREE_ITEM_EXPANDING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, 1)
4806 EVT_TREE_ITEM_COLLAPSED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, 1)
4807 EVT_TREE_ITEM_COLLAPSING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, 1)
4808 EVT_TREE_SEL_CHANGED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED
, 1)
4809 EVT_TREE_SEL_CHANGING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING
, 1)
4810 EVT_TREE_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN
, 1)
4811 EVT_TREE_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, 1)
4812 EVT_TREE_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, 1)
4813 EVT_TREE_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, 1)
4814 EVT_TREE_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG
, 1)
4815 EVT_TREE_STATE_IMAGE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
, 1)
4816 EVT_TREE_ITEM_GETTOOLTIP
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
, 1)
4818 class TreeEvent(_core
.NotifyEvent
):
4820 return "<%s.%s; proxy of C++ wxTreeEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4821 def __init__(self
, *args
, **kwargs
):
4822 """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> TreeEvent"""
4823 newobj
= _controls_
.new_TreeEvent(*args
, **kwargs
)
4824 self
.this
= newobj
.this
4827 def GetItem(*args
, **kwargs
):
4828 """GetItem(self) -> TreeItemId"""
4829 return _controls_
.TreeEvent_GetItem(*args
, **kwargs
)
4831 def SetItem(*args
, **kwargs
):
4832 """SetItem(self, TreeItemId item)"""
4833 return _controls_
.TreeEvent_SetItem(*args
, **kwargs
)
4835 def GetOldItem(*args
, **kwargs
):
4836 """GetOldItem(self) -> TreeItemId"""
4837 return _controls_
.TreeEvent_GetOldItem(*args
, **kwargs
)
4839 def SetOldItem(*args
, **kwargs
):
4840 """SetOldItem(self, TreeItemId item)"""
4841 return _controls_
.TreeEvent_SetOldItem(*args
, **kwargs
)
4843 def GetPoint(*args
, **kwargs
):
4844 """GetPoint(self) -> Point"""
4845 return _controls_
.TreeEvent_GetPoint(*args
, **kwargs
)
4847 def SetPoint(*args
, **kwargs
):
4848 """SetPoint(self, Point pt)"""
4849 return _controls_
.TreeEvent_SetPoint(*args
, **kwargs
)
4851 def GetKeyEvent(*args
, **kwargs
):
4852 """GetKeyEvent(self) -> KeyEvent"""
4853 return _controls_
.TreeEvent_GetKeyEvent(*args
, **kwargs
)
4855 def GetKeyCode(*args
, **kwargs
):
4856 """GetKeyCode(self) -> int"""
4857 return _controls_
.TreeEvent_GetKeyCode(*args
, **kwargs
)
4859 def SetKeyEvent(*args
, **kwargs
):
4860 """SetKeyEvent(self, KeyEvent evt)"""
4861 return _controls_
.TreeEvent_SetKeyEvent(*args
, **kwargs
)
4863 def GetLabel(*args
, **kwargs
):
4864 """GetLabel(self) -> String"""
4865 return _controls_
.TreeEvent_GetLabel(*args
, **kwargs
)
4867 def SetLabel(*args
, **kwargs
):
4868 """SetLabel(self, String label)"""
4869 return _controls_
.TreeEvent_SetLabel(*args
, **kwargs
)
4871 def IsEditCancelled(*args
, **kwargs
):
4872 """IsEditCancelled(self) -> bool"""
4873 return _controls_
.TreeEvent_IsEditCancelled(*args
, **kwargs
)
4875 def SetEditCanceled(*args
, **kwargs
):
4876 """SetEditCanceled(self, bool editCancelled)"""
4877 return _controls_
.TreeEvent_SetEditCanceled(*args
, **kwargs
)
4879 def SetToolTip(*args
, **kwargs
):
4880 """SetToolTip(self, String toolTip)"""
4881 return _controls_
.TreeEvent_SetToolTip(*args
, **kwargs
)
4884 class TreeEventPtr(TreeEvent
):
4885 def __init__(self
, this
):
4887 if not hasattr(self
,"thisown"): self
.thisown
= 0
4888 self
.__class
__ = TreeEvent
4889 _controls_
.TreeEvent_swigregister(TreeEventPtr
)
4891 #---------------------------------------------------------------------------
4893 class TreeCtrl(_core
.Control
):
4895 return "<%s.%s; proxy of C++ wxPyTreeCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4896 def __init__(self
, *args
, **kwargs
):
4898 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4899 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
4900 Validator validator=DefaultValidator,
4901 String name=TreeCtrlNameStr) -> TreeCtrl
4903 newobj
= _controls_
.new_TreeCtrl(*args
, **kwargs
)
4904 self
.this
= newobj
.this
4907 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, TreeCtrl
)
4909 def Create(*args
, **kwargs
):
4911 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4912 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
4913 Validator validator=DefaultValidator,
4914 String name=TreeCtrlNameStr) -> bool
4916 Do the 2nd phase and create the GUI control.
4918 return _controls_
.TreeCtrl_Create(*args
, **kwargs
)
4920 def _setCallbackInfo(*args
, **kwargs
):
4921 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4922 return _controls_
.TreeCtrl__setCallbackInfo(*args
, **kwargs
)
4924 def GetCount(*args
, **kwargs
):
4925 """GetCount(self) -> size_t"""
4926 return _controls_
.TreeCtrl_GetCount(*args
, **kwargs
)
4928 def GetIndent(*args
, **kwargs
):
4929 """GetIndent(self) -> unsigned int"""
4930 return _controls_
.TreeCtrl_GetIndent(*args
, **kwargs
)
4932 def SetIndent(*args
, **kwargs
):
4933 """SetIndent(self, unsigned int indent)"""
4934 return _controls_
.TreeCtrl_SetIndent(*args
, **kwargs
)
4936 def GetSpacing(*args
, **kwargs
):
4937 """GetSpacing(self) -> unsigned int"""
4938 return _controls_
.TreeCtrl_GetSpacing(*args
, **kwargs
)
4940 def SetSpacing(*args
, **kwargs
):
4941 """SetSpacing(self, unsigned int spacing)"""
4942 return _controls_
.TreeCtrl_SetSpacing(*args
, **kwargs
)
4944 def GetImageList(*args
, **kwargs
):
4945 """GetImageList(self) -> ImageList"""
4946 return _controls_
.TreeCtrl_GetImageList(*args
, **kwargs
)
4948 def GetStateImageList(*args
, **kwargs
):
4949 """GetStateImageList(self) -> ImageList"""
4950 return _controls_
.TreeCtrl_GetStateImageList(*args
, **kwargs
)
4952 def SetImageList(*args
, **kwargs
):
4953 """SetImageList(self, ImageList imageList)"""
4954 return _controls_
.TreeCtrl_SetImageList(*args
, **kwargs
)
4956 def SetStateImageList(*args
, **kwargs
):
4957 """SetStateImageList(self, ImageList imageList)"""
4958 return _controls_
.TreeCtrl_SetStateImageList(*args
, **kwargs
)
4960 def AssignImageList(*args
, **kwargs
):
4961 """AssignImageList(self, ImageList imageList)"""
4962 return _controls_
.TreeCtrl_AssignImageList(*args
, **kwargs
)
4964 def AssignStateImageList(*args
, **kwargs
):
4965 """AssignStateImageList(self, ImageList imageList)"""
4966 return _controls_
.TreeCtrl_AssignStateImageList(*args
, **kwargs
)
4968 def GetItemText(*args
, **kwargs
):
4969 """GetItemText(self, TreeItemId item) -> String"""
4970 return _controls_
.TreeCtrl_GetItemText(*args
, **kwargs
)
4972 def GetItemImage(*args
, **kwargs
):
4973 """GetItemImage(self, TreeItemId item, int which=TreeItemIcon_Normal) -> int"""
4974 return _controls_
.TreeCtrl_GetItemImage(*args
, **kwargs
)
4976 def GetItemData(*args
, **kwargs
):
4977 """GetItemData(self, TreeItemId item) -> TreeItemData"""
4978 return _controls_
.TreeCtrl_GetItemData(*args
, **kwargs
)
4980 def GetItemPyData(*args
, **kwargs
):
4981 """GetItemPyData(self, TreeItemId item) -> PyObject"""
4982 return _controls_
.TreeCtrl_GetItemPyData(*args
, **kwargs
)
4984 GetPyData
= GetItemPyData
4985 def GetItemTextColour(*args
, **kwargs
):
4986 """GetItemTextColour(self, TreeItemId item) -> Colour"""
4987 return _controls_
.TreeCtrl_GetItemTextColour(*args
, **kwargs
)
4989 def GetItemBackgroundColour(*args
, **kwargs
):
4990 """GetItemBackgroundColour(self, TreeItemId item) -> Colour"""
4991 return _controls_
.TreeCtrl_GetItemBackgroundColour(*args
, **kwargs
)
4993 def GetItemFont(*args
, **kwargs
):
4994 """GetItemFont(self, TreeItemId item) -> Font"""
4995 return _controls_
.TreeCtrl_GetItemFont(*args
, **kwargs
)
4997 def SetItemText(*args
, **kwargs
):
4998 """SetItemText(self, TreeItemId item, String text)"""
4999 return _controls_
.TreeCtrl_SetItemText(*args
, **kwargs
)
5001 def SetItemImage(*args
, **kwargs
):
5002 """SetItemImage(self, TreeItemId item, int image, int which=TreeItemIcon_Normal)"""
5003 return _controls_
.TreeCtrl_SetItemImage(*args
, **kwargs
)
5005 def SetItemData(*args
, **kwargs
):
5006 """SetItemData(self, TreeItemId item, TreeItemData data)"""
5007 return _controls_
.TreeCtrl_SetItemData(*args
, **kwargs
)
5009 def SetItemPyData(*args
, **kwargs
):
5010 """SetItemPyData(self, TreeItemId item, PyObject obj)"""
5011 return _controls_
.TreeCtrl_SetItemPyData(*args
, **kwargs
)
5013 SetPyData
= SetItemPyData
5014 def SetItemHasChildren(*args
, **kwargs
):
5015 """SetItemHasChildren(self, TreeItemId item, bool has=True)"""
5016 return _controls_
.TreeCtrl_SetItemHasChildren(*args
, **kwargs
)
5018 def SetItemBold(*args
, **kwargs
):
5019 """SetItemBold(self, TreeItemId item, bool bold=True)"""
5020 return _controls_
.TreeCtrl_SetItemBold(*args
, **kwargs
)
5022 def SetItemDropHighlight(*args
, **kwargs
):
5023 """SetItemDropHighlight(self, TreeItemId item, bool highlight=True)"""
5024 return _controls_
.TreeCtrl_SetItemDropHighlight(*args
, **kwargs
)
5026 def SetItemTextColour(*args
, **kwargs
):
5027 """SetItemTextColour(self, TreeItemId item, Colour col)"""
5028 return _controls_
.TreeCtrl_SetItemTextColour(*args
, **kwargs
)
5030 def SetItemBackgroundColour(*args
, **kwargs
):
5031 """SetItemBackgroundColour(self, TreeItemId item, Colour col)"""
5032 return _controls_
.TreeCtrl_SetItemBackgroundColour(*args
, **kwargs
)
5034 def SetItemFont(*args
, **kwargs
):
5035 """SetItemFont(self, TreeItemId item, Font font)"""
5036 return _controls_
.TreeCtrl_SetItemFont(*args
, **kwargs
)
5038 def IsVisible(*args
, **kwargs
):
5039 """IsVisible(self, TreeItemId item) -> bool"""
5040 return _controls_
.TreeCtrl_IsVisible(*args
, **kwargs
)
5042 def ItemHasChildren(*args
, **kwargs
):
5043 """ItemHasChildren(self, TreeItemId item) -> bool"""
5044 return _controls_
.TreeCtrl_ItemHasChildren(*args
, **kwargs
)
5046 def IsExpanded(*args
, **kwargs
):
5047 """IsExpanded(self, TreeItemId item) -> bool"""
5048 return _controls_
.TreeCtrl_IsExpanded(*args
, **kwargs
)
5050 def IsSelected(*args
, **kwargs
):
5051 """IsSelected(self, TreeItemId item) -> bool"""
5052 return _controls_
.TreeCtrl_IsSelected(*args
, **kwargs
)
5054 def IsBold(*args
, **kwargs
):
5055 """IsBold(self, TreeItemId item) -> bool"""
5056 return _controls_
.TreeCtrl_IsBold(*args
, **kwargs
)
5058 def GetChildrenCount(*args
, **kwargs
):
5059 """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t"""
5060 return _controls_
.TreeCtrl_GetChildrenCount(*args
, **kwargs
)
5062 def GetRootItem(*args
, **kwargs
):
5063 """GetRootItem(self) -> TreeItemId"""
5064 return _controls_
.TreeCtrl_GetRootItem(*args
, **kwargs
)
5066 def GetSelection(*args
, **kwargs
):
5067 """GetSelection(self) -> TreeItemId"""
5068 return _controls_
.TreeCtrl_GetSelection(*args
, **kwargs
)
5070 def GetSelections(*args
, **kwargs
):
5071 """GetSelections(self) -> PyObject"""
5072 return _controls_
.TreeCtrl_GetSelections(*args
, **kwargs
)
5074 def GetItemParent(*args
, **kwargs
):
5075 """GetItemParent(self, TreeItemId item) -> TreeItemId"""
5076 return _controls_
.TreeCtrl_GetItemParent(*args
, **kwargs
)
5078 def GetFirstChild(*args
, **kwargs
):
5079 """GetFirstChild(self, TreeItemId item) -> PyObject"""
5080 return _controls_
.TreeCtrl_GetFirstChild(*args
, **kwargs
)
5082 def GetNextChild(*args
, **kwargs
):
5083 """GetNextChild(self, TreeItemId item, void cookie) -> PyObject"""
5084 return _controls_
.TreeCtrl_GetNextChild(*args
, **kwargs
)
5086 def GetLastChild(*args
, **kwargs
):
5087 """GetLastChild(self, TreeItemId item) -> TreeItemId"""
5088 return _controls_
.TreeCtrl_GetLastChild(*args
, **kwargs
)
5090 def GetNextSibling(*args
, **kwargs
):
5091 """GetNextSibling(self, TreeItemId item) -> TreeItemId"""
5092 return _controls_
.TreeCtrl_GetNextSibling(*args
, **kwargs
)
5094 def GetPrevSibling(*args
, **kwargs
):
5095 """GetPrevSibling(self, TreeItemId item) -> TreeItemId"""
5096 return _controls_
.TreeCtrl_GetPrevSibling(*args
, **kwargs
)
5098 def GetFirstVisibleItem(*args
, **kwargs
):
5099 """GetFirstVisibleItem(self) -> TreeItemId"""
5100 return _controls_
.TreeCtrl_GetFirstVisibleItem(*args
, **kwargs
)
5102 def GetNextVisible(*args
, **kwargs
):
5103 """GetNextVisible(self, TreeItemId item) -> TreeItemId"""
5104 return _controls_
.TreeCtrl_GetNextVisible(*args
, **kwargs
)
5106 def GetPrevVisible(*args
, **kwargs
):
5107 """GetPrevVisible(self, TreeItemId item) -> TreeItemId"""
5108 return _controls_
.TreeCtrl_GetPrevVisible(*args
, **kwargs
)
5110 def AddRoot(*args
, **kwargs
):
5111 """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId"""
5112 return _controls_
.TreeCtrl_AddRoot(*args
, **kwargs
)
5114 def PrependItem(*args
, **kwargs
):
5116 PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5117 TreeItemData data=None) -> TreeItemId
5119 return _controls_
.TreeCtrl_PrependItem(*args
, **kwargs
)
5121 def InsertItem(*args
, **kwargs
):
5123 InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text,
5124 int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5126 return _controls_
.TreeCtrl_InsertItem(*args
, **kwargs
)
5128 def InsertItemBefore(*args
, **kwargs
):
5130 InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1,
5131 int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5133 return _controls_
.TreeCtrl_InsertItemBefore(*args
, **kwargs
)
5135 def AppendItem(*args
, **kwargs
):
5137 AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5138 TreeItemData data=None) -> TreeItemId
5140 return _controls_
.TreeCtrl_AppendItem(*args
, **kwargs
)
5142 def Delete(*args
, **kwargs
):
5143 """Delete(self, TreeItemId item)"""
5144 return _controls_
.TreeCtrl_Delete(*args
, **kwargs
)
5146 def DeleteChildren(*args
, **kwargs
):
5147 """DeleteChildren(self, TreeItemId item)"""
5148 return _controls_
.TreeCtrl_DeleteChildren(*args
, **kwargs
)
5150 def DeleteAllItems(*args
, **kwargs
):
5151 """DeleteAllItems(self)"""
5152 return _controls_
.TreeCtrl_DeleteAllItems(*args
, **kwargs
)
5154 def Expand(*args
, **kwargs
):
5155 """Expand(self, TreeItemId item)"""
5156 return _controls_
.TreeCtrl_Expand(*args
, **kwargs
)
5158 def Collapse(*args
, **kwargs
):
5159 """Collapse(self, TreeItemId item)"""
5160 return _controls_
.TreeCtrl_Collapse(*args
, **kwargs
)
5162 def CollapseAndReset(*args
, **kwargs
):
5163 """CollapseAndReset(self, TreeItemId item)"""
5164 return _controls_
.TreeCtrl_CollapseAndReset(*args
, **kwargs
)
5166 def Toggle(*args
, **kwargs
):
5167 """Toggle(self, TreeItemId item)"""
5168 return _controls_
.TreeCtrl_Toggle(*args
, **kwargs
)
5170 def Unselect(*args
, **kwargs
):
5171 """Unselect(self)"""
5172 return _controls_
.TreeCtrl_Unselect(*args
, **kwargs
)
5174 def UnselectItem(*args
, **kwargs
):
5175 """UnselectItem(self, TreeItemId item)"""
5176 return _controls_
.TreeCtrl_UnselectItem(*args
, **kwargs
)
5178 def UnselectAll(*args
, **kwargs
):
5179 """UnselectAll(self)"""
5180 return _controls_
.TreeCtrl_UnselectAll(*args
, **kwargs
)
5182 def SelectItem(*args
, **kwargs
):
5183 """SelectItem(self, TreeItemId item, bool select=True)"""
5184 return _controls_
.TreeCtrl_SelectItem(*args
, **kwargs
)
5186 def ToggleItemSelection(*args
, **kwargs
):
5187 """ToggleItemSelection(self, TreeItemId item)"""
5188 return _controls_
.TreeCtrl_ToggleItemSelection(*args
, **kwargs
)
5190 def EnsureVisible(*args
, **kwargs
):
5191 """EnsureVisible(self, TreeItemId item)"""
5192 return _controls_
.TreeCtrl_EnsureVisible(*args
, **kwargs
)
5194 def ScrollTo(*args
, **kwargs
):
5195 """ScrollTo(self, TreeItemId item)"""
5196 return _controls_
.TreeCtrl_ScrollTo(*args
, **kwargs
)
5198 def EditLabel(*args
, **kwargs
):
5199 """EditLabel(self, TreeItemId item)"""
5200 return _controls_
.TreeCtrl_EditLabel(*args
, **kwargs
)
5202 def GetEditControl(*args
, **kwargs
):
5203 """GetEditControl(self) -> TextCtrl"""
5204 return _controls_
.TreeCtrl_GetEditControl(*args
, **kwargs
)
5206 def EndEditLabel(*args
, **kwargs
):
5207 """EndEditLabel(self, TreeItemId item, bool discardChanges=False)"""
5208 return _controls_
.TreeCtrl_EndEditLabel(*args
, **kwargs
)
5210 def SortChildren(*args
, **kwargs
):
5211 """SortChildren(self, TreeItemId item)"""
5212 return _controls_
.TreeCtrl_SortChildren(*args
, **kwargs
)
5214 def HitTest(*args
, **kwargs
):
5215 """HitTest(Point point) -> (item, where)"""
5216 return _controls_
.TreeCtrl_HitTest(*args
, **kwargs
)
5218 def GetBoundingRect(*args
, **kwargs
):
5219 """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject"""
5220 return _controls_
.TreeCtrl_GetBoundingRect(*args
, **kwargs
)
5222 def GetClassDefaultAttributes(*args
, **kwargs
):
5224 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5226 Get the default attributes for this class. This is useful if you want
5227 to use the same font or colour in your own control as in a standard
5228 control -- which is a much better idea than hard coding specific
5229 colours or fonts which might look completely out of place on the
5230 user's system, especially if it uses themes.
5232 The variant parameter is only relevant under Mac currently and is
5233 ignore under other platforms. Under Mac, it will change the size of
5234 the returned font. See `wx.Window.SetWindowVariant` for more about
5237 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5239 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
5241 class TreeCtrlPtr(TreeCtrl
):
5242 def __init__(self
, this
):
5244 if not hasattr(self
,"thisown"): self
.thisown
= 0
5245 self
.__class
__ = TreeCtrl
5246 _controls_
.TreeCtrl_swigregister(TreeCtrlPtr
)
5248 def PreTreeCtrl(*args
, **kwargs
):
5249 """PreTreeCtrl() -> TreeCtrl"""
5250 val
= _controls_
.new_PreTreeCtrl(*args
, **kwargs
)
5254 def TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
5256 TreeCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5258 Get the default attributes for this class. This is useful if you want
5259 to use the same font or colour in your own control as in a standard
5260 control -- which is a much better idea than hard coding specific
5261 colours or fonts which might look completely out of place on the
5262 user's system, especially if it uses themes.
5264 The variant parameter is only relevant under Mac currently and is
5265 ignore under other platforms. Under Mac, it will change the size of
5266 the returned font. See `wx.Window.SetWindowVariant` for more about
5269 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5271 #---------------------------------------------------------------------------
5273 DIRCTRL_DIR_ONLY
= _controls_
.DIRCTRL_DIR_ONLY
5274 DIRCTRL_SELECT_FIRST
= _controls_
.DIRCTRL_SELECT_FIRST
5275 DIRCTRL_SHOW_FILTERS
= _controls_
.DIRCTRL_SHOW_FILTERS
5276 DIRCTRL_3D_INTERNAL
= _controls_
.DIRCTRL_3D_INTERNAL
5277 DIRCTRL_EDIT_LABELS
= _controls_
.DIRCTRL_EDIT_LABELS
5278 class GenericDirCtrl(_core
.Control
):
5280 return "<%s.%s; proxy of C++ wxGenericDirCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5281 def __init__(self
, *args
, **kwargs
):
5283 __init__(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5284 Point pos=DefaultPosition, Size size=DefaultSize,
5285 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5286 String filter=EmptyString,
5287 int defaultFilter=0, String name=TreeCtrlNameStr) -> GenericDirCtrl
5289 newobj
= _controls_
.new_GenericDirCtrl(*args
, **kwargs
)
5290 self
.this
= newobj
.this
5293 self
._setOORInfo
(self
)
5295 def Create(*args
, **kwargs
):
5297 Create(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5298 Point pos=DefaultPosition, Size size=DefaultSize,
5299 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5300 String filter=EmptyString,
5301 int defaultFilter=0, String name=TreeCtrlNameStr) -> bool
5303 return _controls_
.GenericDirCtrl_Create(*args
, **kwargs
)
5305 def ExpandPath(*args
, **kwargs
):
5306 """ExpandPath(self, String path) -> bool"""
5307 return _controls_
.GenericDirCtrl_ExpandPath(*args
, **kwargs
)
5309 def GetDefaultPath(*args
, **kwargs
):
5310 """GetDefaultPath(self) -> String"""
5311 return _controls_
.GenericDirCtrl_GetDefaultPath(*args
, **kwargs
)
5313 def SetDefaultPath(*args
, **kwargs
):
5314 """SetDefaultPath(self, String path)"""
5315 return _controls_
.GenericDirCtrl_SetDefaultPath(*args
, **kwargs
)
5317 def GetPath(*args
, **kwargs
):
5318 """GetPath(self) -> String"""
5319 return _controls_
.GenericDirCtrl_GetPath(*args
, **kwargs
)
5321 def GetFilePath(*args
, **kwargs
):
5322 """GetFilePath(self) -> String"""
5323 return _controls_
.GenericDirCtrl_GetFilePath(*args
, **kwargs
)
5325 def SetPath(*args
, **kwargs
):
5326 """SetPath(self, String path)"""
5327 return _controls_
.GenericDirCtrl_SetPath(*args
, **kwargs
)
5329 def ShowHidden(*args
, **kwargs
):
5330 """ShowHidden(self, bool show)"""
5331 return _controls_
.GenericDirCtrl_ShowHidden(*args
, **kwargs
)
5333 def GetShowHidden(*args
, **kwargs
):
5334 """GetShowHidden(self) -> bool"""
5335 return _controls_
.GenericDirCtrl_GetShowHidden(*args
, **kwargs
)
5337 def GetFilter(*args
, **kwargs
):
5338 """GetFilter(self) -> String"""
5339 return _controls_
.GenericDirCtrl_GetFilter(*args
, **kwargs
)
5341 def SetFilter(*args
, **kwargs
):
5342 """SetFilter(self, String filter)"""
5343 return _controls_
.GenericDirCtrl_SetFilter(*args
, **kwargs
)
5345 def GetFilterIndex(*args
, **kwargs
):
5346 """GetFilterIndex(self) -> int"""
5347 return _controls_
.GenericDirCtrl_GetFilterIndex(*args
, **kwargs
)
5349 def SetFilterIndex(*args
, **kwargs
):
5350 """SetFilterIndex(self, int n)"""
5351 return _controls_
.GenericDirCtrl_SetFilterIndex(*args
, **kwargs
)
5353 def GetRootId(*args
, **kwargs
):
5354 """GetRootId(self) -> TreeItemId"""
5355 return _controls_
.GenericDirCtrl_GetRootId(*args
, **kwargs
)
5357 def GetTreeCtrl(*args
, **kwargs
):
5358 """GetTreeCtrl(self) -> TreeCtrl"""
5359 return _controls_
.GenericDirCtrl_GetTreeCtrl(*args
, **kwargs
)
5361 def GetFilterListCtrl(*args
, **kwargs
):
5362 """GetFilterListCtrl(self) -> DirFilterListCtrl"""
5363 return _controls_
.GenericDirCtrl_GetFilterListCtrl(*args
, **kwargs
)
5365 def FindChild(*args
, **kwargs
):
5366 """FindChild(wxTreeItemId parentId, wxString path) -> (item, done)"""
5367 return _controls_
.GenericDirCtrl_FindChild(*args
, **kwargs
)
5369 def DoResize(*args
, **kwargs
):
5370 """DoResize(self)"""
5371 return _controls_
.GenericDirCtrl_DoResize(*args
, **kwargs
)
5373 def ReCreateTree(*args
, **kwargs
):
5374 """ReCreateTree(self)"""
5375 return _controls_
.GenericDirCtrl_ReCreateTree(*args
, **kwargs
)
5378 class GenericDirCtrlPtr(GenericDirCtrl
):
5379 def __init__(self
, this
):
5381 if not hasattr(self
,"thisown"): self
.thisown
= 0
5382 self
.__class
__ = GenericDirCtrl
5383 _controls_
.GenericDirCtrl_swigregister(GenericDirCtrlPtr
)
5384 DirDialogDefaultFolderStr
= cvar
.DirDialogDefaultFolderStr
5386 def PreGenericDirCtrl(*args
, **kwargs
):
5387 """PreGenericDirCtrl() -> GenericDirCtrl"""
5388 val
= _controls_
.new_PreGenericDirCtrl(*args
, **kwargs
)
5392 class DirFilterListCtrl(Choice
):
5394 return "<%s.%s; proxy of C++ wxDirFilterListCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5395 def __init__(self
, *args
, **kwargs
):
5397 __init__(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5398 Size size=DefaultSize, long style=0) -> DirFilterListCtrl
5400 newobj
= _controls_
.new_DirFilterListCtrl(*args
, **kwargs
)
5401 self
.this
= newobj
.this
5404 self
._setOORInfo
(self
)
5406 def Create(*args
, **kwargs
):
5408 Create(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5409 Size size=DefaultSize, long style=0) -> bool
5411 return _controls_
.DirFilterListCtrl_Create(*args
, **kwargs
)
5413 def FillFilterList(*args
, **kwargs
):
5414 """FillFilterList(self, String filter, int defaultFilter)"""
5415 return _controls_
.DirFilterListCtrl_FillFilterList(*args
, **kwargs
)
5418 class DirFilterListCtrlPtr(DirFilterListCtrl
):
5419 def __init__(self
, this
):
5421 if not hasattr(self
,"thisown"): self
.thisown
= 0
5422 self
.__class
__ = DirFilterListCtrl
5423 _controls_
.DirFilterListCtrl_swigregister(DirFilterListCtrlPtr
)
5425 def PreDirFilterListCtrl(*args
, **kwargs
):
5426 """PreDirFilterListCtrl() -> DirFilterListCtrl"""
5427 val
= _controls_
.new_PreDirFilterListCtrl(*args
, **kwargs
)
5431 #---------------------------------------------------------------------------
5433 class PyControl(_core
.Control
):
5435 return "<%s.%s; proxy of C++ wxPyControl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5436 def __init__(self
, *args
, **kwargs
):
5438 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
5439 long style=0, Validator validator=DefaultValidator,
5440 String name=ControlNameStr) -> PyControl
5442 newobj
= _controls_
.new_PyControl(*args
, **kwargs
)
5443 self
.this
= newobj
.this
5446 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyControl
)
5448 def _setCallbackInfo(*args
, **kwargs
):
5449 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5450 return _controls_
.PyControl__setCallbackInfo(*args
, **kwargs
)
5452 def SetBestSize(*args
, **kwargs
):
5453 """SetBestSize(self, Size size)"""
5454 return _controls_
.PyControl_SetBestSize(*args
, **kwargs
)
5456 def base_DoMoveWindow(*args
, **kwargs
):
5457 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
5458 return _controls_
.PyControl_base_DoMoveWindow(*args
, **kwargs
)
5460 def base_DoSetSize(*args
, **kwargs
):
5461 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
5462 return _controls_
.PyControl_base_DoSetSize(*args
, **kwargs
)
5464 def base_DoSetClientSize(*args
, **kwargs
):
5465 """base_DoSetClientSize(self, int width, int height)"""
5466 return _controls_
.PyControl_base_DoSetClientSize(*args
, **kwargs
)
5468 def base_DoSetVirtualSize(*args
, **kwargs
):
5469 """base_DoSetVirtualSize(self, int x, int y)"""
5470 return _controls_
.PyControl_base_DoSetVirtualSize(*args
, **kwargs
)
5472 def base_DoGetSize(*args
, **kwargs
):
5473 """base_DoGetSize() -> (width, height)"""
5474 return _controls_
.PyControl_base_DoGetSize(*args
, **kwargs
)
5476 def base_DoGetClientSize(*args
, **kwargs
):
5477 """base_DoGetClientSize() -> (width, height)"""
5478 return _controls_
.PyControl_base_DoGetClientSize(*args
, **kwargs
)
5480 def base_DoGetPosition(*args
, **kwargs
):
5481 """base_DoGetPosition() -> (x,y)"""
5482 return _controls_
.PyControl_base_DoGetPosition(*args
, **kwargs
)
5484 def base_DoGetVirtualSize(*args
, **kwargs
):
5485 """base_DoGetVirtualSize(self) -> Size"""
5486 return _controls_
.PyControl_base_DoGetVirtualSize(*args
, **kwargs
)
5488 def base_DoGetBestSize(*args
, **kwargs
):
5489 """base_DoGetBestSize(self) -> Size"""
5490 return _controls_
.PyControl_base_DoGetBestSize(*args
, **kwargs
)
5492 def base_InitDialog(*args
, **kwargs
):
5493 """base_InitDialog(self)"""
5494 return _controls_
.PyControl_base_InitDialog(*args
, **kwargs
)
5496 def base_TransferDataToWindow(*args
, **kwargs
):
5497 """base_TransferDataToWindow(self) -> bool"""
5498 return _controls_
.PyControl_base_TransferDataToWindow(*args
, **kwargs
)
5500 def base_TransferDataFromWindow(*args
, **kwargs
):
5501 """base_TransferDataFromWindow(self) -> bool"""
5502 return _controls_
.PyControl_base_TransferDataFromWindow(*args
, **kwargs
)
5504 def base_Validate(*args
, **kwargs
):
5505 """base_Validate(self) -> bool"""
5506 return _controls_
.PyControl_base_Validate(*args
, **kwargs
)
5508 def base_AcceptsFocus(*args
, **kwargs
):
5509 """base_AcceptsFocus(self) -> bool"""
5510 return _controls_
.PyControl_base_AcceptsFocus(*args
, **kwargs
)
5512 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
5513 """base_AcceptsFocusFromKeyboard(self) -> bool"""
5514 return _controls_
.PyControl_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
5516 def base_GetMaxSize(*args
, **kwargs
):
5517 """base_GetMaxSize(self) -> Size"""
5518 return _controls_
.PyControl_base_GetMaxSize(*args
, **kwargs
)
5520 def base_AddChild(*args
, **kwargs
):
5521 """base_AddChild(self, Window child)"""
5522 return _controls_
.PyControl_base_AddChild(*args
, **kwargs
)
5524 def base_RemoveChild(*args
, **kwargs
):
5525 """base_RemoveChild(self, Window child)"""
5526 return _controls_
.PyControl_base_RemoveChild(*args
, **kwargs
)
5528 def base_ShouldInheritColours(*args
, **kwargs
):
5529 """base_ShouldInheritColours(self) -> bool"""
5530 return _controls_
.PyControl_base_ShouldInheritColours(*args
, **kwargs
)
5532 def base_ApplyParentThemeBackground(*args
, **kwargs
):
5533 """base_ApplyParentThemeBackground(self, Colour c)"""
5534 return _controls_
.PyControl_base_ApplyParentThemeBackground(*args
, **kwargs
)
5536 def base_GetDefaultAttributes(*args
, **kwargs
):
5537 """base_GetDefaultAttributes(self) -> VisualAttributes"""
5538 return _controls_
.PyControl_base_GetDefaultAttributes(*args
, **kwargs
)
5541 class PyControlPtr(PyControl
):
5542 def __init__(self
, this
):
5544 if not hasattr(self
,"thisown"): self
.thisown
= 0
5545 self
.__class
__ = PyControl
5546 _controls_
.PyControl_swigregister(PyControlPtr
)
5548 def PrePyControl(*args
, **kwargs
):
5549 """PrePyControl() -> PyControl"""
5550 val
= _controls_
.new_PrePyControl(*args
, **kwargs
)
5554 #---------------------------------------------------------------------------
5556 FRAME_EX_CONTEXTHELP
= _controls_
.FRAME_EX_CONTEXTHELP
5557 DIALOG_EX_CONTEXTHELP
= _controls_
.DIALOG_EX_CONTEXTHELP
5558 wxEVT_HELP
= _controls_
.wxEVT_HELP
5559 wxEVT_DETAILED_HELP
= _controls_
.wxEVT_DETAILED_HELP
5560 EVT_HELP
= wx
.PyEventBinder( wxEVT_HELP
, 1)
5561 EVT_HELP_RANGE
= wx
.PyEventBinder( wxEVT_HELP
, 2)
5562 EVT_DETAILED_HELP
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 1)
5563 EVT_DETAILED_HELP_RANGE
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 2)
5565 class HelpEvent(_core
.CommandEvent
):
5567 A help event is sent when the user has requested context-sensitive
5568 help. This can either be caused by the application requesting
5569 context-sensitive help mode via wx.ContextHelp, or (on MS Windows) by
5570 the system generating a WM_HELP message when the user pressed F1 or
5571 clicked on the query button in a dialog caption.
5573 A help event is sent to the window that the user clicked on, and is
5574 propagated up the window hierarchy until the event is processed or
5575 there are no more event handlers. The application should call
5576 event.GetId to check the identity of the clicked-on window, and then
5577 either show some suitable help or call event.Skip if the identifier is
5578 unrecognised. Calling Skip is important because it allows wxWindows to
5579 generate further events for ancestors of the clicked-on
5580 window. Otherwise it would be impossible to show help for container
5581 windows, since processing would stop after the first window found.
5584 return "<%s.%s; proxy of C++ wxHelpEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5585 def __init__(self
, *args
, **kwargs
):
5586 """__init__(self, wxEventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition) -> HelpEvent"""
5587 newobj
= _controls_
.new_HelpEvent(*args
, **kwargs
)
5588 self
.this
= newobj
.this
5591 def GetPosition(*args
, **kwargs
):
5593 GetPosition(self) -> Point
5595 Returns the left-click position of the mouse, in screen
5596 coordinates. This allows the application to position the help
5599 return _controls_
.HelpEvent_GetPosition(*args
, **kwargs
)
5601 def SetPosition(*args
, **kwargs
):
5603 SetPosition(self, Point pos)
5605 Sets the left-click position of the mouse, in screen coordinates.
5607 return _controls_
.HelpEvent_SetPosition(*args
, **kwargs
)
5609 def GetLink(*args
, **kwargs
):
5611 GetLink(self) -> String
5613 Get an optional link to further help
5615 return _controls_
.HelpEvent_GetLink(*args
, **kwargs
)
5617 def SetLink(*args
, **kwargs
):
5619 SetLink(self, String link)
5621 Set an optional link to further help
5623 return _controls_
.HelpEvent_SetLink(*args
, **kwargs
)
5625 def GetTarget(*args
, **kwargs
):
5627 GetTarget(self) -> String
5629 Get an optional target to display help in. E.g. a window specification
5631 return _controls_
.HelpEvent_GetTarget(*args
, **kwargs
)
5633 def SetTarget(*args
, **kwargs
):
5635 SetTarget(self, String target)
5637 Set an optional target to display help in. E.g. a window specification
5639 return _controls_
.HelpEvent_SetTarget(*args
, **kwargs
)
5642 class HelpEventPtr(HelpEvent
):
5643 def __init__(self
, this
):
5645 if not hasattr(self
,"thisown"): self
.thisown
= 0
5646 self
.__class
__ = HelpEvent
5647 _controls_
.HelpEvent_swigregister(HelpEventPtr
)
5649 class ContextHelp(_core
.Object
):
5651 This class changes the cursor to a query and puts the application into
5652 a 'context-sensitive help mode'. When the user left-clicks on a window
5653 within the specified window, a ``EVT_HELP`` event is sent to that
5654 control, and the application may respond to it by popping up some
5657 There are a couple of ways to invoke this behaviour implicitly:
5659 * Use the wx.DIALOG_EX_CONTEXTHELP extended style for a dialog
5660 (Windows only). This will put a question mark in the titlebar,
5661 and Windows will put the application into context-sensitive help
5662 mode automatically, with further programming.
5664 * Create a `wx.ContextHelpButton`, whose predefined behaviour is
5665 to create a context help object. Normally you will write your
5666 application so that this button is only added to a dialog for
5667 non-Windows platforms (use ``wx.DIALOG_EX_CONTEXTHELP`` on
5670 :see: `wx.ContextHelpButton`
5674 return "<%s.%s; proxy of C++ wxContextHelp instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5675 def __init__(self
, *args
, **kwargs
):
5677 __init__(self, Window window=None, bool doNow=True) -> ContextHelp
5679 Constructs a context help object, calling BeginContextHelp if doNow is
5682 If window is None, the top window is used.
5684 newobj
= _controls_
.new_ContextHelp(*args
, **kwargs
)
5685 self
.this
= newobj
.this
5688 def __del__(self
, destroy
=_controls_
.delete_ContextHelp
):
5691 if self
.thisown
: destroy(self
)
5694 def BeginContextHelp(*args
, **kwargs
):
5696 BeginContextHelp(self, Window window=None) -> bool
5698 Puts the application into context-sensitive help mode. window is the
5699 window which will be used to catch events; if NULL, the top window
5702 Returns true if the application was successfully put into
5703 context-sensitive help mode. This function only returns when the event
5706 return _controls_
.ContextHelp_BeginContextHelp(*args
, **kwargs
)
5708 def EndContextHelp(*args
, **kwargs
):
5710 EndContextHelp(self) -> bool
5712 Ends context-sensitive help mode. Not normally called by the
5715 return _controls_
.ContextHelp_EndContextHelp(*args
, **kwargs
)
5718 class ContextHelpPtr(ContextHelp
):
5719 def __init__(self
, this
):
5721 if not hasattr(self
,"thisown"): self
.thisown
= 0
5722 self
.__class
__ = ContextHelp
5723 _controls_
.ContextHelp_swigregister(ContextHelpPtr
)
5725 class ContextHelpButton(BitmapButton
):
5727 Instances of this class may be used to add a question mark button that
5728 when pressed, puts the application into context-help mode. It does
5729 this by creating a wx.ContextHelp object which itself generates a
5730 ``EVT_HELP`` event when the user clicks on a window.
5732 On Windows, you may add a question-mark icon to a dialog by use of the
5733 ``wx.DIALOG_EX_CONTEXTHELP`` extra style, but on other platforms you
5734 will have to add a button explicitly, usually next to OK, Cancel or
5737 :see: `wx.ContextHelp`, `wx.ContextHelpButton`
5741 return "<%s.%s; proxy of C++ wxContextHelpButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5742 def __init__(self
, *args
, **kwargs
):
5744 __init__(self, Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
5745 Size size=DefaultSize, long style=BU_AUTODRAW) -> ContextHelpButton
5747 Constructor, creating and showing a context help button.
5749 newobj
= _controls_
.new_ContextHelpButton(*args
, **kwargs
)
5750 self
.this
= newobj
.this
5753 self
._setOORInfo
(self
)
5756 class ContextHelpButtonPtr(ContextHelpButton
):
5757 def __init__(self
, this
):
5759 if not hasattr(self
,"thisown"): self
.thisown
= 0
5760 self
.__class
__ = ContextHelpButton
5761 _controls_
.ContextHelpButton_swigregister(ContextHelpButtonPtr
)
5763 class HelpProvider(object):
5765 wx.HelpProvider is an abstract class used by a program
5766 implementing context-sensitive help to show the help text for the
5769 The current help provider must be explicitly set by the
5770 application using wx.HelpProvider.Set().
5772 def __init__(self
): raise RuntimeError, "No constructor defined"
5774 return "<%s.%s; proxy of C++ wxHelpProvider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5775 def Set(*args
, **kwargs
):
5777 Set(HelpProvider helpProvider) -> HelpProvider
5779 Sset the current, application-wide help provider. Returns the previous
5780 one. Unlike some other classes, the help provider is not created on
5781 demand. This must be explicitly done by the application.
5783 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5785 Set
= staticmethod(Set
)
5786 def Get(*args
, **kwargs
):
5788 Get() -> HelpProvider
5790 Return the current application-wide help provider.
5792 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
5794 Get
= staticmethod(Get
)
5795 def GetHelp(*args
, **kwargs
):
5797 GetHelp(self, Window window) -> String
5799 Gets the help string for this window. Its interpretation is dependent
5800 on the help provider except that empty string always means that no
5801 help is associated with the window.
5803 return _controls_
.HelpProvider_GetHelp(*args
, **kwargs
)
5805 def ShowHelp(*args
, **kwargs
):
5807 ShowHelp(self, Window window) -> bool
5809 Shows help for the given window. Uses GetHelp internally if
5810 applicable. Returns True if it was done, or False if no help was
5811 available for this window.
5813 return _controls_
.HelpProvider_ShowHelp(*args
, **kwargs
)
5815 def AddHelp(*args
, **kwargs
):
5817 AddHelp(self, Window window, String text)
5819 Associates the text with the given window.
5821 return _controls_
.HelpProvider_AddHelp(*args
, **kwargs
)
5823 def AddHelpById(*args
, **kwargs
):
5825 AddHelpById(self, int id, String text)
5827 This version associates the given text with all windows with this
5828 id. May be used to set the same help string for all Cancel buttons in
5829 the application, for example.
5831 return _controls_
.HelpProvider_AddHelpById(*args
, **kwargs
)
5833 def RemoveHelp(*args
, **kwargs
):
5835 RemoveHelp(self, Window window)
5837 Removes the association between the window pointer and the help
5838 text. This is called by the wx.Window destructor. Without this, the
5839 table of help strings will fill up and when window pointers are
5840 reused, the wrong help string will be found.
5842 return _controls_
.HelpProvider_RemoveHelp(*args
, **kwargs
)
5844 def Destroy(*args
, **kwargs
):
5846 return _controls_
.HelpProvider_Destroy(*args
, **kwargs
)
5849 class HelpProviderPtr(HelpProvider
):
5850 def __init__(self
, this
):
5852 if not hasattr(self
,"thisown"): self
.thisown
= 0
5853 self
.__class
__ = HelpProvider
5854 _controls_
.HelpProvider_swigregister(HelpProviderPtr
)
5856 def HelpProvider_Set(*args
, **kwargs
):
5858 HelpProvider_Set(HelpProvider helpProvider) -> HelpProvider
5860 Sset the current, application-wide help provider. Returns the previous
5861 one. Unlike some other classes, the help provider is not created on
5862 demand. This must be explicitly done by the application.
5864 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5866 def HelpProvider_Get(*args
, **kwargs
):
5868 HelpProvider_Get() -> HelpProvider
5870 Return the current application-wide help provider.
5872 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
5874 class SimpleHelpProvider(HelpProvider
):
5876 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
5877 supports only plain text help strings, and shows the string associated
5878 with the control (if any) in a tooltip.
5881 return "<%s.%s; proxy of C++ wxSimpleHelpProvider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5882 def __init__(self
, *args
, **kwargs
):
5884 __init__(self) -> SimpleHelpProvider
5886 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
5887 supports only plain text help strings, and shows the string associated
5888 with the control (if any) in a tooltip.
5890 newobj
= _controls_
.new_SimpleHelpProvider(*args
, **kwargs
)
5891 self
.this
= newobj
.this
5895 class SimpleHelpProviderPtr(SimpleHelpProvider
):
5896 def __init__(self
, this
):
5898 if not hasattr(self
,"thisown"): self
.thisown
= 0
5899 self
.__class
__ = SimpleHelpProvider
5900 _controls_
.SimpleHelpProvider_swigregister(SimpleHelpProviderPtr
)
5902 #---------------------------------------------------------------------------
5904 class DragImage(_core
.Object
):
5906 return "<%s.%s; proxy of C++ wxGenericDragImage instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5907 def __init__(self
, *args
, **kwargs
):
5908 """__init__(self, Bitmap image, Cursor cursor=wxNullCursor) -> DragImage"""
5909 newobj
= _controls_
.new_DragImage(*args
, **kwargs
)
5910 self
.this
= newobj
.this
5913 def __del__(self
, destroy
=_controls_
.delete_DragImage
):
5916 if self
.thisown
: destroy(self
)
5919 def SetBackingBitmap(*args
, **kwargs
):
5920 """SetBackingBitmap(self, Bitmap bitmap)"""
5921 return _controls_
.DragImage_SetBackingBitmap(*args
, **kwargs
)
5923 def BeginDrag(*args
, **kwargs
):
5925 BeginDrag(self, Point hotspot, Window window, bool fullScreen=False,
5926 Rect rect=None) -> bool
5928 return _controls_
.DragImage_BeginDrag(*args
, **kwargs
)
5930 def BeginDragBounded(*args
, **kwargs
):
5931 """BeginDragBounded(self, Point hotspot, Window window, Window boundingWindow) -> bool"""
5932 return _controls_
.DragImage_BeginDragBounded(*args
, **kwargs
)
5934 def EndDrag(*args
, **kwargs
):
5935 """EndDrag(self) -> bool"""
5936 return _controls_
.DragImage_EndDrag(*args
, **kwargs
)
5938 def Move(*args
, **kwargs
):
5939 """Move(self, Point pt) -> bool"""
5940 return _controls_
.DragImage_Move(*args
, **kwargs
)
5942 def Show(*args
, **kwargs
):
5943 """Show(self) -> bool"""
5944 return _controls_
.DragImage_Show(*args
, **kwargs
)
5946 def Hide(*args
, **kwargs
):
5947 """Hide(self) -> bool"""
5948 return _controls_
.DragImage_Hide(*args
, **kwargs
)
5950 def GetImageRect(*args
, **kwargs
):
5951 """GetImageRect(self, Point pos) -> Rect"""
5952 return _controls_
.DragImage_GetImageRect(*args
, **kwargs
)
5954 def DoDrawImage(*args
, **kwargs
):
5955 """DoDrawImage(self, DC dc, Point pos) -> bool"""
5956 return _controls_
.DragImage_DoDrawImage(*args
, **kwargs
)
5958 def UpdateBackingFromWindow(*args
, **kwargs
):
5959 """UpdateBackingFromWindow(self, DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -> bool"""
5960 return _controls_
.DragImage_UpdateBackingFromWindow(*args
, **kwargs
)
5962 def RedrawImage(*args
, **kwargs
):
5963 """RedrawImage(self, Point oldPos, Point newPos, bool eraseOld, bool drawNew) -> bool"""
5964 return _controls_
.DragImage_RedrawImage(*args
, **kwargs
)
5967 class DragImagePtr(DragImage
):
5968 def __init__(self
, this
):
5970 if not hasattr(self
,"thisown"): self
.thisown
= 0
5971 self
.__class
__ = DragImage
5972 _controls_
.DragImage_swigregister(DragImagePtr
)
5974 def DragIcon(*args
, **kwargs
):
5975 """DragIcon(Icon image, Cursor cursor=wxNullCursor) -> DragImage"""
5976 val
= _controls_
.new_DragIcon(*args
, **kwargs
)
5980 def DragString(*args
, **kwargs
):
5981 """DragString(String str, Cursor cursor=wxNullCursor) -> DragImage"""
5982 val
= _controls_
.new_DragString(*args
, **kwargs
)
5986 def DragTreeItem(*args
, **kwargs
):
5987 """DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -> DragImage"""
5988 val
= _controls_
.new_DragTreeItem(*args
, **kwargs
)
5992 def DragListItem(*args
, **kwargs
):
5993 """DragListItem(ListCtrl listCtrl, long id) -> DragImage"""
5994 val
= _controls_
.new_DragListItem(*args
, **kwargs
)