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) -> bool
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 Sets the item at index 'n' to be the selected item.
529 return _controls_
.ComboBox_SetSelection(*args
, **kwargs
)
531 def SetMark(*args
, **kwargs
):
533 SetMark(self, long from, long to)
535 Selects the text between the two positions in the combobox text field.
537 return _controls_
.ComboBox_SetMark(*args
, **kwargs
)
539 def SetStringSelection(*args
, **kwargs
):
541 SetStringSelection(self, String string) -> bool
543 Select the item with the specifed string
545 return _controls_
.ComboBox_SetStringSelection(*args
, **kwargs
)
547 def SetString(*args
, **kwargs
):
549 SetString(self, int n, String string)
551 Set the label for the n'th item (zero based) in the list.
553 return _controls_
.ComboBox_SetString(*args
, **kwargs
)
555 def SetEditable(*args
, **kwargs
):
556 """SetEditable(self, bool editable)"""
557 return _controls_
.ComboBox_SetEditable(*args
, **kwargs
)
559 def SetInsertionPointEnd(*args
, **kwargs
):
561 SetInsertionPointEnd(self)
563 Sets the insertion point at the end of the combobox text field.
565 return _controls_
.ComboBox_SetInsertionPointEnd(*args
, **kwargs
)
567 def Remove(*args
, **kwargs
):
569 Remove(self, long from, long to)
571 Removes the text between the two positions in the combobox text field.
573 return _controls_
.ComboBox_Remove(*args
, **kwargs
)
576 class ComboBoxPtr(ComboBox
):
577 def __init__(self
, this
):
579 if not hasattr(self
,"thisown"): self
.thisown
= 0
580 self
.__class
__ = ComboBox
581 _controls_
.ComboBox_swigregister(ComboBoxPtr
)
582 ComboBoxNameStr
= cvar
.ComboBoxNameStr
584 def PreComboBox(*args
, **kwargs
):
586 PreComboBox() -> ComboBox
588 Precreate a ComboBox control for 2-phase creation.
590 val
= _controls_
.new_PreComboBox(*args
, **kwargs
)
594 #---------------------------------------------------------------------------
596 GA_HORIZONTAL
= _controls_
.GA_HORIZONTAL
597 GA_VERTICAL
= _controls_
.GA_VERTICAL
598 GA_SMOOTH
= _controls_
.GA_SMOOTH
599 GA_PROGRESSBAR
= _controls_
.GA_PROGRESSBAR
600 class Gauge(_core
.Control
):
602 return "<%s.%s; proxy of C++ wxGauge instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
603 def __init__(self
, *args
, **kwargs
):
605 __init__(self, Window parent, int id, int range, Point pos=DefaultPosition,
606 Size size=DefaultSize, long style=GA_HORIZONTAL,
607 Validator validator=DefaultValidator,
608 String name=GaugeNameStr) -> Gauge
610 newobj
= _controls_
.new_Gauge(*args
, **kwargs
)
611 self
.this
= newobj
.this
614 self
._setOORInfo
(self
)
616 def Create(*args
, **kwargs
):
618 Create(self, Window parent, int id, int range, Point pos=DefaultPosition,
619 Size size=DefaultSize, long style=GA_HORIZONTAL,
620 Validator validator=DefaultValidator,
621 String name=GaugeNameStr) -> bool
623 return _controls_
.Gauge_Create(*args
, **kwargs
)
625 def SetRange(*args
, **kwargs
):
626 """SetRange(self, int range)"""
627 return _controls_
.Gauge_SetRange(*args
, **kwargs
)
629 def GetRange(*args
, **kwargs
):
630 """GetRange(self) -> int"""
631 return _controls_
.Gauge_GetRange(*args
, **kwargs
)
633 def SetValue(*args
, **kwargs
):
634 """SetValue(self, int pos)"""
635 return _controls_
.Gauge_SetValue(*args
, **kwargs
)
637 def GetValue(*args
, **kwargs
):
638 """GetValue(self) -> int"""
639 return _controls_
.Gauge_GetValue(*args
, **kwargs
)
641 def IsVertical(*args
, **kwargs
):
642 """IsVertical(self) -> bool"""
643 return _controls_
.Gauge_IsVertical(*args
, **kwargs
)
645 def SetShadowWidth(*args
, **kwargs
):
646 """SetShadowWidth(self, int w)"""
647 return _controls_
.Gauge_SetShadowWidth(*args
, **kwargs
)
649 def GetShadowWidth(*args
, **kwargs
):
650 """GetShadowWidth(self) -> int"""
651 return _controls_
.Gauge_GetShadowWidth(*args
, **kwargs
)
653 def SetBezelFace(*args
, **kwargs
):
654 """SetBezelFace(self, int w)"""
655 return _controls_
.Gauge_SetBezelFace(*args
, **kwargs
)
657 def GetBezelFace(*args
, **kwargs
):
658 """GetBezelFace(self) -> int"""
659 return _controls_
.Gauge_GetBezelFace(*args
, **kwargs
)
662 class GaugePtr(Gauge
):
663 def __init__(self
, this
):
665 if not hasattr(self
,"thisown"): self
.thisown
= 0
666 self
.__class
__ = Gauge
667 _controls_
.Gauge_swigregister(GaugePtr
)
668 GaugeNameStr
= cvar
.GaugeNameStr
670 def PreGauge(*args
, **kwargs
):
671 """PreGauge() -> Gauge"""
672 val
= _controls_
.new_PreGauge(*args
, **kwargs
)
676 #---------------------------------------------------------------------------
678 class StaticBox(_core
.Control
):
680 return "<%s.%s; proxy of C++ wxStaticBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
681 def __init__(self
, *args
, **kwargs
):
683 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
684 Size size=DefaultSize, long style=0,
685 String name=StaticBoxNameStr) -> StaticBox
687 newobj
= _controls_
.new_StaticBox(*args
, **kwargs
)
688 self
.this
= newobj
.this
691 self
._setOORInfo
(self
)
693 def Create(*args
, **kwargs
):
695 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
696 Size size=DefaultSize, long style=0,
697 String name=StaticBoxNameStr) -> bool
699 return _controls_
.StaticBox_Create(*args
, **kwargs
)
702 class StaticBoxPtr(StaticBox
):
703 def __init__(self
, this
):
705 if not hasattr(self
,"thisown"): self
.thisown
= 0
706 self
.__class
__ = StaticBox
707 _controls_
.StaticBox_swigregister(StaticBoxPtr
)
708 StaticBitmapNameStr
= cvar
.StaticBitmapNameStr
709 StaticBoxNameStr
= cvar
.StaticBoxNameStr
710 StaticTextNameStr
= cvar
.StaticTextNameStr
712 def PreStaticBox(*args
, **kwargs
):
713 """PreStaticBox() -> StaticBox"""
714 val
= _controls_
.new_PreStaticBox(*args
, **kwargs
)
718 #---------------------------------------------------------------------------
720 class StaticLine(_core
.Control
):
722 return "<%s.%s; proxy of C++ wxStaticLine instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
723 def __init__(self
, *args
, **kwargs
):
725 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
726 long style=LI_HORIZONTAL,
727 String name=StaticTextNameStr) -> StaticLine
729 newobj
= _controls_
.new_StaticLine(*args
, **kwargs
)
730 self
.this
= newobj
.this
733 self
._setOORInfo
(self
)
735 def Create(*args
, **kwargs
):
737 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
738 long style=LI_HORIZONTAL,
739 String name=StaticTextNameStr) -> bool
741 return _controls_
.StaticLine_Create(*args
, **kwargs
)
743 def IsVertical(*args
, **kwargs
):
744 """IsVertical(self) -> bool"""
745 return _controls_
.StaticLine_IsVertical(*args
, **kwargs
)
747 def GetDefaultSize(*args
, **kwargs
):
748 """StaticLine.GetDefaultSize() -> int"""
749 return _controls_
.StaticLine_GetDefaultSize(*args
, **kwargs
)
751 GetDefaultSize
= staticmethod(GetDefaultSize
)
753 class StaticLinePtr(StaticLine
):
754 def __init__(self
, this
):
756 if not hasattr(self
,"thisown"): self
.thisown
= 0
757 self
.__class
__ = StaticLine
758 _controls_
.StaticLine_swigregister(StaticLinePtr
)
760 def PreStaticLine(*args
, **kwargs
):
761 """PreStaticLine() -> StaticLine"""
762 val
= _controls_
.new_PreStaticLine(*args
, **kwargs
)
766 def StaticLine_GetDefaultSize(*args
, **kwargs
):
767 """StaticLine_GetDefaultSize() -> int"""
768 return _controls_
.StaticLine_GetDefaultSize(*args
, **kwargs
)
770 #---------------------------------------------------------------------------
772 class StaticText(_core
.Control
):
774 return "<%s.%s; proxy of C++ wxStaticText instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
775 def __init__(self
, *args
, **kwargs
):
777 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
778 Size size=DefaultSize, long style=0,
779 String name=StaticTextNameStr) -> StaticText
781 newobj
= _controls_
.new_StaticText(*args
, **kwargs
)
782 self
.this
= newobj
.this
785 self
._setOORInfo
(self
)
787 def Create(*args
, **kwargs
):
789 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
790 Size size=DefaultSize, long style=0,
791 String name=StaticTextNameStr) -> bool
793 return _controls_
.StaticText_Create(*args
, **kwargs
)
796 class StaticTextPtr(StaticText
):
797 def __init__(self
, this
):
799 if not hasattr(self
,"thisown"): self
.thisown
= 0
800 self
.__class
__ = StaticText
801 _controls_
.StaticText_swigregister(StaticTextPtr
)
803 def PreStaticText(*args
, **kwargs
):
804 """PreStaticText() -> StaticText"""
805 val
= _controls_
.new_PreStaticText(*args
, **kwargs
)
809 #---------------------------------------------------------------------------
811 class StaticBitmap(_core
.Control
):
813 return "<%s.%s; proxy of C++ wxStaticBitmap instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
814 def __init__(self
, *args
, **kwargs
):
816 __init__(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
817 Size size=DefaultSize, long style=0,
818 String name=StaticBitmapNameStr) -> StaticBitmap
820 newobj
= _controls_
.new_StaticBitmap(*args
, **kwargs
)
821 self
.this
= newobj
.this
824 self
._setOORInfo
(self
)
826 def Create(*args
, **kwargs
):
828 Create(self, Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
829 Size size=DefaultSize, long style=0,
830 String name=StaticBitmapNameStr) -> bool
832 return _controls_
.StaticBitmap_Create(*args
, **kwargs
)
834 def GetBitmap(*args
, **kwargs
):
835 """GetBitmap(self) -> Bitmap"""
836 return _controls_
.StaticBitmap_GetBitmap(*args
, **kwargs
)
838 def SetBitmap(*args
, **kwargs
):
839 """SetBitmap(self, Bitmap bitmap)"""
840 return _controls_
.StaticBitmap_SetBitmap(*args
, **kwargs
)
842 def SetIcon(*args
, **kwargs
):
843 """SetIcon(self, Icon icon)"""
844 return _controls_
.StaticBitmap_SetIcon(*args
, **kwargs
)
847 class StaticBitmapPtr(StaticBitmap
):
848 def __init__(self
, this
):
850 if not hasattr(self
,"thisown"): self
.thisown
= 0
851 self
.__class
__ = StaticBitmap
852 _controls_
.StaticBitmap_swigregister(StaticBitmapPtr
)
854 def PreStaticBitmap(*args
, **kwargs
):
855 """PreStaticBitmap() -> StaticBitmap"""
856 val
= _controls_
.new_PreStaticBitmap(*args
, **kwargs
)
860 #---------------------------------------------------------------------------
862 class ListBox(_core
.ControlWithItems
):
864 return "<%s.%s; proxy of C++ wxListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
865 def __init__(self
, *args
, **kwargs
):
867 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
868 wxArrayString choices=wxPyEmptyStringArray,
869 long style=0, Validator validator=DefaultValidator,
870 String name=ListBoxNameStr) -> ListBox
872 newobj
= _controls_
.new_ListBox(*args
, **kwargs
)
873 self
.this
= newobj
.this
876 self
._setOORInfo
(self
)
878 def Create(*args
, **kwargs
):
880 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
881 wxArrayString choices=wxPyEmptyStringArray,
882 long style=0, Validator validator=DefaultValidator,
883 String name=ListBoxNameStr) -> bool
885 return _controls_
.ListBox_Create(*args
, **kwargs
)
887 def Insert(*args
, **kwargs
):
889 Insert(self, String item, int pos, PyObject clientData=None)
891 Insert an item into the control before the item at the pos index,
892 optionally associating some data object with the item.
894 return _controls_
.ListBox_Insert(*args
, **kwargs
)
896 def InsertItems(*args
, **kwargs
):
897 """InsertItems(self, wxArrayString items, int pos)"""
898 return _controls_
.ListBox_InsertItems(*args
, **kwargs
)
900 def Set(*args
, **kwargs
):
901 """Set(self, wxArrayString items)"""
902 return _controls_
.ListBox_Set(*args
, **kwargs
)
904 def IsSelected(*args
, **kwargs
):
905 """IsSelected(self, int n) -> bool"""
906 return _controls_
.ListBox_IsSelected(*args
, **kwargs
)
908 def SetSelection(*args
, **kwargs
):
909 """SetSelection(self, int n, bool select=True)"""
910 return _controls_
.ListBox_SetSelection(*args
, **kwargs
)
912 def Select(*args
, **kwargs
):
916 Sets the item at index 'n' to be the selected item.
918 return _controls_
.ListBox_Select(*args
, **kwargs
)
920 def Deselect(*args
, **kwargs
):
921 """Deselect(self, int n)"""
922 return _controls_
.ListBox_Deselect(*args
, **kwargs
)
924 def DeselectAll(*args
, **kwargs
):
925 """DeselectAll(self, int itemToLeaveSelected=-1)"""
926 return _controls_
.ListBox_DeselectAll(*args
, **kwargs
)
928 def SetStringSelection(*args
, **kwargs
):
929 """SetStringSelection(self, String s, bool select=True) -> bool"""
930 return _controls_
.ListBox_SetStringSelection(*args
, **kwargs
)
932 def GetSelections(*args
, **kwargs
):
933 """GetSelections(self) -> PyObject"""
934 return _controls_
.ListBox_GetSelections(*args
, **kwargs
)
936 def SetFirstItem(*args
, **kwargs
):
937 """SetFirstItem(self, int n)"""
938 return _controls_
.ListBox_SetFirstItem(*args
, **kwargs
)
940 def SetFirstItemStr(*args
, **kwargs
):
941 """SetFirstItemStr(self, String s)"""
942 return _controls_
.ListBox_SetFirstItemStr(*args
, **kwargs
)
944 def EnsureVisible(*args
, **kwargs
):
945 """EnsureVisible(self, int n)"""
946 return _controls_
.ListBox_EnsureVisible(*args
, **kwargs
)
948 def AppendAndEnsureVisible(*args
, **kwargs
):
949 """AppendAndEnsureVisible(self, String s)"""
950 return _controls_
.ListBox_AppendAndEnsureVisible(*args
, **kwargs
)
952 def IsSorted(*args
, **kwargs
):
953 """IsSorted(self) -> bool"""
954 return _controls_
.ListBox_IsSorted(*args
, **kwargs
)
956 def SetItemForegroundColour(*args
, **kwargs
):
957 """SetItemForegroundColour(self, int item, Colour c)"""
958 return _controls_
.ListBox_SetItemForegroundColour(*args
, **kwargs
)
960 def SetItemBackgroundColour(*args
, **kwargs
):
961 """SetItemBackgroundColour(self, int item, Colour c)"""
962 return _controls_
.ListBox_SetItemBackgroundColour(*args
, **kwargs
)
964 def SetItemFont(*args
, **kwargs
):
965 """SetItemFont(self, int item, Font f)"""
966 return _controls_
.ListBox_SetItemFont(*args
, **kwargs
)
968 def GetClassDefaultAttributes(*args
, **kwargs
):
970 ListBox.GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
972 Get the default attributes for this class. This is useful if
973 you want to use the same font or colour in your own control as
974 in a standard control -- which is a much better idea than hard
975 coding specific colours or fonts which might look completely out
976 of place on the users system, especially if it uses themes.
978 The variant parameter is only relevant under Mac currently and is
979 ignore under other platforms. Under Mac, it will change the size of the
980 returned font. See SetWindowVariant for more about this.
982 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
984 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
986 class ListBoxPtr(ListBox
):
987 def __init__(self
, this
):
989 if not hasattr(self
,"thisown"): self
.thisown
= 0
990 self
.__class
__ = ListBox
991 _controls_
.ListBox_swigregister(ListBoxPtr
)
992 ListBoxNameStr
= cvar
.ListBoxNameStr
994 def PreListBox(*args
, **kwargs
):
995 """PreListBox() -> ListBox"""
996 val
= _controls_
.new_PreListBox(*args
, **kwargs
)
1000 def ListBox_GetClassDefaultAttributes(*args
, **kwargs
):
1002 ListBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1004 Get the default attributes for this class. This is useful if
1005 you want to use the same font or colour in your own control as
1006 in a standard control -- which is a much better idea than hard
1007 coding specific colours or fonts which might look completely out
1008 of place on the users system, especially if it uses themes.
1010 The variant parameter is only relevant under Mac currently and is
1011 ignore under other platforms. Under Mac, it will change the size of the
1012 returned font. See SetWindowVariant for more about this.
1014 return _controls_
.ListBox_GetClassDefaultAttributes(*args
, **kwargs
)
1016 #---------------------------------------------------------------------------
1018 class CheckListBox(ListBox
):
1020 return "<%s.%s; proxy of C++ wxCheckListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1021 def __init__(self
, *args
, **kwargs
):
1023 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1024 wxArrayString choices=wxPyEmptyStringArray,
1025 long style=0, Validator validator=DefaultValidator,
1026 String name=ListBoxNameStr) -> CheckListBox
1028 newobj
= _controls_
.new_CheckListBox(*args
, **kwargs
)
1029 self
.this
= newobj
.this
1032 self
._setOORInfo
(self
)
1034 def Create(*args
, **kwargs
):
1036 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1037 wxArrayString choices=wxPyEmptyStringArray,
1038 long style=0, Validator validator=DefaultValidator,
1039 String name=ListBoxNameStr) -> bool
1041 return _controls_
.CheckListBox_Create(*args
, **kwargs
)
1043 def IsChecked(*args
, **kwargs
):
1044 """IsChecked(self, int index) -> bool"""
1045 return _controls_
.CheckListBox_IsChecked(*args
, **kwargs
)
1047 def Check(*args
, **kwargs
):
1048 """Check(self, int index, int check=True)"""
1049 return _controls_
.CheckListBox_Check(*args
, **kwargs
)
1051 def GetItemHeight(*args
, **kwargs
):
1052 """GetItemHeight(self) -> int"""
1053 return _controls_
.CheckListBox_GetItemHeight(*args
, **kwargs
)
1055 def HitTest(*args
, **kwargs
):
1057 HitTest(self, Point pt) -> int
1059 Test where the given (in client coords) point lies
1061 return _controls_
.CheckListBox_HitTest(*args
, **kwargs
)
1063 def HitTestXY(*args
, **kwargs
):
1065 HitTestXY(self, int x, int y) -> int
1067 Test where the given (in client coords) point lies
1069 return _controls_
.CheckListBox_HitTestXY(*args
, **kwargs
)
1072 class CheckListBoxPtr(CheckListBox
):
1073 def __init__(self
, this
):
1075 if not hasattr(self
,"thisown"): self
.thisown
= 0
1076 self
.__class
__ = CheckListBox
1077 _controls_
.CheckListBox_swigregister(CheckListBoxPtr
)
1079 def PreCheckListBox(*args
, **kwargs
):
1080 """PreCheckListBox() -> CheckListBox"""
1081 val
= _controls_
.new_PreCheckListBox(*args
, **kwargs
)
1085 #---------------------------------------------------------------------------
1087 TE_NO_VSCROLL
= _controls_
.TE_NO_VSCROLL
1088 TE_AUTO_SCROLL
= _controls_
.TE_AUTO_SCROLL
1089 TE_READONLY
= _controls_
.TE_READONLY
1090 TE_MULTILINE
= _controls_
.TE_MULTILINE
1091 TE_PROCESS_TAB
= _controls_
.TE_PROCESS_TAB
1092 TE_LEFT
= _controls_
.TE_LEFT
1093 TE_CENTER
= _controls_
.TE_CENTER
1094 TE_RIGHT
= _controls_
.TE_RIGHT
1095 TE_CENTRE
= _controls_
.TE_CENTRE
1096 TE_RICH
= _controls_
.TE_RICH
1097 TE_PROCESS_ENTER
= _controls_
.TE_PROCESS_ENTER
1098 TE_PASSWORD
= _controls_
.TE_PASSWORD
1099 TE_AUTO_URL
= _controls_
.TE_AUTO_URL
1100 TE_NOHIDESEL
= _controls_
.TE_NOHIDESEL
1101 TE_DONTWRAP
= _controls_
.TE_DONTWRAP
1102 TE_LINEWRAP
= _controls_
.TE_LINEWRAP
1103 TE_WORDWRAP
= _controls_
.TE_WORDWRAP
1104 TE_RICH2
= _controls_
.TE_RICH2
1105 TEXT_ALIGNMENT_DEFAULT
= _controls_
.TEXT_ALIGNMENT_DEFAULT
1106 TEXT_ALIGNMENT_LEFT
= _controls_
.TEXT_ALIGNMENT_LEFT
1107 TEXT_ALIGNMENT_CENTRE
= _controls_
.TEXT_ALIGNMENT_CENTRE
1108 TEXT_ALIGNMENT_CENTER
= _controls_
.TEXT_ALIGNMENT_CENTER
1109 TEXT_ALIGNMENT_RIGHT
= _controls_
.TEXT_ALIGNMENT_RIGHT
1110 TEXT_ALIGNMENT_JUSTIFIED
= _controls_
.TEXT_ALIGNMENT_JUSTIFIED
1111 TEXT_ATTR_TEXT_COLOUR
= _controls_
.TEXT_ATTR_TEXT_COLOUR
1112 TEXT_ATTR_BACKGROUND_COLOUR
= _controls_
.TEXT_ATTR_BACKGROUND_COLOUR
1113 TEXT_ATTR_FONT_FACE
= _controls_
.TEXT_ATTR_FONT_FACE
1114 TEXT_ATTR_FONT_SIZE
= _controls_
.TEXT_ATTR_FONT_SIZE
1115 TEXT_ATTR_FONT_WEIGHT
= _controls_
.TEXT_ATTR_FONT_WEIGHT
1116 TEXT_ATTR_FONT_ITALIC
= _controls_
.TEXT_ATTR_FONT_ITALIC
1117 TEXT_ATTR_FONT_UNDERLINE
= _controls_
.TEXT_ATTR_FONT_UNDERLINE
1118 TEXT_ATTR_FONT
= _controls_
.TEXT_ATTR_FONT
1119 TEXT_ATTR_ALIGNMENT
= _controls_
.TEXT_ATTR_ALIGNMENT
1120 TEXT_ATTR_LEFT_INDENT
= _controls_
.TEXT_ATTR_LEFT_INDENT
1121 TEXT_ATTR_RIGHT_INDENT
= _controls_
.TEXT_ATTR_RIGHT_INDENT
1122 TEXT_ATTR_TABS
= _controls_
.TEXT_ATTR_TABS
1123 TE_HT_UNKNOWN
= _controls_
.TE_HT_UNKNOWN
1124 TE_HT_BEFORE
= _controls_
.TE_HT_BEFORE
1125 TE_HT_ON_TEXT
= _controls_
.TE_HT_ON_TEXT
1126 TE_HT_BELOW
= _controls_
.TE_HT_BELOW
1127 TE_HT_BEYOND
= _controls_
.TE_HT_BEYOND
1128 class TextAttr(object):
1130 return "<%s.%s; proxy of C++ wxTextAttr instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1131 def __init__(self
, *args
):
1133 __init__(self) -> TextAttr
1134 __init__(self, Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
1135 int alignment=TEXT_ALIGNMENT_DEFAULT) -> TextAttr
1137 newobj
= _controls_
.new_TextAttr(*args
)
1138 self
.this
= newobj
.this
1141 def __del__(self
, destroy
=_controls_
.delete_TextAttr
):
1144 if self
.thisown
: destroy(self
)
1147 def Init(*args
, **kwargs
):
1149 return _controls_
.TextAttr_Init(*args
, **kwargs
)
1151 def SetTextColour(*args
, **kwargs
):
1152 """SetTextColour(self, Colour colText)"""
1153 return _controls_
.TextAttr_SetTextColour(*args
, **kwargs
)
1155 def SetBackgroundColour(*args
, **kwargs
):
1156 """SetBackgroundColour(self, Colour colBack)"""
1157 return _controls_
.TextAttr_SetBackgroundColour(*args
, **kwargs
)
1159 def SetFont(*args
, **kwargs
):
1160 """SetFont(self, Font font, long flags=TEXT_ATTR_FONT)"""
1161 return _controls_
.TextAttr_SetFont(*args
, **kwargs
)
1163 def SetAlignment(*args
, **kwargs
):
1164 """SetAlignment(self, int alignment)"""
1165 return _controls_
.TextAttr_SetAlignment(*args
, **kwargs
)
1167 def SetTabs(*args
, **kwargs
):
1168 """SetTabs(self, wxArrayInt tabs)"""
1169 return _controls_
.TextAttr_SetTabs(*args
, **kwargs
)
1171 def SetLeftIndent(*args
, **kwargs
):
1172 """SetLeftIndent(self, int indent)"""
1173 return _controls_
.TextAttr_SetLeftIndent(*args
, **kwargs
)
1175 def SetRightIndent(*args
, **kwargs
):
1176 """SetRightIndent(self, int indent)"""
1177 return _controls_
.TextAttr_SetRightIndent(*args
, **kwargs
)
1179 def SetFlags(*args
, **kwargs
):
1180 """SetFlags(self, long flags)"""
1181 return _controls_
.TextAttr_SetFlags(*args
, **kwargs
)
1183 def HasTextColour(*args
, **kwargs
):
1184 """HasTextColour(self) -> bool"""
1185 return _controls_
.TextAttr_HasTextColour(*args
, **kwargs
)
1187 def HasBackgroundColour(*args
, **kwargs
):
1188 """HasBackgroundColour(self) -> bool"""
1189 return _controls_
.TextAttr_HasBackgroundColour(*args
, **kwargs
)
1191 def HasFont(*args
, **kwargs
):
1192 """HasFont(self) -> bool"""
1193 return _controls_
.TextAttr_HasFont(*args
, **kwargs
)
1195 def HasAlignment(*args
, **kwargs
):
1196 """HasAlignment(self) -> bool"""
1197 return _controls_
.TextAttr_HasAlignment(*args
, **kwargs
)
1199 def HasTabs(*args
, **kwargs
):
1200 """HasTabs(self) -> bool"""
1201 return _controls_
.TextAttr_HasTabs(*args
, **kwargs
)
1203 def HasLeftIndent(*args
, **kwargs
):
1204 """HasLeftIndent(self) -> bool"""
1205 return _controls_
.TextAttr_HasLeftIndent(*args
, **kwargs
)
1207 def HasRightIndent(*args
, **kwargs
):
1208 """HasRightIndent(self) -> bool"""
1209 return _controls_
.TextAttr_HasRightIndent(*args
, **kwargs
)
1211 def HasFlag(*args
, **kwargs
):
1212 """HasFlag(self, long flag) -> bool"""
1213 return _controls_
.TextAttr_HasFlag(*args
, **kwargs
)
1215 def GetTextColour(*args
, **kwargs
):
1216 """GetTextColour(self) -> Colour"""
1217 return _controls_
.TextAttr_GetTextColour(*args
, **kwargs
)
1219 def GetBackgroundColour(*args
, **kwargs
):
1220 """GetBackgroundColour(self) -> Colour"""
1221 return _controls_
.TextAttr_GetBackgroundColour(*args
, **kwargs
)
1223 def GetFont(*args
, **kwargs
):
1224 """GetFont(self) -> Font"""
1225 return _controls_
.TextAttr_GetFont(*args
, **kwargs
)
1227 def GetAlignment(*args
, **kwargs
):
1228 """GetAlignment(self) -> int"""
1229 return _controls_
.TextAttr_GetAlignment(*args
, **kwargs
)
1231 def GetTabs(*args
, **kwargs
):
1232 """GetTabs(self) -> wxArrayInt"""
1233 return _controls_
.TextAttr_GetTabs(*args
, **kwargs
)
1235 def GetLeftIndent(*args
, **kwargs
):
1236 """GetLeftIndent(self) -> long"""
1237 return _controls_
.TextAttr_GetLeftIndent(*args
, **kwargs
)
1239 def GetRightIndent(*args
, **kwargs
):
1240 """GetRightIndent(self) -> long"""
1241 return _controls_
.TextAttr_GetRightIndent(*args
, **kwargs
)
1243 def GetFlags(*args
, **kwargs
):
1244 """GetFlags(self) -> long"""
1245 return _controls_
.TextAttr_GetFlags(*args
, **kwargs
)
1247 def IsDefault(*args
, **kwargs
):
1248 """IsDefault(self) -> bool"""
1249 return _controls_
.TextAttr_IsDefault(*args
, **kwargs
)
1251 def Combine(*args
, **kwargs
):
1252 """TextAttr.Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1253 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1255 Combine
= staticmethod(Combine
)
1257 class TextAttrPtr(TextAttr
):
1258 def __init__(self
, this
):
1260 if not hasattr(self
,"thisown"): self
.thisown
= 0
1261 self
.__class
__ = TextAttr
1262 _controls_
.TextAttr_swigregister(TextAttrPtr
)
1263 TextCtrlNameStr
= cvar
.TextCtrlNameStr
1265 def TextAttr_Combine(*args
, **kwargs
):
1266 """TextAttr_Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1267 return _controls_
.TextAttr_Combine(*args
, **kwargs
)
1269 class TextCtrl(_core
.Control
):
1271 return "<%s.%s; proxy of C++ wxTextCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1272 def __init__(self
, *args
, **kwargs
):
1274 __init__(self, Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
1275 Size size=DefaultSize,
1276 long style=0, Validator validator=DefaultValidator,
1277 String name=TextCtrlNameStr) -> TextCtrl
1279 newobj
= _controls_
.new_TextCtrl(*args
, **kwargs
)
1280 self
.this
= newobj
.this
1283 self
._setOORInfo
(self
)
1285 def Create(*args
, **kwargs
):
1287 Create(self, Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
1288 Size size=DefaultSize,
1289 long style=0, Validator validator=DefaultValidator,
1290 String name=TextCtrlNameStr) -> bool
1292 return _controls_
.TextCtrl_Create(*args
, **kwargs
)
1294 def GetValue(*args
, **kwargs
):
1295 """GetValue(self) -> String"""
1296 return _controls_
.TextCtrl_GetValue(*args
, **kwargs
)
1298 def SetValue(*args
, **kwargs
):
1299 """SetValue(self, String value)"""
1300 return _controls_
.TextCtrl_SetValue(*args
, **kwargs
)
1302 def GetRange(*args
, **kwargs
):
1303 """GetRange(self, long from, long to) -> String"""
1304 return _controls_
.TextCtrl_GetRange(*args
, **kwargs
)
1306 def GetLineLength(*args
, **kwargs
):
1307 """GetLineLength(self, long lineNo) -> int"""
1308 return _controls_
.TextCtrl_GetLineLength(*args
, **kwargs
)
1310 def GetLineText(*args
, **kwargs
):
1311 """GetLineText(self, long lineNo) -> String"""
1312 return _controls_
.TextCtrl_GetLineText(*args
, **kwargs
)
1314 def GetNumberOfLines(*args
, **kwargs
):
1315 """GetNumberOfLines(self) -> int"""
1316 return _controls_
.TextCtrl_GetNumberOfLines(*args
, **kwargs
)
1318 def IsModified(*args
, **kwargs
):
1319 """IsModified(self) -> bool"""
1320 return _controls_
.TextCtrl_IsModified(*args
, **kwargs
)
1322 def IsEditable(*args
, **kwargs
):
1323 """IsEditable(self) -> bool"""
1324 return _controls_
.TextCtrl_IsEditable(*args
, **kwargs
)
1326 def IsSingleLine(*args
, **kwargs
):
1327 """IsSingleLine(self) -> bool"""
1328 return _controls_
.TextCtrl_IsSingleLine(*args
, **kwargs
)
1330 def IsMultiLine(*args
, **kwargs
):
1331 """IsMultiLine(self) -> bool"""
1332 return _controls_
.TextCtrl_IsMultiLine(*args
, **kwargs
)
1334 def GetSelection(*args
, **kwargs
):
1336 GetSelection() -> (from, to)
1338 If the return values from and to are the same, there is no selection.
1340 return _controls_
.TextCtrl_GetSelection(*args
, **kwargs
)
1342 def GetStringSelection(*args
, **kwargs
):
1343 """GetStringSelection(self) -> String"""
1344 return _controls_
.TextCtrl_GetStringSelection(*args
, **kwargs
)
1346 def Clear(*args
, **kwargs
):
1348 return _controls_
.TextCtrl_Clear(*args
, **kwargs
)
1350 def Replace(*args
, **kwargs
):
1351 """Replace(self, long from, long to, String value)"""
1352 return _controls_
.TextCtrl_Replace(*args
, **kwargs
)
1354 def Remove(*args
, **kwargs
):
1355 """Remove(self, long from, long to)"""
1356 return _controls_
.TextCtrl_Remove(*args
, **kwargs
)
1358 def LoadFile(*args
, **kwargs
):
1359 """LoadFile(self, String file) -> bool"""
1360 return _controls_
.TextCtrl_LoadFile(*args
, **kwargs
)
1362 def SaveFile(*args
, **kwargs
):
1363 """SaveFile(self, String file=EmptyString) -> bool"""
1364 return _controls_
.TextCtrl_SaveFile(*args
, **kwargs
)
1366 def MarkDirty(*args
, **kwargs
):
1367 """MarkDirty(self)"""
1368 return _controls_
.TextCtrl_MarkDirty(*args
, **kwargs
)
1370 def DiscardEdits(*args
, **kwargs
):
1371 """DiscardEdits(self)"""
1372 return _controls_
.TextCtrl_DiscardEdits(*args
, **kwargs
)
1374 def SetMaxLength(*args
, **kwargs
):
1375 """SetMaxLength(self, unsigned long len)"""
1376 return _controls_
.TextCtrl_SetMaxLength(*args
, **kwargs
)
1378 def WriteText(*args
, **kwargs
):
1379 """WriteText(self, String text)"""
1380 return _controls_
.TextCtrl_WriteText(*args
, **kwargs
)
1382 def AppendText(*args
, **kwargs
):
1383 """AppendText(self, String text)"""
1384 return _controls_
.TextCtrl_AppendText(*args
, **kwargs
)
1386 def EmulateKeyPress(*args
, **kwargs
):
1387 """EmulateKeyPress(self, KeyEvent event) -> bool"""
1388 return _controls_
.TextCtrl_EmulateKeyPress(*args
, **kwargs
)
1390 def SetStyle(*args
, **kwargs
):
1391 """SetStyle(self, long start, long end, TextAttr style) -> bool"""
1392 return _controls_
.TextCtrl_SetStyle(*args
, **kwargs
)
1394 def GetStyle(*args
, **kwargs
):
1395 """GetStyle(self, long position, TextAttr style) -> bool"""
1396 return _controls_
.TextCtrl_GetStyle(*args
, **kwargs
)
1398 def SetDefaultStyle(*args
, **kwargs
):
1399 """SetDefaultStyle(self, TextAttr style) -> bool"""
1400 return _controls_
.TextCtrl_SetDefaultStyle(*args
, **kwargs
)
1402 def GetDefaultStyle(*args
, **kwargs
):
1403 """GetDefaultStyle(self) -> TextAttr"""
1404 return _controls_
.TextCtrl_GetDefaultStyle(*args
, **kwargs
)
1406 def XYToPosition(*args
, **kwargs
):
1407 """XYToPosition(self, long x, long y) -> long"""
1408 return _controls_
.TextCtrl_XYToPosition(*args
, **kwargs
)
1410 def PositionToXY(*args
, **kwargs
):
1411 """PositionToXY(long pos) -> (x, y)"""
1412 return _controls_
.TextCtrl_PositionToXY(*args
, **kwargs
)
1414 def ShowPosition(*args
, **kwargs
):
1415 """ShowPosition(self, long pos)"""
1416 return _controls_
.TextCtrl_ShowPosition(*args
, **kwargs
)
1418 def HitTest(*args
, **kwargs
):
1420 HitTest(Point pt) -> (result, row, col)
1422 Find the character at position given in pixels.
1423 NB: pt is in device coords (not adjusted for the client area
1424 origin nor scrolling)
1426 return _controls_
.TextCtrl_HitTest(*args
, **kwargs
)
1428 def Copy(*args
, **kwargs
):
1430 return _controls_
.TextCtrl_Copy(*args
, **kwargs
)
1432 def Cut(*args
, **kwargs
):
1434 return _controls_
.TextCtrl_Cut(*args
, **kwargs
)
1436 def Paste(*args
, **kwargs
):
1438 return _controls_
.TextCtrl_Paste(*args
, **kwargs
)
1440 def CanCopy(*args
, **kwargs
):
1441 """CanCopy(self) -> bool"""
1442 return _controls_
.TextCtrl_CanCopy(*args
, **kwargs
)
1444 def CanCut(*args
, **kwargs
):
1445 """CanCut(self) -> bool"""
1446 return _controls_
.TextCtrl_CanCut(*args
, **kwargs
)
1448 def CanPaste(*args
, **kwargs
):
1449 """CanPaste(self) -> bool"""
1450 return _controls_
.TextCtrl_CanPaste(*args
, **kwargs
)
1452 def Undo(*args
, **kwargs
):
1454 return _controls_
.TextCtrl_Undo(*args
, **kwargs
)
1456 def Redo(*args
, **kwargs
):
1458 return _controls_
.TextCtrl_Redo(*args
, **kwargs
)
1460 def CanUndo(*args
, **kwargs
):
1461 """CanUndo(self) -> bool"""
1462 return _controls_
.TextCtrl_CanUndo(*args
, **kwargs
)
1464 def CanRedo(*args
, **kwargs
):
1465 """CanRedo(self) -> bool"""
1466 return _controls_
.TextCtrl_CanRedo(*args
, **kwargs
)
1468 def SetInsertionPoint(*args
, **kwargs
):
1469 """SetInsertionPoint(self, long pos)"""
1470 return _controls_
.TextCtrl_SetInsertionPoint(*args
, **kwargs
)
1472 def SetInsertionPointEnd(*args
, **kwargs
):
1473 """SetInsertionPointEnd(self)"""
1474 return _controls_
.TextCtrl_SetInsertionPointEnd(*args
, **kwargs
)
1476 def GetInsertionPoint(*args
, **kwargs
):
1477 """GetInsertionPoint(self) -> long"""
1478 return _controls_
.TextCtrl_GetInsertionPoint(*args
, **kwargs
)
1480 def GetLastPosition(*args
, **kwargs
):
1481 """GetLastPosition(self) -> long"""
1482 return _controls_
.TextCtrl_GetLastPosition(*args
, **kwargs
)
1484 def SetSelection(*args
, **kwargs
):
1485 """SetSelection(self, long from, long to)"""
1486 return _controls_
.TextCtrl_SetSelection(*args
, **kwargs
)
1488 def SelectAll(*args
, **kwargs
):
1489 """SelectAll(self)"""
1490 return _controls_
.TextCtrl_SelectAll(*args
, **kwargs
)
1492 def SetEditable(*args
, **kwargs
):
1493 """SetEditable(self, bool editable)"""
1494 return _controls_
.TextCtrl_SetEditable(*args
, **kwargs
)
1496 def ShowNativeCaret(*args
, **kwargs
):
1497 """ShowNativeCaret(self, bool show=True) -> bool"""
1498 return _controls_
.TextCtrl_ShowNativeCaret(*args
, **kwargs
)
1500 def HideNativeCaret(*args
, **kwargs
):
1501 """HideNativeCaret(self) -> bool"""
1502 return _controls_
.TextCtrl_HideNativeCaret(*args
, **kwargs
)
1504 def write(*args
, **kwargs
):
1505 """write(self, String text)"""
1506 return _controls_
.TextCtrl_write(*args
, **kwargs
)
1508 def GetString(*args
, **kwargs
):
1509 """GetString(self, long from, long to) -> String"""
1510 return _controls_
.TextCtrl_GetString(*args
, **kwargs
)
1513 class TextCtrlPtr(TextCtrl
):
1514 def __init__(self
, this
):
1516 if not hasattr(self
,"thisown"): self
.thisown
= 0
1517 self
.__class
__ = TextCtrl
1518 _controls_
.TextCtrl_swigregister(TextCtrlPtr
)
1520 def PreTextCtrl(*args
, **kwargs
):
1521 """PreTextCtrl() -> TextCtrl"""
1522 val
= _controls_
.new_PreTextCtrl(*args
, **kwargs
)
1526 wxEVT_COMMAND_TEXT_UPDATED
= _controls_
.wxEVT_COMMAND_TEXT_UPDATED
1527 wxEVT_COMMAND_TEXT_ENTER
= _controls_
.wxEVT_COMMAND_TEXT_ENTER
1528 wxEVT_COMMAND_TEXT_URL
= _controls_
.wxEVT_COMMAND_TEXT_URL
1529 wxEVT_COMMAND_TEXT_MAXLEN
= _controls_
.wxEVT_COMMAND_TEXT_MAXLEN
1530 class TextUrlEvent(_core
.CommandEvent
):
1532 return "<%s.%s; proxy of C++ wxTextUrlEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1533 def __init__(self
, *args
, **kwargs
):
1534 """__init__(self, int winid, MouseEvent evtMouse, long start, long end) -> TextUrlEvent"""
1535 newobj
= _controls_
.new_TextUrlEvent(*args
, **kwargs
)
1536 self
.this
= newobj
.this
1539 def GetMouseEvent(*args
, **kwargs
):
1540 """GetMouseEvent(self) -> MouseEvent"""
1541 return _controls_
.TextUrlEvent_GetMouseEvent(*args
, **kwargs
)
1543 def GetURLStart(*args
, **kwargs
):
1544 """GetURLStart(self) -> long"""
1545 return _controls_
.TextUrlEvent_GetURLStart(*args
, **kwargs
)
1547 def GetURLEnd(*args
, **kwargs
):
1548 """GetURLEnd(self) -> long"""
1549 return _controls_
.TextUrlEvent_GetURLEnd(*args
, **kwargs
)
1552 class TextUrlEventPtr(TextUrlEvent
):
1553 def __init__(self
, this
):
1555 if not hasattr(self
,"thisown"): self
.thisown
= 0
1556 self
.__class
__ = TextUrlEvent
1557 _controls_
.TextUrlEvent_swigregister(TextUrlEventPtr
)
1559 EVT_TEXT
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED
, 1)
1560 EVT_TEXT_ENTER
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER
, 1)
1561 EVT_TEXT_URL
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_URL
, 1)
1562 EVT_TEXT_MAXLEN
= wx
.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN
, 1)
1564 #---------------------------------------------------------------------------
1566 class ScrollBar(_core
.Control
):
1568 return "<%s.%s; proxy of C++ wxScrollBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1569 def __init__(self
, *args
, **kwargs
):
1571 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1572 Size size=DefaultSize, long style=SB_HORIZONTAL,
1573 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> ScrollBar
1575 newobj
= _controls_
.new_ScrollBar(*args
, **kwargs
)
1576 self
.this
= newobj
.this
1579 self
._setOORInfo
(self
)
1581 def Create(*args
, **kwargs
):
1583 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1584 Size size=DefaultSize, long style=SB_HORIZONTAL,
1585 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> bool
1587 Do the 2nd phase and create the GUI control.
1589 return _controls_
.ScrollBar_Create(*args
, **kwargs
)
1591 def GetThumbPosition(*args
, **kwargs
):
1592 """GetThumbPosition(self) -> int"""
1593 return _controls_
.ScrollBar_GetThumbPosition(*args
, **kwargs
)
1595 def GetThumbSize(*args
, **kwargs
):
1596 """GetThumbSize(self) -> int"""
1597 return _controls_
.ScrollBar_GetThumbSize(*args
, **kwargs
)
1599 GetThumbLength
= GetThumbSize
1600 def GetPageSize(*args
, **kwargs
):
1601 """GetPageSize(self) -> int"""
1602 return _controls_
.ScrollBar_GetPageSize(*args
, **kwargs
)
1604 def GetRange(*args
, **kwargs
):
1605 """GetRange(self) -> int"""
1606 return _controls_
.ScrollBar_GetRange(*args
, **kwargs
)
1608 def IsVertical(*args
, **kwargs
):
1609 """IsVertical(self) -> bool"""
1610 return _controls_
.ScrollBar_IsVertical(*args
, **kwargs
)
1612 def SetThumbPosition(*args
, **kwargs
):
1613 """SetThumbPosition(self, int viewStart)"""
1614 return _controls_
.ScrollBar_SetThumbPosition(*args
, **kwargs
)
1616 def SetScrollbar(*args
, **kwargs
):
1618 SetScrollbar(self, int position, int thumbSize, int range, int pageSize,
1621 Sets the scrollbar properties of a built-in scrollbar.
1623 orientation: Determines the scrollbar whose page size is to be
1624 set. May be wx.HORIZONTAL or wx.VERTICAL.
1626 position: The position of the scrollbar in scroll units.
1628 thumbSize: The size of the thumb, or visible portion of the
1629 scrollbar, in scroll units.
1631 range: The maximum position of the scrollbar.
1633 refresh: True to redraw the scrollbar, false otherwise.
1635 return _controls_
.ScrollBar_SetScrollbar(*args
, **kwargs
)
1638 class ScrollBarPtr(ScrollBar
):
1639 def __init__(self
, this
):
1641 if not hasattr(self
,"thisown"): self
.thisown
= 0
1642 self
.__class
__ = ScrollBar
1643 _controls_
.ScrollBar_swigregister(ScrollBarPtr
)
1644 ScrollBarNameStr
= cvar
.ScrollBarNameStr
1646 def PreScrollBar(*args
, **kwargs
):
1647 """PreScrollBar() -> ScrollBar"""
1648 val
= _controls_
.new_PreScrollBar(*args
, **kwargs
)
1652 #---------------------------------------------------------------------------
1654 SP_HORIZONTAL
= _controls_
.SP_HORIZONTAL
1655 SP_VERTICAL
= _controls_
.SP_VERTICAL
1656 SP_ARROW_KEYS
= _controls_
.SP_ARROW_KEYS
1657 SP_WRAP
= _controls_
.SP_WRAP
1658 class SpinButton(_core
.Control
):
1660 return "<%s.%s; proxy of C++ wxSpinButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1661 def __init__(self
, *args
, **kwargs
):
1663 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1664 Size size=DefaultSize, long style=SP_HORIZONTAL,
1665 String name=SPIN_BUTTON_NAME) -> SpinButton
1667 newobj
= _controls_
.new_SpinButton(*args
, **kwargs
)
1668 self
.this
= newobj
.this
1671 self
._setOORInfo
(self
)
1673 def Create(*args
, **kwargs
):
1675 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1676 Size size=DefaultSize, long style=SP_HORIZONTAL,
1677 String name=SPIN_BUTTON_NAME) -> bool
1679 return _controls_
.SpinButton_Create(*args
, **kwargs
)
1681 def GetValue(*args
, **kwargs
):
1682 """GetValue(self) -> int"""
1683 return _controls_
.SpinButton_GetValue(*args
, **kwargs
)
1685 def GetMin(*args
, **kwargs
):
1686 """GetMin(self) -> int"""
1687 return _controls_
.SpinButton_GetMin(*args
, **kwargs
)
1689 def GetMax(*args
, **kwargs
):
1690 """GetMax(self) -> int"""
1691 return _controls_
.SpinButton_GetMax(*args
, **kwargs
)
1693 def SetValue(*args
, **kwargs
):
1694 """SetValue(self, int val)"""
1695 return _controls_
.SpinButton_SetValue(*args
, **kwargs
)
1697 def SetMin(*args
, **kwargs
):
1698 """SetMin(self, int minVal)"""
1699 return _controls_
.SpinButton_SetMin(*args
, **kwargs
)
1701 def SetMax(*args
, **kwargs
):
1702 """SetMax(self, int maxVal)"""
1703 return _controls_
.SpinButton_SetMax(*args
, **kwargs
)
1705 def SetRange(*args
, **kwargs
):
1706 """SetRange(self, int minVal, int maxVal)"""
1707 return _controls_
.SpinButton_SetRange(*args
, **kwargs
)
1709 def IsVertical(*args
, **kwargs
):
1710 """IsVertical(self) -> bool"""
1711 return _controls_
.SpinButton_IsVertical(*args
, **kwargs
)
1714 class SpinButtonPtr(SpinButton
):
1715 def __init__(self
, this
):
1717 if not hasattr(self
,"thisown"): self
.thisown
= 0
1718 self
.__class
__ = SpinButton
1719 _controls_
.SpinButton_swigregister(SpinButtonPtr
)
1720 SPIN_BUTTON_NAME
= cvar
.SPIN_BUTTON_NAME
1721 SpinCtrlNameStr
= cvar
.SpinCtrlNameStr
1723 def PreSpinButton(*args
, **kwargs
):
1724 """PreSpinButton() -> SpinButton"""
1725 val
= _controls_
.new_PreSpinButton(*args
, **kwargs
)
1729 class SpinCtrl(_core
.Control
):
1731 return "<%s.%s; proxy of C++ wxSpinCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1732 def __init__(self
, *args
, **kwargs
):
1734 __init__(self, Window parent, int id=-1, String value=EmptyString,
1735 Point pos=DefaultPosition, Size size=DefaultSize,
1736 long style=SP_ARROW_KEYS, int min=0, int max=100,
1737 int initial=0, String name=SpinCtrlNameStr) -> SpinCtrl
1739 newobj
= _controls_
.new_SpinCtrl(*args
, **kwargs
)
1740 self
.this
= newobj
.this
1743 self
._setOORInfo
(self
)
1745 def Create(*args
, **kwargs
):
1747 Create(self, Window parent, int id=-1, String value=EmptyString,
1748 Point pos=DefaultPosition, Size size=DefaultSize,
1749 long style=SP_ARROW_KEYS, int min=0, int max=100,
1750 int initial=0, String name=SpinCtrlNameStr) -> bool
1752 return _controls_
.SpinCtrl_Create(*args
, **kwargs
)
1754 def GetValue(*args
, **kwargs
):
1755 """GetValue(self) -> int"""
1756 return _controls_
.SpinCtrl_GetValue(*args
, **kwargs
)
1758 def SetValue(*args
, **kwargs
):
1759 """SetValue(self, int value)"""
1760 return _controls_
.SpinCtrl_SetValue(*args
, **kwargs
)
1762 def SetValueString(*args
, **kwargs
):
1763 """SetValueString(self, String text)"""
1764 return _controls_
.SpinCtrl_SetValueString(*args
, **kwargs
)
1766 def SetRange(*args
, **kwargs
):
1767 """SetRange(self, int minVal, int maxVal)"""
1768 return _controls_
.SpinCtrl_SetRange(*args
, **kwargs
)
1770 def GetMin(*args
, **kwargs
):
1771 """GetMin(self) -> int"""
1772 return _controls_
.SpinCtrl_GetMin(*args
, **kwargs
)
1774 def GetMax(*args
, **kwargs
):
1775 """GetMax(self) -> int"""
1776 return _controls_
.SpinCtrl_GetMax(*args
, **kwargs
)
1778 def SetSelection(*args
, **kwargs
):
1779 """SetSelection(self, long from, long to)"""
1780 return _controls_
.SpinCtrl_SetSelection(*args
, **kwargs
)
1783 class SpinCtrlPtr(SpinCtrl
):
1784 def __init__(self
, this
):
1786 if not hasattr(self
,"thisown"): self
.thisown
= 0
1787 self
.__class
__ = SpinCtrl
1788 _controls_
.SpinCtrl_swigregister(SpinCtrlPtr
)
1790 def PreSpinCtrl(*args
, **kwargs
):
1791 """PreSpinCtrl() -> SpinCtrl"""
1792 val
= _controls_
.new_PreSpinCtrl(*args
, **kwargs
)
1796 class SpinEvent(_core
.NotifyEvent
):
1798 return "<%s.%s; proxy of C++ wxSpinEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1799 def __init__(self
, *args
, **kwargs
):
1800 """__init__(self, wxEventType commandType=wxEVT_NULL, int winid=0) -> SpinEvent"""
1801 newobj
= _controls_
.new_SpinEvent(*args
, **kwargs
)
1802 self
.this
= newobj
.this
1805 def GetPosition(*args
, **kwargs
):
1806 """GetPosition(self) -> int"""
1807 return _controls_
.SpinEvent_GetPosition(*args
, **kwargs
)
1809 def SetPosition(*args
, **kwargs
):
1810 """SetPosition(self, int pos)"""
1811 return _controls_
.SpinEvent_SetPosition(*args
, **kwargs
)
1814 class SpinEventPtr(SpinEvent
):
1815 def __init__(self
, this
):
1817 if not hasattr(self
,"thisown"): self
.thisown
= 0
1818 self
.__class
__ = SpinEvent
1819 _controls_
.SpinEvent_swigregister(SpinEventPtr
)
1821 wxEVT_COMMAND_SPINCTRL_UPDATED
= _controls_
.wxEVT_COMMAND_SPINCTRL_UPDATED
1822 EVT_SPIN_UP
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEUP
, 1)
1823 EVT_SPIN_DOWN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_LINEDOWN
, 1)
1824 EVT_SPIN
= wx
.PyEventBinder( wx
.wxEVT_SCROLL_THUMBTRACK
, 1)
1825 EVT_SPINCTRL
= wx
.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED
, 1)
1827 #---------------------------------------------------------------------------
1829 class RadioBox(_core
.Control
):
1831 return "<%s.%s; proxy of C++ wxRadioBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1832 def __init__(self
, *args
, **kwargs
):
1834 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
1835 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1836 int majorDimension=0,
1837 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
1838 String name=RadioBoxNameStr) -> RadioBox
1840 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
1841 newobj
= _controls_
.new_RadioBox(*args
, **kwargs
)
1842 self
.this
= newobj
.this
1845 self
._setOORInfo
(self
)
1847 def Create(*args
, **kwargs
):
1849 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
1850 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1851 int majorDimension=0,
1852 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
1853 String name=RadioBoxNameStr) -> bool
1855 return _controls_
.RadioBox_Create(*args
, **kwargs
)
1857 def SetSelection(*args
, **kwargs
):
1858 """SetSelection(self, int n)"""
1859 return _controls_
.RadioBox_SetSelection(*args
, **kwargs
)
1861 def GetSelection(*args
, **kwargs
):
1862 """GetSelection(self) -> int"""
1863 return _controls_
.RadioBox_GetSelection(*args
, **kwargs
)
1865 def GetStringSelection(*args
, **kwargs
):
1866 """GetStringSelection(self) -> String"""
1867 return _controls_
.RadioBox_GetStringSelection(*args
, **kwargs
)
1869 def SetStringSelection(*args
, **kwargs
):
1870 """SetStringSelection(self, String s) -> bool"""
1871 return _controls_
.RadioBox_SetStringSelection(*args
, **kwargs
)
1873 def GetCount(*args
, **kwargs
):
1874 """GetCount(self) -> int"""
1875 return _controls_
.RadioBox_GetCount(*args
, **kwargs
)
1877 def FindString(*args
, **kwargs
):
1878 """FindString(self, String s) -> int"""
1879 return _controls_
.RadioBox_FindString(*args
, **kwargs
)
1881 def GetString(*args
, **kwargs
):
1882 """GetString(self, int n) -> String"""
1883 return _controls_
.RadioBox_GetString(*args
, **kwargs
)
1885 def SetString(*args
, **kwargs
):
1886 """SetString(self, int n, String label)"""
1887 return _controls_
.RadioBox_SetString(*args
, **kwargs
)
1889 GetItemLabel
= GetString
1890 SetItemLabel
= SetString
1891 def EnableItem(*args
, **kwargs
):
1892 """EnableItem(self, int n, bool enable=True)"""
1893 return _controls_
.RadioBox_EnableItem(*args
, **kwargs
)
1895 def ShowItem(*args
, **kwargs
):
1896 """ShowItem(self, int n, bool show=True)"""
1897 return _controls_
.RadioBox_ShowItem(*args
, **kwargs
)
1899 def GetColumnCount(*args
, **kwargs
):
1900 """GetColumnCount(self) -> int"""
1901 return _controls_
.RadioBox_GetColumnCount(*args
, **kwargs
)
1903 def GetRowCount(*args
, **kwargs
):
1904 """GetRowCount(self) -> int"""
1905 return _controls_
.RadioBox_GetRowCount(*args
, **kwargs
)
1907 def GetNextItem(*args
, **kwargs
):
1908 """GetNextItem(self, int item, int dir, long style) -> int"""
1909 return _controls_
.RadioBox_GetNextItem(*args
, **kwargs
)
1912 class RadioBoxPtr(RadioBox
):
1913 def __init__(self
, this
):
1915 if not hasattr(self
,"thisown"): self
.thisown
= 0
1916 self
.__class
__ = RadioBox
1917 _controls_
.RadioBox_swigregister(RadioBoxPtr
)
1918 RadioBoxNameStr
= cvar
.RadioBoxNameStr
1919 RadioButtonNameStr
= cvar
.RadioButtonNameStr
1921 def PreRadioBox(*args
, **kwargs
):
1922 """PreRadioBox() -> RadioBox"""
1923 val
= _controls_
.new_PreRadioBox(*args
, **kwargs
)
1927 #---------------------------------------------------------------------------
1929 class RadioButton(_core
.Control
):
1931 return "<%s.%s; proxy of C++ wxRadioButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1932 def __init__(self
, *args
, **kwargs
):
1934 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
1935 Size size=DefaultSize, long style=0,
1936 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -> RadioButton
1938 newobj
= _controls_
.new_RadioButton(*args
, **kwargs
)
1939 self
.this
= newobj
.this
1942 self
._setOORInfo
(self
)
1944 def Create(*args
, **kwargs
):
1946 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
1947 Size size=DefaultSize, long style=0,
1948 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -> bool
1950 return _controls_
.RadioButton_Create(*args
, **kwargs
)
1952 def GetValue(*args
, **kwargs
):
1953 """GetValue(self) -> bool"""
1954 return _controls_
.RadioButton_GetValue(*args
, **kwargs
)
1956 def SetValue(*args
, **kwargs
):
1957 """SetValue(self, bool value)"""
1958 return _controls_
.RadioButton_SetValue(*args
, **kwargs
)
1961 class RadioButtonPtr(RadioButton
):
1962 def __init__(self
, this
):
1964 if not hasattr(self
,"thisown"): self
.thisown
= 0
1965 self
.__class
__ = RadioButton
1966 _controls_
.RadioButton_swigregister(RadioButtonPtr
)
1968 def PreRadioButton(*args
, **kwargs
):
1969 """PreRadioButton() -> RadioButton"""
1970 val
= _controls_
.new_PreRadioButton(*args
, **kwargs
)
1974 #---------------------------------------------------------------------------
1976 class Slider(_core
.Control
):
1978 return "<%s.%s; proxy of C++ wxSlider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1979 def __init__(self
, *args
, **kwargs
):
1981 __init__(self, Window parent, int id, int value, int minValue, int maxValue,
1982 Point pos=DefaultPosition, Size size=DefaultSize,
1983 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
1984 String name=SliderNameStr) -> Slider
1986 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
1987 newobj
= _controls_
.new_Slider(*args
, **kwargs
)
1988 self
.this
= newobj
.this
1991 self
._setOORInfo
(self
)
1993 def Create(*args
, **kwargs
):
1995 Create(self, Window parent, int id, int value, int minValue, int maxValue,
1996 Point pos=DefaultPosition, Size size=DefaultSize,
1997 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
1998 String name=SliderNameStr) -> bool
2000 return _controls_
.Slider_Create(*args
, **kwargs
)
2002 def GetValue(*args
, **kwargs
):
2003 """GetValue(self) -> int"""
2004 return _controls_
.Slider_GetValue(*args
, **kwargs
)
2006 def SetValue(*args
, **kwargs
):
2007 """SetValue(self, int value)"""
2008 return _controls_
.Slider_SetValue(*args
, **kwargs
)
2010 def SetRange(*args
, **kwargs
):
2011 """SetRange(self, int minValue, int maxValue)"""
2012 return _controls_
.Slider_SetRange(*args
, **kwargs
)
2014 def GetMin(*args
, **kwargs
):
2015 """GetMin(self) -> int"""
2016 return _controls_
.Slider_GetMin(*args
, **kwargs
)
2018 def GetMax(*args
, **kwargs
):
2019 """GetMax(self) -> int"""
2020 return _controls_
.Slider_GetMax(*args
, **kwargs
)
2022 def SetMin(*args
, **kwargs
):
2023 """SetMin(self, int minValue)"""
2024 return _controls_
.Slider_SetMin(*args
, **kwargs
)
2026 def SetMax(*args
, **kwargs
):
2027 """SetMax(self, int maxValue)"""
2028 return _controls_
.Slider_SetMax(*args
, **kwargs
)
2030 def SetLineSize(*args
, **kwargs
):
2031 """SetLineSize(self, int lineSize)"""
2032 return _controls_
.Slider_SetLineSize(*args
, **kwargs
)
2034 def SetPageSize(*args
, **kwargs
):
2035 """SetPageSize(self, int pageSize)"""
2036 return _controls_
.Slider_SetPageSize(*args
, **kwargs
)
2038 def GetLineSize(*args
, **kwargs
):
2039 """GetLineSize(self) -> int"""
2040 return _controls_
.Slider_GetLineSize(*args
, **kwargs
)
2042 def GetPageSize(*args
, **kwargs
):
2043 """GetPageSize(self) -> int"""
2044 return _controls_
.Slider_GetPageSize(*args
, **kwargs
)
2046 def SetThumbLength(*args
, **kwargs
):
2047 """SetThumbLength(self, int lenPixels)"""
2048 return _controls_
.Slider_SetThumbLength(*args
, **kwargs
)
2050 def GetThumbLength(*args
, **kwargs
):
2051 """GetThumbLength(self) -> int"""
2052 return _controls_
.Slider_GetThumbLength(*args
, **kwargs
)
2054 def SetTickFreq(*args
, **kwargs
):
2055 """SetTickFreq(self, int n, int pos=1)"""
2056 return _controls_
.Slider_SetTickFreq(*args
, **kwargs
)
2058 def GetTickFreq(*args
, **kwargs
):
2059 """GetTickFreq(self) -> int"""
2060 return _controls_
.Slider_GetTickFreq(*args
, **kwargs
)
2062 def ClearTicks(*args
, **kwargs
):
2063 """ClearTicks(self)"""
2064 return _controls_
.Slider_ClearTicks(*args
, **kwargs
)
2066 def SetTick(*args
, **kwargs
):
2067 """SetTick(self, int tickPos)"""
2068 return _controls_
.Slider_SetTick(*args
, **kwargs
)
2070 def ClearSel(*args
, **kwargs
):
2071 """ClearSel(self)"""
2072 return _controls_
.Slider_ClearSel(*args
, **kwargs
)
2074 def GetSelEnd(*args
, **kwargs
):
2075 """GetSelEnd(self) -> int"""
2076 return _controls_
.Slider_GetSelEnd(*args
, **kwargs
)
2078 def GetSelStart(*args
, **kwargs
):
2079 """GetSelStart(self) -> int"""
2080 return _controls_
.Slider_GetSelStart(*args
, **kwargs
)
2082 def SetSelection(*args
, **kwargs
):
2083 """SetSelection(self, int min, int max)"""
2084 return _controls_
.Slider_SetSelection(*args
, **kwargs
)
2087 class SliderPtr(Slider
):
2088 def __init__(self
, this
):
2090 if not hasattr(self
,"thisown"): self
.thisown
= 0
2091 self
.__class
__ = Slider
2092 _controls_
.Slider_swigregister(SliderPtr
)
2093 SliderNameStr
= cvar
.SliderNameStr
2095 def PreSlider(*args
, **kwargs
):
2096 """PreSlider() -> Slider"""
2097 val
= _controls_
.new_PreSlider(*args
, **kwargs
)
2101 #---------------------------------------------------------------------------
2103 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
= _controls_
.wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
2104 EVT_TOGGLEBUTTON
= wx
.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
, 1)
2106 class ToggleButton(_core
.Control
):
2108 return "<%s.%s; proxy of C++ wxToggleButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2109 def __init__(self
, *args
, **kwargs
):
2111 __init__(self, Window parent, int id, String label, Point pos=DefaultPosition,
2112 Size size=DefaultSize, long style=0,
2113 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -> ToggleButton
2115 newobj
= _controls_
.new_ToggleButton(*args
, **kwargs
)
2116 self
.this
= newobj
.this
2119 self
._setOORInfo
(self
)
2121 def Create(*args
, **kwargs
):
2123 Create(self, Window parent, int id, String label, Point pos=DefaultPosition,
2124 Size size=DefaultSize, long style=0,
2125 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -> bool
2127 return _controls_
.ToggleButton_Create(*args
, **kwargs
)
2129 def SetValue(*args
, **kwargs
):
2130 """SetValue(self, bool value)"""
2131 return _controls_
.ToggleButton_SetValue(*args
, **kwargs
)
2133 def GetValue(*args
, **kwargs
):
2134 """GetValue(self) -> bool"""
2135 return _controls_
.ToggleButton_GetValue(*args
, **kwargs
)
2137 def SetLabel(*args
, **kwargs
):
2139 SetLabel(self, String label)
2141 Sets the item's text.
2143 return _controls_
.ToggleButton_SetLabel(*args
, **kwargs
)
2146 class ToggleButtonPtr(ToggleButton
):
2147 def __init__(self
, this
):
2149 if not hasattr(self
,"thisown"): self
.thisown
= 0
2150 self
.__class
__ = ToggleButton
2151 _controls_
.ToggleButton_swigregister(ToggleButtonPtr
)
2152 ToggleButtonNameStr
= cvar
.ToggleButtonNameStr
2154 def PreToggleButton(*args
, **kwargs
):
2155 """PreToggleButton() -> ToggleButton"""
2156 val
= _controls_
.new_PreToggleButton(*args
, **kwargs
)
2160 #---------------------------------------------------------------------------
2162 class BookCtrl(_core
.Control
):
2163 def __init__(self
): raise RuntimeError, "No constructor defined"
2165 return "<%s.%s; proxy of C++ wxBookCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2166 def GetPageCount(*args
, **kwargs
):
2167 """GetPageCount(self) -> size_t"""
2168 return _controls_
.BookCtrl_GetPageCount(*args
, **kwargs
)
2170 def GetPage(*args
, **kwargs
):
2171 """GetPage(self, size_t n) -> Window"""
2172 return _controls_
.BookCtrl_GetPage(*args
, **kwargs
)
2174 def GetSelection(*args
, **kwargs
):
2175 """GetSelection(self) -> int"""
2176 return _controls_
.BookCtrl_GetSelection(*args
, **kwargs
)
2178 def SetPageText(*args
, **kwargs
):
2179 """SetPageText(self, size_t n, String strText) -> bool"""
2180 return _controls_
.BookCtrl_SetPageText(*args
, **kwargs
)
2182 def GetPageText(*args
, **kwargs
):
2183 """GetPageText(self, size_t n) -> String"""
2184 return _controls_
.BookCtrl_GetPageText(*args
, **kwargs
)
2186 def SetImageList(*args
, **kwargs
):
2187 """SetImageList(self, ImageList imageList)"""
2188 return _controls_
.BookCtrl_SetImageList(*args
, **kwargs
)
2190 def AssignImageList(*args
, **kwargs
):
2191 """AssignImageList(self, ImageList imageList)"""
2192 return _controls_
.BookCtrl_AssignImageList(*args
, **kwargs
)
2194 def GetImageList(*args
, **kwargs
):
2195 """GetImageList(self) -> ImageList"""
2196 return _controls_
.BookCtrl_GetImageList(*args
, **kwargs
)
2198 def GetPageImage(*args
, **kwargs
):
2199 """GetPageImage(self, size_t n) -> int"""
2200 return _controls_
.BookCtrl_GetPageImage(*args
, **kwargs
)
2202 def SetPageImage(*args
, **kwargs
):
2203 """SetPageImage(self, size_t n, int imageId) -> bool"""
2204 return _controls_
.BookCtrl_SetPageImage(*args
, **kwargs
)
2206 def SetPageSize(*args
, **kwargs
):
2207 """SetPageSize(self, Size size)"""
2208 return _controls_
.BookCtrl_SetPageSize(*args
, **kwargs
)
2210 def CalcSizeFromPage(*args
, **kwargs
):
2211 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2212 return _controls_
.BookCtrl_CalcSizeFromPage(*args
, **kwargs
)
2214 def DeletePage(*args
, **kwargs
):
2215 """DeletePage(self, size_t n) -> bool"""
2216 return _controls_
.BookCtrl_DeletePage(*args
, **kwargs
)
2218 def RemovePage(*args
, **kwargs
):
2219 """RemovePage(self, size_t n) -> bool"""
2220 return _controls_
.BookCtrl_RemovePage(*args
, **kwargs
)
2222 def DeleteAllPages(*args
, **kwargs
):
2223 """DeleteAllPages(self) -> bool"""
2224 return _controls_
.BookCtrl_DeleteAllPages(*args
, **kwargs
)
2226 def AddPage(*args
, **kwargs
):
2227 """AddPage(self, Window page, String text, bool select=False, int imageId=-1) -> bool"""
2228 return _controls_
.BookCtrl_AddPage(*args
, **kwargs
)
2230 def InsertPage(*args
, **kwargs
):
2232 InsertPage(self, size_t n, Window page, String text, bool select=False,
2233 int imageId=-1) -> bool
2235 return _controls_
.BookCtrl_InsertPage(*args
, **kwargs
)
2237 def SetSelection(*args
, **kwargs
):
2238 """SetSelection(self, size_t n) -> int"""
2239 return _controls_
.BookCtrl_SetSelection(*args
, **kwargs
)
2241 def AdvanceSelection(*args
, **kwargs
):
2242 """AdvanceSelection(self, bool forward=True)"""
2243 return _controls_
.BookCtrl_AdvanceSelection(*args
, **kwargs
)
2246 class BookCtrlPtr(BookCtrl
):
2247 def __init__(self
, this
):
2249 if not hasattr(self
,"thisown"): self
.thisown
= 0
2250 self
.__class
__ = BookCtrl
2251 _controls_
.BookCtrl_swigregister(BookCtrlPtr
)
2252 NOTEBOOK_NAME
= cvar
.NOTEBOOK_NAME
2254 class BookCtrlEvent(_core
.NotifyEvent
):
2256 return "<%s.%s; proxy of C++ wxBookCtrlEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2257 def __init__(self
, *args
, **kwargs
):
2259 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2260 int nOldSel=-1) -> BookCtrlEvent
2262 newobj
= _controls_
.new_BookCtrlEvent(*args
, **kwargs
)
2263 self
.this
= newobj
.this
2266 def GetSelection(*args
, **kwargs
):
2267 """GetSelection(self) -> int"""
2268 return _controls_
.BookCtrlEvent_GetSelection(*args
, **kwargs
)
2270 def SetSelection(*args
, **kwargs
):
2271 """SetSelection(self, int nSel)"""
2272 return _controls_
.BookCtrlEvent_SetSelection(*args
, **kwargs
)
2274 def GetOldSelection(*args
, **kwargs
):
2275 """GetOldSelection(self) -> int"""
2276 return _controls_
.BookCtrlEvent_GetOldSelection(*args
, **kwargs
)
2278 def SetOldSelection(*args
, **kwargs
):
2279 """SetOldSelection(self, int nOldSel)"""
2280 return _controls_
.BookCtrlEvent_SetOldSelection(*args
, **kwargs
)
2283 class BookCtrlEventPtr(BookCtrlEvent
):
2284 def __init__(self
, this
):
2286 if not hasattr(self
,"thisown"): self
.thisown
= 0
2287 self
.__class
__ = BookCtrlEvent
2288 _controls_
.BookCtrlEvent_swigregister(BookCtrlEventPtr
)
2290 #---------------------------------------------------------------------------
2292 NB_FIXEDWIDTH
= _controls_
.NB_FIXEDWIDTH
2293 NB_TOP
= _controls_
.NB_TOP
2294 NB_LEFT
= _controls_
.NB_LEFT
2295 NB_RIGHT
= _controls_
.NB_RIGHT
2296 NB_BOTTOM
= _controls_
.NB_BOTTOM
2297 NB_MULTILINE
= _controls_
.NB_MULTILINE
2298 NB_HITTEST_NOWHERE
= _controls_
.NB_HITTEST_NOWHERE
2299 NB_HITTEST_ONICON
= _controls_
.NB_HITTEST_ONICON
2300 NB_HITTEST_ONLABEL
= _controls_
.NB_HITTEST_ONLABEL
2301 NB_HITTEST_ONITEM
= _controls_
.NB_HITTEST_ONITEM
2302 class Notebook(BookCtrl
):
2304 return "<%s.%s; proxy of C++ wxNotebook instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2305 def __init__(self
, *args
, **kwargs
):
2307 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2308 Size size=DefaultSize, long style=0, String name=NOTEBOOK_NAME) -> Notebook
2310 newobj
= _controls_
.new_Notebook(*args
, **kwargs
)
2311 self
.this
= newobj
.this
2314 self
._setOORInfo
(self
)
2316 def Create(*args
, **kwargs
):
2318 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
2319 long style=0, String name=NOTEBOOK_NAME) -> bool
2321 return _controls_
.Notebook_Create(*args
, **kwargs
)
2323 def GetRowCount(*args
, **kwargs
):
2324 """GetRowCount(self) -> int"""
2325 return _controls_
.Notebook_GetRowCount(*args
, **kwargs
)
2327 def SetPadding(*args
, **kwargs
):
2328 """SetPadding(self, Size padding)"""
2329 return _controls_
.Notebook_SetPadding(*args
, **kwargs
)
2331 def SetTabSize(*args
, **kwargs
):
2332 """SetTabSize(self, Size sz)"""
2333 return _controls_
.Notebook_SetTabSize(*args
, **kwargs
)
2335 def HitTest(*args
, **kwargs
):
2337 HitTest(Point pt) -> (tab, where)
2339 Returns the tab which is hit, and flags indicating where using wx.NB_HITTEST_ flags.
2341 return _controls_
.Notebook_HitTest(*args
, **kwargs
)
2343 def CalcSizeFromPage(*args
, **kwargs
):
2344 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2345 return _controls_
.Notebook_CalcSizeFromPage(*args
, **kwargs
)
2347 def ApplyThemeBackground(*args
, **kwargs
):
2348 """ApplyThemeBackground(self, Window window, Colour colour)"""
2349 return _controls_
.Notebook_ApplyThemeBackground(*args
, **kwargs
)
2352 class NotebookPtr(Notebook
):
2353 def __init__(self
, this
):
2355 if not hasattr(self
,"thisown"): self
.thisown
= 0
2356 self
.__class
__ = Notebook
2357 _controls_
.Notebook_swigregister(NotebookPtr
)
2359 def PreNotebook(*args
, **kwargs
):
2360 """PreNotebook() -> Notebook"""
2361 val
= _controls_
.new_PreNotebook(*args
, **kwargs
)
2365 class NotebookEvent(BookCtrlEvent
):
2367 return "<%s.%s; proxy of C++ wxNotebookEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2368 def __init__(self
, *args
, **kwargs
):
2370 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2371 int nOldSel=-1) -> NotebookEvent
2373 newobj
= _controls_
.new_NotebookEvent(*args
, **kwargs
)
2374 self
.this
= newobj
.this
2378 class NotebookEventPtr(NotebookEvent
):
2379 def __init__(self
, this
):
2381 if not hasattr(self
,"thisown"): self
.thisown
= 0
2382 self
.__class
__ = NotebookEvent
2383 _controls_
.NotebookEvent_swigregister(NotebookEventPtr
)
2385 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
2386 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
2388 EVT_NOTEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
, 1 )
2389 EVT_NOTEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
, 1 )
2391 #----------------------------------------------------------------------------
2393 class NotebookPage(wx
.Panel
):
2395 There is an old (and apparently unsolvable) bug when placing a
2396 window with a nonstandard background colour in a wxNotebook on
2397 wxGTK, as the notbooks's background colour would always be used
2398 when the window is refreshed. The solution is to place a panel in
2399 the notbook and the coloured window on the panel, sized to cover
2400 the panel. This simple class does that for you, just put an
2401 instance of this in the notebook and make your regular window a
2402 child of this one and it will handle the resize for you.
2404 def __init__(self
, parent
, id=-1,
2405 pos
=wx
.DefaultPosition
, size
=wx
.DefaultSize
,
2406 style
=wx
.TAB_TRAVERSAL
, name
="panel"):
2407 wx
.Panel
.__init
__(self
, parent
, id, pos
, size
, style
, name
)
2409 EVT_SIZE(self
, self
.OnSize
)
2411 def OnSize(self
, evt
):
2412 if self
.child
is None:
2413 children
= self
.GetChildren()
2415 self
.child
= children
[0]
2417 self
.child
.SetPosition((0,0))
2418 self
.child
.SetSize(self
.GetSize())
2421 #---------------------------------------------------------------------------
2423 LB_DEFAULT
= _controls_
.LB_DEFAULT
2424 LB_TOP
= _controls_
.LB_TOP
2425 LB_BOTTOM
= _controls_
.LB_BOTTOM
2426 LB_LEFT
= _controls_
.LB_LEFT
2427 LB_RIGHT
= _controls_
.LB_RIGHT
2428 LB_ALIGN_MASK
= _controls_
.LB_ALIGN_MASK
2429 class Listbook(BookCtrl
):
2431 return "<%s.%s; proxy of C++ wxListbook instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2432 def __init__(self
, *args
, **kwargs
):
2434 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2435 Size size=DefaultSize, long style=0, String name=EmptyString) -> Listbook
2437 newobj
= _controls_
.new_Listbook(*args
, **kwargs
)
2438 self
.this
= newobj
.this
2441 self
._setOORInfo
(self
)
2443 def Create(*args
, **kwargs
):
2445 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
2446 long style=0, String name=EmptyString) -> bool
2448 return _controls_
.Listbook_Create(*args
, **kwargs
)
2450 def IsVertical(*args
, **kwargs
):
2451 """IsVertical(self) -> bool"""
2452 return _controls_
.Listbook_IsVertical(*args
, **kwargs
)
2455 class ListbookPtr(Listbook
):
2456 def __init__(self
, this
):
2458 if not hasattr(self
,"thisown"): self
.thisown
= 0
2459 self
.__class
__ = Listbook
2460 _controls_
.Listbook_swigregister(ListbookPtr
)
2462 def PreListbook(*args
, **kwargs
):
2463 """PreListbook() -> Listbook"""
2464 val
= _controls_
.new_PreListbook(*args
, **kwargs
)
2468 class ListbookEvent(BookCtrlEvent
):
2470 return "<%s.%s; proxy of C++ wxListbookEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2471 def __init__(self
, *args
, **kwargs
):
2473 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
2474 int nOldSel=-1) -> ListbookEvent
2476 newobj
= _controls_
.new_ListbookEvent(*args
, **kwargs
)
2477 self
.this
= newobj
.this
2481 class ListbookEventPtr(ListbookEvent
):
2482 def __init__(self
, this
):
2484 if not hasattr(self
,"thisown"): self
.thisown
= 0
2485 self
.__class
__ = ListbookEvent
2486 _controls_
.ListbookEvent_swigregister(ListbookEventPtr
)
2488 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
2489 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
= _controls_
.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
2490 EVT_LISTBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
, 1 )
2491 EVT_LISTBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
, 1 )
2493 #---------------------------------------------------------------------------
2495 class BookCtrlSizer(_core
.Sizer
):
2497 return "<%s.%s; proxy of C++ wxBookCtrlSizer instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2498 def __init__(self
, *args
, **kwargs
):
2499 """__init__(self, BookCtrl nb) -> BookCtrlSizer"""
2500 newobj
= _controls_
.new_BookCtrlSizer(*args
, **kwargs
)
2501 self
.this
= newobj
.this
2504 self
._setOORInfo
(self
)
2506 def RecalcSizes(*args
, **kwargs
):
2507 """RecalcSizes(self)"""
2508 return _controls_
.BookCtrlSizer_RecalcSizes(*args
, **kwargs
)
2510 def CalcMin(*args
, **kwargs
):
2511 """CalcMin(self) -> Size"""
2512 return _controls_
.BookCtrlSizer_CalcMin(*args
, **kwargs
)
2514 def GetControl(*args
, **kwargs
):
2515 """GetControl(self) -> BookCtrl"""
2516 return _controls_
.BookCtrlSizer_GetControl(*args
, **kwargs
)
2519 class BookCtrlSizerPtr(BookCtrlSizer
):
2520 def __init__(self
, this
):
2522 if not hasattr(self
,"thisown"): self
.thisown
= 0
2523 self
.__class
__ = BookCtrlSizer
2524 _controls_
.BookCtrlSizer_swigregister(BookCtrlSizerPtr
)
2526 class NotebookSizer(_core
.Sizer
):
2528 return "<%s.%s; proxy of C++ wxNotebookSizer instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2529 def __init__(self
, *args
, **kwargs
):
2530 """__init__(self, Notebook nb) -> NotebookSizer"""
2531 newobj
= _controls_
.new_NotebookSizer(*args
, **kwargs
)
2532 self
.this
= newobj
.this
2535 self
._setOORInfo
(self
)
2537 def RecalcSizes(*args
, **kwargs
):
2538 """RecalcSizes(self)"""
2539 return _controls_
.NotebookSizer_RecalcSizes(*args
, **kwargs
)
2541 def CalcMin(*args
, **kwargs
):
2542 """CalcMin(self) -> Size"""
2543 return _controls_
.NotebookSizer_CalcMin(*args
, **kwargs
)
2545 def GetNotebook(*args
, **kwargs
):
2546 """GetNotebook(self) -> Notebook"""
2547 return _controls_
.NotebookSizer_GetNotebook(*args
, **kwargs
)
2550 class NotebookSizerPtr(NotebookSizer
):
2551 def __init__(self
, this
):
2553 if not hasattr(self
,"thisown"): self
.thisown
= 0
2554 self
.__class
__ = NotebookSizer
2555 _controls_
.NotebookSizer_swigregister(NotebookSizerPtr
)
2557 #---------------------------------------------------------------------------
2559 TOOL_STYLE_BUTTON
= _controls_
.TOOL_STYLE_BUTTON
2560 TOOL_STYLE_SEPARATOR
= _controls_
.TOOL_STYLE_SEPARATOR
2561 TOOL_STYLE_CONTROL
= _controls_
.TOOL_STYLE_CONTROL
2562 TB_HORIZONTAL
= _controls_
.TB_HORIZONTAL
2563 TB_VERTICAL
= _controls_
.TB_VERTICAL
2564 TB_3DBUTTONS
= _controls_
.TB_3DBUTTONS
2565 TB_FLAT
= _controls_
.TB_FLAT
2566 TB_DOCKABLE
= _controls_
.TB_DOCKABLE
2567 TB_NOICONS
= _controls_
.TB_NOICONS
2568 TB_TEXT
= _controls_
.TB_TEXT
2569 TB_NODIVIDER
= _controls_
.TB_NODIVIDER
2570 TB_NOALIGN
= _controls_
.TB_NOALIGN
2571 TB_HORZ_LAYOUT
= _controls_
.TB_HORZ_LAYOUT
2572 TB_HORZ_TEXT
= _controls_
.TB_HORZ_TEXT
2573 class ToolBarToolBase(_core
.Object
):
2574 def __init__(self
): raise RuntimeError, "No constructor defined"
2576 return "<%s.%s; proxy of C++ wxToolBarToolBase instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2577 def GetId(*args
, **kwargs
):
2578 """GetId(self) -> int"""
2579 return _controls_
.ToolBarToolBase_GetId(*args
, **kwargs
)
2581 def GetControl(*args
, **kwargs
):
2582 """GetControl(self) -> Control"""
2583 return _controls_
.ToolBarToolBase_GetControl(*args
, **kwargs
)
2585 def GetToolBar(*args
, **kwargs
):
2586 """GetToolBar(self) -> ToolBarBase"""
2587 return _controls_
.ToolBarToolBase_GetToolBar(*args
, **kwargs
)
2589 def IsButton(*args
, **kwargs
):
2590 """IsButton(self) -> int"""
2591 return _controls_
.ToolBarToolBase_IsButton(*args
, **kwargs
)
2593 def IsControl(*args
, **kwargs
):
2594 """IsControl(self) -> int"""
2595 return _controls_
.ToolBarToolBase_IsControl(*args
, **kwargs
)
2597 def IsSeparator(*args
, **kwargs
):
2598 """IsSeparator(self) -> int"""
2599 return _controls_
.ToolBarToolBase_IsSeparator(*args
, **kwargs
)
2601 def GetStyle(*args
, **kwargs
):
2602 """GetStyle(self) -> int"""
2603 return _controls_
.ToolBarToolBase_GetStyle(*args
, **kwargs
)
2605 def GetKind(*args
, **kwargs
):
2606 """GetKind(self) -> int"""
2607 return _controls_
.ToolBarToolBase_GetKind(*args
, **kwargs
)
2609 def IsEnabled(*args
, **kwargs
):
2610 """IsEnabled(self) -> bool"""
2611 return _controls_
.ToolBarToolBase_IsEnabled(*args
, **kwargs
)
2613 def IsToggled(*args
, **kwargs
):
2614 """IsToggled(self) -> bool"""
2615 return _controls_
.ToolBarToolBase_IsToggled(*args
, **kwargs
)
2617 def CanBeToggled(*args
, **kwargs
):
2618 """CanBeToggled(self) -> bool"""
2619 return _controls_
.ToolBarToolBase_CanBeToggled(*args
, **kwargs
)
2621 def GetNormalBitmap(*args
, **kwargs
):
2622 """GetNormalBitmap(self) -> Bitmap"""
2623 return _controls_
.ToolBarToolBase_GetNormalBitmap(*args
, **kwargs
)
2625 def GetDisabledBitmap(*args
, **kwargs
):
2626 """GetDisabledBitmap(self) -> Bitmap"""
2627 return _controls_
.ToolBarToolBase_GetDisabledBitmap(*args
, **kwargs
)
2629 def GetBitmap(*args
, **kwargs
):
2630 """GetBitmap(self) -> Bitmap"""
2631 return _controls_
.ToolBarToolBase_GetBitmap(*args
, **kwargs
)
2633 def GetLabel(*args
, **kwargs
):
2634 """GetLabel(self) -> String"""
2635 return _controls_
.ToolBarToolBase_GetLabel(*args
, **kwargs
)
2637 def GetShortHelp(*args
, **kwargs
):
2638 """GetShortHelp(self) -> String"""
2639 return _controls_
.ToolBarToolBase_GetShortHelp(*args
, **kwargs
)
2641 def GetLongHelp(*args
, **kwargs
):
2642 """GetLongHelp(self) -> String"""
2643 return _controls_
.ToolBarToolBase_GetLongHelp(*args
, **kwargs
)
2645 def Enable(*args
, **kwargs
):
2646 """Enable(self, bool enable) -> bool"""
2647 return _controls_
.ToolBarToolBase_Enable(*args
, **kwargs
)
2649 def Toggle(*args
, **kwargs
):
2651 return _controls_
.ToolBarToolBase_Toggle(*args
, **kwargs
)
2653 def SetToggle(*args
, **kwargs
):
2654 """SetToggle(self, bool toggle) -> bool"""
2655 return _controls_
.ToolBarToolBase_SetToggle(*args
, **kwargs
)
2657 def SetShortHelp(*args
, **kwargs
):
2658 """SetShortHelp(self, String help) -> bool"""
2659 return _controls_
.ToolBarToolBase_SetShortHelp(*args
, **kwargs
)
2661 def SetLongHelp(*args
, **kwargs
):
2662 """SetLongHelp(self, String help) -> bool"""
2663 return _controls_
.ToolBarToolBase_SetLongHelp(*args
, **kwargs
)
2665 def SetNormalBitmap(*args
, **kwargs
):
2666 """SetNormalBitmap(self, Bitmap bmp)"""
2667 return _controls_
.ToolBarToolBase_SetNormalBitmap(*args
, **kwargs
)
2669 def SetDisabledBitmap(*args
, **kwargs
):
2670 """SetDisabledBitmap(self, Bitmap bmp)"""
2671 return _controls_
.ToolBarToolBase_SetDisabledBitmap(*args
, **kwargs
)
2673 def SetLabel(*args
, **kwargs
):
2674 """SetLabel(self, String label)"""
2675 return _controls_
.ToolBarToolBase_SetLabel(*args
, **kwargs
)
2677 def Detach(*args
, **kwargs
):
2679 return _controls_
.ToolBarToolBase_Detach(*args
, **kwargs
)
2681 def Attach(*args
, **kwargs
):
2682 """Attach(self, ToolBarBase tbar)"""
2683 return _controls_
.ToolBarToolBase_Attach(*args
, **kwargs
)
2685 def GetClientData(*args
, **kwargs
):
2686 """GetClientData(self) -> PyObject"""
2687 return _controls_
.ToolBarToolBase_GetClientData(*args
, **kwargs
)
2689 def SetClientData(*args
, **kwargs
):
2690 """SetClientData(self, PyObject clientData)"""
2691 return _controls_
.ToolBarToolBase_SetClientData(*args
, **kwargs
)
2693 GetBitmap1
= GetNormalBitmap
2694 GetBitmap2
= GetDisabledBitmap
2695 SetBitmap1
= SetNormalBitmap
2696 SetBitmap2
= SetDisabledBitmap
2699 class ToolBarToolBasePtr(ToolBarToolBase
):
2700 def __init__(self
, this
):
2702 if not hasattr(self
,"thisown"): self
.thisown
= 0
2703 self
.__class
__ = ToolBarToolBase
2704 _controls_
.ToolBarToolBase_swigregister(ToolBarToolBasePtr
)
2706 class ToolBarBase(_core
.Control
):
2707 def __init__(self
): raise RuntimeError, "No constructor defined"
2709 return "<%s.%s; proxy of C++ wxToolBarBase instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2710 def DoAddTool(*args
, **kwargs
):
2712 DoAddTool(self, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
2713 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
2714 String longHelp=EmptyString,
2715 PyObject clientData=None) -> ToolBarToolBase
2717 return _controls_
.ToolBarBase_DoAddTool(*args
, **kwargs
)
2719 def DoInsertTool(*args
, **kwargs
):
2721 DoInsertTool(self, size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
2722 int kind=ITEM_NORMAL,
2723 String shortHelp=EmptyString, String longHelp=EmptyString,
2724 PyObject clientData=None) -> ToolBarToolBase
2726 return _controls_
.ToolBarBase_DoInsertTool(*args
, **kwargs
)
2728 # These match the original Add methods for this class, kept for
2729 # backwards compatibility with versions < 2.3.3.
2732 def AddTool(self
, id, bitmap
,
2733 pushedBitmap
= wx
.NullBitmap
,
2736 shortHelpString
= '',
2737 longHelpString
= '') :
2738 '''Old style method to add a tool to the toolbar.'''
2739 kind
= wx
.ITEM_NORMAL
2740 if isToggle
: kind
= wx
.ITEM_CHECK
2741 return self
.DoAddTool(id, '', bitmap
, pushedBitmap
, kind
,
2742 shortHelpString
, longHelpString
, clientData
)
2744 def AddSimpleTool(self
, id, bitmap
,
2745 shortHelpString
= '',
2746 longHelpString
= '',
2748 '''Old style method to add a tool to the toolbar.'''
2749 kind
= wx
.ITEM_NORMAL
2750 if isToggle
: kind
= wx
.ITEM_CHECK
2751 return self
.DoAddTool(id, '', bitmap
, wx
.NullBitmap
, kind
,
2752 shortHelpString
, longHelpString
, None)
2754 def InsertTool(self
, pos
, id, bitmap
,
2755 pushedBitmap
= wx
.NullBitmap
,
2758 shortHelpString
= '',
2759 longHelpString
= ''):
2760 '''Old style method to insert a tool in the toolbar.'''
2761 kind
= wx
.ITEM_NORMAL
2762 if isToggle
: kind
= wx
.ITEM_CHECK
2763 return self
.DoInsertTool(pos
, id, '', bitmap
, pushedBitmap
, kind
,
2764 shortHelpString
, longHelpString
, clientData
)
2766 def InsertSimpleTool(self
, pos
, id, bitmap
,
2767 shortHelpString
= '',
2768 longHelpString
= '',
2770 '''Old style method to insert a tool in the toolbar.'''
2771 kind
= wx
.ITEM_NORMAL
2772 if isToggle
: kind
= wx
.ITEM_CHECK
2773 return self
.DoInsertTool(pos
, id, '', bitmap
, wx
.NullBitmap
, kind
,
2774 shortHelpString
, longHelpString
, None)
2777 # The following are the new toolbar Add methods starting with
2778 # 2.3.3. They are renamed to have 'Label' in the name so as to be
2779 # able to keep backwards compatibility with using the above
2780 # methods. Eventually these should migrate to be the methods used
2781 # primarily and lose the 'Label' in the name...
2783 def AddLabelTool(self
, id, label
, bitmap
,
2784 bmpDisabled
= wx
.NullBitmap
,
2785 kind
= wx
.ITEM_NORMAL
,
2786 shortHelp
= '', longHelp
= '',
2789 The full AddTool() function.
2791 If bmpDisabled is wx.NullBitmap, a shadowed version of the normal bitmap
2792 is created and used as the disabled image.
2794 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, kind
,
2795 shortHelp
, longHelp
, clientData
)
2798 def InsertLabelTool(self
, pos
, id, label
, bitmap
,
2799 bmpDisabled
= wx
.NullBitmap
,
2800 kind
= wx
.ITEM_NORMAL
,
2801 shortHelp
= '', longHelp
= '',
2804 Insert the new tool at the given position, if pos == GetToolsCount(), it
2805 is equivalent to AddTool()
2807 return self
.DoInsertTool(pos
, id, label
, bitmap
, bmpDisabled
, kind
,
2808 shortHelp
, longHelp
, clientData
)
2810 def AddCheckLabelTool(self
, id, label
, bitmap
,
2811 bmpDisabled
= wx
.NullBitmap
,
2812 shortHelp
= '', longHelp
= '',
2814 '''Add a check tool, i.e. a tool which can be toggled'''
2815 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
2816 shortHelp
, longHelp
, clientData
)
2818 def AddRadioLabelTool(self
, id, label
, bitmap
,
2819 bmpDisabled
= wx
.NullBitmap
,
2820 shortHelp
= '', longHelp
= '',
2823 Add a radio tool, i.e. a tool which can be toggled and releases any
2824 other toggled radio tools in the same group when it happens
2826 return self
.DoAddTool(id, label
, bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
2827 shortHelp
, longHelp
, clientData
)
2830 # For consistency with the backwards compatible methods above, here are
2831 # some non-'Label' versions of the Check and Radio methods
2832 def AddCheckTool(self
, id, bitmap
,
2833 bmpDisabled
= wx
.NullBitmap
,
2834 shortHelp
= '', longHelp
= '',
2836 '''Add a check tool, i.e. a tool which can be toggled'''
2837 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_CHECK
,
2838 shortHelp
, longHelp
, clientData
)
2840 def AddRadioTool(self
, id, bitmap
,
2841 bmpDisabled
= wx
.NullBitmap
,
2842 shortHelp
= '', longHelp
= '',
2845 Add a radio tool, i.e. a tool which can be toggled and releases any
2846 other toggled radio tools in the same group when it happens
2848 return self
.DoAddTool(id, '', bitmap
, bmpDisabled
, wx
.ITEM_RADIO
,
2849 shortHelp
, longHelp
, clientData
)
2851 def AddToolItem(*args
, **kwargs
):
2852 """AddToolItem(self, ToolBarToolBase tool) -> ToolBarToolBase"""
2853 return _controls_
.ToolBarBase_AddToolItem(*args
, **kwargs
)
2855 def InsertToolItem(*args
, **kwargs
):
2856 """InsertToolItem(self, size_t pos, ToolBarToolBase tool) -> ToolBarToolBase"""
2857 return _controls_
.ToolBarBase_InsertToolItem(*args
, **kwargs
)
2859 def AddControl(*args
, **kwargs
):
2860 """AddControl(self, Control control) -> ToolBarToolBase"""
2861 return _controls_
.ToolBarBase_AddControl(*args
, **kwargs
)
2863 def InsertControl(*args
, **kwargs
):
2864 """InsertControl(self, size_t pos, Control control) -> ToolBarToolBase"""
2865 return _controls_
.ToolBarBase_InsertControl(*args
, **kwargs
)
2867 def FindControl(*args
, **kwargs
):
2868 """FindControl(self, int id) -> Control"""
2869 return _controls_
.ToolBarBase_FindControl(*args
, **kwargs
)
2871 def AddSeparator(*args
, **kwargs
):
2872 """AddSeparator(self) -> ToolBarToolBase"""
2873 return _controls_
.ToolBarBase_AddSeparator(*args
, **kwargs
)
2875 def InsertSeparator(*args
, **kwargs
):
2876 """InsertSeparator(self, size_t pos) -> ToolBarToolBase"""
2877 return _controls_
.ToolBarBase_InsertSeparator(*args
, **kwargs
)
2879 def RemoveTool(*args
, **kwargs
):
2880 """RemoveTool(self, int id) -> ToolBarToolBase"""
2881 return _controls_
.ToolBarBase_RemoveTool(*args
, **kwargs
)
2883 def DeleteToolByPos(*args
, **kwargs
):
2884 """DeleteToolByPos(self, size_t pos) -> bool"""
2885 return _controls_
.ToolBarBase_DeleteToolByPos(*args
, **kwargs
)
2887 def DeleteTool(*args
, **kwargs
):
2888 """DeleteTool(self, int id) -> bool"""
2889 return _controls_
.ToolBarBase_DeleteTool(*args
, **kwargs
)
2891 def ClearTools(*args
, **kwargs
):
2892 """ClearTools(self)"""
2893 return _controls_
.ToolBarBase_ClearTools(*args
, **kwargs
)
2895 def Realize(*args
, **kwargs
):
2896 """Realize(self) -> bool"""
2897 return _controls_
.ToolBarBase_Realize(*args
, **kwargs
)
2899 def EnableTool(*args
, **kwargs
):
2900 """EnableTool(self, int id, bool enable)"""
2901 return _controls_
.ToolBarBase_EnableTool(*args
, **kwargs
)
2903 def ToggleTool(*args
, **kwargs
):
2904 """ToggleTool(self, int id, bool toggle)"""
2905 return _controls_
.ToolBarBase_ToggleTool(*args
, **kwargs
)
2907 def SetToggle(*args
, **kwargs
):
2908 """SetToggle(self, int id, bool toggle)"""
2909 return _controls_
.ToolBarBase_SetToggle(*args
, **kwargs
)
2911 def GetToolClientData(*args
, **kwargs
):
2912 """GetToolClientData(self, int id) -> PyObject"""
2913 return _controls_
.ToolBarBase_GetToolClientData(*args
, **kwargs
)
2915 def SetToolClientData(*args
, **kwargs
):
2916 """SetToolClientData(self, int id, PyObject clientData)"""
2917 return _controls_
.ToolBarBase_SetToolClientData(*args
, **kwargs
)
2919 def GetToolPos(*args
, **kwargs
):
2920 """GetToolPos(self, int id) -> int"""
2921 return _controls_
.ToolBarBase_GetToolPos(*args
, **kwargs
)
2923 def GetToolState(*args
, **kwargs
):
2924 """GetToolState(self, int id) -> bool"""
2925 return _controls_
.ToolBarBase_GetToolState(*args
, **kwargs
)
2927 def GetToolEnabled(*args
, **kwargs
):
2928 """GetToolEnabled(self, int id) -> bool"""
2929 return _controls_
.ToolBarBase_GetToolEnabled(*args
, **kwargs
)
2931 def SetToolShortHelp(*args
, **kwargs
):
2932 """SetToolShortHelp(self, int id, String helpString)"""
2933 return _controls_
.ToolBarBase_SetToolShortHelp(*args
, **kwargs
)
2935 def GetToolShortHelp(*args
, **kwargs
):
2936 """GetToolShortHelp(self, int id) -> String"""
2937 return _controls_
.ToolBarBase_GetToolShortHelp(*args
, **kwargs
)
2939 def SetToolLongHelp(*args
, **kwargs
):
2940 """SetToolLongHelp(self, int id, String helpString)"""
2941 return _controls_
.ToolBarBase_SetToolLongHelp(*args
, **kwargs
)
2943 def GetToolLongHelp(*args
, **kwargs
):
2944 """GetToolLongHelp(self, int id) -> String"""
2945 return _controls_
.ToolBarBase_GetToolLongHelp(*args
, **kwargs
)
2947 def SetMarginsXY(*args
, **kwargs
):
2948 """SetMarginsXY(self, int x, int y)"""
2949 return _controls_
.ToolBarBase_SetMarginsXY(*args
, **kwargs
)
2951 def SetMargins(*args
, **kwargs
):
2952 """SetMargins(self, Size size)"""
2953 return _controls_
.ToolBarBase_SetMargins(*args
, **kwargs
)
2955 def SetToolPacking(*args
, **kwargs
):
2956 """SetToolPacking(self, int packing)"""
2957 return _controls_
.ToolBarBase_SetToolPacking(*args
, **kwargs
)
2959 def SetToolSeparation(*args
, **kwargs
):
2960 """SetToolSeparation(self, int separation)"""
2961 return _controls_
.ToolBarBase_SetToolSeparation(*args
, **kwargs
)
2963 def GetToolMargins(*args
, **kwargs
):
2964 """GetToolMargins(self) -> Size"""
2965 return _controls_
.ToolBarBase_GetToolMargins(*args
, **kwargs
)
2967 def GetMargins(*args
, **kwargs
):
2968 """GetMargins(self) -> Size"""
2969 return _controls_
.ToolBarBase_GetMargins(*args
, **kwargs
)
2971 def GetToolPacking(*args
, **kwargs
):
2972 """GetToolPacking(self) -> int"""
2973 return _controls_
.ToolBarBase_GetToolPacking(*args
, **kwargs
)
2975 def GetToolSeparation(*args
, **kwargs
):
2976 """GetToolSeparation(self) -> int"""
2977 return _controls_
.ToolBarBase_GetToolSeparation(*args
, **kwargs
)
2979 def SetRows(*args
, **kwargs
):
2980 """SetRows(self, int nRows)"""
2981 return _controls_
.ToolBarBase_SetRows(*args
, **kwargs
)
2983 def SetMaxRowsCols(*args
, **kwargs
):
2984 """SetMaxRowsCols(self, int rows, int cols)"""
2985 return _controls_
.ToolBarBase_SetMaxRowsCols(*args
, **kwargs
)
2987 def GetMaxRows(*args
, **kwargs
):
2988 """GetMaxRows(self) -> int"""
2989 return _controls_
.ToolBarBase_GetMaxRows(*args
, **kwargs
)
2991 def GetMaxCols(*args
, **kwargs
):
2992 """GetMaxCols(self) -> int"""
2993 return _controls_
.ToolBarBase_GetMaxCols(*args
, **kwargs
)
2995 def SetToolBitmapSize(*args
, **kwargs
):
2996 """SetToolBitmapSize(self, Size size)"""
2997 return _controls_
.ToolBarBase_SetToolBitmapSize(*args
, **kwargs
)
2999 def GetToolBitmapSize(*args
, **kwargs
):
3000 """GetToolBitmapSize(self) -> Size"""
3001 return _controls_
.ToolBarBase_GetToolBitmapSize(*args
, **kwargs
)
3003 def GetToolSize(*args
, **kwargs
):
3004 """GetToolSize(self) -> Size"""
3005 return _controls_
.ToolBarBase_GetToolSize(*args
, **kwargs
)
3007 def FindToolForPosition(*args
, **kwargs
):
3008 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3009 return _controls_
.ToolBarBase_FindToolForPosition(*args
, **kwargs
)
3011 def FindById(*args
, **kwargs
):
3012 """FindById(self, int toolid) -> ToolBarToolBase"""
3013 return _controls_
.ToolBarBase_FindById(*args
, **kwargs
)
3015 def IsVertical(*args
, **kwargs
):
3016 """IsVertical(self) -> bool"""
3017 return _controls_
.ToolBarBase_IsVertical(*args
, **kwargs
)
3020 class ToolBarBasePtr(ToolBarBase
):
3021 def __init__(self
, this
):
3023 if not hasattr(self
,"thisown"): self
.thisown
= 0
3024 self
.__class
__ = ToolBarBase
3025 _controls_
.ToolBarBase_swigregister(ToolBarBasePtr
)
3027 class ToolBar(ToolBarBase
):
3029 return "<%s.%s; proxy of C++ wxToolBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3030 def __init__(self
, *args
, **kwargs
):
3032 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3033 long style=wxNO_BORDER|wxTB_HORIZONTAL,
3034 String name=wxPyToolBarNameStr) -> ToolBar
3036 newobj
= _controls_
.new_ToolBar(*args
, **kwargs
)
3037 self
.this
= newobj
.this
3040 self
._setOORInfo
(self
)
3042 def Create(*args
, **kwargs
):
3044 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3045 long style=wxNO_BORDER|wxTB_HORIZONTAL,
3046 String name=wxPyToolBarNameStr) -> bool
3048 return _controls_
.ToolBar_Create(*args
, **kwargs
)
3050 def FindToolForPosition(*args
, **kwargs
):
3051 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3052 return _controls_
.ToolBar_FindToolForPosition(*args
, **kwargs
)
3055 class ToolBarPtr(ToolBar
):
3056 def __init__(self
, this
):
3058 if not hasattr(self
,"thisown"): self
.thisown
= 0
3059 self
.__class
__ = ToolBar
3060 _controls_
.ToolBar_swigregister(ToolBarPtr
)
3062 def PreToolBar(*args
, **kwargs
):
3063 """PreToolBar() -> ToolBar"""
3064 val
= _controls_
.new_PreToolBar(*args
, **kwargs
)
3068 #---------------------------------------------------------------------------
3070 LC_VRULES
= _controls_
.LC_VRULES
3071 LC_HRULES
= _controls_
.LC_HRULES
3072 LC_ICON
= _controls_
.LC_ICON
3073 LC_SMALL_ICON
= _controls_
.LC_SMALL_ICON
3074 LC_LIST
= _controls_
.LC_LIST
3075 LC_REPORT
= _controls_
.LC_REPORT
3076 LC_ALIGN_TOP
= _controls_
.LC_ALIGN_TOP
3077 LC_ALIGN_LEFT
= _controls_
.LC_ALIGN_LEFT
3078 LC_AUTOARRANGE
= _controls_
.LC_AUTOARRANGE
3079 LC_VIRTUAL
= _controls_
.LC_VIRTUAL
3080 LC_EDIT_LABELS
= _controls_
.LC_EDIT_LABELS
3081 LC_NO_HEADER
= _controls_
.LC_NO_HEADER
3082 LC_NO_SORT_HEADER
= _controls_
.LC_NO_SORT_HEADER
3083 LC_SINGLE_SEL
= _controls_
.LC_SINGLE_SEL
3084 LC_SORT_ASCENDING
= _controls_
.LC_SORT_ASCENDING
3085 LC_SORT_DESCENDING
= _controls_
.LC_SORT_DESCENDING
3086 LC_MASK_TYPE
= _controls_
.LC_MASK_TYPE
3087 LC_MASK_ALIGN
= _controls_
.LC_MASK_ALIGN
3088 LC_MASK_SORT
= _controls_
.LC_MASK_SORT
3089 LIST_MASK_STATE
= _controls_
.LIST_MASK_STATE
3090 LIST_MASK_TEXT
= _controls_
.LIST_MASK_TEXT
3091 LIST_MASK_IMAGE
= _controls_
.LIST_MASK_IMAGE
3092 LIST_MASK_DATA
= _controls_
.LIST_MASK_DATA
3093 LIST_SET_ITEM
= _controls_
.LIST_SET_ITEM
3094 LIST_MASK_WIDTH
= _controls_
.LIST_MASK_WIDTH
3095 LIST_MASK_FORMAT
= _controls_
.LIST_MASK_FORMAT
3096 LIST_STATE_DONTCARE
= _controls_
.LIST_STATE_DONTCARE
3097 LIST_STATE_DROPHILITED
= _controls_
.LIST_STATE_DROPHILITED
3098 LIST_STATE_FOCUSED
= _controls_
.LIST_STATE_FOCUSED
3099 LIST_STATE_SELECTED
= _controls_
.LIST_STATE_SELECTED
3100 LIST_STATE_CUT
= _controls_
.LIST_STATE_CUT
3101 LIST_STATE_DISABLED
= _controls_
.LIST_STATE_DISABLED
3102 LIST_STATE_FILTERED
= _controls_
.LIST_STATE_FILTERED
3103 LIST_STATE_INUSE
= _controls_
.LIST_STATE_INUSE
3104 LIST_STATE_PICKED
= _controls_
.LIST_STATE_PICKED
3105 LIST_STATE_SOURCE
= _controls_
.LIST_STATE_SOURCE
3106 LIST_HITTEST_ABOVE
= _controls_
.LIST_HITTEST_ABOVE
3107 LIST_HITTEST_BELOW
= _controls_
.LIST_HITTEST_BELOW
3108 LIST_HITTEST_NOWHERE
= _controls_
.LIST_HITTEST_NOWHERE
3109 LIST_HITTEST_ONITEMICON
= _controls_
.LIST_HITTEST_ONITEMICON
3110 LIST_HITTEST_ONITEMLABEL
= _controls_
.LIST_HITTEST_ONITEMLABEL
3111 LIST_HITTEST_ONITEMRIGHT
= _controls_
.LIST_HITTEST_ONITEMRIGHT
3112 LIST_HITTEST_ONITEMSTATEICON
= _controls_
.LIST_HITTEST_ONITEMSTATEICON
3113 LIST_HITTEST_TOLEFT
= _controls_
.LIST_HITTEST_TOLEFT
3114 LIST_HITTEST_TORIGHT
= _controls_
.LIST_HITTEST_TORIGHT
3115 LIST_HITTEST_ONITEM
= _controls_
.LIST_HITTEST_ONITEM
3116 LIST_NEXT_ABOVE
= _controls_
.LIST_NEXT_ABOVE
3117 LIST_NEXT_ALL
= _controls_
.LIST_NEXT_ALL
3118 LIST_NEXT_BELOW
= _controls_
.LIST_NEXT_BELOW
3119 LIST_NEXT_LEFT
= _controls_
.LIST_NEXT_LEFT
3120 LIST_NEXT_RIGHT
= _controls_
.LIST_NEXT_RIGHT
3121 LIST_ALIGN_DEFAULT
= _controls_
.LIST_ALIGN_DEFAULT
3122 LIST_ALIGN_LEFT
= _controls_
.LIST_ALIGN_LEFT
3123 LIST_ALIGN_TOP
= _controls_
.LIST_ALIGN_TOP
3124 LIST_ALIGN_SNAP_TO_GRID
= _controls_
.LIST_ALIGN_SNAP_TO_GRID
3125 LIST_FORMAT_LEFT
= _controls_
.LIST_FORMAT_LEFT
3126 LIST_FORMAT_RIGHT
= _controls_
.LIST_FORMAT_RIGHT
3127 LIST_FORMAT_CENTRE
= _controls_
.LIST_FORMAT_CENTRE
3128 LIST_FORMAT_CENTER
= _controls_
.LIST_FORMAT_CENTER
3129 LIST_AUTOSIZE
= _controls_
.LIST_AUTOSIZE
3130 LIST_AUTOSIZE_USEHEADER
= _controls_
.LIST_AUTOSIZE_USEHEADER
3131 LIST_RECT_BOUNDS
= _controls_
.LIST_RECT_BOUNDS
3132 LIST_RECT_ICON
= _controls_
.LIST_RECT_ICON
3133 LIST_RECT_LABEL
= _controls_
.LIST_RECT_LABEL
3134 LIST_FIND_UP
= _controls_
.LIST_FIND_UP
3135 LIST_FIND_DOWN
= _controls_
.LIST_FIND_DOWN
3136 LIST_FIND_LEFT
= _controls_
.LIST_FIND_LEFT
3137 LIST_FIND_RIGHT
= _controls_
.LIST_FIND_RIGHT
3138 #---------------------------------------------------------------------------
3140 class ListItemAttr(object):
3142 return "<%s.%s; proxy of C++ wxListItemAttr instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3143 def __init__(self
, *args
, **kwargs
):
3145 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
3146 Font font=wxNullFont) -> ListItemAttr
3148 newobj
= _controls_
.new_ListItemAttr(*args
, **kwargs
)
3149 self
.this
= newobj
.this
3152 def SetTextColour(*args
, **kwargs
):
3153 """SetTextColour(self, Colour colText)"""
3154 return _controls_
.ListItemAttr_SetTextColour(*args
, **kwargs
)
3156 def SetBackgroundColour(*args
, **kwargs
):
3157 """SetBackgroundColour(self, Colour colBack)"""
3158 return _controls_
.ListItemAttr_SetBackgroundColour(*args
, **kwargs
)
3160 def SetFont(*args
, **kwargs
):
3161 """SetFont(self, Font font)"""
3162 return _controls_
.ListItemAttr_SetFont(*args
, **kwargs
)
3164 def HasTextColour(*args
, **kwargs
):
3165 """HasTextColour(self) -> bool"""
3166 return _controls_
.ListItemAttr_HasTextColour(*args
, **kwargs
)
3168 def HasBackgroundColour(*args
, **kwargs
):
3169 """HasBackgroundColour(self) -> bool"""
3170 return _controls_
.ListItemAttr_HasBackgroundColour(*args
, **kwargs
)
3172 def HasFont(*args
, **kwargs
):
3173 """HasFont(self) -> bool"""
3174 return _controls_
.ListItemAttr_HasFont(*args
, **kwargs
)
3176 def GetTextColour(*args
, **kwargs
):
3177 """GetTextColour(self) -> Colour"""
3178 return _controls_
.ListItemAttr_GetTextColour(*args
, **kwargs
)
3180 def GetBackgroundColour(*args
, **kwargs
):
3181 """GetBackgroundColour(self) -> Colour"""
3182 return _controls_
.ListItemAttr_GetBackgroundColour(*args
, **kwargs
)
3184 def GetFont(*args
, **kwargs
):
3185 """GetFont(self) -> Font"""
3186 return _controls_
.ListItemAttr_GetFont(*args
, **kwargs
)
3188 def Destroy(*args
, **kwargs
):
3190 return _controls_
.ListItemAttr_Destroy(*args
, **kwargs
)
3193 class ListItemAttrPtr(ListItemAttr
):
3194 def __init__(self
, this
):
3196 if not hasattr(self
,"thisown"): self
.thisown
= 0
3197 self
.__class
__ = ListItemAttr
3198 _controls_
.ListItemAttr_swigregister(ListItemAttrPtr
)
3199 ListCtrlNameStr
= cvar
.ListCtrlNameStr
3201 #---------------------------------------------------------------------------
3203 class ListItem(_core
.Object
):
3205 return "<%s.%s; proxy of C++ wxListItem instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3206 def __init__(self
, *args
, **kwargs
):
3207 """__init__(self) -> ListItem"""
3208 newobj
= _controls_
.new_ListItem(*args
, **kwargs
)
3209 self
.this
= newobj
.this
3212 def __del__(self
, destroy
=_controls_
.delete_ListItem
):
3215 if self
.thisown
: destroy(self
)
3218 def Clear(*args
, **kwargs
):
3220 return _controls_
.ListItem_Clear(*args
, **kwargs
)
3222 def ClearAttributes(*args
, **kwargs
):
3223 """ClearAttributes(self)"""
3224 return _controls_
.ListItem_ClearAttributes(*args
, **kwargs
)
3226 def SetMask(*args
, **kwargs
):
3227 """SetMask(self, long mask)"""
3228 return _controls_
.ListItem_SetMask(*args
, **kwargs
)
3230 def SetId(*args
, **kwargs
):
3231 """SetId(self, long id)"""
3232 return _controls_
.ListItem_SetId(*args
, **kwargs
)
3234 def SetColumn(*args
, **kwargs
):
3235 """SetColumn(self, int col)"""
3236 return _controls_
.ListItem_SetColumn(*args
, **kwargs
)
3238 def SetState(*args
, **kwargs
):
3239 """SetState(self, long state)"""
3240 return _controls_
.ListItem_SetState(*args
, **kwargs
)
3242 def SetStateMask(*args
, **kwargs
):
3243 """SetStateMask(self, long stateMask)"""
3244 return _controls_
.ListItem_SetStateMask(*args
, **kwargs
)
3246 def SetText(*args
, **kwargs
):
3247 """SetText(self, String text)"""
3248 return _controls_
.ListItem_SetText(*args
, **kwargs
)
3250 def SetImage(*args
, **kwargs
):
3251 """SetImage(self, int image)"""
3252 return _controls_
.ListItem_SetImage(*args
, **kwargs
)
3254 def SetData(*args
, **kwargs
):
3255 """SetData(self, long data)"""
3256 return _controls_
.ListItem_SetData(*args
, **kwargs
)
3258 def SetWidth(*args
, **kwargs
):
3259 """SetWidth(self, int width)"""
3260 return _controls_
.ListItem_SetWidth(*args
, **kwargs
)
3262 def SetAlign(*args
, **kwargs
):
3263 """SetAlign(self, int align)"""
3264 return _controls_
.ListItem_SetAlign(*args
, **kwargs
)
3266 def SetTextColour(*args
, **kwargs
):
3267 """SetTextColour(self, Colour colText)"""
3268 return _controls_
.ListItem_SetTextColour(*args
, **kwargs
)
3270 def SetBackgroundColour(*args
, **kwargs
):
3271 """SetBackgroundColour(self, Colour colBack)"""
3272 return _controls_
.ListItem_SetBackgroundColour(*args
, **kwargs
)
3274 def SetFont(*args
, **kwargs
):
3275 """SetFont(self, Font font)"""
3276 return _controls_
.ListItem_SetFont(*args
, **kwargs
)
3278 def GetMask(*args
, **kwargs
):
3279 """GetMask(self) -> long"""
3280 return _controls_
.ListItem_GetMask(*args
, **kwargs
)
3282 def GetId(*args
, **kwargs
):
3283 """GetId(self) -> long"""
3284 return _controls_
.ListItem_GetId(*args
, **kwargs
)
3286 def GetColumn(*args
, **kwargs
):
3287 """GetColumn(self) -> int"""
3288 return _controls_
.ListItem_GetColumn(*args
, **kwargs
)
3290 def GetState(*args
, **kwargs
):
3291 """GetState(self) -> long"""
3292 return _controls_
.ListItem_GetState(*args
, **kwargs
)
3294 def GetText(*args
, **kwargs
):
3295 """GetText(self) -> String"""
3296 return _controls_
.ListItem_GetText(*args
, **kwargs
)
3298 def GetImage(*args
, **kwargs
):
3299 """GetImage(self) -> int"""
3300 return _controls_
.ListItem_GetImage(*args
, **kwargs
)
3302 def GetData(*args
, **kwargs
):
3303 """GetData(self) -> long"""
3304 return _controls_
.ListItem_GetData(*args
, **kwargs
)
3306 def GetWidth(*args
, **kwargs
):
3307 """GetWidth(self) -> int"""
3308 return _controls_
.ListItem_GetWidth(*args
, **kwargs
)
3310 def GetAlign(*args
, **kwargs
):
3311 """GetAlign(self) -> int"""
3312 return _controls_
.ListItem_GetAlign(*args
, **kwargs
)
3314 def GetAttributes(*args
, **kwargs
):
3315 """GetAttributes(self) -> ListItemAttr"""
3316 return _controls_
.ListItem_GetAttributes(*args
, **kwargs
)
3318 def HasAttributes(*args
, **kwargs
):
3319 """HasAttributes(self) -> bool"""
3320 return _controls_
.ListItem_HasAttributes(*args
, **kwargs
)
3322 def GetTextColour(*args
, **kwargs
):
3323 """GetTextColour(self) -> Colour"""
3324 return _controls_
.ListItem_GetTextColour(*args
, **kwargs
)
3326 def GetBackgroundColour(*args
, **kwargs
):
3327 """GetBackgroundColour(self) -> Colour"""
3328 return _controls_
.ListItem_GetBackgroundColour(*args
, **kwargs
)
3330 def GetFont(*args
, **kwargs
):
3331 """GetFont(self) -> Font"""
3332 return _controls_
.ListItem_GetFont(*args
, **kwargs
)
3334 m_mask
= property(_controls_
.ListItem_m_mask_get
, _controls_
.ListItem_m_mask_set
)
3335 m_itemId
= property(_controls_
.ListItem_m_itemId_get
, _controls_
.ListItem_m_itemId_set
)
3336 m_col
= property(_controls_
.ListItem_m_col_get
, _controls_
.ListItem_m_col_set
)
3337 m_state
= property(_controls_
.ListItem_m_state_get
, _controls_
.ListItem_m_state_set
)
3338 m_stateMask
= property(_controls_
.ListItem_m_stateMask_get
, _controls_
.ListItem_m_stateMask_set
)
3339 m_text
= property(_controls_
.ListItem_m_text_get
, _controls_
.ListItem_m_text_set
)
3340 m_image
= property(_controls_
.ListItem_m_image_get
, _controls_
.ListItem_m_image_set
)
3341 m_data
= property(_controls_
.ListItem_m_data_get
, _controls_
.ListItem_m_data_set
)
3342 m_format
= property(_controls_
.ListItem_m_format_get
, _controls_
.ListItem_m_format_set
)
3343 m_width
= property(_controls_
.ListItem_m_width_get
, _controls_
.ListItem_m_width_set
)
3345 class ListItemPtr(ListItem
):
3346 def __init__(self
, this
):
3348 if not hasattr(self
,"thisown"): self
.thisown
= 0
3349 self
.__class
__ = ListItem
3350 _controls_
.ListItem_swigregister(ListItemPtr
)
3352 #---------------------------------------------------------------------------
3354 class ListEvent(_core
.NotifyEvent
):
3356 return "<%s.%s; proxy of C++ wxListEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3357 def __init__(self
, *args
, **kwargs
):
3358 """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> ListEvent"""
3359 newobj
= _controls_
.new_ListEvent(*args
, **kwargs
)
3360 self
.this
= newobj
.this
3363 m_code
= property(_controls_
.ListEvent_m_code_get
, _controls_
.ListEvent_m_code_set
)
3364 m_oldItemIndex
= property(_controls_
.ListEvent_m_oldItemIndex_get
, _controls_
.ListEvent_m_oldItemIndex_set
)
3365 m_itemIndex
= property(_controls_
.ListEvent_m_itemIndex_get
, _controls_
.ListEvent_m_itemIndex_set
)
3366 m_col
= property(_controls_
.ListEvent_m_col_get
, _controls_
.ListEvent_m_col_set
)
3367 m_pointDrag
= property(_controls_
.ListEvent_m_pointDrag_get
, _controls_
.ListEvent_m_pointDrag_set
)
3368 m_item
= property(_controls_
.ListEvent_m_item_get
)
3369 def GetKeyCode(*args
, **kwargs
):
3370 """GetKeyCode(self) -> int"""
3371 return _controls_
.ListEvent_GetKeyCode(*args
, **kwargs
)
3373 GetCode
= GetKeyCode
3374 def GetIndex(*args
, **kwargs
):
3375 """GetIndex(self) -> long"""
3376 return _controls_
.ListEvent_GetIndex(*args
, **kwargs
)
3378 def GetColumn(*args
, **kwargs
):
3379 """GetColumn(self) -> int"""
3380 return _controls_
.ListEvent_GetColumn(*args
, **kwargs
)
3382 def GetPoint(*args
, **kwargs
):
3383 """GetPoint(self) -> Point"""
3384 return _controls_
.ListEvent_GetPoint(*args
, **kwargs
)
3386 GetPosition
= GetPoint
3387 def GetLabel(*args
, **kwargs
):
3388 """GetLabel(self) -> String"""
3389 return _controls_
.ListEvent_GetLabel(*args
, **kwargs
)
3391 def GetText(*args
, **kwargs
):
3392 """GetText(self) -> String"""
3393 return _controls_
.ListEvent_GetText(*args
, **kwargs
)
3395 def GetImage(*args
, **kwargs
):
3396 """GetImage(self) -> int"""
3397 return _controls_
.ListEvent_GetImage(*args
, **kwargs
)
3399 def GetData(*args
, **kwargs
):
3400 """GetData(self) -> long"""
3401 return _controls_
.ListEvent_GetData(*args
, **kwargs
)
3403 def GetMask(*args
, **kwargs
):
3404 """GetMask(self) -> long"""
3405 return _controls_
.ListEvent_GetMask(*args
, **kwargs
)
3407 def GetItem(*args
, **kwargs
):
3408 """GetItem(self) -> ListItem"""
3409 return _controls_
.ListEvent_GetItem(*args
, **kwargs
)
3411 def GetCacheFrom(*args
, **kwargs
):
3412 """GetCacheFrom(self) -> long"""
3413 return _controls_
.ListEvent_GetCacheFrom(*args
, **kwargs
)
3415 def GetCacheTo(*args
, **kwargs
):
3416 """GetCacheTo(self) -> long"""
3417 return _controls_
.ListEvent_GetCacheTo(*args
, **kwargs
)
3419 def IsEditCancelled(*args
, **kwargs
):
3420 """IsEditCancelled(self) -> bool"""
3421 return _controls_
.ListEvent_IsEditCancelled(*args
, **kwargs
)
3423 def SetEditCanceled(*args
, **kwargs
):
3424 """SetEditCanceled(self, bool editCancelled)"""
3425 return _controls_
.ListEvent_SetEditCanceled(*args
, **kwargs
)
3428 class ListEventPtr(ListEvent
):
3429 def __init__(self
, this
):
3431 if not hasattr(self
,"thisown"): self
.thisown
= 0
3432 self
.__class
__ = ListEvent
3433 _controls_
.ListEvent_swigregister(ListEventPtr
)
3435 wxEVT_COMMAND_LIST_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_DRAG
3436 wxEVT_COMMAND_LIST_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_RDRAG
3437 wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
3438 wxEVT_COMMAND_LIST_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_LIST_END_LABEL_EDIT
3439 wxEVT_COMMAND_LIST_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ITEM
3440 wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
= _controls_
.wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
3441 wxEVT_COMMAND_LIST_GET_INFO
= _controls_
.wxEVT_COMMAND_LIST_GET_INFO
3442 wxEVT_COMMAND_LIST_SET_INFO
= _controls_
.wxEVT_COMMAND_LIST_SET_INFO
3443 wxEVT_COMMAND_LIST_ITEM_SELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_SELECTED
3444 wxEVT_COMMAND_LIST_ITEM_DESELECTED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_DESELECTED
3445 wxEVT_COMMAND_LIST_KEY_DOWN
= _controls_
.wxEVT_COMMAND_LIST_KEY_DOWN
3446 wxEVT_COMMAND_LIST_INSERT_ITEM
= _controls_
.wxEVT_COMMAND_LIST_INSERT_ITEM
3447 wxEVT_COMMAND_LIST_COL_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_CLICK
3448 wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
3449 wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
3450 wxEVT_COMMAND_LIST_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_ACTIVATED
3451 wxEVT_COMMAND_LIST_CACHE_HINT
= _controls_
.wxEVT_COMMAND_LIST_CACHE_HINT
3452 wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
3453 wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
3454 wxEVT_COMMAND_LIST_COL_DRAGGING
= _controls_
.wxEVT_COMMAND_LIST_COL_DRAGGING
3455 wxEVT_COMMAND_LIST_COL_END_DRAG
= _controls_
.wxEVT_COMMAND_LIST_COL_END_DRAG
3456 wxEVT_COMMAND_LIST_ITEM_FOCUSED
= _controls_
.wxEVT_COMMAND_LIST_ITEM_FOCUSED
3457 EVT_LIST_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG
, 1)
3458 EVT_LIST_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG
, 1)
3459 EVT_LIST_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
, 1)
3460 EVT_LIST_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT
, 1)
3461 EVT_LIST_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM
, 1)
3462 EVT_LIST_DELETE_ALL_ITEMS
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
, 1)
3463 EVT_LIST_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO
, 1)
3464 EVT_LIST_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO
, 1)
3465 EVT_LIST_ITEM_SELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED
, 1)
3466 EVT_LIST_ITEM_DESELECTED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED
, 1)
3467 EVT_LIST_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN
, 1)
3468 EVT_LIST_INSERT_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM
, 1)
3469 EVT_LIST_COL_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK
, 1)
3470 EVT_LIST_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
, 1)
3471 EVT_LIST_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
, 1)
3472 EVT_LIST_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED
, 1)
3473 EVT_LIST_CACHE_HINT
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT
, 1)
3474 EVT_LIST_COL_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
, 1)
3475 EVT_LIST_COL_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
, 1)
3476 EVT_LIST_COL_DRAGGING
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING
, 1)
3477 EVT_LIST_COL_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG
, 1)
3478 EVT_LIST_ITEM_FOCUSED
= wx
.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED
, 1)
3480 #---------------------------------------------------------------------------
3482 class ListCtrl(_core
.Control
):
3484 return "<%s.%s; proxy of C++ wxPyListCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3485 def __init__(self
, *args
, **kwargs
):
3487 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3488 Size size=DefaultSize, long style=LC_ICON,
3489 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListCtrl
3491 newobj
= _controls_
.new_ListCtrl(*args
, **kwargs
)
3492 self
.this
= newobj
.this
3495 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, ListCtrl
)
3497 def Create(*args
, **kwargs
):
3499 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3500 Size size=DefaultSize, long style=LC_ICON,
3501 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
3503 Do the 2nd phase and create the GUI control.
3505 return _controls_
.ListCtrl_Create(*args
, **kwargs
)
3507 def _setCallbackInfo(*args
, **kwargs
):
3508 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3509 return _controls_
.ListCtrl__setCallbackInfo(*args
, **kwargs
)
3511 def SetForegroundColour(*args
, **kwargs
):
3512 """SetForegroundColour(self, Colour col) -> bool"""
3513 return _controls_
.ListCtrl_SetForegroundColour(*args
, **kwargs
)
3515 def SetBackgroundColour(*args
, **kwargs
):
3516 """SetBackgroundColour(self, Colour col) -> bool"""
3517 return _controls_
.ListCtrl_SetBackgroundColour(*args
, **kwargs
)
3519 def GetColumn(*args
, **kwargs
):
3520 """GetColumn(self, int col) -> ListItem"""
3521 val
= _controls_
.ListCtrl_GetColumn(*args
, **kwargs
)
3522 if val
is not None: val
.thisown
= 1
3525 def SetColumn(*args
, **kwargs
):
3526 """SetColumn(self, int col, ListItem item) -> bool"""
3527 return _controls_
.ListCtrl_SetColumn(*args
, **kwargs
)
3529 def GetColumnWidth(*args
, **kwargs
):
3530 """GetColumnWidth(self, int col) -> int"""
3531 return _controls_
.ListCtrl_GetColumnWidth(*args
, **kwargs
)
3533 def SetColumnWidth(*args
, **kwargs
):
3534 """SetColumnWidth(self, int col, int width) -> bool"""
3535 return _controls_
.ListCtrl_SetColumnWidth(*args
, **kwargs
)
3537 def GetCountPerPage(*args
, **kwargs
):
3538 """GetCountPerPage(self) -> int"""
3539 return _controls_
.ListCtrl_GetCountPerPage(*args
, **kwargs
)
3541 def GetViewRect(*args
, **kwargs
):
3542 """GetViewRect(self) -> Rect"""
3543 return _controls_
.ListCtrl_GetViewRect(*args
, **kwargs
)
3545 def GetEditControl(*args
, **kwargs
):
3546 """GetEditControl(self) -> TextCtrl"""
3547 return _controls_
.ListCtrl_GetEditControl(*args
, **kwargs
)
3549 def GetItem(*args
, **kwargs
):
3550 """GetItem(self, long itemId, int col=0) -> ListItem"""
3551 val
= _controls_
.ListCtrl_GetItem(*args
, **kwargs
)
3552 if val
is not None: val
.thisown
= 1
3555 def SetItem(*args
, **kwargs
):
3556 """SetItem(self, ListItem info) -> bool"""
3557 return _controls_
.ListCtrl_SetItem(*args
, **kwargs
)
3559 def SetStringItem(*args
, **kwargs
):
3560 """SetStringItem(self, long index, int col, String label, int imageId=-1) -> long"""
3561 return _controls_
.ListCtrl_SetStringItem(*args
, **kwargs
)
3563 def GetItemState(*args
, **kwargs
):
3564 """GetItemState(self, long item, long stateMask) -> int"""
3565 return _controls_
.ListCtrl_GetItemState(*args
, **kwargs
)
3567 def SetItemState(*args
, **kwargs
):
3568 """SetItemState(self, long item, long state, long stateMask) -> bool"""
3569 return _controls_
.ListCtrl_SetItemState(*args
, **kwargs
)
3571 def SetItemImage(*args
, **kwargs
):
3572 """SetItemImage(self, long item, int image, int selImage) -> bool"""
3573 return _controls_
.ListCtrl_SetItemImage(*args
, **kwargs
)
3575 def GetItemText(*args
, **kwargs
):
3576 """GetItemText(self, long item) -> String"""
3577 return _controls_
.ListCtrl_GetItemText(*args
, **kwargs
)
3579 def SetItemText(*args
, **kwargs
):
3580 """SetItemText(self, long item, String str)"""
3581 return _controls_
.ListCtrl_SetItemText(*args
, **kwargs
)
3583 def GetItemData(*args
, **kwargs
):
3584 """GetItemData(self, long item) -> long"""
3585 return _controls_
.ListCtrl_GetItemData(*args
, **kwargs
)
3587 def SetItemData(*args
, **kwargs
):
3588 """SetItemData(self, long item, long data) -> bool"""
3589 return _controls_
.ListCtrl_SetItemData(*args
, **kwargs
)
3591 def GetItemPosition(*args
, **kwargs
):
3592 """GetItemPosition(self, long item) -> Point"""
3593 return _controls_
.ListCtrl_GetItemPosition(*args
, **kwargs
)
3595 def GetItemRect(*args
, **kwargs
):
3596 """GetItemRect(self, long item, int code=LIST_RECT_BOUNDS) -> Rect"""
3597 return _controls_
.ListCtrl_GetItemRect(*args
, **kwargs
)
3599 def SetItemPosition(*args
, **kwargs
):
3600 """SetItemPosition(self, long item, Point pos) -> bool"""
3601 return _controls_
.ListCtrl_SetItemPosition(*args
, **kwargs
)
3603 def GetItemCount(*args
, **kwargs
):
3604 """GetItemCount(self) -> int"""
3605 return _controls_
.ListCtrl_GetItemCount(*args
, **kwargs
)
3607 def GetColumnCount(*args
, **kwargs
):
3608 """GetColumnCount(self) -> int"""
3609 return _controls_
.ListCtrl_GetColumnCount(*args
, **kwargs
)
3611 def GetItemSpacing(*args
, **kwargs
):
3612 """GetItemSpacing(self) -> Size"""
3613 return _controls_
.ListCtrl_GetItemSpacing(*args
, **kwargs
)
3615 def GetSelectedItemCount(*args
, **kwargs
):
3616 """GetSelectedItemCount(self) -> int"""
3617 return _controls_
.ListCtrl_GetSelectedItemCount(*args
, **kwargs
)
3619 def GetTextColour(*args
, **kwargs
):
3620 """GetTextColour(self) -> Colour"""
3621 return _controls_
.ListCtrl_GetTextColour(*args
, **kwargs
)
3623 def SetTextColour(*args
, **kwargs
):
3624 """SetTextColour(self, Colour col)"""
3625 return _controls_
.ListCtrl_SetTextColour(*args
, **kwargs
)
3627 def GetTopItem(*args
, **kwargs
):
3628 """GetTopItem(self) -> long"""
3629 return _controls_
.ListCtrl_GetTopItem(*args
, **kwargs
)
3631 def SetSingleStyle(*args
, **kwargs
):
3632 """SetSingleStyle(self, long style, bool add=True)"""
3633 return _controls_
.ListCtrl_SetSingleStyle(*args
, **kwargs
)
3635 def SetWindowStyleFlag(*args
, **kwargs
):
3637 SetWindowStyleFlag(self, long style)
3639 Sets the style of the window. Please note that some styles cannot
3640 be changed after the window creation and that Refresh() might
3641 need to be called after changing the others for the change to
3642 take place immediately.
3644 return _controls_
.ListCtrl_SetWindowStyleFlag(*args
, **kwargs
)
3646 def GetNextItem(*args
, **kwargs
):
3647 """GetNextItem(self, long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -> long"""
3648 return _controls_
.ListCtrl_GetNextItem(*args
, **kwargs
)
3650 def GetImageList(*args
, **kwargs
):
3651 """GetImageList(self, int which) -> ImageList"""
3652 return _controls_
.ListCtrl_GetImageList(*args
, **kwargs
)
3654 def SetImageList(*args
, **kwargs
):
3655 """SetImageList(self, ImageList imageList, int which)"""
3656 return _controls_
.ListCtrl_SetImageList(*args
, **kwargs
)
3658 def AssignImageList(*args
, **kwargs
):
3659 """AssignImageList(self, ImageList imageList, int which)"""
3660 return _controls_
.ListCtrl_AssignImageList(*args
, **kwargs
)
3662 def InReportView(*args
, **kwargs
):
3663 """InReportView(self) -> bool"""
3664 return _controls_
.ListCtrl_InReportView(*args
, **kwargs
)
3666 def IsVirtual(*args
, **kwargs
):
3667 """IsVirtual(self) -> bool"""
3668 return _controls_
.ListCtrl_IsVirtual(*args
, **kwargs
)
3670 def RefreshItem(*args
, **kwargs
):
3671 """RefreshItem(self, long item)"""
3672 return _controls_
.ListCtrl_RefreshItem(*args
, **kwargs
)
3674 def RefreshItems(*args
, **kwargs
):
3675 """RefreshItems(self, long itemFrom, long itemTo)"""
3676 return _controls_
.ListCtrl_RefreshItems(*args
, **kwargs
)
3678 def Arrange(*args
, **kwargs
):
3679 """Arrange(self, int flag=LIST_ALIGN_DEFAULT) -> bool"""
3680 return _controls_
.ListCtrl_Arrange(*args
, **kwargs
)
3682 def DeleteItem(*args
, **kwargs
):
3683 """DeleteItem(self, long item) -> bool"""
3684 return _controls_
.ListCtrl_DeleteItem(*args
, **kwargs
)
3686 def DeleteAllItems(*args
, **kwargs
):
3687 """DeleteAllItems(self) -> bool"""
3688 return _controls_
.ListCtrl_DeleteAllItems(*args
, **kwargs
)
3690 def DeleteColumn(*args
, **kwargs
):
3691 """DeleteColumn(self, int col) -> bool"""
3692 return _controls_
.ListCtrl_DeleteColumn(*args
, **kwargs
)
3694 def DeleteAllColumns(*args
, **kwargs
):
3695 """DeleteAllColumns(self) -> bool"""
3696 return _controls_
.ListCtrl_DeleteAllColumns(*args
, **kwargs
)
3698 def ClearAll(*args
, **kwargs
):
3699 """ClearAll(self)"""
3700 return _controls_
.ListCtrl_ClearAll(*args
, **kwargs
)
3702 def EditLabel(*args
, **kwargs
):
3703 """EditLabel(self, long item) -> TextCtrl"""
3704 return _controls_
.ListCtrl_EditLabel(*args
, **kwargs
)
3706 def EndEditLabel(*args
, **kwargs
):
3707 """EndEditLabel(self, bool cancel) -> bool"""
3708 return _controls_
.ListCtrl_EndEditLabel(*args
, **kwargs
)
3710 def EnsureVisible(*args
, **kwargs
):
3711 """EnsureVisible(self, long item) -> bool"""
3712 return _controls_
.ListCtrl_EnsureVisible(*args
, **kwargs
)
3714 def FindItem(*args
, **kwargs
):
3715 """FindItem(self, long start, String str, bool partial=False) -> long"""
3716 return _controls_
.ListCtrl_FindItem(*args
, **kwargs
)
3718 def FindItemData(*args
, **kwargs
):
3719 """FindItemData(self, long start, long data) -> long"""
3720 return _controls_
.ListCtrl_FindItemData(*args
, **kwargs
)
3722 def FindItemAtPos(*args
, **kwargs
):
3723 """FindItemAtPos(self, long start, Point pt, int direction) -> long"""
3724 return _controls_
.ListCtrl_FindItemAtPos(*args
, **kwargs
)
3726 def HitTest(*args
, **kwargs
):
3728 HitTest(Point point) -> (item, where)
3730 Determines which item (if any) is at the specified point,
3731 giving details in the second return value (see wxLIST_HITTEST_... flags.)
3733 return _controls_
.ListCtrl_HitTest(*args
, **kwargs
)
3735 def InsertItem(*args
, **kwargs
):
3736 """InsertItem(self, ListItem info) -> long"""
3737 return _controls_
.ListCtrl_InsertItem(*args
, **kwargs
)
3739 def InsertStringItem(*args
, **kwargs
):
3740 """InsertStringItem(self, long index, String label) -> long"""
3741 return _controls_
.ListCtrl_InsertStringItem(*args
, **kwargs
)
3743 def InsertImageItem(*args
, **kwargs
):
3744 """InsertImageItem(self, long index, int imageIndex) -> long"""
3745 return _controls_
.ListCtrl_InsertImageItem(*args
, **kwargs
)
3747 def InsertImageStringItem(*args
, **kwargs
):
3748 """InsertImageStringItem(self, long index, String label, int imageIndex) -> long"""
3749 return _controls_
.ListCtrl_InsertImageStringItem(*args
, **kwargs
)
3751 def InsertColumnInfo(*args
, **kwargs
):
3752 """InsertColumnInfo(self, long col, ListItem info) -> long"""
3753 return _controls_
.ListCtrl_InsertColumnInfo(*args
, **kwargs
)
3755 def InsertColumn(*args
, **kwargs
):
3757 InsertColumn(self, long col, String heading, int format=LIST_FORMAT_LEFT,
3758 int width=-1) -> long
3760 return _controls_
.ListCtrl_InsertColumn(*args
, **kwargs
)
3762 def SetItemCount(*args
, **kwargs
):
3763 """SetItemCount(self, long count)"""
3764 return _controls_
.ListCtrl_SetItemCount(*args
, **kwargs
)
3766 def ScrollList(*args
, **kwargs
):
3767 """ScrollList(self, int dx, int dy) -> bool"""
3768 return _controls_
.ListCtrl_ScrollList(*args
, **kwargs
)
3770 def SetItemTextColour(*args
, **kwargs
):
3771 """SetItemTextColour(self, long item, Colour col)"""
3772 return _controls_
.ListCtrl_SetItemTextColour(*args
, **kwargs
)
3774 def GetItemTextColour(*args
, **kwargs
):
3775 """GetItemTextColour(self, long item) -> Colour"""
3776 return _controls_
.ListCtrl_GetItemTextColour(*args
, **kwargs
)
3778 def SetItemBackgroundColour(*args
, **kwargs
):
3779 """SetItemBackgroundColour(self, long item, Colour col)"""
3780 return _controls_
.ListCtrl_SetItemBackgroundColour(*args
, **kwargs
)
3782 def GetItemBackgroundColour(*args
, **kwargs
):
3783 """GetItemBackgroundColour(self, long item) -> Colour"""
3784 return _controls_
.ListCtrl_GetItemBackgroundColour(*args
, **kwargs
)
3788 def Select(self
, idx
, on
=1):
3789 '''[de]select an item'''
3790 if on
: state
= wx
.LIST_STATE_SELECTED
3792 self
.SetItemState(idx
, state
, wx
.LIST_STATE_SELECTED
)
3794 def Focus(self
, idx
):
3795 '''Focus and show the given item'''
3796 self
.SetItemState(idx
, wx
.LIST_STATE_FOCUSED
, wx
.LIST_STATE_FOCUSED
)
3797 self
.EnsureVisible(idx
)
3799 def GetFocusedItem(self
):
3800 '''get the currently focused item or -1 if none'''
3801 return self
.GetNextItem(-1, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_FOCUSED
)
3803 def GetFirstSelected(self
, *args
):
3804 '''return first selected item, or -1 when none'''
3805 return self
.GetNextSelected(-1)
3807 def GetNextSelected(self
, item
):
3808 '''return subsequent selected items, or -1 when no more'''
3809 return self
.GetNextItem(item
, wx
.LIST_NEXT_ALL
, wx
.LIST_STATE_SELECTED
)
3811 def IsSelected(self
, idx
):
3812 '''return True if the item is selected'''
3813 return self
.GetItemState(idx
, wx
.LIST_STATE_SELECTED
) != 0
3815 def SetColumnImage(self
, col
, image
):
3816 item
= self
.GetColumn(col
)
3817 # preserve all other attributes too
3818 item
.SetMask( wx
.LIST_MASK_STATE |
3820 wx
.LIST_MASK_IMAGE |
3823 wx
.LIST_MASK_WIDTH |
3824 wx
.LIST_MASK_FORMAT
)
3825 item
.SetImage(image
)
3826 self
.SetColumn(col
, item
)
3828 def ClearColumnImage(self
, col
):
3829 self
.SetColumnImage(col
, -1)
3831 def Append(self
, entry
):
3832 '''Append an item to the list control. The entry parameter should be a
3833 sequence with an item for each column'''
3839 pos
= self
.GetItemCount()
3840 self
.InsertStringItem(pos
, cvtfunc(entry
[0]))
3841 for i
in range(1, len(entry
)):
3842 self
.SetStringItem(pos
, i
, cvtfunc(entry
[i
]))
3845 def SortItems(*args
, **kwargs
):
3846 """SortItems(self, PyObject func) -> bool"""
3847 return _controls_
.ListCtrl_SortItems(*args
, **kwargs
)
3849 def GetMainWindow(*args
, **kwargs
):
3850 """GetMainWindow(self) -> Window"""
3851 return _controls_
.ListCtrl_GetMainWindow(*args
, **kwargs
)
3853 def GetClassDefaultAttributes(*args
, **kwargs
):
3855 ListCtrl.GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3857 Get the default attributes for this class. This is useful if
3858 you want to use the same font or colour in your own control as
3859 in a standard control -- which is a much better idea than hard
3860 coding specific colours or fonts which might look completely out
3861 of place on the users system, especially if it uses themes.
3863 The variant parameter is only relevant under Mac currently and is
3864 ignore under other platforms. Under Mac, it will change the size of the
3865 returned font. See SetWindowVariant for more about this.
3867 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
3869 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
3871 class ListCtrlPtr(ListCtrl
):
3872 def __init__(self
, this
):
3874 if not hasattr(self
,"thisown"): self
.thisown
= 0
3875 self
.__class
__ = ListCtrl
3876 _controls_
.ListCtrl_swigregister(ListCtrlPtr
)
3878 def PreListCtrl(*args
, **kwargs
):
3879 """PreListCtrl() -> ListCtrl"""
3880 val
= _controls_
.new_PreListCtrl(*args
, **kwargs
)
3884 def ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
3886 ListCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3888 Get the default attributes for this class. This is useful if
3889 you want to use the same font or colour in your own control as
3890 in a standard control -- which is a much better idea than hard
3891 coding specific colours or fonts which might look completely out
3892 of place on the users system, especially if it uses themes.
3894 The variant parameter is only relevant under Mac currently and is
3895 ignore under other platforms. Under Mac, it will change the size of the
3896 returned font. See SetWindowVariant for more about this.
3898 return _controls_
.ListCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
3900 #---------------------------------------------------------------------------
3902 class ListView(ListCtrl
):
3904 return "<%s.%s; proxy of C++ wxListView instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3905 def __init__(self
, *args
, **kwargs
):
3907 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3908 Size size=DefaultSize, long style=LC_REPORT,
3909 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListView
3911 newobj
= _controls_
.new_ListView(*args
, **kwargs
)
3912 self
.this
= newobj
.this
3915 self
._setOORInfo
(self
)
3917 def Create(*args
, **kwargs
):
3919 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3920 Size size=DefaultSize, long style=LC_REPORT,
3921 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
3923 Do the 2nd phase and create the GUI control.
3925 return _controls_
.ListView_Create(*args
, **kwargs
)
3927 def Select(*args
, **kwargs
):
3928 """Select(self, long n, bool on=True)"""
3929 return _controls_
.ListView_Select(*args
, **kwargs
)
3931 def Focus(*args
, **kwargs
):
3932 """Focus(self, long index)"""
3933 return _controls_
.ListView_Focus(*args
, **kwargs
)
3935 def GetFocusedItem(*args
, **kwargs
):
3936 """GetFocusedItem(self) -> long"""
3937 return _controls_
.ListView_GetFocusedItem(*args
, **kwargs
)
3939 def GetNextSelected(*args
, **kwargs
):
3940 """GetNextSelected(self, long item) -> long"""
3941 return _controls_
.ListView_GetNextSelected(*args
, **kwargs
)
3943 def GetFirstSelected(*args
, **kwargs
):
3944 """GetFirstSelected(self) -> long"""
3945 return _controls_
.ListView_GetFirstSelected(*args
, **kwargs
)
3947 def IsSelected(*args
, **kwargs
):
3948 """IsSelected(self, long index) -> bool"""
3949 return _controls_
.ListView_IsSelected(*args
, **kwargs
)
3951 def SetColumnImage(*args
, **kwargs
):
3952 """SetColumnImage(self, int col, int image)"""
3953 return _controls_
.ListView_SetColumnImage(*args
, **kwargs
)
3955 def ClearColumnImage(*args
, **kwargs
):
3956 """ClearColumnImage(self, int col)"""
3957 return _controls_
.ListView_ClearColumnImage(*args
, **kwargs
)
3960 class ListViewPtr(ListView
):
3961 def __init__(self
, this
):
3963 if not hasattr(self
,"thisown"): self
.thisown
= 0
3964 self
.__class
__ = ListView
3965 _controls_
.ListView_swigregister(ListViewPtr
)
3967 def PreListView(*args
, **kwargs
):
3968 """PreListView() -> ListView"""
3969 val
= _controls_
.new_PreListView(*args
, **kwargs
)
3973 #---------------------------------------------------------------------------
3975 TR_NO_BUTTONS
= _controls_
.TR_NO_BUTTONS
3976 TR_HAS_BUTTONS
= _controls_
.TR_HAS_BUTTONS
3977 TR_NO_LINES
= _controls_
.TR_NO_LINES
3978 TR_LINES_AT_ROOT
= _controls_
.TR_LINES_AT_ROOT
3979 TR_SINGLE
= _controls_
.TR_SINGLE
3980 TR_MULTIPLE
= _controls_
.TR_MULTIPLE
3981 TR_EXTENDED
= _controls_
.TR_EXTENDED
3982 TR_HAS_VARIABLE_ROW_HEIGHT
= _controls_
.TR_HAS_VARIABLE_ROW_HEIGHT
3983 TR_EDIT_LABELS
= _controls_
.TR_EDIT_LABELS
3984 TR_HIDE_ROOT
= _controls_
.TR_HIDE_ROOT
3985 TR_ROW_LINES
= _controls_
.TR_ROW_LINES
3986 TR_FULL_ROW_HIGHLIGHT
= _controls_
.TR_FULL_ROW_HIGHLIGHT
3987 TR_DEFAULT_STYLE
= _controls_
.TR_DEFAULT_STYLE
3988 TR_TWIST_BUTTONS
= _controls_
.TR_TWIST_BUTTONS
3989 TR_MAC_BUTTONS
= _controls_
.TR_MAC_BUTTONS
3990 TR_AQUA_BUTTONS
= _controls_
.TR_AQUA_BUTTONS
3991 TreeItemIcon_Normal
= _controls_
.TreeItemIcon_Normal
3992 TreeItemIcon_Selected
= _controls_
.TreeItemIcon_Selected
3993 TreeItemIcon_Expanded
= _controls_
.TreeItemIcon_Expanded
3994 TreeItemIcon_SelectedExpanded
= _controls_
.TreeItemIcon_SelectedExpanded
3995 TreeItemIcon_Max
= _controls_
.TreeItemIcon_Max
3996 TREE_HITTEST_ABOVE
= _controls_
.TREE_HITTEST_ABOVE
3997 TREE_HITTEST_BELOW
= _controls_
.TREE_HITTEST_BELOW
3998 TREE_HITTEST_NOWHERE
= _controls_
.TREE_HITTEST_NOWHERE
3999 TREE_HITTEST_ONITEMBUTTON
= _controls_
.TREE_HITTEST_ONITEMBUTTON
4000 TREE_HITTEST_ONITEMICON
= _controls_
.TREE_HITTEST_ONITEMICON
4001 TREE_HITTEST_ONITEMINDENT
= _controls_
.TREE_HITTEST_ONITEMINDENT
4002 TREE_HITTEST_ONITEMLABEL
= _controls_
.TREE_HITTEST_ONITEMLABEL
4003 TREE_HITTEST_ONITEMRIGHT
= _controls_
.TREE_HITTEST_ONITEMRIGHT
4004 TREE_HITTEST_ONITEMSTATEICON
= _controls_
.TREE_HITTEST_ONITEMSTATEICON
4005 TREE_HITTEST_TOLEFT
= _controls_
.TREE_HITTEST_TOLEFT
4006 TREE_HITTEST_TORIGHT
= _controls_
.TREE_HITTEST_TORIGHT
4007 TREE_HITTEST_ONITEMUPPERPART
= _controls_
.TREE_HITTEST_ONITEMUPPERPART
4008 TREE_HITTEST_ONITEMLOWERPART
= _controls_
.TREE_HITTEST_ONITEMLOWERPART
4009 TREE_HITTEST_ONITEM
= _controls_
.TREE_HITTEST_ONITEM
4010 #---------------------------------------------------------------------------
4012 class TreeItemId(object):
4014 return "<%s.%s; proxy of C++ wxTreeItemId instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4015 def __init__(self
, *args
, **kwargs
):
4016 """__init__(self) -> TreeItemId"""
4017 newobj
= _controls_
.new_TreeItemId(*args
, **kwargs
)
4018 self
.this
= newobj
.this
4021 def __del__(self
, destroy
=_controls_
.delete_TreeItemId
):
4024 if self
.thisown
: destroy(self
)
4027 def IsOk(*args
, **kwargs
):
4028 """IsOk(self) -> bool"""
4029 return _controls_
.TreeItemId_IsOk(*args
, **kwargs
)
4031 def __eq__(*args
, **kwargs
):
4032 """__eq__(self, TreeItemId other) -> bool"""
4033 return _controls_
.TreeItemId___eq__(*args
, **kwargs
)
4035 def __ne__(*args
, **kwargs
):
4036 """__ne__(self, TreeItemId other) -> bool"""
4037 return _controls_
.TreeItemId___ne__(*args
, **kwargs
)
4039 m_pItem
= property(_controls_
.TreeItemId_m_pItem_get
, _controls_
.TreeItemId_m_pItem_set
)
4041 def __nonzero__(self
): return self
.IsOk()
4043 class TreeItemIdPtr(TreeItemId
):
4044 def __init__(self
, this
):
4046 if not hasattr(self
,"thisown"): self
.thisown
= 0
4047 self
.__class
__ = TreeItemId
4048 _controls_
.TreeItemId_swigregister(TreeItemIdPtr
)
4049 TreeCtrlNameStr
= cvar
.TreeCtrlNameStr
4051 class TreeItemData(object):
4053 return "<%s.%s; proxy of C++ wxPyTreeItemData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4054 def __init__(self
, *args
, **kwargs
):
4055 """__init__(self, PyObject obj=None) -> TreeItemData"""
4056 newobj
= _controls_
.new_TreeItemData(*args
, **kwargs
)
4057 self
.this
= newobj
.this
4060 def GetData(*args
, **kwargs
):
4061 """GetData(self) -> PyObject"""
4062 return _controls_
.TreeItemData_GetData(*args
, **kwargs
)
4064 def SetData(*args
, **kwargs
):
4065 """SetData(self, PyObject obj)"""
4066 return _controls_
.TreeItemData_SetData(*args
, **kwargs
)
4068 def GetId(*args
, **kwargs
):
4069 """GetId(self) -> TreeItemId"""
4070 return _controls_
.TreeItemData_GetId(*args
, **kwargs
)
4072 def SetId(*args
, **kwargs
):
4073 """SetId(self, TreeItemId id)"""
4074 return _controls_
.TreeItemData_SetId(*args
, **kwargs
)
4076 def Destroy(*args
, **kwargs
):
4078 return _controls_
.TreeItemData_Destroy(*args
, **kwargs
)
4081 class TreeItemDataPtr(TreeItemData
):
4082 def __init__(self
, this
):
4084 if not hasattr(self
,"thisown"): self
.thisown
= 0
4085 self
.__class
__ = TreeItemData
4086 _controls_
.TreeItemData_swigregister(TreeItemDataPtr
)
4088 #---------------------------------------------------------------------------
4090 wxEVT_COMMAND_TREE_BEGIN_DRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_DRAG
4091 wxEVT_COMMAND_TREE_BEGIN_RDRAG
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_RDRAG
4092 wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
4093 wxEVT_COMMAND_TREE_END_LABEL_EDIT
= _controls_
.wxEVT_COMMAND_TREE_END_LABEL_EDIT
4094 wxEVT_COMMAND_TREE_DELETE_ITEM
= _controls_
.wxEVT_COMMAND_TREE_DELETE_ITEM
4095 wxEVT_COMMAND_TREE_GET_INFO
= _controls_
.wxEVT_COMMAND_TREE_GET_INFO
4096 wxEVT_COMMAND_TREE_SET_INFO
= _controls_
.wxEVT_COMMAND_TREE_SET_INFO
4097 wxEVT_COMMAND_TREE_ITEM_EXPANDED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDED
4098 wxEVT_COMMAND_TREE_ITEM_EXPANDING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_EXPANDING
4099 wxEVT_COMMAND_TREE_ITEM_COLLAPSED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSED
4100 wxEVT_COMMAND_TREE_ITEM_COLLAPSING
= _controls_
.wxEVT_COMMAND_TREE_ITEM_COLLAPSING
4101 wxEVT_COMMAND_TREE_SEL_CHANGED
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGED
4102 wxEVT_COMMAND_TREE_SEL_CHANGING
= _controls_
.wxEVT_COMMAND_TREE_SEL_CHANGING
4103 wxEVT_COMMAND_TREE_KEY_DOWN
= _controls_
.wxEVT_COMMAND_TREE_KEY_DOWN
4104 wxEVT_COMMAND_TREE_ITEM_ACTIVATED
= _controls_
.wxEVT_COMMAND_TREE_ITEM_ACTIVATED
4105 wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
4106 wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
4107 wxEVT_COMMAND_TREE_END_DRAG
= _controls_
.wxEVT_COMMAND_TREE_END_DRAG
4108 wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
= _controls_
.wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
4109 wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
= _controls_
.wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
4110 EVT_TREE_BEGIN_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG
, 1)
4111 EVT_TREE_BEGIN_RDRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG
, 1)
4112 EVT_TREE_BEGIN_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, 1)
4113 EVT_TREE_END_LABEL_EDIT
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, 1)
4114 EVT_TREE_DELETE_ITEM
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM
, 1)
4115 EVT_TREE_GET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO
, 1)
4116 EVT_TREE_SET_INFO
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO
, 1)
4117 EVT_TREE_ITEM_EXPANDED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED
, 1)
4118 EVT_TREE_ITEM_EXPANDING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, 1)
4119 EVT_TREE_ITEM_COLLAPSED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, 1)
4120 EVT_TREE_ITEM_COLLAPSING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, 1)
4121 EVT_TREE_SEL_CHANGED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED
, 1)
4122 EVT_TREE_SEL_CHANGING
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING
, 1)
4123 EVT_TREE_KEY_DOWN
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN
, 1)
4124 EVT_TREE_ITEM_ACTIVATED
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, 1)
4125 EVT_TREE_ITEM_RIGHT_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, 1)
4126 EVT_TREE_ITEM_MIDDLE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, 1)
4127 EVT_TREE_END_DRAG
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG
, 1)
4128 EVT_TREE_STATE_IMAGE_CLICK
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
, 1)
4129 EVT_TREE_ITEM_GETTOOLTIP
= wx
.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
, 1)
4131 class TreeEvent(_core
.NotifyEvent
):
4133 return "<%s.%s; proxy of C++ wxTreeEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4134 def __init__(self
, *args
, **kwargs
):
4135 """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> TreeEvent"""
4136 newobj
= _controls_
.new_TreeEvent(*args
, **kwargs
)
4137 self
.this
= newobj
.this
4140 def GetItem(*args
, **kwargs
):
4141 """GetItem(self) -> TreeItemId"""
4142 return _controls_
.TreeEvent_GetItem(*args
, **kwargs
)
4144 def SetItem(*args
, **kwargs
):
4145 """SetItem(self, TreeItemId item)"""
4146 return _controls_
.TreeEvent_SetItem(*args
, **kwargs
)
4148 def GetOldItem(*args
, **kwargs
):
4149 """GetOldItem(self) -> TreeItemId"""
4150 return _controls_
.TreeEvent_GetOldItem(*args
, **kwargs
)
4152 def SetOldItem(*args
, **kwargs
):
4153 """SetOldItem(self, TreeItemId item)"""
4154 return _controls_
.TreeEvent_SetOldItem(*args
, **kwargs
)
4156 def GetPoint(*args
, **kwargs
):
4157 """GetPoint(self) -> Point"""
4158 return _controls_
.TreeEvent_GetPoint(*args
, **kwargs
)
4160 def SetPoint(*args
, **kwargs
):
4161 """SetPoint(self, Point pt)"""
4162 return _controls_
.TreeEvent_SetPoint(*args
, **kwargs
)
4164 def GetKeyEvent(*args
, **kwargs
):
4165 """GetKeyEvent(self) -> KeyEvent"""
4166 return _controls_
.TreeEvent_GetKeyEvent(*args
, **kwargs
)
4168 def GetKeyCode(*args
, **kwargs
):
4169 """GetKeyCode(self) -> int"""
4170 return _controls_
.TreeEvent_GetKeyCode(*args
, **kwargs
)
4172 def SetKeyEvent(*args
, **kwargs
):
4173 """SetKeyEvent(self, KeyEvent evt)"""
4174 return _controls_
.TreeEvent_SetKeyEvent(*args
, **kwargs
)
4176 def GetLabel(*args
, **kwargs
):
4177 """GetLabel(self) -> String"""
4178 return _controls_
.TreeEvent_GetLabel(*args
, **kwargs
)
4180 def SetLabel(*args
, **kwargs
):
4181 """SetLabel(self, String label)"""
4182 return _controls_
.TreeEvent_SetLabel(*args
, **kwargs
)
4184 def IsEditCancelled(*args
, **kwargs
):
4185 """IsEditCancelled(self) -> bool"""
4186 return _controls_
.TreeEvent_IsEditCancelled(*args
, **kwargs
)
4188 def SetEditCanceled(*args
, **kwargs
):
4189 """SetEditCanceled(self, bool editCancelled)"""
4190 return _controls_
.TreeEvent_SetEditCanceled(*args
, **kwargs
)
4192 def SetToolTip(*args
, **kwargs
):
4193 """SetToolTip(self, String toolTip)"""
4194 return _controls_
.TreeEvent_SetToolTip(*args
, **kwargs
)
4197 class TreeEventPtr(TreeEvent
):
4198 def __init__(self
, this
):
4200 if not hasattr(self
,"thisown"): self
.thisown
= 0
4201 self
.__class
__ = TreeEvent
4202 _controls_
.TreeEvent_swigregister(TreeEventPtr
)
4204 #---------------------------------------------------------------------------
4206 class TreeCtrl(_core
.Control
):
4208 return "<%s.%s; proxy of C++ wxPyTreeCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4209 def __init__(self
, *args
, **kwargs
):
4211 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4212 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
4213 Validator validator=DefaultValidator,
4214 String name=TreeCtrlNameStr) -> TreeCtrl
4216 newobj
= _controls_
.new_TreeCtrl(*args
, **kwargs
)
4217 self
.this
= newobj
.this
4220 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, TreeCtrl
)
4222 def Create(*args
, **kwargs
):
4224 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4225 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
4226 Validator validator=DefaultValidator,
4227 String name=TreeCtrlNameStr) -> bool
4229 Do the 2nd phase and create the GUI control.
4231 return _controls_
.TreeCtrl_Create(*args
, **kwargs
)
4233 def _setCallbackInfo(*args
, **kwargs
):
4234 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4235 return _controls_
.TreeCtrl__setCallbackInfo(*args
, **kwargs
)
4237 def GetCount(*args
, **kwargs
):
4238 """GetCount(self) -> size_t"""
4239 return _controls_
.TreeCtrl_GetCount(*args
, **kwargs
)
4241 def GetIndent(*args
, **kwargs
):
4242 """GetIndent(self) -> unsigned int"""
4243 return _controls_
.TreeCtrl_GetIndent(*args
, **kwargs
)
4245 def SetIndent(*args
, **kwargs
):
4246 """SetIndent(self, unsigned int indent)"""
4247 return _controls_
.TreeCtrl_SetIndent(*args
, **kwargs
)
4249 def GetSpacing(*args
, **kwargs
):
4250 """GetSpacing(self) -> unsigned int"""
4251 return _controls_
.TreeCtrl_GetSpacing(*args
, **kwargs
)
4253 def SetSpacing(*args
, **kwargs
):
4254 """SetSpacing(self, unsigned int spacing)"""
4255 return _controls_
.TreeCtrl_SetSpacing(*args
, **kwargs
)
4257 def GetImageList(*args
, **kwargs
):
4258 """GetImageList(self) -> ImageList"""
4259 return _controls_
.TreeCtrl_GetImageList(*args
, **kwargs
)
4261 def GetStateImageList(*args
, **kwargs
):
4262 """GetStateImageList(self) -> ImageList"""
4263 return _controls_
.TreeCtrl_GetStateImageList(*args
, **kwargs
)
4265 def SetImageList(*args
, **kwargs
):
4266 """SetImageList(self, ImageList imageList)"""
4267 return _controls_
.TreeCtrl_SetImageList(*args
, **kwargs
)
4269 def SetStateImageList(*args
, **kwargs
):
4270 """SetStateImageList(self, ImageList imageList)"""
4271 return _controls_
.TreeCtrl_SetStateImageList(*args
, **kwargs
)
4273 def AssignImageList(*args
, **kwargs
):
4274 """AssignImageList(self, ImageList imageList)"""
4275 return _controls_
.TreeCtrl_AssignImageList(*args
, **kwargs
)
4277 def AssignStateImageList(*args
, **kwargs
):
4278 """AssignStateImageList(self, ImageList imageList)"""
4279 return _controls_
.TreeCtrl_AssignStateImageList(*args
, **kwargs
)
4281 def GetItemText(*args
, **kwargs
):
4282 """GetItemText(self, TreeItemId item) -> String"""
4283 return _controls_
.TreeCtrl_GetItemText(*args
, **kwargs
)
4285 def GetItemImage(*args
, **kwargs
):
4286 """GetItemImage(self, TreeItemId item, int which=TreeItemIcon_Normal) -> int"""
4287 return _controls_
.TreeCtrl_GetItemImage(*args
, **kwargs
)
4289 def GetItemData(*args
, **kwargs
):
4290 """GetItemData(self, TreeItemId item) -> TreeItemData"""
4291 return _controls_
.TreeCtrl_GetItemData(*args
, **kwargs
)
4293 def GetItemPyData(*args
, **kwargs
):
4294 """GetItemPyData(self, TreeItemId item) -> PyObject"""
4295 return _controls_
.TreeCtrl_GetItemPyData(*args
, **kwargs
)
4297 GetPyData
= GetItemPyData
4298 def GetItemTextColour(*args
, **kwargs
):
4299 """GetItemTextColour(self, TreeItemId item) -> Colour"""
4300 return _controls_
.TreeCtrl_GetItemTextColour(*args
, **kwargs
)
4302 def GetItemBackgroundColour(*args
, **kwargs
):
4303 """GetItemBackgroundColour(self, TreeItemId item) -> Colour"""
4304 return _controls_
.TreeCtrl_GetItemBackgroundColour(*args
, **kwargs
)
4306 def GetItemFont(*args
, **kwargs
):
4307 """GetItemFont(self, TreeItemId item) -> Font"""
4308 return _controls_
.TreeCtrl_GetItemFont(*args
, **kwargs
)
4310 def SetItemText(*args
, **kwargs
):
4311 """SetItemText(self, TreeItemId item, String text)"""
4312 return _controls_
.TreeCtrl_SetItemText(*args
, **kwargs
)
4314 def SetItemImage(*args
, **kwargs
):
4315 """SetItemImage(self, TreeItemId item, int image, int which=TreeItemIcon_Normal)"""
4316 return _controls_
.TreeCtrl_SetItemImage(*args
, **kwargs
)
4318 def SetItemData(*args
, **kwargs
):
4319 """SetItemData(self, TreeItemId item, TreeItemData data)"""
4320 return _controls_
.TreeCtrl_SetItemData(*args
, **kwargs
)
4322 def SetItemPyData(*args
, **kwargs
):
4323 """SetItemPyData(self, TreeItemId item, PyObject obj)"""
4324 return _controls_
.TreeCtrl_SetItemPyData(*args
, **kwargs
)
4326 SetPyData
= SetItemPyData
4327 def SetItemHasChildren(*args
, **kwargs
):
4328 """SetItemHasChildren(self, TreeItemId item, bool has=True)"""
4329 return _controls_
.TreeCtrl_SetItemHasChildren(*args
, **kwargs
)
4331 def SetItemBold(*args
, **kwargs
):
4332 """SetItemBold(self, TreeItemId item, bool bold=True)"""
4333 return _controls_
.TreeCtrl_SetItemBold(*args
, **kwargs
)
4335 def SetItemDropHighlight(*args
, **kwargs
):
4336 """SetItemDropHighlight(self, TreeItemId item, bool highlight=True)"""
4337 return _controls_
.TreeCtrl_SetItemDropHighlight(*args
, **kwargs
)
4339 def SetItemTextColour(*args
, **kwargs
):
4340 """SetItemTextColour(self, TreeItemId item, Colour col)"""
4341 return _controls_
.TreeCtrl_SetItemTextColour(*args
, **kwargs
)
4343 def SetItemBackgroundColour(*args
, **kwargs
):
4344 """SetItemBackgroundColour(self, TreeItemId item, Colour col)"""
4345 return _controls_
.TreeCtrl_SetItemBackgroundColour(*args
, **kwargs
)
4347 def SetItemFont(*args
, **kwargs
):
4348 """SetItemFont(self, TreeItemId item, Font font)"""
4349 return _controls_
.TreeCtrl_SetItemFont(*args
, **kwargs
)
4351 def IsVisible(*args
, **kwargs
):
4352 """IsVisible(self, TreeItemId item) -> bool"""
4353 return _controls_
.TreeCtrl_IsVisible(*args
, **kwargs
)
4355 def ItemHasChildren(*args
, **kwargs
):
4356 """ItemHasChildren(self, TreeItemId item) -> bool"""
4357 return _controls_
.TreeCtrl_ItemHasChildren(*args
, **kwargs
)
4359 def IsExpanded(*args
, **kwargs
):
4360 """IsExpanded(self, TreeItemId item) -> bool"""
4361 return _controls_
.TreeCtrl_IsExpanded(*args
, **kwargs
)
4363 def IsSelected(*args
, **kwargs
):
4364 """IsSelected(self, TreeItemId item) -> bool"""
4365 return _controls_
.TreeCtrl_IsSelected(*args
, **kwargs
)
4367 def IsBold(*args
, **kwargs
):
4368 """IsBold(self, TreeItemId item) -> bool"""
4369 return _controls_
.TreeCtrl_IsBold(*args
, **kwargs
)
4371 def GetChildrenCount(*args
, **kwargs
):
4372 """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t"""
4373 return _controls_
.TreeCtrl_GetChildrenCount(*args
, **kwargs
)
4375 def GetRootItem(*args
, **kwargs
):
4376 """GetRootItem(self) -> TreeItemId"""
4377 return _controls_
.TreeCtrl_GetRootItem(*args
, **kwargs
)
4379 def GetSelection(*args
, **kwargs
):
4380 """GetSelection(self) -> TreeItemId"""
4381 return _controls_
.TreeCtrl_GetSelection(*args
, **kwargs
)
4383 def GetSelections(*args
, **kwargs
):
4384 """GetSelections(self) -> PyObject"""
4385 return _controls_
.TreeCtrl_GetSelections(*args
, **kwargs
)
4387 def GetItemParent(*args
, **kwargs
):
4388 """GetItemParent(self, TreeItemId item) -> TreeItemId"""
4389 return _controls_
.TreeCtrl_GetItemParent(*args
, **kwargs
)
4391 def GetFirstChild(*args
, **kwargs
):
4392 """GetFirstChild(self, TreeItemId item) -> PyObject"""
4393 return _controls_
.TreeCtrl_GetFirstChild(*args
, **kwargs
)
4395 def GetNextChild(*args
, **kwargs
):
4396 """GetNextChild(self, TreeItemId item, void cookie) -> PyObject"""
4397 return _controls_
.TreeCtrl_GetNextChild(*args
, **kwargs
)
4399 def GetLastChild(*args
, **kwargs
):
4400 """GetLastChild(self, TreeItemId item) -> TreeItemId"""
4401 return _controls_
.TreeCtrl_GetLastChild(*args
, **kwargs
)
4403 def GetNextSibling(*args
, **kwargs
):
4404 """GetNextSibling(self, TreeItemId item) -> TreeItemId"""
4405 return _controls_
.TreeCtrl_GetNextSibling(*args
, **kwargs
)
4407 def GetPrevSibling(*args
, **kwargs
):
4408 """GetPrevSibling(self, TreeItemId item) -> TreeItemId"""
4409 return _controls_
.TreeCtrl_GetPrevSibling(*args
, **kwargs
)
4411 def GetFirstVisibleItem(*args
, **kwargs
):
4412 """GetFirstVisibleItem(self) -> TreeItemId"""
4413 return _controls_
.TreeCtrl_GetFirstVisibleItem(*args
, **kwargs
)
4415 def GetNextVisible(*args
, **kwargs
):
4416 """GetNextVisible(self, TreeItemId item) -> TreeItemId"""
4417 return _controls_
.TreeCtrl_GetNextVisible(*args
, **kwargs
)
4419 def GetPrevVisible(*args
, **kwargs
):
4420 """GetPrevVisible(self, TreeItemId item) -> TreeItemId"""
4421 return _controls_
.TreeCtrl_GetPrevVisible(*args
, **kwargs
)
4423 def AddRoot(*args
, **kwargs
):
4424 """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId"""
4425 return _controls_
.TreeCtrl_AddRoot(*args
, **kwargs
)
4427 def PrependItem(*args
, **kwargs
):
4429 PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
4430 TreeItemData data=None) -> TreeItemId
4432 return _controls_
.TreeCtrl_PrependItem(*args
, **kwargs
)
4434 def InsertItem(*args
, **kwargs
):
4436 InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text,
4437 int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
4439 return _controls_
.TreeCtrl_InsertItem(*args
, **kwargs
)
4441 def InsertItemBefore(*args
, **kwargs
):
4443 InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1,
4444 int selectedImage=-1, TreeItemData data=None) -> TreeItemId
4446 return _controls_
.TreeCtrl_InsertItemBefore(*args
, **kwargs
)
4448 def AppendItem(*args
, **kwargs
):
4450 AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
4451 TreeItemData data=None) -> TreeItemId
4453 return _controls_
.TreeCtrl_AppendItem(*args
, **kwargs
)
4455 def Delete(*args
, **kwargs
):
4456 """Delete(self, TreeItemId item)"""
4457 return _controls_
.TreeCtrl_Delete(*args
, **kwargs
)
4459 def DeleteChildren(*args
, **kwargs
):
4460 """DeleteChildren(self, TreeItemId item)"""
4461 return _controls_
.TreeCtrl_DeleteChildren(*args
, **kwargs
)
4463 def DeleteAllItems(*args
, **kwargs
):
4464 """DeleteAllItems(self)"""
4465 return _controls_
.TreeCtrl_DeleteAllItems(*args
, **kwargs
)
4467 def Expand(*args
, **kwargs
):
4468 """Expand(self, TreeItemId item)"""
4469 return _controls_
.TreeCtrl_Expand(*args
, **kwargs
)
4471 def Collapse(*args
, **kwargs
):
4472 """Collapse(self, TreeItemId item)"""
4473 return _controls_
.TreeCtrl_Collapse(*args
, **kwargs
)
4475 def CollapseAndReset(*args
, **kwargs
):
4476 """CollapseAndReset(self, TreeItemId item)"""
4477 return _controls_
.TreeCtrl_CollapseAndReset(*args
, **kwargs
)
4479 def Toggle(*args
, **kwargs
):
4480 """Toggle(self, TreeItemId item)"""
4481 return _controls_
.TreeCtrl_Toggle(*args
, **kwargs
)
4483 def Unselect(*args
, **kwargs
):
4484 """Unselect(self)"""
4485 return _controls_
.TreeCtrl_Unselect(*args
, **kwargs
)
4487 def UnselectItem(*args
, **kwargs
):
4488 """UnselectItem(self, TreeItemId item)"""
4489 return _controls_
.TreeCtrl_UnselectItem(*args
, **kwargs
)
4491 def UnselectAll(*args
, **kwargs
):
4492 """UnselectAll(self)"""
4493 return _controls_
.TreeCtrl_UnselectAll(*args
, **kwargs
)
4495 def SelectItem(*args
, **kwargs
):
4496 """SelectItem(self, TreeItemId item, bool select=True)"""
4497 return _controls_
.TreeCtrl_SelectItem(*args
, **kwargs
)
4499 def ToggleItemSelection(*args
, **kwargs
):
4500 """ToggleItemSelection(self, TreeItemId item)"""
4501 return _controls_
.TreeCtrl_ToggleItemSelection(*args
, **kwargs
)
4503 def EnsureVisible(*args
, **kwargs
):
4504 """EnsureVisible(self, TreeItemId item)"""
4505 return _controls_
.TreeCtrl_EnsureVisible(*args
, **kwargs
)
4507 def ScrollTo(*args
, **kwargs
):
4508 """ScrollTo(self, TreeItemId item)"""
4509 return _controls_
.TreeCtrl_ScrollTo(*args
, **kwargs
)
4511 def EditLabel(*args
, **kwargs
):
4512 """EditLabel(self, TreeItemId item)"""
4513 return _controls_
.TreeCtrl_EditLabel(*args
, **kwargs
)
4515 def GetEditControl(*args
, **kwargs
):
4516 """GetEditControl(self) -> TextCtrl"""
4517 return _controls_
.TreeCtrl_GetEditControl(*args
, **kwargs
)
4519 def EndEditLabel(*args
, **kwargs
):
4520 """EndEditLabel(self, TreeItemId item, bool discardChanges=False)"""
4521 return _controls_
.TreeCtrl_EndEditLabel(*args
, **kwargs
)
4523 def SortChildren(*args
, **kwargs
):
4524 """SortChildren(self, TreeItemId item)"""
4525 return _controls_
.TreeCtrl_SortChildren(*args
, **kwargs
)
4527 def HitTest(*args
, **kwargs
):
4529 HitTest(Point point) -> (item, where)
4531 Determine which item (if any) belongs the given point. The
4532 coordinates specified are relative to the client area of tree ctrl
4533 and the where return value is set to a bitmask of wxTREE_HITTEST_xxx
4537 return _controls_
.TreeCtrl_HitTest(*args
, **kwargs
)
4539 def GetBoundingRect(*args
, **kwargs
):
4540 """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject"""
4541 return _controls_
.TreeCtrl_GetBoundingRect(*args
, **kwargs
)
4543 def GetClassDefaultAttributes(*args
, **kwargs
):
4545 TreeCtrl.GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4547 Get the default attributes for this class. This is useful if
4548 you want to use the same font or colour in your own control as
4549 in a standard control -- which is a much better idea than hard
4550 coding specific colours or fonts which might look completely out
4551 of place on the users system, especially if it uses themes.
4553 The variant parameter is only relevant under Mac currently and is
4554 ignore under other platforms. Under Mac, it will change the size of the
4555 returned font. See SetWindowVariant for more about this.
4557 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4559 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
4561 class TreeCtrlPtr(TreeCtrl
):
4562 def __init__(self
, this
):
4564 if not hasattr(self
,"thisown"): self
.thisown
= 0
4565 self
.__class
__ = TreeCtrl
4566 _controls_
.TreeCtrl_swigregister(TreeCtrlPtr
)
4568 def PreTreeCtrl(*args
, **kwargs
):
4569 """PreTreeCtrl() -> TreeCtrl"""
4570 val
= _controls_
.new_PreTreeCtrl(*args
, **kwargs
)
4574 def TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
):
4576 TreeCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4578 Get the default attributes for this class. This is useful if
4579 you want to use the same font or colour in your own control as
4580 in a standard control -- which is a much better idea than hard
4581 coding specific colours or fonts which might look completely out
4582 of place on the users system, especially if it uses themes.
4584 The variant parameter is only relevant under Mac currently and is
4585 ignore under other platforms. Under Mac, it will change the size of the
4586 returned font. See SetWindowVariant for more about this.
4588 return _controls_
.TreeCtrl_GetClassDefaultAttributes(*args
, **kwargs
)
4590 #---------------------------------------------------------------------------
4592 DIRCTRL_DIR_ONLY
= _controls_
.DIRCTRL_DIR_ONLY
4593 DIRCTRL_SELECT_FIRST
= _controls_
.DIRCTRL_SELECT_FIRST
4594 DIRCTRL_SHOW_FILTERS
= _controls_
.DIRCTRL_SHOW_FILTERS
4595 DIRCTRL_3D_INTERNAL
= _controls_
.DIRCTRL_3D_INTERNAL
4596 DIRCTRL_EDIT_LABELS
= _controls_
.DIRCTRL_EDIT_LABELS
4597 class GenericDirCtrl(_core
.Control
):
4599 return "<%s.%s; proxy of C++ wxGenericDirCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4600 def __init__(self
, *args
, **kwargs
):
4602 __init__(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
4603 Point pos=DefaultPosition, Size size=DefaultSize,
4604 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
4605 String filter=EmptyString,
4606 int defaultFilter=0, String name=TreeCtrlNameStr) -> GenericDirCtrl
4608 newobj
= _controls_
.new_GenericDirCtrl(*args
, **kwargs
)
4609 self
.this
= newobj
.this
4612 self
._setOORInfo
(self
)
4614 def Create(*args
, **kwargs
):
4616 Create(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
4617 Point pos=DefaultPosition, Size size=DefaultSize,
4618 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
4619 String filter=EmptyString,
4620 int defaultFilter=0, String name=TreeCtrlNameStr) -> bool
4622 return _controls_
.GenericDirCtrl_Create(*args
, **kwargs
)
4624 def ExpandPath(*args
, **kwargs
):
4625 """ExpandPath(self, String path) -> bool"""
4626 return _controls_
.GenericDirCtrl_ExpandPath(*args
, **kwargs
)
4628 def GetDefaultPath(*args
, **kwargs
):
4629 """GetDefaultPath(self) -> String"""
4630 return _controls_
.GenericDirCtrl_GetDefaultPath(*args
, **kwargs
)
4632 def SetDefaultPath(*args
, **kwargs
):
4633 """SetDefaultPath(self, String path)"""
4634 return _controls_
.GenericDirCtrl_SetDefaultPath(*args
, **kwargs
)
4636 def GetPath(*args
, **kwargs
):
4637 """GetPath(self) -> String"""
4638 return _controls_
.GenericDirCtrl_GetPath(*args
, **kwargs
)
4640 def GetFilePath(*args
, **kwargs
):
4641 """GetFilePath(self) -> String"""
4642 return _controls_
.GenericDirCtrl_GetFilePath(*args
, **kwargs
)
4644 def SetPath(*args
, **kwargs
):
4645 """SetPath(self, String path)"""
4646 return _controls_
.GenericDirCtrl_SetPath(*args
, **kwargs
)
4648 def ShowHidden(*args
, **kwargs
):
4649 """ShowHidden(self, bool show)"""
4650 return _controls_
.GenericDirCtrl_ShowHidden(*args
, **kwargs
)
4652 def GetShowHidden(*args
, **kwargs
):
4653 """GetShowHidden(self) -> bool"""
4654 return _controls_
.GenericDirCtrl_GetShowHidden(*args
, **kwargs
)
4656 def GetFilter(*args
, **kwargs
):
4657 """GetFilter(self) -> String"""
4658 return _controls_
.GenericDirCtrl_GetFilter(*args
, **kwargs
)
4660 def SetFilter(*args
, **kwargs
):
4661 """SetFilter(self, String filter)"""
4662 return _controls_
.GenericDirCtrl_SetFilter(*args
, **kwargs
)
4664 def GetFilterIndex(*args
, **kwargs
):
4665 """GetFilterIndex(self) -> int"""
4666 return _controls_
.GenericDirCtrl_GetFilterIndex(*args
, **kwargs
)
4668 def SetFilterIndex(*args
, **kwargs
):
4669 """SetFilterIndex(self, int n)"""
4670 return _controls_
.GenericDirCtrl_SetFilterIndex(*args
, **kwargs
)
4672 def GetRootId(*args
, **kwargs
):
4673 """GetRootId(self) -> TreeItemId"""
4674 return _controls_
.GenericDirCtrl_GetRootId(*args
, **kwargs
)
4676 def GetTreeCtrl(*args
, **kwargs
):
4677 """GetTreeCtrl(self) -> TreeCtrl"""
4678 return _controls_
.GenericDirCtrl_GetTreeCtrl(*args
, **kwargs
)
4680 def GetFilterListCtrl(*args
, **kwargs
):
4681 """GetFilterListCtrl(self) -> DirFilterListCtrl"""
4682 return _controls_
.GenericDirCtrl_GetFilterListCtrl(*args
, **kwargs
)
4684 def FindChild(*args
, **kwargs
):
4686 FindChild(wxTreeItemId parentId, wxString path) -> (item, done)
4688 Find the child that matches the first part of 'path'. E.g. if a child path is
4689 "/usr" and 'path' is "/usr/include" then the child for /usr is returned.
4690 If the path string has been used (we're at the leaf), done is set to True
4693 return _controls_
.GenericDirCtrl_FindChild(*args
, **kwargs
)
4695 def DoResize(*args
, **kwargs
):
4696 """DoResize(self)"""
4697 return _controls_
.GenericDirCtrl_DoResize(*args
, **kwargs
)
4699 def ReCreateTree(*args
, **kwargs
):
4700 """ReCreateTree(self)"""
4701 return _controls_
.GenericDirCtrl_ReCreateTree(*args
, **kwargs
)
4704 class GenericDirCtrlPtr(GenericDirCtrl
):
4705 def __init__(self
, this
):
4707 if not hasattr(self
,"thisown"): self
.thisown
= 0
4708 self
.__class
__ = GenericDirCtrl
4709 _controls_
.GenericDirCtrl_swigregister(GenericDirCtrlPtr
)
4710 DirDialogDefaultFolderStr
= cvar
.DirDialogDefaultFolderStr
4712 def PreGenericDirCtrl(*args
, **kwargs
):
4713 """PreGenericDirCtrl() -> GenericDirCtrl"""
4714 val
= _controls_
.new_PreGenericDirCtrl(*args
, **kwargs
)
4718 class DirFilterListCtrl(Choice
):
4720 return "<%s.%s; proxy of C++ wxDirFilterListCtrl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4721 def __init__(self
, *args
, **kwargs
):
4723 __init__(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
4724 Size size=DefaultSize, long style=0) -> DirFilterListCtrl
4726 newobj
= _controls_
.new_DirFilterListCtrl(*args
, **kwargs
)
4727 self
.this
= newobj
.this
4730 self
._setOORInfo
(self
)
4732 def Create(*args
, **kwargs
):
4734 Create(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
4735 Size size=DefaultSize, long style=0) -> bool
4737 return _controls_
.DirFilterListCtrl_Create(*args
, **kwargs
)
4739 def FillFilterList(*args
, **kwargs
):
4740 """FillFilterList(self, String filter, int defaultFilter)"""
4741 return _controls_
.DirFilterListCtrl_FillFilterList(*args
, **kwargs
)
4744 class DirFilterListCtrlPtr(DirFilterListCtrl
):
4745 def __init__(self
, this
):
4747 if not hasattr(self
,"thisown"): self
.thisown
= 0
4748 self
.__class
__ = DirFilterListCtrl
4749 _controls_
.DirFilterListCtrl_swigregister(DirFilterListCtrlPtr
)
4751 def PreDirFilterListCtrl(*args
, **kwargs
):
4752 """PreDirFilterListCtrl() -> DirFilterListCtrl"""
4753 val
= _controls_
.new_PreDirFilterListCtrl(*args
, **kwargs
)
4757 #---------------------------------------------------------------------------
4759 class PyControl(_core
.Control
):
4761 return "<%s.%s; proxy of C++ wxPyControl instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4762 def __init__(self
, *args
, **kwargs
):
4764 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
4765 long style=0, Validator validator=DefaultValidator,
4766 String name=ControlNameStr) -> PyControl
4768 newobj
= _controls_
.new_PyControl(*args
, **kwargs
)
4769 self
.this
= newobj
.this
4772 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyControl
)
4774 def _setCallbackInfo(*args
, **kwargs
):
4775 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4776 return _controls_
.PyControl__setCallbackInfo(*args
, **kwargs
)
4778 def base_DoMoveWindow(*args
, **kwargs
):
4779 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
4780 return _controls_
.PyControl_base_DoMoveWindow(*args
, **kwargs
)
4782 def base_DoSetSize(*args
, **kwargs
):
4783 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
4784 return _controls_
.PyControl_base_DoSetSize(*args
, **kwargs
)
4786 def base_DoSetClientSize(*args
, **kwargs
):
4787 """base_DoSetClientSize(self, int width, int height)"""
4788 return _controls_
.PyControl_base_DoSetClientSize(*args
, **kwargs
)
4790 def base_DoSetVirtualSize(*args
, **kwargs
):
4791 """base_DoSetVirtualSize(self, int x, int y)"""
4792 return _controls_
.PyControl_base_DoSetVirtualSize(*args
, **kwargs
)
4794 def base_DoGetSize(*args
, **kwargs
):
4795 """base_DoGetSize() -> (width, height)"""
4796 return _controls_
.PyControl_base_DoGetSize(*args
, **kwargs
)
4798 def base_DoGetClientSize(*args
, **kwargs
):
4799 """base_DoGetClientSize() -> (width, height)"""
4800 return _controls_
.PyControl_base_DoGetClientSize(*args
, **kwargs
)
4802 def base_DoGetPosition(*args
, **kwargs
):
4803 """base_DoGetPosition() -> (x,y)"""
4804 return _controls_
.PyControl_base_DoGetPosition(*args
, **kwargs
)
4806 def base_DoGetVirtualSize(*args
, **kwargs
):
4807 """base_DoGetVirtualSize(self) -> Size"""
4808 return _controls_
.PyControl_base_DoGetVirtualSize(*args
, **kwargs
)
4810 def base_DoGetBestSize(*args
, **kwargs
):
4811 """base_DoGetBestSize(self) -> Size"""
4812 return _controls_
.PyControl_base_DoGetBestSize(*args
, **kwargs
)
4814 def base_InitDialog(*args
, **kwargs
):
4815 """base_InitDialog(self)"""
4816 return _controls_
.PyControl_base_InitDialog(*args
, **kwargs
)
4818 def base_TransferDataToWindow(*args
, **kwargs
):
4819 """base_TransferDataToWindow(self) -> bool"""
4820 return _controls_
.PyControl_base_TransferDataToWindow(*args
, **kwargs
)
4822 def base_TransferDataFromWindow(*args
, **kwargs
):
4823 """base_TransferDataFromWindow(self) -> bool"""
4824 return _controls_
.PyControl_base_TransferDataFromWindow(*args
, **kwargs
)
4826 def base_Validate(*args
, **kwargs
):
4827 """base_Validate(self) -> bool"""
4828 return _controls_
.PyControl_base_Validate(*args
, **kwargs
)
4830 def base_AcceptsFocus(*args
, **kwargs
):
4831 """base_AcceptsFocus(self) -> bool"""
4832 return _controls_
.PyControl_base_AcceptsFocus(*args
, **kwargs
)
4834 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
4835 """base_AcceptsFocusFromKeyboard(self) -> bool"""
4836 return _controls_
.PyControl_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
4838 def base_GetMaxSize(*args
, **kwargs
):
4839 """base_GetMaxSize(self) -> Size"""
4840 return _controls_
.PyControl_base_GetMaxSize(*args
, **kwargs
)
4842 def base_AddChild(*args
, **kwargs
):
4843 """base_AddChild(self, Window child)"""
4844 return _controls_
.PyControl_base_AddChild(*args
, **kwargs
)
4846 def base_RemoveChild(*args
, **kwargs
):
4847 """base_RemoveChild(self, Window child)"""
4848 return _controls_
.PyControl_base_RemoveChild(*args
, **kwargs
)
4850 def base_ShouldInheritColours(*args
, **kwargs
):
4851 """base_ShouldInheritColours(self) -> bool"""
4852 return _controls_
.PyControl_base_ShouldInheritColours(*args
, **kwargs
)
4854 def base_ApplyParentThemeBackground(*args
, **kwargs
):
4855 """base_ApplyParentThemeBackground(self, Colour c)"""
4856 return _controls_
.PyControl_base_ApplyParentThemeBackground(*args
, **kwargs
)
4859 class PyControlPtr(PyControl
):
4860 def __init__(self
, this
):
4862 if not hasattr(self
,"thisown"): self
.thisown
= 0
4863 self
.__class
__ = PyControl
4864 _controls_
.PyControl_swigregister(PyControlPtr
)
4866 def PrePyControl(*args
, **kwargs
):
4867 """PrePyControl() -> PyControl"""
4868 val
= _controls_
.new_PrePyControl(*args
, **kwargs
)
4872 #---------------------------------------------------------------------------
4874 FRAME_EX_CONTEXTHELP
= _controls_
.FRAME_EX_CONTEXTHELP
4875 DIALOG_EX_CONTEXTHELP
= _controls_
.DIALOG_EX_CONTEXTHELP
4876 wxEVT_HELP
= _controls_
.wxEVT_HELP
4877 wxEVT_DETAILED_HELP
= _controls_
.wxEVT_DETAILED_HELP
4878 EVT_HELP
= wx
.PyEventBinder( wxEVT_HELP
, 1)
4879 EVT_HELP_RANGE
= wx
.PyEventBinder( wxEVT_HELP
, 2)
4880 EVT_DETAILED_HELP
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 1)
4881 EVT_DETAILED_HELP_RANGE
= wx
.PyEventBinder( wxEVT_DETAILED_HELP
, 2)
4883 class HelpEvent(_core
.CommandEvent
):
4885 A help event is sent when the user has requested
4886 context-sensitive help. This can either be caused by the
4887 application requesting context-sensitive help mode via
4888 wx.ContextHelp, or (on MS Windows) by the system generating a
4889 WM_HELP message when the user pressed F1 or clicked on the query
4890 button in a dialog caption.
4892 A help event is sent to the window that the user clicked on, and
4893 is propagated up the window hierarchy until the event is
4894 processed or there are no more event handlers. The application
4895 should call event.GetId to check the identity of the clicked-on
4896 window, and then either show some suitable help or call
4897 event.Skip if the identifier is unrecognised. Calling Skip is
4898 important because it allows wxWindows to generate further events
4899 for ancestors of the clicked-on window. Otherwise it would be
4900 impossible to show help for container windows, since processing
4901 would stop after the first window found.
4904 EVT_HELP Sent when the user has requested context-
4906 EVT_HELP_RANGE Allows to catch EVT_HELP for a range of IDs
4910 return "<%s.%s; proxy of C++ wxHelpEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4911 def __init__(self
, *args
, **kwargs
):
4912 """__init__(self, wxEventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition) -> HelpEvent"""
4913 newobj
= _controls_
.new_HelpEvent(*args
, **kwargs
)
4914 self
.this
= newobj
.this
4917 def GetPosition(*args
, **kwargs
):
4919 GetPosition(self) -> Point
4921 Returns the left-click position of the mouse, in screen
4922 coordinates. This allows the application to position the help
4925 return _controls_
.HelpEvent_GetPosition(*args
, **kwargs
)
4927 def SetPosition(*args
, **kwargs
):
4929 SetPosition(self, Point pos)
4931 Sets the left-click position of the mouse, in screen coordinates.
4933 return _controls_
.HelpEvent_SetPosition(*args
, **kwargs
)
4935 def GetLink(*args
, **kwargs
):
4937 GetLink(self) -> String
4939 Get an optional link to further help
4941 return _controls_
.HelpEvent_GetLink(*args
, **kwargs
)
4943 def SetLink(*args
, **kwargs
):
4945 SetLink(self, String link)
4947 Set an optional link to further help
4949 return _controls_
.HelpEvent_SetLink(*args
, **kwargs
)
4951 def GetTarget(*args
, **kwargs
):
4953 GetTarget(self) -> String
4955 Get an optional target to display help in. E.g. a window specification
4957 return _controls_
.HelpEvent_GetTarget(*args
, **kwargs
)
4959 def SetTarget(*args
, **kwargs
):
4961 SetTarget(self, String target)
4963 Set an optional target to display help in. E.g. a window specification
4965 return _controls_
.HelpEvent_SetTarget(*args
, **kwargs
)
4968 class HelpEventPtr(HelpEvent
):
4969 def __init__(self
, this
):
4971 if not hasattr(self
,"thisown"): self
.thisown
= 0
4972 self
.__class
__ = HelpEvent
4973 _controls_
.HelpEvent_swigregister(HelpEventPtr
)
4975 class ContextHelp(_core
.Object
):
4977 This class changes the cursor to a query and puts the application
4978 into a 'context-sensitive help mode'. When the user left-clicks
4979 on a window within the specified window, a EVT_HELP event is sent
4980 to that control, and the application may respond to it by popping
4983 There are a couple of ways to invoke this behaviour implicitly:
4985 * Use the wx.DIALOG_EX_CONTEXTHELP extended style for a
4986 dialog (Windows only). This will put a question mark in the
4987 titlebar, and Windows will put the application into
4988 context-sensitive help mode automatically, with further
4991 * Create a wx.ContextHelpButton, whose predefined behaviour
4992 is to create a context help object. Normally you will write
4993 your application so that this button is only added to a
4994 dialog for non-Windows platforms (use
4995 wx.DIALOG_EX_CONTEXTHELP on Windows).
4999 return "<%s.%s; proxy of C++ wxContextHelp instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5000 def __init__(self
, *args
, **kwargs
):
5002 __init__(self, Window window=None, bool doNow=True) -> ContextHelp
5004 Constructs a context help object, calling BeginContextHelp if
5005 doNow is true (the default).
5007 If window is None, the top window is used.
5009 newobj
= _controls_
.new_ContextHelp(*args
, **kwargs
)
5010 self
.this
= newobj
.this
5013 def __del__(self
, destroy
=_controls_
.delete_ContextHelp
):
5016 if self
.thisown
: destroy(self
)
5019 def BeginContextHelp(*args
, **kwargs
):
5021 BeginContextHelp(self, Window window=None) -> bool
5023 Puts the application into context-sensitive help mode. window is
5024 the window which will be used to catch events; if NULL, the top
5025 window will be used.
5027 Returns true if the application was successfully put into
5028 context-sensitive help mode. This function only returns when the
5029 event loop has finished.
5031 return _controls_
.ContextHelp_BeginContextHelp(*args
, **kwargs
)
5033 def EndContextHelp(*args
, **kwargs
):
5035 EndContextHelp(self) -> bool
5037 Ends context-sensitive help mode. Not normally called by the
5040 return _controls_
.ContextHelp_EndContextHelp(*args
, **kwargs
)
5043 class ContextHelpPtr(ContextHelp
):
5044 def __init__(self
, this
):
5046 if not hasattr(self
,"thisown"): self
.thisown
= 0
5047 self
.__class
__ = ContextHelp
5048 _controls_
.ContextHelp_swigregister(ContextHelpPtr
)
5050 class ContextHelpButton(BitmapButton
):
5052 Instances of this class may be used to add a question mark button
5053 that when pressed, puts the application into context-help
5054 mode. It does this by creating a wx.ContextHelp object which
5055 itself generates a EVT_HELP event when the user clicks on a
5058 On Windows, you may add a question-mark icon to a dialog by use
5059 of the wx.DIALOG_EX_CONTEXTHELP extra style, but on other
5060 platforms you will have to add a button explicitly, usually next
5061 to OK, Cancel or similar buttons.
5065 return "<%s.%s; proxy of C++ wxContextHelpButton instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5066 def __init__(self
, *args
, **kwargs
):
5068 __init__(self, Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
5069 Size size=DefaultSize, long style=BU_AUTODRAW) -> ContextHelpButton
5071 Constructor, creating and showing a context help button.
5073 newobj
= _controls_
.new_ContextHelpButton(*args
, **kwargs
)
5074 self
.this
= newobj
.this
5077 self
._setOORInfo
(self
)
5080 class ContextHelpButtonPtr(ContextHelpButton
):
5081 def __init__(self
, this
):
5083 if not hasattr(self
,"thisown"): self
.thisown
= 0
5084 self
.__class
__ = ContextHelpButton
5085 _controls_
.ContextHelpButton_swigregister(ContextHelpButtonPtr
)
5087 class HelpProvider(object):
5089 wx.HelpProvider is an abstract class used by a program
5090 implementing context-sensitive help to show the help text for the
5093 The current help provider must be explicitly set by the
5094 application using wx.HelpProvider.Set().
5096 def __init__(self
): raise RuntimeError, "No constructor defined"
5098 return "<%s.%s; proxy of C++ wxHelpProvider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5099 def Set(*args
, **kwargs
):
5101 HelpProvider.Set(HelpProvider helpProvider) -> HelpProvider
5103 Sset the current, application-wide help provider. Returns the
5104 previous one. Unlike some other classes, the help provider is
5105 not created on demand. This must be explicitly done by the
5108 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5110 Set
= staticmethod(Set
)
5111 def Get(*args
, **kwargs
):
5113 HelpProvider.Get() -> HelpProvider
5115 Return the current application-wide help provider.
5117 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
5119 Get
= staticmethod(Get
)
5120 def GetHelp(*args
, **kwargs
):
5122 GetHelp(self, Window window) -> String
5124 Gets the help string for this window. Its interpretation is
5125 dependent on the help provider except that empty string always
5126 means that no help is associated with the window.
5128 return _controls_
.HelpProvider_GetHelp(*args
, **kwargs
)
5130 def ShowHelp(*args
, **kwargs
):
5132 ShowHelp(self, Window window) -> bool
5134 Shows help for the given window. Uses GetHelp internally if
5137 Returns true if it was done, or false if no help was available
5140 return _controls_
.HelpProvider_ShowHelp(*args
, **kwargs
)
5142 def AddHelp(*args
, **kwargs
):
5144 AddHelp(self, Window window, String text)
5146 Associates the text with the given window.
5148 return _controls_
.HelpProvider_AddHelp(*args
, **kwargs
)
5150 def AddHelpById(*args
, **kwargs
):
5152 AddHelpById(self, int id, String text)
5154 This version associates the given text with all windows with this
5155 id. May be used to set the same help string for all Cancel
5156 buttons in the application, for example.
5158 return _controls_
.HelpProvider_AddHelpById(*args
, **kwargs
)
5160 def RemoveHelp(*args
, **kwargs
):
5162 RemoveHelp(self, Window window)
5164 Removes the association between the window pointer and the help
5165 text. This is called by the wx.Window destructor. Without this,
5166 the table of help strings will fill up and when window pointers
5167 are reused, the wrong help string will be found.
5169 return _controls_
.HelpProvider_RemoveHelp(*args
, **kwargs
)
5171 def Destroy(*args
, **kwargs
):
5173 return _controls_
.HelpProvider_Destroy(*args
, **kwargs
)
5176 class HelpProviderPtr(HelpProvider
):
5177 def __init__(self
, this
):
5179 if not hasattr(self
,"thisown"): self
.thisown
= 0
5180 self
.__class
__ = HelpProvider
5181 _controls_
.HelpProvider_swigregister(HelpProviderPtr
)
5183 def HelpProvider_Set(*args
, **kwargs
):
5185 HelpProvider_Set(HelpProvider helpProvider) -> HelpProvider
5187 Sset the current, application-wide help provider. Returns the
5188 previous one. Unlike some other classes, the help provider is
5189 not created on demand. This must be explicitly done by the
5192 return _controls_
.HelpProvider_Set(*args
, **kwargs
)
5194 def HelpProvider_Get(*args
, **kwargs
):
5196 HelpProvider_Get() -> HelpProvider
5198 Return the current application-wide help provider.
5200 return _controls_
.HelpProvider_Get(*args
, **kwargs
)
5202 class SimpleHelpProvider(HelpProvider
):
5204 wx.SimpleHelpProvider is an implementation of wx.HelpProvider
5205 which supports only plain text help strings, and shows the string
5206 associated with the control (if any) in a tooltip.
5209 return "<%s.%s; proxy of C++ wxSimpleHelpProvider instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5210 def __init__(self
, *args
, **kwargs
):
5212 __init__(self) -> SimpleHelpProvider
5214 wx.SimpleHelpProvider is an implementation of wx.HelpProvider
5215 which supports only plain text help strings, and shows the string
5216 associated with the control (if any) in a tooltip.
5218 newobj
= _controls_
.new_SimpleHelpProvider(*args
, **kwargs
)
5219 self
.this
= newobj
.this
5223 class SimpleHelpProviderPtr(SimpleHelpProvider
):
5224 def __init__(self
, this
):
5226 if not hasattr(self
,"thisown"): self
.thisown
= 0
5227 self
.__class
__ = SimpleHelpProvider
5228 _controls_
.SimpleHelpProvider_swigregister(SimpleHelpProviderPtr
)
5230 #---------------------------------------------------------------------------
5232 class DragImage(_core
.Object
):
5234 return "<%s.%s; proxy of C++ wxGenericDragImage instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
5235 def __init__(self
, *args
, **kwargs
):
5236 """__init__(self, Bitmap image, Cursor cursor=wxNullCursor) -> DragImage"""
5237 newobj
= _controls_
.new_DragImage(*args
, **kwargs
)
5238 self
.this
= newobj
.this
5241 def __del__(self
, destroy
=_controls_
.delete_DragImage
):
5244 if self
.thisown
: destroy(self
)
5247 def SetBackingBitmap(*args
, **kwargs
):
5248 """SetBackingBitmap(self, Bitmap bitmap)"""
5249 return _controls_
.DragImage_SetBackingBitmap(*args
, **kwargs
)
5251 def BeginDrag(*args
, **kwargs
):
5253 BeginDrag(self, Point hotspot, Window window, bool fullScreen=False,
5254 Rect rect=None) -> bool
5256 return _controls_
.DragImage_BeginDrag(*args
, **kwargs
)
5258 def BeginDragBounded(*args
, **kwargs
):
5259 """BeginDragBounded(self, Point hotspot, Window window, Window boundingWindow) -> bool"""
5260 return _controls_
.DragImage_BeginDragBounded(*args
, **kwargs
)
5262 def EndDrag(*args
, **kwargs
):
5263 """EndDrag(self) -> bool"""
5264 return _controls_
.DragImage_EndDrag(*args
, **kwargs
)
5266 def Move(*args
, **kwargs
):
5267 """Move(self, Point pt) -> bool"""
5268 return _controls_
.DragImage_Move(*args
, **kwargs
)
5270 def Show(*args
, **kwargs
):
5271 """Show(self) -> bool"""
5272 return _controls_
.DragImage_Show(*args
, **kwargs
)
5274 def Hide(*args
, **kwargs
):
5275 """Hide(self) -> bool"""
5276 return _controls_
.DragImage_Hide(*args
, **kwargs
)
5278 def GetImageRect(*args
, **kwargs
):
5279 """GetImageRect(self, Point pos) -> Rect"""
5280 return _controls_
.DragImage_GetImageRect(*args
, **kwargs
)
5282 def DoDrawImage(*args
, **kwargs
):
5283 """DoDrawImage(self, DC dc, Point pos) -> bool"""
5284 return _controls_
.DragImage_DoDrawImage(*args
, **kwargs
)
5286 def UpdateBackingFromWindow(*args
, **kwargs
):
5287 """UpdateBackingFromWindow(self, DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -> bool"""
5288 return _controls_
.DragImage_UpdateBackingFromWindow(*args
, **kwargs
)
5290 def RedrawImage(*args
, **kwargs
):
5291 """RedrawImage(self, Point oldPos, Point newPos, bool eraseOld, bool drawNew) -> bool"""
5292 return _controls_
.DragImage_RedrawImage(*args
, **kwargs
)
5295 class DragImagePtr(DragImage
):
5296 def __init__(self
, this
):
5298 if not hasattr(self
,"thisown"): self
.thisown
= 0
5299 self
.__class
__ = DragImage
5300 _controls_
.DragImage_swigregister(DragImagePtr
)
5302 def DragIcon(*args
, **kwargs
):
5303 """DragIcon(Icon image, Cursor cursor=wxNullCursor) -> DragImage"""
5304 val
= _controls_
.new_DragIcon(*args
, **kwargs
)
5308 def DragString(*args
, **kwargs
):
5309 """DragString(String str, Cursor cursor=wxNullCursor) -> DragImage"""
5310 val
= _controls_
.new_DragString(*args
, **kwargs
)
5314 def DragTreeItem(*args
, **kwargs
):
5315 """DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -> DragImage"""
5316 val
= _controls_
.new_DragTreeItem(*args
, **kwargs
)
5320 def DragListItem(*args
, **kwargs
):
5321 """DragListItem(ListCtrl listCtrl, long id) -> DragImage"""
5322 val
= _controls_
.new_DragListItem(*args
, **kwargs
)