1 # This file was created automatically by SWIG.
2 # Don't modify this file, modify the SWIG interface instead.
8 __docfilter__
= wx
.__docfilter
__
9 #---------------------------------------------------------------------------
11 BU_LEFT
= _controls_
.BU_LEFT
12 BU_TOP
= _controls_
.BU_TOP
13 BU_RIGHT
= _controls_
.BU_RIGHT
14 BU_BOTTOM
= _controls_
.BU_BOTTOM
15 BU_EXACTFIT
= _controls_
.BU_EXACTFIT
16 BU_AUTODRAW
= _controls_
.BU_AUTODRAW
17 class Button(_core
.Control
):
19 A button is a control that contains a text string, and is one of the most
20 common elements of a GUI. It may be placed on a dialog box or panel, or
21 indeed almost any other window.
24 return "<%s.%s; proxy of C++ wxButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
25 def __init__(self
, *args
, **kwargs
):
27 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
28 Size size=DefaultSize, long style=0,
29 Validator validator=DefaultValidator, String name=ButtonNameStr) -> Button
31 Create and show a button.
33 newobj
= _controls_
.new_Button(*args
, **kwargs
)
34 self
.this
= newobj
.this
37 self
._setOORInfo
(self
)
39 def Create(*args
, **kwargs
):
41 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
42 Size size=DefaultSize, long style=0,
43 Validator validator=DefaultValidator, String name=ButtonNameStr) -> bool
45 Acutally create the GUI Button for 2-phase creation.
47 return _controls_
.Button_Create(*args
, **kwargs
)
49 def SetDefault(*args
, **kwargs
):
53 This sets the button to be the default item for the panel or dialog box.
55 return _controls_
.Button_SetDefault(*args
, **kwargs
)
57 def GetDefaultSize(*args
, **kwargs
):
58 """Button.GetDefaultSize() -> Size"""
59 return _controls_
.Button_GetDefaultSize(*args
, **kwargs
)
61 GetDefaultSize
= staticmethod(GetDefaultSize
)
63 class ButtonPtr(Button
):
64 def __init__(self
, this
):
66 if not hasattr(self
,"thisown"): self
.thisown
= 0
67 self
.__class
__ = Button
68 _controls_
.Button_swigregister(ButtonPtr
)
69 cvar
= _controls_
.cvar
70 ButtonNameStr
= cvar
.ButtonNameStr
72 def PreButton(*args
, **kwargs
):
76 Precreate a Button for 2-phase creation.
78 val
= _controls_
.new_PreButton(*args
, **kwargs
)
82 def Button_GetDefaultSize(*args
, **kwargs
):
83 """Button_GetDefaultSize() -> Size"""
84 return _controls_
.Button_GetDefaultSize(*args
, **kwargs
)
86 class BitmapButton(Button
):
88 A Button that contains a bitmap. A bitmap button can be supplied with a
89 single bitmap, and wxWindows will draw all button states using this bitmap. If
90 the application needs more control, additional bitmaps for the selected state,
91 unpressed focused state, and greyed-out state may be supplied.
95 return "<%s.%s; proxy of C++ wxBitmapButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
96 def __init__(self
, *args
, **kwargs
):
98 __init__(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
99 Size size=DefaultSize, long style=BU_AUTODRAW,
100 Validator validator=DefaultValidator,
101 String name=ButtonNameStr) -> BitmapButton
103 Create and show a button with a bitmap for the label.
105 newobj
= _controls_
.new_BitmapButton(*args
, **kwargs
)
106 self
.this
= newobj
.this
109 self
._setOORInfo
(self
)
111 def Create(*args
, **kwargs
):
113 Create(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
114 Size size=DefaultSize, long style=BU_AUTODRAW,
115 Validator validator=DefaultValidator,
116 String name=ButtonNameStr) -> bool
118 Acutally create the GUI BitmapButton for 2-phase creation.
120 return _controls_
.BitmapButton_Create(*args
, **kwargs
)
122 def GetBitmapLabel(*args
, **kwargs
):
124 GetBitmapLabel(self) -> Bitmap
126 Returns the label bitmap (the one passed to the constructor).
128 return _controls_
.BitmapButton_GetBitmapLabel(*args
, **kwargs
)
130 def GetBitmapDisabled(*args
, **kwargs
):
132 GetBitmapDisabled(self) -> Bitmap
134 Returns the bitmap for the disabled state.
136 return _controls_
.BitmapButton_GetBitmapDisabled(*args
, **kwargs
)
138 def GetBitmapFocus(*args
, **kwargs
):
140 GetBitmapFocus(self) -> Bitmap
142 Returns the bitmap for the focused state.
144 return _controls_
.BitmapButton_GetBitmapFocus(*args
, **kwargs
)
146 def GetBitmapSelected(*args
, **kwargs
):
148 GetBitmapSelected(self) -> Bitmap
150 Returns the bitmap for the selected state.
152 return _controls_
.BitmapButton_GetBitmapSelected(*args
, **kwargs
)
154 def SetBitmapDisabled(*args
, **kwargs
):
156 SetBitmapDisabled(self, Bitmap bitmap)
158 Sets the bitmap for the disabled button appearance.
160 return _controls_
.BitmapButton_SetBitmapDisabled(*args
, **kwargs
)
162 def SetBitmapFocus(*args
, **kwargs
):
164 SetBitmapFocus(self, Bitmap bitmap)
166 Sets the bitmap for the button appearance when it has the keyboard focus.
168 return _controls_
.BitmapButton_SetBitmapFocus(*args
, **kwargs
)
170 def SetBitmapSelected(*args
, **kwargs
):
172 SetBitmapSelected(self, Bitmap bitmap)
174 Sets the bitmap for the selected (depressed) button appearance.
176 return _controls_
.BitmapButton_SetBitmapSelected(*args
, **kwargs
)
178 def SetBitmapLabel(*args
, **kwargs
):
180 SetBitmapLabel(self, Bitmap bitmap)
182 Sets the bitmap label for the button. This is the bitmap used for the
183 unselected state, and for all other states if no other bitmaps are provided.
185 return _controls_
.BitmapButton_SetBitmapLabel(*args
, **kwargs
)
187 def SetMargins(*args
, **kwargs
):
188 """SetMargins(self, int x, int y)"""
189 return _controls_
.BitmapButton_SetMargins(*args
, **kwargs
)
191 def GetMarginX(*args
, **kwargs
):
192 """GetMarginX(self) -> int"""
193 return _controls_
.BitmapButton_GetMarginX(*args
, **kwargs
)
195 def GetMarginY(*args
, **kwargs
):
196 """GetMarginY(self) -> int"""
197 return _controls_
.BitmapButton_GetMarginY(*args
, **kwargs
)
200 class BitmapButtonPtr(BitmapButton
):
201 def __init__(self
, this
):
203 if not hasattr(self
,"thisown"): self
.thisown
= 0
204 self
.__class
__ = BitmapButton
205 _controls_
.BitmapButton_swigregister(BitmapButtonPtr
)
207 def PreBitmapButton(*args
, **kwargs
):
209 PreBitmapButton() -> BitmapButton
211 Precreate a BitmapButton for 2-phase creation.
213 val
= _controls_
.new_PreBitmapButton(*args
, **kwargs
)
217 #---------------------------------------------------------------------------
219 CHK_2STATE
= _controls_
.CHK_2STATE
220 CHK_3STATE
= _controls_
.CHK_3STATE
221 CHK_ALLOW_3RD_STATE_FOR_USER
= _controls_
.CHK_ALLOW_3RD_STATE_FOR_USER
222 CHK_UNCHECKED
= _controls_
.CHK_UNCHECKED
223 CHK_CHECKED
= _controls_
.CHK_CHECKED
224 CHK_UNDETERMINED
= _controls_
.CHK_UNDETERMINED
225 class CheckBox(_core
.Control
):
227 A checkbox is a labelled box which by default is either on (checkmark is
228 visible) or off (no checkmark). Optionally (When the wxCHK_3STATE style flag
229 is set) it can have a third state, called the mixed or undetermined
230 state. Often this is used as a "Does Not Apply" state.
233 return "<%s.%s; proxy of C++ wxCheckBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
234 def __init__(self
, *args
, **kwargs
):
236 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
237 Size size=DefaultSize, long style=0,
238 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -> CheckBox
240 Creates and shows a CheckBox control
242 newobj
= _controls_
.new_CheckBox(*args
, **kwargs
)
243 self
.this
= newobj
.this
246 self
._setOORInfo
(self
)
248 def Create(*args
, **kwargs
):
250 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
251 Size size=DefaultSize, long style=0,
252 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -> bool
254 Actually create the GUI CheckBox for 2-phase creation.
256 return _controls_
.CheckBox_Create(*args
, **kwargs
)
258 def GetValue(*args
, **kwargs
):
260 GetValue(self) -> bool
262 Gets the state of a 2-state CheckBox. Returns True if it is checked,
265 return _controls_
.CheckBox_GetValue(*args
, **kwargs
)
267 def IsChecked(*args
, **kwargs
):
269 IsChecked(self) -> bool
271 Similar to GetValue, but raises an exception if it is not a 2-state CheckBox.
273 return _controls_
.CheckBox_IsChecked(*args
, **kwargs
)
275 def SetValue(*args
, **kwargs
):
277 SetValue(self, bool state)
279 Set the state of a 2-state CheckBox. Pass True for checked,
282 return _controls_
.CheckBox_SetValue(*args
, **kwargs
)
284 def Get3StateValue(*args
, **kwargs
):
286 Get3StateValue(self) -> int
288 Returns wx.CHK_UNCHECKED when the CheckBox is unchecked, wx.CHK_CHECKED when
289 it is checked and wx.CHK_UNDETERMINED when it's in the undetermined state.
290 Raises an exceptiion when the function is used with a 2-state CheckBox.
292 return _controls_
.CheckBox_Get3StateValue(*args
, **kwargs
)
294 def Set3StateValue(*args
, **kwargs
):
296 Set3StateValue(self, int state)
298 Sets the CheckBox to the given state. The state parameter can be
299 one of the following: wx.CHK_UNCHECKED (Check is off), wx.CHK_CHECKED
300 (Check is on) or wx.CHK_UNDETERMINED (Check is mixed). Raises an
301 exception when the CheckBox is a 2-state checkbox and setting the state
302 to wx.CHK_UNDETERMINED.
304 return _controls_
.CheckBox_Set3StateValue(*args
, **kwargs
)
306 def Is3State(*args
, **kwargs
):
308 Is3State(self) -> bool
310 Returns whether or not the CheckBox is a 3-state CheckBox.
312 return _controls_
.CheckBox_Is3State(*args
, **kwargs
)
314 def Is3rdStateAllowedForUser(*args
, **kwargs
):
316 Is3rdStateAllowedForUser(self) -> bool
318 Returns whether or not the user can set the CheckBox to the third state.
320 return _controls_
.CheckBox_Is3rdStateAllowedForUser(*args
, **kwargs
)
323 class CheckBoxPtr(CheckBox
):
324 def __init__(self
, this
):
326 if not hasattr(self
,"thisown"): self
.thisown
= 0
327 self
.__class
__ = CheckBox
328 _controls_
.CheckBox_swigregister(CheckBoxPtr
)
329 CheckBoxNameStr
= cvar
.CheckBoxNameStr
331 def PreCheckBox(*args
, **kwargs
):
333 PreCheckBox() -> CheckBox
335 Precreate a CheckBox for 2-phase creation.
337 val
= _controls_
.new_PreCheckBox(*args
, **kwargs
)
341 #---------------------------------------------------------------------------
343 class Choice(_core
.ControlWithItems
):
345 A Choice control is used to select one of a list of strings. Unlike a ListBox,
346 only the selection is visible until the user pulls down the menu of choices.
349 return "<%s.%s; proxy of C++ wxChoice instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
350 def __init__(self
, *args
, **kwargs
):
352 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
353 List choices=[], long style=0, Validator validator=DefaultValidator,
354 String name=ChoiceNameStr) -> Choice
356 Create and show a Choice control
358 newobj
= _controls_
.new_Choice(*args
, **kwargs
)
359 self
.this
= newobj
.this
362 self
._setOORInfo
(self
)
364 def Create(*args
, **kwargs
):
366 Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
367 List choices=[], long style=0, Validator validator=DefaultValidator,
368 String name=ChoiceNameStr) -> bool
370 Actually create the GUI Choice control for 2-phase creation
372 return _controls_
.Choice_Create(*args
, **kwargs
)
374 def SetSelection(*args
, **kwargs
):
376 SetSelection(self, int n)
378 Select the n'th item (zero based) in the list.
380 return _controls_
.Choice_SetSelection(*args
, **kwargs
)
382 def SetStringSelection(*args
, **kwargs
):
384 SetStringSelection(self, String string)
386 Select the item with the specifed string
388 return _controls_
.Choice_SetStringSelection(*args
, **kwargs
)
390 def SetString(*args
, **kwargs
):
392 SetString(self, int n, String string)
394 Set the label for the n'th item (zero based) in the list.
396 return _controls_
.Choice_SetString(*args
, **kwargs
)
398 Select
= SetSelection
400 class ChoicePtr(Choice
):
401 def __init__(self
, this
):
403 if not hasattr(self
,"thisown"): self
.thisown
= 0
404 self
.__class
__ = Choice
405 _controls_
.Choice_swigregister(ChoicePtr
)
406 ChoiceNameStr
= cvar
.ChoiceNameStr
408 def PreChoice(*args
, **kwargs
):
410 PreChoice() -> Choice
412 Precreate a Choice control for 2-phase creation.
414 val
= _controls_
.new_PreChoice(*args
, **kwargs
)
418 #---------------------------------------------------------------------------
420 class ComboBox(Choice
):
422 A combobox is like a combination of an edit control and a listbox. It can be
423 displayed as static list with editable or read-only text field; or a drop-down
424 list with text field.
427 return "<%s.%s; proxy of C++ wxComboBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
428 def __init__(self
, *args
, **kwargs
):
430 __init__(Window parent, int id, String value=EmptyString,
431 Point pos=DefaultPosition, Size size=DefaultSize,
432 List choices=[], long style=0, Validator validator=DefaultValidator,
433 String name=ComboBoxNameStr) -> ComboBox
435 Constructor, creates and shows a ComboBox control.
437 newobj
= _controls_
.new_ComboBox(*args
, **kwargs
)
438 self
.this
= newobj
.this
441 self
._setOORInfo
(self
)
443 def Create(*args
, **kwargs
):
445 Create(Window parent, int id, String value=EmptyString,
446 Point pos=DefaultPosition, Size size=DefaultSize,
447 List choices=[], long style=0, Validator validator=DefaultValidator,
448 String name=ChoiceNameStr) -> bool
450 Actually create the GUI wxComboBox control for 2-phase creation
452 return _controls_
.ComboBox_Create(*args
, **kwargs
)
454 def GetValue(*args
, **kwargs
):
456 GetValue(self) -> String
458 Returns the current value in the combobox text field.
460 return _controls_
.ComboBox_GetValue(*args
, **kwargs
)
462 def SetValue(*args
, **kwargs
):
463 """SetValue(self, String value)"""
464 return _controls_
.ComboBox_SetValue(*args
, **kwargs
)
466 def Copy(*args
, **kwargs
):
470 Copies the selected text to the clipboard.
472 return _controls_
.ComboBox_Copy(*args
, **kwargs
)
474 def Cut(*args
, **kwargs
):
478 Copies the selected text to the clipboard and removes the selection.
480 return _controls_
.ComboBox_Cut(*args
, **kwargs
)
482 def Paste(*args
, **kwargs
):
486 Pastes text from the clipboard to the text field.
488 return _controls_
.ComboBox_Paste(*args
, **kwargs
)
490 def SetInsertionPoint(*args
, **kwargs
):
492 SetInsertionPoint(self, long pos)
494 Sets the insertion point in the combobox text field.
496 return _controls_
.ComboBox_SetInsertionPoint(*args
, **kwargs
)
498 def GetInsertionPoint(*args
, **kwargs
):
500 GetInsertionPoint(self) -> long
502 Returns the insertion point for the combobox's text field.
504 return _controls_
.ComboBox_GetInsertionPoint(*args
, **kwargs
)
506 def GetLastPosition(*args
, **kwargs
):
508 GetLastPosition(self) -> long
510 Returns the last position in the combobox text field.
512 return _controls_
.ComboBox_GetLastPosition(*args
, **kwargs
)
514 def Replace(*args
, **kwargs
):
516 Replace(self, long from, long to, String value)
518 Replaces the text between two positions with the given text, in the
521 return _controls_
.ComboBox_Replace(*args
, **kwargs
)
523 def SetSelection(*args
, **kwargs
):
525 SetSelection(self, int n)
527 Selects the text between the two positions, in the combobox text field.
529 return _controls_
.ComboBox_SetSelection(*args
, **kwargs
)
531 def SetMark(*args
, **kwargs
):
532 """SetMark(self, long from, long to)"""
533 return _controls_
.ComboBox_SetMark(*args
, **kwargs
)
535 def SetEditable(*args
, **kwargs
):
536 """SetEditable(self, bool editable)"""
537 return _controls_
.ComboBox_SetEditable(*args
, **kwargs
)
539 def SetInsertionPointEnd(*args
, **kwargs
):
541 SetInsertionPointEnd(self)
543 Sets the insertion point at the end of the combobox text field.
545 return _controls_
.ComboBox_SetInsertionPointEnd(*args
, **kwargs
)
547 def Remove(*args
, **kwargs
):
549 Remove(self, long from, long to)
551 Removes the text between the two positions in the combobox text field.
553 return _controls_
.ComboBox_Remove(*args
, **kwargs
)
556 class ComboBoxPtr(ComboBox
):
557 def __init__(self
, this
):
559 if not hasattr(self
,"thisown"): self
.thisown
= 0
560 self
.__class
__ = ComboBox
561 _controls_
.ComboBox_swigregister(ComboBoxPtr
)
562 ComboBoxNameStr
= cvar
.ComboBoxNameStr
564 def PreComboBox(*args
, **kwargs
):
566 PreComboBox() -> ComboBox
568 Precreate a ComboBox control for 2-phase creation.
570 val
= _controls_
.new_PreComboBox(*args
, **kwargs
)
574 #---------------------------------------------------------------------------
576 GA_HORIZONTAL
= _controls_
.GA_HORIZONTAL
577 GA_VERTICAL
= _controls_
.GA_VERTICAL
578 GA_SMOOTH
= _controls_
.GA_SMOOTH
579 GA_PROGRESSBAR
= _controls_
.GA_PROGRESSBAR
580 class Gauge(_core
.Control
):
582 return "<%s.%s; proxy of C++ wxGauge instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
583 def __init__(self
, *args
, **kwargs
):
585 __init__(self, Window parent, int id, int range, Point pos=DefaultPosition,
586 Size size=DefaultSize, long style=GA_HORIZONTAL,
587 Validator validator=DefaultValidator,
588 String name=GaugeNameStr) -> Gauge
590 newobj
= _controls_
.new_Gauge(*args
, **kwargs
)
591 self
.this
= newobj
.this
594 self
._setOORInfo
(self
)
596 def Create(*args
, **kwargs
):
598 Create(self, Window parent, int id, int range, Point pos=DefaultPosition,
599 Size size=DefaultSize, long style=GA_HORIZONTAL,
600 Validator validator=DefaultValidator,
601 String name=GaugeNameStr) -> bool
603 return _controls_
.Gauge_Create(*args
, **kwargs
)
605 def SetRange(*args
, **kwargs
):
606 """SetRange(self, int range)"""
607 return _controls_
.Gauge_SetRange(*args
, **kwargs
)
609 def GetRange(*args
, **kwargs
):
610 """GetRange(self) -> int"""
611 return _controls_
.Gauge_GetRange(*args
, **kwargs
)
613 def SetValue(*args
, **kwargs
):
614 """SetValue(self, int pos)"""
615 return _controls_
.Gauge_SetValue(*args
, **kwargs
)
617 def GetValue(*args
, **kwargs
):
618 """GetValue(self) -> int"""
619 return _controls_
.Gauge_GetValue(*args
, **kwargs
)
621 def IsVertical(*args
, **kwargs
):
622 """IsVertical(self) -> bool"""
623 return _controls_
.Gauge_IsVertical(*args
, **kwargs
)
625 def SetShadowWidth(*args
, **kwargs
):
626 """SetShadowWidth(self, int w)"""
627 return _controls_
.Gauge_SetShadowWidth(*args
, **kwargs
)
629 def GetShadowWidth(*args
, **kwargs
):
630 """GetShadowWidth(self) -> int"""
631 return _controls_
.Gauge_GetShadowWidth(*args
, **kwargs
)
633 def SetBezelFace(*args
, **kwargs
):
634 """SetBezelFace(self, int w)"""
635 return _controls_
.Gauge_SetBezelFace(*args
, **kwargs
)
637 def GetBezelFace(*args
, **kwargs
):
638 """GetBezelFace(self) -> int"""
639 return _controls_
.Gauge_GetBezelFace(*args
, **kwargs
)
642 class GaugePtr(Gauge
):
643 def __init__(self
, this
):
645 if not hasattr(self
,"thisown"): self
.thisown
= 0
646 self
.__class
__ = Gauge
647 _controls_
.Gauge_swigregister(GaugePtr
)
648 GaugeNameStr
= cvar
.GaugeNameStr
650 def PreGauge(*args
, **kwargs
):
651 """PreGauge() -> Gauge"""
652 val
= _controls_
.new_PreGauge(*args
, **kwargs
)
656 #---------------------------------------------------------------------------
658 class StaticBox(_core
.Control
):
660 return "<%s.%s; proxy of C++ wxStaticBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
661 def __init__(self
, *args
, **kwargs
):
663 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
664 Size size=DefaultSize, long style=0,
665 String name=StaticBoxNameStr) -> StaticBox
667 newobj
= _controls_
.new_StaticBox(*args
, **kwargs
)
668 self
.this
= newobj
.this
671 self
._setOORInfo
(self
)
673 def Create(*args
, **kwargs
):
675 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
676 Size size=DefaultSize, long style=0,
677 String name=StaticBoxNameStr) -> bool
679 return _controls_
.StaticBox_Create(*args
, **kwargs
)
682 class StaticBoxPtr(StaticBox
):
683 def __init__(self
, this
):
685 if not hasattr(self
,"thisown"): self
.thisown
= 0
686 self
.__class
__ = StaticBox
687 _controls_
.StaticBox_swigregister(StaticBoxPtr
)
688 StaticBitmapNameStr
= cvar
.StaticBitmapNameStr
689 StaticBoxNameStr
= cvar
.StaticBoxNameStr
690 StaticTextNameStr
= cvar
.StaticTextNameStr
692 def PreStaticBox(*args
, **kwargs
):
693 """PreStaticBox() -> StaticBox"""
694 val
= _controls_
.new_PreStaticBox(*args
, **kwargs
)
698 #---------------------------------------------------------------------------
700 class StaticLine(_core
.Control
):
702 return "<%s.%s; proxy of C++ wxStaticLine instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
703 def __init__(self
, *args
, **kwargs
):
705 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
706 long style=LI_HORIZONTAL,
707 String name=StaticTextNameStr) -> StaticLine
709 newobj
= _controls_
.new_StaticLine(*args
, **kwargs
)
710 self
.this
= newobj
.this
713 self
._setOORInfo
(self
)
715 def Create(*args
, **kwargs
):
717 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
718 long style=LI_HORIZONTAL,
719 String name=StaticTextNameStr) -> bool
721 return _controls_
.StaticLine_Create(*args
, **kwargs
)
723 def IsVertical(*args
, **kwargs
):
724 """IsVertical(self) -> bool"""
725 return _controls_
.StaticLine_IsVertical(*args
, **kwargs
)
727 def GetDefaultSize(*args
, **kwargs
):
728 """StaticLine.GetDefaultSize() -> int"""
729 return _controls_
.StaticLine_GetDefaultSize(*args
, **kwargs
)
731 GetDefaultSize
= staticmethod(GetDefaultSize
)
733 class StaticLinePtr(StaticLine
):
734 def __init__(self
, this
):
736 if not hasattr(self
,"thisown"): self
.thisown
= 0
737 self
.__class
__ = StaticLine
738 _controls_
.StaticLine_swigregister(StaticLinePtr
)
740 def PreStaticLine(*args
, **kwargs
):
741 """PreStaticLine() -> StaticLine"""
742 val
= _controls_
.new_PreStaticLine(*args
, **kwargs
)
746 def StaticLine_GetDefaultSize(*args
, **kwargs
):
747 """StaticLine_GetDefaultSize() -> int"""
748 return _controls_
.StaticLine_GetDefaultSize(*args
, **kwargs
)
750 #---------------------------------------------------------------------------
752 class StaticText(_core
.Control
):
754 return "<%s.%s; proxy of C++ wxStaticText instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
755 def __init__(self
, *args
, **kwargs
):
757 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
758 Size size=DefaultSize, long style=0,
759 String name=StaticTextNameStr) -> StaticText
761 newobj
= _controls_
.new_StaticText(*args
, **kwargs
)
762 self
.this
= newobj
.this
765 self
._setOORInfo
(self
)
767 def Create(*args
, **kwargs
):
769 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
770 Size size=DefaultSize, long style=0,
771 String name=StaticTextNameStr) -> bool
773 return _controls_
.StaticText_Create(*args
, **kwargs
)
776 class StaticTextPtr(StaticText
):
777 def __init__(self
, this
):
779 if not hasattr(self
,"thisown"): self
.thisown
= 0
780 self
.__class
__ = StaticText
781 _controls_
.StaticText_swigregister(StaticTextPtr
)
783 def PreStaticText(*args
, **kwargs
):
784 """PreStaticText() -> StaticText"""
785 val
= _controls_
.new_PreStaticText(*args
, **kwargs
)
789 #---------------------------------------------------------------------------
791 class StaticBitmap(_core
.Control
):
793 return "<%s.%s; proxy of C++ wxStaticBitmap instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
794 def __init__(self
, *args
, **kwargs
):
796 __init__(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
797 Size size=DefaultSize, long style=0,
798 String name=StaticBitmapNameStr) -> StaticBitmap
800 newobj
= _controls_
.new_StaticBitmap(*args
, **kwargs
)
801 self
.this
= newobj
.this
804 self
._setOORInfo
(self
)
806 def Create(*args
, **kwargs
):
808 Create(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
809 Size size=DefaultSize, long style=0,
810 String name=StaticBitmapNameStr) -> bool
812 return _controls_
.StaticBitmap_Create(*args
, **kwargs
)
814 def GetBitmap(*args
, **kwargs
):
815 """GetBitmap(self) -> Bitmap"""
816 return _controls_
.StaticBitmap_GetBitmap(*args
, **kwargs
)
818 def SetBitmap(*args
, **kwargs
):
819 """SetBitmap(self, Bitmap bitmap)"""
820 return _controls_
.StaticBitmap_SetBitmap(*args
, **kwargs
)
822 def SetIcon(*args
, **kwargs
):
823 """SetIcon(self, Icon icon)"""
824 return _controls_
.StaticBitmap_SetIcon(*args
, **kwargs
)
827 class StaticBitmapPtr(StaticBitmap
):
828 def __init__(self
, this
):
830 if not hasattr(self
,"thisown"): self
.thisown
= 0
831 self
.__class
__ = StaticBitmap
832 _controls_
.StaticBitmap_swigregister(StaticBitmapPtr
)
834 def PreStaticBitmap(*args
, **kwargs
):
835 """PreStaticBitmap() -> StaticBitmap"""
836 val
= _controls_
.new_PreStaticBitmap(*args
, **kwargs
)
840 #---------------------------------------------------------------------------
842 class ListBox(_core
.ControlWithItems
):
844 return "<%s.%s; proxy of C++ wxListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
845 def __init__(self
, *args
, **kwargs
):
847 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
848 wxArrayString choices=wxPyEmptyStringArray,
849 long style=0, Validator validator=DefaultValidator,
850 String name=ListBoxNameStr) -> ListBox
852 newobj
= _controls_
.new_ListBox(*args
, **kwargs
)
853 self
.this
= newobj
.this
856 self
._setOORInfo
(self
)
858 def Create(*args
, **kwargs
):
860 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
861 wxArrayString choices=wxPyEmptyStringArray,
862 long style=0, Validator validator=DefaultValidator,
863 String name=ListBoxNameStr) -> bool
865 return _controls_
.ListBox_Create(*args
, **kwargs
)
867 def Insert(*args
, **kwargs
):
869 Insert(self, String item, int pos, PyObject clientData=None)
871 Insert an item into the control before the item at the pos index,
872 optionally associating some data object with the item.
874 return _controls_
.ListBox_Insert(*args
, **kwargs
)
876 def InsertItems(*args
, **kwargs
):
877 """InsertItems(self, wxArrayString items, int pos)"""
878 return _controls_
.ListBox_InsertItems(*args
, **kwargs
)
880 def Set(*args
, **kwargs
):
881 """Set(self, wxArrayString items)"""
882 return _controls_
.ListBox_Set(*args
, **kwargs
)
884 def IsSelected(*args
, **kwargs
):
885 """IsSelected(self, int n) -> bool"""
886 return _controls_
.ListBox_IsSelected(*args
, **kwargs
)
888 def SetSelection(*args
, **kwargs
):
889 """SetSelection(self, int n, bool select=True)"""
890 return _controls_
.ListBox_SetSelection(*args
, **kwargs
)
892 def Select(*args
, **kwargs
):
896 Sets the item at index 'n' to be the selected item.
898 return _controls_
.ListBox_Select(*args
, **kwargs
)
900 def Deselect(*args
, **kwargs
):
901 """Deselect(self, int n)"""
902 return _controls_
.ListBox_Deselect(*args
, **kwargs
)
904 def DeselectAll(*args
, **kwargs
):
905 """DeselectAll(self, int itemToLeaveSelected=-1)"""
906 return _controls_
.ListBox_DeselectAll(*args
, **kwargs
)
908 def SetStringSelection(*args
, **kwargs
):
909 """SetStringSelection(self, String s, bool select=True) -> bool"""
910 return _controls_
.ListBox_SetStringSelection(*args
, **kwargs
)
912 def GetSelections(*args
, **kwargs
):
913 """GetSelections(self) -> PyObject"""
914 return _controls_
.ListBox_GetSelections(*args
, **kwargs
)
916 def SetFirstItem(*args
, **kwargs
):
917 """SetFirstItem(self, int n)"""
918 return _controls_
.ListBox_SetFirstItem(*args
, **kwargs
)
920 def SetFirstItemStr(*args
, **kwargs
):
921 """SetFirstItemStr(self, String s)"""
922 return _controls_
.ListBox_SetFirstItemStr(*args
, **kwargs
)
924 def EnsureVisible(*args
, **kwargs
):
925 """EnsureVisible(self, int n)"""
926 return _controls_
.ListBox_EnsureVisible(*args
, **kwargs
)
928 def AppendAndEnsureVisible(*args
, **kwargs
):
929 """AppendAndEnsureVisible(self, String s)"""
930 return _controls_
.ListBox_AppendAndEnsureVisible(*args
, **kwargs
)
932 def IsSorted(*args
, **kwargs
):
933 """IsSorted(self) -> bool"""
934 return _controls_
.ListBox_IsSorted(*args
, **kwargs
)
936 def SetItemForegroundColour(*args
, **kwargs
):
937 """SetItemForegroundColour(self, int item, Colour c)"""
938 return _controls_
.ListBox_SetItemForegroundColour(*args
, **kwargs
)
940 def SetItemBackgroundColour(*args
, **kwargs
):
941 """SetItemBackgroundColour(self, int item, Colour c)"""
942 return _controls_
.ListBox_SetItemBackgroundColour(*args
, **kwargs
)
944 def SetItemFont(*args
, **kwargs
):
945 """SetItemFont(self, int item, Font f)"""
946 return _controls_
.ListBox_SetItemFont(*args
, **kwargs
)
948 def GetClassDefaultAttributes(*args
, **kwargs
):
950 ListBox.GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
952 Get the default attributes for this class. This is useful if
953 you want to use the same font or colour in your own control as
954 in a standard control -- which is a much better idea than hard
955 coding specific colours or fonts which might look completely out
956 of place on the users system, especially if it uses themes.
958 The variant parameter is only relevant under Mac currently and is
959 ignore under other platforms. Under Mac, it will change the size of the
960 returned font. See SetWindowVariant for more about this.
962 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
964 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
966 class ListBoxPtr(ListBox
):
967 def __init__(self
, this
):
969 if not hasattr(self
,"thisown"): self
.thisown
= 0
970 self
.__class
__ = ListBox
971 _controls_
.ListBox_swigregister(ListBoxPtr
)
972 ListBoxNameStr
= cvar
.ListBoxNameStr
974 def PreListBox(*args
, **kwargs
):
975 """PreListBox() -> ListBox"""
976 val
= _controls_
.new_PreListBox(*args
, **kwargs
)
980 def ListBox_GetClassDefaultAttributes(*args
, **kwargs
):
982 ListBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
984 Get the default attributes for this class. This is useful if
985 you want to use the same font or colour in your own control as
986 in a standard control -- which is a much better idea than hard
987 coding specific colours or fonts which might look completely out
988 of place on the users system, especially if it uses themes.
990 The variant parameter is only relevant under Mac currently and is
991 ignore under other platforms. Under Mac, it will change the size of the
992 returned font. See SetWindowVariant for more about this.
994 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
996 #---------------------------------------------------------------------------
998 class CheckListBox(ListBox
):
1000 return "<%s.%s; proxy of C++ wxCheckListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1001 def __init__(self
, *args
, **kwargs
):
1003 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1004 wxArrayString choices=wxPyEmptyStringArray,
1005 long style=0, Validator validator=DefaultValidator,
1006 String name=ListBoxNameStr) -> CheckListBox
1008 newobj
= _controls_
.new_CheckListBox(*args
, **kwargs
)
1009 self
.this
= newobj
.this
1012 self
._setOORInfo
(self
)
1014 def Create(*args
, **kwargs
):
1016 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1017 wxArrayString choices=wxPyEmptyStringArray,
1018 long style=0, Validator validator=DefaultValidator,
1019 String name=ListBoxNameStr) -> bool
1021 return _controls_
.CheckListBox_Create(*args
, **kwargs
)
1023 def IsChecked(*args
, **kwargs
):
1024 """IsChecked(self, int index) -> bool"""
1025 return _controls_
.CheckListBox_IsChecked(*args
, **kwargs
)
1027 def Check(*args
, **kwargs
):
1028 """Check(self, int index, int check=True)"""
1029 return _controls_
.CheckListBox_Check(*args
, **kwargs
)
1031 def GetItemHeight(*args
, **kwargs
):
1032 """GetItemHeight(self) -> int"""
1033 return _controls_
.CheckListBox_GetItemHeight(*args
, **kwargs
)
1035 def HitTest(*args
, **kwargs
):
1037 HitTest(self, Point pt) -> int
1039 Test where the given (in client coords) point lies
1041 return _controls_
.CheckListBox_HitTest(*args
, **kwargs
)
1043 def HitTestXY(*args
, **kwargs
):
1045 HitTestXY(self, int x, int y) -> int
1047 Test where the given (in client coords) point lies
1049 return _controls_
.CheckListBox_HitTestXY(*args
, **kwargs
)
1052 class CheckListBoxPtr(CheckListBox
):
1053 def __init__(self
, this
):
1055 if not hasattr(self
,"thisown"): self
.thisown
= 0
1056 self
.__class
__ = CheckListBox
1057 _controls_
.CheckListBox_swigregister(CheckListBoxPtr
)
1059 def PreCheckListBox(*args
, **kwargs
):
1060 """PreCheckListBox() -> CheckListBox"""
1061 val
= _controls_
.new_PreCheckListBox(*args
, **kwargs
)
1065 #---------------------------------------------------------------------------
1067 TE_NO_VSCROLL
= _controls_
.TE_NO_VSCROLL
1068 TE_AUTO_SCROLL
= _controls_
.TE_AUTO_SCROLL
1069 TE_READONLY
= _controls_
.TE_READONLY
1070 TE_MULTILINE
= _controls_
.TE_MULTILINE
1071 TE_PROCESS_TAB
= _controls_
.TE_PROCESS_TAB
1072 TE_LEFT
= _controls_
.TE_LEFT
1073 TE_CENTER
= _controls_
.TE_CENTER
1074 TE_RIGHT
= _controls_
.TE_RIGHT
1075 TE_CENTRE
= _controls_
.TE_CENTRE
1076 TE_RICH
= _controls_
.TE_RICH
1077 TE_PROCESS_ENTER
= _controls_
.TE_PROCESS_ENTER
1078 TE_PASSWORD
= _controls_
.TE_PASSWORD
1079 TE_AUTO_URL
= _controls_
.TE_AUTO_URL
1080 TE_NOHIDESEL
= _controls_
.TE_NOHIDESEL
1081 TE_DONTWRAP
= _controls_
.TE_DONTWRAP
1082 TE_LINEWRAP
= _controls_
.TE_LINEWRAP
1083 TE_WORDWRAP
= _controls_
.TE_WORDWRAP
1084 TE_RICH2
= _controls_
.TE_RICH2
1085 TEXT_ALIGNMENT_DEFAULT
= _controls_
.TEXT_ALIGNMENT_DEFAULT
1086 TEXT_ALIGNMENT_LEFT
= _controls_
.TEXT_ALIGNMENT_LEFT
1087 TEXT_ALIGNMENT_CENTRE
= _controls_
.TEXT_ALIGNMENT_CENTRE
1088 TEXT_ALIGNMENT_CENTER
= _controls_
.TEXT_ALIGNMENT_CENTER
1089 TEXT_ALIGNMENT_RIGHT
= _controls_
.TEXT_ALIGNMENT_RIGHT
1090 TEXT_ALIGNMENT_JUSTIFIED
= _controls_
.TEXT_ALIGNMENT_JUSTIFIED
1091 TEXT_ATTR_TEXT_COLOUR
= _controls_
.TEXT_ATTR_TEXT_COLOUR
1092 TEXT_ATTR_BACKGROUND_COLOUR
= _controls_
.TEXT_ATTR_BACKGROUND_COLOUR
1093 TEXT_ATTR_FONT_FACE
= _controls_
.TEXT_ATTR_FONT_FACE
1094 TEXT_ATTR_FONT_SIZE
= _controls_
.TEXT_ATTR_FONT_SIZE
1095 TEXT_ATTR_FONT_WEIGHT
= _controls_
.TEXT_ATTR_FONT_WEIGHT
1096 TEXT_ATTR_FONT_ITALIC
= _controls_
.TEXT_ATTR_FONT_ITALIC
1097 TEXT_ATTR_FONT_UNDERLINE
= _controls_
.TEXT_ATTR_FONT_UNDERLINE
1098 TEXT_ATTR_FONT
= _controls_
.TEXT_ATTR_FONT
1099 TEXT_ATTR_ALIGNMENT
= _controls_
.TEXT_ATTR_ALIGNMENT
1100 TEXT_ATTR_LEFT_INDENT
= _controls_
.TEXT_ATTR_LEFT_INDENT
1101 TEXT_ATTR_RIGHT_INDENT
= _controls_
.TEXT_ATTR_RIGHT_INDENT
1102 TEXT_ATTR_TABS
= _controls_
.TEXT_ATTR_TABS
1103 TE_HT_UNKNOWN
= _controls_
.TE_HT_UNKNOWN
1104 TE_HT_BEFORE
= _controls_
.TE_HT_BEFORE
1105 TE_HT_ON_TEXT
= _controls_
.TE_HT_ON_TEXT
1106 TE_HT_BELOW
= _controls_
.TE_HT_BELOW
1107 TE_HT_BEYOND
= _controls_
.TE_HT_BEYOND
1108 class TextAttr(object):
1110 return "<%s.%s; proxy of C++ wxTextAttr instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1111 def __init__(self
, *args
):
1113 __init__(self) -> TextAttr
1114 __init__(self, Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
1115 int alignment=TEXT_ALIGNMENT_DEFAULT) -> TextAttr
1117 newobj
= _controls_
.new_TextAttr(*args
)
1118 self
.this
= newobj
.this
1121 def __del__(self
, destroy
=_controls_
.delete_TextAttr
):
1124 if self
.thisown
: destroy(self
)
1127 def Init(*args
, **kwargs
):
1129 return _controls_
.TextAttr_Init(*args
, **kwargs
)
1131 def SetTextColour(*args
, **kwargs
):
1132 """SetTextColour(self, Colour colText)"""
1133 return _controls_
.TextAttr_SetTextColour(*args
, **kwargs
)
1135 def SetBackgroundColour(*args
, **kwargs
):
1136 """SetBackgroundColour(self, Colour colBack)"""
1137 return _controls_
.TextAttr_SetBackgroundColour(*args
, **kwargs
)
1139 def SetFont(*args
, **kwargs
):
1140 """SetFont(self, Font font, long flags=TEXT_ATTR_FONT)"""
1141 return _controls_
.TextAttr_SetFont(*args
, **kwargs
)
1143 def SetAlignment(*args
, **kwargs
):
1144 """SetAlignment(self, int alignment)"""
1145 return _controls_
.TextAttr_SetAlignment(*args
, **kwargs
)
1147 def SetTabs(*args
, **kwargs
):
1148 """SetTabs(self, wxArrayInt tabs)"""
1149 return _controls_
.TextAttr_SetTabs(*args
, **kwargs
)
1151 def SetLeftIndent(*args
, **kwargs
):
1152 """SetLeftIndent(self, int indent)"""
1153 return _controls_
.TextAttr_SetLeftIndent(*args
, **kwargs
)
1155 def SetRightIndent(*args
, **kwargs
):
1156 """SetRightIndent(self, int indent)"""
1157 return _controls_
.TextAttr_SetRightIndent(*args
, **kwargs
)
1159 def SetFlags(*args
, **kwargs
):
1160 """SetFlags(self, long flags)"""
1161 return _controls_
.TextAttr_SetFlags(*args
, **kwargs
)
1163 def HasTextColour(*args
, **kwargs
):
1164 """HasTextColour(self) -> bool"""
1165 return _controls_
.TextAttr_HasTextColour(*args
, **kwargs
)
1167 def HasBackgroundColour(*args
, **kwargs
):
1168 """HasBackgroundColour(self) -> bool"""
1169 return _controls_
.TextAttr_HasBackgroundColour(*args
, **kwargs
)
1171 def HasFont(*args
, **kwargs
):
1172 """HasFont(self) -> bool"""
1173 return _controls_
.TextAttr_HasFont(*args
, **kwargs
)
1175 def HasAlignment(*args
, **kwargs
):
1176 """HasAlignment(self) -> bool"""
1177 return _controls_
.TextAttr_HasAlignment(*args
, **kwargs
)
1179 def HasTabs(*args
, **kwargs
):
1180 """HasTabs(self) -> bool"""
1181 return _controls_
.TextAttr_HasTabs(*args
, **kwargs
)
1183 def HasLeftIndent(*args
, **kwargs
):
1184 """HasLeftIndent(self) -> bool"""
1185 return _controls_
.TextAttr_HasLeftIndent(*args
, **kwargs
)
1187 def HasRightIndent(*args
, **kwargs
):
1188 """HasRightIndent(self) -> bool"""
1189 return _controls_
.TextAttr_HasRightIndent(*args
, **kwargs
)
1191 def HasFlag(*args
, **kwargs
):
1192 """HasFlag(self, long flag) -> bool"""
1193 return _controls_
.TextAttr_HasFlag(*args
, **kwargs
)
1195 def GetTextColour(*args
, **kwargs
):
1196 """GetTextColour(self) -> Colour"""
1197 return _controls_
.TextAttr_GetTextColour(*args
, **kwargs
)
1199 def GetBackgroundColour(*args
, **kwargs
):
1200 """GetBackgroundColour(self) -> Colour"""
1201 return _controls_
.TextAttr_GetBackgroundColour(*args
, **kwargs
)
1203 def GetFont(*args
, **kwargs
):
1204 """GetFont(self) -> Font"""
1205 return _controls_
.TextAttr_GetFont(*args
, **kwargs
)
1207 def GetAlignment(*args
, **kwargs
):
1208 """GetAlignment(self) -> int"""
1209 return _controls_
.TextAttr_GetAlignment(*args
, **kwargs
)
1211 def GetTabs(*args
, **kwargs
):
1212 """GetTabs(self) -> wxArrayInt"""
1213 return _controls_
.TextAttr_GetTabs(*args
, **kwargs
)
1215 def GetLeftIndent(*args
, **kwargs
):
1216 """GetLeftIndent(self) -> long"""
1217 return _controls_
.TextAttr_GetLeftIndent(*args
, **kwargs
)
1219 def GetRightIndent(*args
, **kwargs
):
1220 """GetRightIndent(self) -> long"""
1221 return _controls_
.TextAttr_GetRightIndent(*args
, **kwargs
)
1223 def GetFlags(*args
, **kwargs
):
1224 """GetFlags(self) -> long"""
1225 return _controls_
.TextAttr_GetFlags(*args
, **kwargs
)
1227 def IsDefault(*args
, **kwargs
):
1228 """IsDefault(self) -> bool"""
1229 return _controls_
.TextAttr_IsDefault(*args
, **kwargs
)
1231 def Combine(*args
, **kwargs
):
1232 """TextAttr.Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1233 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1235 Combine
= staticmethod(Combine
)
1237 class TextAttrPtr(TextAttr
):
1238 def __init__(self
, this
):
1240 if not hasattr(self
,"thisown"): self
.thisown
= 0
1241 self
.__class
__ = TextAttr
1242 _controls_
.TextAttr_swigregister(TextAttrPtr
)
1243 TextCtrlNameStr
= cvar
.TextCtrlNameStr
1245 def TextAttr_Combine(*args
, **kwargs
):
1246 """TextAttr_Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1247 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1249 class TextCtrl(_core
.Control
):
1251 return "<%s.%s; proxy of C++ wxTextCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1252 def __init__(self
, *args
, **kwargs
):
1254 __init__(self, Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
1255 Size size=DefaultSize,
1256 long style=0, Validator validator=DefaultValidator,
1257 String name=TextCtrlNameStr) -> TextCtrl
1259 newobj
= _controls_
.new_TextCtrl(*args
, **kwargs
)
1260 self
.this
= newobj
.this
1263 self
._setOORInfo
(self
)
1265 def Create(*args
, **kwargs
):
1267 Create(self, Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
1268 Size size=DefaultSize,
1269 long style=0, Validator validator=DefaultValidator,
1270 String name=TextCtrlNameStr) -> bool
1272 return _controls_
.TextCtrl_Create(*args
, **kwargs
)
1274 def GetValue(*args
, **kwargs
):
1275 """GetValue(self) -> String"""
1276 return _controls_
.TextCtrl_GetValue(*args
, **kwargs
)
1278 def SetValue(*args
, **kwargs
):
1279 """SetValue(self, String value)"""
1280 return _controls_
.TextCtrl_SetValue(*args
, **kwargs
)
1282 def GetRange(*args
, **kwargs
):
1283 """GetRange(self, long from, long to) -> String"""
1284 return _controls_
.TextCtrl_GetRange(*args
, **kwargs
)
1286 def GetLineLength(*args
, **kwargs
):
1287 """GetLineLength(self, long lineNo) -> int"""
1288 return _controls_
.TextCtrl_GetLineLength(*args
, **kwargs
)
1290 def GetLineText(*args
, **kwargs
):
1291 """GetLineText(self, long lineNo) -> String"""
1292 return _controls_
.TextCtrl_GetLineText(*args
, **kwargs
)
1294 def GetNumberOfLines(*args
, **kwargs
):
1295 """GetNumberOfLines(self) -> int"""
1296 return _controls_
.TextCtrl_GetNumberOfLines(*args
, **kwargs
)
1298 def IsModified(*args
, **kwargs
):
1299 """IsModified(self) -> bool"""
1300 return _controls_
.TextCtrl_IsModified(*args
, **kwargs
)
1302 def IsEditable(*args
, **kwargs
):
1303 """IsEditable(self) -> bool"""
1304 return _controls_
.TextCtrl_IsEditable(*args
, **kwargs
)
1306 def IsSingleLine(*args
, **kwargs
):
1307 """IsSingleLine(self) -> bool"""
1308 return _controls_
.TextCtrl_IsSingleLine(*args
, **kwargs
)
1310 def IsMultiLine(*args
, **kwargs
):
1311 """IsMultiLine(self) -> bool"""
1312 return _controls_
.TextCtrl_IsMultiLine(*args
, **kwargs
)
1314 def GetSelection(*args
, **kwargs
):
1316 GetSelection() -> (from, to)
1318 If the return values from and to are the same, there is no selection.
1320 return _controls_
.TextCtrl_GetSelection(*args
, **kwargs
)
1322 def GetStringSelection(*args
, **kwargs
):
1323 """GetStringSelection(self) -> String"""
1324 return _controls_
.TextCtrl_GetStringSelection(*args
, **kwargs
)
1326 def Clear(*args
, **kwargs
):
1328 return _controls_
.TextCtrl_Clear(*args
, **kwargs
)
1330 def Replace(*args
, **kwargs
):
1331 """Replace(self, long from, long to, String value)"""
1332 return _controls_
.TextCtrl_Replace(*args
, **kwargs
)
1334 def Remove(*args
, **kwargs
):
1335 """Remove(self, long from, long to)"""
1336 return _controls_
.TextCtrl_Remove(*args
, **kwargs
)
1338 def LoadFile(*args
, **kwargs
):
1339 """LoadFile(self, String file) -> bool"""
1340 return _controls_
.TextCtrl_LoadFile(*args
, **kwargs
)
1342 def SaveFile(*args
, **kwargs
):
1343 """SaveFile(self, String file=EmptyString) -> bool"""
1344 return _controls_
.TextCtrl_SaveFile(*args
, **kwargs
)
1346 def MarkDirty(*args
, **kwargs
):
1347 """MarkDirty(self)"""
1348 return _controls_
.TextCtrl_MarkDirty(*args
, **kwargs
)
1350 def DiscardEdits(*args
, **kwargs
):
1351 """DiscardEdits(self)"""
1352 return _controls_
.TextCtrl_DiscardEdits(*args
, **kwargs
)
1354 def SetMaxLength(*args
, **kwargs
):
1355 """SetMaxLength(self, unsigned long len)"""
1356 return _controls_
.TextCtrl_SetMaxLength(*args
, **kwargs
)
1358 def WriteText(*args
, **kwargs
):
1359 """WriteText(self, String text)"""
1360 return _controls_
.TextCtrl_WriteText(*args
, **kwargs
)
1362 def AppendText(*args
, **kwargs
):
1363 """AppendText(self, String text)"""
1364 return _controls_
.TextCtrl_AppendText(*args
, **kwargs
)
1366 def EmulateKeyPress(*args
, **kwargs
):
1367 """EmulateKeyPress(self, KeyEvent event) -> bool"""
1368 return _controls_
.TextCtrl_EmulateKeyPress(*args
, **kwargs
)
1370 def SetStyle(*args
, **kwargs
):
1371 """SetStyle(self, long start, long end, TextAttr style) -> bool"""
1372 return _controls_
.TextCtrl_SetStyle(*args
, **kwargs
)
1374 def GetStyle(*args
, **kwargs
):
1375 """GetStyle(self, long position, TextAttr style) -> bool"""
1376 return _controls_
.TextCtrl_GetStyle(*args
, **kwargs
)
1378 def SetDefaultStyle(*args
, **kwargs
):
1379 """SetDefaultStyle(self, TextAttr style) -> bool"""
1380 return _controls_
.TextCtrl_SetDefaultStyle(*args
, **kwargs
)
1382 def GetDefaultStyle(*args
, **kwargs
):
1383 """GetDefaultStyle(self) -> TextAttr"""
1384 return _controls_
.TextCtrl_GetDefaultStyle(*args
, **kwargs
)
1386 def XYToPosition(*args
, **kwargs
):
1387 """XYToPosition(self, long x, long y) -> long"""
1388 return _controls_
.TextCtrl_XYToPosition(*args
, **kwargs
)
1390 def PositionToXY(*args
, **kwargs
):
1391 """PositionToXY(long pos) -> (x, y)"""
1392 return _controls_
.TextCtrl_PositionToXY(*args
, **kwargs
)
1394 def ShowPosition(*args
, **kwargs
):
1395 """ShowPosition(self, long pos)"""
1396 return _controls_
.TextCtrl_ShowPosition(*args
, **kwargs
)
1398 def HitTest(*args
, **kwargs
):
1400 HitTest(Point pt) -> (result, row, col)
1402 Find the character at position given in pixels.
1403 NB: pt is in device coords (not adjusted for the client area
1404 origin nor scrolling)
1406 return _controls_
.TextCtrl_HitTest(*args
, **kwargs
)
1408 def Copy(*args
, **kwargs
):
1410 return _controls_
.TextCtrl_Copy(*args
, **kwargs
)
1412 def Cut(*args
, **kwargs
):
1414 return _controls_
.TextCtrl_Cut(*args
, **kwargs
)
1416 def Paste(*args
, **kwargs
):
1418 return _controls_
.TextCtrl_Paste(*args
, **kwargs
)
1420 def CanCopy(*args
, **kwargs
):
1421 """CanCopy(self) -> bool"""
1422 return _controls_
.TextCtrl_CanCopy(*args
, **kwargs
)
1424 def CanCut(*args
, **kwargs
):
1425 """CanCut(self) -> bool"""
1426 return _controls_
.TextCtrl_CanCut(*args
, **kwargs
)
1428 def CanPaste(*args
, **kwargs
):
1429 """CanPaste(self) -> bool"""
1430 return _controls_
.TextCtrl_CanPaste(*args
, **kwargs
)
1432 def Undo(*args
, **kwargs
):
1434 return _controls_
.TextCtrl_Undo(*args
, **kwargs
)
1436 def Redo(*args
, **kwargs
):
1438 return _controls_
.TextCtrl_Redo(*args
, **kwargs
)
1440 def CanUndo(*args
, **kwargs
):
1441 """CanUndo(self) -> bool"""
1442 return _controls_
.TextCtrl_CanUndo(*args
, **kwargs
)
1444 def CanRedo(*args
, **kwargs
):
1445 """CanRedo(self) -> bool"""
1446 return _controls_
.TextCtrl_CanRedo(*args
, **kwargs
)
1448 def SetInsertionPoint(*args
, **kwargs
):
1449 """SetInsertionPoint(self, long pos)"""
1450 return _controls_
.TextCtrl_SetInsertionPoint(*args
, **kwargs
)
1452 def SetInsertionPointEnd(*args
, **kwargs
):
1453 """SetInsertionPointEnd(self)"""
1454 return _controls_
.TextCtrl_SetInsertionPointEnd(*args
, **kwargs
)
1456 def GetInsertionPoint(*args
, **kwargs
):
1457 """GetInsertionPoint(self) -> long"""
1458 return _controls_
.TextCtrl_GetInsertionPoint(*args
, **kwargs
)
1460 def GetLastPosition(*args
, **kwargs
):
1461 """GetLastPosition(self) -> long"""
1462 return _controls_
.TextCtrl_GetLastPosition(*args
, **kwargs
)
1464 def SetSelection(*args
, **kwargs
):
1465 """SetSelection(self, long from, long to)"""
1466 return _controls_
.TextCtrl_SetSelection(*args
, **kwargs
)
1468 def SelectAll(*args
, **kwargs
):
1469 """SelectAll(self)"""
1470 return _controls_
.TextCtrl_SelectAll(*args
, **kwargs
)
1472 def SetEditable(*args
, **kwargs
):
1473 """SetEditable(self, bool editable)"""
1474 return _controls_
.TextCtrl_SetEditable(*args
, **kwargs
)
1476 def ShowNativeCaret(*args
, **kwargs
):
1477 """ShowNativeCaret(self, bool show=True) -> bool"""
1478 return _controls_
.TextCtrl_ShowNativeCaret(*args
, **kwargs
)
1480 def HideNativeCaret(*args
, **kwargs
):
1481 """HideNativeCaret(self) -> bool"""
1482 return _controls_
.TextCtrl_HideNativeCaret(*args
, **kwargs
)
1484 def write(*args
, **kwargs
):
1485 """write(self, String text)"""
1486 return _controls_
.TextCtrl_write(*args
, **kwargs
)
1488 def GetString(*args
, **kwargs
):
1489 """GetString(self, long from, long to) -> String"""
1490 return _controls_
.TextCtrl_GetString(*args
, **kwargs
)
1493 class TextCtrlPtr(TextCtrl
):
1494 def __init__(self
, this
):
1496 if not hasattr(self
,"thisown"): self
.thisown
= 0
1497 self
.__class
__ = TextCtrl
1498 _controls_
.TextCtrl_swigregister(TextCtrlPtr
)
1500 def PreTextCtrl(*args
, **kwargs
):
1501 """PreTextCtrl() -> TextCtrl"""
1502 val
= _controls_
.new_PreTextCtrl(*args
, **kwargs
)
1506 wxEVT_COMMAND_TEXT_UPDATED
= _controls_
.wxEVT_COMMAND_TEXT_UPDATED
1507 wxEVT_COMMAND_TEXT_ENTER
= _controls_
.wxEVT_COMMAND_TEXT_ENTER
1508 wxEVT_COMMAND_TEXT_URL
= _controls_
.wxEVT_COMMAND_TEXT_URL
1509 wxEVT_COMMAND_TEXT_MAXLEN
= _controls_
.wxEVT_COMMAND_TEXT_MAXLEN
1510 class TextUrlEvent(_core
.CommandEvent
):
1512 return "<%s.%s; proxy of C++ wxTextUrlEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1513 def __init__(self
, *args
, **kwargs
):
1514 """__init__(self, int winid, MouseEvent evtMouse, long start, long end) -> TextUrlEvent"""
1515 newobj
= _controls_
.new_TextUrlEvent(*args
, **kwargs
)
1516 self
.this
= newobj
.this
1519 def GetMouseEvent(*args
, **kwargs
):
1520 """GetMouseEvent(self) -> MouseEvent"""
1521 return _controls_
.TextUrlEvent_GetMouseEvent(*args
, **kwargs
)
1523 def GetURLStart(*args
, **kwargs
):
1524 """GetURLStart(self) -> long"""
1525 return _controls_
.TextUrlEvent_GetURLStart(*args
, **kwargs
)
1527 def GetURLEnd(*args
, **kwargs
):
1528 """GetURLEnd(self) -> long"""
1529 return _controls_
.TextUrlEvent_GetURLEnd(*args
, **kwargs
)
1532 class TextUrlEventPtr(TextUrlEvent
):
1533 def __init__(self
, this
):
1535 if not hasattr(self
,"thisown"): self
.thisown
= 0
1536 self
.__class
__ = TextUrlEvent
1537 _controls_
.TextUrlEvent_swigregister(TextUrlEventPtr
)
1539 EVT_TEXT
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED
, 1)
1540 EVT_TEXT_ENTER
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER
, 1)
1541 EVT_TEXT_URL
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_URL
, 1)
1542 EVT_TEXT_MAXLEN
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN
, 1)
1544 #---------------------------------------------------------------------------
1546 class ScrollBar(_core
.Control
):
1548 return "<%s.%s; proxy of C++ wxScrollBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1549 def __init__(self
, *args
, **kwargs
):
1551 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1552 Size size=DefaultSize, long style=SB_HORIZONTAL,
1553 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> ScrollBar
1555 newobj
= _controls_
.new_ScrollBar(*args
, **kwargs
)
1556 self
.this
= newobj
.this
1559 self
._setOORInfo
(self
)
1561 def Create(*args
, **kwargs
):
1563 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1564 Size size=DefaultSize, long style=SB_HORIZONTAL,
1565 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> bool
1567 Do the 2nd phase and create the GUI control.
1569 return _controls_
.ScrollBar_Create(*args
, **kwargs
)
1571 def GetThumbPosition(*args
, **kwargs
):
1572 """GetThumbPosition(self) -> int"""
1573 return _controls_
.ScrollBar_GetThumbPosition(*args
, **kwargs
)
1575 def GetThumbSize(*args
, **kwargs
):
1576 """GetThumbSize(self) -> int"""
1577 return _controls_
.ScrollBar_GetThumbSize(*args
, **kwargs
)
1579 GetThumbLength
= GetThumbSize
1580 def GetPageSize(*args
, **kwargs
):
1581 """GetPageSize(self) -> int"""
1582 return _controls_
.ScrollBar_GetPageSize(*args
, **kwargs
)
1584 def GetRange(*args
, **kwargs
):
1585 """GetRange(self) -> int"""
1586 return _controls_
.ScrollBar_GetRange(*args
, **kwargs
)
1588 def IsVertical(*args
, **kwargs
):
1589 """IsVertical(self) -> bool"""
1590 return _controls_
.ScrollBar_IsVertical(*args
, **kwargs
)
1592 def SetThumbPosition(*args
, **kwargs
):
1593 """SetThumbPosition(self, int viewStart)"""
1594 return _controls_
.ScrollBar_SetThumbPosition(*args
, **kwargs
)
1596 def SetScrollbar(*args
, **kwargs
):
1598 SetScrollbar(self, int position, int thumbSize, int range, int pageSize,
1601 Sets the scrollbar properties of a built-in scrollbar.
1603 orientation: Determines the scrollbar whose page size is to be
1604 set. May be wx.HORIZONTAL or wx.VERTICAL.
1606 position: The position of the scrollbar in scroll units.
1608 thumbSize: The size of the thumb, or visible portion of the
1609 scrollbar, in scroll units.
1611 range: The maximum position of the scrollbar.
1613 refresh: True to redraw the scrollbar, false otherwise.
1615 return _controls_
.ScrollBar_SetScrollbar(*args
, **kwargs
)
1618 class ScrollBarPtr(ScrollBar
):
1619 def __init__(self
, this
):
1621 if not hasattr(self
,"thisown"): self
.thisown
= 0
1622 self
.__class
__ = ScrollBar
1623 _controls_
.ScrollBar_swigregister(ScrollBarPtr
)
1624 ScrollBarNameStr
= cvar
.ScrollBarNameStr
1626 def PreScrollBar(*args
, **kwargs
):
1627 """PreScrollBar() -> ScrollBar"""
1628 val
= _controls_
.new_PreScrollBar(*args
, **kwargs
)
1632 #---------------------------------------------------------------------------
1634 SP_HORIZONTAL
= _controls_
.SP_HORIZONTAL
1635 SP_VERTICAL
= _controls_
.SP_VERTICAL
1636 SP_ARROW_KEYS
= _controls_
.SP_ARROW_KEYS
1637 SP_WRAP
= _controls_
.SP_WRAP
1638 class SpinButton(_core
.Control
):
1640 return "<%s.%s; proxy of C++ wxSpinButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1641 def __init__(self
, *args
, **kwargs
):
1643 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1644 Size size=DefaultSize, long style=SP_HORIZONTAL,
1645 String name=SPIN_BUTTON_NAME) -> SpinButton
1647 newobj
= _controls_
.new_SpinButton(*args
, **kwargs
)
1648 self
.this
= newobj
.this
1651 self
._setOORInfo
(self
)
1653 def Create(*args
, **kwargs
):
1655 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1656 Size size=DefaultSize, long style=SP_HORIZONTAL,
1657 String name=SPIN_BUTTON_NAME) -> bool
1659 return _controls_
.SpinButton_Create(*args
, **kwargs
)
1661 def GetValue(*args
, **kwargs
):
1662 """GetValue(self) -> int"""
1663 return _controls_
.SpinButton_GetValue(*args
, **kwargs
)
1665 def GetMin(*args
, **kwargs
):
1666 """GetMin(self) -> int"""
1667 return _controls_
.SpinButton_GetMin(*args
, **kwargs
)
1669 def GetMax(*args
, **kwargs
):
1670 """GetMax(self) -> int"""
1671 return _controls_
.SpinButton_GetMax(*args
, **kwargs
)
1673 def SetValue(*args
, **kwargs
):
1674 """SetValue(self, int val)"""
1675 return _controls_
.SpinButton_SetValue(*args
, **kwargs
)
1677 def SetMin(*args
, **kwargs
):
1678 """SetMin(self, int minVal)"""
1679 return _controls_
.SpinButton_SetMin(*args
, **kwargs
)
1681 def SetMax(*args
, **kwargs
):
1682 """SetMax(self, int maxVal)"""
1683 return _controls_
.SpinButton_SetMax(*args
, **kwargs
)
1685 def SetRange(*args
, **kwargs
):
1686 """SetRange(self, int minVal, int maxVal)"""
1687 return _controls_
.SpinButton_SetRange(*args
, **kwargs
)
1689 def IsVertical(*args
, **kwargs
):
1690 """IsVertical(self) -> bool"""
1691 return _controls_
.SpinButton_IsVertical(*args
, **kwargs
)
1694 class SpinButtonPtr(SpinButton
):
1695 def __init__(self
, this
):
1697 if not hasattr(self
,"thisown"): self
.thisown
= 0
1698 self
.__class
__ = SpinButton
1699 _controls_
.SpinButton_swigregister(SpinButtonPtr
)
1700 SPIN_BUTTON_NAME
= cvar
.SPIN_BUTTON_NAME
1701 SpinCtrlNameStr
= cvar
.SpinCtrlNameStr
1703 def PreSpinButton(*args
, **kwargs
):
1704 """PreSpinButton() -> SpinButton"""
1705 val
= _controls_
.new_PreSpinButton(*args
, **kwargs
)
1709 class SpinCtrl(_core
.Control
):
1711 return "<%s.%s; proxy of C++ wxSpinCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1712 def __init__(self
, *args
, **kwargs
):
1714 __init__(self, Window parent, int id=-1, String value=EmptyString,
1715 Point pos=DefaultPosition, Size size=DefaultSize,
1716 long style=SP_ARROW_KEYS, int min=0, int max=100,
1717 int initial=0, String name=SpinCtrlNameStr) -> SpinCtrl
1719 newobj
= _controls_
.new_SpinCtrl(*args
, **kwargs
)
1720 self
.this
= newobj
.this
1723 self
._setOORInfo
(self
)
1725 def Create(*args
, **kwargs
):
1727 Create(self, Window parent, int id=-1, String value=EmptyString,
1728 Point pos=DefaultPosition, Size size=DefaultSize,
1729 long style=SP_ARROW_KEYS, int min=0, int max=100,
1730 int initial=0, String name=SpinCtrlNameStr) -> bool
1732 return _controls_
.SpinCtrl_Create(*args
, **kwargs
)
1734 def GetValue(*args
, **kwargs
):
1735 """GetValue(self) -> int"""
1736 return _controls_
.SpinCtrl_GetValue(*args
, **kwargs
)
1738 def SetValue(*args
, **kwargs
):
1739 """SetValue(self, int value)"""
1740 return _controls_
.SpinCtrl_SetValue(*args
, **kwargs
)
1742 def SetValueString(*args
, **kwargs
):
1743 """SetValueString(self, String text)"""
1744 return _controls_
.SpinCtrl_SetValueString(*args
, **kwargs
)
1746 def SetRange(*args
, **kwargs
):
1747 """SetRange(self, int minVal, int maxVal)"""
1748 return _controls_
.SpinCtrl_SetRange(*args
, **kwargs
)
1750 def GetMin(*args
, **kwargs
):
1751 """GetMin(self) -> int"""
1752 return _controls_
.SpinCtrl_GetMin(*args
, **kwargs
)
1754 def GetMax(*args
, **kwargs
):
1755 """GetMax(self) -> int"""
1756 return _controls_
.SpinCtrl_GetMax(*args
, **kwargs
)
1758 def SetSelection(*args
, **kwargs
):
1759 """SetSelection(self, long from, long to)"""
1760 return _controls_
.SpinCtrl_SetSelection(*args
, **kwargs
)
1763 class SpinCtrlPtr(SpinCtrl
):
1764 def __init__(self
, this
):
1766 if not hasattr(self
,"thisown"): self
.thisown
= 0
1767 self
.__class
__ = SpinCtrl
1768 _controls_
.SpinCtrl_swigregister(SpinCtrlPtr
)
1770 def PreSpinCtrl(*args
, **kwargs
):
1771 """PreSpinCtrl() -> SpinCtrl"""
1772 val
= _controls_
.new_PreSpinCtrl(*args
, **kwargs
)
1776 class SpinEvent(_core
.NotifyEvent
):
1778 return "<%s.%s; proxy of C++ wxSpinEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1779 def __init__(self
, *args
, **kwargs
):
1780 """__init__(self, wxEventType commandType=wxEVT_NULL, int winid=0) -> SpinEvent"""
1781 newobj
= _controls_
.new_SpinEvent(*args
, **kwargs
)
1782 self
.this
= newobj
.this
1785 def GetPosition(*args
, **kwargs
):
1786 """GetPosition(self) -> int"""
1787 return _controls_
.SpinEvent_GetPosition(*args
, **kwargs
)
1789 def SetPosition(*args
, **kwargs
):
1790 """SetPosition(self, int pos)"""
1791 return _controls_
.SpinEvent_SetPosition(*args
, **kwargs
)
1794 class SpinEventPtr(SpinEvent
):
1795 def __init__(self
, this
):
1797 if not hasattr(self
,"thisown"): self
.thisown
= 0
1798 self
.__class
__ = SpinEvent
1799 _controls_
.SpinEvent_swigregister(SpinEventPtr
)
1801 wxEVT_COMMAND_SPINCTRL_UPDATED
= _controls_
.wxEVT_COMMAND_SPINCTRL_UPDATED
1802 EVT_SPIN_UP
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEUP
, 1)
1803 EVT_SPIN_DOWN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEDOWN
, 1)
1804 EVT_SPIN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_THUMBTRACK
, 1)
1805 EVT_SPINCTRL
= wx
.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED
, 1)
1807 #---------------------------------------------------------------------------
1809 class RadioBox(_core
.Control
):
1811 return "<%s.%s; proxy of C++ wxRadioBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1812 def __init__(self
, *args
, **kwargs
):
1814 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
1815 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1816 int majorDimension=0,
1817 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
1818 String name=RadioBoxNameStr) -> RadioBox
1820 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
1821 newobj
= _controls_
.new_RadioBox(*args
, **kwargs
)
1822 self
.this
= newobj
.this
1825 self
._setOORInfo
(self
)
1827 def Create(*args
, **kwargs
):
1829 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
1830 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1831 int majorDimension=0,
1832 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
1833 String name=RadioBoxNameStr) -> bool
1835 return _controls_
.RadioBox_Create(*args
, **kwargs
)
1837 def SetSelection(*args
, **kwargs
):
1838 """SetSelection(self, int n)"""
1839 return _controls_
.RadioBox_SetSelection(*args
, **kwargs
)
1841 def GetSelection(*args
, **kwargs
):
1842 """GetSelection(self) -> int"""
1843 return _controls_
.RadioBox_GetSelection(*args
, **kwargs
)
1845 def GetStringSelection(*args
, **kwargs
):
1846 """GetStringSelection(self) -> String"""
1847 return _controls_
.RadioBox_GetStringSelection(*args
, **kwargs
)
1849 def SetStringSelection(*args
, **kwargs
):
1850 """SetStringSelection(self, String s) -> bool"""
1851 return _controls_
.RadioBox_SetStringSelection(*args
, **kwargs
)
1853 def GetCount(*args
, **kwargs
):
1854 """GetCount(self) -> int"""
1855 return _controls_
.RadioBox_GetCount(*args
, **kwargs
)
1857 def FindString(*args
, **kwargs
):
1858 """FindString(self, String s) -> int"""
1859 return _controls_
.RadioBox_FindString(*args
, **kwargs
)
1861 def GetString(*args
, **kwargs
):
1862 """GetString(self, int n) -> String"""
1863 return _controls_
.RadioBox_GetString(*args
, **kwargs
)
1865 def SetString(*args
, **kwargs
):
1866 """SetString(self, int n, String label)"""
1867 return _controls_
.RadioBox_SetString(*args
, **kwargs
)
1869 GetItemLabel
= GetString
1870 SetItemLabel
= SetString
1871 def EnableItem(*args
, **kwargs
):
1872 """EnableItem(self, int n, bool enable=True)"""
1873 return _controls_
.RadioBox_EnableItem(*args
, **kwargs
)
1875 def ShowItem(*args
, **kwargs
):
1876 """ShowItem(self, int n, bool show=True)"""
1877 return _controls_
.RadioBox_ShowItem(*args
, **kwargs
)
1879 def GetColumnCount(*args
, **kwargs
):
1880 """GetColumnCount(self) -> int"""
1881 return _controls_
.RadioBox_GetColumnCount(*args
, **kwargs
)
1883 def GetRowCount(*args
, **kwargs
):
1884 """GetRowCount(self) -> int"""
1885 return _controls_
.RadioBox_GetRowCount(*args
, **kwargs
)
1887 def GetNextItem(*args
, **kwargs
):
1888 """GetNextItem(self, int item, int dir, long style) -> int"""
1889 return _controls_
.RadioBox_GetNextItem(*args
, **kwargs
)
1892 class RadioBoxPtr(RadioBox
):
1893 def __init__(self
, this
):
1895 if not hasattr(self
,"thisown"): self
.thisown
= 0
1896 self
.__class
__ = RadioBox
1897 _controls_
.RadioBox_swigregister(RadioBoxPtr
)
1898 RadioBoxNameStr
= cvar
.RadioBoxNameStr
1899 RadioButtonNameStr
= cvar
.RadioButtonNameStr
1901 def PreRadioBox(*args
, **kwargs
):
1902 """PreRadioBox() -> RadioBox"""
1903 val
= _controls_
.new_PreRadioBox(*args
, **kwargs
)
1907 #---------------------------------------------------------------------------
1909 class RadioButton(_core
.Control
):
1911 return "<%s.%s; proxy of C++ wxRadioButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1912 def __init__(self
, *args
, **kwargs
):
1914 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
1915 Size size=DefaultSize, long style=0,
1916 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -> RadioButton
1918 newobj
= _controls_
.new_RadioButton(*args
, **kwargs
)
1919 self
.this
= newobj
.this
1922 self
._setOORInfo
(self
)
1924 def Create(*args
, **kwargs
):
1926 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
1927 Size size=DefaultSize, long style=0,
1928 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -> bool
1930 return _controls_
.RadioButton_Create(*args
, **kwargs
)
1932 def GetValue(*args
, **kwargs
):
1933 """GetValue(self) -> bool"""
1934 return _controls_
.RadioButton_GetValue(*args
, **kwargs
)
1936 def SetValue(*args
, **kwargs
):
1937 """SetValue(self, bool value)"""
1938 return _controls_
.RadioButton_SetValue(*args
, **kwargs
)
1941 class RadioButtonPtr(RadioButton
):
1942 def __init__(self
, this
):
1944 if not hasattr(self
,"thisown"): self
.thisown
= 0
1945 self
.__class
__ = RadioButton
1946 _controls_
.RadioButton_swigregister(RadioButtonPtr
)
1948 def PreRadioButton(*args
, **kwargs
):
1949 """PreRadioButton() -> RadioButton"""
1950 val
= _controls_
.new_PreRadioButton(*args
, **kwargs
)
1954 #---------------------------------------------------------------------------
1956 class Slider(_core
.Control
):
1958 return "<%s.%s; proxy of C++ wxSlider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1959 def __init__(self
, *args
, **kwargs
):
1961 __init__(self, Window parent, int id, int value, int minValue, int maxValue,
1962 Point pos=DefaultPosition, Size size=DefaultSize,
1963 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
1964 String name=SliderNameStr) -> Slider
1966 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
1967 newobj
= _controls_
.new_Slider(*args
, **kwargs
)
1968 self
.this
= newobj
.this
1971 self
._setOORInfo
(self
)
1973 def Create(*args
, **kwargs
):
1975 Create(self, Window parent, int id, int value, int minValue, int maxValue,
1976 Point pos=DefaultPosition, Size size=DefaultSize,
1977 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
1978 String name=SliderNameStr) -> bool
1980 return _controls_
.Slider_Create(*args
, **kwargs
)
1982 def GetValue(*args
, **kwargs
):
1983 """GetValue(self) -> int"""
1984 return _controls_
.Slider_GetValue(*args
, **kwargs
)
1986 def SetValue(*args
, **kwargs
):
1987 """SetValue(self, int value)"""
1988 return _controls_
.Slider_SetValue(*args
, **kwargs
)
1990 def SetRange(*args
, **kwargs
):
1991 """SetRange(self, int minValue, int maxValue)"""
1992 return _controls_
.Slider_SetRange(*args
, **kwargs
)
1994 def GetMin(*args
, **kwargs
):
1995 """GetMin(self) -> int"""
1996 return _controls_
.Slider_GetMin(*args
, **kwargs
)
1998 def GetMax(*args
, **kwargs
):
1999 """GetMax(self) -> int"""
2000 return _controls_
.Slider_GetMax(*args
, **kwargs
)
2002 def SetMin(*args
, **kwargs
):
2003 """SetMin(self, int minValue)"""
2004 return _controls_
.Slider_SetMin(*args
, **kwargs
)
2006 def SetMax(*args
, **kwargs
):
2007 """SetMax(self, int maxValue)"""
2008 return _controls_
.Slider_SetMax(*args
, **kwargs
)
2010 def SetLineSize(*args
, **kwargs
):
2011 """SetLineSize(self, int lineSize)"""
2012 return _controls_
.Slider_SetLineSize(*args
, **kwargs
)
2014 def SetPageSize(*args
, **kwargs
):
2015 """SetPageSize(self, int pageSize)"""
2016 return _controls_
.Slider_SetPageSize(*args
, **kwargs
)
2018 def GetLineSize(*args
, **kwargs
):
2019 """GetLineSize(self) -> int"""
2020 return _controls_
.Slider_GetLineSize(*args
, **kwargs
)
2022 def GetPageSize(*args
, **kwargs
):
2023 """GetPageSize(self) -> int"""
2024 return _controls_
.Slider_GetPageSize(*args
, **kwargs
)
2026 def SetThumbLength(*args
, **kwargs
):
2027 """SetThumbLength(self, int lenPixels)"""
2028 return _controls_
.Slider_SetThumbLength(*args
, **kwargs
)
2030 def GetThumbLength(*args
, **kwargs
):
2031 """GetThumbLength(self) -> int"""
2032 return _controls_
.Slider_GetThumbLength(*args
, **kwargs
)
2034 def SetTickFreq(*args
, **kwargs
):
2035 """SetTickFreq(self, int n, int pos=1)"""
2036 return _controls_
.Slider_SetTickFreq(*args
, **kwargs
)
2038 def GetTickFreq(*args
, **kwargs
):
2039 """GetTickFreq(self) -> int"""
2040 return _controls_
.Slider_GetTickFreq(*args
, **kwargs
)
2042 def ClearTicks(*args
, **kwargs
):
2043 """ClearTicks(self)"""
2044 return _controls_
.Slider_ClearTicks(*args
, **kwargs
)
2046 def SetTick(*args
, **kwargs
):
2047 """SetTick(self, int tickPos)"""
2048 return _controls_
.Slider_SetTick(*args
, **kwargs
)
2050 def ClearSel(*args
, **kwargs
):
2051 """ClearSel(self)"""
2052 return _controls_
.Slider_ClearSel(*args
, **kwargs
)
2054 def GetSelEnd(*args
, **kwargs
):
2055 """GetSelEnd(self) -> int"""
2056 return _controls_
.Slider_GetSelEnd(*args
, **kwargs
)
2058 def GetSelStart(*args
, **kwargs
):
2059 """GetSelStart(self) -> int"""
2060 return _controls_
.Slider_GetSelStart(*args
, **kwargs
)
2062 def SetSelection(*args
, **kwargs
):
2063 """SetSelection(self, int min, int max)"""
2064 return _controls_
.Slider_SetSelection(*args
, **kwargs
)
2067 class SliderPtr(Slider
):
2068 def __init__(self
, this
):
2070 if not hasattr(self
,"thisown"): self
.thisown
= 0
2071 self
.__class
__ = Slider
2072 _controls_
.Slider_swigregister(SliderPtr
)
2073 SliderNameStr
= cvar
.SliderNameStr
2075 def PreSlider(*args
, **kwargs
):
2076 """PreSlider() -> Slider"""
2077 val
= _controls_
.new_PreSlider(*args
, **kwargs
)
2081 #---------------------------------------------------------------------------
2083 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
= _controls_
.wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
2084 EVT_TOGGLEBUTTON
= wx
.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
, 1)
2086 class ToggleButton(_core
.Control
):
2088 return "<%s.%s; proxy of C++ wxToggleButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2089 def __init__(self
, *args
, **kwargs
):
2091 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
2092 Size size=DefaultSize, long style=0,
2093 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -> ToggleButton
2095 newobj
= _controls_
.new_ToggleButton(*args
, **kwargs
)
2096 self
.this
= newobj
.this
2099 self
._setOORInfo
(self
)
2101 def Create(*args
, **kwargs
):
2103 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
2104 Size size=DefaultSize, long style=0,
2105 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -> bool
2107 return _controls_
.ToggleButton_Create(*args
, **kwargs
)
2109 def SetValue(*args
, **kwargs
):
2110 """SetValue(self, bool value)"""
2111 return _controls_
.ToggleButton_SetValue(*args
, **kwargs
)
2113 def GetValue(*args
, **kwargs
):
2114 """GetValue(self) -> bool"""
2115 return _controls_
.ToggleButton_GetValue(*args
, **kwargs
)
2117 def SetLabel(*args
, **kwargs
):
2119 SetLabel(self, String label)
2121 Sets the item's text.
2123 return _controls_
.ToggleButton_SetLabel(*args
, **kwargs
)
2126 class ToggleButtonPtr(ToggleButton
):
2127 def __init__(self
, this
):
2129 if not hasattr(self
,"thisown"): self
.thisown
= 0
2130 self
.__class
__ = ToggleButton
2131 _controls_
.ToggleButton_swigregister(ToggleButtonPtr
)
2132 ToggleButtonNameStr
= cvar
.ToggleButtonNameStr
2134 def PreToggleButton(*args
, **kwargs
):
2135 """PreToggleButton() -> ToggleButton"""
2136 val
= _controls_
.new_PreToggleButton(*args
, **kwargs
)
2140 #---------------------------------------------------------------------------
2142 class BookCtrl(_core
.Control
):
2143 def __init__(self
): raise RuntimeError, "No constructor defined"
2145 return "<%s.%s; proxy of C++ wxBookCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2146 def GetPageCount(*args
, **kwargs
):
2147 """GetPageCount(self) -> size_t"""
2148 return _controls_
.BookCtrl_GetPageCount(*args
, **kwargs
)
2150 def GetPage(*args
, **kwargs
):
2151 """GetPage(self, size_t n) -> Window"""
2152 return _controls_
.BookCtrl_GetPage(*args
, **kwargs
)
2154 def GetSelection(*args
, **kwargs
):
2155 """GetSelection(self) -> int"""
2156 return _controls_
.BookCtrl_GetSelection(*args
, **kwargs
)
2158 def SetPageText(*args
, **kwargs
):
2159 """SetPageText(self, size_t n, String strText) -> bool"""
2160 return _controls_
.BookCtrl_SetPageText(*args
, **kwargs
)
2162 def GetPageText(*args
, **kwargs
):
2163 """GetPageText(self, size_t n) -> String"""
2164 return _controls_
.BookCtrl_GetPageText(*args
, **kwargs
)
2166 def SetImageList(*args
, **kwargs
):
2167 """SetImageList(self, ImageList imageList)"""
2168 return _controls_
.BookCtrl_SetImageList(*args
, **kwargs
)
2170 def AssignImageList(*args
, **kwargs
):
2171 """AssignImageList(self, ImageList imageList)"""
2172 return _controls_
.BookCtrl_AssignImageList(*args
, **kwargs
)
2174 def GetImageList(*args
, **kwargs
):
2175 """GetImageList(self) -> ImageList"""
2176 return _controls_
.BookCtrl_GetImageList(*args
, **kwargs
)
2178 def GetPageImage(*args
, **kwargs
):
2179 """GetPageImage(self, size_t n) -> int"""
2180 return _controls_
.BookCtrl_GetPageImage(*args
, **kwargs
)
2182 def SetPageImage(*args
, **kwargs
):
2183 """SetPageImage(self, size_t n, int imageId) -> bool"""
2184 return _controls_
.BookCtrl_SetPageImage(*args
, **kwargs
)
2186 def SetPageSize(*args
, **kwargs
):
2187 """SetPageSize(self, Size size)"""
2188 return _controls_
.BookCtrl_SetPageSize(*args
, **kwargs
)
2190 def CalcSizeFromPage(*args
, **kwargs
):
2191 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2192 return _controls_
.BookCtrl_CalcSizeFromPage(*args
, **kwargs
)
2194 def DeletePage(*args
, **kwargs
):
2195 """DeletePage(self, size_t n) -> bool"""
2196 return _controls_
.BookCtrl_DeletePage(*args
, **kwargs
)
2198 def RemovePage(*args
, **kwargs
):
2199 """RemovePage(self, size_t n) -> bool"""
2200 return _controls_
.BookCtrl_RemovePage(*args
, **kwargs
)
2202 def DeleteAllPages(*args
, **kwargs
):
2203 """DeleteAllPages(self) -> bool"""
2204 return _controls_
.BookCtrl_DeleteAllPages(*args
, **kwargs
)
2206 def AddPage(*args
, **kwargs
):
2207 """AddPage(self, Window page, String text, bool select=False, int imageId=-1) -> bool"""
2208 return _controls_
.BookCtrl_AddPage(*args
, **kwargs
)
2210 def InsertPage(*args
, **kwargs
):
2212 InsertPage(self, size_t n, Window page, String text, bool select=False,
2213 int imageId=-1) -> bool
2215 return _controls_
.BookCtrl_InsertPage(*args
, **kwargs
)
2217 def SetSelection(*args
, **kwargs
):
2218 """SetSelection(self, size_t n) -> int"""
2219 return _controls_
.BookCtrl_SetSelection(*args
, **kwargs
)
2221 def AdvanceSelection(*args
, **kwargs
):
2222 """AdvanceSelection(self, bool forward=True)"""
2223 return _controls_
.BookCtrl_AdvanceSelection(*args
, **kwargs
)
2226 class BookCtrlPtr(BookCtrl
):
2227 def __init__(self
, this
):
2229 if not hasattr(self
,"thisown"): self
.thisown
= 0
2230 self
.__class
__ = BookCtrl
2231 _controls_
.BookCtrl_swigregister(BookCtrlPtr
)
2232 NOTEBOOK_NAME
= cvar
.NOTEBOOK_NAME
2234 class BookCtrlEvent(_core
.NotifyEvent
):
2236 return "<%s.%s; proxy of C++ wxBookCtrlEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2237 def __init__(self
, *args
, **kwargs
):
2239 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2240 int nOldSel=-1) -> BookCtrlEvent
2242 newobj
= _controls_
.new_BookCtrlEvent(*args
, **kwargs
)
2243 self
.this
= newobj
.this
2246 def GetSelection(*args
, **kwargs
):
2247 """GetSelection(self) -> int"""
2248 return _controls_
.BookCtrlEvent_GetSelection(*args
, **kwargs
)
2250 def SetSelection(*args
, **kwargs
):
2251 """SetSelection(self, int nSel)"""
2252 return _controls_
.BookCtrlEvent_SetSelection(*args
, **kwargs
)
2254 def GetOldSelection(*args
, **kwargs
):
2255 """GetOldSelection(self) -> int"""
2256 return _controls_
.BookCtrlEvent_GetOldSelection(*args
, **kwargs
)
2258 def SetOldSelection(*args
, **kwargs
):
2259 """SetOldSelection(self, int nOldSel)"""
2260 return _controls_
.BookCtrlEvent_SetOldSelection(*args
, **kwargs
)
2263 class BookCtrlEventPtr(BookCtrlEvent
):
2264 def __init__(self
, this
):
2266 if not hasattr(self
,"thisown"): self
.thisown
= 0
2267 self
.__class
__ = BookCtrlEvent
2268 _controls_
.BookCtrlEvent_swigregister(BookCtrlEventPtr
)
2270 #---------------------------------------------------------------------------
2272 NB_FIXEDWIDTH
= _controls_
.NB_FIXEDWIDTH
2273 NB_TOP
= _controls_
.NB_TOP
2274 NB_LEFT
= _controls_
.NB_LEFT
2275 NB_RIGHT
= _controls_
.NB_RIGHT
2276 NB_BOTTOM
= _controls_
.NB_BOTTOM
2277 NB_MULTILINE
= _controls_
.NB_MULTILINE
2278 NB_HITTEST_NOWHERE
= _controls_
.NB_HITTEST_NOWHERE
2279 NB_HITTEST_ONICON
= _controls_
.NB_HITTEST_ONICON
2280 NB_HITTEST_ONLABEL
= _controls_
.NB_HITTEST_ONLABEL
2281 NB_HITTEST_ONITEM
= _controls_
.NB_HITTEST_ONITEM
2282 class Notebook(BookCtrl
):
2284 return "<%s.%s; proxy of C++ wxNotebook instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2285 def __init__(self
, *args
, **kwargs
):
2287 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2288 Size size=DefaultSize, long style=0, String name=NOTEBOOK_NAME) -> Notebook
2290 newobj
= _controls_
.new_Notebook(*args
, **kwargs
)
2291 self
.this
= newobj
.this
2294 self
._setOORInfo
(self
)
2296 def Create(*args
, **kwargs
):
2298 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
2299 long style=0, String name=NOTEBOOK_NAME) -> bool
2301 return _controls_
.Notebook_Create(*args
, **kwargs
)
2303 def GetRowCount(*args
, **kwargs
):
2304 """GetRowCount(self) -> int"""
2305 return _controls_
.Notebook_GetRowCount(*args
, **kwargs
)
2307 def SetPadding(*args
, **kwargs
):
2308 """SetPadding(self, Size padding)"""
2309 return _controls_
.Notebook_SetPadding(*args
, **kwargs
)
2311 def SetTabSize(*args
, **kwargs
):
2312 """SetTabSize(self, Size sz)"""
2313 return _controls_
.Notebook_SetTabSize(*args
, **kwargs
)
2315 def HitTest(*args
, **kwargs
):
2317 HitTest(Point pt) -> (tab, where)
2319 Returns the tab which is hit, and flags indicating where using wx.NB_HITTEST_ flags.
2321 return _controls_
.Notebook_HitTest(*args
, **kwargs
)
2323 def CalcSizeFromPage(*args
, **kwargs
):
2324 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2325 return _controls_
.Notebook_CalcSizeFromPage(*args
, **kwargs
)
2327 def ApplyThemeBackground(*args
, **kwargs
):
2328 """ApplyThemeBackground(self, Window window, Colour colour)"""
2329 return _controls_
.Notebook_ApplyThemeBackground(*args
, **kwargs
)
2332 class NotebookPtr(Notebook
):
2333 def __init__(self
, this
):
2335 if not hasattr(self
,"thisown"): self
.thisown
= 0
2336 self
.__class
__ = Notebook
2337 _controls_
.Notebook_swigregister(NotebookPtr
)
2339 def PreNotebook(*args
, **kwargs
):
2340 """PreNotebook() -> Notebook"""
2341 val
= _controls_
.new_PreNotebook(*args
, **kwargs
)
2345 class NotebookEvent(BookCtrlEvent
):
2347 return "<%s.%s; proxy of C++ wxNotebookEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2348 def __init__(self
, *args
, **kwargs
):
2350 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2351 int nOldSel=-1) -> NotebookEvent
2353 newobj
= _controls_
.new_NotebookEvent(*args
, **kwargs
)
2354 self
.this
= newobj
.this
2358 class NotebookEventPtr(NotebookEvent
):
2359 def __init__(self
, this
):
2361 if not hasattr(self
,"thisown"): self
.thisown
= 0
2362 self
.__class
__ = NotebookEvent
2363 _controls_
.NotebookEvent_swigregister(NotebookEventPtr
)
2365 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
2366 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
2368 EVT_NOTEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, 1 )
2369 EVT_NOTEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, 1 )
2371 #----------------------------------------------------------------------------
2373 class NotebookPage(wx
.Panel
):
2375 There is an old (and apparently unsolvable) bug when placing a
2376 window with a nonstandard background colour in a wxNotebook on
2377 wxGTK, as the notbooks's background colour would always be used
2378 when the window is refreshed. The solution is to place a panel in
2379 the notbook and the coloured window on the panel, sized to cover
2380 the panel. This simple class does that for you, just put an
2381 instance of this in the notebook and make your regular window a
2382 child of this one and it will handle the resize for you.
2384 def __init__(self
, parent
, id=-1,
2385 pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
,
2386 style
=wx
.TAB_TRAVERSAL
, name
="panel"):
2387 wx
.Panel
.__init
__(self
, parent
, id, pos
, size
, style
, name
)
2389 EVT_SIZE(self
, self
.OnSize
)
2391 def OnSize(self
, evt
):
2392 if self
.child
is None:
2393 children
= self
.GetChildren()
2395 self
.child
= children
[0]
2397 self
.child
.SetPosition((0,0))
2398 self
.child
.SetSize(self
.GetSize())
2401 #---------------------------------------------------------------------------
2403 LB_DEFAULT
= _controls_
.LB_DEFAULT
2404 LB_TOP
= _controls_
.LB_TOP
2405 LB_BOTTOM
= _controls_
.LB_BOTTOM
2406 LB_LEFT
= _controls_
.LB_LEFT
2407 LB_RIGHT
= _controls_
.LB_RIGHT
2408 LB_ALIGN_MASK
= _controls_
.LB_ALIGN_MASK
2409 class Listbook(BookCtrl
):
2411 return "<%s.%s; proxy of C++ wxListbook instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2412 def __init__(self
, *args
, **kwargs
):
2414 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2415 Size size=DefaultSize, long style=0, String name=EmptyString) -> Listbook
2417 newobj
= _controls_
.new_Listbook(*args
, **kwargs
)
2418 self
.this
= newobj
.this
2421 self
._setOORInfo
(self
)
2423 def Create(*args
, **kwargs
):
2425 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
2426 long style=0, String name=EmptyString) -> bool
2428 return _controls_
.Listbook_Create(*args
, **kwargs
)
2430 def IsVertical(*args
, **kwargs
):
2431 """IsVertical(self) -> bool"""
2432 return _controls_
.Listbook_IsVertical(*args
, **kwargs
)
2435 class ListbookPtr(Listbook
):
2436 def __init__(self
, this
):
2438 if not hasattr(self
,"thisown"): self
.thisown
= 0
2439 self
.__class
__ = Listbook
2440 _controls_
.Listbook_swigregister(ListbookPtr
)
2442 def PreListbook(*args
, **kwargs
):
2443 """PreListbook() -> Listbook"""
2444 val
= _controls_
.new_PreListbook(*args
, **kwargs
)
2448 class ListbookEvent(BookCtrlEvent
):
2450 return "<%s.%s; proxy of C++ wxListbookEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2451 def __init__(self
, *args
, **kwargs
):
2453 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2454 int nOldSel=-1) -> ListbookEvent
2456 newobj
= _controls_
.new_ListbookEvent(*args
, **kwargs
)
2457 self
.this
= newobj
.this
2461 class ListbookEventPtr(ListbookEvent
):
2462 def __init__(self
, this
):
2464 if not hasattr(self
,"thisown"): self
.thisown
= 0
2465 self
.__class
__ = ListbookEvent
2466 _controls_
.ListbookEvent_swigregister(ListbookEventPtr
)
2468 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
2469 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
2470 EVT_LISTBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
, 1 )
2471 EVT_LISTBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
, 1 )
2473 #---------------------------------------------------------------------------
2475 class BookCtrlSizer(_core
.Sizer
):
2477 return "<%s.%s; proxy of C++ wxBookCtrlSizer instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2478 def __init__(self
, *args
, **kwargs
):
2479 """__init__(self, BookCtrl nb) -> BookCtrlSizer"""
2480 newobj
= _controls_
.new_BookCtrlSizer(*args
, **kwargs
)
2481 self
.this
= newobj
.this
2484 self
._setOORInfo
(self
)
2486 def RecalcSizes(*args
, **kwargs
):
2487 """RecalcSizes(self)"""
2488 return _controls_
.BookCtrlSizer_RecalcSizes(*args
, **kwargs
)
2490 def CalcMin(*args
, **kwargs
):
2491 """CalcMin(self) -> Size"""
2492 return _controls_
.BookCtrlSizer_CalcMin(*args
, **kwargs
)
2494 def GetControl(*args
, **kwargs
):
2495 """GetControl(self) -> BookCtrl"""
2496 return _controls_
.BookCtrlSizer_GetControl(*args
, **kwargs
)
2499 class BookCtrlSizerPtr(BookCtrlSizer
):
2500 def __init__(self
, this
):
2502 if not hasattr(self
,"thisown"): self
.thisown
= 0
2503 self
.__class
__ = BookCtrlSizer
2504 _controls_
.BookCtrlSizer_swigregister(BookCtrlSizerPtr
)
2506 class NotebookSizer(_core
.Sizer
):
2508 return "<%s.%s; proxy of C++ wxNotebookSizer instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2509 def __init__(self
, *args
, **kwargs
):
2510 """__init__(self, Notebook nb) -> NotebookSizer"""
2511 newobj
= _controls_
.new_NotebookSizer(*args
, **kwargs
)
2512 self
.this
= newobj
.this
2515 self
._setOORInfo
(self
)
2517 def RecalcSizes(*args
, **kwargs
):
2518 """RecalcSizes(self)"""
2519 return _controls_
.NotebookSizer_RecalcSizes(*args
, **kwargs
)
2521 def CalcMin(*args
, **kwargs
):
2522 """CalcMin(self) -> Size"""
2523 return _controls_
.NotebookSizer_CalcMin(*args
, **kwargs
)
2525 def GetNotebook(*args
, **kwargs
):
2526 """GetNotebook(self) -> Notebook"""
2527 return _controls_
.NotebookSizer_GetNotebook(*args
, **kwargs
)
2530 class NotebookSizerPtr(NotebookSizer
):
2531 def __init__(self
, this
):
2533 if not hasattr(self
,"thisown"): self
.thisown
= 0
2534 self
.__class
__ = NotebookSizer
2535 _controls_
.NotebookSizer_swigregister(NotebookSizerPtr
)
2537 #---------------------------------------------------------------------------
2539 TOOL_STYLE_BUTTON
= _controls_
.TOOL_STYLE_BUTTON
2540 TOOL_STYLE_SEPARATOR
= _controls_
.TOOL_STYLE_SEPARATOR
2541 TOOL_STYLE_CONTROL
= _controls_
.TOOL_STYLE_CONTROL
2542 TB_HORIZONTAL
= _controls_
.TB_HORIZONTAL
2543 TB_VERTICAL
= _controls_
.TB_VERTICAL
2544 TB_3DBUTTONS
= _controls_
.TB_3DBUTTONS
2545 TB_FLAT
= _controls_
.TB_FLAT
2546 TB_DOCKABLE
= _controls_
.TB_DOCKABLE
2547 TB_NOICONS
= _controls_
.TB_NOICONS
2548 TB_TEXT
= _controls_
.TB_TEXT
2549 TB_NODIVIDER
= _controls_
.TB_NODIVIDER
2550 TB_NOALIGN
= _controls_
.TB_NOALIGN
2551 TB_HORZ_LAYOUT
= _controls_
.TB_HORZ_LAYOUT
2552 TB_HORZ_TEXT
= _controls_
.TB_HORZ_TEXT
2553 class ToolBarToolBase(_core
.Object
):
2554 def __init__(self
): raise RuntimeError, "No constructor defined"
2556 return "<%s.%s; proxy of C++ wxToolBarToolBase instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2557 def GetId(*args
, **kwargs
):
2558 """GetId(self) -> int"""
2559 return _controls_
.ToolBarToolBase_GetId(*args
, **kwargs
)
2561 def GetControl(*args
, **kwargs
):
2562 """GetControl(self) -> Control"""
2563 return _controls_
.ToolBarToolBase_GetControl(*args
, **kwargs
)
2565 def GetToolBar(*args
, **kwargs
):
2566 """GetToolBar(self) -> ToolBarBase"""
2567 return _controls_
.ToolBarToolBase_GetToolBar(*args
, **kwargs
)
2569 def IsButton(*args
, **kwargs
):
2570 """IsButton(self) -> int"""
2571 return _controls_
.ToolBarToolBase_IsButton(*args
, **kwargs
)
2573 def IsControl(*args
, **kwargs
):
2574 """IsControl(self) -> int"""
2575 return _controls_
.ToolBarToolBase_IsControl(*args
, **kwargs
)
2577 def IsSeparator(*args
, **kwargs
):
2578 """IsSeparator(self) -> int"""
2579 return _controls_
.ToolBarToolBase_IsSeparator(*args
, **kwargs
)
2581 def GetStyle(*args
, **kwargs
):
2582 """GetStyle(self) -> int"""
2583 return _controls_
.ToolBarToolBase_GetStyle(*args
, **kwargs
)
2585 def GetKind(*args
, **kwargs
):
2586 """GetKind(self) -> int"""
2587 return _controls_
.ToolBarToolBase_GetKind(*args
, **kwargs
)
2589 def IsEnabled(*args
, **kwargs
):
2590 """IsEnabled(self) -> bool"""
2591 return _controls_
.ToolBarToolBase_IsEnabled(*args
, **kwargs
)
2593 def IsToggled(*args
, **kwargs
):
2594 """IsToggled(self) -> bool"""
2595 return _controls_
.ToolBarToolBase_IsToggled(*args
, **kwargs
)
2597 def CanBeToggled(*args
, **kwargs
):
2598 """CanBeToggled(self) -> bool"""
2599 return _controls_
.ToolBarToolBase_CanBeToggled(*args
, **kwargs
)
2601 def GetNormalBitmap(*args
, **kwargs
):
2602 """GetNormalBitmap(self) -> Bitmap"""
2603 return _controls_
.ToolBarToolBase_GetNormalBitmap(*args
, **kwargs
)
2605 def GetDisabledBitmap(*args
, **kwargs
):
2606 """GetDisabledBitmap(self) -> Bitmap"""
2607 return _controls_
.ToolBarToolBase_GetDisabledBitmap(*args
, **kwargs
)
2609 def GetBitmap(*args
, **kwargs
):
2610 """GetBitmap(self) -> Bitmap"""
2611 return _controls_
.ToolBarToolBase_GetBitmap(*args
, **kwargs
)
2613 def GetLabel(*args
, **kwargs
):
2614 """GetLabel(self) -> String"""
2615 return _controls_
.ToolBarToolBase_GetLabel(*args
, **kwargs
)
2617 def GetShortHelp(*args
, **kwargs
):
2618 """GetShortHelp(self) -> String"""
2619 return _controls_
.ToolBarToolBase_GetShortHelp(*args
, **kwargs
)
2621 def GetLongHelp(*args
, **kwargs
):
2622 """GetLongHelp(self) -> String"""
2623 return _controls_
.ToolBarToolBase_GetLongHelp(*args
, **kwargs
)
2625 def Enable(*args
, **kwargs
):
2626 """Enable(self, bool enable) -> bool"""
2627 return _controls_
.ToolBarToolBase_Enable(*args
, **kwargs
)
2629 def Toggle(*args
, **kwargs
):
2631 return _controls_
.ToolBarToolBase_Toggle(*args
, **kwargs
)
2633 def SetToggle(*args
, **kwargs
):
2634 """SetToggle(self, bool toggle) -> bool"""
2635 return _controls_
.ToolBarToolBase_SetToggle(*args
, **kwargs
)
2637 def SetShortHelp(*args
, **kwargs
):
2638 """SetShortHelp(self, String help) -> bool"""
2639 return _controls_
.ToolBarToolBase_SetShortHelp(*args
, **kwargs
)
2641 def SetLongHelp(*args
, **kwargs
):
2642 """SetLongHelp(self, String help) -> bool"""
2643 return _controls_
.ToolBarToolBase_SetLongHelp(*args
, **kwargs
)
2645 def SetNormalBitmap(*args
, **kwargs
):
2646 """SetNormalBitmap(self, Bitmap bmp)"""
2647 return _controls_
.ToolBarToolBase_SetNormalBitmap(*args
, **kwargs
)
2649 def SetDisabledBitmap(*args
, **kwargs
):
2650 """SetDisabledBitmap(self, Bitmap bmp)"""
2651 return _controls_
.ToolBarToolBase_SetDisabledBitmap(*args
, **kwargs
)
2653 def SetLabel(*args
, **kwargs
):
2654 """SetLabel(self, String label)"""
2655 return _controls_
.ToolBarToolBase_SetLabel(*args
, **kwargs
)
2657 def Detach(*args
, **kwargs
):
2659 return _controls_
.ToolBarToolBase_Detach(*args
, **kwargs
)
2661 def Attach(*args
, **kwargs
):
2662 """Attach(self, ToolBarBase tbar)"""
2663 return _controls_
.ToolBarToolBase_Attach(*args
, **kwargs
)
2665 def GetClientData(*args
, **kwargs
):
2666 """GetClientData(self) -> PyObject"""
2667 return _controls_
.ToolBarToolBase_GetClientData(*args
, **kwargs
)
2669 def SetClientData(*args
, **kwargs
):
2670 """SetClientData(self, PyObject clientData)"""
2671 return _controls_
.ToolBarToolBase_SetClientData(*args
, **kwargs
)
2673 GetBitmap1
= GetNormalBitmap
2674 GetBitmap2
= GetDisabledBitmap
2675 SetBitmap1
= SetNormalBitmap
2676 SetBitmap2
= SetDisabledBitmap
2679 class ToolBarToolBasePtr(ToolBarToolBase
):
2680 def __init__(self
, this
):
2682 if not hasattr(self
,"thisown"): self
.thisown
= 0
2683 self
.__class
__ = ToolBarToolBase
2684 _controls_
.ToolBarToolBase_swigregister(ToolBarToolBasePtr
)
2686 class ToolBarBase(_core
.Control
):
2687 def __init__(self
): raise RuntimeError, "No constructor defined"
2689 return "<%s.%s; proxy of C++ wxToolBarBase instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2690 def DoAddTool(*args
, **kwargs
):
2692 DoAddTool(self, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
2693 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
2694 String longHelp=EmptyString,
2695 PyObject clientData=None) -> ToolBarToolBase
2697 return _controls_
.ToolBarBase_DoAddTool(*args
, **kwargs
)
2699 def DoInsertTool(*args
, **kwargs
):
2701 DoInsertTool(self, size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
2702 int kind=ITEM_NORMAL,
2703 String shortHelp=EmptyString, String longHelp=EmptyString,
2704 PyObject clientData=None) -> ToolBarToolBase
2706 return _controls_
.ToolBarBase_DoInsertTool(*args
, **kwargs
)
2708 # These match the original Add methods for this class, kept for
2709 # backwards compatibility with versions < 2.3.3.
2712 def AddTool(self
, id, bitmap
,
2713 pushedBitmap
= wx
.NullBitmap
,
2716 shortHelpString
= '',
2717 longHelpString
= '') :
2718 '''Old style method to add a tool to the toolbar.'''
2719 kind
= wx
.ITEM_NORMAL
2720 if isToggle
: kind
= wx
.ITEM_CHECK
2721 return self
.DoAddTool(id, '', bitmap
, pushedBitmap
, kind
,
2722 shortHelpString
, longHelpString
, clientData
)
2724 def AddSimpleTool(self
, id, bitmap
,
2725 shortHelpString
= '',
2726 longHelpString
= '',
2728 '''Old style method to add a tool to the toolbar.'''
2729 kind
= wx
.ITEM_NORMAL
2730 if isToggle
: kind
= wx
.ITEM_CHECK
2731 return self
.DoAddTool(id, '', bitmap
, wx
.NullBitmap
, kind
,
2732 shortHelpString
, longHelpString
, None)
2734 def InsertTool(self
, pos
, id, bitmap
,
2735 pushedBitmap
= wx
.NullBitmap
,
2738 shortHelpString
= '',
2739 longHelpString
= ''):
2740 '''Old style method to insert a tool in the toolbar.'''
2741 kind
= wx
.ITEM_NORMAL
2742 if isToggle
: kind
= wx
.ITEM_CHECK
2743 return self
.DoInsertTool(pos
, id, '', bitmap
, pushedBitmap
, kind
,
2744 shortHelpString
, longHelpString
, clientData
)
2746 def InsertSimpleTool(self
, pos
, id, bitmap
,
2747 shortHelpString
= '',
2748 longHelpString
= '',
2750 '''Old style method to insert a tool in the toolbar.'''
2751 kind
= wx
.ITEM_NORMAL
2752 if isToggle
: kind
= wx
.ITEM_CHECK
2753 return self
.DoInsertTool(pos
, id, '', bitmap
, wx
.NullBitmap
, kind
,
2754 shortHelpString
, longHelpString
, None)
2757 # The following are the new toolbar Add methods starting with
2758 # 2.3.3. They are renamed to have 'Label' in the name so as to be
2759 # able to keep backwards compatibility with using the above
2760 # methods. Eventually these should migrate to be the methods used
2761 # primarily and lose the 'Label' in the name...
2763 def AddLabelTool(self
, id, label
, bitmap
,
2764 bmpDisabled
= wx
.NullBitmap
,
2765 kind
= wx
.ITEM_NORMAL
,
2766 shortHelp
= '', longHelp
= '',
2769 The full AddTool() function.
2771 If bmpDisabled is wx.NullBitmap, a shadowed version of the normal bitmap
2772 is created and used as the disabled image.
2774 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, kind
,
2775 shortHelp
, longHelp
, clientData
)
2778 def InsertLabelTool(self
, pos
, id, label
, bitmap
,
2779 bmpDisabled
= wx
.NullBitmap
,
2780 kind
= wx
.ITEM_NORMAL
,
2781 shortHelp
= '', longHelp
= '',
2784 Insert the new tool at the given position, if pos == GetToolsCount(), it
2785 is equivalent to AddTool()
2787 return self
.DoInsertTool(pos
, id, label
, bitmap
, bmpDisabled
, kind
,
2788 shortHelp
, longHelp
, clientData
)
2790 def AddCheckLabelTool(self
, id, label
, bitmap
,
2791 bmpDisabled
= wx
.NullBitmap
,
2792 shortHelp
= '', longHelp
= '',
2794 '''Add a check tool, i.e. a tool which can be toggled'''
2795 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
2796 shortHelp
, longHelp
, clientData
)
2798 def AddRadioLabelTool(self
, id, label
, bitmap
,
2799 bmpDisabled
= wx
.NullBitmap
,
2800 shortHelp
= '', longHelp
= '',
2803 Add a radio tool, i.e. a tool which can be toggled and releases any
2804 other toggled radio tools in the same group when it happens
2806 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
2807 shortHelp
, longHelp
, clientData
)
2810 # For consistency with the backwards compatible methods above, here are
2811 # some non-'Label' versions of the Check and Radio methods
2812 def AddCheckTool(self
, id, bitmap
,
2813 bmpDisabled
= wx
.NullBitmap
,
2814 shortHelp
= '', longHelp
= '',
2816 '''Add a check tool, i.e. a tool which can be toggled'''
2817 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
2818 shortHelp
, longHelp
, clientData
)
2820 def AddRadioTool(self
, id, bitmap
,
2821 bmpDisabled
= wx
.NullBitmap
,
2822 shortHelp
= '', longHelp
= '',
2825 Add a radio tool, i.e. a tool which can be toggled and releases any
2826 other toggled radio tools in the same group when it happens
2828 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
2829 shortHelp
, longHelp
, clientData
)
2831 def AddToolItem(*args
, **kwargs
):
2832 """AddToolItem(self, ToolBarToolBase tool) -> ToolBarToolBase"""
2833 return _controls_
.ToolBarBase_AddToolItem(*args
, **kwargs
)
2835 def InsertToolItem(*args
, **kwargs
):
2836 """InsertToolItem(self, size_t pos, ToolBarToolBase tool) -> ToolBarToolBase"""
2837 return _controls_
.ToolBarBase_InsertToolItem(*args
, **kwargs
)
2839 def AddControl(*args
, **kwargs
):
2840 """AddControl(self, Control control) -> ToolBarToolBase"""
2841 return _controls_
.ToolBarBase_AddControl(*args
, **kwargs
)
2843 def InsertControl(*args
, **kwargs
):
2844 """InsertControl(self, size_t pos, Control control) -> ToolBarToolBase"""
2845 return _controls_
.ToolBarBase_InsertControl(*args
, **kwargs
)
2847 def FindControl(*args
, **kwargs
):
2848 """FindControl(self, int id) -> Control"""
2849 return _controls_
.ToolBarBase_FindControl(*args
, **kwargs
)
2851 def AddSeparator(*args
, **kwargs
):
2852 """AddSeparator(self) -> ToolBarToolBase"""
2853 return _controls_
.ToolBarBase_AddSeparator(*args
, **kwargs
)
2855 def InsertSeparator(*args
, **kwargs
):
2856 """InsertSeparator(self, size_t pos) -> ToolBarToolBase"""
2857 return _controls_
.ToolBarBase_InsertSeparator(*args
, **kwargs
)
2859 def RemoveTool(*args
, **kwargs
):
2860 """RemoveTool(self, int id) -> ToolBarToolBase"""
2861 return _controls_
.ToolBarBase_RemoveTool(*args
, **kwargs
)
2863 def DeleteToolByPos(*args
, **kwargs
):
2864 """DeleteToolByPos(self, size_t pos) -> bool"""
2865 return _controls_
.ToolBarBase_DeleteToolByPos(*args
, **kwargs
)
2867 def DeleteTool(*args
, **kwargs
):
2868 """DeleteTool(self, int id) -> bool"""
2869 return _controls_
.ToolBarBase_DeleteTool(*args
, **kwargs
)
2871 def ClearTools(*args
, **kwargs
):
2872 """ClearTools(self)"""
2873 return _controls_
.ToolBarBase_ClearTools(*args
, **kwargs
)
2875 def Realize(*args
, **kwargs
):
2876 """Realize(self) -> bool"""
2877 return _controls_
.ToolBarBase_Realize(*args
, **kwargs
)
2879 def EnableTool(*args
, **kwargs
):
2880 """EnableTool(self, int id, bool enable)"""
2881 return _controls_
.ToolBarBase_EnableTool(*args
, **kwargs
)
2883 def ToggleTool(*args
, **kwargs
):
2884 """ToggleTool(self, int id, bool toggle)"""
2885 return _controls_
.ToolBarBase_ToggleTool(*args
, **kwargs
)
2887 def SetToggle(*args
, **kwargs
):
2888 """SetToggle(self, int id, bool toggle)"""
2889 return _controls_
.ToolBarBase_SetToggle(*args
, **kwargs
)
2891 def GetToolClientData(*args
, **kwargs
):
2892 """GetToolClientData(self, int id) -> PyObject"""
2893 return _controls_
.ToolBarBase_GetToolClientData(*args
, **kwargs
)
2895 def SetToolClientData(*args
, **kwargs
):
2896 """SetToolClientData(self, int id, PyObject clientData)"""
2897 return _controls_
.ToolBarBase_SetToolClientData(*args
, **kwargs
)
2899 def GetToolPos(*args
, **kwargs
):
2900 """GetToolPos(self, int id) -> int"""
2901 return _controls_
.ToolBarBase_GetToolPos(*args
, **kwargs
)
2903 def GetToolState(*args
, **kwargs
):
2904 """GetToolState(self, int id) -> bool"""
2905 return _controls_
.ToolBarBase_GetToolState(*args
, **kwargs
)
2907 def GetToolEnabled(*args
, **kwargs
):
2908 """GetToolEnabled(self, int id) -> bool"""
2909 return _controls_
.ToolBarBase_GetToolEnabled(*args
, **kwargs
)
2911 def SetToolShortHelp(*args
, **kwargs
):
2912 """SetToolShortHelp(self, int id, String helpString)"""
2913 return _controls_
.ToolBarBase_SetToolShortHelp(*args
, **kwargs
)
2915 def GetToolShortHelp(*args
, **kwargs
):
2916 """GetToolShortHelp(self, int id) -> String"""
2917 return _controls_
.ToolBarBase_GetToolShortHelp(*args
, **kwargs
)
2919 def SetToolLongHelp(*args
, **kwargs
):
2920 """SetToolLongHelp(self, int id, String helpString)"""
2921 return _controls_
.ToolBarBase_SetToolLongHelp(*args
, **kwargs
)
2923 def GetToolLongHelp(*args
, **kwargs
):
2924 """GetToolLongHelp(self, int id) -> String"""
2925 return _controls_
.ToolBarBase_GetToolLongHelp(*args
, **kwargs
)
2927 def SetMarginsXY(*args
, **kwargs
):
2928 """SetMarginsXY(self, int x, int y)"""
2929 return _controls_
.ToolBarBase_SetMarginsXY(*args
, **kwargs
)
2931 def SetMargins(*args
, **kwargs
):
2932 """SetMargins(self, Size size)"""
2933 return _controls_
.ToolBarBase_SetMargins(*args
, **kwargs
)
2935 def SetToolPacking(*args
, **kwargs
):
2936 """SetToolPacking(self, int packing)"""
2937 return _controls_
.ToolBarBase_SetToolPacking(*args
, **kwargs
)
2939 def SetToolSeparation(*args
, **kwargs
):
2940 """SetToolSeparation(self, int separation)"""
2941 return _controls_
.ToolBarBase_SetToolSeparation(*args
, **kwargs
)
2943 def GetToolMargins(*args
, **kwargs
):
2944 """GetToolMargins(self) -> Size"""
2945 return _controls_
.ToolBarBase_GetToolMargins(*args
, **kwargs
)
2947 def GetMargins(*args
, **kwargs
):
2948 """GetMargins(self) -> Size"""
2949 return _controls_
.ToolBarBase_GetMargins(*args
, **kwargs
)
2951 def GetToolPacking(*args
, **kwargs
):
2952 """GetToolPacking(self) -> int"""
2953 return _controls_
.ToolBarBase_GetToolPacking(*args
, **kwargs
)
2955 def GetToolSeparation(*args
, **kwargs
):
2956 """GetToolSeparation(self) -> int"""
2957 return _controls_
.ToolBarBase_GetToolSeparation(*args
, **kwargs
)
2959 def SetRows(*args
, **kwargs
):
2960 """SetRows(self, int nRows)"""
2961 return _controls_
.ToolBarBase_SetRows(*args
, **kwargs
)
2963 def SetMaxRowsCols(*args
, **kwargs
):
2964 """SetMaxRowsCols(self, int rows, int cols)"""
2965 return _controls_
.ToolBarBase_SetMaxRowsCols(*args
, **kwargs
)
2967 def GetMaxRows(*args
, **kwargs
):
2968 """GetMaxRows(self) -> int"""
2969 return _controls_
.ToolBarBase_GetMaxRows(*args
, **kwargs
)
2971 def GetMaxCols(*args
, **kwargs
):
2972 """GetMaxCols(self) -> int"""
2973 return _controls_
.ToolBarBase_GetMaxCols(*args
, **kwargs
)
2975 def SetToolBitmapSize(*args
, **kwargs
):
2976 """SetToolBitmapSize(self, Size size)"""
2977 return _controls_
.ToolBarBase_SetToolBitmapSize(*args
, **kwargs
)
2979 def GetToolBitmapSize(*args
, **kwargs
):
2980 """GetToolBitmapSize(self) -> Size"""
2981 return _controls_
.ToolBarBase_GetToolBitmapSize(*args
, **kwargs
)
2983 def GetToolSize(*args
, **kwargs
):
2984 """GetToolSize(self) -> Size"""
2985 return _controls_
.ToolBarBase_GetToolSize(*args
, **kwargs
)
2987 def FindToolForPosition(*args
, **kwargs
):
2988 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
2989 return _controls_
.ToolBarBase_FindToolForPosition(*args
, **kwargs
)
2991 def FindById(*args
, **kwargs
):
2992 """FindById(self, int toolid) -> ToolBarToolBase"""
2993 return _controls_
.ToolBarBase_FindById(*args
, **kwargs
)
2995 def IsVertical(*args
, **kwargs
):
2996 """IsVertical(self) -> bool"""
2997 return _controls_
.ToolBarBase_IsVertical(*args
, **kwargs
)
3000 class ToolBarBasePtr(ToolBarBase
):
3001 def __init__(self
, this
):
3003 if not hasattr(self
,"thisown"): self
.thisown
= 0
3004 self
.__class
__ = ToolBarBase
3005 _controls_
.ToolBarBase_swigregister(ToolBarBasePtr
)
3007 class ToolBar(ToolBarBase
):
3009 return "<%s.%s; proxy of C++ wxToolBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3010 def __init__(self
, *args
, **kwargs
):
3012 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3013 long style=wxNO_BORDER|wxTB_HORIZONTAL,
3014 String name=wxPyToolBarNameStr) -> ToolBar
3016 newobj
= _controls_
.new_ToolBar(*args
, **kwargs
)
3017 self
.this
= newobj
.this
3020 self
._setOORInfo
(self
)
3022 def Create(*args
, **kwargs
):
3024 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3025 long style=wxNO_BORDER|wxTB_HORIZONTAL,
3026 String name=wxPyToolBarNameStr) -> bool
3028 return _controls_
.ToolBar_Create(*args
, **kwargs
)
3030 def FindToolForPosition(*args
, **kwargs
):
3031 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3032 return _controls_
.ToolBar_FindToolForPosition(*args
, **kwargs
)
3035 class ToolBarPtr(ToolBar
):
3036 def __init__(self
, this
):
3038 if not hasattr(self
,"thisown"): self
.thisown
= 0
3039 self
.__class
__ = ToolBar
3040 _controls_
.ToolBar_swigregister(ToolBarPtr
)
3042 def PreToolBar(*args
, **kwargs
):
3043 """PreToolBar() -> ToolBar"""
3044 val
= _controls_
.new_PreToolBar(*args
, **kwargs
)
3048 #---------------------------------------------------------------------------
3050 LC_VRULES
= _controls_
.LC_VRULES
3051 LC_HRULES
= _controls_
.LC_HRULES
3052 LC_ICON
= _controls_
.LC_ICON
3053 LC_SMALL_ICON
= _controls_
.LC_SMALL_ICON
3054 LC_LIST
= _controls_
.LC_LIST
3055 LC_REPORT
= _controls_
.LC_REPORT
3056 LC_ALIGN_TOP
= _controls_
.LC_ALIGN_TOP
3057 LC_ALIGN_LEFT
= _controls_
.LC_ALIGN_LEFT
3058 LC_AUTOARRANGE
= _controls_
.LC_AUTOARRANGE
3059 LC_VIRTUAL
= _controls_
.LC_VIRTUAL
3060 LC_EDIT_LABELS
= _controls_
.LC_EDIT_LABELS
3061 LC_NO_HEADER
= _controls_
.LC_NO_HEADER
3062 LC_NO_SORT_HEADER
= _controls_
.LC_NO_SORT_HEADER
3063 LC_SINGLE_SEL
= _controls_
.LC_SINGLE_SEL
3064 LC_SORT_ASCENDING
= _controls_
.LC_SORT_ASCENDING
3065 LC_SORT_DESCENDING
= _controls_
.LC_SORT_DESCENDING
3066 LC_MASK_TYPE
= _controls_
.LC_MASK_TYPE
3067 LC_MASK_ALIGN
= _controls_
.LC_MASK_ALIGN
3068 LC_MASK_SORT
= _controls_
.LC_MASK_SORT
3069 LIST_MASK_STATE
= _controls_
.LIST_MASK_STATE
3070 LIST_MASK_TEXT
= _controls_
.LIST_MASK_TEXT
3071 LIST_MASK_IMAGE
= _controls_
.LIST_MASK_IMAGE
3072 LIST_MASK_DATA
= _controls_
.LIST_MASK_DATA
3073 LIST_SET_ITEM
= _controls_
.LIST_SET_ITEM
3074 LIST_MASK_WIDTH
= _controls_
.LIST_MASK_WIDTH
3075 LIST_MASK_FORMAT
= _controls_
.LIST_MASK_FORMAT
3076 LIST_STATE_DONTCARE
= _controls_
.LIST_STATE_DONTCARE
3077 LIST_STATE_DROPHILITED
= _controls_
.LIST_STATE_DROPHILITED
3078 LIST_STATE_FOCUSED
= _controls_
.LIST_STATE_FOCUSED
3079 LIST_STATE_SELECTED
= _controls_
.LIST_STATE_SELECTED
3080 LIST_STATE_CUT
= _controls_
.LIST_STATE_CUT
3081 LIST_STATE_DISABLED
= _controls_
.LIST_STATE_DISABLED
3082 LIST_STATE_FILTERED
= _controls_
.LIST_STATE_FILTERED
3083 LIST_STATE_INUSE
= _controls_
.LIST_STATE_INUSE
3084 LIST_STATE_PICKED
= _controls_
.LIST_STATE_PICKED
3085 LIST_STATE_SOURCE
= _controls_
.LIST_STATE_SOURCE
3086 LIST_HITTEST_ABOVE
= _controls_
.LIST_HITTEST_ABOVE
3087 LIST_HITTEST_BELOW
= _controls_
.LIST_HITTEST_BELOW
3088 LIST_HITTEST_NOWHERE
= _controls_
.LIST_HITTEST_NOWHERE
3089 LIST_HITTEST_ONITEMICON
= _controls_
.LIST_HITTEST_ONITEMICON
3090 LIST_HITTEST_ONITEMLABEL
= _controls_
.LIST_HITTEST_ONITEMLABEL
3091 LIST_HITTEST_ONITEMRIGHT
= _controls_
.LIST_HITTEST_ONITEMRIGHT
3092 LIST_HITTEST_ONITEMSTATEICON
= _controls_
.LIST_HITTEST_ONITEMSTATEICON
3093 LIST_HITTEST_TOLEFT
= _controls_
.LIST_HITTEST_TOLEFT
3094 LIST_HITTEST_TORIGHT
= _controls_
.LIST_HITTEST_TORIGHT
3095 LIST_HITTEST_ONITEM
= _controls_
.LIST_HITTEST_ONITEM
3096 LIST_NEXT_ABOVE
= _controls_
.LIST_NEXT_ABOVE
3097 LIST_NEXT_ALL
= _controls_
.LIST_NEXT_ALL
3098 LIST_NEXT_BELOW
= _controls_
.LIST_NEXT_BELOW
3099 LIST_NEXT_LEFT
= _controls_
.LIST_NEXT_LEFT
3100 LIST_NEXT_RIGHT
= _controls_
.LIST_NEXT_RIGHT
3101 LIST_ALIGN_DEFAULT
= _controls_
.LIST_ALIGN_DEFAULT
3102 LIST_ALIGN_LEFT
= _controls_
.LIST_ALIGN_LEFT
3103 LIST_ALIGN_TOP
= _controls_
.LIST_ALIGN_TOP
3104 LIST_ALIGN_SNAP_TO_GRID
= _controls_
.LIST_ALIGN_SNAP_TO_GRID
3105 LIST_FORMAT_LEFT
= _controls_
.LIST_FORMAT_LEFT
3106 LIST_FORMAT_RIGHT
= _controls_
.LIST_FORMAT_RIGHT
3107 LIST_FORMAT_CENTRE
= _controls_
.LIST_FORMAT_CENTRE
3108 LIST_FORMAT_CENTER
= _controls_
.LIST_FORMAT_CENTER
3109 LIST_AUTOSIZE
= _controls_
.LIST_AUTOSIZE
3110 LIST_AUTOSIZE_USEHEADER
= _controls_
.LIST_AUTOSIZE_USEHEADER
3111 LIST_RECT_BOUNDS
= _controls_
.LIST_RECT_BOUNDS
3112 LIST_RECT_ICON
= _controls_
.LIST_RECT_ICON
3113 LIST_RECT_LABEL
= _controls_
.LIST_RECT_LABEL
3114 LIST_FIND_UP
= _controls_
.LIST_FIND_UP
3115 LIST_FIND_DOWN
= _controls_
.LIST_FIND_DOWN
3116 LIST_FIND_LEFT
= _controls_
.LIST_FIND_LEFT
3117 LIST_FIND_RIGHT
= _controls_
.LIST_FIND_RIGHT
3118 #---------------------------------------------------------------------------
3120 class ListItemAttr(object):
3122 return "<%s.%s; proxy of C++ wxListItemAttr instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3123 def __init__(self
, *args
, **kwargs
):
3125 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
3126 Font font=wxNullFont) -> ListItemAttr
3128 newobj
= _controls_
.new_ListItemAttr(*args
, **kwargs
)
3129 self
.this
= newobj
.this
3132 def SetTextColour(*args
, **kwargs
):
3133 """SetTextColour(self, Colour colText)"""
3134 return _controls_
.ListItemAttr_SetTextColour(*args
, **kwargs
)
3136 def SetBackgroundColour(*args
, **kwargs
):
3137 """SetBackgroundColour(self, Colour colBack)"""
3138 return _controls_
.ListItemAttr_SetBackgroundColour(*args
, **kwargs
)
3140 def SetFont(*args
, **kwargs
):
3141 """SetFont(self, Font font)"""
3142 return _controls_
.ListItemAttr_SetFont(*args
, **kwargs
)
3144 def HasTextColour(*args
, **kwargs
):
3145 """HasTextColour(self) -> bool"""
3146 return _controls_
.ListItemAttr_HasTextColour(*args
, **kwargs
)
3148 def HasBackgroundColour(*args
, **kwargs
):
3149 """HasBackgroundColour(self) -> bool"""
3150 return _controls_
.ListItemAttr_HasBackgroundColour(*args
, **kwargs
)
3152 def HasFont(*args
, **kwargs
):
3153 """HasFont(self) -> bool"""
3154 return _controls_
.ListItemAttr_HasFont(*args
, **kwargs
)
3156 def GetTextColour(*args
, **kwargs
):
3157 """GetTextColour(self) -> Colour"""
3158 return _controls_
.ListItemAttr_GetTextColour(*args
, **kwargs
)
3160 def GetBackgroundColour(*args
, **kwargs
):
3161 """GetBackgroundColour(self) -> Colour"""
3162 return _controls_
.ListItemAttr_GetBackgroundColour(*args
, **kwargs
)
3164 def GetFont(*args
, **kwargs
):
3165 """GetFont(self) -> Font"""
3166 return _controls_
.ListItemAttr_GetFont(*args
, **kwargs
)
3168 def Destroy(*args
, **kwargs
):
3170 return _controls_
.ListItemAttr_Destroy(*args
, **kwargs
)
3173 class ListItemAttrPtr(ListItemAttr
):
3174 def __init__(self
, this
):
3176 if not hasattr(self
,"thisown"): self
.thisown
= 0
3177 self
.__class
__ = ListItemAttr
3178 _controls_
.ListItemAttr_swigregister(ListItemAttrPtr
)
3179 ListCtrlNameStr
= cvar
.ListCtrlNameStr
3181 #---------------------------------------------------------------------------
3183 class ListItem(_core
.Object
):
3185 return "<%s.%s; proxy of C++ wxListItem instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3186 def __init__(self
, *args
, **kwargs
):
3187 """__init__(self) -> ListItem"""
3188 newobj
= _controls_
.new_ListItem(*args
, **kwargs
)
3189 self
.this
= newobj
.this
3192 def __del__(self
, destroy
=_controls_
.delete_ListItem
):
3195 if self
.thisown
: destroy(self
)
3198 def Clear(*args
, **kwargs
):
3200 return _controls_
.ListItem_Clear(*args
, **kwargs
)
3202 def ClearAttributes(*args
, **kwargs
):
3203 """ClearAttributes(self)"""
3204 return _controls_
.ListItem_ClearAttributes(*args
, **kwargs
)
3206 def SetMask(*args
, **kwargs
):
3207 """SetMask(self, long mask)"""
3208 return _controls_
.ListItem_SetMask(*args
, **kwargs
)
3210 def SetId(*args
, **kwargs
):
3211 """SetId(self, long id)"""
3212 return _controls_
.ListItem_SetId(*args
, **kwargs
)
3214 def SetColumn(*args
, **kwargs
):
3215 """SetColumn(self, int col)"""
3216 return _controls_
.ListItem_SetColumn(*args
, **kwargs
)
3218 def SetState(*args
, **kwargs
):
3219 """SetState(self, long state)"""
3220 return _controls_
.ListItem_SetState(*args
, **kwargs
)
3222 def SetStateMask(*args
, **kwargs
):
3223 """SetStateMask(self, long stateMask)"""
3224 return _controls_
.ListItem_SetStateMask(*args
, **kwargs
)
3226 def SetText(*args
, **kwargs
):
3227 """SetText(self, String text)"""
3228 return _controls_
.ListItem_SetText(*args
, **kwargs
)
3230 def SetImage(*args
, **kwargs
):
3231 """SetImage(self, int image)"""
3232 return _controls_
.ListItem_SetImage(*args
, **kwargs
)
3234 def SetData(*args
, **kwargs
):
3235 """SetData(self, long data)"""
3236 return _controls_
.ListItem_SetData(*args
, **kwargs
)
3238 def SetWidth(*args
, **kwargs
):
3239 """SetWidth(self, int width)"""
3240 return _controls_
.ListItem_SetWidth(*args
, **kwargs
)
3242 def SetAlign(*args
, **kwargs
):
3243 """SetAlign(self, int align)"""
3244 return _controls_
.ListItem_SetAlign(*args
, **kwargs
)
3246 def SetTextColour(*args
, **kwargs
):
3247 """SetTextColour(self, Colour colText)"""
3248 return _controls_
.ListItem_SetTextColour(*args
, **kwargs
)
3250 def SetBackgroundColour(*args
, **kwargs
):
3251 """SetBackgroundColour(self, Colour colBack)"""
3252 return _controls_
.ListItem_SetBackgroundColour(*args
, **kwargs
)
3254 def SetFont(*args
, **kwargs
):
3255 """SetFont(self, Font font)"""
3256 return _controls_
.ListItem_SetFont(*args
, **kwargs
)
3258 def GetMask(*args
, **kwargs
):
3259 """GetMask(self) -> long"""
3260 return _controls_
.ListItem_GetMask(*args
, **kwargs
)
3262 def GetId(*args
, **kwargs
):
3263 """GetId(self) -> long"""
3264 return _controls_
.ListItem_GetId(*args
, **kwargs
)
3266 def GetColumn(*args
, **kwargs
):
3267 """GetColumn(self) -> int"""
3268 return _controls_
.ListItem_GetColumn(*args
, **kwargs
)
3270 def GetState(*args
, **kwargs
):
3271 """GetState(self) -> long"""
3272 return _controls_
.ListItem_GetState(*args
, **kwargs
)
3274 def GetText(*args
, **kwargs
):
3275 """GetText(self) -> String"""
3276 return _controls_
.ListItem_GetText(*args
, **kwargs
)
3278 def GetImage(*args
, **kwargs
):
3279 """GetImage(self) -> int"""
3280 return _controls_
.ListItem_GetImage(*args
, **kwargs
)
3282 def GetData(*args
, **kwargs
):
3283 """GetData(self) -> long"""
3284 return _controls_
.ListItem_GetData(*args
, **kwargs
)
3286 def GetWidth(*args
, **kwargs
):
3287 """GetWidth(self) -> int"""
3288 return _controls_
.ListItem_GetWidth(*args
, **kwargs
)
3290 def GetAlign(*args
, **kwargs
):
3291 """GetAlign(self) -> int"""
3292 return _controls_
.ListItem_GetAlign(*args
, **kwargs
)
3294 def GetAttributes(*args
, **kwargs
):
3295 """GetAttributes(self) -> ListItemAttr"""
3296 return _controls_
.ListItem_GetAttributes(*args
, **kwargs
)
3298 def HasAttributes(*args
, **kwargs
):
3299 """HasAttributes(self) -> bool"""
3300 return _controls_
.ListItem_HasAttributes(*args
, **kwargs
)
3302 def GetTextColour(*args
, **kwargs
):
3303 """GetTextColour(self) -> Colour"""
3304 return _controls_
.ListItem_GetTextColour(*args
, **kwargs
)
3306 def GetBackgroundColour(*args
, **kwargs
):
3307 """GetBackgroundColour(self) -> Colour"""
3308 return _controls_
.ListItem_GetBackgroundColour(*args
, **kwargs
)
3310 def GetFont(*args
, **kwargs
):
3311 """GetFont(self) -> Font"""
3312 return _controls_
.ListItem_GetFont(*args
, **kwargs
)
3314 m_mask
= property(_controls_
.ListItem_m_mask_get
, _controls_
.ListItem_m_mask_set
)
3315 m_itemId
= property(_controls_
.ListItem_m_itemId_get
, _controls_
.ListItem_m_itemId_set
)
3316 m_col
= property(_controls_
.ListItem_m_col_get
, _controls_
.ListItem_m_col_set
)
3317 m_state
= property(_controls_
.ListItem_m_state_get
, _controls_
.ListItem_m_state_set
)
3318 m_stateMask
= property(_controls_
.ListItem_m_stateMask_get
, _controls_
.ListItem_m_stateMask_set
)
3319 m_text
= property(_controls_
.ListItem_m_text_get
, _controls_
.ListItem_m_text_set
)
3320 m_image
= property(_controls_
.ListItem_m_image_get
, _controls_
.ListItem_m_image_set
)
3321 m_data
= property(_controls_
.ListItem_m_data_get
, _controls_
.ListItem_m_data_set
)
3322 m_format
= property(_controls_
.ListItem_m_format_get
, _controls_
.ListItem_m_format_set
)
3323 m_width
= property(_controls_
.ListItem_m_width_get
, _controls_
.ListItem_m_width_set
)
3325 class ListItemPtr(ListItem
):
3326 def __init__(self
, this
):
3328 if not hasattr(self
,"thisown"): self
.thisown
= 0
3329 self
.__class
__ = ListItem
3330 _controls_
.ListItem_swigregister(ListItemPtr
)
3332 #---------------------------------------------------------------------------
3334 class ListEvent(_core
.NotifyEvent
):
3336 return "<%s.%s; proxy of C++ wxListEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3337 def __init__(self
, *args
, **kwargs
):
3338 """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> ListEvent"""
3339 newobj
= _controls_
.new_ListEvent(*args
, **kwargs
)
3340 self
.this
= newobj
.this
3343 m_code
= property(_controls_
.ListEvent_m_code_get
, _controls_
.ListEvent_m_code_set
)
3344 m_oldItemIndex
= property(_controls_
.ListEvent_m_oldItemIndex_get
, _controls_
.ListEvent_m_oldItemIndex_set
)
3345 m_itemIndex
= property(_controls_
.ListEvent_m_itemIndex_get
, _controls_
.ListEvent_m_itemIndex_set
)
3346 m_col
= property(_controls_
.ListEvent_m_col_get
, _controls_
.ListEvent_m_col_set
)
3347 m_pointDrag
= property(_controls_
.ListEvent_m_pointDrag_get
, _controls_
.ListEvent_m_pointDrag_set
)
3348 m_item
= property(_controls_
.ListEvent_m_item_get
)
3349 def GetKeyCode(*args
, **kwargs
):
3350 """GetKeyCode(self) -> int"""
3351 return _controls_
.ListEvent_GetKeyCode(*args
, **kwargs
)
3353 GetCode
= GetKeyCode
3354 def GetIndex(*args
, **kwargs
):
3355 """GetIndex(self) -> long"""
3356 return _controls_
.ListEvent_GetIndex(*args
, **kwargs
)
3358 def GetColumn(*args
, **kwargs
):
3359 """GetColumn(self) -> int"""
3360 return _controls_
.ListEvent_GetColumn(*args
, **kwargs
)
3362 def GetPoint(*args
, **kwargs
):
3363 """GetPoint(self) -> Point"""
3364 return _controls_
.ListEvent_GetPoint(*args
, **kwargs
)
3366 GetPosition
= GetPoint
3367 def GetLabel(*args
, **kwargs
):
3368 """GetLabel(self) -> String"""
3369 return _controls_
.ListEvent_GetLabel(*args
, **kwargs
)
3371 def GetText(*args
, **kwargs
):
3372 """GetText(self) -> String"""
3373 return _controls_
.ListEvent_GetText(*args
, **kwargs
)
3375 def GetImage(*args
, **kwargs
):
3376 """GetImage(self) -> int"""
3377 return _controls_
.ListEvent_GetImage(*args
, **kwargs
)
3379 def GetData(*args
, **kwargs
):
3380 """GetData(self) -> long"""
3381 return _controls_
.ListEvent_GetData(*args
, **kwargs
)
3383 def GetMask(*args
, **kwargs
):
3384 """GetMask(self) -> long"""
3385 return _controls_
.ListEvent_GetMask(*args
, **kwargs
)
3387 def GetItem(*args
, **kwargs
):
3388 """GetItem(self) -> ListItem"""
3389 return _controls_
.ListEvent_GetItem(*args
, **kwargs
)
3391 def GetCacheFrom(*args
, **kwargs
):
3392 """GetCacheFrom(self) -> long"""
3393 return _controls_
.ListEvent_GetCacheFrom(*args
, **kwargs
)
3395 def GetCacheTo(*args
, **kwargs
):
3396 """GetCacheTo(self) -> long"""
3397 return _controls_
.ListEvent_GetCacheTo(*args
, **kwargs
)
3399 def IsEditCancelled(*args
, **kwargs
):
3400 """IsEditCancelled(self) -> bool"""
3401 return _controls_
.ListEvent_IsEditCancelled(*args
, **kwargs
)
3403 def SetEditCanceled(*args
, **kwargs
):
3404 """SetEditCanceled(self, bool editCancelled)"""
3405 return _controls_
.ListEvent_SetEditCanceled(*args
, **kwargs
)
3408 class ListEventPtr(ListEvent
):
3409 def __init__(self
, this
):
3411 if not hasattr(self
,"thisown"): self
.thisown
= 0
3412 self
.__class
__ = ListEvent
3413 _controls_
.ListEvent_swigregister(ListEventPtr
)
3415 wxEVT_COMMAND_LIST_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_DRAG
3416 wxEVT_COMMAND_LIST_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_RDRAG
3417 wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
3418 wxEVT_COMMAND_LIST_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_END_LABEL_EDIT
3419 wxEVT_COMMAND_LIST_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ITEM
3420 wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
3421 wxEVT_COMMAND_LIST_GET_INFO
= _controls_
.wxEVT_COMMAND_LIST_GET_INFO
3422 wxEVT_COMMAND_LIST_SET_INFO
= _controls_
.wxEVT_COMMAND_LIST_SET_INFO
3423 wxEVT_COMMAND_LIST_ITEM_SELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_SELECTED
3424 wxEVT_COMMAND_LIST_ITEM_DESELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_DESELECTED
3425 wxEVT_COMMAND_LIST_KEY_DOWN
= _controls_
.wxEVT_COMMAND_LIST_KEY_DOWN
3426 wxEVT_COMMAND_LIST_INSERT_ITEM
= _controls_
.wxEVT_COMMAND_LIST_INSERT_ITEM
3427 wxEVT_COMMAND_LIST_COL_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_CLICK
3428 wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
3429 wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
3430 wxEVT_COMMAND_LIST_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_ACTIVATED
3431 wxEVT_COMMAND_LIST_CACHE_HINT
= _controls_
.wxEVT_COMMAND_LIST_CACHE_HINT
3432 wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
3433 wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
3434 wxEVT_COMMAND_LIST_COL_DRAGGING
= _controls_
.wxEVT_COMMAND_LIST_COL_DRAGGING
3435 wxEVT_COMMAND_LIST_COL_END_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_END_DRAG
3436 wxEVT_COMMAND_LIST_ITEM_FOCUSED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_FOCUSED
3437 EVT_LIST_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG
, 1)
3438 EVT_LIST_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG
, 1)
3439 EVT_LIST_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, 1)
3440 EVT_LIST_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT
, 1)
3441 EVT_LIST_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM
, 1)
3442 EVT_LIST_DELETE_ALL_ITEMS
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, 1)
3443 EVT_LIST_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO
, 1)
3444 EVT_LIST_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO
, 1)
3445 EVT_LIST_ITEM_SELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED
, 1)
3446 EVT_LIST_ITEM_DESELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED
, 1)
3447 EVT_LIST_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN
, 1)
3448 EVT_LIST_INSERT_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM
, 1)
3449 EVT_LIST_COL_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK
, 1)
3450 EVT_LIST_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, 1)
3451 EVT_LIST_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
, 1)
3452 EVT_LIST_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, 1)
3453 EVT_LIST_CACHE_HINT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT
, 1)
3454 EVT_LIST_COL_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
, 1)
3455 EVT_LIST_COL_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
, 1)
3456 EVT_LIST_COL_DRAGGING
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING
, 1)
3457 EVT_LIST_COL_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG
, 1)
3458 EVT_LIST_ITEM_FOCUSED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
, 1)
3460 #---------------------------------------------------------------------------
3462 class ListCtrl(_core
.Control
):
3464 return "<%s.%s; proxy of C++ wxPyListCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3465 def __init__(self
, *args
, **kwargs
):
3467 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3468 Size size=DefaultSize, long style=LC_ICON,
3469 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListCtrl
3471 newobj
= _controls_
.new_ListCtrl(*args
, **kwargs
)
3472 self
.this
= newobj
.this
3475 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, ListCtrl
)
3477 def Create(*args
, **kwargs
):
3479 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3480 Size size=DefaultSize, long style=LC_ICON,
3481 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
3483 Do the 2nd phase and create the GUI control.
3485 return _controls_
.ListCtrl_Create(*args
, **kwargs
)
3487 def _setCallbackInfo(*args
, **kwargs
):
3488 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3489 return _controls_
.ListCtrl__setCallbackInfo(*args
, **kwargs
)
3491 def SetForegroundColour(*args
, **kwargs
):
3492 """SetForegroundColour(self, Colour col) -> bool"""
3493 return _controls_
.ListCtrl_SetForegroundColour(*args
, **kwargs
)
3495 def SetBackgroundColour(*args
, **kwargs
):
3496 """SetBackgroundColour(self, Colour col) -> bool"""
3497 return _controls_
.ListCtrl_SetBackgroundColour(*args
, **kwargs
)
3499 def GetColumn(*args
, **kwargs
):
3500 """GetColumn(self, int col) -> ListItem"""
3501 val
= _controls_
.ListCtrl_GetColumn(*args
, **kwargs
)
3502 if val
is not None: val
.thisown
= 1
3505 def SetColumn(*args
, **kwargs
):
3506 """SetColumn(self, int col, ListItem item) -> bool"""
3507 return _controls_
.ListCtrl_SetColumn(*args
, **kwargs
)
3509 def GetColumnWidth(*args
, **kwargs
):
3510 """GetColumnWidth(self, int col) -> int"""
3511 return _controls_
.ListCtrl_GetColumnWidth(*args
, **kwargs
)
3513 def SetColumnWidth(*args
, **kwargs
):
3514 """SetColumnWidth(self, int col, int width) -> bool"""
3515 return _controls_
.ListCtrl_SetColumnWidth(*args
, **kwargs
)
3517 def GetCountPerPage(*args
, **kwargs
):
3518 """GetCountPerPage(self) -> int"""
3519 return _controls_
.ListCtrl_GetCountPerPage(*args
, **kwargs
)
3521 def GetViewRect(*args
, **kwargs
):
3522 """GetViewRect(self) -> Rect"""
3523 return _controls_
.ListCtrl_GetViewRect(*args
, **kwargs
)
3525 def GetEditControl(*args
, **kwargs
):
3526 """GetEditControl(self) -> TextCtrl"""
3527 return _controls_
.ListCtrl_GetEditControl(*args
, **kwargs
)
3529 def GetItem(*args
, **kwargs
):
3530 """GetItem(self, long itemId, int col=0) -> ListItem"""
3531 val
= _controls_
.ListCtrl_GetItem(*args
, **kwargs
)
3532 if val
is not None: val
.thisown
= 1
3535 def SetItem(*args
, **kwargs
):
3536 """SetItem(self, ListItem info) -> bool"""
3537 return _controls_
.ListCtrl_SetItem(*args
, **kwargs
)
3539 def SetStringItem(*args
, **kwargs
):
3540 """SetStringItem(self, long index, int col, String label, int imageId=-1) -> long"""
3541 return _controls_
.ListCtrl_SetStringItem(*args
, **kwargs
)
3543 def GetItemState(*args
, **kwargs
):
3544 """GetItemState(self, long item, long stateMask) -> int"""
3545 return _controls_
.ListCtrl_GetItemState(*args
, **kwargs
)
3547 def SetItemState(*args
, **kwargs
):
3548 """SetItemState(self, long item, long state, long stateMask) -> bool"""
3549 return _controls_
.ListCtrl_SetItemState(*args
, **kwargs
)
3551 def SetItemImage(*args
, **kwargs
):
3552 """SetItemImage(self, long item, int image, int selImage) -> bool"""
3553 return _controls_
.ListCtrl_SetItemImage(*args
, **kwargs
)
3555 def GetItemText(*args
, **kwargs
):
3556 """GetItemText(self, long item) -> String"""
3557 return _controls_
.ListCtrl_GetItemText(*args
, **kwargs
)
3559 def SetItemText(*args
, **kwargs
):
3560 """SetItemText(self, long item, String str)"""
3561 return _controls_
.ListCtrl_SetItemText(*args
, **kwargs
)
3563 def GetItemData(*args
, **kwargs
):
3564 """GetItemData(self, long item) -> long"""
3565 return _controls_
.ListCtrl_GetItemData(*args
, **kwargs
)
3567 def SetItemData(*args
, **kwargs
):
3568 """SetItemData(self, long item, long data) -> bool"""
3569 return _controls_
.ListCtrl_SetItemData(*args
, **kwargs
)
3571 def GetItemPosition(*args
, **kwargs
):
3572 """GetItemPosition(self, long item) -> Point"""
3573 return _controls_
.ListCtrl_GetItemPosition(*args
, **kwargs
)
3575 def GetItemRect(*args
, **kwargs
):
3576 """GetItemRect(self, long item, int code=LIST_RECT_BOUNDS) -> Rect"""
3577 return _controls_
.ListCtrl_GetItemRect(*args
, **kwargs
)
3579 def SetItemPosition(*args
, **kwargs
):
3580 """SetItemPosition(self, long item, Point pos) -> bool"""
3581 return _controls_
.ListCtrl_SetItemPosition(*args
, **kwargs
)
3583 def GetItemCount(*args
, **kwargs
):
3584 """GetItemCount(self) -> int"""
3585 return _controls_
.ListCtrl_GetItemCount(*args
, **kwargs
)
3587 def GetColumnCount(*args
, **kwargs
):
3588 """GetColumnCount(self) -> int"""
3589 return _controls_
.ListCtrl_GetColumnCount(*args
, **kwargs
)
3591 def GetItemSpacing(*args
, **kwargs
):
3592 """GetItemSpacing(self) -> Size"""
3593 return _controls_
.ListCtrl_GetItemSpacing(*args
, **kwargs
)
3595 def GetSelectedItemCount(*args
, **kwargs
):
3596 """GetSelectedItemCount(self) -> int"""
3597 return _controls_
.ListCtrl_GetSelectedItemCount(*args
, **kwargs
)
3599 def GetTextColour(*args
, **kwargs
):
3600 """GetTextColour(self) -> Colour"""
3601 return _controls_
.ListCtrl_GetTextColour(*args
, **kwargs
)
3603 def SetTextColour(*args
, **kwargs
):
3604 """SetTextColour(self, Colour col)"""
3605 return _controls_
.ListCtrl_SetTextColour(*args
, **kwargs
)
3607 def GetTopItem(*args
, **kwargs
):
3608 """GetTopItem(self) -> long"""
3609 return _controls_
.ListCtrl_GetTopItem(*args
, **kwargs
)
3611 def SetSingleStyle(*args
, **kwargs
):
3612 """SetSingleStyle(self, long style, bool add=True)"""
3613 return _controls_
.ListCtrl_SetSingleStyle(*args
, **kwargs
)
3615 def SetWindowStyleFlag(*args
, **kwargs
):
3617 SetWindowStyleFlag(self, long style)
3619 Sets the style of the window. Please note that some styles cannot
3620 be changed after the window creation and that Refresh() might
3621 need to be called after changing the others for the change to
3622 take place immediately.
3624 return _controls_
.ListCtrl_SetWindowStyleFlag(*args
, **kwargs
)
3626 def GetNextItem(*args
, **kwargs
):
3627 """GetNextItem(self, long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -> long"""
3628 return _controls_
.ListCtrl_GetNextItem(*args
, **kwargs
)
3630 def GetImageList(*args
, **kwargs
):
3631 """GetImageList(self, int which) -> ImageList"""
3632 return _controls_
.ListCtrl_GetImageList(*args
, **kwargs
)
3634 def SetImageList(*args
, **kwargs
):
3635 """SetImageList(self, ImageList imageList, int which)"""
3636 return _controls_
.ListCtrl_SetImageList(*args
, **kwargs
)
3638 def AssignImageList(*args
, **kwargs
):
3639 """AssignImageList(self, ImageList imageList, int which)"""
3640 return _controls_
.ListCtrl_AssignImageList(*args
, **kwargs
)
3642 def InReportView(*args
, **kwargs
):
3643 """InReportView(self) -> bool"""
3644 return _controls_
.ListCtrl_InReportView(*args
, **kwargs
)
3646 def IsVirtual(*args
, **kwargs
):
3647 """IsVirtual(self) -> bool"""
3648 return _controls_
.ListCtrl_IsVirtual(*args
, **kwargs
)
3650 def RefreshItem(*args
, **kwargs
):
3651 """RefreshItem(self, long item)"""
3652 return _controls_
.ListCtrl_RefreshItem(*args
, **kwargs
)
3654 def RefreshItems(*args
, **kwargs
):
3655 """RefreshItems(self, long itemFrom, long itemTo)"""
3656 return _controls_
.ListCtrl_RefreshItems(*args
, **kwargs
)
3658 def Arrange(*args
, **kwargs
):
3659 """Arrange(self, int flag=LIST_ALIGN_DEFAULT) -> bool"""
3660 return _controls_
.ListCtrl_Arrange(*args
, **kwargs
)
3662 def DeleteItem(*args
, **kwargs
):
3663 """DeleteItem(self, long item) -> bool"""
3664 return _controls_
.ListCtrl_DeleteItem(*args
, **kwargs
)
3666 def DeleteAllItems(*args
, **kwargs
):
3667 """DeleteAllItems(self) -> bool"""
3668 return _controls_
.ListCtrl_DeleteAllItems(*args
, **kwargs
)
3670 def DeleteColumn(*args
, **kwargs
):
3671 """DeleteColumn(self, int col) -> bool"""
3672 return _controls_
.ListCtrl_DeleteColumn(*args
, **kwargs
)
3674 def DeleteAllColumns(*args
, **kwargs
):
3675 """DeleteAllColumns(self) -> bool"""
3676 return _controls_
.ListCtrl_DeleteAllColumns(*args
, **kwargs
)
3678 def ClearAll(*args
, **kwargs
):
3679 """ClearAll(self)"""
3680 return _controls_
.ListCtrl_ClearAll(*args
, **kwargs
)
3682 def EditLabel(*args
, **kwargs
):
3683 """EditLabel(self, long item) -> TextCtrl"""
3684 return _controls_
.ListCtrl_EditLabel(*args
, **kwargs
)
3686 def EndEditLabel(*args
, **kwargs
):
3687 """EndEditLabel(self, bool cancel) -> bool"""
3688 return _controls_
.ListCtrl_EndEditLabel(*args
, **kwargs
)
3690 def EnsureVisible(*args
, **kwargs
):
3691 """EnsureVisible(self, long item) -> bool"""
3692 return _controls_
.ListCtrl_EnsureVisible(*args
, **kwargs
)
3694 def FindItem(*args
, **kwargs
):
3695 """FindItem(self, long start, String str, bool partial=False) -> long"""
3696 return _controls_
.ListCtrl_FindItem(*args
, **kwargs
)
3698 def FindItemData(*args
, **kwargs
):
3699 """FindItemData(self, long start, long data) -> long"""
3700 return _controls_
.ListCtrl_FindItemData(*args
, **kwargs
)
3702 def FindItemAtPos(*args
, **kwargs
):
3703 """FindItemAtPos(self, long start, Point pt, int direction) -> long"""
3704 return _controls_
.ListCtrl_FindItemAtPos(*args
, **kwargs
)
3706 def HitTest(*args
, **kwargs
):
3708 HitTest(Point point) -> (item, where)
3710 Determines which item (if any) is at the specified point,
3711 giving details in the second return value (see wxLIST_HITTEST_... flags.)
3713 return _controls_
.ListCtrl_HitTest(*args
, **kwargs
)
3715 def InsertItem(*args
, **kwargs
):
3716 """InsertItem(self, ListItem info) -> long"""
3717 return _controls_
.ListCtrl_InsertItem(*args
, **kwargs
)
3719 def InsertStringItem(*args
, **kwargs
):
3720 """InsertStringItem(self, long index, String label) -> long"""
3721 return _controls_
.ListCtrl_InsertStringItem(*args
, **kwargs
)
3723 def InsertImageItem(*args
, **kwargs
):
3724 """InsertImageItem(self, long index, int imageIndex) -> long"""
3725 return _controls_
.ListCtrl_InsertImageItem(*args
, **kwargs
)
3727 def InsertImageStringItem(*args
, **kwargs
):
3728 """InsertImageStringItem(self, long index, String label, int imageIndex) -> long"""
3729 return _controls_
.ListCtrl_InsertImageStringItem(*args
, **kwargs
)
3731 def InsertColumnInfo(*args
, **kwargs
):
3732 """InsertColumnInfo(self, long col, ListItem info) -> long"""
3733 return _controls_
.ListCtrl_InsertColumnInfo(*args
, **kwargs
)
3735 def InsertColumn(*args
, **kwargs
):
3737 InsertColumn(self, long col, String heading, int format=LIST_FORMAT_LEFT,
3738 int width=-1) -> long
3740 return _controls_
.ListCtrl_InsertColumn(*args
, **kwargs
)
3742 def SetItemCount(*args
, **kwargs
):
3743 """SetItemCount(self, long count)"""
3744 return _controls_
.ListCtrl_SetItemCount(*args
, **kwargs
)
3746 def ScrollList(*args
, **kwargs
):
3747 """ScrollList(self, int dx, int dy) -> bool"""
3748 return _controls_
.ListCtrl_ScrollList(*args
, **kwargs
)
3750 def SetItemTextColour(*args
, **kwargs
):
3751 """SetItemTextColour(self, long item, Colour col)"""
3752 return _controls_
.ListCtrl_SetItemTextColour(*args
, **kwargs
)
3754 def GetItemTextColour(*args
, **kwargs
):
3755 """GetItemTextColour(self, long item) -> Colour"""
3756 return _controls_
.ListCtrl_GetItemTextColour(*args
, **kwargs
)
3758 def SetItemBackgroundColour(*args
, **kwargs
):
3759 """SetItemBackgroundColour(self, long item, Colour col)"""
3760 return _controls_
.ListCtrl_SetItemBackgroundColour(*args
, **kwargs
)
3762 def GetItemBackgroundColour(*args
, **kwargs
):
3763 """GetItemBackgroundColour(self, long item) -> Colour"""
3764 return _controls_
.ListCtrl_GetItemBackgroundColour(*args
, **kwargs
)
3768 def Select(self
, idx
, on
=1):
3769 '''[de]select an item'''
3770 if on
: state
= wx
.LIST_STATE_SELECTED
3772 self
.SetItemState(idx
, state
, wx
.LIST_STATE_SELECTED
)
3774 def Focus(self
, idx
):
3775 '''Focus and show the given item'''
3776 self
.SetItemState(idx
, wx
.LIST_STATE_FOCUSED
, wx
.LIST_STATE_FOCUSED
)
3777 self
.EnsureVisible(idx
)
3779 def GetFocusedItem(self
):
3780 '''get the currently focused item or -1 if none'''
3781 return self
.GetNextItem(-1, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_FOCUSED
)
3783 def GetFirstSelected(self
, *args
):
3784 '''return first selected item, or -1 when none'''
3785 return self
.GetNextSelected(-1)
3787 def GetNextSelected(self
, item
):
3788 '''return subsequent selected items, or -1 when no more'''
3789 return self
.GetNextItem(item
, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_SELECTED
)
3791 def IsSelected(self
, idx
):
3792 '''return True if the item is selected'''
3793 return self
.GetItemState(idx
, wx
.LIST_STATE_SELECTED
) != 0
3795 def SetColumnImage(self
, col
, image
):
3796 item
= self
.GetColumn(col
)
3797 # preserve all other attributes too
3798 item
.SetMask( wx
.LIST_MASK_STATE |
3800 wx
.LIST_MASK_IMAGE |
3803 wx
.LIST_MASK_WIDTH |
3804 wx
.LIST_MASK_FORMAT
)
3805 item
.SetImage(image
)
3806 self
.SetColumn(col
, item
)
3808 def ClearColumnImage(self
, col
):
3809 self
.SetColumnImage(col
, -1)
3811 def Append(self
, entry
):
3812 '''Append an item to the list control. The entry parameter should be a
3813 sequence with an item for each column'''
3819 pos
= self
.GetItemCount()
3820 self
.InsertStringItem(pos
, cvtfunc(entry
[0]))
3821 for i
in range(1, len(entry
)):
3822 self
.SetStringItem(pos
, i
, cvtfunc(entry
[i
]))
3825 def SortItems(*args
, **kwargs
):
3826 """SortItems(self, PyObject func) -> bool"""
3827 return _controls_
.ListCtrl_SortItems(*args
, **kwargs
)
3829 def GetMainWindow(*args
, **kwargs
):
3830 """GetMainWindow(self) -> Window"""
3831 return _controls_
.ListCtrl_GetMainWindow(*args
, **kwargs
)
3833 def GetClassDefaultAttributes(*args
, **kwargs
):
3835 ListCtrl.GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3837 Get the default attributes for this class. This is useful if
3838 you want to use the same font or colour in your own control as
3839 in a standard control -- which is a much better idea than hard
3840 coding specific colours or fonts which might look completely out
3841 of place on the users system, especially if it uses themes.
3843 The variant parameter is only relevant under Mac currently and is
3844 ignore under other platforms. Under Mac, it will change the size of the
3845 returned font. See SetWindowVariant for more about this.
3847 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
3849 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3851 class ListCtrlPtr(ListCtrl
):
3852 def __init__(self
, this
):
3854 if not hasattr(self
,"thisown"): self
.thisown
= 0
3855 self
.__class
__ = ListCtrl
3856 _controls_
.ListCtrl_swigregister(ListCtrlPtr
)
3858 def PreListCtrl(*args
, **kwargs
):
3859 """PreListCtrl() -> ListCtrl"""
3860 val
= _controls_
.new_PreListCtrl(*args
, **kwargs
)
3864 def ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
3866 ListCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3868 Get the default attributes for this class. This is useful if
3869 you want to use the same font or colour in your own control as
3870 in a standard control -- which is a much better idea than hard
3871 coding specific colours or fonts which might look completely out
3872 of place on the users system, especially if it uses themes.
3874 The variant parameter is only relevant under Mac currently and is
3875 ignore under other platforms. Under Mac, it will change the size of the
3876 returned font. See SetWindowVariant for more about this.
3878 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
3880 #---------------------------------------------------------------------------
3882 class ListView(ListCtrl
):
3884 return "<%s.%s; proxy of C++ wxListView instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3885 def __init__(self
, *args
, **kwargs
):
3887 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3888 Size size=DefaultSize, long style=LC_REPORT,
3889 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListView
3891 newobj
= _controls_
.new_ListView(*args
, **kwargs
)
3892 self
.this
= newobj
.this
3895 self
._setOORInfo
(self
)
3897 def Create(*args
, **kwargs
):
3899 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3900 Size size=DefaultSize, long style=LC_REPORT,
3901 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
3903 Do the 2nd phase and create the GUI control.
3905 return _controls_
.ListView_Create(*args
, **kwargs
)
3907 def Select(*args
, **kwargs
):
3908 """Select(self, long n, bool on=True)"""
3909 return _controls_
.ListView_Select(*args
, **kwargs
)
3911 def Focus(*args
, **kwargs
):
3912 """Focus(self, long index)"""
3913 return _controls_
.ListView_Focus(*args
, **kwargs
)
3915 def GetFocusedItem(*args
, **kwargs
):
3916 """GetFocusedItem(self) -> long"""
3917 return _controls_
.ListView_GetFocusedItem(*args
, **kwargs
)
3919 def GetNextSelected(*args
, **kwargs
):
3920 """GetNextSelected(self, long item) -> long"""
3921 return _controls_
.ListView_GetNextSelected(*args
, **kwargs
)
3923 def GetFirstSelected(*args
, **kwargs
):
3924 """GetFirstSelected(self) -> long"""
3925 return _controls_
.ListView_GetFirstSelected(*args
, **kwargs
)
3927 def IsSelected(*args
, **kwargs
):
3928 """IsSelected(self, long index) -> bool"""
3929 return _controls_
.ListView_IsSelected(*args
, **kwargs
)
3931 def SetColumnImage(*args
, **kwargs
):
3932 """SetColumnImage(self, int col, int image)"""
3933 return _controls_
.ListView_SetColumnImage(*args
, **kwargs
)
3935 def ClearColumnImage(*args
, **kwargs
):
3936 """ClearColumnImage(self, int col)"""
3937 return _controls_
.ListView_ClearColumnImage(*args
, **kwargs
)
3940 class ListViewPtr(ListView
):
3941 def __init__(self
, this
):
3943 if not hasattr(self
,"thisown"): self
.thisown
= 0
3944 self
.__class
__ = ListView
3945 _controls_
.ListView_swigregister(ListViewPtr
)
3947 def PreListView(*args
, **kwargs
):
3948 """PreListView() -> ListView"""
3949 val
= _controls_
.new_PreListView(*args
, **kwargs
)
3953 #---------------------------------------------------------------------------
3955 TR_NO_BUTTONS
= _controls_
.TR_NO_BUTTONS
3956 TR_HAS_BUTTONS
= _controls_
.TR_HAS_BUTTONS
3957 TR_NO_LINES
= _controls_
.TR_NO_LINES
3958 TR_LINES_AT_ROOT
= _controls_
.TR_LINES_AT_ROOT
3959 TR_SINGLE
= _controls_
.TR_SINGLE
3960 TR_MULTIPLE
= _controls_
.TR_MULTIPLE
3961 TR_EXTENDED
= _controls_
.TR_EXTENDED
3962 TR_HAS_VARIABLE_ROW_HEIGHT
= _controls_
.TR_HAS_VARIABLE_ROW_HEIGHT
3963 TR_EDIT_LABELS
= _controls_
.TR_EDIT_LABELS
3964 TR_HIDE_ROOT
= _controls_
.TR_HIDE_ROOT
3965 TR_ROW_LINES
= _controls_
.TR_ROW_LINES
3966 TR_FULL_ROW_HIGHLIGHT
= _controls_
.TR_FULL_ROW_HIGHLIGHT
3967 TR_DEFAULT_STYLE
= _controls_
.TR_DEFAULT_STYLE
3968 TR_TWIST_BUTTONS
= _controls_
.TR_TWIST_BUTTONS
3969 TR_MAC_BUTTONS
= _controls_
.TR_MAC_BUTTONS
3970 TR_AQUA_BUTTONS
= _controls_
.TR_AQUA_BUTTONS
3971 TreeItemIcon_Normal
= _controls_
.TreeItemIcon_Normal
3972 TreeItemIcon_Selected
= _controls_
.TreeItemIcon_Selected
3973 TreeItemIcon_Expanded
= _controls_
.TreeItemIcon_Expanded
3974 TreeItemIcon_SelectedExpanded
= _controls_
.TreeItemIcon_SelectedExpanded
3975 TreeItemIcon_Max
= _controls_
.TreeItemIcon_Max
3976 TREE_HITTEST_ABOVE
= _controls_
.TREE_HITTEST_ABOVE
3977 TREE_HITTEST_BELOW
= _controls_
.TREE_HITTEST_BELOW
3978 TREE_HITTEST_NOWHERE
= _controls_
.TREE_HITTEST_NOWHERE
3979 TREE_HITTEST_ONITEMBUTTON
= _controls_
.TREE_HITTEST_ONITEMBUTTON
3980 TREE_HITTEST_ONITEMICON
= _controls_
.TREE_HITTEST_ONITEMICON
3981 TREE_HITTEST_ONITEMINDENT
= _controls_
.TREE_HITTEST_ONITEMINDENT
3982 TREE_HITTEST_ONITEMLABEL
= _controls_
.TREE_HITTEST_ONITEMLABEL
3983 TREE_HITTEST_ONITEMRIGHT
= _controls_
.TREE_HITTEST_ONITEMRIGHT
3984 TREE_HITTEST_ONITEMSTATEICON
= _controls_
.TREE_HITTEST_ONITEMSTATEICON
3985 TREE_HITTEST_TOLEFT
= _controls_
.TREE_HITTEST_TOLEFT
3986 TREE_HITTEST_TORIGHT
= _controls_
.TREE_HITTEST_TORIGHT
3987 TREE_HITTEST_ONITEMUPPERPART
= _controls_
.TREE_HITTEST_ONITEMUPPERPART
3988 TREE_HITTEST_ONITEMLOWERPART
= _controls_
.TREE_HITTEST_ONITEMLOWERPART
3989 TREE_HITTEST_ONITEM
= _controls_
.TREE_HITTEST_ONITEM
3990 #---------------------------------------------------------------------------
3992 class TreeItemId(object):
3994 return "<%s.%s; proxy of C++ wxTreeItemId instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3995 def __init__(self
, *args
, **kwargs
):
3996 """__init__(self) -> TreeItemId"""
3997 newobj
= _controls_
.new_TreeItemId(*args
, **kwargs
)
3998 self
.this
= newobj
.this
4001 def __del__(self
, destroy
=_controls_
.delete_TreeItemId
):
4004 if self
.thisown
: destroy(self
)
4007 def IsOk(*args
, **kwargs
):
4008 """IsOk(self) -> bool"""
4009 return _controls_
.TreeItemId_IsOk(*args
, **kwargs
)
4011 def __eq__(*args
, **kwargs
):
4012 """__eq__(self, TreeItemId other) -> bool"""
4013 return _controls_
.TreeItemId___eq__(*args
, **kwargs
)
4015 def __ne__(*args
, **kwargs
):
4016 """__ne__(self, TreeItemId other) -> bool"""
4017 return _controls_
.TreeItemId___ne__(*args
, **kwargs
)
4019 m_pItem
= property(_controls_
.TreeItemId_m_pItem_get
, _controls_
.TreeItemId_m_pItem_set
)
4021 def __nonzero__(self
): return self
.IsOk()
4023 class TreeItemIdPtr(TreeItemId
):
4024 def __init__(self
, this
):
4026 if not hasattr(self
,"thisown"): self
.thisown
= 0
4027 self
.__class
__ = TreeItemId
4028 _controls_
.TreeItemId_swigregister(TreeItemIdPtr
)
4029 TreeCtrlNameStr
= cvar
.TreeCtrlNameStr
4031 class TreeItemData(object):
4033 return "<%s.%s; proxy of C++ wxPyTreeItemData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4034 def __init__(self
, *args
, **kwargs
):
4035 """__init__(self, PyObject obj=None) -> TreeItemData"""
4036 newobj
= _controls_
.new_TreeItemData(*args
, **kwargs
)
4037 self
.this
= newobj
.this
4040 def GetData(*args
, **kwargs
):
4041 """GetData(self) -> PyObject"""
4042 return _controls_
.TreeItemData_GetData(*args
, **kwargs
)
4044 def SetData(*args
, **kwargs
):
4045 """SetData(self, PyObject obj)"""
4046 return _controls_
.TreeItemData_SetData(*args
, **kwargs
)
4048 def GetId(*args
, **kwargs
):
4049 """GetId(self) -> TreeItemId"""
4050 return _controls_
.TreeItemData_GetId(*args
, **kwargs
)
4052 def SetId(*args
, **kwargs
):
4053 """SetId(self, TreeItemId id)"""
4054 return _controls_
.TreeItemData_SetId(*args
, **kwargs
)
4056 def Destroy(*args
, **kwargs
):
4058 return _controls_
.TreeItemData_Destroy(*args
, **kwargs
)
4061 class TreeItemDataPtr(TreeItemData
):
4062 def __init__(self
, this
):
4064 if not hasattr(self
,"thisown"): self
.thisown
= 0
4065 self
.__class
__ = TreeItemData
4066 _controls_
.TreeItemData_swigregister(TreeItemDataPtr
)
4068 #---------------------------------------------------------------------------
4070 wxEVT_COMMAND_TREE_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_DRAG
4071 wxEVT_COMMAND_TREE_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_RDRAG
4072 wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
4073 wxEVT_COMMAND_TREE_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_END_LABEL_EDIT
4074 wxEVT_COMMAND_TREE_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_TREE_DELETE_ITEM
4075 wxEVT_COMMAND_TREE_GET_INFO
= _controls_
.wxEVT_COMMAND_TREE_GET_INFO
4076 wxEVT_COMMAND_TREE_SET_INFO
= _controls_
.wxEVT_COMMAND_TREE_SET_INFO
4077 wxEVT_COMMAND_TREE_ITEM_EXPANDED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDED
4078 wxEVT_COMMAND_TREE_ITEM_EXPANDING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDING
4079 wxEVT_COMMAND_TREE_ITEM_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSED
4080 wxEVT_COMMAND_TREE_ITEM_COLLAPSING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSING
4081 wxEVT_COMMAND_TREE_SEL_CHANGED
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGED
4082 wxEVT_COMMAND_TREE_SEL_CHANGING
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGING
4083 wxEVT_COMMAND_TREE_KEY_DOWN
= _controls_
.wxEVT_COMMAND_TREE_KEY_DOWN
4084 wxEVT_COMMAND_TREE_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_ACTIVATED
4085 wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
4086 wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
4087 wxEVT_COMMAND_TREE_END_DRAG
= _controls_
.wxEVT_COMMAND_TREE_END_DRAG
4088 wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
4089 wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
= _controls_
.wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
4090 EVT_TREE_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG
, 1)
4091 EVT_TREE_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG
, 1)
4092 EVT_TREE_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, 1)
4093 EVT_TREE_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, 1)
4094 EVT_TREE_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM
, 1)
4095 EVT_TREE_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO
, 1)
4096 EVT_TREE_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO
, 1)
4097 EVT_TREE_ITEM_EXPANDED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED
, 1)
4098 EVT_TREE_ITEM_EXPANDING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, 1)
4099 EVT_TREE_ITEM_COLLAPSED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, 1)
4100 EVT_TREE_ITEM_COLLAPSING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, 1)
4101 EVT_TREE_SEL_CHANGED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED
, 1)
4102 EVT_TREE_SEL_CHANGING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING
, 1)
4103 EVT_TREE_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN
, 1)
4104 EVT_TREE_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, 1)
4105 EVT_TREE_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, 1)
4106 EVT_TREE_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, 1)
4107 EVT_TREE_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG
, 1)
4108 EVT_TREE_STATE_IMAGE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
, 1)
4109 EVT_TREE_ITEM_GETTOOLTIP
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
, 1)
4111 class TreeEvent(_core
.NotifyEvent
):
4113 return "<%s.%s; proxy of C++ wxTreeEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4114 def __init__(self
, *args
, **kwargs
):
4115 """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> TreeEvent"""
4116 newobj
= _controls_
.new_TreeEvent(*args
, **kwargs
)
4117 self
.this
= newobj
.this
4120 def GetItem(*args
, **kwargs
):
4121 """GetItem(self) -> TreeItemId"""
4122 return _controls_
.TreeEvent_GetItem(*args
, **kwargs
)
4124 def SetItem(*args
, **kwargs
):
4125 """SetItem(self, TreeItemId item)"""
4126 return _controls_
.TreeEvent_SetItem(*args
, **kwargs
)
4128 def GetOldItem(*args
, **kwargs
):
4129 """GetOldItem(self) -> TreeItemId"""
4130 return _controls_
.TreeEvent_GetOldItem(*args
, **kwargs
)
4132 def SetOldItem(*args
, **kwargs
):
4133 """SetOldItem(self, TreeItemId item)"""
4134 return _controls_
.TreeEvent_SetOldItem(*args
, **kwargs
)
4136 def GetPoint(*args
, **kwargs
):
4137 """GetPoint(self) -> Point"""
4138 return _controls_
.TreeEvent_GetPoint(*args
, **kwargs
)
4140 def SetPoint(*args
, **kwargs
):
4141 """SetPoint(self, Point pt)"""
4142 return _controls_
.TreeEvent_SetPoint(*args
, **kwargs
)
4144 def GetKeyEvent(*args
, **kwargs
):
4145 """GetKeyEvent(self) -> KeyEvent"""
4146 return _controls_
.TreeEvent_GetKeyEvent(*args
, **kwargs
)
4148 def GetKeyCode(*args
, **kwargs
):
4149 """GetKeyCode(self) -> int"""
4150 return _controls_
.TreeEvent_GetKeyCode(*args
, **kwargs
)
4152 def SetKeyEvent(*args
, **kwargs
):
4153 """SetKeyEvent(self, KeyEvent evt)"""
4154 return _controls_
.TreeEvent_SetKeyEvent(*args
, **kwargs
)
4156 def GetLabel(*args
, **kwargs
):
4157 """GetLabel(self) -> String"""
4158 return _controls_
.TreeEvent_GetLabel(*args
, **kwargs
)
4160 def SetLabel(*args
, **kwargs
):
4161 """SetLabel(self, String label)"""
4162 return _controls_
.TreeEvent_SetLabel(*args
, **kwargs
)
4164 def IsEditCancelled(*args
, **kwargs
):
4165 """IsEditCancelled(self) -> bool"""
4166 return _controls_
.TreeEvent_IsEditCancelled(*args
, **kwargs
)
4168 def SetEditCanceled(*args
, **kwargs
):
4169 """SetEditCanceled(self, bool editCancelled)"""
4170 return _controls_
.TreeEvent_SetEditCanceled(*args
, **kwargs
)
4172 def SetToolTip(*args
, **kwargs
):
4173 """SetToolTip(self, String toolTip)"""
4174 return _controls_
.TreeEvent_SetToolTip(*args
, **kwargs
)
4177 class TreeEventPtr(TreeEvent
):
4178 def __init__(self
, this
):
4180 if not hasattr(self
,"thisown"): self
.thisown
= 0
4181 self
.__class
__ = TreeEvent
4182 _controls_
.TreeEvent_swigregister(TreeEventPtr
)
4184 #---------------------------------------------------------------------------
4186 class TreeCtrl(_core
.Control
):
4188 return "<%s.%s; proxy of C++ wxPyTreeCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4189 def __init__(self
, *args
, **kwargs
):
4191 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4192 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
4193 Validator validator=DefaultValidator,
4194 String name=TreeCtrlNameStr) -> TreeCtrl
4196 newobj
= _controls_
.new_TreeCtrl(*args
, **kwargs
)
4197 self
.this
= newobj
.this
4200 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, TreeCtrl
)
4202 def Create(*args
, **kwargs
):
4204 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4205 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
4206 Validator validator=DefaultValidator,
4207 String name=TreeCtrlNameStr) -> bool
4209 Do the 2nd phase and create the GUI control.
4211 return _controls_
.TreeCtrl_Create(*args
, **kwargs
)
4213 def _setCallbackInfo(*args
, **kwargs
):
4214 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4215 return _controls_
.TreeCtrl__setCallbackInfo(*args
, **kwargs
)
4217 def GetCount(*args
, **kwargs
):
4218 """GetCount(self) -> size_t"""
4219 return _controls_
.TreeCtrl_GetCount(*args
, **kwargs
)
4221 def GetIndent(*args
, **kwargs
):
4222 """GetIndent(self) -> unsigned int"""
4223 return _controls_
.TreeCtrl_GetIndent(*args
, **kwargs
)
4225 def SetIndent(*args
, **kwargs
):
4226 """SetIndent(self, unsigned int indent)"""
4227 return _controls_
.TreeCtrl_SetIndent(*args
, **kwargs
)
4229 def GetSpacing(*args
, **kwargs
):
4230 """GetSpacing(self) -> unsigned int"""
4231 return _controls_
.TreeCtrl_GetSpacing(*args
, **kwargs
)
4233 def SetSpacing(*args
, **kwargs
):
4234 """SetSpacing(self, unsigned int spacing)"""
4235 return _controls_
.TreeCtrl_SetSpacing(*args
, **kwargs
)
4237 def GetImageList(*args
, **kwargs
):
4238 """GetImageList(self) -> ImageList"""
4239 return _controls_
.TreeCtrl_GetImageList(*args
, **kwargs
)
4241 def GetStateImageList(*args
, **kwargs
):
4242 """GetStateImageList(self) -> ImageList"""
4243 return _controls_
.TreeCtrl_GetStateImageList(*args
, **kwargs
)
4245 def SetImageList(*args
, **kwargs
):
4246 """SetImageList(self, ImageList imageList)"""
4247 return _controls_
.TreeCtrl_SetImageList(*args
, **kwargs
)
4249 def SetStateImageList(*args
, **kwargs
):
4250 """SetStateImageList(self, ImageList imageList)"""
4251 return _controls_
.TreeCtrl_SetStateImageList(*args
, **kwargs
)
4253 def AssignImageList(*args
, **kwargs
):
4254 """AssignImageList(self, ImageList imageList)"""
4255 return _controls_
.TreeCtrl_AssignImageList(*args
, **kwargs
)
4257 def AssignStateImageList(*args
, **kwargs
):
4258 """AssignStateImageList(self, ImageList imageList)"""
4259 return _controls_
.TreeCtrl_AssignStateImageList(*args
, **kwargs
)
4261 def GetItemText(*args
, **kwargs
):
4262 """GetItemText(self, TreeItemId item) -> String"""
4263 return _controls_
.TreeCtrl_GetItemText(*args
, **kwargs
)
4265 def GetItemImage(*args
, **kwargs
):
4266 """GetItemImage(self, TreeItemId item, int which=TreeItemIcon_Normal) -> int"""
4267 return _controls_
.TreeCtrl_GetItemImage(*args
, **kwargs
)
4269 def GetItemData(*args
, **kwargs
):
4270 """GetItemData(self, TreeItemId item) -> TreeItemData"""
4271 return _controls_
.TreeCtrl_GetItemData(*args
, **kwargs
)
4273 def GetItemPyData(*args
, **kwargs
):
4274 """GetItemPyData(self, TreeItemId item) -> PyObject"""
4275 return _controls_
.TreeCtrl_GetItemPyData(*args
, **kwargs
)
4277 GetPyData
= GetItemPyData
4278 def GetItemTextColour(*args
, **kwargs
):
4279 """GetItemTextColour(self, TreeItemId item) -> Colour"""
4280 return _controls_
.TreeCtrl_GetItemTextColour(*args
, **kwargs
)
4282 def GetItemBackgroundColour(*args
, **kwargs
):
4283 """GetItemBackgroundColour(self, TreeItemId item) -> Colour"""
4284 return _controls_
.TreeCtrl_GetItemBackgroundColour(*args
, **kwargs
)
4286 def GetItemFont(*args
, **kwargs
):
4287 """GetItemFont(self, TreeItemId item) -> Font"""
4288 return _controls_
.TreeCtrl_GetItemFont(*args
, **kwargs
)
4290 def SetItemText(*args
, **kwargs
):
4291 """SetItemText(self, TreeItemId item, String text)"""
4292 return _controls_
.TreeCtrl_SetItemText(*args
, **kwargs
)
4294 def SetItemImage(*args
, **kwargs
):
4295 """SetItemImage(self, TreeItemId item, int image, int which=TreeItemIcon_Normal)"""
4296 return _controls_
.TreeCtrl_SetItemImage(*args
, **kwargs
)
4298 def SetItemData(*args
, **kwargs
):
4299 """SetItemData(self, TreeItemId item, TreeItemData data)"""
4300 return _controls_
.TreeCtrl_SetItemData(*args
, **kwargs
)
4302 def SetItemPyData(*args
, **kwargs
):
4303 """SetItemPyData(self, TreeItemId item, PyObject obj)"""
4304 return _controls_
.TreeCtrl_SetItemPyData(*args
, **kwargs
)
4306 SetPyData
= SetItemPyData
4307 def SetItemHasChildren(*args
, **kwargs
):
4308 """SetItemHasChildren(self, TreeItemId item, bool has=True)"""
4309 return _controls_
.TreeCtrl_SetItemHasChildren(*args
, **kwargs
)
4311 def SetItemBold(*args
, **kwargs
):
4312 """SetItemBold(self, TreeItemId item, bool bold=True)"""
4313 return _controls_
.TreeCtrl_SetItemBold(*args
, **kwargs
)
4315 def SetItemDropHighlight(*args
, **kwargs
):
4316 """SetItemDropHighlight(self, TreeItemId item, bool highlight=True)"""
4317 return _controls_
.TreeCtrl_SetItemDropHighlight(*args
, **kwargs
)
4319 def SetItemTextColour(*args
, **kwargs
):
4320 """SetItemTextColour(self, TreeItemId item, Colour col)"""
4321 return _controls_
.TreeCtrl_SetItemTextColour(*args
, **kwargs
)
4323 def SetItemBackgroundColour(*args
, **kwargs
):
4324 """SetItemBackgroundColour(self, TreeItemId item, Colour col)"""
4325 return _controls_
.TreeCtrl_SetItemBackgroundColour(*args
, **kwargs
)
4327 def SetItemFont(*args
, **kwargs
):
4328 """SetItemFont(self, TreeItemId item, Font font)"""
4329 return _controls_
.TreeCtrl_SetItemFont(*args
, **kwargs
)
4331 def IsVisible(*args
, **kwargs
):
4332 """IsVisible(self, TreeItemId item) -> bool"""
4333 return _controls_
.TreeCtrl_IsVisible(*args
, **kwargs
)
4335 def ItemHasChildren(*args
, **kwargs
):
4336 """ItemHasChildren(self, TreeItemId item) -> bool"""
4337 return _controls_
.TreeCtrl_ItemHasChildren(*args
, **kwargs
)
4339 def IsExpanded(*args
, **kwargs
):
4340 """IsExpanded(self, TreeItemId item) -> bool"""
4341 return _controls_
.TreeCtrl_IsExpanded(*args
, **kwargs
)
4343 def IsSelected(*args
, **kwargs
):
4344 """IsSelected(self, TreeItemId item) -> bool"""
4345 return _controls_
.TreeCtrl_IsSelected(*args
, **kwargs
)
4347 def IsBold(*args
, **kwargs
):
4348 """IsBold(self, TreeItemId item) -> bool"""
4349 return _controls_
.TreeCtrl_IsBold(*args
, **kwargs
)
4351 def GetChildrenCount(*args
, **kwargs
):
4352 """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t"""
4353 return _controls_
.TreeCtrl_GetChildrenCount(*args
, **kwargs
)
4355 def GetRootItem(*args
, **kwargs
):
4356 """GetRootItem(self) -> TreeItemId"""
4357 return _controls_
.TreeCtrl_GetRootItem(*args
, **kwargs
)
4359 def GetSelection(*args
, **kwargs
):
4360 """GetSelection(self) -> TreeItemId"""
4361 return _controls_
.TreeCtrl_GetSelection(*args
, **kwargs
)
4363 def GetSelections(*args
, **kwargs
):
4364 """GetSelections(self) -> PyObject"""
4365 return _controls_
.TreeCtrl_GetSelections(*args
, **kwargs
)
4367 def GetItemParent(*args
, **kwargs
):
4368 """GetItemParent(self, TreeItemId item) -> TreeItemId"""
4369 return _controls_
.TreeCtrl_GetItemParent(*args
, **kwargs
)
4371 def GetFirstChild(*args
, **kwargs
):
4372 """GetFirstChild(self, TreeItemId item) -> PyObject"""
4373 return _controls_
.TreeCtrl_GetFirstChild(*args
, **kwargs
)
4375 def GetNextChild(*args
, **kwargs
):
4376 """GetNextChild(self, TreeItemId item, void cookie) -> PyObject"""
4377 return _controls_
.TreeCtrl_GetNextChild(*args
, **kwargs
)
4379 def GetLastChild(*args
, **kwargs
):
4380 """GetLastChild(self, TreeItemId item) -> TreeItemId"""
4381 return _controls_
.TreeCtrl_GetLastChild(*args
, **kwargs
)
4383 def GetNextSibling(*args
, **kwargs
):
4384 """GetNextSibling(self, TreeItemId item) -> TreeItemId"""
4385 return _controls_
.TreeCtrl_GetNextSibling(*args
, **kwargs
)
4387 def GetPrevSibling(*args
, **kwargs
):
4388 """GetPrevSibling(self, TreeItemId item) -> TreeItemId"""
4389 return _controls_
.TreeCtrl_GetPrevSibling(*args
, **kwargs
)
4391 def GetFirstVisibleItem(*args
, **kwargs
):
4392 """GetFirstVisibleItem(self) -> TreeItemId"""
4393 return _controls_
.TreeCtrl_GetFirstVisibleItem(*args
, **kwargs
)
4395 def GetNextVisible(*args
, **kwargs
):
4396 """GetNextVisible(self, TreeItemId item) -> TreeItemId"""
4397 return _controls_
.TreeCtrl_GetNextVisible(*args
, **kwargs
)
4399 def GetPrevVisible(*args
, **kwargs
):
4400 """GetPrevVisible(self, TreeItemId item) -> TreeItemId"""
4401 return _controls_
.TreeCtrl_GetPrevVisible(*args
, **kwargs
)
4403 def AddRoot(*args
, **kwargs
):
4404 """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId"""
4405 return _controls_
.TreeCtrl_AddRoot(*args
, **kwargs
)
4407 def PrependItem(*args
, **kwargs
):
4409 PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
4410 TreeItemData data=None) -> TreeItemId
4412 return _controls_
.TreeCtrl_PrependItem(*args
, **kwargs
)
4414 def InsertItem(*args
, **kwargs
):
4416 InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text,
4417 int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
4419 return _controls_
.TreeCtrl_InsertItem(*args
, **kwargs
)
4421 def InsertItemBefore(*args
, **kwargs
):
4423 InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1,
4424 int selectedImage=-1, TreeItemData data=None) -> TreeItemId
4426 return _controls_
.TreeCtrl_InsertItemBefore(*args
, **kwargs
)
4428 def AppendItem(*args
, **kwargs
):
4430 AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
4431 TreeItemData data=None) -> TreeItemId
4433 return _controls_
.TreeCtrl_AppendItem(*args
, **kwargs
)
4435 def Delete(*args
, **kwargs
):
4436 """Delete(self, TreeItemId item)"""
4437 return _controls_
.TreeCtrl_Delete(*args
, **kwargs
)
4439 def DeleteChildren(*args
, **kwargs
):
4440 """DeleteChildren(self, TreeItemId item)"""
4441 return _controls_
.TreeCtrl_DeleteChildren(*args
, **kwargs
)
4443 def DeleteAllItems(*args
, **kwargs
):
4444 """DeleteAllItems(self)"""
4445 return _controls_
.TreeCtrl_DeleteAllItems(*args
, **kwargs
)
4447 def Expand(*args
, **kwargs
):
4448 """Expand(self, TreeItemId item)"""
4449 return _controls_
.TreeCtrl_Expand(*args
, **kwargs
)
4451 def Collapse(*args
, **kwargs
):
4452 """Collapse(self, TreeItemId item)"""
4453 return _controls_
.TreeCtrl_Collapse(*args
, **kwargs
)
4455 def CollapseAndReset(*args
, **kwargs
):
4456 """CollapseAndReset(self, TreeItemId item)"""
4457 return _controls_
.TreeCtrl_CollapseAndReset(*args
, **kwargs
)
4459 def Toggle(*args
, **kwargs
):
4460 """Toggle(self, TreeItemId item)"""
4461 return _controls_
.TreeCtrl_Toggle(*args
, **kwargs
)
4463 def Unselect(*args
, **kwargs
):
4464 """Unselect(self)"""
4465 return _controls_
.TreeCtrl_Unselect(*args
, **kwargs
)
4467 def UnselectItem(*args
, **kwargs
):
4468 """UnselectItem(self, TreeItemId item)"""
4469 return _controls_
.TreeCtrl_UnselectItem(*args
, **kwargs
)
4471 def UnselectAll(*args
, **kwargs
):
4472 """UnselectAll(self)"""
4473 return _controls_
.TreeCtrl_UnselectAll(*args
, **kwargs
)
4475 def SelectItem(*args
, **kwargs
):
4476 """SelectItem(self, TreeItemId item, bool select=True)"""
4477 return _controls_
.TreeCtrl_SelectItem(*args
, **kwargs
)
4479 def ToggleItemSelection(*args
, **kwargs
):
4480 """ToggleItemSelection(self, TreeItemId item)"""
4481 return _controls_
.TreeCtrl_ToggleItemSelection(*args
, **kwargs
)
4483 def EnsureVisible(*args
, **kwargs
):
4484 """EnsureVisible(self, TreeItemId item)"""
4485 return _controls_
.TreeCtrl_EnsureVisible(*args
, **kwargs
)
4487 def ScrollTo(*args
, **kwargs
):
4488 """ScrollTo(self, TreeItemId item)"""
4489 return _controls_
.TreeCtrl_ScrollTo(*args
, **kwargs
)
4491 def EditLabel(*args
, **kwargs
):
4492 """EditLabel(self, TreeItemId item)"""
4493 return _controls_
.TreeCtrl_EditLabel(*args
, **kwargs
)
4495 def GetEditControl(*args
, **kwargs
):
4496 """GetEditControl(self) -> TextCtrl"""
4497 return _controls_
.TreeCtrl_GetEditControl(*args
, **kwargs
)
4499 def EndEditLabel(*args
, **kwargs
):
4500 """EndEditLabel(self, TreeItemId item, bool discardChanges=False)"""
4501 return _controls_
.TreeCtrl_EndEditLabel(*args
, **kwargs
)
4503 def SortChildren(*args
, **kwargs
):
4504 """SortChildren(self, TreeItemId item)"""
4505 return _controls_
.TreeCtrl_SortChildren(*args
, **kwargs
)
4507 def HitTest(*args
, **kwargs
):
4509 HitTest(Point point) -> (item, where)
4511 Determine which item (if any) belongs the given point. The
4512 coordinates specified are relative to the client area of tree ctrl
4513 and the where return value is set to a bitmask of wxTREE_HITTEST_xxx
4517 return _controls_
.TreeCtrl_HitTest(*args
, **kwargs
)
4519 def GetBoundingRect(*args
, **kwargs
):
4520 """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject"""
4521 return _controls_
.TreeCtrl_GetBoundingRect(*args
, **kwargs
)
4523 def GetClassDefaultAttributes(*args
, **kwargs
):
4525 TreeCtrl.GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4527 Get the default attributes for this class. This is useful if
4528 you want to use the same font or colour in your own control as
4529 in a standard control -- which is a much better idea than hard
4530 coding specific colours or fonts which might look completely out
4531 of place on the users system, especially if it uses themes.
4533 The variant parameter is only relevant under Mac currently and is
4534 ignore under other platforms. Under Mac, it will change the size of the
4535 returned font. See SetWindowVariant for more about this.
4537 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4539 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
4541 class TreeCtrlPtr(TreeCtrl
):
4542 def __init__(self
, this
):
4544 if not hasattr(self
,"thisown"): self
.thisown
= 0
4545 self
.__class
__ = TreeCtrl
4546 _controls_
.TreeCtrl_swigregister(TreeCtrlPtr
)
4548 def PreTreeCtrl(*args
, **kwargs
):
4549 """PreTreeCtrl() -> TreeCtrl"""
4550 val
= _controls_
.new_PreTreeCtrl(*args
, **kwargs
)
4554 def TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
4556 TreeCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4558 Get the default attributes for this class. This is useful if
4559 you want to use the same font or colour in your own control as
4560 in a standard control -- which is a much better idea than hard
4561 coding specific colours or fonts which might look completely out
4562 of place on the users system, especially if it uses themes.
4564 The variant parameter is only relevant under Mac currently and is
4565 ignore under other platforms. Under Mac, it will change the size of the
4566 returned font. See SetWindowVariant for more about this.
4568 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4570 #---------------------------------------------------------------------------
4572 DIRCTRL_DIR_ONLY
= _controls_
.DIRCTRL_DIR_ONLY
4573 DIRCTRL_SELECT_FIRST
= _controls_
.DIRCTRL_SELECT_FIRST
4574 DIRCTRL_SHOW_FILTERS
= _controls_
.DIRCTRL_SHOW_FILTERS
4575 DIRCTRL_3D_INTERNAL
= _controls_
.DIRCTRL_3D_INTERNAL
4576 DIRCTRL_EDIT_LABELS
= _controls_
.DIRCTRL_EDIT_LABELS
4577 class GenericDirCtrl(_core
.Control
):
4579 return "<%s.%s; proxy of C++ wxGenericDirCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4580 def __init__(self
, *args
, **kwargs
):
4582 __init__(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
4583 Point pos=DefaultPosition, Size size=DefaultSize,
4584 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
4585 String filter=EmptyString,
4586 int defaultFilter=0, String name=TreeCtrlNameStr) -> GenericDirCtrl
4588 newobj
= _controls_
.new_GenericDirCtrl(*args
, **kwargs
)
4589 self
.this
= newobj
.this
4592 self
._setOORInfo
(self
)
4594 def Create(*args
, **kwargs
):
4596 Create(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
4597 Point pos=DefaultPosition, Size size=DefaultSize,
4598 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
4599 String filter=EmptyString,
4600 int defaultFilter=0, String name=TreeCtrlNameStr) -> bool
4602 return _controls_
.GenericDirCtrl_Create(*args
, **kwargs
)
4604 def ExpandPath(*args
, **kwargs
):
4605 """ExpandPath(self, String path) -> bool"""
4606 return _controls_
.GenericDirCtrl_ExpandPath(*args
, **kwargs
)
4608 def GetDefaultPath(*args
, **kwargs
):
4609 """GetDefaultPath(self) -> String"""
4610 return _controls_
.GenericDirCtrl_GetDefaultPath(*args
, **kwargs
)
4612 def SetDefaultPath(*args
, **kwargs
):
4613 """SetDefaultPath(self, String path)"""
4614 return _controls_
.GenericDirCtrl_SetDefaultPath(*args
, **kwargs
)
4616 def GetPath(*args
, **kwargs
):
4617 """GetPath(self) -> String"""
4618 return _controls_
.GenericDirCtrl_GetPath(*args
, **kwargs
)
4620 def GetFilePath(*args
, **kwargs
):
4621 """GetFilePath(self) -> String"""
4622 return _controls_
.GenericDirCtrl_GetFilePath(*args
, **kwargs
)
4624 def SetPath(*args
, **kwargs
):
4625 """SetPath(self, String path)"""
4626 return _controls_
.GenericDirCtrl_SetPath(*args
, **kwargs
)
4628 def ShowHidden(*args
, **kwargs
):
4629 """ShowHidden(self, bool show)"""
4630 return _controls_
.GenericDirCtrl_ShowHidden(*args
, **kwargs
)
4632 def GetShowHidden(*args
, **kwargs
):
4633 """GetShowHidden(self) -> bool"""
4634 return _controls_
.GenericDirCtrl_GetShowHidden(*args
, **kwargs
)
4636 def GetFilter(*args
, **kwargs
):
4637 """GetFilter(self) -> String"""
4638 return _controls_
.GenericDirCtrl_GetFilter(*args
, **kwargs
)
4640 def SetFilter(*args
, **kwargs
):
4641 """SetFilter(self, String filter)"""
4642 return _controls_
.GenericDirCtrl_SetFilter(*args
, **kwargs
)
4644 def GetFilterIndex(*args
, **kwargs
):
4645 """GetFilterIndex(self) -> int"""
4646 return _controls_
.GenericDirCtrl_GetFilterIndex(*args
, **kwargs
)
4648 def SetFilterIndex(*args
, **kwargs
):
4649 """SetFilterIndex(self, int n)"""
4650 return _controls_
.GenericDirCtrl_SetFilterIndex(*args
, **kwargs
)
4652 def GetRootId(*args
, **kwargs
):
4653 """GetRootId(self) -> TreeItemId"""
4654 return _controls_
.GenericDirCtrl_GetRootId(*args
, **kwargs
)
4656 def GetTreeCtrl(*args
, **kwargs
):
4657 """GetTreeCtrl(self) -> TreeCtrl"""
4658 return _controls_
.GenericDirCtrl_GetTreeCtrl(*args
, **kwargs
)
4660 def GetFilterListCtrl(*args
, **kwargs
):
4661 """GetFilterListCtrl(self) -> DirFilterListCtrl"""
4662 return _controls_
.GenericDirCtrl_GetFilterListCtrl(*args
, **kwargs
)
4664 def FindChild(*args
, **kwargs
):
4666 FindChild(wxTreeItemId parentId, wxString path) -> (item, done)
4668 Find the child that matches the first part of 'path'. E.g. if a child path is
4669 "/usr" and 'path' is "/usr/include" then the child for /usr is returned.
4670 If the path string has been used (we're at the leaf), done is set to True
4673 return _controls_
.GenericDirCtrl_FindChild(*args
, **kwargs
)
4675 def DoResize(*args
, **kwargs
):
4676 """DoResize(self)"""
4677 return _controls_
.GenericDirCtrl_DoResize(*args
, **kwargs
)
4679 def ReCreateTree(*args
, **kwargs
):
4680 """ReCreateTree(self)"""
4681 return _controls_
.GenericDirCtrl_ReCreateTree(*args
, **kwargs
)
4684 class GenericDirCtrlPtr(GenericDirCtrl
):
4685 def __init__(self
, this
):
4687 if not hasattr(self
,"thisown"): self
.thisown
= 0
4688 self
.__class
__ = GenericDirCtrl
4689 _controls_
.GenericDirCtrl_swigregister(GenericDirCtrlPtr
)
4690 DirDialogDefaultFolderStr
= cvar
.DirDialogDefaultFolderStr
4692 def PreGenericDirCtrl(*args
, **kwargs
):
4693 """PreGenericDirCtrl() -> GenericDirCtrl"""
4694 val
= _controls_
.new_PreGenericDirCtrl(*args
, **kwargs
)
4698 class DirFilterListCtrl(Choice
):
4700 return "<%s.%s; proxy of C++ wxDirFilterListCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4701 def __init__(self
, *args
, **kwargs
):
4703 __init__(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
4704 Size size=DefaultSize, long style=0) -> DirFilterListCtrl
4706 newobj
= _controls_
.new_DirFilterListCtrl(*args
, **kwargs
)
4707 self
.this
= newobj
.this
4710 self
._setOORInfo
(self
)
4712 def Create(*args
, **kwargs
):
4714 Create(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
4715 Size size=DefaultSize, long style=0) -> bool
4717 return _controls_
.DirFilterListCtrl_Create(*args
, **kwargs
)
4719 def FillFilterList(*args
, **kwargs
):
4720 """FillFilterList(self, String filter, int defaultFilter)"""
4721 return _controls_
.DirFilterListCtrl_FillFilterList(*args
, **kwargs
)
4724 class DirFilterListCtrlPtr(DirFilterListCtrl
):
4725 def __init__(self
, this
):
4727 if not hasattr(self
,"thisown"): self
.thisown
= 0
4728 self
.__class
__ = DirFilterListCtrl
4729 _controls_
.DirFilterListCtrl_swigregister(DirFilterListCtrlPtr
)
4731 def PreDirFilterListCtrl(*args
, **kwargs
):
4732 """PreDirFilterListCtrl() -> DirFilterListCtrl"""
4733 val
= _controls_
.new_PreDirFilterListCtrl(*args
, **kwargs
)
4737 #---------------------------------------------------------------------------
4739 class PyControl(_core
.Control
):
4741 return "<%s.%s; proxy of C++ wxPyControl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4742 def __init__(self
, *args
, **kwargs
):
4744 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
4745 long style=0, Validator validator=DefaultValidator,
4746 String name=ControlNameStr) -> PyControl
4748 newobj
= _controls_
.new_PyControl(*args
, **kwargs
)
4749 self
.this
= newobj
.this
4752 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyControl
)
4754 def _setCallbackInfo(*args
, **kwargs
):
4755 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4756 return _controls_
.PyControl__setCallbackInfo(*args
, **kwargs
)
4758 def base_DoMoveWindow(*args
, **kwargs
):
4759 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
4760 return _controls_
.PyControl_base_DoMoveWindow(*args
, **kwargs
)
4762 def base_DoSetSize(*args
, **kwargs
):
4763 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
4764 return _controls_
.PyControl_base_DoSetSize(*args
, **kwargs
)
4766 def base_DoSetClientSize(*args
, **kwargs
):
4767 """base_DoSetClientSize(self, int width, int height)"""
4768 return _controls_
.PyControl_base_DoSetClientSize(*args
, **kwargs
)
4770 def base_DoSetVirtualSize(*args
, **kwargs
):
4771 """base_DoSetVirtualSize(self, int x, int y)"""
4772 return _controls_
.PyControl_base_DoSetVirtualSize(*args
, **kwargs
)
4774 def base_DoGetSize(*args
, **kwargs
):
4775 """base_DoGetSize() -> (width, height)"""
4776 return _controls_
.PyControl_base_DoGetSize(*args
, **kwargs
)
4778 def base_DoGetClientSize(*args
, **kwargs
):
4779 """base_DoGetClientSize() -> (width, height)"""
4780 return _controls_
.PyControl_base_DoGetClientSize(*args
, **kwargs
)
4782 def base_DoGetPosition(*args
, **kwargs
):
4783 """base_DoGetPosition() -> (x,y)"""
4784 return _controls_
.PyControl_base_DoGetPosition(*args
, **kwargs
)
4786 def base_DoGetVirtualSize(*args
, **kwargs
):
4787 """base_DoGetVirtualSize(self) -> Size"""
4788 return _controls_
.PyControl_base_DoGetVirtualSize(*args
, **kwargs
)
4790 def base_DoGetBestSize(*args
, **kwargs
):
4791 """base_DoGetBestSize(self) -> Size"""
4792 return _controls_
.PyControl_base_DoGetBestSize(*args
, **kwargs
)
4794 def base_InitDialog(*args
, **kwargs
):
4795 """base_InitDialog(self)"""
4796 return _controls_
.PyControl_base_InitDialog(*args
, **kwargs
)
4798 def base_TransferDataToWindow(*args
, **kwargs
):
4799 """base_TransferDataToWindow(self) -> bool"""
4800 return _controls_
.PyControl_base_TransferDataToWindow(*args
, **kwargs
)
4802 def base_TransferDataFromWindow(*args
, **kwargs
):
4803 """base_TransferDataFromWindow(self) -> bool"""
4804 return _controls_
.PyControl_base_TransferDataFromWindow(*args
, **kwargs
)
4806 def base_Validate(*args
, **kwargs
):
4807 """base_Validate(self) -> bool"""
4808 return _controls_
.PyControl_base_Validate(*args
, **kwargs
)
4810 def base_AcceptsFocus(*args
, **kwargs
):
4811 """base_AcceptsFocus(self) -> bool"""
4812 return _controls_
.PyControl_base_AcceptsFocus(*args
, **kwargs
)
4814 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
4815 """base_AcceptsFocusFromKeyboard(self) -> bool"""
4816 return _controls_
.PyControl_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
4818 def base_GetMaxSize(*args
, **kwargs
):
4819 """base_GetMaxSize(self) -> Size"""
4820 return _controls_
.PyControl_base_GetMaxSize(*args
, **kwargs
)
4822 def base_AddChild(*args
, **kwargs
):
4823 """base_AddChild(self, Window child)"""
4824 return _controls_
.PyControl_base_AddChild(*args
, **kwargs
)
4826 def base_RemoveChild(*args
, **kwargs
):
4827 """base_RemoveChild(self, Window child)"""
4828 return _controls_
.PyControl_base_RemoveChild(*args
, **kwargs
)
4830 def base_ShouldInheritColours(*args
, **kwargs
):
4831 """base_ShouldInheritColours(self) -> bool"""
4832 return _controls_
.PyControl_base_ShouldInheritColours(*args
, **kwargs
)
4834 def base_ApplyParentThemeBackground(*args
, **kwargs
):
4835 """base_ApplyParentThemeBackground(self, Colour c)"""
4836 return _controls_
.PyControl_base_ApplyParentThemeBackground(*args
, **kwargs
)
4839 class PyControlPtr(PyControl
):
4840 def __init__(self
, this
):
4842 if not hasattr(self
,"thisown"): self
.thisown
= 0
4843 self
.__class
__ = PyControl
4844 _controls_
.PyControl_swigregister(PyControlPtr
)
4846 def PrePyControl(*args
, **kwargs
):
4847 """PrePyControl() -> PyControl"""
4848 val
= _controls_
.new_PrePyControl(*args
, **kwargs
)
4852 #---------------------------------------------------------------------------
4854 FRAME_EX_CONTEXTHELP
= _controls_
.FRAME_EX_CONTEXTHELP
4855 DIALOG_EX_CONTEXTHELP
= _controls_
.DIALOG_EX_CONTEXTHELP
4856 wxEVT_HELP
= _controls_
.wxEVT_HELP
4857 wxEVT_DETAILED_HELP
= _controls_
.wxEVT_DETAILED_HELP
4858 EVT_HELP
= wx
.PyEventBinder( wxEVT_HELP
, 1)
4859 EVT_HELP_RANGE
= wx
.PyEventBinder( wxEVT_HELP
, 2)
4860 EVT_DETAILED_HELP
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 1)
4861 EVT_DETAILED_HELP_RANGE
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 2)
4863 class HelpEvent(_core
.CommandEvent
):
4865 A help event is sent when the user has requested
4866 context-sensitive help. This can either be caused by the
4867 application requesting context-sensitive help mode via
4868 wx.ContextHelp, or (on MS Windows) by the system generating a
4869 WM_HELP message when the user pressed F1 or clicked on the query
4870 button in a dialog caption.
4872 A help event is sent to the window that the user clicked on, and
4873 is propagated up the window hierarchy until the event is
4874 processed or there are no more event handlers. The application
4875 should call event.GetId to check the identity of the clicked-on
4876 window, and then either show some suitable help or call
4877 event.Skip if the identifier is unrecognised. Calling Skip is
4878 important because it allows wxWindows to generate further events
4879 for ancestors of the clicked-on window. Otherwise it would be
4880 impossible to show help for container windows, since processing
4881 would stop after the first window found.
4884 EVT_HELP Sent when the user has requested context-
4886 EVT_HELP_RANGE Allows to catch EVT_HELP for a range of IDs
4890 return "<%s.%s; proxy of C++ wxHelpEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4891 def __init__(self
, *args
, **kwargs
):
4892 """__init__(self, wxEventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition) -> HelpEvent"""
4893 newobj
= _controls_
.new_HelpEvent(*args
, **kwargs
)
4894 self
.this
= newobj
.this
4897 def GetPosition(*args
, **kwargs
):
4899 GetPosition(self) -> Point
4901 Returns the left-click position of the mouse, in screen
4902 coordinates. This allows the application to position the help
4905 return _controls_
.HelpEvent_GetPosition(*args
, **kwargs
)
4907 def SetPosition(*args
, **kwargs
):
4909 SetPosition(self, Point pos)
4911 Sets the left-click position of the mouse, in screen coordinates.
4913 return _controls_
.HelpEvent_SetPosition(*args
, **kwargs
)
4915 def GetLink(*args
, **kwargs
):
4917 GetLink(self) -> String
4919 Get an optional link to further help
4921 return _controls_
.HelpEvent_GetLink(*args
, **kwargs
)
4923 def SetLink(*args
, **kwargs
):
4925 SetLink(self, String link)
4927 Set an optional link to further help
4929 return _controls_
.HelpEvent_SetLink(*args
, **kwargs
)
4931 def GetTarget(*args
, **kwargs
):
4933 GetTarget(self) -> String
4935 Get an optional target to display help in. E.g. a window specification
4937 return _controls_
.HelpEvent_GetTarget(*args
, **kwargs
)
4939 def SetTarget(*args
, **kwargs
):
4941 SetTarget(self, String target)
4943 Set an optional target to display help in. E.g. a window specification
4945 return _controls_
.HelpEvent_SetTarget(*args
, **kwargs
)
4948 class HelpEventPtr(HelpEvent
):
4949 def __init__(self
, this
):
4951 if not hasattr(self
,"thisown"): self
.thisown
= 0
4952 self
.__class
__ = HelpEvent
4953 _controls_
.HelpEvent_swigregister(HelpEventPtr
)
4955 class ContextHelp(_core
.Object
):
4957 This class changes the cursor to a query and puts the application
4958 into a 'context-sensitive help mode'. When the user left-clicks
4959 on a window within the specified window, a EVT_HELP event is sent
4960 to that control, and the application may respond to it by popping
4963 There are a couple of ways to invoke this behaviour implicitly:
4965 * Use the wx.DIALOG_EX_CONTEXTHELP extended style for a
4966 dialog (Windows only). This will put a question mark in the
4967 titlebar, and Windows will put the application into
4968 context-sensitive help mode automatically, with further
4971 * Create a wx.ContextHelpButton, whose predefined behaviour
4972 is to create a context help object. Normally you will write
4973 your application so that this button is only added to a
4974 dialog for non-Windows platforms (use
4975 wx.DIALOG_EX_CONTEXTHELP on Windows).
4979 return "<%s.%s; proxy of C++ wxContextHelp instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4980 def __init__(self
, *args
, **kwargs
):
4982 __init__(self, Window window=None, bool doNow=True) -> ContextHelp
4984 Constructs a context help object, calling BeginContextHelp if
4985 doNow is true (the default).
4987 If window is None, the top window is used.
4989 newobj
= _controls_
.new_ContextHelp(*args
, **kwargs
)
4990 self
.this
= newobj
.this
4993 def __del__(self
, destroy
=_controls_
.delete_ContextHelp
):
4996 if self
.thisown
: destroy(self
)
4999 def BeginContextHelp(*args
, **kwargs
):
5001 BeginContextHelp(self, Window window=None) -> bool
5003 Puts the application into context-sensitive help mode. window is
5004 the window which will be used to catch events; if NULL, the top
5005 window will be used.
5007 Returns true if the application was successfully put into
5008 context-sensitive help mode. This function only returns when the
5009 event loop has finished.
5011 return _controls_
.ContextHelp_BeginContextHelp(*args
, **kwargs
)
5013 def EndContextHelp(*args
, **kwargs
):
5015 EndContextHelp(self) -> bool
5017 Ends context-sensitive help mode. Not normally called by the
5020 return _controls_
.ContextHelp_EndContextHelp(*args
, **kwargs
)
5023 class ContextHelpPtr(ContextHelp
):
5024 def __init__(self
, this
):
5026 if not hasattr(self
,"thisown"): self
.thisown
= 0
5027 self
.__class
__ = ContextHelp
5028 _controls_
.ContextHelp_swigregister(ContextHelpPtr
)
5030 class ContextHelpButton(BitmapButton
):
5032 Instances of this class may be used to add a question mark button
5033 that when pressed, puts the application into context-help
5034 mode. It does this by creating a wx.ContextHelp object which
5035 itself generates a EVT_HELP event when the user clicks on a
5038 On Windows, you may add a question-mark icon to a dialog by use
5039 of the wx.DIALOG_EX_CONTEXTHELP extra style, but on other
5040 platforms you will have to add a button explicitly, usually next
5041 to OK, Cancel or similar buttons.
5045 return "<%s.%s; proxy of C++ wxContextHelpButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5046 def __init__(self
, *args
, **kwargs
):
5048 __init__(self, Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
5049 Size size=DefaultSize, long style=BU_AUTODRAW) -> ContextHelpButton
5051 Constructor, creating and showing a context help button.
5053 newobj
= _controls_
.new_ContextHelpButton(*args
, **kwargs
)
5054 self
.this
= newobj
.this
5057 self
._setOORInfo
(self
)
5060 class ContextHelpButtonPtr(ContextHelpButton
):
5061 def __init__(self
, this
):
5063 if not hasattr(self
,"thisown"): self
.thisown
= 0
5064 self
.__class
__ = ContextHelpButton
5065 _controls_
.ContextHelpButton_swigregister(ContextHelpButtonPtr
)
5067 class HelpProvider(object):
5069 wx.HelpProvider is an abstract class used by a program
5070 implementing context-sensitive help to show the help text for the
5073 The current help provider must be explicitly set by the
5074 application using wx.HelpProvider.Set().
5076 def __init__(self
): raise RuntimeError, "No constructor defined"
5078 return "<%s.%s; proxy of C++ wxHelpProvider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5079 def Set(*args
, **kwargs
):
5081 HelpProvider.Set(HelpProvider helpProvider) -> HelpProvider
5083 Sset the current, application-wide help provider. Returns the
5084 previous one. Unlike some other classes, the help provider is
5085 not created on demand. This must be explicitly done by the
5088 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5090 Set
= staticmethod(Set
)
5091 def Get(*args
, **kwargs
):
5093 HelpProvider.Get() -> HelpProvider
5095 Return the current application-wide help provider.
5097 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
5099 Get
= staticmethod(Get
)
5100 def GetHelp(*args
, **kwargs
):
5102 GetHelp(self, Window window) -> String
5104 Gets the help string for this window. Its interpretation is
5105 dependent on the help provider except that empty string always
5106 means that no help is associated with the window.
5108 return _controls_
.HelpProvider_GetHelp(*args
, **kwargs
)
5110 def ShowHelp(*args
, **kwargs
):
5112 ShowHelp(self, Window window) -> bool
5114 Shows help for the given window. Uses GetHelp internally if
5117 Returns true if it was done, or false if no help was available
5120 return _controls_
.HelpProvider_ShowHelp(*args
, **kwargs
)
5122 def AddHelp(*args
, **kwargs
):
5124 AddHelp(self, Window window, String text)
5126 Associates the text with the given window.
5128 return _controls_
.HelpProvider_AddHelp(*args
, **kwargs
)
5130 def AddHelpById(*args
, **kwargs
):
5132 AddHelpById(self, int id, String text)
5134 This version associates the given text with all windows with this
5135 id. May be used to set the same help string for all Cancel
5136 buttons in the application, for example.
5138 return _controls_
.HelpProvider_AddHelpById(*args
, **kwargs
)
5140 def RemoveHelp(*args
, **kwargs
):
5142 RemoveHelp(self, Window window)
5144 Removes the association between the window pointer and the help
5145 text. This is called by the wx.Window destructor. Without this,
5146 the table of help strings will fill up and when window pointers
5147 are reused, the wrong help string will be found.
5149 return _controls_
.HelpProvider_RemoveHelp(*args
, **kwargs
)
5151 def Destroy(*args
, **kwargs
):
5153 return _controls_
.HelpProvider_Destroy(*args
, **kwargs
)
5156 class HelpProviderPtr(HelpProvider
):
5157 def __init__(self
, this
):
5159 if not hasattr(self
,"thisown"): self
.thisown
= 0
5160 self
.__class
__ = HelpProvider
5161 _controls_
.HelpProvider_swigregister(HelpProviderPtr
)
5163 def HelpProvider_Set(*args
, **kwargs
):
5165 HelpProvider_Set(HelpProvider helpProvider) -> HelpProvider
5167 Sset the current, application-wide help provider. Returns the
5168 previous one. Unlike some other classes, the help provider is
5169 not created on demand. This must be explicitly done by the
5172 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5174 def HelpProvider_Get(*args
, **kwargs
):
5176 HelpProvider_Get() -> HelpProvider
5178 Return the current application-wide help provider.
5180 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
5182 class SimpleHelpProvider(HelpProvider
):
5184 wx.SimpleHelpProvider is an implementation of wx.HelpProvider
5185 which supports only plain text help strings, and shows the string
5186 associated with the control (if any) in a tooltip.
5189 return "<%s.%s; proxy of C++ wxSimpleHelpProvider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5190 def __init__(self
, *args
, **kwargs
):
5192 __init__(self) -> SimpleHelpProvider
5194 wx.SimpleHelpProvider is an implementation of wx.HelpProvider
5195 which supports only plain text help strings, and shows the string
5196 associated with the control (if any) in a tooltip.
5198 newobj
= _controls_
.new_SimpleHelpProvider(*args
, **kwargs
)
5199 self
.this
= newobj
.this
5203 class SimpleHelpProviderPtr(SimpleHelpProvider
):
5204 def __init__(self
, this
):
5206 if not hasattr(self
,"thisown"): self
.thisown
= 0
5207 self
.__class
__ = SimpleHelpProvider
5208 _controls_
.SimpleHelpProvider_swigregister(SimpleHelpProviderPtr
)
5210 #---------------------------------------------------------------------------
5212 class DragImage(_core
.Object
):
5214 return "<%s.%s; proxy of C++ wxGenericDragImage instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5215 def __init__(self
, *args
, **kwargs
):
5216 """__init__(self, Bitmap image, Cursor cursor=wxNullCursor) -> DragImage"""
5217 newobj
= _controls_
.new_DragImage(*args
, **kwargs
)
5218 self
.this
= newobj
.this
5221 def __del__(self
, destroy
=_controls_
.delete_DragImage
):
5224 if self
.thisown
: destroy(self
)
5227 def SetBackingBitmap(*args
, **kwargs
):
5228 """SetBackingBitmap(self, Bitmap bitmap)"""
5229 return _controls_
.DragImage_SetBackingBitmap(*args
, **kwargs
)
5231 def BeginDrag(*args
, **kwargs
):
5233 BeginDrag(self, Point hotspot, Window window, bool fullScreen=False,
5234 Rect rect=None) -> bool
5236 return _controls_
.DragImage_BeginDrag(*args
, **kwargs
)
5238 def BeginDragBounded(*args
, **kwargs
):
5239 """BeginDragBounded(self, Point hotspot, Window window, Window boundingWindow) -> bool"""
5240 return _controls_
.DragImage_BeginDragBounded(*args
, **kwargs
)
5242 def EndDrag(*args
, **kwargs
):
5243 """EndDrag(self) -> bool"""
5244 return _controls_
.DragImage_EndDrag(*args
, **kwargs
)
5246 def Move(*args
, **kwargs
):
5247 """Move(self, Point pt) -> bool"""
5248 return _controls_
.DragImage_Move(*args
, **kwargs
)
5250 def Show(*args
, **kwargs
):
5251 """Show(self) -> bool"""
5252 return _controls_
.DragImage_Show(*args
, **kwargs
)
5254 def Hide(*args
, **kwargs
):
5255 """Hide(self) -> bool"""
5256 return _controls_
.DragImage_Hide(*args
, **kwargs
)
5258 def GetImageRect(*args
, **kwargs
):
5259 """GetImageRect(self, Point pos) -> Rect"""
5260 return _controls_
.DragImage_GetImageRect(*args
, **kwargs
)
5262 def DoDrawImage(*args
, **kwargs
):
5263 """DoDrawImage(self, DC dc, Point pos) -> bool"""
5264 return _controls_
.DragImage_DoDrawImage(*args
, **kwargs
)
5266 def UpdateBackingFromWindow(*args
, **kwargs
):
5267 """UpdateBackingFromWindow(self, DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -> bool"""
5268 return _controls_
.DragImage_UpdateBackingFromWindow(*args
, **kwargs
)
5270 def RedrawImage(*args
, **kwargs
):
5271 """RedrawImage(self, Point oldPos, Point newPos, bool eraseOld, bool drawNew) -> bool"""
5272 return _controls_
.DragImage_RedrawImage(*args
, **kwargs
)
5275 class DragImagePtr(DragImage
):
5276 def __init__(self
, this
):
5278 if not hasattr(self
,"thisown"): self
.thisown
= 0
5279 self
.__class
__ = DragImage
5280 _controls_
.DragImage_swigregister(DragImagePtr
)
5282 def DragIcon(*args
, **kwargs
):
5283 """DragIcon(Icon image, Cursor cursor=wxNullCursor) -> DragImage"""
5284 val
= _controls_
.new_DragIcon(*args
, **kwargs
)
5288 def DragString(*args
, **kwargs
):
5289 """DragString(String str, Cursor cursor=wxNullCursor) -> DragImage"""
5290 val
= _controls_
.new_DragString(*args
, **kwargs
)
5294 def DragTreeItem(*args
, **kwargs
):
5295 """DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -> DragImage"""
5296 val
= _controls_
.new_DragTreeItem(*args
, **kwargs
)
5300 def DragListItem(*args
, **kwargs
):
5301 """DragListItem(ListCtrl listCtrl, long id) -> DragImage"""
5302 val
= _controls_
.new_DragListItem(*args
, **kwargs
)