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 users
73 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 SetWindowVariant for more about this.
79 return _controls_
.Button_GetClassDefaultAttributes(*args
, **kwargs
)
81 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
83 class ButtonPtr(Button
):
84 def __init__(self
, this
):
86 if not hasattr(self
,"thisown"): self
.thisown
= 0
87 self
.__class
__ = Button
88 _controls_
.Button_swigregister(ButtonPtr
)
89 cvar
= _controls_
.cvar
90 ButtonNameStr
= cvar
.ButtonNameStr
92 def PreButton(*args
, **kwargs
):
96 Precreate a Button for 2-phase creation.
98 val
= _controls_
.new_PreButton(*args
, **kwargs
)
102 def Button_GetDefaultSize(*args
, **kwargs
):
104 Button_GetDefaultSize() -> Size
106 Returns the default button size for this platform.
108 return _controls_
.Button_GetDefaultSize(*args
, **kwargs
)
110 def Button_GetClassDefaultAttributes(*args
, **kwargs
):
112 Button_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
114 Get the default attributes for this class. This is useful if you want
115 to use the same font or colour in your own control as in a standard
116 control -- which is a much better idea than hard coding specific
117 colours or fonts which might look completely out of place on the users
118 system, especially if it uses themes.
120 The variant parameter is only relevant under Mac currently and is
121 ignore under other platforms. Under Mac, it will change the size of
122 the returned font. See SetWindowVariant for more about this.
124 return _controls_
.Button_GetClassDefaultAttributes(*args
, **kwargs
)
126 class BitmapButton(Button
):
128 A Button that contains a bitmap. A bitmap button can be supplied with a
129 single bitmap, and wxWidgets will draw all button states using this bitmap. If
130 the application needs more control, additional bitmaps for the selected state,
131 unpressed focused state, and greyed-out state may be supplied.
134 return "<%s.%s; proxy of C++ wxBitmapButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
135 def __init__(self
, *args
, **kwargs
):
137 __init__(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
138 Size size=DefaultSize, long style=BU_AUTODRAW,
139 Validator validator=DefaultValidator,
140 String name=ButtonNameStr) -> BitmapButton
142 Create and show a button with a bitmap for the label.
144 newobj
= _controls_
.new_BitmapButton(*args
, **kwargs
)
145 self
.this
= newobj
.this
148 self
._setOORInfo
(self
)
150 def Create(*args
, **kwargs
):
152 Create(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
153 Size size=DefaultSize, long style=BU_AUTODRAW,
154 Validator validator=DefaultValidator,
155 String name=ButtonNameStr) -> bool
157 Acutally create the GUI BitmapButton for 2-phase creation.
159 return _controls_
.BitmapButton_Create(*args
, **kwargs
)
161 def GetBitmapLabel(*args
, **kwargs
):
163 GetBitmapLabel(self) -> Bitmap
165 Returns the label bitmap (the one passed to the constructor).
167 return _controls_
.BitmapButton_GetBitmapLabel(*args
, **kwargs
)
169 def GetBitmapDisabled(*args
, **kwargs
):
171 GetBitmapDisabled(self) -> Bitmap
173 Returns the bitmap for the disabled state.
175 return _controls_
.BitmapButton_GetBitmapDisabled(*args
, **kwargs
)
177 def GetBitmapFocus(*args
, **kwargs
):
179 GetBitmapFocus(self) -> Bitmap
181 Returns the bitmap for the focused state.
183 return _controls_
.BitmapButton_GetBitmapFocus(*args
, **kwargs
)
185 def GetBitmapSelected(*args
, **kwargs
):
187 GetBitmapSelected(self) -> Bitmap
189 Returns the bitmap for the selected state.
191 return _controls_
.BitmapButton_GetBitmapSelected(*args
, **kwargs
)
193 def SetBitmapDisabled(*args
, **kwargs
):
195 SetBitmapDisabled(self, Bitmap bitmap)
197 Sets the bitmap for the disabled button appearance.
199 return _controls_
.BitmapButton_SetBitmapDisabled(*args
, **kwargs
)
201 def SetBitmapFocus(*args
, **kwargs
):
203 SetBitmapFocus(self, Bitmap bitmap)
205 Sets the bitmap for the button appearance when it has the keyboard focus.
207 return _controls_
.BitmapButton_SetBitmapFocus(*args
, **kwargs
)
209 def SetBitmapSelected(*args
, **kwargs
):
211 SetBitmapSelected(self, Bitmap bitmap)
213 Sets the bitmap for the selected (depressed) button appearance.
215 return _controls_
.BitmapButton_SetBitmapSelected(*args
, **kwargs
)
217 def SetBitmapLabel(*args
, **kwargs
):
219 SetBitmapLabel(self, Bitmap bitmap)
221 Sets the bitmap label for the button. This is the bitmap used for the
222 unselected state, and for all other states if no other bitmaps are provided.
224 return _controls_
.BitmapButton_SetBitmapLabel(*args
, **kwargs
)
226 def SetMargins(*args
, **kwargs
):
227 """SetMargins(self, int x, int y)"""
228 return _controls_
.BitmapButton_SetMargins(*args
, **kwargs
)
230 def GetMarginX(*args
, **kwargs
):
231 """GetMarginX(self) -> int"""
232 return _controls_
.BitmapButton_GetMarginX(*args
, **kwargs
)
234 def GetMarginY(*args
, **kwargs
):
235 """GetMarginY(self) -> int"""
236 return _controls_
.BitmapButton_GetMarginY(*args
, **kwargs
)
239 class BitmapButtonPtr(BitmapButton
):
240 def __init__(self
, this
):
242 if not hasattr(self
,"thisown"): self
.thisown
= 0
243 self
.__class
__ = BitmapButton
244 _controls_
.BitmapButton_swigregister(BitmapButtonPtr
)
246 def PreBitmapButton(*args
, **kwargs
):
248 PreBitmapButton() -> BitmapButton
250 Precreate a BitmapButton for 2-phase creation.
252 val
= _controls_
.new_PreBitmapButton(*args
, **kwargs
)
256 #---------------------------------------------------------------------------
258 CHK_2STATE
= _controls_
.CHK_2STATE
259 CHK_3STATE
= _controls_
.CHK_3STATE
260 CHK_ALLOW_3RD_STATE_FOR_USER
= _controls_
.CHK_ALLOW_3RD_STATE_FOR_USER
261 CHK_UNCHECKED
= _controls_
.CHK_UNCHECKED
262 CHK_CHECKED
= _controls_
.CHK_CHECKED
263 CHK_UNDETERMINED
= _controls_
.CHK_UNDETERMINED
264 class CheckBox(_core
.Control
):
266 A checkbox is a labelled box which by default is either on (the
267 checkmark is visible) or off (no checkmark). Optionally (When the
268 wx.CHK_3STATE style flag is set) it can have a third state, called the
269 mixed or undetermined state. Often this is used as a "Does Not
273 return "<%s.%s; proxy of C++ wxCheckBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
274 def __init__(self
, *args
, **kwargs
):
276 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
277 Size size=DefaultSize, long style=0,
278 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -> CheckBox
280 Creates and shows a CheckBox control
282 newobj
= _controls_
.new_CheckBox(*args
, **kwargs
)
283 self
.this
= newobj
.this
286 self
._setOORInfo
(self
)
288 def Create(*args
, **kwargs
):
290 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
291 Size size=DefaultSize, long style=0,
292 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -> bool
294 Actually create the GUI CheckBox for 2-phase creation.
296 return _controls_
.CheckBox_Create(*args
, **kwargs
)
298 def GetValue(*args
, **kwargs
):
300 GetValue(self) -> bool
302 Gets the state of a 2-state CheckBox. Returns True if it is checked,
305 return _controls_
.CheckBox_GetValue(*args
, **kwargs
)
307 def IsChecked(*args
, **kwargs
):
309 IsChecked(self) -> bool
311 Similar to GetValue, but raises an exception if it is not a 2-state
314 return _controls_
.CheckBox_IsChecked(*args
, **kwargs
)
316 def SetValue(*args
, **kwargs
):
318 SetValue(self, bool state)
320 Set the state of a 2-state CheckBox. Pass True for checked, False for
323 return _controls_
.CheckBox_SetValue(*args
, **kwargs
)
325 def Get3StateValue(*args
, **kwargs
):
327 Get3StateValue(self) -> int
329 Returns wx.CHK_UNCHECKED when the CheckBox is unchecked,
330 wx.CHK_CHECKED when it is checked and wx.CHK_UNDETERMINED when it's in
331 the undetermined state. Raises an exceptiion when the function is
332 used with a 2-state CheckBox.
334 return _controls_
.CheckBox_Get3StateValue(*args
, **kwargs
)
336 def Set3StateValue(*args
, **kwargs
):
338 Set3StateValue(self, int state)
340 Sets the CheckBox to the given state. The state parameter can be one
341 of the following: wx.CHK_UNCHECKED (Check is off), wx.CHK_CHECKED (the
342 Check is on) or wx.CHK_UNDETERMINED (Check is mixed). Raises an
343 exception when the CheckBox is a 2-state checkbox and setting the
344 state to wx.CHK_UNDETERMINED.
346 return _controls_
.CheckBox_Set3StateValue(*args
, **kwargs
)
348 def Is3State(*args
, **kwargs
):
350 Is3State(self) -> bool
352 Returns whether or not the CheckBox is a 3-state CheckBox.
354 return _controls_
.CheckBox_Is3State(*args
, **kwargs
)
356 def Is3rdStateAllowedForUser(*args
, **kwargs
):
358 Is3rdStateAllowedForUser(self) -> bool
360 Returns whether or not the user can set the CheckBox to the third
363 return _controls_
.CheckBox_Is3rdStateAllowedForUser(*args
, **kwargs
)
365 def GetClassDefaultAttributes(*args
, **kwargs
):
367 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
369 Get the default attributes for this class. This is useful if you want
370 to use the same font or colour in your own control as in a standard
371 control -- which is a much better idea than hard coding specific
372 colours or fonts which might look completely out of place on the users
373 system, especially if it uses themes.
375 The variant parameter is only relevant under Mac currently and is
376 ignore under other platforms. Under Mac, it will change the size of
377 the returned font. See SetWindowVariant for more about this.
379 return _controls_
.CheckBox_GetClassDefaultAttributes(*args
, **kwargs
)
381 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
383 class CheckBoxPtr(CheckBox
):
384 def __init__(self
, this
):
386 if not hasattr(self
,"thisown"): self
.thisown
= 0
387 self
.__class
__ = CheckBox
388 _controls_
.CheckBox_swigregister(CheckBoxPtr
)
389 CheckBoxNameStr
= cvar
.CheckBoxNameStr
391 def PreCheckBox(*args
, **kwargs
):
393 PreCheckBox() -> CheckBox
395 Precreate a CheckBox for 2-phase creation.
397 val
= _controls_
.new_PreCheckBox(*args
, **kwargs
)
401 def CheckBox_GetClassDefaultAttributes(*args
, **kwargs
):
403 CheckBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
405 Get the default attributes for this class. This is useful if you want
406 to use the same font or colour in your own control as in a standard
407 control -- which is a much better idea than hard coding specific
408 colours or fonts which might look completely out of place on the users
409 system, especially if it uses themes.
411 The variant parameter is only relevant under Mac currently and is
412 ignore under other platforms. Under Mac, it will change the size of
413 the returned font. See SetWindowVariant for more about this.
415 return _controls_
.CheckBox_GetClassDefaultAttributes(*args
, **kwargs
)
417 #---------------------------------------------------------------------------
419 class Choice(_core
.ControlWithItems
):
421 A Choice control is used to select one of a list of strings.
422 Unlike a `wx.ListBox`, only the selection is visible until the
423 user pulls down the menu of choices.
426 return "<%s.%s; proxy of C++ wxChoice instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
427 def __init__(self
, *args
, **kwargs
):
429 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
430 List choices=[], long style=0, Validator validator=DefaultValidator,
431 String name=ChoiceNameStr) -> Choice
433 Create and show a Choice control
435 newobj
= _controls_
.new_Choice(*args
, **kwargs
)
436 self
.this
= newobj
.this
439 self
._setOORInfo
(self
)
441 def Create(*args
, **kwargs
):
443 Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
444 List choices=[], long style=0, Validator validator=DefaultValidator,
445 String name=ChoiceNameStr) -> bool
447 return _controls_
.Choice_Create(*args
, **kwargs
)
449 def SetSelection(*args
, **kwargs
):
451 SetSelection(self, int n)
453 Select the n'th item (zero based) in the list.
455 return _controls_
.Choice_SetSelection(*args
, **kwargs
)
457 def SetStringSelection(*args
, **kwargs
):
459 SetStringSelection(self, String string) -> bool
461 Select the item with the specifed string
463 return _controls_
.Choice_SetStringSelection(*args
, **kwargs
)
465 def SetString(*args
, **kwargs
):
467 SetString(self, int n, String string)
469 Set the label for the n'th item (zero based) in the list.
471 return _controls_
.Choice_SetString(*args
, **kwargs
)
473 Select
= SetSelection
474 def GetClassDefaultAttributes(*args
, **kwargs
):
476 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
478 Get the default attributes for this class. This is useful if you want
479 to use the same font or colour in your own control as in a standard
480 control -- which is a much better idea than hard coding specific
481 colours or fonts which might look completely out of place on the users
482 system, especially if it uses themes.
484 The variant parameter is only relevant under Mac currently and is
485 ignore under other platforms. Under Mac, it will change the size of
486 the returned font. See SetWindowVariant for more about this.
488 return _controls_
.Choice_GetClassDefaultAttributes(*args
, **kwargs
)
490 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
492 class ChoicePtr(Choice
):
493 def __init__(self
, this
):
495 if not hasattr(self
,"thisown"): self
.thisown
= 0
496 self
.__class
__ = Choice
497 _controls_
.Choice_swigregister(ChoicePtr
)
498 ChoiceNameStr
= cvar
.ChoiceNameStr
500 def PreChoice(*args
, **kwargs
):
502 PreChoice() -> Choice
504 Precreate a Choice control for 2-phase creation.
506 val
= _controls_
.new_PreChoice(*args
, **kwargs
)
510 def Choice_GetClassDefaultAttributes(*args
, **kwargs
):
512 Choice_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
514 Get the default attributes for this class. This is useful if you want
515 to use the same font or colour in your own control as in a standard
516 control -- which is a much better idea than hard coding specific
517 colours or fonts which might look completely out of place on the users
518 system, especially if it uses themes.
520 The variant parameter is only relevant under Mac currently and is
521 ignore under other platforms. Under Mac, it will change the size of
522 the returned font. See SetWindowVariant for more about this.
524 return _controls_
.Choice_GetClassDefaultAttributes(*args
, **kwargs
)
526 #---------------------------------------------------------------------------
528 class ComboBox(_core
.Control
,_core
.ItemContainer
):
530 A combobox is like a combination of an edit control and a
531 listbox. It can be displayed as static list with editable or
532 read-only text field; or a drop-down list with text field.
534 A combobox permits a single selection only. Combobox items are
538 return "<%s.%s; proxy of C++ wxComboBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
539 def __init__(self
, *args
, **kwargs
):
541 __init__(Window parent, int id, String value=EmptyString,
542 Point pos=DefaultPosition, Size size=DefaultSize,
543 List choices=[], long style=0, Validator validator=DefaultValidator,
544 String name=ComboBoxNameStr) -> ComboBox
546 Constructor, creates and shows a ComboBox control.
548 newobj
= _controls_
.new_ComboBox(*args
, **kwargs
)
549 self
.this
= newobj
.this
552 self
._setOORInfo
(self
)
554 def Create(*args
, **kwargs
):
556 Create(Window parent, int id, String value=EmptyString,
557 Point pos=DefaultPosition, Size size=DefaultSize,
558 List choices=[], long style=0, Validator validator=DefaultValidator,
559 String name=ChoiceNameStr) -> bool
561 return _controls_
.ComboBox_Create(*args
, **kwargs
)
563 def GetValue(*args
, **kwargs
):
565 GetValue(self) -> String
567 Returns the current value in the combobox text field.
569 return _controls_
.ComboBox_GetValue(*args
, **kwargs
)
571 def SetValue(*args
, **kwargs
):
572 """SetValue(self, String value)"""
573 return _controls_
.ComboBox_SetValue(*args
, **kwargs
)
575 def Copy(*args
, **kwargs
):
579 Copies the selected text to the clipboard.
581 return _controls_
.ComboBox_Copy(*args
, **kwargs
)
583 def Cut(*args
, **kwargs
):
587 Copies the selected text to the clipboard and removes the selection.
589 return _controls_
.ComboBox_Cut(*args
, **kwargs
)
591 def Paste(*args
, **kwargs
):
595 Pastes text from the clipboard to the text field.
597 return _controls_
.ComboBox_Paste(*args
, **kwargs
)
599 def SetInsertionPoint(*args
, **kwargs
):
601 SetInsertionPoint(self, long pos)
603 Sets the insertion point in the combobox text field.
605 return _controls_
.ComboBox_SetInsertionPoint(*args
, **kwargs
)
607 def GetInsertionPoint(*args
, **kwargs
):
609 GetInsertionPoint(self) -> long
611 Returns the insertion point for the combobox's text field.
613 return _controls_
.ComboBox_GetInsertionPoint(*args
, **kwargs
)
615 def GetLastPosition(*args
, **kwargs
):
617 GetLastPosition(self) -> long
619 Returns the last position in the combobox text field.
621 return _controls_
.ComboBox_GetLastPosition(*args
, **kwargs
)
623 def Replace(*args
, **kwargs
):
625 Replace(self, long from, long to, String value)
627 Replaces the text between two positions with the given text, in the
630 return _controls_
.ComboBox_Replace(*args
, **kwargs
)
632 def SetSelection(*args
, **kwargs
):
634 SetSelection(self, int n)
636 Sets the item at index 'n' to be the selected item.
638 return _controls_
.ComboBox_SetSelection(*args
, **kwargs
)
640 def SetMark(*args
, **kwargs
):
642 SetMark(self, long from, long to)
644 Selects the text between the two positions in the combobox text field.
646 return _controls_
.ComboBox_SetMark(*args
, **kwargs
)
648 def SetStringSelection(*args
, **kwargs
):
650 SetStringSelection(self, String string) -> bool
652 Select the item with the specifed string
654 return _controls_
.ComboBox_SetStringSelection(*args
, **kwargs
)
656 def SetString(*args
, **kwargs
):
658 SetString(self, int n, String string)
660 Set the label for the n'th item (zero based) in the list.
662 return _controls_
.ComboBox_SetString(*args
, **kwargs
)
664 def SetEditable(*args
, **kwargs
):
665 """SetEditable(self, bool editable)"""
666 return _controls_
.ComboBox_SetEditable(*args
, **kwargs
)
668 def SetInsertionPointEnd(*args
, **kwargs
):
670 SetInsertionPointEnd(self)
672 Sets the insertion point at the end of the combobox text field.
674 return _controls_
.ComboBox_SetInsertionPointEnd(*args
, **kwargs
)
676 def Remove(*args
, **kwargs
):
678 Remove(self, long from, long to)
680 Removes the text between the two positions in the combobox text field.
682 return _controls_
.ComboBox_Remove(*args
, **kwargs
)
684 def GetClassDefaultAttributes(*args
, **kwargs
):
686 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
688 Get the default attributes for this class. This is useful if you want
689 to use the same font or colour in your own control as in a standard
690 control -- which is a much better idea than hard coding specific
691 colours or fonts which might look completely out of place on the users
692 system, especially if it uses themes.
694 The variant parameter is only relevant under Mac currently and is
695 ignore under other platforms. Under Mac, it will change the size of
696 the returned font. See SetWindowVariant for more about this.
698 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
700 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
702 class ComboBoxPtr(ComboBox
):
703 def __init__(self
, this
):
705 if not hasattr(self
,"thisown"): self
.thisown
= 0
706 self
.__class
__ = ComboBox
707 _controls_
.ComboBox_swigregister(ComboBoxPtr
)
708 ComboBoxNameStr
= cvar
.ComboBoxNameStr
710 def PreComboBox(*args
, **kwargs
):
712 PreComboBox() -> ComboBox
714 Precreate a ComboBox control for 2-phase creation.
716 val
= _controls_
.new_PreComboBox(*args
, **kwargs
)
720 def ComboBox_GetClassDefaultAttributes(*args
, **kwargs
):
722 ComboBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
724 Get the default attributes for this class. This is useful if you want
725 to use the same font or colour in your own control as in a standard
726 control -- which is a much better idea than hard coding specific
727 colours or fonts which might look completely out of place on the users
728 system, especially if it uses themes.
730 The variant parameter is only relevant under Mac currently and is
731 ignore under other platforms. Under Mac, it will change the size of
732 the returned font. See SetWindowVariant for more about this.
734 return _controls_
.ComboBox_GetClassDefaultAttributes(*args
, **kwargs
)
736 #---------------------------------------------------------------------------
738 GA_HORIZONTAL
= _controls_
.GA_HORIZONTAL
739 GA_VERTICAL
= _controls_
.GA_VERTICAL
740 GA_SMOOTH
= _controls_
.GA_SMOOTH
741 GA_PROGRESSBAR
= _controls_
.GA_PROGRESSBAR
742 class Gauge(_core
.Control
):
744 return "<%s.%s; proxy of C++ wxGauge instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
745 def __init__(self
, *args
, **kwargs
):
747 __init__(self, Window parent, int id, int range, Point pos=DefaultPosition,
748 Size size=DefaultSize, long style=GA_HORIZONTAL,
749 Validator validator=DefaultValidator,
750 String name=GaugeNameStr) -> Gauge
752 newobj
= _controls_
.new_Gauge(*args
, **kwargs
)
753 self
.this
= newobj
.this
756 self
._setOORInfo
(self
)
758 def Create(*args
, **kwargs
):
760 Create(self, Window parent, int id, int range, Point pos=DefaultPosition,
761 Size size=DefaultSize, long style=GA_HORIZONTAL,
762 Validator validator=DefaultValidator,
763 String name=GaugeNameStr) -> bool
765 return _controls_
.Gauge_Create(*args
, **kwargs
)
767 def SetRange(*args
, **kwargs
):
768 """SetRange(self, int range)"""
769 return _controls_
.Gauge_SetRange(*args
, **kwargs
)
771 def GetRange(*args
, **kwargs
):
772 """GetRange(self) -> int"""
773 return _controls_
.Gauge_GetRange(*args
, **kwargs
)
775 def SetValue(*args
, **kwargs
):
776 """SetValue(self, int pos)"""
777 return _controls_
.Gauge_SetValue(*args
, **kwargs
)
779 def GetValue(*args
, **kwargs
):
780 """GetValue(self) -> int"""
781 return _controls_
.Gauge_GetValue(*args
, **kwargs
)
783 def IsVertical(*args
, **kwargs
):
784 """IsVertical(self) -> bool"""
785 return _controls_
.Gauge_IsVertical(*args
, **kwargs
)
787 def SetShadowWidth(*args
, **kwargs
):
788 """SetShadowWidth(self, int w)"""
789 return _controls_
.Gauge_SetShadowWidth(*args
, **kwargs
)
791 def GetShadowWidth(*args
, **kwargs
):
792 """GetShadowWidth(self) -> int"""
793 return _controls_
.Gauge_GetShadowWidth(*args
, **kwargs
)
795 def SetBezelFace(*args
, **kwargs
):
796 """SetBezelFace(self, int w)"""
797 return _controls_
.Gauge_SetBezelFace(*args
, **kwargs
)
799 def GetBezelFace(*args
, **kwargs
):
800 """GetBezelFace(self) -> int"""
801 return _controls_
.Gauge_GetBezelFace(*args
, **kwargs
)
803 def GetClassDefaultAttributes(*args
, **kwargs
):
805 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
807 Get the default attributes for this class. This is useful if you want
808 to use the same font or colour in your own control as in a standard
809 control -- which is a much better idea than hard coding specific
810 colours or fonts which might look completely out of place on the users
811 system, especially if it uses themes.
813 The variant parameter is only relevant under Mac currently and is
814 ignore under other platforms. Under Mac, it will change the size of
815 the returned font. See SetWindowVariant for more about this.
817 return _controls_
.Gauge_GetClassDefaultAttributes(*args
, **kwargs
)
819 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
821 class GaugePtr(Gauge
):
822 def __init__(self
, this
):
824 if not hasattr(self
,"thisown"): self
.thisown
= 0
825 self
.__class
__ = Gauge
826 _controls_
.Gauge_swigregister(GaugePtr
)
827 GaugeNameStr
= cvar
.GaugeNameStr
829 def PreGauge(*args
, **kwargs
):
830 """PreGauge() -> Gauge"""
831 val
= _controls_
.new_PreGauge(*args
, **kwargs
)
835 def Gauge_GetClassDefaultAttributes(*args
, **kwargs
):
837 Gauge_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
839 Get the default attributes for this class. This is useful if you want
840 to use the same font or colour in your own control as in a standard
841 control -- which is a much better idea than hard coding specific
842 colours or fonts which might look completely out of place on the users
843 system, especially if it uses themes.
845 The variant parameter is only relevant under Mac currently and is
846 ignore under other platforms. Under Mac, it will change the size of
847 the returned font. See SetWindowVariant for more about this.
849 return _controls_
.Gauge_GetClassDefaultAttributes(*args
, **kwargs
)
851 #---------------------------------------------------------------------------
853 class StaticBox(_core
.Control
):
855 return "<%s.%s; proxy of C++ wxStaticBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
856 def __init__(self
, *args
, **kwargs
):
858 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
859 Size size=DefaultSize, long style=0,
860 String name=StaticBoxNameStr) -> StaticBox
862 newobj
= _controls_
.new_StaticBox(*args
, **kwargs
)
863 self
.this
= newobj
.this
866 self
._setOORInfo
(self
)
868 def Create(*args
, **kwargs
):
870 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
871 Size size=DefaultSize, long style=0,
872 String name=StaticBoxNameStr) -> bool
874 return _controls_
.StaticBox_Create(*args
, **kwargs
)
876 def GetClassDefaultAttributes(*args
, **kwargs
):
878 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
880 Get the default attributes for this class. This is useful if you want
881 to use the same font or colour in your own control as in a standard
882 control -- which is a much better idea than hard coding specific
883 colours or fonts which might look completely out of place on the users
884 system, especially if it uses themes.
886 The variant parameter is only relevant under Mac currently and is
887 ignore under other platforms. Under Mac, it will change the size of
888 the returned font. See SetWindowVariant for more about this.
890 return _controls_
.StaticBox_GetClassDefaultAttributes(*args
, **kwargs
)
892 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
894 class StaticBoxPtr(StaticBox
):
895 def __init__(self
, this
):
897 if not hasattr(self
,"thisown"): self
.thisown
= 0
898 self
.__class
__ = StaticBox
899 _controls_
.StaticBox_swigregister(StaticBoxPtr
)
900 StaticBitmapNameStr
= cvar
.StaticBitmapNameStr
901 StaticBoxNameStr
= cvar
.StaticBoxNameStr
902 StaticTextNameStr
= cvar
.StaticTextNameStr
904 def PreStaticBox(*args
, **kwargs
):
905 """PreStaticBox() -> StaticBox"""
906 val
= _controls_
.new_PreStaticBox(*args
, **kwargs
)
910 def StaticBox_GetClassDefaultAttributes(*args
, **kwargs
):
912 StaticBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
914 Get the default attributes for this class. This is useful if you want
915 to use the same font or colour in your own control as in a standard
916 control -- which is a much better idea than hard coding specific
917 colours or fonts which might look completely out of place on the users
918 system, especially if it uses themes.
920 The variant parameter is only relevant under Mac currently and is
921 ignore under other platforms. Under Mac, it will change the size of
922 the returned font. See SetWindowVariant for more about this.
924 return _controls_
.StaticBox_GetClassDefaultAttributes(*args
, **kwargs
)
926 #---------------------------------------------------------------------------
928 class StaticLine(_core
.Control
):
930 return "<%s.%s; proxy of C++ wxStaticLine instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
931 def __init__(self
, *args
, **kwargs
):
933 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
934 long style=LI_HORIZONTAL,
935 String name=StaticTextNameStr) -> StaticLine
937 newobj
= _controls_
.new_StaticLine(*args
, **kwargs
)
938 self
.this
= newobj
.this
941 self
._setOORInfo
(self
)
943 def Create(*args
, **kwargs
):
945 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
946 long style=LI_HORIZONTAL,
947 String name=StaticTextNameStr) -> bool
949 return _controls_
.StaticLine_Create(*args
, **kwargs
)
951 def IsVertical(*args
, **kwargs
):
952 """IsVertical(self) -> bool"""
953 return _controls_
.StaticLine_IsVertical(*args
, **kwargs
)
955 def GetDefaultSize(*args
, **kwargs
):
956 """GetDefaultSize() -> int"""
957 return _controls_
.StaticLine_GetDefaultSize(*args
, **kwargs
)
959 GetDefaultSize
= staticmethod(GetDefaultSize
)
960 def GetClassDefaultAttributes(*args
, **kwargs
):
962 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
964 Get the default attributes for this class. This is useful if you want
965 to use the same font or colour in your own control as in a standard
966 control -- which is a much better idea than hard coding specific
967 colours or fonts which might look completely out of place on the users
968 system, especially if it uses themes.
970 The variant parameter is only relevant under Mac currently and is
971 ignore under other platforms. Under Mac, it will change the size of
972 the returned font. See SetWindowVariant for more about this.
974 return _controls_
.StaticLine_GetClassDefaultAttributes(*args
, **kwargs
)
976 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
978 class StaticLinePtr(StaticLine
):
979 def __init__(self
, this
):
981 if not hasattr(self
,"thisown"): self
.thisown
= 0
982 self
.__class
__ = StaticLine
983 _controls_
.StaticLine_swigregister(StaticLinePtr
)
985 def PreStaticLine(*args
, **kwargs
):
986 """PreStaticLine() -> StaticLine"""
987 val
= _controls_
.new_PreStaticLine(*args
, **kwargs
)
991 def StaticLine_GetDefaultSize(*args
, **kwargs
):
992 """StaticLine_GetDefaultSize() -> int"""
993 return _controls_
.StaticLine_GetDefaultSize(*args
, **kwargs
)
995 def StaticLine_GetClassDefaultAttributes(*args
, **kwargs
):
997 StaticLine_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
999 Get the default attributes for this class. This is useful if you want
1000 to use the same font or colour in your own control as in a standard
1001 control -- which is a much better idea than hard coding specific
1002 colours or fonts which might look completely out of place on the users
1003 system, especially if it uses themes.
1005 The variant parameter is only relevant under Mac currently and is
1006 ignore under other platforms. Under Mac, it will change the size of
1007 the returned font. See SetWindowVariant for more about this.
1009 return _controls_
.StaticLine_GetClassDefaultAttributes(*args
, **kwargs
)
1011 #---------------------------------------------------------------------------
1013 class StaticText(_core
.Control
):
1015 return "<%s.%s; proxy of C++ wxStaticText instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1016 def __init__(self
, *args
, **kwargs
):
1018 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
1019 Size size=DefaultSize, long style=0,
1020 String name=StaticTextNameStr) -> StaticText
1022 newobj
= _controls_
.new_StaticText(*args
, **kwargs
)
1023 self
.this
= newobj
.this
1026 self
._setOORInfo
(self
)
1028 def Create(*args
, **kwargs
):
1030 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
1031 Size size=DefaultSize, long style=0,
1032 String name=StaticTextNameStr) -> bool
1034 return _controls_
.StaticText_Create(*args
, **kwargs
)
1036 def GetClassDefaultAttributes(*args
, **kwargs
):
1038 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1040 Get the default attributes for this class. This is useful if you want
1041 to use the same font or colour in your own control as in a standard
1042 control -- which is a much better idea than hard coding specific
1043 colours or fonts which might look completely out of place on the users
1044 system, especially if it uses themes.
1046 The variant parameter is only relevant under Mac currently and is
1047 ignore under other platforms. Under Mac, it will change the size of
1048 the returned font. See SetWindowVariant for more about this.
1050 return _controls_
.StaticText_GetClassDefaultAttributes(*args
, **kwargs
)
1052 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1054 class StaticTextPtr(StaticText
):
1055 def __init__(self
, this
):
1057 if not hasattr(self
,"thisown"): self
.thisown
= 0
1058 self
.__class
__ = StaticText
1059 _controls_
.StaticText_swigregister(StaticTextPtr
)
1061 def PreStaticText(*args
, **kwargs
):
1062 """PreStaticText() -> StaticText"""
1063 val
= _controls_
.new_PreStaticText(*args
, **kwargs
)
1067 def StaticText_GetClassDefaultAttributes(*args
, **kwargs
):
1069 StaticText_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1071 Get the default attributes for this class. This is useful if you want
1072 to use the same font or colour in your own control as in a standard
1073 control -- which is a much better idea than hard coding specific
1074 colours or fonts which might look completely out of place on the users
1075 system, especially if it uses themes.
1077 The variant parameter is only relevant under Mac currently and is
1078 ignore under other platforms. Under Mac, it will change the size of
1079 the returned font. See SetWindowVariant for more about this.
1081 return _controls_
.StaticText_GetClassDefaultAttributes(*args
, **kwargs
)
1083 #---------------------------------------------------------------------------
1085 class StaticBitmap(_core
.Control
):
1087 return "<%s.%s; proxy of C++ wxStaticBitmap instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1088 def __init__(self
, *args
, **kwargs
):
1090 __init__(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
1091 Size size=DefaultSize, long style=0,
1092 String name=StaticBitmapNameStr) -> StaticBitmap
1094 newobj
= _controls_
.new_StaticBitmap(*args
, **kwargs
)
1095 self
.this
= newobj
.this
1098 self
._setOORInfo
(self
)
1100 def Create(*args
, **kwargs
):
1102 Create(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
1103 Size size=DefaultSize, long style=0,
1104 String name=StaticBitmapNameStr) -> bool
1106 return _controls_
.StaticBitmap_Create(*args
, **kwargs
)
1108 def GetBitmap(*args
, **kwargs
):
1109 """GetBitmap(self) -> Bitmap"""
1110 return _controls_
.StaticBitmap_GetBitmap(*args
, **kwargs
)
1112 def SetBitmap(*args
, **kwargs
):
1113 """SetBitmap(self, Bitmap bitmap)"""
1114 return _controls_
.StaticBitmap_SetBitmap(*args
, **kwargs
)
1116 def SetIcon(*args
, **kwargs
):
1117 """SetIcon(self, Icon icon)"""
1118 return _controls_
.StaticBitmap_SetIcon(*args
, **kwargs
)
1120 def GetClassDefaultAttributes(*args
, **kwargs
):
1122 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1124 Get the default attributes for this class. This is useful if you want
1125 to use the same font or colour in your own control as in a standard
1126 control -- which is a much better idea than hard coding specific
1127 colours or fonts which might look completely out of place on the users
1128 system, especially if it uses themes.
1130 The variant parameter is only relevant under Mac currently and is
1131 ignore under other platforms. Under Mac, it will change the size of
1132 the returned font. See SetWindowVariant for more about this.
1134 return _controls_
.StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
)
1136 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1138 class StaticBitmapPtr(StaticBitmap
):
1139 def __init__(self
, this
):
1141 if not hasattr(self
,"thisown"): self
.thisown
= 0
1142 self
.__class
__ = StaticBitmap
1143 _controls_
.StaticBitmap_swigregister(StaticBitmapPtr
)
1145 def PreStaticBitmap(*args
, **kwargs
):
1146 """PreStaticBitmap() -> StaticBitmap"""
1147 val
= _controls_
.new_PreStaticBitmap(*args
, **kwargs
)
1151 def StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
):
1153 StaticBitmap_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1155 Get the default attributes for this class. This is useful if you want
1156 to use the same font or colour in your own control as in a standard
1157 control -- which is a much better idea than hard coding specific
1158 colours or fonts which might look completely out of place on the users
1159 system, especially if it uses themes.
1161 The variant parameter is only relevant under Mac currently and is
1162 ignore under other platforms. Under Mac, it will change the size of
1163 the returned font. See SetWindowVariant for more about this.
1165 return _controls_
.StaticBitmap_GetClassDefaultAttributes(*args
, **kwargs
)
1167 #---------------------------------------------------------------------------
1169 class ListBox(_core
.ControlWithItems
):
1171 return "<%s.%s; proxy of C++ wxListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1172 def __init__(self
, *args
, **kwargs
):
1174 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1175 wxArrayString choices=wxPyEmptyStringArray,
1176 long style=0, Validator validator=DefaultValidator,
1177 String name=ListBoxNameStr) -> ListBox
1179 newobj
= _controls_
.new_ListBox(*args
, **kwargs
)
1180 self
.this
= newobj
.this
1183 self
._setOORInfo
(self
)
1185 def Create(*args
, **kwargs
):
1187 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1188 wxArrayString choices=wxPyEmptyStringArray,
1189 long style=0, Validator validator=DefaultValidator,
1190 String name=ListBoxNameStr) -> bool
1192 return _controls_
.ListBox_Create(*args
, **kwargs
)
1194 def Insert(*args
, **kwargs
):
1196 Insert(self, String item, int pos, PyObject clientData=None)
1198 Insert an item into the control before the item at the ``pos`` index,
1199 optionally associating some data object with the item.
1201 return _controls_
.ListBox_Insert(*args
, **kwargs
)
1203 def InsertItems(*args
, **kwargs
):
1204 """InsertItems(self, wxArrayString items, int pos)"""
1205 return _controls_
.ListBox_InsertItems(*args
, **kwargs
)
1207 def Set(*args
, **kwargs
):
1208 """Set(self, wxArrayString items)"""
1209 return _controls_
.ListBox_Set(*args
, **kwargs
)
1211 def IsSelected(*args
, **kwargs
):
1212 """IsSelected(self, int n) -> bool"""
1213 return _controls_
.ListBox_IsSelected(*args
, **kwargs
)
1215 def SetSelection(*args
, **kwargs
):
1216 """SetSelection(self, int n, bool select=True)"""
1217 return _controls_
.ListBox_SetSelection(*args
, **kwargs
)
1219 def Select(*args
, **kwargs
):
1223 Sets the item at index 'n' to be the selected item.
1225 return _controls_
.ListBox_Select(*args
, **kwargs
)
1227 def Deselect(*args
, **kwargs
):
1228 """Deselect(self, int n)"""
1229 return _controls_
.ListBox_Deselect(*args
, **kwargs
)
1231 def DeselectAll(*args
, **kwargs
):
1232 """DeselectAll(self, int itemToLeaveSelected=-1)"""
1233 return _controls_
.ListBox_DeselectAll(*args
, **kwargs
)
1235 def SetStringSelection(*args
, **kwargs
):
1236 """SetStringSelection(self, String s, bool select=True) -> bool"""
1237 return _controls_
.ListBox_SetStringSelection(*args
, **kwargs
)
1239 def GetSelections(*args
, **kwargs
):
1240 """GetSelections(self) -> PyObject"""
1241 return _controls_
.ListBox_GetSelections(*args
, **kwargs
)
1243 def SetFirstItem(*args
, **kwargs
):
1244 """SetFirstItem(self, int n)"""
1245 return _controls_
.ListBox_SetFirstItem(*args
, **kwargs
)
1247 def SetFirstItemStr(*args
, **kwargs
):
1248 """SetFirstItemStr(self, String s)"""
1249 return _controls_
.ListBox_SetFirstItemStr(*args
, **kwargs
)
1251 def EnsureVisible(*args
, **kwargs
):
1252 """EnsureVisible(self, int n)"""
1253 return _controls_
.ListBox_EnsureVisible(*args
, **kwargs
)
1255 def AppendAndEnsureVisible(*args
, **kwargs
):
1256 """AppendAndEnsureVisible(self, String s)"""
1257 return _controls_
.ListBox_AppendAndEnsureVisible(*args
, **kwargs
)
1259 def IsSorted(*args
, **kwargs
):
1260 """IsSorted(self) -> bool"""
1261 return _controls_
.ListBox_IsSorted(*args
, **kwargs
)
1263 def SetItemForegroundColour(*args
, **kwargs
):
1264 """SetItemForegroundColour(self, int item, Colour c)"""
1265 return _controls_
.ListBox_SetItemForegroundColour(*args
, **kwargs
)
1267 def SetItemBackgroundColour(*args
, **kwargs
):
1268 """SetItemBackgroundColour(self, int item, Colour c)"""
1269 return _controls_
.ListBox_SetItemBackgroundColour(*args
, **kwargs
)
1271 def SetItemFont(*args
, **kwargs
):
1272 """SetItemFont(self, int item, Font f)"""
1273 return _controls_
.ListBox_SetItemFont(*args
, **kwargs
)
1275 def GetClassDefaultAttributes(*args
, **kwargs
):
1277 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1279 Get the default attributes for this class. This is useful if you want
1280 to use the same font or colour in your own control as in a standard
1281 control -- which is a much better idea than hard coding specific
1282 colours or fonts which might look completely out of place on the users
1283 system, especially if it uses themes.
1285 The variant parameter is only relevant under Mac currently and is
1286 ignore under other platforms. Under Mac, it will change the size of
1287 the returned font. See SetWindowVariant for more about this.
1289 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1291 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1293 class ListBoxPtr(ListBox
):
1294 def __init__(self
, this
):
1296 if not hasattr(self
,"thisown"): self
.thisown
= 0
1297 self
.__class
__ = ListBox
1298 _controls_
.ListBox_swigregister(ListBoxPtr
)
1299 ListBoxNameStr
= cvar
.ListBoxNameStr
1301 def PreListBox(*args
, **kwargs
):
1302 """PreListBox() -> ListBox"""
1303 val
= _controls_
.new_PreListBox(*args
, **kwargs
)
1307 def ListBox_GetClassDefaultAttributes(*args
, **kwargs
):
1309 ListBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1311 Get the default attributes for this class. This is useful if you want
1312 to use the same font or colour in your own control as in a standard
1313 control -- which is a much better idea than hard coding specific
1314 colours or fonts which might look completely out of place on the users
1315 system, especially if it uses themes.
1317 The variant parameter is only relevant under Mac currently and is
1318 ignore under other platforms. Under Mac, it will change the size of
1319 the returned font. See SetWindowVariant for more about this.
1321 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1323 #---------------------------------------------------------------------------
1325 class CheckListBox(ListBox
):
1327 return "<%s.%s; proxy of C++ wxCheckListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1328 def __init__(self
, *args
, **kwargs
):
1330 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1331 wxArrayString choices=wxPyEmptyStringArray,
1332 long style=0, Validator validator=DefaultValidator,
1333 String name=ListBoxNameStr) -> CheckListBox
1335 newobj
= _controls_
.new_CheckListBox(*args
, **kwargs
)
1336 self
.this
= newobj
.this
1339 self
._setOORInfo
(self
)
1341 def Create(*args
, **kwargs
):
1343 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1344 wxArrayString choices=wxPyEmptyStringArray,
1345 long style=0, Validator validator=DefaultValidator,
1346 String name=ListBoxNameStr) -> bool
1348 return _controls_
.CheckListBox_Create(*args
, **kwargs
)
1350 def IsChecked(*args
, **kwargs
):
1351 """IsChecked(self, int index) -> bool"""
1352 return _controls_
.CheckListBox_IsChecked(*args
, **kwargs
)
1354 def Check(*args
, **kwargs
):
1355 """Check(self, int index, int check=True)"""
1356 return _controls_
.CheckListBox_Check(*args
, **kwargs
)
1358 def GetItemHeight(*args
, **kwargs
):
1359 """GetItemHeight(self) -> int"""
1360 return _controls_
.CheckListBox_GetItemHeight(*args
, **kwargs
)
1362 def HitTest(*args
, **kwargs
):
1364 HitTest(self, Point pt) -> int
1366 Test where the given (in client coords) point lies
1368 return _controls_
.CheckListBox_HitTest(*args
, **kwargs
)
1370 def HitTestXY(*args
, **kwargs
):
1372 HitTestXY(self, int x, int y) -> int
1374 Test where the given (in client coords) point lies
1376 return _controls_
.CheckListBox_HitTestXY(*args
, **kwargs
)
1379 class CheckListBoxPtr(CheckListBox
):
1380 def __init__(self
, this
):
1382 if not hasattr(self
,"thisown"): self
.thisown
= 0
1383 self
.__class
__ = CheckListBox
1384 _controls_
.CheckListBox_swigregister(CheckListBoxPtr
)
1386 def PreCheckListBox(*args
, **kwargs
):
1387 """PreCheckListBox() -> CheckListBox"""
1388 val
= _controls_
.new_PreCheckListBox(*args
, **kwargs
)
1392 #---------------------------------------------------------------------------
1394 TE_NO_VSCROLL
= _controls_
.TE_NO_VSCROLL
1395 TE_AUTO_SCROLL
= _controls_
.TE_AUTO_SCROLL
1396 TE_READONLY
= _controls_
.TE_READONLY
1397 TE_MULTILINE
= _controls_
.TE_MULTILINE
1398 TE_PROCESS_TAB
= _controls_
.TE_PROCESS_TAB
1399 TE_LEFT
= _controls_
.TE_LEFT
1400 TE_CENTER
= _controls_
.TE_CENTER
1401 TE_RIGHT
= _controls_
.TE_RIGHT
1402 TE_CENTRE
= _controls_
.TE_CENTRE
1403 TE_RICH
= _controls_
.TE_RICH
1404 TE_PROCESS_ENTER
= _controls_
.TE_PROCESS_ENTER
1405 TE_PASSWORD
= _controls_
.TE_PASSWORD
1406 TE_AUTO_URL
= _controls_
.TE_AUTO_URL
1407 TE_NOHIDESEL
= _controls_
.TE_NOHIDESEL
1408 TE_DONTWRAP
= _controls_
.TE_DONTWRAP
1409 TE_LINEWRAP
= _controls_
.TE_LINEWRAP
1410 TE_WORDWRAP
= _controls_
.TE_WORDWRAP
1411 TE_RICH2
= _controls_
.TE_RICH2
1412 TEXT_ALIGNMENT_DEFAULT
= _controls_
.TEXT_ALIGNMENT_DEFAULT
1413 TEXT_ALIGNMENT_LEFT
= _controls_
.TEXT_ALIGNMENT_LEFT
1414 TEXT_ALIGNMENT_CENTRE
= _controls_
.TEXT_ALIGNMENT_CENTRE
1415 TEXT_ALIGNMENT_CENTER
= _controls_
.TEXT_ALIGNMENT_CENTER
1416 TEXT_ALIGNMENT_RIGHT
= _controls_
.TEXT_ALIGNMENT_RIGHT
1417 TEXT_ALIGNMENT_JUSTIFIED
= _controls_
.TEXT_ALIGNMENT_JUSTIFIED
1418 TEXT_ATTR_TEXT_COLOUR
= _controls_
.TEXT_ATTR_TEXT_COLOUR
1419 TEXT_ATTR_BACKGROUND_COLOUR
= _controls_
.TEXT_ATTR_BACKGROUND_COLOUR
1420 TEXT_ATTR_FONT_FACE
= _controls_
.TEXT_ATTR_FONT_FACE
1421 TEXT_ATTR_FONT_SIZE
= _controls_
.TEXT_ATTR_FONT_SIZE
1422 TEXT_ATTR_FONT_WEIGHT
= _controls_
.TEXT_ATTR_FONT_WEIGHT
1423 TEXT_ATTR_FONT_ITALIC
= _controls_
.TEXT_ATTR_FONT_ITALIC
1424 TEXT_ATTR_FONT_UNDERLINE
= _controls_
.TEXT_ATTR_FONT_UNDERLINE
1425 TEXT_ATTR_FONT
= _controls_
.TEXT_ATTR_FONT
1426 TEXT_ATTR_ALIGNMENT
= _controls_
.TEXT_ATTR_ALIGNMENT
1427 TEXT_ATTR_LEFT_INDENT
= _controls_
.TEXT_ATTR_LEFT_INDENT
1428 TEXT_ATTR_RIGHT_INDENT
= _controls_
.TEXT_ATTR_RIGHT_INDENT
1429 TEXT_ATTR_TABS
= _controls_
.TEXT_ATTR_TABS
1430 TE_HT_UNKNOWN
= _controls_
.TE_HT_UNKNOWN
1431 TE_HT_BEFORE
= _controls_
.TE_HT_BEFORE
1432 TE_HT_ON_TEXT
= _controls_
.TE_HT_ON_TEXT
1433 TE_HT_BELOW
= _controls_
.TE_HT_BELOW
1434 TE_HT_BEYOND
= _controls_
.TE_HT_BEYOND
1435 class TextAttr(object):
1437 return "<%s.%s; proxy of C++ wxTextAttr instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1438 def __init__(self
, *args
):
1440 __init__(self) -> TextAttr
1441 __init__(self, Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
1442 int alignment=TEXT_ALIGNMENT_DEFAULT) -> TextAttr
1444 newobj
= _controls_
.new_TextAttr(*args
)
1445 self
.this
= newobj
.this
1448 def __del__(self
, destroy
=_controls_
.delete_TextAttr
):
1451 if self
.thisown
: destroy(self
)
1454 def Init(*args
, **kwargs
):
1456 return _controls_
.TextAttr_Init(*args
, **kwargs
)
1458 def SetTextColour(*args
, **kwargs
):
1459 """SetTextColour(self, Colour colText)"""
1460 return _controls_
.TextAttr_SetTextColour(*args
, **kwargs
)
1462 def SetBackgroundColour(*args
, **kwargs
):
1463 """SetBackgroundColour(self, Colour colBack)"""
1464 return _controls_
.TextAttr_SetBackgroundColour(*args
, **kwargs
)
1466 def SetFont(*args
, **kwargs
):
1467 """SetFont(self, Font font, long flags=TEXT_ATTR_FONT)"""
1468 return _controls_
.TextAttr_SetFont(*args
, **kwargs
)
1470 def SetAlignment(*args
, **kwargs
):
1471 """SetAlignment(self, int alignment)"""
1472 return _controls_
.TextAttr_SetAlignment(*args
, **kwargs
)
1474 def SetTabs(*args
, **kwargs
):
1475 """SetTabs(self, wxArrayInt tabs)"""
1476 return _controls_
.TextAttr_SetTabs(*args
, **kwargs
)
1478 def SetLeftIndent(*args
, **kwargs
):
1479 """SetLeftIndent(self, int indent)"""
1480 return _controls_
.TextAttr_SetLeftIndent(*args
, **kwargs
)
1482 def SetRightIndent(*args
, **kwargs
):
1483 """SetRightIndent(self, int indent)"""
1484 return _controls_
.TextAttr_SetRightIndent(*args
, **kwargs
)
1486 def SetFlags(*args
, **kwargs
):
1487 """SetFlags(self, long flags)"""
1488 return _controls_
.TextAttr_SetFlags(*args
, **kwargs
)
1490 def HasTextColour(*args
, **kwargs
):
1491 """HasTextColour(self) -> bool"""
1492 return _controls_
.TextAttr_HasTextColour(*args
, **kwargs
)
1494 def HasBackgroundColour(*args
, **kwargs
):
1495 """HasBackgroundColour(self) -> bool"""
1496 return _controls_
.TextAttr_HasBackgroundColour(*args
, **kwargs
)
1498 def HasFont(*args
, **kwargs
):
1499 """HasFont(self) -> bool"""
1500 return _controls_
.TextAttr_HasFont(*args
, **kwargs
)
1502 def HasAlignment(*args
, **kwargs
):
1503 """HasAlignment(self) -> bool"""
1504 return _controls_
.TextAttr_HasAlignment(*args
, **kwargs
)
1506 def HasTabs(*args
, **kwargs
):
1507 """HasTabs(self) -> bool"""
1508 return _controls_
.TextAttr_HasTabs(*args
, **kwargs
)
1510 def HasLeftIndent(*args
, **kwargs
):
1511 """HasLeftIndent(self) -> bool"""
1512 return _controls_
.TextAttr_HasLeftIndent(*args
, **kwargs
)
1514 def HasRightIndent(*args
, **kwargs
):
1515 """HasRightIndent(self) -> bool"""
1516 return _controls_
.TextAttr_HasRightIndent(*args
, **kwargs
)
1518 def HasFlag(*args
, **kwargs
):
1519 """HasFlag(self, long flag) -> bool"""
1520 return _controls_
.TextAttr_HasFlag(*args
, **kwargs
)
1522 def GetTextColour(*args
, **kwargs
):
1523 """GetTextColour(self) -> Colour"""
1524 return _controls_
.TextAttr_GetTextColour(*args
, **kwargs
)
1526 def GetBackgroundColour(*args
, **kwargs
):
1527 """GetBackgroundColour(self) -> Colour"""
1528 return _controls_
.TextAttr_GetBackgroundColour(*args
, **kwargs
)
1530 def GetFont(*args
, **kwargs
):
1531 """GetFont(self) -> Font"""
1532 return _controls_
.TextAttr_GetFont(*args
, **kwargs
)
1534 def GetAlignment(*args
, **kwargs
):
1535 """GetAlignment(self) -> int"""
1536 return _controls_
.TextAttr_GetAlignment(*args
, **kwargs
)
1538 def GetTabs(*args
, **kwargs
):
1539 """GetTabs(self) -> wxArrayInt"""
1540 return _controls_
.TextAttr_GetTabs(*args
, **kwargs
)
1542 def GetLeftIndent(*args
, **kwargs
):
1543 """GetLeftIndent(self) -> long"""
1544 return _controls_
.TextAttr_GetLeftIndent(*args
, **kwargs
)
1546 def GetRightIndent(*args
, **kwargs
):
1547 """GetRightIndent(self) -> long"""
1548 return _controls_
.TextAttr_GetRightIndent(*args
, **kwargs
)
1550 def GetFlags(*args
, **kwargs
):
1551 """GetFlags(self) -> long"""
1552 return _controls_
.TextAttr_GetFlags(*args
, **kwargs
)
1554 def IsDefault(*args
, **kwargs
):
1555 """IsDefault(self) -> bool"""
1556 return _controls_
.TextAttr_IsDefault(*args
, **kwargs
)
1558 def Combine(*args
, **kwargs
):
1559 """Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1560 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1562 Combine
= staticmethod(Combine
)
1564 class TextAttrPtr(TextAttr
):
1565 def __init__(self
, this
):
1567 if not hasattr(self
,"thisown"): self
.thisown
= 0
1568 self
.__class
__ = TextAttr
1569 _controls_
.TextAttr_swigregister(TextAttrPtr
)
1570 TextCtrlNameStr
= cvar
.TextCtrlNameStr
1572 def TextAttr_Combine(*args
, **kwargs
):
1573 """TextAttr_Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1574 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1576 class TextCtrl(_core
.Control
):
1578 return "<%s.%s; proxy of C++ wxTextCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1579 def __init__(self
, *args
, **kwargs
):
1581 __init__(self, Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
1582 Size size=DefaultSize,
1583 long style=0, Validator validator=DefaultValidator,
1584 String name=TextCtrlNameStr) -> TextCtrl
1586 newobj
= _controls_
.new_TextCtrl(*args
, **kwargs
)
1587 self
.this
= newobj
.this
1590 self
._setOORInfo
(self
)
1592 def Create(*args
, **kwargs
):
1594 Create(self, Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
1595 Size size=DefaultSize,
1596 long style=0, Validator validator=DefaultValidator,
1597 String name=TextCtrlNameStr) -> bool
1599 return _controls_
.TextCtrl_Create(*args
, **kwargs
)
1601 def GetValue(*args
, **kwargs
):
1602 """GetValue(self) -> String"""
1603 return _controls_
.TextCtrl_GetValue(*args
, **kwargs
)
1605 def SetValue(*args
, **kwargs
):
1606 """SetValue(self, String value)"""
1607 return _controls_
.TextCtrl_SetValue(*args
, **kwargs
)
1609 def GetRange(*args
, **kwargs
):
1610 """GetRange(self, long from, long to) -> String"""
1611 return _controls_
.TextCtrl_GetRange(*args
, **kwargs
)
1613 def GetLineLength(*args
, **kwargs
):
1614 """GetLineLength(self, long lineNo) -> int"""
1615 return _controls_
.TextCtrl_GetLineLength(*args
, **kwargs
)
1617 def GetLineText(*args
, **kwargs
):
1618 """GetLineText(self, long lineNo) -> String"""
1619 return _controls_
.TextCtrl_GetLineText(*args
, **kwargs
)
1621 def GetNumberOfLines(*args
, **kwargs
):
1622 """GetNumberOfLines(self) -> int"""
1623 return _controls_
.TextCtrl_GetNumberOfLines(*args
, **kwargs
)
1625 def IsModified(*args
, **kwargs
):
1626 """IsModified(self) -> bool"""
1627 return _controls_
.TextCtrl_IsModified(*args
, **kwargs
)
1629 def IsEditable(*args
, **kwargs
):
1630 """IsEditable(self) -> bool"""
1631 return _controls_
.TextCtrl_IsEditable(*args
, **kwargs
)
1633 def IsSingleLine(*args
, **kwargs
):
1634 """IsSingleLine(self) -> bool"""
1635 return _controls_
.TextCtrl_IsSingleLine(*args
, **kwargs
)
1637 def IsMultiLine(*args
, **kwargs
):
1638 """IsMultiLine(self) -> bool"""
1639 return _controls_
.TextCtrl_IsMultiLine(*args
, **kwargs
)
1641 def GetSelection(*args
, **kwargs
):
1642 """GetSelection() -> (from, to)"""
1643 return _controls_
.TextCtrl_GetSelection(*args
, **kwargs
)
1645 def GetStringSelection(*args
, **kwargs
):
1646 """GetStringSelection(self) -> String"""
1647 return _controls_
.TextCtrl_GetStringSelection(*args
, **kwargs
)
1649 def Clear(*args
, **kwargs
):
1651 return _controls_
.TextCtrl_Clear(*args
, **kwargs
)
1653 def Replace(*args
, **kwargs
):
1654 """Replace(self, long from, long to, String value)"""
1655 return _controls_
.TextCtrl_Replace(*args
, **kwargs
)
1657 def Remove(*args
, **kwargs
):
1658 """Remove(self, long from, long to)"""
1659 return _controls_
.TextCtrl_Remove(*args
, **kwargs
)
1661 def LoadFile(*args
, **kwargs
):
1662 """LoadFile(self, String file) -> bool"""
1663 return _controls_
.TextCtrl_LoadFile(*args
, **kwargs
)
1665 def SaveFile(*args
, **kwargs
):
1666 """SaveFile(self, String file=EmptyString) -> bool"""
1667 return _controls_
.TextCtrl_SaveFile(*args
, **kwargs
)
1669 def MarkDirty(*args
, **kwargs
):
1670 """MarkDirty(self)"""
1671 return _controls_
.TextCtrl_MarkDirty(*args
, **kwargs
)
1673 def DiscardEdits(*args
, **kwargs
):
1674 """DiscardEdits(self)"""
1675 return _controls_
.TextCtrl_DiscardEdits(*args
, **kwargs
)
1677 def SetMaxLength(*args
, **kwargs
):
1678 """SetMaxLength(self, unsigned long len)"""
1679 return _controls_
.TextCtrl_SetMaxLength(*args
, **kwargs
)
1681 def WriteText(*args
, **kwargs
):
1682 """WriteText(self, String text)"""
1683 return _controls_
.TextCtrl_WriteText(*args
, **kwargs
)
1685 def AppendText(*args
, **kwargs
):
1686 """AppendText(self, String text)"""
1687 return _controls_
.TextCtrl_AppendText(*args
, **kwargs
)
1689 def EmulateKeyPress(*args
, **kwargs
):
1690 """EmulateKeyPress(self, KeyEvent event) -> bool"""
1691 return _controls_
.TextCtrl_EmulateKeyPress(*args
, **kwargs
)
1693 def SetStyle(*args
, **kwargs
):
1694 """SetStyle(self, long start, long end, TextAttr style) -> bool"""
1695 return _controls_
.TextCtrl_SetStyle(*args
, **kwargs
)
1697 def GetStyle(*args
, **kwargs
):
1698 """GetStyle(self, long position, TextAttr style) -> bool"""
1699 return _controls_
.TextCtrl_GetStyle(*args
, **kwargs
)
1701 def SetDefaultStyle(*args
, **kwargs
):
1702 """SetDefaultStyle(self, TextAttr style) -> bool"""
1703 return _controls_
.TextCtrl_SetDefaultStyle(*args
, **kwargs
)
1705 def GetDefaultStyle(*args
, **kwargs
):
1706 """GetDefaultStyle(self) -> TextAttr"""
1707 return _controls_
.TextCtrl_GetDefaultStyle(*args
, **kwargs
)
1709 def XYToPosition(*args
, **kwargs
):
1710 """XYToPosition(self, long x, long y) -> long"""
1711 return _controls_
.TextCtrl_XYToPosition(*args
, **kwargs
)
1713 def PositionToXY(*args
, **kwargs
):
1714 """PositionToXY(long pos) -> (x, y)"""
1715 return _controls_
.TextCtrl_PositionToXY(*args
, **kwargs
)
1717 def ShowPosition(*args
, **kwargs
):
1718 """ShowPosition(self, long pos)"""
1719 return _controls_
.TextCtrl_ShowPosition(*args
, **kwargs
)
1721 def HitTest(*args
, **kwargs
):
1722 """HitTest(Point pt) -> (result, row, col)"""
1723 return _controls_
.TextCtrl_HitTest(*args
, **kwargs
)
1725 def Copy(*args
, **kwargs
):
1727 return _controls_
.TextCtrl_Copy(*args
, **kwargs
)
1729 def Cut(*args
, **kwargs
):
1731 return _controls_
.TextCtrl_Cut(*args
, **kwargs
)
1733 def Paste(*args
, **kwargs
):
1735 return _controls_
.TextCtrl_Paste(*args
, **kwargs
)
1737 def CanCopy(*args
, **kwargs
):
1738 """CanCopy(self) -> bool"""
1739 return _controls_
.TextCtrl_CanCopy(*args
, **kwargs
)
1741 def CanCut(*args
, **kwargs
):
1742 """CanCut(self) -> bool"""
1743 return _controls_
.TextCtrl_CanCut(*args
, **kwargs
)
1745 def CanPaste(*args
, **kwargs
):
1746 """CanPaste(self) -> bool"""
1747 return _controls_
.TextCtrl_CanPaste(*args
, **kwargs
)
1749 def Undo(*args
, **kwargs
):
1751 return _controls_
.TextCtrl_Undo(*args
, **kwargs
)
1753 def Redo(*args
, **kwargs
):
1755 return _controls_
.TextCtrl_Redo(*args
, **kwargs
)
1757 def CanUndo(*args
, **kwargs
):
1758 """CanUndo(self) -> bool"""
1759 return _controls_
.TextCtrl_CanUndo(*args
, **kwargs
)
1761 def CanRedo(*args
, **kwargs
):
1762 """CanRedo(self) -> bool"""
1763 return _controls_
.TextCtrl_CanRedo(*args
, **kwargs
)
1765 def SetInsertionPoint(*args
, **kwargs
):
1766 """SetInsertionPoint(self, long pos)"""
1767 return _controls_
.TextCtrl_SetInsertionPoint(*args
, **kwargs
)
1769 def SetInsertionPointEnd(*args
, **kwargs
):
1770 """SetInsertionPointEnd(self)"""
1771 return _controls_
.TextCtrl_SetInsertionPointEnd(*args
, **kwargs
)
1773 def GetInsertionPoint(*args
, **kwargs
):
1774 """GetInsertionPoint(self) -> long"""
1775 return _controls_
.TextCtrl_GetInsertionPoint(*args
, **kwargs
)
1777 def GetLastPosition(*args
, **kwargs
):
1778 """GetLastPosition(self) -> long"""
1779 return _controls_
.TextCtrl_GetLastPosition(*args
, **kwargs
)
1781 def SetSelection(*args
, **kwargs
):
1782 """SetSelection(self, long from, long to)"""
1783 return _controls_
.TextCtrl_SetSelection(*args
, **kwargs
)
1785 def SelectAll(*args
, **kwargs
):
1786 """SelectAll(self)"""
1787 return _controls_
.TextCtrl_SelectAll(*args
, **kwargs
)
1789 def SetEditable(*args
, **kwargs
):
1790 """SetEditable(self, bool editable)"""
1791 return _controls_
.TextCtrl_SetEditable(*args
, **kwargs
)
1793 def write(*args
, **kwargs
):
1794 """write(self, String text)"""
1795 return _controls_
.TextCtrl_write(*args
, **kwargs
)
1797 def GetString(*args
, **kwargs
):
1798 """GetString(self, long from, long to) -> String"""
1799 return _controls_
.TextCtrl_GetString(*args
, **kwargs
)
1801 def GetClassDefaultAttributes(*args
, **kwargs
):
1803 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1805 Get the default attributes for this class. This is useful if you want
1806 to use the same font or colour in your own control as in a standard
1807 control -- which is a much better idea than hard coding specific
1808 colours or fonts which might look completely out of place on the users
1809 system, especially if it uses themes.
1811 The variant parameter is only relevant under Mac currently and is
1812 ignore under other platforms. Under Mac, it will change the size of
1813 the returned font. See SetWindowVariant for more about this.
1815 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1817 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1819 class TextCtrlPtr(TextCtrl
):
1820 def __init__(self
, this
):
1822 if not hasattr(self
,"thisown"): self
.thisown
= 0
1823 self
.__class
__ = TextCtrl
1824 _controls_
.TextCtrl_swigregister(TextCtrlPtr
)
1826 def PreTextCtrl(*args
, **kwargs
):
1827 """PreTextCtrl() -> TextCtrl"""
1828 val
= _controls_
.new_PreTextCtrl(*args
, **kwargs
)
1832 def TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
1834 TextCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1836 Get the default attributes for this class. This is useful if you want
1837 to use the same font or colour in your own control as in a standard
1838 control -- which is a much better idea than hard coding specific
1839 colours or fonts which might look completely out of place on the users
1840 system, especially if it uses themes.
1842 The variant parameter is only relevant under Mac currently and is
1843 ignore under other platforms. Under Mac, it will change the size of
1844 the returned font. See SetWindowVariant for more about this.
1846 return _controls_
.TextCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
1848 wxEVT_COMMAND_TEXT_UPDATED
= _controls_
.wxEVT_COMMAND_TEXT_UPDATED
1849 wxEVT_COMMAND_TEXT_ENTER
= _controls_
.wxEVT_COMMAND_TEXT_ENTER
1850 wxEVT_COMMAND_TEXT_URL
= _controls_
.wxEVT_COMMAND_TEXT_URL
1851 wxEVT_COMMAND_TEXT_MAXLEN
= _controls_
.wxEVT_COMMAND_TEXT_MAXLEN
1852 class TextUrlEvent(_core
.CommandEvent
):
1854 return "<%s.%s; proxy of C++ wxTextUrlEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1855 def __init__(self
, *args
, **kwargs
):
1856 """__init__(self, int winid, MouseEvent evtMouse, long start, long end) -> TextUrlEvent"""
1857 newobj
= _controls_
.new_TextUrlEvent(*args
, **kwargs
)
1858 self
.this
= newobj
.this
1861 def GetMouseEvent(*args
, **kwargs
):
1862 """GetMouseEvent(self) -> MouseEvent"""
1863 return _controls_
.TextUrlEvent_GetMouseEvent(*args
, **kwargs
)
1865 def GetURLStart(*args
, **kwargs
):
1866 """GetURLStart(self) -> long"""
1867 return _controls_
.TextUrlEvent_GetURLStart(*args
, **kwargs
)
1869 def GetURLEnd(*args
, **kwargs
):
1870 """GetURLEnd(self) -> long"""
1871 return _controls_
.TextUrlEvent_GetURLEnd(*args
, **kwargs
)
1874 class TextUrlEventPtr(TextUrlEvent
):
1875 def __init__(self
, this
):
1877 if not hasattr(self
,"thisown"): self
.thisown
= 0
1878 self
.__class
__ = TextUrlEvent
1879 _controls_
.TextUrlEvent_swigregister(TextUrlEventPtr
)
1881 EVT_TEXT
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED
, 1)
1882 EVT_TEXT_ENTER
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER
, 1)
1883 EVT_TEXT_URL
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_URL
, 1)
1884 EVT_TEXT_MAXLEN
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN
, 1)
1886 #---------------------------------------------------------------------------
1888 class ScrollBar(_core
.Control
):
1890 return "<%s.%s; proxy of C++ wxScrollBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1891 def __init__(self
, *args
, **kwargs
):
1893 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1894 Size size=DefaultSize, long style=SB_HORIZONTAL,
1895 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> ScrollBar
1897 newobj
= _controls_
.new_ScrollBar(*args
, **kwargs
)
1898 self
.this
= newobj
.this
1901 self
._setOORInfo
(self
)
1903 def Create(*args
, **kwargs
):
1905 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1906 Size size=DefaultSize, long style=SB_HORIZONTAL,
1907 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> bool
1909 Do the 2nd phase and create the GUI control.
1911 return _controls_
.ScrollBar_Create(*args
, **kwargs
)
1913 def GetThumbPosition(*args
, **kwargs
):
1914 """GetThumbPosition(self) -> int"""
1915 return _controls_
.ScrollBar_GetThumbPosition(*args
, **kwargs
)
1917 def GetThumbSize(*args
, **kwargs
):
1918 """GetThumbSize(self) -> int"""
1919 return _controls_
.ScrollBar_GetThumbSize(*args
, **kwargs
)
1921 GetThumbLength
= GetThumbSize
1922 def GetPageSize(*args
, **kwargs
):
1923 """GetPageSize(self) -> int"""
1924 return _controls_
.ScrollBar_GetPageSize(*args
, **kwargs
)
1926 def GetRange(*args
, **kwargs
):
1927 """GetRange(self) -> int"""
1928 return _controls_
.ScrollBar_GetRange(*args
, **kwargs
)
1930 def IsVertical(*args
, **kwargs
):
1931 """IsVertical(self) -> bool"""
1932 return _controls_
.ScrollBar_IsVertical(*args
, **kwargs
)
1934 def SetThumbPosition(*args
, **kwargs
):
1935 """SetThumbPosition(self, int viewStart)"""
1936 return _controls_
.ScrollBar_SetThumbPosition(*args
, **kwargs
)
1938 def SetScrollbar(*args
, **kwargs
):
1940 SetScrollbar(self, int position, int thumbSize, int range, int pageSize,
1943 Sets the scrollbar properties of a built-in scrollbar.
1945 return _controls_
.ScrollBar_SetScrollbar(*args
, **kwargs
)
1947 def GetClassDefaultAttributes(*args
, **kwargs
):
1949 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1951 Get the default attributes for this class. This is useful if you want
1952 to use the same font or colour in your own control as in a standard
1953 control -- which is a much better idea than hard coding specific
1954 colours or fonts which might look completely out of place on the users
1955 system, especially if it uses themes.
1957 The variant parameter is only relevant under Mac currently and is
1958 ignore under other platforms. Under Mac, it will change the size of
1959 the returned font. See SetWindowVariant for more about this.
1961 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
1963 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1965 class ScrollBarPtr(ScrollBar
):
1966 def __init__(self
, this
):
1968 if not hasattr(self
,"thisown"): self
.thisown
= 0
1969 self
.__class
__ = ScrollBar
1970 _controls_
.ScrollBar_swigregister(ScrollBarPtr
)
1971 ScrollBarNameStr
= cvar
.ScrollBarNameStr
1973 def PreScrollBar(*args
, **kwargs
):
1974 """PreScrollBar() -> ScrollBar"""
1975 val
= _controls_
.new_PreScrollBar(*args
, **kwargs
)
1979 def ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
):
1981 ScrollBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1983 Get the default attributes for this class. This is useful if you want
1984 to use the same font or colour in your own control as in a standard
1985 control -- which is a much better idea than hard coding specific
1986 colours or fonts which might look completely out of place on the users
1987 system, especially if it uses themes.
1989 The variant parameter is only relevant under Mac currently and is
1990 ignore under other platforms. Under Mac, it will change the size of
1991 the returned font. See SetWindowVariant for more about this.
1993 return _controls_
.ScrollBar_GetClassDefaultAttributes(*args
, **kwargs
)
1995 #---------------------------------------------------------------------------
1997 SP_HORIZONTAL
= _controls_
.SP_HORIZONTAL
1998 SP_VERTICAL
= _controls_
.SP_VERTICAL
1999 SP_ARROW_KEYS
= _controls_
.SP_ARROW_KEYS
2000 SP_WRAP
= _controls_
.SP_WRAP
2001 class SpinButton(_core
.Control
):
2003 return "<%s.%s; proxy of C++ wxSpinButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2004 def __init__(self
, *args
, **kwargs
):
2006 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2007 Size size=DefaultSize, long style=SP_HORIZONTAL,
2008 String name=SPIN_BUTTON_NAME) -> SpinButton
2010 newobj
= _controls_
.new_SpinButton(*args
, **kwargs
)
2011 self
.this
= newobj
.this
2014 self
._setOORInfo
(self
)
2016 def Create(*args
, **kwargs
):
2018 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2019 Size size=DefaultSize, long style=SP_HORIZONTAL,
2020 String name=SPIN_BUTTON_NAME) -> bool
2022 return _controls_
.SpinButton_Create(*args
, **kwargs
)
2024 def GetValue(*args
, **kwargs
):
2025 """GetValue(self) -> int"""
2026 return _controls_
.SpinButton_GetValue(*args
, **kwargs
)
2028 def GetMin(*args
, **kwargs
):
2029 """GetMin(self) -> int"""
2030 return _controls_
.SpinButton_GetMin(*args
, **kwargs
)
2032 def GetMax(*args
, **kwargs
):
2033 """GetMax(self) -> int"""
2034 return _controls_
.SpinButton_GetMax(*args
, **kwargs
)
2036 def SetValue(*args
, **kwargs
):
2037 """SetValue(self, int val)"""
2038 return _controls_
.SpinButton_SetValue(*args
, **kwargs
)
2040 def SetMin(*args
, **kwargs
):
2041 """SetMin(self, int minVal)"""
2042 return _controls_
.SpinButton_SetMin(*args
, **kwargs
)
2044 def SetMax(*args
, **kwargs
):
2045 """SetMax(self, int maxVal)"""
2046 return _controls_
.SpinButton_SetMax(*args
, **kwargs
)
2048 def SetRange(*args
, **kwargs
):
2049 """SetRange(self, int minVal, int maxVal)"""
2050 return _controls_
.SpinButton_SetRange(*args
, **kwargs
)
2052 def IsVertical(*args
, **kwargs
):
2053 """IsVertical(self) -> bool"""
2054 return _controls_
.SpinButton_IsVertical(*args
, **kwargs
)
2056 def GetClassDefaultAttributes(*args
, **kwargs
):
2058 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2060 Get the default attributes for this class. This is useful if you want
2061 to use the same font or colour in your own control as in a standard
2062 control -- which is a much better idea than hard coding specific
2063 colours or fonts which might look completely out of place on the users
2064 system, especially if it uses themes.
2066 The variant parameter is only relevant under Mac currently and is
2067 ignore under other platforms. Under Mac, it will change the size of
2068 the returned font. See SetWindowVariant for more about this.
2070 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2072 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2074 class SpinButtonPtr(SpinButton
):
2075 def __init__(self
, this
):
2077 if not hasattr(self
,"thisown"): self
.thisown
= 0
2078 self
.__class
__ = SpinButton
2079 _controls_
.SpinButton_swigregister(SpinButtonPtr
)
2080 SPIN_BUTTON_NAME
= cvar
.SPIN_BUTTON_NAME
2081 SpinCtrlNameStr
= cvar
.SpinCtrlNameStr
2083 def PreSpinButton(*args
, **kwargs
):
2084 """PreSpinButton() -> SpinButton"""
2085 val
= _controls_
.new_PreSpinButton(*args
, **kwargs
)
2089 def SpinButton_GetClassDefaultAttributes(*args
, **kwargs
):
2091 SpinButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2093 Get the default attributes for this class. This is useful if you want
2094 to use the same font or colour in your own control as in a standard
2095 control -- which is a much better idea than hard coding specific
2096 colours or fonts which might look completely out of place on the users
2097 system, especially if it uses themes.
2099 The variant parameter is only relevant under Mac currently and is
2100 ignore under other platforms. Under Mac, it will change the size of
2101 the returned font. See SetWindowVariant for more about this.
2103 return _controls_
.SpinButton_GetClassDefaultAttributes(*args
, **kwargs
)
2105 class SpinCtrl(_core
.Control
):
2107 return "<%s.%s; proxy of C++ wxSpinCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2108 def __init__(self
, *args
, **kwargs
):
2110 __init__(self, Window parent, int id=-1, String value=EmptyString,
2111 Point pos=DefaultPosition, Size size=DefaultSize,
2112 long style=SP_ARROW_KEYS, int min=0, int max=100,
2113 int initial=0, String name=SpinCtrlNameStr) -> SpinCtrl
2115 newobj
= _controls_
.new_SpinCtrl(*args
, **kwargs
)
2116 self
.this
= newobj
.this
2119 self
._setOORInfo
(self
)
2121 def Create(*args
, **kwargs
):
2123 Create(self, Window parent, int id=-1, String value=EmptyString,
2124 Point pos=DefaultPosition, Size size=DefaultSize,
2125 long style=SP_ARROW_KEYS, int min=0, int max=100,
2126 int initial=0, String name=SpinCtrlNameStr) -> bool
2128 return _controls_
.SpinCtrl_Create(*args
, **kwargs
)
2130 def GetValue(*args
, **kwargs
):
2131 """GetValue(self) -> int"""
2132 return _controls_
.SpinCtrl_GetValue(*args
, **kwargs
)
2134 def SetValue(*args
, **kwargs
):
2135 """SetValue(self, int value)"""
2136 return _controls_
.SpinCtrl_SetValue(*args
, **kwargs
)
2138 def SetValueString(*args
, **kwargs
):
2139 """SetValueString(self, String text)"""
2140 return _controls_
.SpinCtrl_SetValueString(*args
, **kwargs
)
2142 def SetRange(*args
, **kwargs
):
2143 """SetRange(self, int minVal, int maxVal)"""
2144 return _controls_
.SpinCtrl_SetRange(*args
, **kwargs
)
2146 def GetMin(*args
, **kwargs
):
2147 """GetMin(self) -> int"""
2148 return _controls_
.SpinCtrl_GetMin(*args
, **kwargs
)
2150 def GetMax(*args
, **kwargs
):
2151 """GetMax(self) -> int"""
2152 return _controls_
.SpinCtrl_GetMax(*args
, **kwargs
)
2154 def SetSelection(*args
, **kwargs
):
2155 """SetSelection(self, long from, long to)"""
2156 return _controls_
.SpinCtrl_SetSelection(*args
, **kwargs
)
2158 def GetClassDefaultAttributes(*args
, **kwargs
):
2160 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2162 Get the default attributes for this class. This is useful if you want
2163 to use the same font or colour in your own control as in a standard
2164 control -- which is a much better idea than hard coding specific
2165 colours or fonts which might look completely out of place on the users
2166 system, especially if it uses themes.
2168 The variant parameter is only relevant under Mac currently and is
2169 ignore under other platforms. Under Mac, it will change the size of
2170 the returned font. See SetWindowVariant for more about this.
2172 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2174 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2176 class SpinCtrlPtr(SpinCtrl
):
2177 def __init__(self
, this
):
2179 if not hasattr(self
,"thisown"): self
.thisown
= 0
2180 self
.__class
__ = SpinCtrl
2181 _controls_
.SpinCtrl_swigregister(SpinCtrlPtr
)
2183 def PreSpinCtrl(*args
, **kwargs
):
2184 """PreSpinCtrl() -> SpinCtrl"""
2185 val
= _controls_
.new_PreSpinCtrl(*args
, **kwargs
)
2189 def SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
2191 SpinCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2193 Get the default attributes for this class. This is useful if you want
2194 to use the same font or colour in your own control as in a standard
2195 control -- which is a much better idea than hard coding specific
2196 colours or fonts which might look completely out of place on the users
2197 system, especially if it uses themes.
2199 The variant parameter is only relevant under Mac currently and is
2200 ignore under other platforms. Under Mac, it will change the size of
2201 the returned font. See SetWindowVariant for more about this.
2203 return _controls_
.SpinCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2205 class SpinEvent(_core
.NotifyEvent
):
2207 return "<%s.%s; proxy of C++ wxSpinEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2208 def __init__(self
, *args
, **kwargs
):
2209 """__init__(self, wxEventType commandType=wxEVT_NULL, int winid=0) -> SpinEvent"""
2210 newobj
= _controls_
.new_SpinEvent(*args
, **kwargs
)
2211 self
.this
= newobj
.this
2214 def GetPosition(*args
, **kwargs
):
2215 """GetPosition(self) -> int"""
2216 return _controls_
.SpinEvent_GetPosition(*args
, **kwargs
)
2218 def SetPosition(*args
, **kwargs
):
2219 """SetPosition(self, int pos)"""
2220 return _controls_
.SpinEvent_SetPosition(*args
, **kwargs
)
2223 class SpinEventPtr(SpinEvent
):
2224 def __init__(self
, this
):
2226 if not hasattr(self
,"thisown"): self
.thisown
= 0
2227 self
.__class
__ = SpinEvent
2228 _controls_
.SpinEvent_swigregister(SpinEventPtr
)
2230 wxEVT_COMMAND_SPINCTRL_UPDATED
= _controls_
.wxEVT_COMMAND_SPINCTRL_UPDATED
2231 EVT_SPIN_UP
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEUP
, 1)
2232 EVT_SPIN_DOWN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEDOWN
, 1)
2233 EVT_SPIN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_THUMBTRACK
, 1)
2234 EVT_SPINCTRL
= wx
.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED
, 1)
2236 #---------------------------------------------------------------------------
2238 class RadioBox(_core
.Control
):
2240 return "<%s.%s; proxy of C++ wxRadioBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2241 def __init__(self
, *args
, **kwargs
):
2243 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
2244 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
2245 int majorDimension=0,
2246 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
2247 String name=RadioBoxNameStr) -> RadioBox
2249 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2250 newobj
= _controls_
.new_RadioBox(*args
, **kwargs
)
2251 self
.this
= newobj
.this
2254 self
._setOORInfo
(self
)
2256 def Create(*args
, **kwargs
):
2258 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
2259 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
2260 int majorDimension=0,
2261 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
2262 String name=RadioBoxNameStr) -> bool
2264 return _controls_
.RadioBox_Create(*args
, **kwargs
)
2266 def SetSelection(*args
, **kwargs
):
2267 """SetSelection(self, int n)"""
2268 return _controls_
.RadioBox_SetSelection(*args
, **kwargs
)
2270 def GetSelection(*args
, **kwargs
):
2271 """GetSelection(self) -> int"""
2272 return _controls_
.RadioBox_GetSelection(*args
, **kwargs
)
2274 def GetStringSelection(*args
, **kwargs
):
2275 """GetStringSelection(self) -> String"""
2276 return _controls_
.RadioBox_GetStringSelection(*args
, **kwargs
)
2278 def SetStringSelection(*args
, **kwargs
):
2279 """SetStringSelection(self, String s) -> bool"""
2280 return _controls_
.RadioBox_SetStringSelection(*args
, **kwargs
)
2282 def GetCount(*args
, **kwargs
):
2283 """GetCount(self) -> int"""
2284 return _controls_
.RadioBox_GetCount(*args
, **kwargs
)
2286 def FindString(*args
, **kwargs
):
2287 """FindString(self, String s) -> int"""
2288 return _controls_
.RadioBox_FindString(*args
, **kwargs
)
2290 def GetString(*args
, **kwargs
):
2291 """GetString(self, int n) -> String"""
2292 return _controls_
.RadioBox_GetString(*args
, **kwargs
)
2294 def SetString(*args
, **kwargs
):
2295 """SetString(self, int n, String label)"""
2296 return _controls_
.RadioBox_SetString(*args
, **kwargs
)
2298 GetItemLabel
= GetString
2299 SetItemLabel
= SetString
2300 def EnableItem(*args
, **kwargs
):
2301 """EnableItem(self, int n, bool enable=True)"""
2302 return _controls_
.RadioBox_EnableItem(*args
, **kwargs
)
2304 def ShowItem(*args
, **kwargs
):
2305 """ShowItem(self, int n, bool show=True)"""
2306 return _controls_
.RadioBox_ShowItem(*args
, **kwargs
)
2308 def GetColumnCount(*args
, **kwargs
):
2309 """GetColumnCount(self) -> int"""
2310 return _controls_
.RadioBox_GetColumnCount(*args
, **kwargs
)
2312 def GetRowCount(*args
, **kwargs
):
2313 """GetRowCount(self) -> int"""
2314 return _controls_
.RadioBox_GetRowCount(*args
, **kwargs
)
2316 def GetNextItem(*args
, **kwargs
):
2317 """GetNextItem(self, int item, int dir, long style) -> int"""
2318 return _controls_
.RadioBox_GetNextItem(*args
, **kwargs
)
2320 def GetClassDefaultAttributes(*args
, **kwargs
):
2322 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2324 Get the default attributes for this class. This is useful if you want
2325 to use the same font or colour in your own control as in a standard
2326 control -- which is a much better idea than hard coding specific
2327 colours or fonts which might look completely out of place on the users
2328 system, especially if it uses themes.
2330 The variant parameter is only relevant under Mac currently and is
2331 ignore under other platforms. Under Mac, it will change the size of
2332 the returned font. See SetWindowVariant for more about this.
2334 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2336 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2338 class RadioBoxPtr(RadioBox
):
2339 def __init__(self
, this
):
2341 if not hasattr(self
,"thisown"): self
.thisown
= 0
2342 self
.__class
__ = RadioBox
2343 _controls_
.RadioBox_swigregister(RadioBoxPtr
)
2344 RadioBoxNameStr
= cvar
.RadioBoxNameStr
2345 RadioButtonNameStr
= cvar
.RadioButtonNameStr
2347 def PreRadioBox(*args
, **kwargs
):
2348 """PreRadioBox() -> RadioBox"""
2349 val
= _controls_
.new_PreRadioBox(*args
, **kwargs
)
2353 def RadioBox_GetClassDefaultAttributes(*args
, **kwargs
):
2355 RadioBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2357 Get the default attributes for this class. This is useful if you want
2358 to use the same font or colour in your own control as in a standard
2359 control -- which is a much better idea than hard coding specific
2360 colours or fonts which might look completely out of place on the users
2361 system, especially if it uses themes.
2363 The variant parameter is only relevant under Mac currently and is
2364 ignore under other platforms. Under Mac, it will change the size of
2365 the returned font. See SetWindowVariant for more about this.
2367 return _controls_
.RadioBox_GetClassDefaultAttributes(*args
, **kwargs
)
2369 #---------------------------------------------------------------------------
2371 class RadioButton(_core
.Control
):
2373 return "<%s.%s; proxy of C++ wxRadioButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2374 def __init__(self
, *args
, **kwargs
):
2376 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
2377 Size size=DefaultSize, long style=0,
2378 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -> RadioButton
2380 newobj
= _controls_
.new_RadioButton(*args
, **kwargs
)
2381 self
.this
= newobj
.this
2384 self
._setOORInfo
(self
)
2386 def Create(*args
, **kwargs
):
2388 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
2389 Size size=DefaultSize, long style=0,
2390 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -> bool
2392 return _controls_
.RadioButton_Create(*args
, **kwargs
)
2394 def GetValue(*args
, **kwargs
):
2395 """GetValue(self) -> bool"""
2396 return _controls_
.RadioButton_GetValue(*args
, **kwargs
)
2398 def SetValue(*args
, **kwargs
):
2399 """SetValue(self, bool value)"""
2400 return _controls_
.RadioButton_SetValue(*args
, **kwargs
)
2402 def GetClassDefaultAttributes(*args
, **kwargs
):
2404 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2406 Get the default attributes for this class. This is useful if you want
2407 to use the same font or colour in your own control as in a standard
2408 control -- which is a much better idea than hard coding specific
2409 colours or fonts which might look completely out of place on the users
2410 system, especially if it uses themes.
2412 The variant parameter is only relevant under Mac currently and is
2413 ignore under other platforms. Under Mac, it will change the size of
2414 the returned font. See SetWindowVariant for more about this.
2416 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2418 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2420 class RadioButtonPtr(RadioButton
):
2421 def __init__(self
, this
):
2423 if not hasattr(self
,"thisown"): self
.thisown
= 0
2424 self
.__class
__ = RadioButton
2425 _controls_
.RadioButton_swigregister(RadioButtonPtr
)
2427 def PreRadioButton(*args
, **kwargs
):
2428 """PreRadioButton() -> RadioButton"""
2429 val
= _controls_
.new_PreRadioButton(*args
, **kwargs
)
2433 def RadioButton_GetClassDefaultAttributes(*args
, **kwargs
):
2435 RadioButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2437 Get the default attributes for this class. This is useful if you want
2438 to use the same font or colour in your own control as in a standard
2439 control -- which is a much better idea than hard coding specific
2440 colours or fonts which might look completely out of place on the users
2441 system, especially if it uses themes.
2443 The variant parameter is only relevant under Mac currently and is
2444 ignore under other platforms. Under Mac, it will change the size of
2445 the returned font. See SetWindowVariant for more about this.
2447 return _controls_
.RadioButton_GetClassDefaultAttributes(*args
, **kwargs
)
2449 #---------------------------------------------------------------------------
2451 class Slider(_core
.Control
):
2453 return "<%s.%s; proxy of C++ wxSlider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2454 def __init__(self
, *args
, **kwargs
):
2456 __init__(self, Window parent, int id, int value, int minValue, int maxValue,
2457 Point pos=DefaultPosition, Size size=DefaultSize,
2458 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
2459 String name=SliderNameStr) -> Slider
2461 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
2462 newobj
= _controls_
.new_Slider(*args
, **kwargs
)
2463 self
.this
= newobj
.this
2466 self
._setOORInfo
(self
)
2468 def Create(*args
, **kwargs
):
2470 Create(self, Window parent, int id, int value, int minValue, int maxValue,
2471 Point pos=DefaultPosition, Size size=DefaultSize,
2472 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
2473 String name=SliderNameStr) -> bool
2475 return _controls_
.Slider_Create(*args
, **kwargs
)
2477 def GetValue(*args
, **kwargs
):
2478 """GetValue(self) -> int"""
2479 return _controls_
.Slider_GetValue(*args
, **kwargs
)
2481 def SetValue(*args
, **kwargs
):
2482 """SetValue(self, int value)"""
2483 return _controls_
.Slider_SetValue(*args
, **kwargs
)
2485 def SetRange(*args
, **kwargs
):
2486 """SetRange(self, int minValue, int maxValue)"""
2487 return _controls_
.Slider_SetRange(*args
, **kwargs
)
2489 def GetMin(*args
, **kwargs
):
2490 """GetMin(self) -> int"""
2491 return _controls_
.Slider_GetMin(*args
, **kwargs
)
2493 def GetMax(*args
, **kwargs
):
2494 """GetMax(self) -> int"""
2495 return _controls_
.Slider_GetMax(*args
, **kwargs
)
2497 def SetMin(*args
, **kwargs
):
2498 """SetMin(self, int minValue)"""
2499 return _controls_
.Slider_SetMin(*args
, **kwargs
)
2501 def SetMax(*args
, **kwargs
):
2502 """SetMax(self, int maxValue)"""
2503 return _controls_
.Slider_SetMax(*args
, **kwargs
)
2505 def SetLineSize(*args
, **kwargs
):
2506 """SetLineSize(self, int lineSize)"""
2507 return _controls_
.Slider_SetLineSize(*args
, **kwargs
)
2509 def SetPageSize(*args
, **kwargs
):
2510 """SetPageSize(self, int pageSize)"""
2511 return _controls_
.Slider_SetPageSize(*args
, **kwargs
)
2513 def GetLineSize(*args
, **kwargs
):
2514 """GetLineSize(self) -> int"""
2515 return _controls_
.Slider_GetLineSize(*args
, **kwargs
)
2517 def GetPageSize(*args
, **kwargs
):
2518 """GetPageSize(self) -> int"""
2519 return _controls_
.Slider_GetPageSize(*args
, **kwargs
)
2521 def SetThumbLength(*args
, **kwargs
):
2522 """SetThumbLength(self, int lenPixels)"""
2523 return _controls_
.Slider_SetThumbLength(*args
, **kwargs
)
2525 def GetThumbLength(*args
, **kwargs
):
2526 """GetThumbLength(self) -> int"""
2527 return _controls_
.Slider_GetThumbLength(*args
, **kwargs
)
2529 def SetTickFreq(*args
, **kwargs
):
2530 """SetTickFreq(self, int n, int pos=1)"""
2531 return _controls_
.Slider_SetTickFreq(*args
, **kwargs
)
2533 def GetTickFreq(*args
, **kwargs
):
2534 """GetTickFreq(self) -> int"""
2535 return _controls_
.Slider_GetTickFreq(*args
, **kwargs
)
2537 def ClearTicks(*args
, **kwargs
):
2538 """ClearTicks(self)"""
2539 return _controls_
.Slider_ClearTicks(*args
, **kwargs
)
2541 def SetTick(*args
, **kwargs
):
2542 """SetTick(self, int tickPos)"""
2543 return _controls_
.Slider_SetTick(*args
, **kwargs
)
2545 def ClearSel(*args
, **kwargs
):
2546 """ClearSel(self)"""
2547 return _controls_
.Slider_ClearSel(*args
, **kwargs
)
2549 def GetSelEnd(*args
, **kwargs
):
2550 """GetSelEnd(self) -> int"""
2551 return _controls_
.Slider_GetSelEnd(*args
, **kwargs
)
2553 def GetSelStart(*args
, **kwargs
):
2554 """GetSelStart(self) -> int"""
2555 return _controls_
.Slider_GetSelStart(*args
, **kwargs
)
2557 def SetSelection(*args
, **kwargs
):
2558 """SetSelection(self, int min, int max)"""
2559 return _controls_
.Slider_SetSelection(*args
, **kwargs
)
2561 def GetClassDefaultAttributes(*args
, **kwargs
):
2563 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2565 Get the default attributes for this class. This is useful if you want
2566 to use the same font or colour in your own control as in a standard
2567 control -- which is a much better idea than hard coding specific
2568 colours or fonts which might look completely out of place on the users
2569 system, especially if it uses themes.
2571 The variant parameter is only relevant under Mac currently and is
2572 ignore under other platforms. Under Mac, it will change the size of
2573 the returned font. See SetWindowVariant for more about this.
2575 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2577 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2579 class SliderPtr(Slider
):
2580 def __init__(self
, this
):
2582 if not hasattr(self
,"thisown"): self
.thisown
= 0
2583 self
.__class
__ = Slider
2584 _controls_
.Slider_swigregister(SliderPtr
)
2585 SliderNameStr
= cvar
.SliderNameStr
2587 def PreSlider(*args
, **kwargs
):
2588 """PreSlider() -> Slider"""
2589 val
= _controls_
.new_PreSlider(*args
, **kwargs
)
2593 def Slider_GetClassDefaultAttributes(*args
, **kwargs
):
2595 Slider_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2597 Get the default attributes for this class. This is useful if you want
2598 to use the same font or colour in your own control as in a standard
2599 control -- which is a much better idea than hard coding specific
2600 colours or fonts which might look completely out of place on the users
2601 system, especially if it uses themes.
2603 The variant parameter is only relevant under Mac currently and is
2604 ignore under other platforms. Under Mac, it will change the size of
2605 the returned font. See SetWindowVariant for more about this.
2607 return _controls_
.Slider_GetClassDefaultAttributes(*args
, **kwargs
)
2609 #---------------------------------------------------------------------------
2611 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
= _controls_
.wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
2612 EVT_TOGGLEBUTTON
= wx
.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
, 1)
2614 class ToggleButton(_core
.Control
):
2616 return "<%s.%s; proxy of C++ wxToggleButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2617 def __init__(self
, *args
, **kwargs
):
2619 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
2620 Size size=DefaultSize, long style=0,
2621 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -> ToggleButton
2623 newobj
= _controls_
.new_ToggleButton(*args
, **kwargs
)
2624 self
.this
= newobj
.this
2627 self
._setOORInfo
(self
)
2629 def Create(*args
, **kwargs
):
2631 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
2632 Size size=DefaultSize, long style=0,
2633 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -> bool
2635 return _controls_
.ToggleButton_Create(*args
, **kwargs
)
2637 def SetValue(*args
, **kwargs
):
2638 """SetValue(self, bool value)"""
2639 return _controls_
.ToggleButton_SetValue(*args
, **kwargs
)
2641 def GetValue(*args
, **kwargs
):
2642 """GetValue(self) -> bool"""
2643 return _controls_
.ToggleButton_GetValue(*args
, **kwargs
)
2645 def SetLabel(*args
, **kwargs
):
2647 SetLabel(self, String label)
2649 Sets the item's text.
2651 return _controls_
.ToggleButton_SetLabel(*args
, **kwargs
)
2653 def GetClassDefaultAttributes(*args
, **kwargs
):
2655 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2657 Get the default attributes for this class. This is useful if you want
2658 to use the same font or colour in your own control as in a standard
2659 control -- which is a much better idea than hard coding specific
2660 colours or fonts which might look completely out of place on the users
2661 system, especially if it uses themes.
2663 The variant parameter is only relevant under Mac currently and is
2664 ignore under other platforms. Under Mac, it will change the size of
2665 the returned font. See SetWindowVariant for more about this.
2667 return _controls_
.ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
)
2669 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2671 class ToggleButtonPtr(ToggleButton
):
2672 def __init__(self
, this
):
2674 if not hasattr(self
,"thisown"): self
.thisown
= 0
2675 self
.__class
__ = ToggleButton
2676 _controls_
.ToggleButton_swigregister(ToggleButtonPtr
)
2677 ToggleButtonNameStr
= cvar
.ToggleButtonNameStr
2679 def PreToggleButton(*args
, **kwargs
):
2680 """PreToggleButton() -> ToggleButton"""
2681 val
= _controls_
.new_PreToggleButton(*args
, **kwargs
)
2685 def ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
):
2687 ToggleButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2689 Get the default attributes for this class. This is useful if you want
2690 to use the same font or colour in your own control as in a standard
2691 control -- which is a much better idea than hard coding specific
2692 colours or fonts which might look completely out of place on the users
2693 system, especially if it uses themes.
2695 The variant parameter is only relevant under Mac currently and is
2696 ignore under other platforms. Under Mac, it will change the size of
2697 the returned font. See SetWindowVariant for more about this.
2699 return _controls_
.ToggleButton_GetClassDefaultAttributes(*args
, **kwargs
)
2701 #---------------------------------------------------------------------------
2703 class BookCtrl(_core
.Control
):
2704 def __init__(self
): raise RuntimeError, "No constructor defined"
2706 return "<%s.%s; proxy of C++ wxBookCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2707 def GetPageCount(*args
, **kwargs
):
2708 """GetPageCount(self) -> size_t"""
2709 return _controls_
.BookCtrl_GetPageCount(*args
, **kwargs
)
2711 def GetPage(*args
, **kwargs
):
2712 """GetPage(self, size_t n) -> Window"""
2713 return _controls_
.BookCtrl_GetPage(*args
, **kwargs
)
2715 def GetSelection(*args
, **kwargs
):
2716 """GetSelection(self) -> int"""
2717 return _controls_
.BookCtrl_GetSelection(*args
, **kwargs
)
2719 def SetPageText(*args
, **kwargs
):
2720 """SetPageText(self, size_t n, String strText) -> bool"""
2721 return _controls_
.BookCtrl_SetPageText(*args
, **kwargs
)
2723 def GetPageText(*args
, **kwargs
):
2724 """GetPageText(self, size_t n) -> String"""
2725 return _controls_
.BookCtrl_GetPageText(*args
, **kwargs
)
2727 def SetImageList(*args
, **kwargs
):
2728 """SetImageList(self, ImageList imageList)"""
2729 return _controls_
.BookCtrl_SetImageList(*args
, **kwargs
)
2731 def AssignImageList(*args
, **kwargs
):
2732 """AssignImageList(self, ImageList imageList)"""
2733 return _controls_
.BookCtrl_AssignImageList(*args
, **kwargs
)
2735 def GetImageList(*args
, **kwargs
):
2736 """GetImageList(self) -> ImageList"""
2737 return _controls_
.BookCtrl_GetImageList(*args
, **kwargs
)
2739 def GetPageImage(*args
, **kwargs
):
2740 """GetPageImage(self, size_t n) -> int"""
2741 return _controls_
.BookCtrl_GetPageImage(*args
, **kwargs
)
2743 def SetPageImage(*args
, **kwargs
):
2744 """SetPageImage(self, size_t n, int imageId) -> bool"""
2745 return _controls_
.BookCtrl_SetPageImage(*args
, **kwargs
)
2747 def SetPageSize(*args
, **kwargs
):
2748 """SetPageSize(self, Size size)"""
2749 return _controls_
.BookCtrl_SetPageSize(*args
, **kwargs
)
2751 def CalcSizeFromPage(*args
, **kwargs
):
2752 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2753 return _controls_
.BookCtrl_CalcSizeFromPage(*args
, **kwargs
)
2755 def DeletePage(*args
, **kwargs
):
2756 """DeletePage(self, size_t n) -> bool"""
2757 return _controls_
.BookCtrl_DeletePage(*args
, **kwargs
)
2759 def RemovePage(*args
, **kwargs
):
2760 """RemovePage(self, size_t n) -> bool"""
2761 return _controls_
.BookCtrl_RemovePage(*args
, **kwargs
)
2763 def DeleteAllPages(*args
, **kwargs
):
2764 """DeleteAllPages(self) -> bool"""
2765 return _controls_
.BookCtrl_DeleteAllPages(*args
, **kwargs
)
2767 def AddPage(*args
, **kwargs
):
2768 """AddPage(self, Window page, String text, bool select=False, int imageId=-1) -> bool"""
2769 return _controls_
.BookCtrl_AddPage(*args
, **kwargs
)
2771 def InsertPage(*args
, **kwargs
):
2773 InsertPage(self, size_t n, Window page, String text, bool select=False,
2774 int imageId=-1) -> bool
2776 return _controls_
.BookCtrl_InsertPage(*args
, **kwargs
)
2778 def SetSelection(*args
, **kwargs
):
2779 """SetSelection(self, size_t n) -> int"""
2780 return _controls_
.BookCtrl_SetSelection(*args
, **kwargs
)
2782 def AdvanceSelection(*args
, **kwargs
):
2783 """AdvanceSelection(self, bool forward=True)"""
2784 return _controls_
.BookCtrl_AdvanceSelection(*args
, **kwargs
)
2786 def GetClassDefaultAttributes(*args
, **kwargs
):
2788 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2790 Get the default attributes for this class. This is useful if you want
2791 to use the same font or colour in your own control as in a standard
2792 control -- which is a much better idea than hard coding specific
2793 colours or fonts which might look completely out of place on the users
2794 system, especially if it uses themes.
2796 The variant parameter is only relevant under Mac currently and is
2797 ignore under other platforms. Under Mac, it will change the size of
2798 the returned font. See SetWindowVariant for more about this.
2800 return _controls_
.BookCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2802 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2804 class BookCtrlPtr(BookCtrl
):
2805 def __init__(self
, this
):
2807 if not hasattr(self
,"thisown"): self
.thisown
= 0
2808 self
.__class
__ = BookCtrl
2809 _controls_
.BookCtrl_swigregister(BookCtrlPtr
)
2810 NOTEBOOK_NAME
= cvar
.NOTEBOOK_NAME
2812 def BookCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
2814 BookCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2816 Get the default attributes for this class. This is useful if you want
2817 to use the same font or colour in your own control as in a standard
2818 control -- which is a much better idea than hard coding specific
2819 colours or fonts which might look completely out of place on the users
2820 system, especially if it uses themes.
2822 The variant parameter is only relevant under Mac currently and is
2823 ignore under other platforms. Under Mac, it will change the size of
2824 the returned font. See SetWindowVariant for more about this.
2826 return _controls_
.BookCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
2828 class BookCtrlEvent(_core
.NotifyEvent
):
2830 return "<%s.%s; proxy of C++ wxBookCtrlEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2831 def __init__(self
, *args
, **kwargs
):
2833 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2834 int nOldSel=-1) -> BookCtrlEvent
2836 newobj
= _controls_
.new_BookCtrlEvent(*args
, **kwargs
)
2837 self
.this
= newobj
.this
2840 def GetSelection(*args
, **kwargs
):
2841 """GetSelection(self) -> int"""
2842 return _controls_
.BookCtrlEvent_GetSelection(*args
, **kwargs
)
2844 def SetSelection(*args
, **kwargs
):
2845 """SetSelection(self, int nSel)"""
2846 return _controls_
.BookCtrlEvent_SetSelection(*args
, **kwargs
)
2848 def GetOldSelection(*args
, **kwargs
):
2849 """GetOldSelection(self) -> int"""
2850 return _controls_
.BookCtrlEvent_GetOldSelection(*args
, **kwargs
)
2852 def SetOldSelection(*args
, **kwargs
):
2853 """SetOldSelection(self, int nOldSel)"""
2854 return _controls_
.BookCtrlEvent_SetOldSelection(*args
, **kwargs
)
2857 class BookCtrlEventPtr(BookCtrlEvent
):
2858 def __init__(self
, this
):
2860 if not hasattr(self
,"thisown"): self
.thisown
= 0
2861 self
.__class
__ = BookCtrlEvent
2862 _controls_
.BookCtrlEvent_swigregister(BookCtrlEventPtr
)
2864 #---------------------------------------------------------------------------
2866 NB_FIXEDWIDTH
= _controls_
.NB_FIXEDWIDTH
2867 NB_TOP
= _controls_
.NB_TOP
2868 NB_LEFT
= _controls_
.NB_LEFT
2869 NB_RIGHT
= _controls_
.NB_RIGHT
2870 NB_BOTTOM
= _controls_
.NB_BOTTOM
2871 NB_MULTILINE
= _controls_
.NB_MULTILINE
2872 NB_HITTEST_NOWHERE
= _controls_
.NB_HITTEST_NOWHERE
2873 NB_HITTEST_ONICON
= _controls_
.NB_HITTEST_ONICON
2874 NB_HITTEST_ONLABEL
= _controls_
.NB_HITTEST_ONLABEL
2875 NB_HITTEST_ONITEM
= _controls_
.NB_HITTEST_ONITEM
2876 class Notebook(BookCtrl
):
2878 return "<%s.%s; proxy of C++ wxNotebook instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2879 def __init__(self
, *args
, **kwargs
):
2881 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2882 Size size=DefaultSize, long style=0, String name=NOTEBOOK_NAME) -> Notebook
2884 newobj
= _controls_
.new_Notebook(*args
, **kwargs
)
2885 self
.this
= newobj
.this
2888 self
._setOORInfo
(self
)
2890 def Create(*args
, **kwargs
):
2892 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
2893 long style=0, String name=NOTEBOOK_NAME) -> bool
2895 return _controls_
.Notebook_Create(*args
, **kwargs
)
2897 def GetRowCount(*args
, **kwargs
):
2898 """GetRowCount(self) -> int"""
2899 return _controls_
.Notebook_GetRowCount(*args
, **kwargs
)
2901 def SetPadding(*args
, **kwargs
):
2902 """SetPadding(self, Size padding)"""
2903 return _controls_
.Notebook_SetPadding(*args
, **kwargs
)
2905 def SetTabSize(*args
, **kwargs
):
2906 """SetTabSize(self, Size sz)"""
2907 return _controls_
.Notebook_SetTabSize(*args
, **kwargs
)
2909 def HitTest(*args
, **kwargs
):
2910 """HitTest(Point pt) -> (tab, where)"""
2911 return _controls_
.Notebook_HitTest(*args
, **kwargs
)
2913 def CalcSizeFromPage(*args
, **kwargs
):
2914 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2915 return _controls_
.Notebook_CalcSizeFromPage(*args
, **kwargs
)
2917 def GetClassDefaultAttributes(*args
, **kwargs
):
2919 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2921 Get the default attributes for this class. This is useful if you want
2922 to use the same font or colour in your own control as in a standard
2923 control -- which is a much better idea than hard coding specific
2924 colours or fonts which might look completely out of place on the users
2925 system, especially if it uses themes.
2927 The variant parameter is only relevant under Mac currently and is
2928 ignore under other platforms. Under Mac, it will change the size of
2929 the returned font. See SetWindowVariant for more about this.
2931 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
2933 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
2935 class NotebookPtr(Notebook
):
2936 def __init__(self
, this
):
2938 if not hasattr(self
,"thisown"): self
.thisown
= 0
2939 self
.__class
__ = Notebook
2940 _controls_
.Notebook_swigregister(NotebookPtr
)
2942 def PreNotebook(*args
, **kwargs
):
2943 """PreNotebook() -> Notebook"""
2944 val
= _controls_
.new_PreNotebook(*args
, **kwargs
)
2948 def Notebook_GetClassDefaultAttributes(*args
, **kwargs
):
2950 Notebook_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2952 Get the default attributes for this class. This is useful if you want
2953 to use the same font or colour in your own control as in a standard
2954 control -- which is a much better idea than hard coding specific
2955 colours or fonts which might look completely out of place on the users
2956 system, especially if it uses themes.
2958 The variant parameter is only relevant under Mac currently and is
2959 ignore under other platforms. Under Mac, it will change the size of
2960 the returned font. See SetWindowVariant for more about this.
2962 return _controls_
.Notebook_GetClassDefaultAttributes(*args
, **kwargs
)
2964 class NotebookEvent(BookCtrlEvent
):
2966 return "<%s.%s; proxy of C++ wxNotebookEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2967 def __init__(self
, *args
, **kwargs
):
2969 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2970 int nOldSel=-1) -> NotebookEvent
2972 newobj
= _controls_
.new_NotebookEvent(*args
, **kwargs
)
2973 self
.this
= newobj
.this
2977 class NotebookEventPtr(NotebookEvent
):
2978 def __init__(self
, this
):
2980 if not hasattr(self
,"thisown"): self
.thisown
= 0
2981 self
.__class
__ = NotebookEvent
2982 _controls_
.NotebookEvent_swigregister(NotebookEventPtr
)
2984 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
2985 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
2987 EVT_NOTEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, 1 )
2988 EVT_NOTEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, 1 )
2990 #----------------------------------------------------------------------------
2992 class NotebookPage(wx
.Panel
):
2994 There is an old (and apparently unsolvable) bug when placing a
2995 window with a nonstandard background colour in a wxNotebook on
2996 wxGTK, as the notbooks's background colour would always be used
2997 when the window is refreshed. The solution is to place a panel in
2998 the notbook and the coloured window on the panel, sized to cover
2999 the panel. This simple class does that for you, just put an
3000 instance of this in the notebook and make your regular window a
3001 child of this one and it will handle the resize for you.
3003 def __init__(self
, parent
, id=-1,
3004 pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
,
3005 style
=wx
.TAB_TRAVERSAL
, name
="panel"):
3006 wx
.Panel
.__init
__(self
, parent
, id, pos
, size
, style
, name
)
3008 EVT_SIZE(self
, self
.OnSize
)
3010 def OnSize(self
, evt
):
3011 if self
.child
is None:
3012 children
= self
.GetChildren()
3014 self
.child
= children
[0]
3016 self
.child
.SetPosition((0,0))
3017 self
.child
.SetSize(self
.GetSize())
3020 #---------------------------------------------------------------------------
3022 LB_DEFAULT
= _controls_
.LB_DEFAULT
3023 LB_TOP
= _controls_
.LB_TOP
3024 LB_BOTTOM
= _controls_
.LB_BOTTOM
3025 LB_LEFT
= _controls_
.LB_LEFT
3026 LB_RIGHT
= _controls_
.LB_RIGHT
3027 LB_ALIGN_MASK
= _controls_
.LB_ALIGN_MASK
3028 class Listbook(BookCtrl
):
3030 return "<%s.%s; proxy of C++ wxListbook instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3031 def __init__(self
, *args
, **kwargs
):
3033 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3034 Size size=DefaultSize, long style=0, String name=EmptyString) -> Listbook
3036 newobj
= _controls_
.new_Listbook(*args
, **kwargs
)
3037 self
.this
= newobj
.this
3040 self
._setOORInfo
(self
)
3042 def Create(*args
, **kwargs
):
3044 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3045 long style=0, String name=EmptyString) -> bool
3047 return _controls_
.Listbook_Create(*args
, **kwargs
)
3049 def IsVertical(*args
, **kwargs
):
3050 """IsVertical(self) -> bool"""
3051 return _controls_
.Listbook_IsVertical(*args
, **kwargs
)
3054 class ListbookPtr(Listbook
):
3055 def __init__(self
, this
):
3057 if not hasattr(self
,"thisown"): self
.thisown
= 0
3058 self
.__class
__ = Listbook
3059 _controls_
.Listbook_swigregister(ListbookPtr
)
3061 def PreListbook(*args
, **kwargs
):
3062 """PreListbook() -> Listbook"""
3063 val
= _controls_
.new_PreListbook(*args
, **kwargs
)
3067 class ListbookEvent(BookCtrlEvent
):
3069 return "<%s.%s; proxy of C++ wxListbookEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3070 def __init__(self
, *args
, **kwargs
):
3072 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3073 int nOldSel=-1) -> ListbookEvent
3075 newobj
= _controls_
.new_ListbookEvent(*args
, **kwargs
)
3076 self
.this
= newobj
.this
3080 class ListbookEventPtr(ListbookEvent
):
3081 def __init__(self
, this
):
3083 if not hasattr(self
,"thisown"): self
.thisown
= 0
3084 self
.__class
__ = ListbookEvent
3085 _controls_
.ListbookEvent_swigregister(ListbookEventPtr
)
3087 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
3088 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
3089 EVT_LISTBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
, 1 )
3090 EVT_LISTBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
, 1 )
3092 #---------------------------------------------------------------------------
3094 class BookCtrlSizer(_core
.Sizer
):
3096 return "<%s.%s; proxy of C++ wxBookCtrlSizer instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3097 def __init__(self
, *args
, **kwargs
):
3098 """__init__(self, BookCtrl nb) -> BookCtrlSizer"""
3099 newobj
= _controls_
.new_BookCtrlSizer(*args
, **kwargs
)
3100 self
.this
= newobj
.this
3103 self
._setOORInfo
(self
)
3105 def RecalcSizes(*args
, **kwargs
):
3106 """RecalcSizes(self)"""
3107 return _controls_
.BookCtrlSizer_RecalcSizes(*args
, **kwargs
)
3109 def CalcMin(*args
, **kwargs
):
3110 """CalcMin(self) -> Size"""
3111 return _controls_
.BookCtrlSizer_CalcMin(*args
, **kwargs
)
3113 def GetControl(*args
, **kwargs
):
3114 """GetControl(self) -> BookCtrl"""
3115 return _controls_
.BookCtrlSizer_GetControl(*args
, **kwargs
)
3118 class BookCtrlSizerPtr(BookCtrlSizer
):
3119 def __init__(self
, this
):
3121 if not hasattr(self
,"thisown"): self
.thisown
= 0
3122 self
.__class
__ = BookCtrlSizer
3123 _controls_
.BookCtrlSizer_swigregister(BookCtrlSizerPtr
)
3125 class NotebookSizer(_core
.Sizer
):
3127 return "<%s.%s; proxy of C++ wxNotebookSizer instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3128 def __init__(self
, *args
, **kwargs
):
3129 """__init__(self, Notebook nb) -> NotebookSizer"""
3130 newobj
= _controls_
.new_NotebookSizer(*args
, **kwargs
)
3131 self
.this
= newobj
.this
3134 self
._setOORInfo
(self
)
3136 def RecalcSizes(*args
, **kwargs
):
3137 """RecalcSizes(self)"""
3138 return _controls_
.NotebookSizer_RecalcSizes(*args
, **kwargs
)
3140 def CalcMin(*args
, **kwargs
):
3141 """CalcMin(self) -> Size"""
3142 return _controls_
.NotebookSizer_CalcMin(*args
, **kwargs
)
3144 def GetNotebook(*args
, **kwargs
):
3145 """GetNotebook(self) -> Notebook"""
3146 return _controls_
.NotebookSizer_GetNotebook(*args
, **kwargs
)
3149 class NotebookSizerPtr(NotebookSizer
):
3150 def __init__(self
, this
):
3152 if not hasattr(self
,"thisown"): self
.thisown
= 0
3153 self
.__class
__ = NotebookSizer
3154 _controls_
.NotebookSizer_swigregister(NotebookSizerPtr
)
3156 #---------------------------------------------------------------------------
3158 TOOL_STYLE_BUTTON
= _controls_
.TOOL_STYLE_BUTTON
3159 TOOL_STYLE_SEPARATOR
= _controls_
.TOOL_STYLE_SEPARATOR
3160 TOOL_STYLE_CONTROL
= _controls_
.TOOL_STYLE_CONTROL
3161 TB_HORIZONTAL
= _controls_
.TB_HORIZONTAL
3162 TB_VERTICAL
= _controls_
.TB_VERTICAL
3163 TB_3DBUTTONS
= _controls_
.TB_3DBUTTONS
3164 TB_FLAT
= _controls_
.TB_FLAT
3165 TB_DOCKABLE
= _controls_
.TB_DOCKABLE
3166 TB_NOICONS
= _controls_
.TB_NOICONS
3167 TB_TEXT
= _controls_
.TB_TEXT
3168 TB_NODIVIDER
= _controls_
.TB_NODIVIDER
3169 TB_NOALIGN
= _controls_
.TB_NOALIGN
3170 TB_HORZ_LAYOUT
= _controls_
.TB_HORZ_LAYOUT
3171 TB_HORZ_TEXT
= _controls_
.TB_HORZ_TEXT
3172 class ToolBarToolBase(_core
.Object
):
3173 def __init__(self
): raise RuntimeError, "No constructor defined"
3175 return "<%s.%s; proxy of C++ wxToolBarToolBase instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3176 def GetId(*args
, **kwargs
):
3177 """GetId(self) -> int"""
3178 return _controls_
.ToolBarToolBase_GetId(*args
, **kwargs
)
3180 def GetControl(*args
, **kwargs
):
3181 """GetControl(self) -> Control"""
3182 return _controls_
.ToolBarToolBase_GetControl(*args
, **kwargs
)
3184 def GetToolBar(*args
, **kwargs
):
3185 """GetToolBar(self) -> ToolBarBase"""
3186 return _controls_
.ToolBarToolBase_GetToolBar(*args
, **kwargs
)
3188 def IsButton(*args
, **kwargs
):
3189 """IsButton(self) -> int"""
3190 return _controls_
.ToolBarToolBase_IsButton(*args
, **kwargs
)
3192 def IsControl(*args
, **kwargs
):
3193 """IsControl(self) -> int"""
3194 return _controls_
.ToolBarToolBase_IsControl(*args
, **kwargs
)
3196 def IsSeparator(*args
, **kwargs
):
3197 """IsSeparator(self) -> int"""
3198 return _controls_
.ToolBarToolBase_IsSeparator(*args
, **kwargs
)
3200 def GetStyle(*args
, **kwargs
):
3201 """GetStyle(self) -> int"""
3202 return _controls_
.ToolBarToolBase_GetStyle(*args
, **kwargs
)
3204 def GetKind(*args
, **kwargs
):
3205 """GetKind(self) -> int"""
3206 return _controls_
.ToolBarToolBase_GetKind(*args
, **kwargs
)
3208 def IsEnabled(*args
, **kwargs
):
3209 """IsEnabled(self) -> bool"""
3210 return _controls_
.ToolBarToolBase_IsEnabled(*args
, **kwargs
)
3212 def IsToggled(*args
, **kwargs
):
3213 """IsToggled(self) -> bool"""
3214 return _controls_
.ToolBarToolBase_IsToggled(*args
, **kwargs
)
3216 def CanBeToggled(*args
, **kwargs
):
3217 """CanBeToggled(self) -> bool"""
3218 return _controls_
.ToolBarToolBase_CanBeToggled(*args
, **kwargs
)
3220 def GetNormalBitmap(*args
, **kwargs
):
3221 """GetNormalBitmap(self) -> Bitmap"""
3222 return _controls_
.ToolBarToolBase_GetNormalBitmap(*args
, **kwargs
)
3224 def GetDisabledBitmap(*args
, **kwargs
):
3225 """GetDisabledBitmap(self) -> Bitmap"""
3226 return _controls_
.ToolBarToolBase_GetDisabledBitmap(*args
, **kwargs
)
3228 def GetBitmap(*args
, **kwargs
):
3229 """GetBitmap(self) -> Bitmap"""
3230 return _controls_
.ToolBarToolBase_GetBitmap(*args
, **kwargs
)
3232 def GetLabel(*args
, **kwargs
):
3233 """GetLabel(self) -> String"""
3234 return _controls_
.ToolBarToolBase_GetLabel(*args
, **kwargs
)
3236 def GetShortHelp(*args
, **kwargs
):
3237 """GetShortHelp(self) -> String"""
3238 return _controls_
.ToolBarToolBase_GetShortHelp(*args
, **kwargs
)
3240 def GetLongHelp(*args
, **kwargs
):
3241 """GetLongHelp(self) -> String"""
3242 return _controls_
.ToolBarToolBase_GetLongHelp(*args
, **kwargs
)
3244 def Enable(*args
, **kwargs
):
3245 """Enable(self, bool enable) -> bool"""
3246 return _controls_
.ToolBarToolBase_Enable(*args
, **kwargs
)
3248 def Toggle(*args
, **kwargs
):
3250 return _controls_
.ToolBarToolBase_Toggle(*args
, **kwargs
)
3252 def SetToggle(*args
, **kwargs
):
3253 """SetToggle(self, bool toggle) -> bool"""
3254 return _controls_
.ToolBarToolBase_SetToggle(*args
, **kwargs
)
3256 def SetShortHelp(*args
, **kwargs
):
3257 """SetShortHelp(self, String help) -> bool"""
3258 return _controls_
.ToolBarToolBase_SetShortHelp(*args
, **kwargs
)
3260 def SetLongHelp(*args
, **kwargs
):
3261 """SetLongHelp(self, String help) -> bool"""
3262 return _controls_
.ToolBarToolBase_SetLongHelp(*args
, **kwargs
)
3264 def SetNormalBitmap(*args
, **kwargs
):
3265 """SetNormalBitmap(self, Bitmap bmp)"""
3266 return _controls_
.ToolBarToolBase_SetNormalBitmap(*args
, **kwargs
)
3268 def SetDisabledBitmap(*args
, **kwargs
):
3269 """SetDisabledBitmap(self, Bitmap bmp)"""
3270 return _controls_
.ToolBarToolBase_SetDisabledBitmap(*args
, **kwargs
)
3272 def SetLabel(*args
, **kwargs
):
3273 """SetLabel(self, String label)"""
3274 return _controls_
.ToolBarToolBase_SetLabel(*args
, **kwargs
)
3276 def Detach(*args
, **kwargs
):
3278 return _controls_
.ToolBarToolBase_Detach(*args
, **kwargs
)
3280 def Attach(*args
, **kwargs
):
3281 """Attach(self, ToolBarBase tbar)"""
3282 return _controls_
.ToolBarToolBase_Attach(*args
, **kwargs
)
3284 def GetClientData(*args
, **kwargs
):
3285 """GetClientData(self) -> PyObject"""
3286 return _controls_
.ToolBarToolBase_GetClientData(*args
, **kwargs
)
3288 def SetClientData(*args
, **kwargs
):
3289 """SetClientData(self, PyObject clientData)"""
3290 return _controls_
.ToolBarToolBase_SetClientData(*args
, **kwargs
)
3292 GetBitmap1
= GetNormalBitmap
3293 GetBitmap2
= GetDisabledBitmap
3294 SetBitmap1
= SetNormalBitmap
3295 SetBitmap2
= SetDisabledBitmap
3298 class ToolBarToolBasePtr(ToolBarToolBase
):
3299 def __init__(self
, this
):
3301 if not hasattr(self
,"thisown"): self
.thisown
= 0
3302 self
.__class
__ = ToolBarToolBase
3303 _controls_
.ToolBarToolBase_swigregister(ToolBarToolBasePtr
)
3305 class ToolBarBase(_core
.Control
):
3306 def __init__(self
): raise RuntimeError, "No constructor defined"
3308 return "<%s.%s; proxy of C++ wxToolBarBase instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3309 def DoAddTool(*args
, **kwargs
):
3311 DoAddTool(self, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3312 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
3313 String longHelp=EmptyString,
3314 PyObject clientData=None) -> ToolBarToolBase
3316 return _controls_
.ToolBarBase_DoAddTool(*args
, **kwargs
)
3318 def DoInsertTool(*args
, **kwargs
):
3320 DoInsertTool(self, size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3321 int kind=ITEM_NORMAL,
3322 String shortHelp=EmptyString, String longHelp=EmptyString,
3323 PyObject clientData=None) -> ToolBarToolBase
3325 return _controls_
.ToolBarBase_DoInsertTool(*args
, **kwargs
)
3327 # These match the original Add methods for this class, kept for
3328 # backwards compatibility with versions < 2.3.3.
3331 def AddTool(self
, id, bitmap
,
3332 pushedBitmap
= wx
.NullBitmap
,
3335 shortHelpString
= '',
3336 longHelpString
= '') :
3337 '''Old style method to add a tool to the toolbar.'''
3338 kind
= wx
.ITEM_NORMAL
3339 if isToggle
: kind
= wx
.ITEM_CHECK
3340 return self
.DoAddTool(id, '', bitmap
, pushedBitmap
, kind
,
3341 shortHelpString
, longHelpString
, clientData
)
3343 def AddSimpleTool(self
, id, bitmap
,
3344 shortHelpString
= '',
3345 longHelpString
= '',
3347 '''Old style method to add a tool to the toolbar.'''
3348 kind
= wx
.ITEM_NORMAL
3349 if isToggle
: kind
= wx
.ITEM_CHECK
3350 return self
.DoAddTool(id, '', bitmap
, wx
.NullBitmap
, kind
,
3351 shortHelpString
, longHelpString
, None)
3353 def InsertTool(self
, pos
, id, bitmap
,
3354 pushedBitmap
= wx
.NullBitmap
,
3357 shortHelpString
= '',
3358 longHelpString
= ''):
3359 '''Old style method to insert a tool in the toolbar.'''
3360 kind
= wx
.ITEM_NORMAL
3361 if isToggle
: kind
= wx
.ITEM_CHECK
3362 return self
.DoInsertTool(pos
, id, '', bitmap
, pushedBitmap
, kind
,
3363 shortHelpString
, longHelpString
, clientData
)
3365 def InsertSimpleTool(self
, pos
, id, bitmap
,
3366 shortHelpString
= '',
3367 longHelpString
= '',
3369 '''Old style method to insert a tool in the toolbar.'''
3370 kind
= wx
.ITEM_NORMAL
3371 if isToggle
: kind
= wx
.ITEM_CHECK
3372 return self
.DoInsertTool(pos
, id, '', bitmap
, wx
.NullBitmap
, kind
,
3373 shortHelpString
, longHelpString
, None)
3376 # The following are the new toolbar Add methods starting with
3377 # 2.3.3. They are renamed to have 'Label' in the name so as to be
3378 # able to keep backwards compatibility with using the above
3379 # methods. Eventually these should migrate to be the methods used
3380 # primarily and lose the 'Label' in the name...
3382 def AddLabelTool(self
, id, label
, bitmap
,
3383 bmpDisabled
= wx
.NullBitmap
,
3384 kind
= wx
.ITEM_NORMAL
,
3385 shortHelp
= '', longHelp
= '',
3388 The full AddTool() function.
3390 If bmpDisabled is wx.NullBitmap, a shadowed version of the normal bitmap
3391 is created and used as the disabled image.
3393 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, kind
,
3394 shortHelp
, longHelp
, clientData
)
3397 def InsertLabelTool(self
, pos
, id, label
, bitmap
,
3398 bmpDisabled
= wx
.NullBitmap
,
3399 kind
= wx
.ITEM_NORMAL
,
3400 shortHelp
= '', longHelp
= '',
3403 Insert the new tool at the given position, if pos == GetToolsCount(), it
3404 is equivalent to AddTool()
3406 return self
.DoInsertTool(pos
, id, label
, bitmap
, bmpDisabled
, kind
,
3407 shortHelp
, longHelp
, clientData
)
3409 def AddCheckLabelTool(self
, id, label
, bitmap
,
3410 bmpDisabled
= wx
.NullBitmap
,
3411 shortHelp
= '', longHelp
= '',
3413 '''Add a check tool, i.e. a tool which can be toggled'''
3414 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3415 shortHelp
, longHelp
, clientData
)
3417 def AddRadioLabelTool(self
, id, label
, bitmap
,
3418 bmpDisabled
= wx
.NullBitmap
,
3419 shortHelp
= '', longHelp
= '',
3422 Add a radio tool, i.e. a tool which can be toggled and releases any
3423 other toggled radio tools in the same group when it happens
3425 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3426 shortHelp
, longHelp
, clientData
)
3429 # For consistency with the backwards compatible methods above, here are
3430 # some non-'Label' versions of the Check and Radio methods
3431 def AddCheckTool(self
, id, bitmap
,
3432 bmpDisabled
= wx
.NullBitmap
,
3433 shortHelp
= '', longHelp
= '',
3435 '''Add a check tool, i.e. a tool which can be toggled'''
3436 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
3437 shortHelp
, longHelp
, clientData
)
3439 def AddRadioTool(self
, id, bitmap
,
3440 bmpDisabled
= wx
.NullBitmap
,
3441 shortHelp
= '', longHelp
= '',
3444 Add a radio tool, i.e. a tool which can be toggled and releases any
3445 other toggled radio tools in the same group when it happens
3447 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
3448 shortHelp
, longHelp
, clientData
)
3450 def AddToolItem(*args
, **kwargs
):
3451 """AddToolItem(self, ToolBarToolBase tool) -> ToolBarToolBase"""
3452 return _controls_
.ToolBarBase_AddToolItem(*args
, **kwargs
)
3454 def InsertToolItem(*args
, **kwargs
):
3455 """InsertToolItem(self, size_t pos, ToolBarToolBase tool) -> ToolBarToolBase"""
3456 return _controls_
.ToolBarBase_InsertToolItem(*args
, **kwargs
)
3458 def AddControl(*args
, **kwargs
):
3459 """AddControl(self, Control control) -> ToolBarToolBase"""
3460 return _controls_
.ToolBarBase_AddControl(*args
, **kwargs
)
3462 def InsertControl(*args
, **kwargs
):
3463 """InsertControl(self, size_t pos, Control control) -> ToolBarToolBase"""
3464 return _controls_
.ToolBarBase_InsertControl(*args
, **kwargs
)
3466 def FindControl(*args
, **kwargs
):
3467 """FindControl(self, int id) -> Control"""
3468 return _controls_
.ToolBarBase_FindControl(*args
, **kwargs
)
3470 def AddSeparator(*args
, **kwargs
):
3471 """AddSeparator(self) -> ToolBarToolBase"""
3472 return _controls_
.ToolBarBase_AddSeparator(*args
, **kwargs
)
3474 def InsertSeparator(*args
, **kwargs
):
3475 """InsertSeparator(self, size_t pos) -> ToolBarToolBase"""
3476 return _controls_
.ToolBarBase_InsertSeparator(*args
, **kwargs
)
3478 def RemoveTool(*args
, **kwargs
):
3479 """RemoveTool(self, int id) -> ToolBarToolBase"""
3480 return _controls_
.ToolBarBase_RemoveTool(*args
, **kwargs
)
3482 def DeleteToolByPos(*args
, **kwargs
):
3483 """DeleteToolByPos(self, size_t pos) -> bool"""
3484 return _controls_
.ToolBarBase_DeleteToolByPos(*args
, **kwargs
)
3486 def DeleteTool(*args
, **kwargs
):
3487 """DeleteTool(self, int id) -> bool"""
3488 return _controls_
.ToolBarBase_DeleteTool(*args
, **kwargs
)
3490 def ClearTools(*args
, **kwargs
):
3491 """ClearTools(self)"""
3492 return _controls_
.ToolBarBase_ClearTools(*args
, **kwargs
)
3494 def Realize(*args
, **kwargs
):
3495 """Realize(self) -> bool"""
3496 return _controls_
.ToolBarBase_Realize(*args
, **kwargs
)
3498 def EnableTool(*args
, **kwargs
):
3499 """EnableTool(self, int id, bool enable)"""
3500 return _controls_
.ToolBarBase_EnableTool(*args
, **kwargs
)
3502 def ToggleTool(*args
, **kwargs
):
3503 """ToggleTool(self, int id, bool toggle)"""
3504 return _controls_
.ToolBarBase_ToggleTool(*args
, **kwargs
)
3506 def SetToggle(*args
, **kwargs
):
3507 """SetToggle(self, int id, bool toggle)"""
3508 return _controls_
.ToolBarBase_SetToggle(*args
, **kwargs
)
3510 def GetToolClientData(*args
, **kwargs
):
3511 """GetToolClientData(self, int id) -> PyObject"""
3512 return _controls_
.ToolBarBase_GetToolClientData(*args
, **kwargs
)
3514 def SetToolClientData(*args
, **kwargs
):
3515 """SetToolClientData(self, int id, PyObject clientData)"""
3516 return _controls_
.ToolBarBase_SetToolClientData(*args
, **kwargs
)
3518 def GetToolPos(*args
, **kwargs
):
3519 """GetToolPos(self, int id) -> int"""
3520 return _controls_
.ToolBarBase_GetToolPos(*args
, **kwargs
)
3522 def GetToolState(*args
, **kwargs
):
3523 """GetToolState(self, int id) -> bool"""
3524 return _controls_
.ToolBarBase_GetToolState(*args
, **kwargs
)
3526 def GetToolEnabled(*args
, **kwargs
):
3527 """GetToolEnabled(self, int id) -> bool"""
3528 return _controls_
.ToolBarBase_GetToolEnabled(*args
, **kwargs
)
3530 def SetToolShortHelp(*args
, **kwargs
):
3531 """SetToolShortHelp(self, int id, String helpString)"""
3532 return _controls_
.ToolBarBase_SetToolShortHelp(*args
, **kwargs
)
3534 def GetToolShortHelp(*args
, **kwargs
):
3535 """GetToolShortHelp(self, int id) -> String"""
3536 return _controls_
.ToolBarBase_GetToolShortHelp(*args
, **kwargs
)
3538 def SetToolLongHelp(*args
, **kwargs
):
3539 """SetToolLongHelp(self, int id, String helpString)"""
3540 return _controls_
.ToolBarBase_SetToolLongHelp(*args
, **kwargs
)
3542 def GetToolLongHelp(*args
, **kwargs
):
3543 """GetToolLongHelp(self, int id) -> String"""
3544 return _controls_
.ToolBarBase_GetToolLongHelp(*args
, **kwargs
)
3546 def SetMarginsXY(*args
, **kwargs
):
3547 """SetMarginsXY(self, int x, int y)"""
3548 return _controls_
.ToolBarBase_SetMarginsXY(*args
, **kwargs
)
3550 def SetMargins(*args
, **kwargs
):
3551 """SetMargins(self, Size size)"""
3552 return _controls_
.ToolBarBase_SetMargins(*args
, **kwargs
)
3554 def SetToolPacking(*args
, **kwargs
):
3555 """SetToolPacking(self, int packing)"""
3556 return _controls_
.ToolBarBase_SetToolPacking(*args
, **kwargs
)
3558 def SetToolSeparation(*args
, **kwargs
):
3559 """SetToolSeparation(self, int separation)"""
3560 return _controls_
.ToolBarBase_SetToolSeparation(*args
, **kwargs
)
3562 def GetToolMargins(*args
, **kwargs
):
3563 """GetToolMargins(self) -> Size"""
3564 return _controls_
.ToolBarBase_GetToolMargins(*args
, **kwargs
)
3566 def GetMargins(*args
, **kwargs
):
3567 """GetMargins(self) -> Size"""
3568 return _controls_
.ToolBarBase_GetMargins(*args
, **kwargs
)
3570 def GetToolPacking(*args
, **kwargs
):
3571 """GetToolPacking(self) -> int"""
3572 return _controls_
.ToolBarBase_GetToolPacking(*args
, **kwargs
)
3574 def GetToolSeparation(*args
, **kwargs
):
3575 """GetToolSeparation(self) -> int"""
3576 return _controls_
.ToolBarBase_GetToolSeparation(*args
, **kwargs
)
3578 def SetRows(*args
, **kwargs
):
3579 """SetRows(self, int nRows)"""
3580 return _controls_
.ToolBarBase_SetRows(*args
, **kwargs
)
3582 def SetMaxRowsCols(*args
, **kwargs
):
3583 """SetMaxRowsCols(self, int rows, int cols)"""
3584 return _controls_
.ToolBarBase_SetMaxRowsCols(*args
, **kwargs
)
3586 def GetMaxRows(*args
, **kwargs
):
3587 """GetMaxRows(self) -> int"""
3588 return _controls_
.ToolBarBase_GetMaxRows(*args
, **kwargs
)
3590 def GetMaxCols(*args
, **kwargs
):
3591 """GetMaxCols(self) -> int"""
3592 return _controls_
.ToolBarBase_GetMaxCols(*args
, **kwargs
)
3594 def SetToolBitmapSize(*args
, **kwargs
):
3595 """SetToolBitmapSize(self, Size size)"""
3596 return _controls_
.ToolBarBase_SetToolBitmapSize(*args
, **kwargs
)
3598 def GetToolBitmapSize(*args
, **kwargs
):
3599 """GetToolBitmapSize(self) -> Size"""
3600 return _controls_
.ToolBarBase_GetToolBitmapSize(*args
, **kwargs
)
3602 def GetToolSize(*args
, **kwargs
):
3603 """GetToolSize(self) -> Size"""
3604 return _controls_
.ToolBarBase_GetToolSize(*args
, **kwargs
)
3606 def FindToolForPosition(*args
, **kwargs
):
3607 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3608 return _controls_
.ToolBarBase_FindToolForPosition(*args
, **kwargs
)
3610 def FindById(*args
, **kwargs
):
3611 """FindById(self, int toolid) -> ToolBarToolBase"""
3612 return _controls_
.ToolBarBase_FindById(*args
, **kwargs
)
3614 def IsVertical(*args
, **kwargs
):
3615 """IsVertical(self) -> bool"""
3616 return _controls_
.ToolBarBase_IsVertical(*args
, **kwargs
)
3619 class ToolBarBasePtr(ToolBarBase
):
3620 def __init__(self
, this
):
3622 if not hasattr(self
,"thisown"): self
.thisown
= 0
3623 self
.__class
__ = ToolBarBase
3624 _controls_
.ToolBarBase_swigregister(ToolBarBasePtr
)
3626 class ToolBar(ToolBarBase
):
3628 return "<%s.%s; proxy of C++ wxToolBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3629 def __init__(self
, *args
, **kwargs
):
3631 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3632 long style=wxNO_BORDER|wxTB_HORIZONTAL,
3633 String name=wxPyToolBarNameStr) -> ToolBar
3635 newobj
= _controls_
.new_ToolBar(*args
, **kwargs
)
3636 self
.this
= newobj
.this
3639 self
._setOORInfo
(self
)
3641 def Create(*args
, **kwargs
):
3643 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3644 long style=wxNO_BORDER|wxTB_HORIZONTAL,
3645 String name=wxPyToolBarNameStr) -> bool
3647 return _controls_
.ToolBar_Create(*args
, **kwargs
)
3649 def FindToolForPosition(*args
, **kwargs
):
3650 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3651 return _controls_
.ToolBar_FindToolForPosition(*args
, **kwargs
)
3653 def GetClassDefaultAttributes(*args
, **kwargs
):
3655 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3657 Get the default attributes for this class. This is useful if you want
3658 to use the same font or colour in your own control as in a standard
3659 control -- which is a much better idea than hard coding specific
3660 colours or fonts which might look completely out of place on the users
3661 system, especially if it uses themes.
3663 The variant parameter is only relevant under Mac currently and is
3664 ignore under other platforms. Under Mac, it will change the size of
3665 the returned font. See SetWindowVariant for more about this.
3667 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
3669 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3671 class ToolBarPtr(ToolBar
):
3672 def __init__(self
, this
):
3674 if not hasattr(self
,"thisown"): self
.thisown
= 0
3675 self
.__class
__ = ToolBar
3676 _controls_
.ToolBar_swigregister(ToolBarPtr
)
3678 def PreToolBar(*args
, **kwargs
):
3679 """PreToolBar() -> ToolBar"""
3680 val
= _controls_
.new_PreToolBar(*args
, **kwargs
)
3684 def ToolBar_GetClassDefaultAttributes(*args
, **kwargs
):
3686 ToolBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3688 Get the default attributes for this class. This is useful if you want
3689 to use the same font or colour in your own control as in a standard
3690 control -- which is a much better idea than hard coding specific
3691 colours or fonts which might look completely out of place on the users
3692 system, especially if it uses themes.
3694 The variant parameter is only relevant under Mac currently and is
3695 ignore under other platforms. Under Mac, it will change the size of
3696 the returned font. See SetWindowVariant for more about this.
3698 return _controls_
.ToolBar_GetClassDefaultAttributes(*args
, **kwargs
)
3700 #---------------------------------------------------------------------------
3702 LC_VRULES
= _controls_
.LC_VRULES
3703 LC_HRULES
= _controls_
.LC_HRULES
3704 LC_ICON
= _controls_
.LC_ICON
3705 LC_SMALL_ICON
= _controls_
.LC_SMALL_ICON
3706 LC_LIST
= _controls_
.LC_LIST
3707 LC_REPORT
= _controls_
.LC_REPORT
3708 LC_ALIGN_TOP
= _controls_
.LC_ALIGN_TOP
3709 LC_ALIGN_LEFT
= _controls_
.LC_ALIGN_LEFT
3710 LC_AUTOARRANGE
= _controls_
.LC_AUTOARRANGE
3711 LC_VIRTUAL
= _controls_
.LC_VIRTUAL
3712 LC_EDIT_LABELS
= _controls_
.LC_EDIT_LABELS
3713 LC_NO_HEADER
= _controls_
.LC_NO_HEADER
3714 LC_NO_SORT_HEADER
= _controls_
.LC_NO_SORT_HEADER
3715 LC_SINGLE_SEL
= _controls_
.LC_SINGLE_SEL
3716 LC_SORT_ASCENDING
= _controls_
.LC_SORT_ASCENDING
3717 LC_SORT_DESCENDING
= _controls_
.LC_SORT_DESCENDING
3718 LC_MASK_TYPE
= _controls_
.LC_MASK_TYPE
3719 LC_MASK_ALIGN
= _controls_
.LC_MASK_ALIGN
3720 LC_MASK_SORT
= _controls_
.LC_MASK_SORT
3721 LIST_MASK_STATE
= _controls_
.LIST_MASK_STATE
3722 LIST_MASK_TEXT
= _controls_
.LIST_MASK_TEXT
3723 LIST_MASK_IMAGE
= _controls_
.LIST_MASK_IMAGE
3724 LIST_MASK_DATA
= _controls_
.LIST_MASK_DATA
3725 LIST_SET_ITEM
= _controls_
.LIST_SET_ITEM
3726 LIST_MASK_WIDTH
= _controls_
.LIST_MASK_WIDTH
3727 LIST_MASK_FORMAT
= _controls_
.LIST_MASK_FORMAT
3728 LIST_STATE_DONTCARE
= _controls_
.LIST_STATE_DONTCARE
3729 LIST_STATE_DROPHILITED
= _controls_
.LIST_STATE_DROPHILITED
3730 LIST_STATE_FOCUSED
= _controls_
.LIST_STATE_FOCUSED
3731 LIST_STATE_SELECTED
= _controls_
.LIST_STATE_SELECTED
3732 LIST_STATE_CUT
= _controls_
.LIST_STATE_CUT
3733 LIST_STATE_DISABLED
= _controls_
.LIST_STATE_DISABLED
3734 LIST_STATE_FILTERED
= _controls_
.LIST_STATE_FILTERED
3735 LIST_STATE_INUSE
= _controls_
.LIST_STATE_INUSE
3736 LIST_STATE_PICKED
= _controls_
.LIST_STATE_PICKED
3737 LIST_STATE_SOURCE
= _controls_
.LIST_STATE_SOURCE
3738 LIST_HITTEST_ABOVE
= _controls_
.LIST_HITTEST_ABOVE
3739 LIST_HITTEST_BELOW
= _controls_
.LIST_HITTEST_BELOW
3740 LIST_HITTEST_NOWHERE
= _controls_
.LIST_HITTEST_NOWHERE
3741 LIST_HITTEST_ONITEMICON
= _controls_
.LIST_HITTEST_ONITEMICON
3742 LIST_HITTEST_ONITEMLABEL
= _controls_
.LIST_HITTEST_ONITEMLABEL
3743 LIST_HITTEST_ONITEMRIGHT
= _controls_
.LIST_HITTEST_ONITEMRIGHT
3744 LIST_HITTEST_ONITEMSTATEICON
= _controls_
.LIST_HITTEST_ONITEMSTATEICON
3745 LIST_HITTEST_TOLEFT
= _controls_
.LIST_HITTEST_TOLEFT
3746 LIST_HITTEST_TORIGHT
= _controls_
.LIST_HITTEST_TORIGHT
3747 LIST_HITTEST_ONITEM
= _controls_
.LIST_HITTEST_ONITEM
3748 LIST_NEXT_ABOVE
= _controls_
.LIST_NEXT_ABOVE
3749 LIST_NEXT_ALL
= _controls_
.LIST_NEXT_ALL
3750 LIST_NEXT_BELOW
= _controls_
.LIST_NEXT_BELOW
3751 LIST_NEXT_LEFT
= _controls_
.LIST_NEXT_LEFT
3752 LIST_NEXT_RIGHT
= _controls_
.LIST_NEXT_RIGHT
3753 LIST_ALIGN_DEFAULT
= _controls_
.LIST_ALIGN_DEFAULT
3754 LIST_ALIGN_LEFT
= _controls_
.LIST_ALIGN_LEFT
3755 LIST_ALIGN_TOP
= _controls_
.LIST_ALIGN_TOP
3756 LIST_ALIGN_SNAP_TO_GRID
= _controls_
.LIST_ALIGN_SNAP_TO_GRID
3757 LIST_FORMAT_LEFT
= _controls_
.LIST_FORMAT_LEFT
3758 LIST_FORMAT_RIGHT
= _controls_
.LIST_FORMAT_RIGHT
3759 LIST_FORMAT_CENTRE
= _controls_
.LIST_FORMAT_CENTRE
3760 LIST_FORMAT_CENTER
= _controls_
.LIST_FORMAT_CENTER
3761 LIST_AUTOSIZE
= _controls_
.LIST_AUTOSIZE
3762 LIST_AUTOSIZE_USEHEADER
= _controls_
.LIST_AUTOSIZE_USEHEADER
3763 LIST_RECT_BOUNDS
= _controls_
.LIST_RECT_BOUNDS
3764 LIST_RECT_ICON
= _controls_
.LIST_RECT_ICON
3765 LIST_RECT_LABEL
= _controls_
.LIST_RECT_LABEL
3766 LIST_FIND_UP
= _controls_
.LIST_FIND_UP
3767 LIST_FIND_DOWN
= _controls_
.LIST_FIND_DOWN
3768 LIST_FIND_LEFT
= _controls_
.LIST_FIND_LEFT
3769 LIST_FIND_RIGHT
= _controls_
.LIST_FIND_RIGHT
3770 #---------------------------------------------------------------------------
3772 class ListItemAttr(object):
3774 return "<%s.%s; proxy of C++ wxListItemAttr instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3775 def __init__(self
, *args
, **kwargs
):
3777 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
3778 Font font=wxNullFont) -> ListItemAttr
3780 newobj
= _controls_
.new_ListItemAttr(*args
, **kwargs
)
3781 self
.this
= newobj
.this
3784 def SetTextColour(*args
, **kwargs
):
3785 """SetTextColour(self, Colour colText)"""
3786 return _controls_
.ListItemAttr_SetTextColour(*args
, **kwargs
)
3788 def SetBackgroundColour(*args
, **kwargs
):
3789 """SetBackgroundColour(self, Colour colBack)"""
3790 return _controls_
.ListItemAttr_SetBackgroundColour(*args
, **kwargs
)
3792 def SetFont(*args
, **kwargs
):
3793 """SetFont(self, Font font)"""
3794 return _controls_
.ListItemAttr_SetFont(*args
, **kwargs
)
3796 def HasTextColour(*args
, **kwargs
):
3797 """HasTextColour(self) -> bool"""
3798 return _controls_
.ListItemAttr_HasTextColour(*args
, **kwargs
)
3800 def HasBackgroundColour(*args
, **kwargs
):
3801 """HasBackgroundColour(self) -> bool"""
3802 return _controls_
.ListItemAttr_HasBackgroundColour(*args
, **kwargs
)
3804 def HasFont(*args
, **kwargs
):
3805 """HasFont(self) -> bool"""
3806 return _controls_
.ListItemAttr_HasFont(*args
, **kwargs
)
3808 def GetTextColour(*args
, **kwargs
):
3809 """GetTextColour(self) -> Colour"""
3810 return _controls_
.ListItemAttr_GetTextColour(*args
, **kwargs
)
3812 def GetBackgroundColour(*args
, **kwargs
):
3813 """GetBackgroundColour(self) -> Colour"""
3814 return _controls_
.ListItemAttr_GetBackgroundColour(*args
, **kwargs
)
3816 def GetFont(*args
, **kwargs
):
3817 """GetFont(self) -> Font"""
3818 return _controls_
.ListItemAttr_GetFont(*args
, **kwargs
)
3820 def Destroy(*args
, **kwargs
):
3822 return _controls_
.ListItemAttr_Destroy(*args
, **kwargs
)
3825 class ListItemAttrPtr(ListItemAttr
):
3826 def __init__(self
, this
):
3828 if not hasattr(self
,"thisown"): self
.thisown
= 0
3829 self
.__class
__ = ListItemAttr
3830 _controls_
.ListItemAttr_swigregister(ListItemAttrPtr
)
3831 ListCtrlNameStr
= cvar
.ListCtrlNameStr
3833 #---------------------------------------------------------------------------
3835 class ListItem(_core
.Object
):
3837 return "<%s.%s; proxy of C++ wxListItem instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3838 def __init__(self
, *args
, **kwargs
):
3839 """__init__(self) -> ListItem"""
3840 newobj
= _controls_
.new_ListItem(*args
, **kwargs
)
3841 self
.this
= newobj
.this
3844 def __del__(self
, destroy
=_controls_
.delete_ListItem
):
3847 if self
.thisown
: destroy(self
)
3850 def Clear(*args
, **kwargs
):
3852 return _controls_
.ListItem_Clear(*args
, **kwargs
)
3854 def ClearAttributes(*args
, **kwargs
):
3855 """ClearAttributes(self)"""
3856 return _controls_
.ListItem_ClearAttributes(*args
, **kwargs
)
3858 def SetMask(*args
, **kwargs
):
3859 """SetMask(self, long mask)"""
3860 return _controls_
.ListItem_SetMask(*args
, **kwargs
)
3862 def SetId(*args
, **kwargs
):
3863 """SetId(self, long id)"""
3864 return _controls_
.ListItem_SetId(*args
, **kwargs
)
3866 def SetColumn(*args
, **kwargs
):
3867 """SetColumn(self, int col)"""
3868 return _controls_
.ListItem_SetColumn(*args
, **kwargs
)
3870 def SetState(*args
, **kwargs
):
3871 """SetState(self, long state)"""
3872 return _controls_
.ListItem_SetState(*args
, **kwargs
)
3874 def SetStateMask(*args
, **kwargs
):
3875 """SetStateMask(self, long stateMask)"""
3876 return _controls_
.ListItem_SetStateMask(*args
, **kwargs
)
3878 def SetText(*args
, **kwargs
):
3879 """SetText(self, String text)"""
3880 return _controls_
.ListItem_SetText(*args
, **kwargs
)
3882 def SetImage(*args
, **kwargs
):
3883 """SetImage(self, int image)"""
3884 return _controls_
.ListItem_SetImage(*args
, **kwargs
)
3886 def SetData(*args
, **kwargs
):
3887 """SetData(self, long data)"""
3888 return _controls_
.ListItem_SetData(*args
, **kwargs
)
3890 def SetWidth(*args
, **kwargs
):
3891 """SetWidth(self, int width)"""
3892 return _controls_
.ListItem_SetWidth(*args
, **kwargs
)
3894 def SetAlign(*args
, **kwargs
):
3895 """SetAlign(self, int align)"""
3896 return _controls_
.ListItem_SetAlign(*args
, **kwargs
)
3898 def SetTextColour(*args
, **kwargs
):
3899 """SetTextColour(self, Colour colText)"""
3900 return _controls_
.ListItem_SetTextColour(*args
, **kwargs
)
3902 def SetBackgroundColour(*args
, **kwargs
):
3903 """SetBackgroundColour(self, Colour colBack)"""
3904 return _controls_
.ListItem_SetBackgroundColour(*args
, **kwargs
)
3906 def SetFont(*args
, **kwargs
):
3907 """SetFont(self, Font font)"""
3908 return _controls_
.ListItem_SetFont(*args
, **kwargs
)
3910 def GetMask(*args
, **kwargs
):
3911 """GetMask(self) -> long"""
3912 return _controls_
.ListItem_GetMask(*args
, **kwargs
)
3914 def GetId(*args
, **kwargs
):
3915 """GetId(self) -> long"""
3916 return _controls_
.ListItem_GetId(*args
, **kwargs
)
3918 def GetColumn(*args
, **kwargs
):
3919 """GetColumn(self) -> int"""
3920 return _controls_
.ListItem_GetColumn(*args
, **kwargs
)
3922 def GetState(*args
, **kwargs
):
3923 """GetState(self) -> long"""
3924 return _controls_
.ListItem_GetState(*args
, **kwargs
)
3926 def GetText(*args
, **kwargs
):
3927 """GetText(self) -> String"""
3928 return _controls_
.ListItem_GetText(*args
, **kwargs
)
3930 def GetImage(*args
, **kwargs
):
3931 """GetImage(self) -> int"""
3932 return _controls_
.ListItem_GetImage(*args
, **kwargs
)
3934 def GetData(*args
, **kwargs
):
3935 """GetData(self) -> long"""
3936 return _controls_
.ListItem_GetData(*args
, **kwargs
)
3938 def GetWidth(*args
, **kwargs
):
3939 """GetWidth(self) -> int"""
3940 return _controls_
.ListItem_GetWidth(*args
, **kwargs
)
3942 def GetAlign(*args
, **kwargs
):
3943 """GetAlign(self) -> int"""
3944 return _controls_
.ListItem_GetAlign(*args
, **kwargs
)
3946 def GetAttributes(*args
, **kwargs
):
3947 """GetAttributes(self) -> ListItemAttr"""
3948 return _controls_
.ListItem_GetAttributes(*args
, **kwargs
)
3950 def HasAttributes(*args
, **kwargs
):
3951 """HasAttributes(self) -> bool"""
3952 return _controls_
.ListItem_HasAttributes(*args
, **kwargs
)
3954 def GetTextColour(*args
, **kwargs
):
3955 """GetTextColour(self) -> Colour"""
3956 return _controls_
.ListItem_GetTextColour(*args
, **kwargs
)
3958 def GetBackgroundColour(*args
, **kwargs
):
3959 """GetBackgroundColour(self) -> Colour"""
3960 return _controls_
.ListItem_GetBackgroundColour(*args
, **kwargs
)
3962 def GetFont(*args
, **kwargs
):
3963 """GetFont(self) -> Font"""
3964 return _controls_
.ListItem_GetFont(*args
, **kwargs
)
3966 m_mask
= property(_controls_
.ListItem_m_mask_get
, _controls_
.ListItem_m_mask_set
)
3967 m_itemId
= property(_controls_
.ListItem_m_itemId_get
, _controls_
.ListItem_m_itemId_set
)
3968 m_col
= property(_controls_
.ListItem_m_col_get
, _controls_
.ListItem_m_col_set
)
3969 m_state
= property(_controls_
.ListItem_m_state_get
, _controls_
.ListItem_m_state_set
)
3970 m_stateMask
= property(_controls_
.ListItem_m_stateMask_get
, _controls_
.ListItem_m_stateMask_set
)
3971 m_text
= property(_controls_
.ListItem_m_text_get
, _controls_
.ListItem_m_text_set
)
3972 m_image
= property(_controls_
.ListItem_m_image_get
, _controls_
.ListItem_m_image_set
)
3973 m_data
= property(_controls_
.ListItem_m_data_get
, _controls_
.ListItem_m_data_set
)
3974 m_format
= property(_controls_
.ListItem_m_format_get
, _controls_
.ListItem_m_format_set
)
3975 m_width
= property(_controls_
.ListItem_m_width_get
, _controls_
.ListItem_m_width_set
)
3977 class ListItemPtr(ListItem
):
3978 def __init__(self
, this
):
3980 if not hasattr(self
,"thisown"): self
.thisown
= 0
3981 self
.__class
__ = ListItem
3982 _controls_
.ListItem_swigregister(ListItemPtr
)
3984 #---------------------------------------------------------------------------
3986 class ListEvent(_core
.NotifyEvent
):
3988 return "<%s.%s; proxy of C++ wxListEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3989 def __init__(self
, *args
, **kwargs
):
3990 """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> ListEvent"""
3991 newobj
= _controls_
.new_ListEvent(*args
, **kwargs
)
3992 self
.this
= newobj
.this
3995 m_code
= property(_controls_
.ListEvent_m_code_get
, _controls_
.ListEvent_m_code_set
)
3996 m_oldItemIndex
= property(_controls_
.ListEvent_m_oldItemIndex_get
, _controls_
.ListEvent_m_oldItemIndex_set
)
3997 m_itemIndex
= property(_controls_
.ListEvent_m_itemIndex_get
, _controls_
.ListEvent_m_itemIndex_set
)
3998 m_col
= property(_controls_
.ListEvent_m_col_get
, _controls_
.ListEvent_m_col_set
)
3999 m_pointDrag
= property(_controls_
.ListEvent_m_pointDrag_get
, _controls_
.ListEvent_m_pointDrag_set
)
4000 m_item
= property(_controls_
.ListEvent_m_item_get
)
4001 def GetKeyCode(*args
, **kwargs
):
4002 """GetKeyCode(self) -> int"""
4003 return _controls_
.ListEvent_GetKeyCode(*args
, **kwargs
)
4005 GetCode
= GetKeyCode
4006 def GetIndex(*args
, **kwargs
):
4007 """GetIndex(self) -> long"""
4008 return _controls_
.ListEvent_GetIndex(*args
, **kwargs
)
4010 def GetColumn(*args
, **kwargs
):
4011 """GetColumn(self) -> int"""
4012 return _controls_
.ListEvent_GetColumn(*args
, **kwargs
)
4014 def GetPoint(*args
, **kwargs
):
4015 """GetPoint(self) -> Point"""
4016 return _controls_
.ListEvent_GetPoint(*args
, **kwargs
)
4018 GetPosition
= GetPoint
4019 def GetLabel(*args
, **kwargs
):
4020 """GetLabel(self) -> String"""
4021 return _controls_
.ListEvent_GetLabel(*args
, **kwargs
)
4023 def GetText(*args
, **kwargs
):
4024 """GetText(self) -> String"""
4025 return _controls_
.ListEvent_GetText(*args
, **kwargs
)
4027 def GetImage(*args
, **kwargs
):
4028 """GetImage(self) -> int"""
4029 return _controls_
.ListEvent_GetImage(*args
, **kwargs
)
4031 def GetData(*args
, **kwargs
):
4032 """GetData(self) -> long"""
4033 return _controls_
.ListEvent_GetData(*args
, **kwargs
)
4035 def GetMask(*args
, **kwargs
):
4036 """GetMask(self) -> long"""
4037 return _controls_
.ListEvent_GetMask(*args
, **kwargs
)
4039 def GetItem(*args
, **kwargs
):
4040 """GetItem(self) -> ListItem"""
4041 return _controls_
.ListEvent_GetItem(*args
, **kwargs
)
4043 def GetCacheFrom(*args
, **kwargs
):
4044 """GetCacheFrom(self) -> long"""
4045 return _controls_
.ListEvent_GetCacheFrom(*args
, **kwargs
)
4047 def GetCacheTo(*args
, **kwargs
):
4048 """GetCacheTo(self) -> long"""
4049 return _controls_
.ListEvent_GetCacheTo(*args
, **kwargs
)
4051 def IsEditCancelled(*args
, **kwargs
):
4052 """IsEditCancelled(self) -> bool"""
4053 return _controls_
.ListEvent_IsEditCancelled(*args
, **kwargs
)
4055 def SetEditCanceled(*args
, **kwargs
):
4056 """SetEditCanceled(self, bool editCancelled)"""
4057 return _controls_
.ListEvent_SetEditCanceled(*args
, **kwargs
)
4060 class ListEventPtr(ListEvent
):
4061 def __init__(self
, this
):
4063 if not hasattr(self
,"thisown"): self
.thisown
= 0
4064 self
.__class
__ = ListEvent
4065 _controls_
.ListEvent_swigregister(ListEventPtr
)
4067 wxEVT_COMMAND_LIST_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_DRAG
4068 wxEVT_COMMAND_LIST_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_RDRAG
4069 wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
4070 wxEVT_COMMAND_LIST_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_END_LABEL_EDIT
4071 wxEVT_COMMAND_LIST_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ITEM
4072 wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
4073 wxEVT_COMMAND_LIST_GET_INFO
= _controls_
.wxEVT_COMMAND_LIST_GET_INFO
4074 wxEVT_COMMAND_LIST_SET_INFO
= _controls_
.wxEVT_COMMAND_LIST_SET_INFO
4075 wxEVT_COMMAND_LIST_ITEM_SELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_SELECTED
4076 wxEVT_COMMAND_LIST_ITEM_DESELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_DESELECTED
4077 wxEVT_COMMAND_LIST_KEY_DOWN
= _controls_
.wxEVT_COMMAND_LIST_KEY_DOWN
4078 wxEVT_COMMAND_LIST_INSERT_ITEM
= _controls_
.wxEVT_COMMAND_LIST_INSERT_ITEM
4079 wxEVT_COMMAND_LIST_COL_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_CLICK
4080 wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
4081 wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
4082 wxEVT_COMMAND_LIST_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_ACTIVATED
4083 wxEVT_COMMAND_LIST_CACHE_HINT
= _controls_
.wxEVT_COMMAND_LIST_CACHE_HINT
4084 wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
4085 wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
4086 wxEVT_COMMAND_LIST_COL_DRAGGING
= _controls_
.wxEVT_COMMAND_LIST_COL_DRAGGING
4087 wxEVT_COMMAND_LIST_COL_END_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_END_DRAG
4088 wxEVT_COMMAND_LIST_ITEM_FOCUSED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_FOCUSED
4089 EVT_LIST_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG
, 1)
4090 EVT_LIST_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG
, 1)
4091 EVT_LIST_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, 1)
4092 EVT_LIST_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT
, 1)
4093 EVT_LIST_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM
, 1)
4094 EVT_LIST_DELETE_ALL_ITEMS
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, 1)
4095 EVT_LIST_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO
, 1)
4096 EVT_LIST_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO
, 1)
4097 EVT_LIST_ITEM_SELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED
, 1)
4098 EVT_LIST_ITEM_DESELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED
, 1)
4099 EVT_LIST_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN
, 1)
4100 EVT_LIST_INSERT_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM
, 1)
4101 EVT_LIST_COL_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK
, 1)
4102 EVT_LIST_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, 1)
4103 EVT_LIST_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
, 1)
4104 EVT_LIST_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, 1)
4105 EVT_LIST_CACHE_HINT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT
, 1)
4106 EVT_LIST_COL_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
, 1)
4107 EVT_LIST_COL_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
, 1)
4108 EVT_LIST_COL_DRAGGING
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING
, 1)
4109 EVT_LIST_COL_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG
, 1)
4110 EVT_LIST_ITEM_FOCUSED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
, 1)
4112 #---------------------------------------------------------------------------
4114 class ListCtrl(_core
.Control
):
4116 return "<%s.%s; proxy of C++ wxPyListCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4117 def __init__(self
, *args
, **kwargs
):
4119 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4120 Size size=DefaultSize, long style=LC_ICON,
4121 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListCtrl
4123 newobj
= _controls_
.new_ListCtrl(*args
, **kwargs
)
4124 self
.this
= newobj
.this
4127 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, ListCtrl
)
4129 def Create(*args
, **kwargs
):
4131 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4132 Size size=DefaultSize, long style=LC_ICON,
4133 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4135 Do the 2nd phase and create the GUI control.
4137 return _controls_
.ListCtrl_Create(*args
, **kwargs
)
4139 def _setCallbackInfo(*args
, **kwargs
):
4140 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4141 return _controls_
.ListCtrl__setCallbackInfo(*args
, **kwargs
)
4143 def SetForegroundColour(*args
, **kwargs
):
4144 """SetForegroundColour(self, Colour col) -> bool"""
4145 return _controls_
.ListCtrl_SetForegroundColour(*args
, **kwargs
)
4147 def SetBackgroundColour(*args
, **kwargs
):
4148 """SetBackgroundColour(self, Colour col) -> bool"""
4149 return _controls_
.ListCtrl_SetBackgroundColour(*args
, **kwargs
)
4151 def GetColumn(*args
, **kwargs
):
4152 """GetColumn(self, int col) -> ListItem"""
4153 val
= _controls_
.ListCtrl_GetColumn(*args
, **kwargs
)
4154 if val
is not None: val
.thisown
= 1
4157 def SetColumn(*args
, **kwargs
):
4158 """SetColumn(self, int col, ListItem item) -> bool"""
4159 return _controls_
.ListCtrl_SetColumn(*args
, **kwargs
)
4161 def GetColumnWidth(*args
, **kwargs
):
4162 """GetColumnWidth(self, int col) -> int"""
4163 return _controls_
.ListCtrl_GetColumnWidth(*args
, **kwargs
)
4165 def SetColumnWidth(*args
, **kwargs
):
4166 """SetColumnWidth(self, int col, int width) -> bool"""
4167 return _controls_
.ListCtrl_SetColumnWidth(*args
, **kwargs
)
4169 def GetCountPerPage(*args
, **kwargs
):
4170 """GetCountPerPage(self) -> int"""
4171 return _controls_
.ListCtrl_GetCountPerPage(*args
, **kwargs
)
4173 def GetViewRect(*args
, **kwargs
):
4174 """GetViewRect(self) -> Rect"""
4175 return _controls_
.ListCtrl_GetViewRect(*args
, **kwargs
)
4177 def GetItem(*args
, **kwargs
):
4178 """GetItem(self, long itemId, int col=0) -> ListItem"""
4179 val
= _controls_
.ListCtrl_GetItem(*args
, **kwargs
)
4180 if val
is not None: val
.thisown
= 1
4183 def SetItem(*args
, **kwargs
):
4184 """SetItem(self, ListItem info) -> bool"""
4185 return _controls_
.ListCtrl_SetItem(*args
, **kwargs
)
4187 def SetStringItem(*args
, **kwargs
):
4188 """SetStringItem(self, long index, int col, String label, int imageId=-1) -> long"""
4189 return _controls_
.ListCtrl_SetStringItem(*args
, **kwargs
)
4191 def GetItemState(*args
, **kwargs
):
4192 """GetItemState(self, long item, long stateMask) -> int"""
4193 return _controls_
.ListCtrl_GetItemState(*args
, **kwargs
)
4195 def SetItemState(*args
, **kwargs
):
4196 """SetItemState(self, long item, long state, long stateMask) -> bool"""
4197 return _controls_
.ListCtrl_SetItemState(*args
, **kwargs
)
4199 def SetItemImage(*args
, **kwargs
):
4200 """SetItemImage(self, long item, int image, int selImage) -> bool"""
4201 return _controls_
.ListCtrl_SetItemImage(*args
, **kwargs
)
4203 def GetItemText(*args
, **kwargs
):
4204 """GetItemText(self, long item) -> String"""
4205 return _controls_
.ListCtrl_GetItemText(*args
, **kwargs
)
4207 def SetItemText(*args
, **kwargs
):
4208 """SetItemText(self, long item, String str)"""
4209 return _controls_
.ListCtrl_SetItemText(*args
, **kwargs
)
4211 def GetItemData(*args
, **kwargs
):
4212 """GetItemData(self, long item) -> long"""
4213 return _controls_
.ListCtrl_GetItemData(*args
, **kwargs
)
4215 def SetItemData(*args
, **kwargs
):
4216 """SetItemData(self, long item, long data) -> bool"""
4217 return _controls_
.ListCtrl_SetItemData(*args
, **kwargs
)
4219 def GetItemPosition(*args
, **kwargs
):
4220 """GetItemPosition(self, long item) -> Point"""
4221 return _controls_
.ListCtrl_GetItemPosition(*args
, **kwargs
)
4223 def GetItemRect(*args
, **kwargs
):
4224 """GetItemRect(self, long item, int code=LIST_RECT_BOUNDS) -> Rect"""
4225 return _controls_
.ListCtrl_GetItemRect(*args
, **kwargs
)
4227 def SetItemPosition(*args
, **kwargs
):
4228 """SetItemPosition(self, long item, Point pos) -> bool"""
4229 return _controls_
.ListCtrl_SetItemPosition(*args
, **kwargs
)
4231 def GetItemCount(*args
, **kwargs
):
4232 """GetItemCount(self) -> int"""
4233 return _controls_
.ListCtrl_GetItemCount(*args
, **kwargs
)
4235 def GetColumnCount(*args
, **kwargs
):
4236 """GetColumnCount(self) -> int"""
4237 return _controls_
.ListCtrl_GetColumnCount(*args
, **kwargs
)
4239 def GetItemSpacing(*args
, **kwargs
):
4240 """GetItemSpacing(self) -> Size"""
4241 return _controls_
.ListCtrl_GetItemSpacing(*args
, **kwargs
)
4243 def SetItemSpacing(*args
, **kwargs
):
4244 """SetItemSpacing(self, int spacing, bool isSmall=False)"""
4245 return _controls_
.ListCtrl_SetItemSpacing(*args
, **kwargs
)
4247 def GetSelectedItemCount(*args
, **kwargs
):
4248 """GetSelectedItemCount(self) -> int"""
4249 return _controls_
.ListCtrl_GetSelectedItemCount(*args
, **kwargs
)
4251 def GetTextColour(*args
, **kwargs
):
4252 """GetTextColour(self) -> Colour"""
4253 return _controls_
.ListCtrl_GetTextColour(*args
, **kwargs
)
4255 def SetTextColour(*args
, **kwargs
):
4256 """SetTextColour(self, Colour col)"""
4257 return _controls_
.ListCtrl_SetTextColour(*args
, **kwargs
)
4259 def GetTopItem(*args
, **kwargs
):
4260 """GetTopItem(self) -> long"""
4261 return _controls_
.ListCtrl_GetTopItem(*args
, **kwargs
)
4263 def SetSingleStyle(*args
, **kwargs
):
4264 """SetSingleStyle(self, long style, bool add=True)"""
4265 return _controls_
.ListCtrl_SetSingleStyle(*args
, **kwargs
)
4267 def SetWindowStyleFlag(*args
, **kwargs
):
4269 SetWindowStyleFlag(self, long style)
4271 Sets the style of the window. Please note that some styles cannot be
4272 changed after the window creation and that Refresh() might need to be
4273 called after changing the others for the change to take place
4276 return _controls_
.ListCtrl_SetWindowStyleFlag(*args
, **kwargs
)
4278 def GetNextItem(*args
, **kwargs
):
4279 """GetNextItem(self, long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -> long"""
4280 return _controls_
.ListCtrl_GetNextItem(*args
, **kwargs
)
4282 def GetImageList(*args
, **kwargs
):
4283 """GetImageList(self, int which) -> ImageList"""
4284 return _controls_
.ListCtrl_GetImageList(*args
, **kwargs
)
4286 def SetImageList(*args
, **kwargs
):
4287 """SetImageList(self, ImageList imageList, int which)"""
4288 return _controls_
.ListCtrl_SetImageList(*args
, **kwargs
)
4290 def AssignImageList(*args
, **kwargs
):
4291 """AssignImageList(self, ImageList imageList, int which)"""
4292 return _controls_
.ListCtrl_AssignImageList(*args
, **kwargs
)
4294 def InReportView(*args
, **kwargs
):
4295 """InReportView(self) -> bool"""
4296 return _controls_
.ListCtrl_InReportView(*args
, **kwargs
)
4298 def IsVirtual(*args
, **kwargs
):
4299 """IsVirtual(self) -> bool"""
4300 return _controls_
.ListCtrl_IsVirtual(*args
, **kwargs
)
4302 def RefreshItem(*args
, **kwargs
):
4303 """RefreshItem(self, long item)"""
4304 return _controls_
.ListCtrl_RefreshItem(*args
, **kwargs
)
4306 def RefreshItems(*args
, **kwargs
):
4307 """RefreshItems(self, long itemFrom, long itemTo)"""
4308 return _controls_
.ListCtrl_RefreshItems(*args
, **kwargs
)
4310 def Arrange(*args
, **kwargs
):
4311 """Arrange(self, int flag=LIST_ALIGN_DEFAULT) -> bool"""
4312 return _controls_
.ListCtrl_Arrange(*args
, **kwargs
)
4314 def DeleteItem(*args
, **kwargs
):
4315 """DeleteItem(self, long item) -> bool"""
4316 return _controls_
.ListCtrl_DeleteItem(*args
, **kwargs
)
4318 def DeleteAllItems(*args
, **kwargs
):
4319 """DeleteAllItems(self) -> bool"""
4320 return _controls_
.ListCtrl_DeleteAllItems(*args
, **kwargs
)
4322 def DeleteColumn(*args
, **kwargs
):
4323 """DeleteColumn(self, int col) -> bool"""
4324 return _controls_
.ListCtrl_DeleteColumn(*args
, **kwargs
)
4326 def DeleteAllColumns(*args
, **kwargs
):
4327 """DeleteAllColumns(self) -> bool"""
4328 return _controls_
.ListCtrl_DeleteAllColumns(*args
, **kwargs
)
4330 def ClearAll(*args
, **kwargs
):
4331 """ClearAll(self)"""
4332 return _controls_
.ListCtrl_ClearAll(*args
, **kwargs
)
4334 def EditLabel(*args
, **kwargs
):
4335 """EditLabel(self, long item)"""
4336 return _controls_
.ListCtrl_EditLabel(*args
, **kwargs
)
4338 def EnsureVisible(*args
, **kwargs
):
4339 """EnsureVisible(self, long item) -> bool"""
4340 return _controls_
.ListCtrl_EnsureVisible(*args
, **kwargs
)
4342 def FindItem(*args
, **kwargs
):
4343 """FindItem(self, long start, String str, bool partial=False) -> long"""
4344 return _controls_
.ListCtrl_FindItem(*args
, **kwargs
)
4346 def FindItemData(*args
, **kwargs
):
4347 """FindItemData(self, long start, long data) -> long"""
4348 return _controls_
.ListCtrl_FindItemData(*args
, **kwargs
)
4350 def FindItemAtPos(*args
, **kwargs
):
4351 """FindItemAtPos(self, long start, Point pt, int direction) -> long"""
4352 return _controls_
.ListCtrl_FindItemAtPos(*args
, **kwargs
)
4354 def HitTest(*args
, **kwargs
):
4355 """HitTest(Point point) -> (item, where)"""
4356 return _controls_
.ListCtrl_HitTest(*args
, **kwargs
)
4358 def InsertItem(*args
, **kwargs
):
4359 """InsertItem(self, ListItem info) -> long"""
4360 return _controls_
.ListCtrl_InsertItem(*args
, **kwargs
)
4362 def InsertStringItem(*args
, **kwargs
):
4363 """InsertStringItem(self, long index, String label) -> long"""
4364 return _controls_
.ListCtrl_InsertStringItem(*args
, **kwargs
)
4366 def InsertImageItem(*args
, **kwargs
):
4367 """InsertImageItem(self, long index, int imageIndex) -> long"""
4368 return _controls_
.ListCtrl_InsertImageItem(*args
, **kwargs
)
4370 def InsertImageStringItem(*args
, **kwargs
):
4371 """InsertImageStringItem(self, long index, String label, int imageIndex) -> long"""
4372 return _controls_
.ListCtrl_InsertImageStringItem(*args
, **kwargs
)
4374 def InsertColumnInfo(*args
, **kwargs
):
4375 """InsertColumnInfo(self, long col, ListItem info) -> long"""
4376 return _controls_
.ListCtrl_InsertColumnInfo(*args
, **kwargs
)
4378 def InsertColumn(*args
, **kwargs
):
4380 InsertColumn(self, long col, String heading, int format=LIST_FORMAT_LEFT,
4381 int width=-1) -> long
4383 return _controls_
.ListCtrl_InsertColumn(*args
, **kwargs
)
4385 def SetItemCount(*args
, **kwargs
):
4386 """SetItemCount(self, long count)"""
4387 return _controls_
.ListCtrl_SetItemCount(*args
, **kwargs
)
4389 def ScrollList(*args
, **kwargs
):
4390 """ScrollList(self, int dx, int dy) -> bool"""
4391 return _controls_
.ListCtrl_ScrollList(*args
, **kwargs
)
4393 def SetItemTextColour(*args
, **kwargs
):
4394 """SetItemTextColour(self, long item, Colour col)"""
4395 return _controls_
.ListCtrl_SetItemTextColour(*args
, **kwargs
)
4397 def GetItemTextColour(*args
, **kwargs
):
4398 """GetItemTextColour(self, long item) -> Colour"""
4399 return _controls_
.ListCtrl_GetItemTextColour(*args
, **kwargs
)
4401 def SetItemBackgroundColour(*args
, **kwargs
):
4402 """SetItemBackgroundColour(self, long item, Colour col)"""
4403 return _controls_
.ListCtrl_SetItemBackgroundColour(*args
, **kwargs
)
4405 def GetItemBackgroundColour(*args
, **kwargs
):
4406 """GetItemBackgroundColour(self, long item) -> Colour"""
4407 return _controls_
.ListCtrl_GetItemBackgroundColour(*args
, **kwargs
)
4411 def Select(self
, idx
, on
=1):
4412 '''[de]select an item'''
4413 if on
: state
= wx
.LIST_STATE_SELECTED
4415 self
.SetItemState(idx
, state
, wx
.LIST_STATE_SELECTED
)
4417 def Focus(self
, idx
):
4418 '''Focus and show the given item'''
4419 self
.SetItemState(idx
, wx
.LIST_STATE_FOCUSED
, wx
.LIST_STATE_FOCUSED
)
4420 self
.EnsureVisible(idx
)
4422 def GetFocusedItem(self
):
4423 '''get the currently focused item or -1 if none'''
4424 return self
.GetNextItem(-1, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_FOCUSED
)
4426 def GetFirstSelected(self
, *args
):
4427 '''return first selected item, or -1 when none'''
4428 return self
.GetNextSelected(-1)
4430 def GetNextSelected(self
, item
):
4431 '''return subsequent selected items, or -1 when no more'''
4432 return self
.GetNextItem(item
, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_SELECTED
)
4434 def IsSelected(self
, idx
):
4435 '''return True if the item is selected'''
4436 return self
.GetItemState(idx
, wx
.LIST_STATE_SELECTED
) != 0
4438 def SetColumnImage(self
, col
, image
):
4439 item
= self
.GetColumn(col
)
4440 # preserve all other attributes too
4441 item
.SetMask( wx
.LIST_MASK_STATE |
4443 wx
.LIST_MASK_IMAGE |
4446 wx
.LIST_MASK_WIDTH |
4447 wx
.LIST_MASK_FORMAT
)
4448 item
.SetImage(image
)
4449 self
.SetColumn(col
, item
)
4451 def ClearColumnImage(self
, col
):
4452 self
.SetColumnImage(col
, -1)
4454 def Append(self
, entry
):
4455 '''Append an item to the list control. The entry parameter should be a
4456 sequence with an item for each column'''
4462 pos
= self
.GetItemCount()
4463 self
.InsertStringItem(pos
, cvtfunc(entry
[0]))
4464 for i
in range(1, len(entry
)):
4465 self
.SetStringItem(pos
, i
, cvtfunc(entry
[i
]))
4468 def SortItems(*args
, **kwargs
):
4469 """SortItems(self, PyObject func) -> bool"""
4470 return _controls_
.ListCtrl_SortItems(*args
, **kwargs
)
4472 def GetMainWindow(*args
, **kwargs
):
4473 """GetMainWindow(self) -> Window"""
4474 return _controls_
.ListCtrl_GetMainWindow(*args
, **kwargs
)
4476 def GetClassDefaultAttributes(*args
, **kwargs
):
4478 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4480 Get the default attributes for this class. This is useful if you want
4481 to use the same font or colour in your own control as in a standard
4482 control -- which is a much better idea than hard coding specific
4483 colours or fonts which might look completely out of place on the users
4484 system, especially if it uses themes.
4486 The variant parameter is only relevant under Mac currently and is
4487 ignore under other platforms. Under Mac, it will change the size of
4488 the returned font. See SetWindowVariant for more about this.
4490 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4492 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
4494 class ListCtrlPtr(ListCtrl
):
4495 def __init__(self
, this
):
4497 if not hasattr(self
,"thisown"): self
.thisown
= 0
4498 self
.__class
__ = ListCtrl
4499 _controls_
.ListCtrl_swigregister(ListCtrlPtr
)
4501 def PreListCtrl(*args
, **kwargs
):
4502 """PreListCtrl() -> ListCtrl"""
4503 val
= _controls_
.new_PreListCtrl(*args
, **kwargs
)
4507 def ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
4509 ListCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4511 Get the default attributes for this class. This is useful if you want
4512 to use the same font or colour in your own control as in a standard
4513 control -- which is a much better idea than hard coding specific
4514 colours or fonts which might look completely out of place on the users
4515 system, especially if it uses themes.
4517 The variant parameter is only relevant under Mac currently and is
4518 ignore under other platforms. Under Mac, it will change the size of
4519 the returned font. See SetWindowVariant for more about this.
4521 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4523 #---------------------------------------------------------------------------
4525 class ListView(ListCtrl
):
4527 return "<%s.%s; proxy of C++ wxListView instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4528 def __init__(self
, *args
, **kwargs
):
4530 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4531 Size size=DefaultSize, long style=LC_REPORT,
4532 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListView
4534 newobj
= _controls_
.new_ListView(*args
, **kwargs
)
4535 self
.this
= newobj
.this
4538 self
._setOORInfo
(self
)
4540 def Create(*args
, **kwargs
):
4542 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4543 Size size=DefaultSize, long style=LC_REPORT,
4544 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4546 Do the 2nd phase and create the GUI control.
4548 return _controls_
.ListView_Create(*args
, **kwargs
)
4550 def Select(*args
, **kwargs
):
4551 """Select(self, long n, bool on=True)"""
4552 return _controls_
.ListView_Select(*args
, **kwargs
)
4554 def Focus(*args
, **kwargs
):
4555 """Focus(self, long index)"""
4556 return _controls_
.ListView_Focus(*args
, **kwargs
)
4558 def GetFocusedItem(*args
, **kwargs
):
4559 """GetFocusedItem(self) -> long"""
4560 return _controls_
.ListView_GetFocusedItem(*args
, **kwargs
)
4562 def GetNextSelected(*args
, **kwargs
):
4563 """GetNextSelected(self, long item) -> long"""
4564 return _controls_
.ListView_GetNextSelected(*args
, **kwargs
)
4566 def GetFirstSelected(*args
, **kwargs
):
4567 """GetFirstSelected(self) -> long"""
4568 return _controls_
.ListView_GetFirstSelected(*args
, **kwargs
)
4570 def IsSelected(*args
, **kwargs
):
4571 """IsSelected(self, long index) -> bool"""
4572 return _controls_
.ListView_IsSelected(*args
, **kwargs
)
4574 def SetColumnImage(*args
, **kwargs
):
4575 """SetColumnImage(self, int col, int image)"""
4576 return _controls_
.ListView_SetColumnImage(*args
, **kwargs
)
4578 def ClearColumnImage(*args
, **kwargs
):
4579 """ClearColumnImage(self, int col)"""
4580 return _controls_
.ListView_ClearColumnImage(*args
, **kwargs
)
4583 class ListViewPtr(ListView
):
4584 def __init__(self
, this
):
4586 if not hasattr(self
,"thisown"): self
.thisown
= 0
4587 self
.__class
__ = ListView
4588 _controls_
.ListView_swigregister(ListViewPtr
)
4590 def PreListView(*args
, **kwargs
):
4591 """PreListView() -> ListView"""
4592 val
= _controls_
.new_PreListView(*args
, **kwargs
)
4596 #---------------------------------------------------------------------------
4598 TR_NO_BUTTONS
= _controls_
.TR_NO_BUTTONS
4599 TR_HAS_BUTTONS
= _controls_
.TR_HAS_BUTTONS
4600 TR_NO_LINES
= _controls_
.TR_NO_LINES
4601 TR_LINES_AT_ROOT
= _controls_
.TR_LINES_AT_ROOT
4602 TR_SINGLE
= _controls_
.TR_SINGLE
4603 TR_MULTIPLE
= _controls_
.TR_MULTIPLE
4604 TR_EXTENDED
= _controls_
.TR_EXTENDED
4605 TR_HAS_VARIABLE_ROW_HEIGHT
= _controls_
.TR_HAS_VARIABLE_ROW_HEIGHT
4606 TR_EDIT_LABELS
= _controls_
.TR_EDIT_LABELS
4607 TR_HIDE_ROOT
= _controls_
.TR_HIDE_ROOT
4608 TR_ROW_LINES
= _controls_
.TR_ROW_LINES
4609 TR_FULL_ROW_HIGHLIGHT
= _controls_
.TR_FULL_ROW_HIGHLIGHT
4610 TR_DEFAULT_STYLE
= _controls_
.TR_DEFAULT_STYLE
4611 TR_TWIST_BUTTONS
= _controls_
.TR_TWIST_BUTTONS
4612 TR_MAC_BUTTONS
= _controls_
.TR_MAC_BUTTONS
4613 TR_AQUA_BUTTONS
= _controls_
.TR_AQUA_BUTTONS
4614 TreeItemIcon_Normal
= _controls_
.TreeItemIcon_Normal
4615 TreeItemIcon_Selected
= _controls_
.TreeItemIcon_Selected
4616 TreeItemIcon_Expanded
= _controls_
.TreeItemIcon_Expanded
4617 TreeItemIcon_SelectedExpanded
= _controls_
.TreeItemIcon_SelectedExpanded
4618 TreeItemIcon_Max
= _controls_
.TreeItemIcon_Max
4619 TREE_HITTEST_ABOVE
= _controls_
.TREE_HITTEST_ABOVE
4620 TREE_HITTEST_BELOW
= _controls_
.TREE_HITTEST_BELOW
4621 TREE_HITTEST_NOWHERE
= _controls_
.TREE_HITTEST_NOWHERE
4622 TREE_HITTEST_ONITEMBUTTON
= _controls_
.TREE_HITTEST_ONITEMBUTTON
4623 TREE_HITTEST_ONITEMICON
= _controls_
.TREE_HITTEST_ONITEMICON
4624 TREE_HITTEST_ONITEMINDENT
= _controls_
.TREE_HITTEST_ONITEMINDENT
4625 TREE_HITTEST_ONITEMLABEL
= _controls_
.TREE_HITTEST_ONITEMLABEL
4626 TREE_HITTEST_ONITEMRIGHT
= _controls_
.TREE_HITTEST_ONITEMRIGHT
4627 TREE_HITTEST_ONITEMSTATEICON
= _controls_
.TREE_HITTEST_ONITEMSTATEICON
4628 TREE_HITTEST_TOLEFT
= _controls_
.TREE_HITTEST_TOLEFT
4629 TREE_HITTEST_TORIGHT
= _controls_
.TREE_HITTEST_TORIGHT
4630 TREE_HITTEST_ONITEMUPPERPART
= _controls_
.TREE_HITTEST_ONITEMUPPERPART
4631 TREE_HITTEST_ONITEMLOWERPART
= _controls_
.TREE_HITTEST_ONITEMLOWERPART
4632 TREE_HITTEST_ONITEM
= _controls_
.TREE_HITTEST_ONITEM
4633 #---------------------------------------------------------------------------
4635 class TreeItemId(object):
4637 return "<%s.%s; proxy of C++ wxTreeItemId instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4638 def __init__(self
, *args
, **kwargs
):
4639 """__init__(self) -> TreeItemId"""
4640 newobj
= _controls_
.new_TreeItemId(*args
, **kwargs
)
4641 self
.this
= newobj
.this
4644 def __del__(self
, destroy
=_controls_
.delete_TreeItemId
):
4647 if self
.thisown
: destroy(self
)
4650 def IsOk(*args
, **kwargs
):
4651 """IsOk(self) -> bool"""
4652 return _controls_
.TreeItemId_IsOk(*args
, **kwargs
)
4654 def __eq__(*args
, **kwargs
):
4655 """__eq__(self, TreeItemId other) -> bool"""
4656 return _controls_
.TreeItemId___eq__(*args
, **kwargs
)
4658 def __ne__(*args
, **kwargs
):
4659 """__ne__(self, TreeItemId other) -> bool"""
4660 return _controls_
.TreeItemId___ne__(*args
, **kwargs
)
4662 m_pItem
= property(_controls_
.TreeItemId_m_pItem_get
, _controls_
.TreeItemId_m_pItem_set
)
4664 def __nonzero__(self
): return self
.IsOk()
4666 class TreeItemIdPtr(TreeItemId
):
4667 def __init__(self
, this
):
4669 if not hasattr(self
,"thisown"): self
.thisown
= 0
4670 self
.__class
__ = TreeItemId
4671 _controls_
.TreeItemId_swigregister(TreeItemIdPtr
)
4672 TreeCtrlNameStr
= cvar
.TreeCtrlNameStr
4674 class TreeItemData(object):
4676 return "<%s.%s; proxy of C++ wxPyTreeItemData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4677 def __init__(self
, *args
, **kwargs
):
4678 """__init__(self, PyObject obj=None) -> TreeItemData"""
4679 newobj
= _controls_
.new_TreeItemData(*args
, **kwargs
)
4680 self
.this
= newobj
.this
4683 def GetData(*args
, **kwargs
):
4684 """GetData(self) -> PyObject"""
4685 return _controls_
.TreeItemData_GetData(*args
, **kwargs
)
4687 def SetData(*args
, **kwargs
):
4688 """SetData(self, PyObject obj)"""
4689 return _controls_
.TreeItemData_SetData(*args
, **kwargs
)
4691 def GetId(*args
, **kwargs
):
4692 """GetId(self) -> TreeItemId"""
4693 return _controls_
.TreeItemData_GetId(*args
, **kwargs
)
4695 def SetId(*args
, **kwargs
):
4696 """SetId(self, TreeItemId id)"""
4697 return _controls_
.TreeItemData_SetId(*args
, **kwargs
)
4699 def Destroy(*args
, **kwargs
):
4701 return _controls_
.TreeItemData_Destroy(*args
, **kwargs
)
4704 class TreeItemDataPtr(TreeItemData
):
4705 def __init__(self
, this
):
4707 if not hasattr(self
,"thisown"): self
.thisown
= 0
4708 self
.__class
__ = TreeItemData
4709 _controls_
.TreeItemData_swigregister(TreeItemDataPtr
)
4711 #---------------------------------------------------------------------------
4713 wxEVT_COMMAND_TREE_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_DRAG
4714 wxEVT_COMMAND_TREE_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_RDRAG
4715 wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
4716 wxEVT_COMMAND_TREE_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_END_LABEL_EDIT
4717 wxEVT_COMMAND_TREE_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_TREE_DELETE_ITEM
4718 wxEVT_COMMAND_TREE_GET_INFO
= _controls_
.wxEVT_COMMAND_TREE_GET_INFO
4719 wxEVT_COMMAND_TREE_SET_INFO
= _controls_
.wxEVT_COMMAND_TREE_SET_INFO
4720 wxEVT_COMMAND_TREE_ITEM_EXPANDED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDED
4721 wxEVT_COMMAND_TREE_ITEM_EXPANDING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDING
4722 wxEVT_COMMAND_TREE_ITEM_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSED
4723 wxEVT_COMMAND_TREE_ITEM_COLLAPSING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSING
4724 wxEVT_COMMAND_TREE_SEL_CHANGED
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGED
4725 wxEVT_COMMAND_TREE_SEL_CHANGING
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGING
4726 wxEVT_COMMAND_TREE_KEY_DOWN
= _controls_
.wxEVT_COMMAND_TREE_KEY_DOWN
4727 wxEVT_COMMAND_TREE_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_ACTIVATED
4728 wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
4729 wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
4730 wxEVT_COMMAND_TREE_END_DRAG
= _controls_
.wxEVT_COMMAND_TREE_END_DRAG
4731 wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
4732 wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
= _controls_
.wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
4733 EVT_TREE_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG
, 1)
4734 EVT_TREE_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG
, 1)
4735 EVT_TREE_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, 1)
4736 EVT_TREE_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, 1)
4737 EVT_TREE_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM
, 1)
4738 EVT_TREE_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO
, 1)
4739 EVT_TREE_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO
, 1)
4740 EVT_TREE_ITEM_EXPANDED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED
, 1)
4741 EVT_TREE_ITEM_EXPANDING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, 1)
4742 EVT_TREE_ITEM_COLLAPSED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, 1)
4743 EVT_TREE_ITEM_COLLAPSING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, 1)
4744 EVT_TREE_SEL_CHANGED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED
, 1)
4745 EVT_TREE_SEL_CHANGING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING
, 1)
4746 EVT_TREE_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN
, 1)
4747 EVT_TREE_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, 1)
4748 EVT_TREE_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, 1)
4749 EVT_TREE_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, 1)
4750 EVT_TREE_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG
, 1)
4751 EVT_TREE_STATE_IMAGE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
, 1)
4752 EVT_TREE_ITEM_GETTOOLTIP
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
, 1)
4754 class TreeEvent(_core
.NotifyEvent
):
4756 return "<%s.%s; proxy of C++ wxTreeEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4757 def __init__(self
, *args
, **kwargs
):
4758 """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> TreeEvent"""
4759 newobj
= _controls_
.new_TreeEvent(*args
, **kwargs
)
4760 self
.this
= newobj
.this
4763 def GetItem(*args
, **kwargs
):
4764 """GetItem(self) -> TreeItemId"""
4765 return _controls_
.TreeEvent_GetItem(*args
, **kwargs
)
4767 def SetItem(*args
, **kwargs
):
4768 """SetItem(self, TreeItemId item)"""
4769 return _controls_
.TreeEvent_SetItem(*args
, **kwargs
)
4771 def GetOldItem(*args
, **kwargs
):
4772 """GetOldItem(self) -> TreeItemId"""
4773 return _controls_
.TreeEvent_GetOldItem(*args
, **kwargs
)
4775 def SetOldItem(*args
, **kwargs
):
4776 """SetOldItem(self, TreeItemId item)"""
4777 return _controls_
.TreeEvent_SetOldItem(*args
, **kwargs
)
4779 def GetPoint(*args
, **kwargs
):
4780 """GetPoint(self) -> Point"""
4781 return _controls_
.TreeEvent_GetPoint(*args
, **kwargs
)
4783 def SetPoint(*args
, **kwargs
):
4784 """SetPoint(self, Point pt)"""
4785 return _controls_
.TreeEvent_SetPoint(*args
, **kwargs
)
4787 def GetKeyEvent(*args
, **kwargs
):
4788 """GetKeyEvent(self) -> KeyEvent"""
4789 return _controls_
.TreeEvent_GetKeyEvent(*args
, **kwargs
)
4791 def GetKeyCode(*args
, **kwargs
):
4792 """GetKeyCode(self) -> int"""
4793 return _controls_
.TreeEvent_GetKeyCode(*args
, **kwargs
)
4795 def SetKeyEvent(*args
, **kwargs
):
4796 """SetKeyEvent(self, KeyEvent evt)"""
4797 return _controls_
.TreeEvent_SetKeyEvent(*args
, **kwargs
)
4799 def GetLabel(*args
, **kwargs
):
4800 """GetLabel(self) -> String"""
4801 return _controls_
.TreeEvent_GetLabel(*args
, **kwargs
)
4803 def SetLabel(*args
, **kwargs
):
4804 """SetLabel(self, String label)"""
4805 return _controls_
.TreeEvent_SetLabel(*args
, **kwargs
)
4807 def IsEditCancelled(*args
, **kwargs
):
4808 """IsEditCancelled(self) -> bool"""
4809 return _controls_
.TreeEvent_IsEditCancelled(*args
, **kwargs
)
4811 def SetEditCanceled(*args
, **kwargs
):
4812 """SetEditCanceled(self, bool editCancelled)"""
4813 return _controls_
.TreeEvent_SetEditCanceled(*args
, **kwargs
)
4815 def SetToolTip(*args
, **kwargs
):
4816 """SetToolTip(self, String toolTip)"""
4817 return _controls_
.TreeEvent_SetToolTip(*args
, **kwargs
)
4820 class TreeEventPtr(TreeEvent
):
4821 def __init__(self
, this
):
4823 if not hasattr(self
,"thisown"): self
.thisown
= 0
4824 self
.__class
__ = TreeEvent
4825 _controls_
.TreeEvent_swigregister(TreeEventPtr
)
4827 #---------------------------------------------------------------------------
4829 class TreeCtrl(_core
.Control
):
4831 return "<%s.%s; proxy of C++ wxPyTreeCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4832 def __init__(self
, *args
, **kwargs
):
4834 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4835 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
4836 Validator validator=DefaultValidator,
4837 String name=TreeCtrlNameStr) -> TreeCtrl
4839 newobj
= _controls_
.new_TreeCtrl(*args
, **kwargs
)
4840 self
.this
= newobj
.this
4843 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, TreeCtrl
)
4845 def Create(*args
, **kwargs
):
4847 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4848 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
4849 Validator validator=DefaultValidator,
4850 String name=TreeCtrlNameStr) -> bool
4852 Do the 2nd phase and create the GUI control.
4854 return _controls_
.TreeCtrl_Create(*args
, **kwargs
)
4856 def _setCallbackInfo(*args
, **kwargs
):
4857 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4858 return _controls_
.TreeCtrl__setCallbackInfo(*args
, **kwargs
)
4860 def GetCount(*args
, **kwargs
):
4861 """GetCount(self) -> size_t"""
4862 return _controls_
.TreeCtrl_GetCount(*args
, **kwargs
)
4864 def GetIndent(*args
, **kwargs
):
4865 """GetIndent(self) -> unsigned int"""
4866 return _controls_
.TreeCtrl_GetIndent(*args
, **kwargs
)
4868 def SetIndent(*args
, **kwargs
):
4869 """SetIndent(self, unsigned int indent)"""
4870 return _controls_
.TreeCtrl_SetIndent(*args
, **kwargs
)
4872 def GetSpacing(*args
, **kwargs
):
4873 """GetSpacing(self) -> unsigned int"""
4874 return _controls_
.TreeCtrl_GetSpacing(*args
, **kwargs
)
4876 def SetSpacing(*args
, **kwargs
):
4877 """SetSpacing(self, unsigned int spacing)"""
4878 return _controls_
.TreeCtrl_SetSpacing(*args
, **kwargs
)
4880 def GetImageList(*args
, **kwargs
):
4881 """GetImageList(self) -> ImageList"""
4882 return _controls_
.TreeCtrl_GetImageList(*args
, **kwargs
)
4884 def GetStateImageList(*args
, **kwargs
):
4885 """GetStateImageList(self) -> ImageList"""
4886 return _controls_
.TreeCtrl_GetStateImageList(*args
, **kwargs
)
4888 def SetImageList(*args
, **kwargs
):
4889 """SetImageList(self, ImageList imageList)"""
4890 return _controls_
.TreeCtrl_SetImageList(*args
, **kwargs
)
4892 def SetStateImageList(*args
, **kwargs
):
4893 """SetStateImageList(self, ImageList imageList)"""
4894 return _controls_
.TreeCtrl_SetStateImageList(*args
, **kwargs
)
4896 def AssignImageList(*args
, **kwargs
):
4897 """AssignImageList(self, ImageList imageList)"""
4898 return _controls_
.TreeCtrl_AssignImageList(*args
, **kwargs
)
4900 def AssignStateImageList(*args
, **kwargs
):
4901 """AssignStateImageList(self, ImageList imageList)"""
4902 return _controls_
.TreeCtrl_AssignStateImageList(*args
, **kwargs
)
4904 def GetItemText(*args
, **kwargs
):
4905 """GetItemText(self, TreeItemId item) -> String"""
4906 return _controls_
.TreeCtrl_GetItemText(*args
, **kwargs
)
4908 def GetItemImage(*args
, **kwargs
):
4909 """GetItemImage(self, TreeItemId item, int which=TreeItemIcon_Normal) -> int"""
4910 return _controls_
.TreeCtrl_GetItemImage(*args
, **kwargs
)
4912 def GetItemData(*args
, **kwargs
):
4913 """GetItemData(self, TreeItemId item) -> TreeItemData"""
4914 return _controls_
.TreeCtrl_GetItemData(*args
, **kwargs
)
4916 def GetItemPyData(*args
, **kwargs
):
4917 """GetItemPyData(self, TreeItemId item) -> PyObject"""
4918 return _controls_
.TreeCtrl_GetItemPyData(*args
, **kwargs
)
4920 GetPyData
= GetItemPyData
4921 def GetItemTextColour(*args
, **kwargs
):
4922 """GetItemTextColour(self, TreeItemId item) -> Colour"""
4923 return _controls_
.TreeCtrl_GetItemTextColour(*args
, **kwargs
)
4925 def GetItemBackgroundColour(*args
, **kwargs
):
4926 """GetItemBackgroundColour(self, TreeItemId item) -> Colour"""
4927 return _controls_
.TreeCtrl_GetItemBackgroundColour(*args
, **kwargs
)
4929 def GetItemFont(*args
, **kwargs
):
4930 """GetItemFont(self, TreeItemId item) -> Font"""
4931 return _controls_
.TreeCtrl_GetItemFont(*args
, **kwargs
)
4933 def SetItemText(*args
, **kwargs
):
4934 """SetItemText(self, TreeItemId item, String text)"""
4935 return _controls_
.TreeCtrl_SetItemText(*args
, **kwargs
)
4937 def SetItemImage(*args
, **kwargs
):
4938 """SetItemImage(self, TreeItemId item, int image, int which=TreeItemIcon_Normal)"""
4939 return _controls_
.TreeCtrl_SetItemImage(*args
, **kwargs
)
4941 def SetItemData(*args
, **kwargs
):
4942 """SetItemData(self, TreeItemId item, TreeItemData data)"""
4943 return _controls_
.TreeCtrl_SetItemData(*args
, **kwargs
)
4945 def SetItemPyData(*args
, **kwargs
):
4946 """SetItemPyData(self, TreeItemId item, PyObject obj)"""
4947 return _controls_
.TreeCtrl_SetItemPyData(*args
, **kwargs
)
4949 SetPyData
= SetItemPyData
4950 def SetItemHasChildren(*args
, **kwargs
):
4951 """SetItemHasChildren(self, TreeItemId item, bool has=True)"""
4952 return _controls_
.TreeCtrl_SetItemHasChildren(*args
, **kwargs
)
4954 def SetItemBold(*args
, **kwargs
):
4955 """SetItemBold(self, TreeItemId item, bool bold=True)"""
4956 return _controls_
.TreeCtrl_SetItemBold(*args
, **kwargs
)
4958 def SetItemTextColour(*args
, **kwargs
):
4959 """SetItemTextColour(self, TreeItemId item, Colour col)"""
4960 return _controls_
.TreeCtrl_SetItemTextColour(*args
, **kwargs
)
4962 def SetItemBackgroundColour(*args
, **kwargs
):
4963 """SetItemBackgroundColour(self, TreeItemId item, Colour col)"""
4964 return _controls_
.TreeCtrl_SetItemBackgroundColour(*args
, **kwargs
)
4966 def SetItemFont(*args
, **kwargs
):
4967 """SetItemFont(self, TreeItemId item, Font font)"""
4968 return _controls_
.TreeCtrl_SetItemFont(*args
, **kwargs
)
4970 def IsVisible(*args
, **kwargs
):
4971 """IsVisible(self, TreeItemId item) -> bool"""
4972 return _controls_
.TreeCtrl_IsVisible(*args
, **kwargs
)
4974 def ItemHasChildren(*args
, **kwargs
):
4975 """ItemHasChildren(self, TreeItemId item) -> bool"""
4976 return _controls_
.TreeCtrl_ItemHasChildren(*args
, **kwargs
)
4978 def IsExpanded(*args
, **kwargs
):
4979 """IsExpanded(self, TreeItemId item) -> bool"""
4980 return _controls_
.TreeCtrl_IsExpanded(*args
, **kwargs
)
4982 def IsSelected(*args
, **kwargs
):
4983 """IsSelected(self, TreeItemId item) -> bool"""
4984 return _controls_
.TreeCtrl_IsSelected(*args
, **kwargs
)
4986 def IsBold(*args
, **kwargs
):
4987 """IsBold(self, TreeItemId item) -> bool"""
4988 return _controls_
.TreeCtrl_IsBold(*args
, **kwargs
)
4990 def GetChildrenCount(*args
, **kwargs
):
4991 """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t"""
4992 return _controls_
.TreeCtrl_GetChildrenCount(*args
, **kwargs
)
4994 def GetRootItem(*args
, **kwargs
):
4995 """GetRootItem(self) -> TreeItemId"""
4996 return _controls_
.TreeCtrl_GetRootItem(*args
, **kwargs
)
4998 def GetSelection(*args
, **kwargs
):
4999 """GetSelection(self) -> TreeItemId"""
5000 return _controls_
.TreeCtrl_GetSelection(*args
, **kwargs
)
5002 def GetSelections(*args
, **kwargs
):
5003 """GetSelections(self) -> PyObject"""
5004 return _controls_
.TreeCtrl_GetSelections(*args
, **kwargs
)
5006 def GetItemParent(*args
, **kwargs
):
5007 """GetItemParent(self, TreeItemId item) -> TreeItemId"""
5008 return _controls_
.TreeCtrl_GetItemParent(*args
, **kwargs
)
5010 def GetFirstChild(*args
, **kwargs
):
5011 """GetFirstChild(self, TreeItemId item) -> PyObject"""
5012 return _controls_
.TreeCtrl_GetFirstChild(*args
, **kwargs
)
5014 def GetNextChild(*args
, **kwargs
):
5015 """GetNextChild(self, TreeItemId item, void cookie) -> PyObject"""
5016 return _controls_
.TreeCtrl_GetNextChild(*args
, **kwargs
)
5018 def GetLastChild(*args
, **kwargs
):
5019 """GetLastChild(self, TreeItemId item) -> TreeItemId"""
5020 return _controls_
.TreeCtrl_GetLastChild(*args
, **kwargs
)
5022 def GetNextSibling(*args
, **kwargs
):
5023 """GetNextSibling(self, TreeItemId item) -> TreeItemId"""
5024 return _controls_
.TreeCtrl_GetNextSibling(*args
, **kwargs
)
5026 def GetPrevSibling(*args
, **kwargs
):
5027 """GetPrevSibling(self, TreeItemId item) -> TreeItemId"""
5028 return _controls_
.TreeCtrl_GetPrevSibling(*args
, **kwargs
)
5030 def GetFirstVisibleItem(*args
, **kwargs
):
5031 """GetFirstVisibleItem(self) -> TreeItemId"""
5032 return _controls_
.TreeCtrl_GetFirstVisibleItem(*args
, **kwargs
)
5034 def GetNextVisible(*args
, **kwargs
):
5035 """GetNextVisible(self, TreeItemId item) -> TreeItemId"""
5036 return _controls_
.TreeCtrl_GetNextVisible(*args
, **kwargs
)
5038 def GetPrevVisible(*args
, **kwargs
):
5039 """GetPrevVisible(self, TreeItemId item) -> TreeItemId"""
5040 return _controls_
.TreeCtrl_GetPrevVisible(*args
, **kwargs
)
5042 def AddRoot(*args
, **kwargs
):
5043 """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId"""
5044 return _controls_
.TreeCtrl_AddRoot(*args
, **kwargs
)
5046 def PrependItem(*args
, **kwargs
):
5048 PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5049 TreeItemData data=None) -> TreeItemId
5051 return _controls_
.TreeCtrl_PrependItem(*args
, **kwargs
)
5053 def InsertItem(*args
, **kwargs
):
5055 InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text,
5056 int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5058 return _controls_
.TreeCtrl_InsertItem(*args
, **kwargs
)
5060 def InsertItemBefore(*args
, **kwargs
):
5062 InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1,
5063 int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5065 return _controls_
.TreeCtrl_InsertItemBefore(*args
, **kwargs
)
5067 def AppendItem(*args
, **kwargs
):
5069 AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5070 TreeItemData data=None) -> TreeItemId
5072 return _controls_
.TreeCtrl_AppendItem(*args
, **kwargs
)
5074 def Delete(*args
, **kwargs
):
5075 """Delete(self, TreeItemId item)"""
5076 return _controls_
.TreeCtrl_Delete(*args
, **kwargs
)
5078 def DeleteChildren(*args
, **kwargs
):
5079 """DeleteChildren(self, TreeItemId item)"""
5080 return _controls_
.TreeCtrl_DeleteChildren(*args
, **kwargs
)
5082 def DeleteAllItems(*args
, **kwargs
):
5083 """DeleteAllItems(self)"""
5084 return _controls_
.TreeCtrl_DeleteAllItems(*args
, **kwargs
)
5086 def Expand(*args
, **kwargs
):
5087 """Expand(self, TreeItemId item)"""
5088 return _controls_
.TreeCtrl_Expand(*args
, **kwargs
)
5090 def Collapse(*args
, **kwargs
):
5091 """Collapse(self, TreeItemId item)"""
5092 return _controls_
.TreeCtrl_Collapse(*args
, **kwargs
)
5094 def CollapseAndReset(*args
, **kwargs
):
5095 """CollapseAndReset(self, TreeItemId item)"""
5096 return _controls_
.TreeCtrl_CollapseAndReset(*args
, **kwargs
)
5098 def Toggle(*args
, **kwargs
):
5099 """Toggle(self, TreeItemId item)"""
5100 return _controls_
.TreeCtrl_Toggle(*args
, **kwargs
)
5102 def Unselect(*args
, **kwargs
):
5103 """Unselect(self)"""
5104 return _controls_
.TreeCtrl_Unselect(*args
, **kwargs
)
5106 def UnselectItem(*args
, **kwargs
):
5107 """UnselectItem(self, TreeItemId item)"""
5108 return _controls_
.TreeCtrl_UnselectItem(*args
, **kwargs
)
5110 def UnselectAll(*args
, **kwargs
):
5111 """UnselectAll(self)"""
5112 return _controls_
.TreeCtrl_UnselectAll(*args
, **kwargs
)
5114 def SelectItem(*args
, **kwargs
):
5115 """SelectItem(self, TreeItemId item, bool select=True)"""
5116 return _controls_
.TreeCtrl_SelectItem(*args
, **kwargs
)
5118 def ToggleItemSelection(*args
, **kwargs
):
5119 """ToggleItemSelection(self, TreeItemId item)"""
5120 return _controls_
.TreeCtrl_ToggleItemSelection(*args
, **kwargs
)
5122 def EnsureVisible(*args
, **kwargs
):
5123 """EnsureVisible(self, TreeItemId item)"""
5124 return _controls_
.TreeCtrl_EnsureVisible(*args
, **kwargs
)
5126 def ScrollTo(*args
, **kwargs
):
5127 """ScrollTo(self, TreeItemId item)"""
5128 return _controls_
.TreeCtrl_ScrollTo(*args
, **kwargs
)
5130 def EditLabel(*args
, **kwargs
):
5131 """EditLabel(self, TreeItemId item)"""
5132 return _controls_
.TreeCtrl_EditLabel(*args
, **kwargs
)
5134 def GetEditControl(*args
, **kwargs
):
5135 """GetEditControl(self) -> TextCtrl"""
5136 return _controls_
.TreeCtrl_GetEditControl(*args
, **kwargs
)
5138 def SortChildren(*args
, **kwargs
):
5139 """SortChildren(self, TreeItemId item)"""
5140 return _controls_
.TreeCtrl_SortChildren(*args
, **kwargs
)
5142 def HitTest(*args
, **kwargs
):
5143 """HitTest(Point point) -> (item, where)"""
5144 return _controls_
.TreeCtrl_HitTest(*args
, **kwargs
)
5146 def GetBoundingRect(*args
, **kwargs
):
5147 """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject"""
5148 return _controls_
.TreeCtrl_GetBoundingRect(*args
, **kwargs
)
5150 def GetClassDefaultAttributes(*args
, **kwargs
):
5152 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5154 Get the default attributes for this class. This is useful if you want
5155 to use the same font or colour in your own control as in a standard
5156 control -- which is a much better idea than hard coding specific
5157 colours or fonts which might look completely out of place on the users
5158 system, especially if it uses themes.
5160 The variant parameter is only relevant under Mac currently and is
5161 ignore under other platforms. Under Mac, it will change the size of
5162 the returned font. See SetWindowVariant for more about this.
5164 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5166 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
5168 class TreeCtrlPtr(TreeCtrl
):
5169 def __init__(self
, this
):
5171 if not hasattr(self
,"thisown"): self
.thisown
= 0
5172 self
.__class
__ = TreeCtrl
5173 _controls_
.TreeCtrl_swigregister(TreeCtrlPtr
)
5175 def PreTreeCtrl(*args
, **kwargs
):
5176 """PreTreeCtrl() -> TreeCtrl"""
5177 val
= _controls_
.new_PreTreeCtrl(*args
, **kwargs
)
5181 def TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
5183 TreeCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5185 Get the default attributes for this class. This is useful if you want
5186 to use the same font or colour in your own control as in a standard
5187 control -- which is a much better idea than hard coding specific
5188 colours or fonts which might look completely out of place on the users
5189 system, especially if it uses themes.
5191 The variant parameter is only relevant under Mac currently and is
5192 ignore under other platforms. Under Mac, it will change the size of
5193 the returned font. See SetWindowVariant for more about this.
5195 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
5197 #---------------------------------------------------------------------------
5199 DIRCTRL_DIR_ONLY
= _controls_
.DIRCTRL_DIR_ONLY
5200 DIRCTRL_SELECT_FIRST
= _controls_
.DIRCTRL_SELECT_FIRST
5201 DIRCTRL_SHOW_FILTERS
= _controls_
.DIRCTRL_SHOW_FILTERS
5202 DIRCTRL_3D_INTERNAL
= _controls_
.DIRCTRL_3D_INTERNAL
5203 DIRCTRL_EDIT_LABELS
= _controls_
.DIRCTRL_EDIT_LABELS
5204 class GenericDirCtrl(_core
.Control
):
5206 return "<%s.%s; proxy of C++ wxGenericDirCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5207 def __init__(self
, *args
, **kwargs
):
5209 __init__(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5210 Point pos=DefaultPosition, Size size=DefaultSize,
5211 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5212 String filter=EmptyString,
5213 int defaultFilter=0, String name=TreeCtrlNameStr) -> GenericDirCtrl
5215 newobj
= _controls_
.new_GenericDirCtrl(*args
, **kwargs
)
5216 self
.this
= newobj
.this
5219 self
._setOORInfo
(self
)
5221 def Create(*args
, **kwargs
):
5223 Create(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5224 Point pos=DefaultPosition, Size size=DefaultSize,
5225 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5226 String filter=EmptyString,
5227 int defaultFilter=0, String name=TreeCtrlNameStr) -> bool
5229 return _controls_
.GenericDirCtrl_Create(*args
, **kwargs
)
5231 def ExpandPath(*args
, **kwargs
):
5232 """ExpandPath(self, String path) -> bool"""
5233 return _controls_
.GenericDirCtrl_ExpandPath(*args
, **kwargs
)
5235 def GetDefaultPath(*args
, **kwargs
):
5236 """GetDefaultPath(self) -> String"""
5237 return _controls_
.GenericDirCtrl_GetDefaultPath(*args
, **kwargs
)
5239 def SetDefaultPath(*args
, **kwargs
):
5240 """SetDefaultPath(self, String path)"""
5241 return _controls_
.GenericDirCtrl_SetDefaultPath(*args
, **kwargs
)
5243 def GetPath(*args
, **kwargs
):
5244 """GetPath(self) -> String"""
5245 return _controls_
.GenericDirCtrl_GetPath(*args
, **kwargs
)
5247 def GetFilePath(*args
, **kwargs
):
5248 """GetFilePath(self) -> String"""
5249 return _controls_
.GenericDirCtrl_GetFilePath(*args
, **kwargs
)
5251 def SetPath(*args
, **kwargs
):
5252 """SetPath(self, String path)"""
5253 return _controls_
.GenericDirCtrl_SetPath(*args
, **kwargs
)
5255 def ShowHidden(*args
, **kwargs
):
5256 """ShowHidden(self, bool show)"""
5257 return _controls_
.GenericDirCtrl_ShowHidden(*args
, **kwargs
)
5259 def GetShowHidden(*args
, **kwargs
):
5260 """GetShowHidden(self) -> bool"""
5261 return _controls_
.GenericDirCtrl_GetShowHidden(*args
, **kwargs
)
5263 def GetFilter(*args
, **kwargs
):
5264 """GetFilter(self) -> String"""
5265 return _controls_
.GenericDirCtrl_GetFilter(*args
, **kwargs
)
5267 def SetFilter(*args
, **kwargs
):
5268 """SetFilter(self, String filter)"""
5269 return _controls_
.GenericDirCtrl_SetFilter(*args
, **kwargs
)
5271 def GetFilterIndex(*args
, **kwargs
):
5272 """GetFilterIndex(self) -> int"""
5273 return _controls_
.GenericDirCtrl_GetFilterIndex(*args
, **kwargs
)
5275 def SetFilterIndex(*args
, **kwargs
):
5276 """SetFilterIndex(self, int n)"""
5277 return _controls_
.GenericDirCtrl_SetFilterIndex(*args
, **kwargs
)
5279 def GetRootId(*args
, **kwargs
):
5280 """GetRootId(self) -> TreeItemId"""
5281 return _controls_
.GenericDirCtrl_GetRootId(*args
, **kwargs
)
5283 def GetTreeCtrl(*args
, **kwargs
):
5284 """GetTreeCtrl(self) -> TreeCtrl"""
5285 return _controls_
.GenericDirCtrl_GetTreeCtrl(*args
, **kwargs
)
5287 def GetFilterListCtrl(*args
, **kwargs
):
5288 """GetFilterListCtrl(self) -> DirFilterListCtrl"""
5289 return _controls_
.GenericDirCtrl_GetFilterListCtrl(*args
, **kwargs
)
5291 def FindChild(*args
, **kwargs
):
5292 """FindChild(wxTreeItemId parentId, wxString path) -> (item, done)"""
5293 return _controls_
.GenericDirCtrl_FindChild(*args
, **kwargs
)
5295 def DoResize(*args
, **kwargs
):
5296 """DoResize(self)"""
5297 return _controls_
.GenericDirCtrl_DoResize(*args
, **kwargs
)
5299 def ReCreateTree(*args
, **kwargs
):
5300 """ReCreateTree(self)"""
5301 return _controls_
.GenericDirCtrl_ReCreateTree(*args
, **kwargs
)
5304 class GenericDirCtrlPtr(GenericDirCtrl
):
5305 def __init__(self
, this
):
5307 if not hasattr(self
,"thisown"): self
.thisown
= 0
5308 self
.__class
__ = GenericDirCtrl
5309 _controls_
.GenericDirCtrl_swigregister(GenericDirCtrlPtr
)
5310 DirDialogDefaultFolderStr
= cvar
.DirDialogDefaultFolderStr
5312 def PreGenericDirCtrl(*args
, **kwargs
):
5313 """PreGenericDirCtrl() -> GenericDirCtrl"""
5314 val
= _controls_
.new_PreGenericDirCtrl(*args
, **kwargs
)
5318 class DirFilterListCtrl(Choice
):
5320 return "<%s.%s; proxy of C++ wxDirFilterListCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5321 def __init__(self
, *args
, **kwargs
):
5323 __init__(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5324 Size size=DefaultSize, long style=0) -> DirFilterListCtrl
5326 newobj
= _controls_
.new_DirFilterListCtrl(*args
, **kwargs
)
5327 self
.this
= newobj
.this
5330 self
._setOORInfo
(self
)
5332 def Create(*args
, **kwargs
):
5334 Create(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5335 Size size=DefaultSize, long style=0) -> bool
5337 return _controls_
.DirFilterListCtrl_Create(*args
, **kwargs
)
5339 def FillFilterList(*args
, **kwargs
):
5340 """FillFilterList(self, String filter, int defaultFilter)"""
5341 return _controls_
.DirFilterListCtrl_FillFilterList(*args
, **kwargs
)
5344 class DirFilterListCtrlPtr(DirFilterListCtrl
):
5345 def __init__(self
, this
):
5347 if not hasattr(self
,"thisown"): self
.thisown
= 0
5348 self
.__class
__ = DirFilterListCtrl
5349 _controls_
.DirFilterListCtrl_swigregister(DirFilterListCtrlPtr
)
5351 def PreDirFilterListCtrl(*args
, **kwargs
):
5352 """PreDirFilterListCtrl() -> DirFilterListCtrl"""
5353 val
= _controls_
.new_PreDirFilterListCtrl(*args
, **kwargs
)
5357 #---------------------------------------------------------------------------
5359 class PyControl(_core
.Control
):
5361 return "<%s.%s; proxy of C++ wxPyControl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5362 def __init__(self
, *args
, **kwargs
):
5364 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
5365 long style=0, Validator validator=DefaultValidator,
5366 String name=ControlNameStr) -> PyControl
5368 newobj
= _controls_
.new_PyControl(*args
, **kwargs
)
5369 self
.this
= newobj
.this
5372 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyControl
)
5374 def _setCallbackInfo(*args
, **kwargs
):
5375 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5376 return _controls_
.PyControl__setCallbackInfo(*args
, **kwargs
)
5378 def base_DoMoveWindow(*args
, **kwargs
):
5379 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
5380 return _controls_
.PyControl_base_DoMoveWindow(*args
, **kwargs
)
5382 def base_DoSetSize(*args
, **kwargs
):
5383 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
5384 return _controls_
.PyControl_base_DoSetSize(*args
, **kwargs
)
5386 def base_DoSetClientSize(*args
, **kwargs
):
5387 """base_DoSetClientSize(self, int width, int height)"""
5388 return _controls_
.PyControl_base_DoSetClientSize(*args
, **kwargs
)
5390 def base_DoSetVirtualSize(*args
, **kwargs
):
5391 """base_DoSetVirtualSize(self, int x, int y)"""
5392 return _controls_
.PyControl_base_DoSetVirtualSize(*args
, **kwargs
)
5394 def base_DoGetSize(*args
, **kwargs
):
5395 """base_DoGetSize() -> (width, height)"""
5396 return _controls_
.PyControl_base_DoGetSize(*args
, **kwargs
)
5398 def base_DoGetClientSize(*args
, **kwargs
):
5399 """base_DoGetClientSize() -> (width, height)"""
5400 return _controls_
.PyControl_base_DoGetClientSize(*args
, **kwargs
)
5402 def base_DoGetPosition(*args
, **kwargs
):
5403 """base_DoGetPosition() -> (x,y)"""
5404 return _controls_
.PyControl_base_DoGetPosition(*args
, **kwargs
)
5406 def base_DoGetVirtualSize(*args
, **kwargs
):
5407 """base_DoGetVirtualSize(self) -> Size"""
5408 return _controls_
.PyControl_base_DoGetVirtualSize(*args
, **kwargs
)
5410 def base_DoGetBestSize(*args
, **kwargs
):
5411 """base_DoGetBestSize(self) -> Size"""
5412 return _controls_
.PyControl_base_DoGetBestSize(*args
, **kwargs
)
5414 def base_InitDialog(*args
, **kwargs
):
5415 """base_InitDialog(self)"""
5416 return _controls_
.PyControl_base_InitDialog(*args
, **kwargs
)
5418 def base_TransferDataToWindow(*args
, **kwargs
):
5419 """base_TransferDataToWindow(self) -> bool"""
5420 return _controls_
.PyControl_base_TransferDataToWindow(*args
, **kwargs
)
5422 def base_TransferDataFromWindow(*args
, **kwargs
):
5423 """base_TransferDataFromWindow(self) -> bool"""
5424 return _controls_
.PyControl_base_TransferDataFromWindow(*args
, **kwargs
)
5426 def base_Validate(*args
, **kwargs
):
5427 """base_Validate(self) -> bool"""
5428 return _controls_
.PyControl_base_Validate(*args
, **kwargs
)
5430 def base_AcceptsFocus(*args
, **kwargs
):
5431 """base_AcceptsFocus(self) -> bool"""
5432 return _controls_
.PyControl_base_AcceptsFocus(*args
, **kwargs
)
5434 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
5435 """base_AcceptsFocusFromKeyboard(self) -> bool"""
5436 return _controls_
.PyControl_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
5438 def base_GetMaxSize(*args
, **kwargs
):
5439 """base_GetMaxSize(self) -> Size"""
5440 return _controls_
.PyControl_base_GetMaxSize(*args
, **kwargs
)
5442 def base_AddChild(*args
, **kwargs
):
5443 """base_AddChild(self, Window child)"""
5444 return _controls_
.PyControl_base_AddChild(*args
, **kwargs
)
5446 def base_RemoveChild(*args
, **kwargs
):
5447 """base_RemoveChild(self, Window child)"""
5448 return _controls_
.PyControl_base_RemoveChild(*args
, **kwargs
)
5450 def base_ShouldInheritColours(*args
, **kwargs
):
5451 """base_ShouldInheritColours(self) -> bool"""
5452 return _controls_
.PyControl_base_ShouldInheritColours(*args
, **kwargs
)
5454 def base_ApplyParentThemeBackground(*args
, **kwargs
):
5455 """base_ApplyParentThemeBackground(self, Colour c)"""
5456 return _controls_
.PyControl_base_ApplyParentThemeBackground(*args
, **kwargs
)
5459 class PyControlPtr(PyControl
):
5460 def __init__(self
, this
):
5462 if not hasattr(self
,"thisown"): self
.thisown
= 0
5463 self
.__class
__ = PyControl
5464 _controls_
.PyControl_swigregister(PyControlPtr
)
5466 def PrePyControl(*args
, **kwargs
):
5467 """PrePyControl() -> PyControl"""
5468 val
= _controls_
.new_PrePyControl(*args
, **kwargs
)
5472 #---------------------------------------------------------------------------
5474 FRAME_EX_CONTEXTHELP
= _controls_
.FRAME_EX_CONTEXTHELP
5475 DIALOG_EX_CONTEXTHELP
= _controls_
.DIALOG_EX_CONTEXTHELP
5476 wxEVT_HELP
= _controls_
.wxEVT_HELP
5477 wxEVT_DETAILED_HELP
= _controls_
.wxEVT_DETAILED_HELP
5478 EVT_HELP
= wx
.PyEventBinder( wxEVT_HELP
, 1)
5479 EVT_HELP_RANGE
= wx
.PyEventBinder( wxEVT_HELP
, 2)
5480 EVT_DETAILED_HELP
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 1)
5481 EVT_DETAILED_HELP_RANGE
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 2)
5483 class HelpEvent(_core
.CommandEvent
):
5485 A help event is sent when the user has requested context-sensitive
5486 help. This can either be caused by the application requesting
5487 context-sensitive help mode via wx.ContextHelp, or (on MS Windows) by
5488 the system generating a WM_HELP message when the user pressed F1 or
5489 clicked on the query button in a dialog caption.
5491 A help event is sent to the window that the user clicked on, and is
5492 propagated up the window hierarchy until the event is processed or
5493 there are no more event handlers. The application should call
5494 event.GetId to check the identity of the clicked-on window, and then
5495 either show some suitable help or call event.Skip if the identifier is
5496 unrecognised. Calling Skip is important because it allows wxWindows to
5497 generate further events for ancestors of the clicked-on
5498 window. Otherwise it would be impossible to show help for container
5499 windows, since processing would stop after the first window found.
5502 return "<%s.%s; proxy of C++ wxHelpEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5503 def __init__(self
, *args
, **kwargs
):
5504 """__init__(self, wxEventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition) -> HelpEvent"""
5505 newobj
= _controls_
.new_HelpEvent(*args
, **kwargs
)
5506 self
.this
= newobj
.this
5509 def GetPosition(*args
, **kwargs
):
5511 GetPosition(self) -> Point
5513 Returns the left-click position of the mouse, in screen
5514 coordinates. This allows the application to position the help
5517 return _controls_
.HelpEvent_GetPosition(*args
, **kwargs
)
5519 def SetPosition(*args
, **kwargs
):
5521 SetPosition(self, Point pos)
5523 Sets the left-click position of the mouse, in screen coordinates.
5525 return _controls_
.HelpEvent_SetPosition(*args
, **kwargs
)
5527 def GetLink(*args
, **kwargs
):
5529 GetLink(self) -> String
5531 Get an optional link to further help
5533 return _controls_
.HelpEvent_GetLink(*args
, **kwargs
)
5535 def SetLink(*args
, **kwargs
):
5537 SetLink(self, String link)
5539 Set an optional link to further help
5541 return _controls_
.HelpEvent_SetLink(*args
, **kwargs
)
5543 def GetTarget(*args
, **kwargs
):
5545 GetTarget(self) -> String
5547 Get an optional target to display help in. E.g. a window specification
5549 return _controls_
.HelpEvent_GetTarget(*args
, **kwargs
)
5551 def SetTarget(*args
, **kwargs
):
5553 SetTarget(self, String target)
5555 Set an optional target to display help in. E.g. a window specification
5557 return _controls_
.HelpEvent_SetTarget(*args
, **kwargs
)
5560 class HelpEventPtr(HelpEvent
):
5561 def __init__(self
, this
):
5563 if not hasattr(self
,"thisown"): self
.thisown
= 0
5564 self
.__class
__ = HelpEvent
5565 _controls_
.HelpEvent_swigregister(HelpEventPtr
)
5567 class ContextHelp(_core
.Object
):
5569 This class changes the cursor to a query and puts the application into
5570 a 'context-sensitive help mode'. When the user left-clicks on a window
5571 within the specified window, a ``EVT_HELP`` event is sent to that
5572 control, and the application may respond to it by popping up some
5575 There are a couple of ways to invoke this behaviour implicitly:
5577 * Use the wx.DIALOG_EX_CONTEXTHELP extended style for a dialog
5578 (Windows only). This will put a question mark in the titlebar,
5579 and Windows will put the application into context-sensitive help
5580 mode automatically, with further programming.
5582 * Create a `wx.ContextHelpButton`, whose predefined behaviour is
5583 to create a context help object. Normally you will write your
5584 application so that this button is only added to a dialog for
5585 non-Windows platforms (use ``wx.DIALOG_EX_CONTEXTHELP`` on
5588 :see: `wx.ContextHelpButton`
5592 return "<%s.%s; proxy of C++ wxContextHelp instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5593 def __init__(self
, *args
, **kwargs
):
5595 __init__(self, Window window=None, bool doNow=True) -> ContextHelp
5597 Constructs a context help object, calling BeginContextHelp if doNow is
5600 If window is None, the top window is used.
5602 newobj
= _controls_
.new_ContextHelp(*args
, **kwargs
)
5603 self
.this
= newobj
.this
5606 def __del__(self
, destroy
=_controls_
.delete_ContextHelp
):
5609 if self
.thisown
: destroy(self
)
5612 def BeginContextHelp(*args
, **kwargs
):
5614 BeginContextHelp(self, Window window=None) -> bool
5616 Puts the application into context-sensitive help mode. window is the
5617 window which will be used to catch events; if NULL, the top window
5620 Returns true if the application was successfully put into
5621 context-sensitive help mode. This function only returns when the event
5624 return _controls_
.ContextHelp_BeginContextHelp(*args
, **kwargs
)
5626 def EndContextHelp(*args
, **kwargs
):
5628 EndContextHelp(self) -> bool
5630 Ends context-sensitive help mode. Not normally called by the
5633 return _controls_
.ContextHelp_EndContextHelp(*args
, **kwargs
)
5636 class ContextHelpPtr(ContextHelp
):
5637 def __init__(self
, this
):
5639 if not hasattr(self
,"thisown"): self
.thisown
= 0
5640 self
.__class
__ = ContextHelp
5641 _controls_
.ContextHelp_swigregister(ContextHelpPtr
)
5643 class ContextHelpButton(BitmapButton
):
5645 Instances of this class may be used to add a question mark button that
5646 when pressed, puts the application into context-help mode. It does
5647 this by creating a wx.ContextHelp object which itself generates a
5648 ``EVT_HELP`` event when the user clicks on a window.
5650 On Windows, you may add a question-mark icon to a dialog by use of the
5651 ``wx.DIALOG_EX_CONTEXTHELP`` extra style, but on other platforms you
5652 will have to add a button explicitly, usually next to OK, Cancel or
5655 :see: `wx.ContextHelp`, `wx.ContextHelpButton`
5659 return "<%s.%s; proxy of C++ wxContextHelpButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5660 def __init__(self
, *args
, **kwargs
):
5662 __init__(self, Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
5663 Size size=DefaultSize, long style=BU_AUTODRAW) -> ContextHelpButton
5665 Constructor, creating and showing a context help button.
5667 newobj
= _controls_
.new_ContextHelpButton(*args
, **kwargs
)
5668 self
.this
= newobj
.this
5671 self
._setOORInfo
(self
)
5674 class ContextHelpButtonPtr(ContextHelpButton
):
5675 def __init__(self
, this
):
5677 if not hasattr(self
,"thisown"): self
.thisown
= 0
5678 self
.__class
__ = ContextHelpButton
5679 _controls_
.ContextHelpButton_swigregister(ContextHelpButtonPtr
)
5681 class HelpProvider(object):
5683 wx.HelpProvider is an abstract class used by a program
5684 implementing context-sensitive help to show the help text for the
5687 The current help provider must be explicitly set by the
5688 application using wx.HelpProvider.Set().
5690 def __init__(self
): raise RuntimeError, "No constructor defined"
5692 return "<%s.%s; proxy of C++ wxHelpProvider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5693 def Set(*args
, **kwargs
):
5695 Set(HelpProvider helpProvider) -> HelpProvider
5697 Sset the current, application-wide help provider. Returns the previous
5698 one. Unlike some other classes, the help provider is not created on
5699 demand. This must be explicitly done by the application.
5701 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5703 Set
= staticmethod(Set
)
5704 def Get(*args
, **kwargs
):
5706 Get() -> HelpProvider
5708 Return the current application-wide help provider.
5710 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
5712 Get
= staticmethod(Get
)
5713 def GetHelp(*args
, **kwargs
):
5715 GetHelp(self, Window window) -> String
5717 Gets the help string for this window. Its interpretation is dependent
5718 on the help provider except that empty string always means that no
5719 help is associated with the window.
5721 return _controls_
.HelpProvider_GetHelp(*args
, **kwargs
)
5723 def ShowHelp(*args
, **kwargs
):
5725 ShowHelp(self, Window window) -> bool
5727 Shows help for the given window. Uses GetHelp internally if
5728 applicable. Returns True if it was done, or False if no help was
5729 available for this window.
5731 return _controls_
.HelpProvider_ShowHelp(*args
, **kwargs
)
5733 def AddHelp(*args
, **kwargs
):
5735 AddHelp(self, Window window, String text)
5737 Associates the text with the given window.
5739 return _controls_
.HelpProvider_AddHelp(*args
, **kwargs
)
5741 def AddHelpById(*args
, **kwargs
):
5743 AddHelpById(self, int id, String text)
5745 This version associates the given text with all windows with this
5746 id. May be used to set the same help string for all Cancel buttons in
5747 the application, for example.
5749 return _controls_
.HelpProvider_AddHelpById(*args
, **kwargs
)
5751 def RemoveHelp(*args
, **kwargs
):
5753 RemoveHelp(self, Window window)
5755 Removes the association between the window pointer and the help
5756 text. This is called by the wx.Window destructor. Without this, the
5757 table of help strings will fill up and when window pointers are
5758 reused, the wrong help string will be found.
5760 return _controls_
.HelpProvider_RemoveHelp(*args
, **kwargs
)
5762 def Destroy(*args
, **kwargs
):
5764 return _controls_
.HelpProvider_Destroy(*args
, **kwargs
)
5767 class HelpProviderPtr(HelpProvider
):
5768 def __init__(self
, this
):
5770 if not hasattr(self
,"thisown"): self
.thisown
= 0
5771 self
.__class
__ = HelpProvider
5772 _controls_
.HelpProvider_swigregister(HelpProviderPtr
)
5774 def HelpProvider_Set(*args
, **kwargs
):
5776 HelpProvider_Set(HelpProvider helpProvider) -> HelpProvider
5778 Sset the current, application-wide help provider. Returns the previous
5779 one. Unlike some other classes, the help provider is not created on
5780 demand. This must be explicitly done by the application.
5782 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5784 def HelpProvider_Get(*args
, **kwargs
):
5786 HelpProvider_Get() -> HelpProvider
5788 Return the current application-wide help provider.
5790 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
5792 class SimpleHelpProvider(HelpProvider
):
5794 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
5795 supports only plain text help strings, and shows the string associated
5796 with the control (if any) in a tooltip.
5799 return "<%s.%s; proxy of C++ wxSimpleHelpProvider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5800 def __init__(self
, *args
, **kwargs
):
5802 __init__(self) -> SimpleHelpProvider
5804 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
5805 supports only plain text help strings, and shows the string associated
5806 with the control (if any) in a tooltip.
5808 newobj
= _controls_
.new_SimpleHelpProvider(*args
, **kwargs
)
5809 self
.this
= newobj
.this
5813 class SimpleHelpProviderPtr(SimpleHelpProvider
):
5814 def __init__(self
, this
):
5816 if not hasattr(self
,"thisown"): self
.thisown
= 0
5817 self
.__class
__ = SimpleHelpProvider
5818 _controls_
.SimpleHelpProvider_swigregister(SimpleHelpProviderPtr
)
5820 #---------------------------------------------------------------------------
5822 class DragImage(_core
.Object
):
5824 return "<%s.%s; proxy of C++ wxGenericDragImage instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5825 def __init__(self
, *args
, **kwargs
):
5826 """__init__(self, Bitmap image, Cursor cursor=wxNullCursor) -> DragImage"""
5827 newobj
= _controls_
.new_DragImage(*args
, **kwargs
)
5828 self
.this
= newobj
.this
5831 def __del__(self
, destroy
=_controls_
.delete_DragImage
):
5834 if self
.thisown
: destroy(self
)
5837 def SetBackingBitmap(*args
, **kwargs
):
5838 """SetBackingBitmap(self, Bitmap bitmap)"""
5839 return _controls_
.DragImage_SetBackingBitmap(*args
, **kwargs
)
5841 def BeginDrag(*args
, **kwargs
):
5843 BeginDrag(self, Point hotspot, Window window, bool fullScreen=False,
5844 Rect rect=None) -> bool
5846 return _controls_
.DragImage_BeginDrag(*args
, **kwargs
)
5848 def BeginDragBounded(*args
, **kwargs
):
5849 """BeginDragBounded(self, Point hotspot, Window window, Window boundingWindow) -> bool"""
5850 return _controls_
.DragImage_BeginDragBounded(*args
, **kwargs
)
5852 def EndDrag(*args
, **kwargs
):
5853 """EndDrag(self) -> bool"""
5854 return _controls_
.DragImage_EndDrag(*args
, **kwargs
)
5856 def Move(*args
, **kwargs
):
5857 """Move(self, Point pt) -> bool"""
5858 return _controls_
.DragImage_Move(*args
, **kwargs
)
5860 def Show(*args
, **kwargs
):
5861 """Show(self) -> bool"""
5862 return _controls_
.DragImage_Show(*args
, **kwargs
)
5864 def Hide(*args
, **kwargs
):
5865 """Hide(self) -> bool"""
5866 return _controls_
.DragImage_Hide(*args
, **kwargs
)
5868 def GetImageRect(*args
, **kwargs
):
5869 """GetImageRect(self, Point pos) -> Rect"""
5870 return _controls_
.DragImage_GetImageRect(*args
, **kwargs
)
5872 def DoDrawImage(*args
, **kwargs
):
5873 """DoDrawImage(self, DC dc, Point pos) -> bool"""
5874 return _controls_
.DragImage_DoDrawImage(*args
, **kwargs
)
5876 def UpdateBackingFromWindow(*args
, **kwargs
):
5877 """UpdateBackingFromWindow(self, DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -> bool"""
5878 return _controls_
.DragImage_UpdateBackingFromWindow(*args
, **kwargs
)
5880 def RedrawImage(*args
, **kwargs
):
5881 """RedrawImage(self, Point oldPos, Point newPos, bool eraseOld, bool drawNew) -> bool"""
5882 return _controls_
.DragImage_RedrawImage(*args
, **kwargs
)
5885 class DragImagePtr(DragImage
):
5886 def __init__(self
, this
):
5888 if not hasattr(self
,"thisown"): self
.thisown
= 0
5889 self
.__class
__ = DragImage
5890 _controls_
.DragImage_swigregister(DragImagePtr
)
5892 def DragIcon(*args
, **kwargs
):
5893 """DragIcon(Icon image, Cursor cursor=wxNullCursor) -> DragImage"""
5894 val
= _controls_
.new_DragIcon(*args
, **kwargs
)
5898 def DragString(*args
, **kwargs
):
5899 """DragString(String str, Cursor cursor=wxNullCursor) -> DragImage"""
5900 val
= _controls_
.new_DragString(*args
, **kwargs
)
5904 def DragTreeItem(*args
, **kwargs
):
5905 """DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -> DragImage"""
5906 val
= _controls_
.new_DragTreeItem(*args
, **kwargs
)
5910 def DragListItem(*args
, **kwargs
):
5911 """DragListItem(ListCtrl listCtrl, long id) -> DragImage"""
5912 val
= _controls_
.new_DragListItem(*args
, **kwargs
)