]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/mac/_controls.py
src/common/wxchar.cpps/wxConvLocal/wxConvLibs/g as otherwise we may fail to convert...
[wxWidgets.git] / wxPython / src / mac / _controls.py
1 # This file was created automatically by SWIG.
2 # Don't modify this file, modify the SWIG interface instead.
3
4 import _controls_
5
6 def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
7 if (name == "this"):
8 if isinstance(value, class_type):
9 self.__dict__[name] = value.this
10 if hasattr(value,"thisown"): self.__dict__["thisown"] = value.thisown
11 del value.thisown
12 return
13 method = class_type.__swig_setmethods__.get(name,None)
14 if method: return method(self,value)
15 if (not static) or hasattr(self,name) or (name == "thisown"):
16 self.__dict__[name] = value
17 else:
18 raise AttributeError("You cannot add attributes to %s" % self)
19
20 def _swig_setattr(self,class_type,name,value):
21 return _swig_setattr_nondynamic(self,class_type,name,value,0)
22
23 def _swig_getattr(self,class_type,name):
24 method = class_type.__swig_getmethods__.get(name,None)
25 if method: return method(self)
26 raise AttributeError,name
27
28 import types
29 try:
30 _object = types.ObjectType
31 _newclass = 1
32 except AttributeError:
33 class _object : pass
34 _newclass = 0
35 del types
36
37
38 def _swig_setattr_nondynamic_method(set):
39 def set_attr(self,name,value):
40 if hasattr(self,name) or (name in ("this", "thisown")):
41 set(self,name,value)
42 else:
43 raise AttributeError("You cannot add attributes to %s" % self)
44 return set_attr
45
46
47 import _core
48 wx = _core
49 #---------------------------------------------------------------------------
50
51 BU_LEFT = _controls_.BU_LEFT
52 BU_TOP = _controls_.BU_TOP
53 BU_RIGHT = _controls_.BU_RIGHT
54 BU_BOTTOM = _controls_.BU_BOTTOM
55 BU_ALIGN_MASK = _controls_.BU_ALIGN_MASK
56 BU_EXACTFIT = _controls_.BU_EXACTFIT
57 BU_AUTODRAW = _controls_.BU_AUTODRAW
58 class Button(_core.Control):
59 """
60 A button is a control that contains a text string, and is one of the most
61 common elements of a GUI. It may be placed on a dialog box or panel, or
62 indeed almost any other window.
63 """
64 def __repr__(self):
65 return "<%s.%s; proxy of C++ wxButton instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
66 def __init__(self, *args, **kwargs):
67 """
68 __init__(self, Window parent, int id=-1, String label=EmptyString,
69 Point pos=DefaultPosition, Size size=DefaultSize,
70 long style=0, Validator validator=DefaultValidator,
71 String name=ButtonNameStr) -> Button
72
73 Create and show a button. The preferred way to create standard
74 buttons is to use a standard ID and an empty label. In this case
75 wxWigets will automatically use a stock label that coresponds to the
76 ID given. In additon, the button will be decorated with stock icons
77 under GTK+ 2.
78 """
79 newobj = _controls_.new_Button(*args, **kwargs)
80 self.this = newobj.this
81 self.thisown = 1
82 del newobj.thisown
83 self._setOORInfo(self)
84
85 def Create(*args, **kwargs):
86 """
87 Create(self, Window parent, int id=-1, String label=EmptyString,
88 Point pos=DefaultPosition, Size size=DefaultSize,
89 long style=0, Validator validator=DefaultValidator,
90 String name=ButtonNameStr) -> bool
91
92 Acutally create the GUI Button for 2-phase creation.
93 """
94 return _controls_.Button_Create(*args, **kwargs)
95
96 def SetDefault(*args, **kwargs):
97 """
98 SetDefault(self)
99
100 This sets the button to be the default item for the panel or dialog box.
101 """
102 return _controls_.Button_SetDefault(*args, **kwargs)
103
104 def GetDefaultSize(*args, **kwargs):
105 """
106 GetDefaultSize() -> Size
107
108 Returns the default button size for this platform.
109 """
110 return _controls_.Button_GetDefaultSize(*args, **kwargs)
111
112 GetDefaultSize = staticmethod(GetDefaultSize)
113 def GetClassDefaultAttributes(*args, **kwargs):
114 """
115 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
116
117 Get the default attributes for this class. This is useful if you want
118 to use the same font or colour in your own control as in a standard
119 control -- which is a much better idea than hard coding specific
120 colours or fonts which might look completely out of place on the
121 user's system, especially if it uses themes.
122
123 The variant parameter is only relevant under Mac currently and is
124 ignore under other platforms. Under Mac, it will change the size of
125 the returned font. See `wx.Window.SetWindowVariant` for more about
126 this.
127 """
128 return _controls_.Button_GetClassDefaultAttributes(*args, **kwargs)
129
130 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
131
132 class ButtonPtr(Button):
133 def __init__(self, this):
134 self.this = this
135 if not hasattr(self,"thisown"): self.thisown = 0
136 self.__class__ = Button
137 _controls_.Button_swigregister(ButtonPtr)
138 cvar = _controls_.cvar
139 ButtonNameStr = cvar.ButtonNameStr
140
141 def PreButton(*args, **kwargs):
142 """
143 PreButton() -> Button
144
145 Precreate a Button for 2-phase creation.
146 """
147 val = _controls_.new_PreButton(*args, **kwargs)
148 val.thisown = 1
149 return val
150
151 def Button_GetDefaultSize(*args, **kwargs):
152 """
153 Button_GetDefaultSize() -> Size
154
155 Returns the default button size for this platform.
156 """
157 return _controls_.Button_GetDefaultSize(*args, **kwargs)
158
159 def Button_GetClassDefaultAttributes(*args, **kwargs):
160 """
161 Button_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
162
163 Get the default attributes for this class. This is useful if you want
164 to use the same font or colour in your own control as in a standard
165 control -- which is a much better idea than hard coding specific
166 colours or fonts which might look completely out of place on the
167 user's system, especially if it uses themes.
168
169 The variant parameter is only relevant under Mac currently and is
170 ignore under other platforms. Under Mac, it will change the size of
171 the returned font. See `wx.Window.SetWindowVariant` for more about
172 this.
173 """
174 return _controls_.Button_GetClassDefaultAttributes(*args, **kwargs)
175
176 class BitmapButton(Button):
177 """
178 A Button that contains a bitmap. A bitmap button can be supplied with a
179 single bitmap, and wxWidgets will draw all button states using this bitmap. If
180 the application needs more control, additional bitmaps for the selected state,
181 unpressed focused state, and greyed-out state may be supplied.
182 """
183 def __repr__(self):
184 return "<%s.%s; proxy of C++ wxBitmapButton instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
185 def __init__(self, *args, **kwargs):
186 """
187 __init__(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
188 Point pos=DefaultPosition, Size size=DefaultSize,
189 long style=BU_AUTODRAW, Validator validator=DefaultValidator,
190 String name=ButtonNameStr) -> BitmapButton
191
192 Create and show a button with a bitmap for the label.
193 """
194 newobj = _controls_.new_BitmapButton(*args, **kwargs)
195 self.this = newobj.this
196 self.thisown = 1
197 del newobj.thisown
198 self._setOORInfo(self)
199
200 def Create(*args, **kwargs):
201 """
202 Create(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
203 Point pos=DefaultPosition, Size size=DefaultSize,
204 long style=BU_AUTODRAW, Validator validator=DefaultValidator,
205 String name=ButtonNameStr) -> bool
206
207 Acutally create the GUI BitmapButton for 2-phase creation.
208 """
209 return _controls_.BitmapButton_Create(*args, **kwargs)
210
211 def GetBitmapLabel(*args, **kwargs):
212 """
213 GetBitmapLabel(self) -> Bitmap
214
215 Returns the label bitmap (the one passed to the constructor).
216 """
217 return _controls_.BitmapButton_GetBitmapLabel(*args, **kwargs)
218
219 def GetBitmapDisabled(*args, **kwargs):
220 """
221 GetBitmapDisabled(self) -> Bitmap
222
223 Returns the bitmap for the disabled state.
224 """
225 return _controls_.BitmapButton_GetBitmapDisabled(*args, **kwargs)
226
227 def GetBitmapFocus(*args, **kwargs):
228 """
229 GetBitmapFocus(self) -> Bitmap
230
231 Returns the bitmap for the focused state.
232 """
233 return _controls_.BitmapButton_GetBitmapFocus(*args, **kwargs)
234
235 def GetBitmapSelected(*args, **kwargs):
236 """
237 GetBitmapSelected(self) -> Bitmap
238
239 Returns the bitmap for the selected state.
240 """
241 return _controls_.BitmapButton_GetBitmapSelected(*args, **kwargs)
242
243 def SetBitmapDisabled(*args, **kwargs):
244 """
245 SetBitmapDisabled(self, Bitmap bitmap)
246
247 Sets the bitmap for the disabled button appearance.
248 """
249 return _controls_.BitmapButton_SetBitmapDisabled(*args, **kwargs)
250
251 def SetBitmapFocus(*args, **kwargs):
252 """
253 SetBitmapFocus(self, Bitmap bitmap)
254
255 Sets the bitmap for the button appearance when it has the keyboard focus.
256 """
257 return _controls_.BitmapButton_SetBitmapFocus(*args, **kwargs)
258
259 def SetBitmapSelected(*args, **kwargs):
260 """
261 SetBitmapSelected(self, Bitmap bitmap)
262
263 Sets the bitmap for the selected (depressed) button appearance.
264 """
265 return _controls_.BitmapButton_SetBitmapSelected(*args, **kwargs)
266
267 def SetBitmapLabel(*args, **kwargs):
268 """
269 SetBitmapLabel(self, Bitmap bitmap)
270
271 Sets the bitmap label for the button. This is the bitmap used for the
272 unselected state, and for all other states if no other bitmaps are provided.
273 """
274 return _controls_.BitmapButton_SetBitmapLabel(*args, **kwargs)
275
276 def SetMargins(*args, **kwargs):
277 """SetMargins(self, int x, int y)"""
278 return _controls_.BitmapButton_SetMargins(*args, **kwargs)
279
280 def GetMarginX(*args, **kwargs):
281 """GetMarginX(self) -> int"""
282 return _controls_.BitmapButton_GetMarginX(*args, **kwargs)
283
284 def GetMarginY(*args, **kwargs):
285 """GetMarginY(self) -> int"""
286 return _controls_.BitmapButton_GetMarginY(*args, **kwargs)
287
288
289 class BitmapButtonPtr(BitmapButton):
290 def __init__(self, this):
291 self.this = this
292 if not hasattr(self,"thisown"): self.thisown = 0
293 self.__class__ = BitmapButton
294 _controls_.BitmapButton_swigregister(BitmapButtonPtr)
295
296 def PreBitmapButton(*args, **kwargs):
297 """
298 PreBitmapButton() -> BitmapButton
299
300 Precreate a BitmapButton for 2-phase creation.
301 """
302 val = _controls_.new_PreBitmapButton(*args, **kwargs)
303 val.thisown = 1
304 return val
305
306 #---------------------------------------------------------------------------
307
308 CHK_2STATE = _controls_.CHK_2STATE
309 CHK_3STATE = _controls_.CHK_3STATE
310 CHK_ALLOW_3RD_STATE_FOR_USER = _controls_.CHK_ALLOW_3RD_STATE_FOR_USER
311 CHK_UNCHECKED = _controls_.CHK_UNCHECKED
312 CHK_CHECKED = _controls_.CHK_CHECKED
313 CHK_UNDETERMINED = _controls_.CHK_UNDETERMINED
314 class CheckBox(_core.Control):
315 """
316 A checkbox is a labelled box which by default is either on (the
317 checkmark is visible) or off (no checkmark). Optionally (When the
318 wx.CHK_3STATE style flag is set) it can have a third state, called the
319 mixed or undetermined state. Often this is used as a "Does Not
320 Apply" state.
321 """
322 def __repr__(self):
323 return "<%s.%s; proxy of C++ wxCheckBox instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
324 def __init__(self, *args, **kwargs):
325 """
326 __init__(self, Window parent, int id=-1, String label=EmptyString,
327 Point pos=DefaultPosition, Size size=DefaultSize,
328 long style=0, Validator validator=DefaultValidator,
329 String name=CheckBoxNameStr) -> CheckBox
330
331 Creates and shows a CheckBox control
332 """
333 newobj = _controls_.new_CheckBox(*args, **kwargs)
334 self.this = newobj.this
335 self.thisown = 1
336 del newobj.thisown
337 self._setOORInfo(self)
338
339 def Create(*args, **kwargs):
340 """
341 Create(self, Window parent, int id=-1, String label=EmptyString,
342 Point pos=DefaultPosition, Size size=DefaultSize,
343 long style=0, Validator validator=DefaultValidator,
344 String name=CheckBoxNameStr) -> bool
345
346 Actually create the GUI CheckBox for 2-phase creation.
347 """
348 return _controls_.CheckBox_Create(*args, **kwargs)
349
350 def GetValue(*args, **kwargs):
351 """
352 GetValue(self) -> bool
353
354 Gets the state of a 2-state CheckBox. Returns True if it is checked,
355 False otherwise.
356 """
357 return _controls_.CheckBox_GetValue(*args, **kwargs)
358
359 def IsChecked(*args, **kwargs):
360 """
361 IsChecked(self) -> bool
362
363 Similar to GetValue, but raises an exception if it is not a 2-state
364 CheckBox.
365 """
366 return _controls_.CheckBox_IsChecked(*args, **kwargs)
367
368 def SetValue(*args, **kwargs):
369 """
370 SetValue(self, bool state)
371
372 Set the state of a 2-state CheckBox. Pass True for checked, False for
373 unchecked.
374 """
375 return _controls_.CheckBox_SetValue(*args, **kwargs)
376
377 def Get3StateValue(*args, **kwargs):
378 """
379 Get3StateValue(self) -> int
380
381 Returns wx.CHK_UNCHECKED when the CheckBox is unchecked,
382 wx.CHK_CHECKED when it is checked and wx.CHK_UNDETERMINED when it's in
383 the undetermined state. Raises an exceptiion when the function is
384 used with a 2-state CheckBox.
385 """
386 return _controls_.CheckBox_Get3StateValue(*args, **kwargs)
387
388 def Set3StateValue(*args, **kwargs):
389 """
390 Set3StateValue(self, int state)
391
392 Sets the CheckBox to the given state. The state parameter can be one
393 of the following: wx.CHK_UNCHECKED (Check is off), wx.CHK_CHECKED (the
394 Check is on) or wx.CHK_UNDETERMINED (Check is mixed). Raises an
395 exception when the CheckBox is a 2-state checkbox and setting the
396 state to wx.CHK_UNDETERMINED.
397 """
398 return _controls_.CheckBox_Set3StateValue(*args, **kwargs)
399
400 def Is3State(*args, **kwargs):
401 """
402 Is3State(self) -> bool
403
404 Returns whether or not the CheckBox is a 3-state CheckBox.
405 """
406 return _controls_.CheckBox_Is3State(*args, **kwargs)
407
408 def Is3rdStateAllowedForUser(*args, **kwargs):
409 """
410 Is3rdStateAllowedForUser(self) -> bool
411
412 Returns whether or not the user can set the CheckBox to the third
413 state.
414 """
415 return _controls_.CheckBox_Is3rdStateAllowedForUser(*args, **kwargs)
416
417 def GetClassDefaultAttributes(*args, **kwargs):
418 """
419 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
420
421 Get the default attributes for this class. This is useful if you want
422 to use the same font or colour in your own control as in a standard
423 control -- which is a much better idea than hard coding specific
424 colours or fonts which might look completely out of place on the
425 user's system, especially if it uses themes.
426
427 The variant parameter is only relevant under Mac currently and is
428 ignore under other platforms. Under Mac, it will change the size of
429 the returned font. See `wx.Window.SetWindowVariant` for more about
430 this.
431 """
432 return _controls_.CheckBox_GetClassDefaultAttributes(*args, **kwargs)
433
434 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
435
436 class CheckBoxPtr(CheckBox):
437 def __init__(self, this):
438 self.this = this
439 if not hasattr(self,"thisown"): self.thisown = 0
440 self.__class__ = CheckBox
441 _controls_.CheckBox_swigregister(CheckBoxPtr)
442 CheckBoxNameStr = cvar.CheckBoxNameStr
443
444 def PreCheckBox(*args, **kwargs):
445 """
446 PreCheckBox() -> CheckBox
447
448 Precreate a CheckBox for 2-phase creation.
449 """
450 val = _controls_.new_PreCheckBox(*args, **kwargs)
451 val.thisown = 1
452 return val
453
454 def CheckBox_GetClassDefaultAttributes(*args, **kwargs):
455 """
456 CheckBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
457
458 Get the default attributes for this class. This is useful if you want
459 to use the same font or colour in your own control as in a standard
460 control -- which is a much better idea than hard coding specific
461 colours or fonts which might look completely out of place on the
462 user's system, especially if it uses themes.
463
464 The variant parameter is only relevant under Mac currently and is
465 ignore under other platforms. Under Mac, it will change the size of
466 the returned font. See `wx.Window.SetWindowVariant` for more about
467 this.
468 """
469 return _controls_.CheckBox_GetClassDefaultAttributes(*args, **kwargs)
470
471 #---------------------------------------------------------------------------
472
473 class Choice(_core.ControlWithItems):
474 """
475 A Choice control is used to select one of a list of strings.
476 Unlike a `wx.ListBox`, only the selection is visible until the
477 user pulls down the menu of choices.
478 """
479 def __repr__(self):
480 return "<%s.%s; proxy of C++ wxChoice instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
481 def __init__(self, *args, **kwargs):
482 """
483 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
484 List choices=[], long style=0, Validator validator=DefaultValidator,
485 String name=ChoiceNameStr) -> Choice
486
487 Create and show a Choice control
488 """
489 newobj = _controls_.new_Choice(*args, **kwargs)
490 self.this = newobj.this
491 self.thisown = 1
492 del newobj.thisown
493 self._setOORInfo(self)
494
495 def Create(*args, **kwargs):
496 """
497 Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
498 List choices=[], long style=0, Validator validator=DefaultValidator,
499 String name=ChoiceNameStr) -> bool
500
501 Actually create the GUI Choice control for 2-phase creation
502 """
503 return _controls_.Choice_Create(*args, **kwargs)
504
505 def GetClassDefaultAttributes(*args, **kwargs):
506 """
507 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
508
509 Get the default attributes for this class. This is useful if you want
510 to use the same font or colour in your own control as in a standard
511 control -- which is a much better idea than hard coding specific
512 colours or fonts which might look completely out of place on the
513 user's system, especially if it uses themes.
514
515 The variant parameter is only relevant under Mac currently and is
516 ignore under other platforms. Under Mac, it will change the size of
517 the returned font. See `wx.Window.SetWindowVariant` for more about
518 this.
519 """
520 return _controls_.Choice_GetClassDefaultAttributes(*args, **kwargs)
521
522 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
523
524 class ChoicePtr(Choice):
525 def __init__(self, this):
526 self.this = this
527 if not hasattr(self,"thisown"): self.thisown = 0
528 self.__class__ = Choice
529 _controls_.Choice_swigregister(ChoicePtr)
530 ChoiceNameStr = cvar.ChoiceNameStr
531
532 def PreChoice(*args, **kwargs):
533 """
534 PreChoice() -> Choice
535
536 Precreate a Choice control for 2-phase creation.
537 """
538 val = _controls_.new_PreChoice(*args, **kwargs)
539 val.thisown = 1
540 return val
541
542 def Choice_GetClassDefaultAttributes(*args, **kwargs):
543 """
544 Choice_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
545
546 Get the default attributes for this class. This is useful if you want
547 to use the same font or colour in your own control as in a standard
548 control -- which is a much better idea than hard coding specific
549 colours or fonts which might look completely out of place on the
550 user's system, especially if it uses themes.
551
552 The variant parameter is only relevant under Mac currently and is
553 ignore under other platforms. Under Mac, it will change the size of
554 the returned font. See `wx.Window.SetWindowVariant` for more about
555 this.
556 """
557 return _controls_.Choice_GetClassDefaultAttributes(*args, **kwargs)
558
559 #---------------------------------------------------------------------------
560
561 class ComboBox(_core.Control,_core.ItemContainer):
562 """
563 A combobox is like a combination of an edit control and a
564 listbox. It can be displayed as static list with editable or
565 read-only text field; or a drop-down list with text field.
566
567 A combobox permits a single selection only. Combobox items are
568 numbered from zero.
569 """
570 def __repr__(self):
571 return "<%s.%s; proxy of C++ wxComboBox instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
572 def __init__(self, *args, **kwargs):
573 """
574 __init__(Window parent, int id, String value=EmptyString,
575 Point pos=DefaultPosition, Size size=DefaultSize,
576 List choices=[], long style=0, Validator validator=DefaultValidator,
577 String name=ComboBoxNameStr) -> ComboBox
578
579 Constructor, creates and shows a ComboBox control.
580 """
581 newobj = _controls_.new_ComboBox(*args, **kwargs)
582 self.this = newobj.this
583 self.thisown = 1
584 del newobj.thisown
585 self._setOORInfo(self)
586
587 def Create(*args, **kwargs):
588 """
589 Create(Window parent, int id, String value=EmptyString,
590 Point pos=DefaultPosition, Size size=DefaultSize,
591 List choices=[], long style=0, Validator validator=DefaultValidator,
592 String name=ChoiceNameStr) -> bool
593
594 Actually create the GUI wxComboBox control for 2-phase creation
595 """
596 return _controls_.ComboBox_Create(*args, **kwargs)
597
598 def GetValue(*args, **kwargs):
599 """
600 GetValue(self) -> String
601
602 Returns the current value in the combobox text field.
603 """
604 return _controls_.ComboBox_GetValue(*args, **kwargs)
605
606 def SetValue(*args, **kwargs):
607 """SetValue(self, String value)"""
608 return _controls_.ComboBox_SetValue(*args, **kwargs)
609
610 def Copy(*args, **kwargs):
611 """
612 Copy(self)
613
614 Copies the selected text to the clipboard.
615 """
616 return _controls_.ComboBox_Copy(*args, **kwargs)
617
618 def Cut(*args, **kwargs):
619 """
620 Cut(self)
621
622 Copies the selected text to the clipboard and removes the selection.
623 """
624 return _controls_.ComboBox_Cut(*args, **kwargs)
625
626 def Paste(*args, **kwargs):
627 """
628 Paste(self)
629
630 Pastes text from the clipboard to the text field.
631 """
632 return _controls_.ComboBox_Paste(*args, **kwargs)
633
634 def SetInsertionPoint(*args, **kwargs):
635 """
636 SetInsertionPoint(self, long pos)
637
638 Sets the insertion point in the combobox text field.
639 """
640 return _controls_.ComboBox_SetInsertionPoint(*args, **kwargs)
641
642 def GetInsertionPoint(*args, **kwargs):
643 """
644 GetInsertionPoint(self) -> long
645
646 Returns the insertion point for the combobox's text field.
647 """
648 return _controls_.ComboBox_GetInsertionPoint(*args, **kwargs)
649
650 def GetLastPosition(*args, **kwargs):
651 """
652 GetLastPosition(self) -> long
653
654 Returns the last position in the combobox text field.
655 """
656 return _controls_.ComboBox_GetLastPosition(*args, **kwargs)
657
658 def Replace(*args, **kwargs):
659 """
660 Replace(self, long from, long to, String value)
661
662 Replaces the text between two positions with the given text, in the
663 combobox text field.
664 """
665 return _controls_.ComboBox_Replace(*args, **kwargs)
666
667 def SetSelection(*args, **kwargs):
668 """
669 SetSelection(self, int n)
670
671 Sets the item at index 'n' to be the selected item.
672 """
673 return _controls_.ComboBox_SetSelection(*args, **kwargs)
674
675 def SetMark(*args, **kwargs):
676 """
677 SetMark(self, long from, long to)
678
679 Selects the text between the two positions in the combobox text field.
680 """
681 return _controls_.ComboBox_SetMark(*args, **kwargs)
682
683 def SetStringSelection(*args, **kwargs):
684 """
685 SetStringSelection(self, String string) -> bool
686
687 Select the item with the specifed string
688 """
689 return _controls_.ComboBox_SetStringSelection(*args, **kwargs)
690
691 def SetString(*args, **kwargs):
692 """
693 SetString(self, int n, String string)
694
695 Set the label for the n'th item (zero based) in the list.
696 """
697 return _controls_.ComboBox_SetString(*args, **kwargs)
698
699 def SetEditable(*args, **kwargs):
700 """SetEditable(self, bool editable)"""
701 return _controls_.ComboBox_SetEditable(*args, **kwargs)
702
703 def SetInsertionPointEnd(*args, **kwargs):
704 """
705 SetInsertionPointEnd(self)
706
707 Sets the insertion point at the end of the combobox text field.
708 """
709 return _controls_.ComboBox_SetInsertionPointEnd(*args, **kwargs)
710
711 def Remove(*args, **kwargs):
712 """
713 Remove(self, long from, long to)
714
715 Removes the text between the two positions in the combobox text field.
716 """
717 return _controls_.ComboBox_Remove(*args, **kwargs)
718
719 def IsEditable(*args, **kwargs):
720 """
721 IsEditable(self) -> bool
722
723 Returns True if the combo is ediatable (not read-only.)
724 """
725 return _controls_.ComboBox_IsEditable(*args, **kwargs)
726
727 def Undo(*args, **kwargs):
728 """
729 Undo(self)
730
731 Redoes the last undo in the text field. Windows only.
732 """
733 return _controls_.ComboBox_Undo(*args, **kwargs)
734
735 def Redo(*args, **kwargs):
736 """
737 Redo(self)
738
739 Undoes the last edit in the text field. Windows only.
740 """
741 return _controls_.ComboBox_Redo(*args, **kwargs)
742
743 def SelectAll(*args, **kwargs):
744 """
745 SelectAll(self)
746
747 Select all the text in the combo's text field.
748 """
749 return _controls_.ComboBox_SelectAll(*args, **kwargs)
750
751 def CanCopy(*args, **kwargs):
752 """
753 CanCopy(self) -> bool
754
755 Returns True if the combobox is editable and there is a text selection
756 to copy to the clipboard. Only available on Windows.
757 """
758 return _controls_.ComboBox_CanCopy(*args, **kwargs)
759
760 def CanCut(*args, **kwargs):
761 """
762 CanCut(self) -> bool
763
764 Returns True if the combobox is editable and there is a text selection
765 to copy to the clipboard. Only available on Windows.
766 """
767 return _controls_.ComboBox_CanCut(*args, **kwargs)
768
769 def CanPaste(*args, **kwargs):
770 """
771 CanPaste(self) -> bool
772
773 Returns True if the combobox is editable and there is text on the
774 clipboard that can be pasted into the text field. Only available on
775 Windows.
776 """
777 return _controls_.ComboBox_CanPaste(*args, **kwargs)
778
779 def CanUndo(*args, **kwargs):
780 """
781 CanUndo(self) -> bool
782
783 Returns True if the combobox is editable and the last edit can be
784 undone. Only available on Windows.
785 """
786 return _controls_.ComboBox_CanUndo(*args, **kwargs)
787
788 def CanRedo(*args, **kwargs):
789 """
790 CanRedo(self) -> bool
791
792 Returns True if the combobox is editable and the last undo can be
793 redone. Only available on Windows.
794 """
795 return _controls_.ComboBox_CanRedo(*args, **kwargs)
796
797 def GetClassDefaultAttributes(*args, **kwargs):
798 """
799 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
800
801 Get the default attributes for this class. This is useful if you want
802 to use the same font or colour in your own control as in a standard
803 control -- which is a much better idea than hard coding specific
804 colours or fonts which might look completely out of place on the
805 user's system, especially if it uses themes.
806
807 The variant parameter is only relevant under Mac currently and is
808 ignore under other platforms. Under Mac, it will change the size of
809 the returned font. See `wx.Window.SetWindowVariant` for more about
810 this.
811 """
812 return _controls_.ComboBox_GetClassDefaultAttributes(*args, **kwargs)
813
814 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
815
816 class ComboBoxPtr(ComboBox):
817 def __init__(self, this):
818 self.this = this
819 if not hasattr(self,"thisown"): self.thisown = 0
820 self.__class__ = ComboBox
821 _controls_.ComboBox_swigregister(ComboBoxPtr)
822 ComboBoxNameStr = cvar.ComboBoxNameStr
823
824 def PreComboBox(*args, **kwargs):
825 """
826 PreComboBox() -> ComboBox
827
828 Precreate a ComboBox control for 2-phase creation.
829 """
830 val = _controls_.new_PreComboBox(*args, **kwargs)
831 val.thisown = 1
832 return val
833
834 def ComboBox_GetClassDefaultAttributes(*args, **kwargs):
835 """
836 ComboBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
837
838 Get the default attributes for this class. This is useful if you want
839 to use the same font or colour in your own control as in a standard
840 control -- which is a much better idea than hard coding specific
841 colours or fonts which might look completely out of place on the
842 user's system, especially if it uses themes.
843
844 The variant parameter is only relevant under Mac currently and is
845 ignore under other platforms. Under Mac, it will change the size of
846 the returned font. See `wx.Window.SetWindowVariant` for more about
847 this.
848 """
849 return _controls_.ComboBox_GetClassDefaultAttributes(*args, **kwargs)
850
851 #---------------------------------------------------------------------------
852
853 GA_HORIZONTAL = _controls_.GA_HORIZONTAL
854 GA_VERTICAL = _controls_.GA_VERTICAL
855 GA_SMOOTH = _controls_.GA_SMOOTH
856 GA_PROGRESSBAR = _controls_.GA_PROGRESSBAR
857 class Gauge(_core.Control):
858 """Proxy of C++ Gauge class"""
859 def __repr__(self):
860 return "<%s.%s; proxy of C++ wxGauge instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
861 def __init__(self, *args, **kwargs):
862 """
863 __init__(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
864 Size size=DefaultSize, long style=GA_HORIZONTAL,
865 Validator validator=DefaultValidator,
866 String name=GaugeNameStr) -> Gauge
867 """
868 newobj = _controls_.new_Gauge(*args, **kwargs)
869 self.this = newobj.this
870 self.thisown = 1
871 del newobj.thisown
872 self._setOORInfo(self)
873
874 def Create(*args, **kwargs):
875 """
876 Create(self, Window parent, int id=-1, int range=100, Point pos=DefaultPosition,
877 Size size=DefaultSize, long style=GA_HORIZONTAL,
878 Validator validator=DefaultValidator,
879 String name=GaugeNameStr) -> bool
880 """
881 return _controls_.Gauge_Create(*args, **kwargs)
882
883 def SetRange(*args, **kwargs):
884 """SetRange(self, int range)"""
885 return _controls_.Gauge_SetRange(*args, **kwargs)
886
887 def GetRange(*args, **kwargs):
888 """GetRange(self) -> int"""
889 return _controls_.Gauge_GetRange(*args, **kwargs)
890
891 def SetValue(*args, **kwargs):
892 """SetValue(self, int pos)"""
893 return _controls_.Gauge_SetValue(*args, **kwargs)
894
895 def GetValue(*args, **kwargs):
896 """GetValue(self) -> int"""
897 return _controls_.Gauge_GetValue(*args, **kwargs)
898
899 def IsVertical(*args, **kwargs):
900 """IsVertical(self) -> bool"""
901 return _controls_.Gauge_IsVertical(*args, **kwargs)
902
903 def SetShadowWidth(*args, **kwargs):
904 """SetShadowWidth(self, int w)"""
905 return _controls_.Gauge_SetShadowWidth(*args, **kwargs)
906
907 def GetShadowWidth(*args, **kwargs):
908 """GetShadowWidth(self) -> int"""
909 return _controls_.Gauge_GetShadowWidth(*args, **kwargs)
910
911 def SetBezelFace(*args, **kwargs):
912 """SetBezelFace(self, int w)"""
913 return _controls_.Gauge_SetBezelFace(*args, **kwargs)
914
915 def GetBezelFace(*args, **kwargs):
916 """GetBezelFace(self) -> int"""
917 return _controls_.Gauge_GetBezelFace(*args, **kwargs)
918
919 def GetClassDefaultAttributes(*args, **kwargs):
920 """
921 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
922
923 Get the default attributes for this class. This is useful if you want
924 to use the same font or colour in your own control as in a standard
925 control -- which is a much better idea than hard coding specific
926 colours or fonts which might look completely out of place on the
927 user's system, especially if it uses themes.
928
929 The variant parameter is only relevant under Mac currently and is
930 ignore under other platforms. Under Mac, it will change the size of
931 the returned font. See `wx.Window.SetWindowVariant` for more about
932 this.
933 """
934 return _controls_.Gauge_GetClassDefaultAttributes(*args, **kwargs)
935
936 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
937
938 class GaugePtr(Gauge):
939 def __init__(self, this):
940 self.this = this
941 if not hasattr(self,"thisown"): self.thisown = 0
942 self.__class__ = Gauge
943 _controls_.Gauge_swigregister(GaugePtr)
944 GaugeNameStr = cvar.GaugeNameStr
945
946 def PreGauge(*args, **kwargs):
947 """PreGauge() -> Gauge"""
948 val = _controls_.new_PreGauge(*args, **kwargs)
949 val.thisown = 1
950 return val
951
952 def Gauge_GetClassDefaultAttributes(*args, **kwargs):
953 """
954 Gauge_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
955
956 Get the default attributes for this class. This is useful if you want
957 to use the same font or colour in your own control as in a standard
958 control -- which is a much better idea than hard coding specific
959 colours or fonts which might look completely out of place on the
960 user's system, especially if it uses themes.
961
962 The variant parameter is only relevant under Mac currently and is
963 ignore under other platforms. Under Mac, it will change the size of
964 the returned font. See `wx.Window.SetWindowVariant` for more about
965 this.
966 """
967 return _controls_.Gauge_GetClassDefaultAttributes(*args, **kwargs)
968
969 #---------------------------------------------------------------------------
970
971 class StaticBox(_core.Control):
972 """Proxy of C++ StaticBox class"""
973 def __repr__(self):
974 return "<%s.%s; proxy of C++ wxStaticBox instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
975 def __init__(self, *args, **kwargs):
976 """
977 __init__(self, Window parent, int id=-1, String label=EmptyString,
978 Point pos=DefaultPosition, Size size=DefaultSize,
979 long style=0, String name=StaticBoxNameStr) -> StaticBox
980 """
981 newobj = _controls_.new_StaticBox(*args, **kwargs)
982 self.this = newobj.this
983 self.thisown = 1
984 del newobj.thisown
985 self._setOORInfo(self)
986
987 def Create(*args, **kwargs):
988 """
989 Create(self, Window parent, int id=-1, String label=EmptyString,
990 Point pos=DefaultPosition, Size size=DefaultSize,
991 long style=0, String name=StaticBoxNameStr) -> bool
992 """
993 return _controls_.StaticBox_Create(*args, **kwargs)
994
995 def GetClassDefaultAttributes(*args, **kwargs):
996 """
997 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
998
999 Get the default attributes for this class. This is useful if you want
1000 to use the same font or colour in your own control as in a standard
1001 control -- which is a much better idea than hard coding specific
1002 colours or fonts which might look completely out of place on the
1003 user's system, especially if it uses themes.
1004
1005 The variant parameter is only relevant under Mac currently and is
1006 ignore under other platforms. Under Mac, it will change the size of
1007 the returned font. See `wx.Window.SetWindowVariant` for more about
1008 this.
1009 """
1010 return _controls_.StaticBox_GetClassDefaultAttributes(*args, **kwargs)
1011
1012 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
1013
1014 class StaticBoxPtr(StaticBox):
1015 def __init__(self, this):
1016 self.this = this
1017 if not hasattr(self,"thisown"): self.thisown = 0
1018 self.__class__ = StaticBox
1019 _controls_.StaticBox_swigregister(StaticBoxPtr)
1020 StaticBitmapNameStr = cvar.StaticBitmapNameStr
1021 StaticBoxNameStr = cvar.StaticBoxNameStr
1022 StaticTextNameStr = cvar.StaticTextNameStr
1023
1024 def PreStaticBox(*args, **kwargs):
1025 """PreStaticBox() -> StaticBox"""
1026 val = _controls_.new_PreStaticBox(*args, **kwargs)
1027 val.thisown = 1
1028 return val
1029
1030 def StaticBox_GetClassDefaultAttributes(*args, **kwargs):
1031 """
1032 StaticBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1033
1034 Get the default attributes for this class. This is useful if you want
1035 to use the same font or colour in your own control as in a standard
1036 control -- which is a much better idea than hard coding specific
1037 colours or fonts which might look completely out of place on the
1038 user's system, especially if it uses themes.
1039
1040 The variant parameter is only relevant under Mac currently and is
1041 ignore under other platforms. Under Mac, it will change the size of
1042 the returned font. See `wx.Window.SetWindowVariant` for more about
1043 this.
1044 """
1045 return _controls_.StaticBox_GetClassDefaultAttributes(*args, **kwargs)
1046
1047 #---------------------------------------------------------------------------
1048
1049 class StaticLine(_core.Control):
1050 """Proxy of C++ StaticLine class"""
1051 def __repr__(self):
1052 return "<%s.%s; proxy of C++ wxStaticLine instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1053 def __init__(self, *args, **kwargs):
1054 """
1055 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1056 Size size=DefaultSize, long style=LI_HORIZONTAL,
1057 String name=StaticTextNameStr) -> StaticLine
1058 """
1059 newobj = _controls_.new_StaticLine(*args, **kwargs)
1060 self.this = newobj.this
1061 self.thisown = 1
1062 del newobj.thisown
1063 self._setOORInfo(self)
1064
1065 def Create(*args, **kwargs):
1066 """
1067 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1068 Size size=DefaultSize, long style=LI_HORIZONTAL,
1069 String name=StaticTextNameStr) -> bool
1070 """
1071 return _controls_.StaticLine_Create(*args, **kwargs)
1072
1073 def IsVertical(*args, **kwargs):
1074 """IsVertical(self) -> bool"""
1075 return _controls_.StaticLine_IsVertical(*args, **kwargs)
1076
1077 def GetDefaultSize(*args, **kwargs):
1078 """GetDefaultSize() -> int"""
1079 return _controls_.StaticLine_GetDefaultSize(*args, **kwargs)
1080
1081 GetDefaultSize = staticmethod(GetDefaultSize)
1082 def GetClassDefaultAttributes(*args, **kwargs):
1083 """
1084 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1085
1086 Get the default attributes for this class. This is useful if you want
1087 to use the same font or colour in your own control as in a standard
1088 control -- which is a much better idea than hard coding specific
1089 colours or fonts which might look completely out of place on the
1090 user's system, especially if it uses themes.
1091
1092 The variant parameter is only relevant under Mac currently and is
1093 ignore under other platforms. Under Mac, it will change the size of
1094 the returned font. See `wx.Window.SetWindowVariant` for more about
1095 this.
1096 """
1097 return _controls_.StaticLine_GetClassDefaultAttributes(*args, **kwargs)
1098
1099 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
1100
1101 class StaticLinePtr(StaticLine):
1102 def __init__(self, this):
1103 self.this = this
1104 if not hasattr(self,"thisown"): self.thisown = 0
1105 self.__class__ = StaticLine
1106 _controls_.StaticLine_swigregister(StaticLinePtr)
1107
1108 def PreStaticLine(*args, **kwargs):
1109 """PreStaticLine() -> StaticLine"""
1110 val = _controls_.new_PreStaticLine(*args, **kwargs)
1111 val.thisown = 1
1112 return val
1113
1114 def StaticLine_GetDefaultSize(*args, **kwargs):
1115 """StaticLine_GetDefaultSize() -> int"""
1116 return _controls_.StaticLine_GetDefaultSize(*args, **kwargs)
1117
1118 def StaticLine_GetClassDefaultAttributes(*args, **kwargs):
1119 """
1120 StaticLine_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1121
1122 Get the default attributes for this class. This is useful if you want
1123 to use the same font or colour in your own control as in a standard
1124 control -- which is a much better idea than hard coding specific
1125 colours or fonts which might look completely out of place on the
1126 user's system, especially if it uses themes.
1127
1128 The variant parameter is only relevant under Mac currently and is
1129 ignore under other platforms. Under Mac, it will change the size of
1130 the returned font. See `wx.Window.SetWindowVariant` for more about
1131 this.
1132 """
1133 return _controls_.StaticLine_GetClassDefaultAttributes(*args, **kwargs)
1134
1135 #---------------------------------------------------------------------------
1136
1137 class StaticText(_core.Control):
1138 """Proxy of C++ StaticText class"""
1139 def __repr__(self):
1140 return "<%s.%s; proxy of C++ wxStaticText instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1141 def __init__(self, *args, **kwargs):
1142 """
1143 __init__(self, Window parent, int id=-1, String label=EmptyString,
1144 Point pos=DefaultPosition, Size size=DefaultSize,
1145 long style=0, String name=StaticTextNameStr) -> StaticText
1146 """
1147 newobj = _controls_.new_StaticText(*args, **kwargs)
1148 self.this = newobj.this
1149 self.thisown = 1
1150 del newobj.thisown
1151 self._setOORInfo(self)
1152
1153 def Create(*args, **kwargs):
1154 """
1155 Create(self, Window parent, int id=-1, String label=EmptyString,
1156 Point pos=DefaultPosition, Size size=DefaultSize,
1157 long style=0, String name=StaticTextNameStr) -> bool
1158 """
1159 return _controls_.StaticText_Create(*args, **kwargs)
1160
1161 def GetClassDefaultAttributes(*args, **kwargs):
1162 """
1163 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1164
1165 Get the default attributes for this class. This is useful if you want
1166 to use the same font or colour in your own control as in a standard
1167 control -- which is a much better idea than hard coding specific
1168 colours or fonts which might look completely out of place on the
1169 user's system, especially if it uses themes.
1170
1171 The variant parameter is only relevant under Mac currently and is
1172 ignore under other platforms. Under Mac, it will change the size of
1173 the returned font. See `wx.Window.SetWindowVariant` for more about
1174 this.
1175 """
1176 return _controls_.StaticText_GetClassDefaultAttributes(*args, **kwargs)
1177
1178 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
1179
1180 class StaticTextPtr(StaticText):
1181 def __init__(self, this):
1182 self.this = this
1183 if not hasattr(self,"thisown"): self.thisown = 0
1184 self.__class__ = StaticText
1185 _controls_.StaticText_swigregister(StaticTextPtr)
1186
1187 def PreStaticText(*args, **kwargs):
1188 """PreStaticText() -> StaticText"""
1189 val = _controls_.new_PreStaticText(*args, **kwargs)
1190 val.thisown = 1
1191 return val
1192
1193 def StaticText_GetClassDefaultAttributes(*args, **kwargs):
1194 """
1195 StaticText_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1196
1197 Get the default attributes for this class. This is useful if you want
1198 to use the same font or colour in your own control as in a standard
1199 control -- which is a much better idea than hard coding specific
1200 colours or fonts which might look completely out of place on the
1201 user's system, especially if it uses themes.
1202
1203 The variant parameter is only relevant under Mac currently and is
1204 ignore under other platforms. Under Mac, it will change the size of
1205 the returned font. See `wx.Window.SetWindowVariant` for more about
1206 this.
1207 """
1208 return _controls_.StaticText_GetClassDefaultAttributes(*args, **kwargs)
1209
1210 #---------------------------------------------------------------------------
1211
1212 class StaticBitmap(_core.Control):
1213 """Proxy of C++ StaticBitmap class"""
1214 def __repr__(self):
1215 return "<%s.%s; proxy of C++ wxStaticBitmap instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1216 def __init__(self, *args, **kwargs):
1217 """
1218 __init__(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
1219 Point pos=DefaultPosition, Size size=DefaultSize,
1220 long style=0, String name=StaticBitmapNameStr) -> StaticBitmap
1221 """
1222 newobj = _controls_.new_StaticBitmap(*args, **kwargs)
1223 self.this = newobj.this
1224 self.thisown = 1
1225 del newobj.thisown
1226 self._setOORInfo(self)
1227
1228 def Create(*args, **kwargs):
1229 """
1230 Create(self, Window parent, int id=-1, Bitmap bitmap=wxNullBitmap,
1231 Point pos=DefaultPosition, Size size=DefaultSize,
1232 long style=0, String name=StaticBitmapNameStr) -> bool
1233 """
1234 return _controls_.StaticBitmap_Create(*args, **kwargs)
1235
1236 def GetBitmap(*args, **kwargs):
1237 """GetBitmap(self) -> Bitmap"""
1238 return _controls_.StaticBitmap_GetBitmap(*args, **kwargs)
1239
1240 def SetBitmap(*args, **kwargs):
1241 """SetBitmap(self, Bitmap bitmap)"""
1242 return _controls_.StaticBitmap_SetBitmap(*args, **kwargs)
1243
1244 def SetIcon(*args, **kwargs):
1245 """SetIcon(self, Icon icon)"""
1246 return _controls_.StaticBitmap_SetIcon(*args, **kwargs)
1247
1248 def GetClassDefaultAttributes(*args, **kwargs):
1249 """
1250 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1251
1252 Get the default attributes for this class. This is useful if you want
1253 to use the same font or colour in your own control as in a standard
1254 control -- which is a much better idea than hard coding specific
1255 colours or fonts which might look completely out of place on the
1256 user's system, especially if it uses themes.
1257
1258 The variant parameter is only relevant under Mac currently and is
1259 ignore under other platforms. Under Mac, it will change the size of
1260 the returned font. See `wx.Window.SetWindowVariant` for more about
1261 this.
1262 """
1263 return _controls_.StaticBitmap_GetClassDefaultAttributes(*args, **kwargs)
1264
1265 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
1266
1267 class StaticBitmapPtr(StaticBitmap):
1268 def __init__(self, this):
1269 self.this = this
1270 if not hasattr(self,"thisown"): self.thisown = 0
1271 self.__class__ = StaticBitmap
1272 _controls_.StaticBitmap_swigregister(StaticBitmapPtr)
1273
1274 def PreStaticBitmap(*args, **kwargs):
1275 """PreStaticBitmap() -> StaticBitmap"""
1276 val = _controls_.new_PreStaticBitmap(*args, **kwargs)
1277 val.thisown = 1
1278 return val
1279
1280 def StaticBitmap_GetClassDefaultAttributes(*args, **kwargs):
1281 """
1282 StaticBitmap_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1283
1284 Get the default attributes for this class. This is useful if you want
1285 to use the same font or colour in your own control as in a standard
1286 control -- which is a much better idea than hard coding specific
1287 colours or fonts which might look completely out of place on the
1288 user's system, especially if it uses themes.
1289
1290 The variant parameter is only relevant under Mac currently and is
1291 ignore under other platforms. Under Mac, it will change the size of
1292 the returned font. See `wx.Window.SetWindowVariant` for more about
1293 this.
1294 """
1295 return _controls_.StaticBitmap_GetClassDefaultAttributes(*args, **kwargs)
1296
1297 #---------------------------------------------------------------------------
1298
1299 class ListBox(_core.ControlWithItems):
1300 """Proxy of C++ ListBox class"""
1301 def __repr__(self):
1302 return "<%s.%s; proxy of C++ wxListBox instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1303 def __init__(self, *args, **kwargs):
1304 """
1305 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1306 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1307 long style=0, Validator validator=DefaultValidator,
1308 String name=ListBoxNameStr) -> ListBox
1309 """
1310 newobj = _controls_.new_ListBox(*args, **kwargs)
1311 self.this = newobj.this
1312 self.thisown = 1
1313 del newobj.thisown
1314 self._setOORInfo(self)
1315
1316 def Create(*args, **kwargs):
1317 """
1318 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1319 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1320 long style=0, Validator validator=DefaultValidator,
1321 String name=ListBoxNameStr) -> bool
1322 """
1323 return _controls_.ListBox_Create(*args, **kwargs)
1324
1325 def Insert(*args, **kwargs):
1326 """
1327 Insert(self, String item, int pos, PyObject clientData=None)
1328
1329 Insert an item into the control before the item at the ``pos`` index,
1330 optionally associating some data object with the item.
1331 """
1332 return _controls_.ListBox_Insert(*args, **kwargs)
1333
1334 def InsertItems(*args, **kwargs):
1335 """InsertItems(self, wxArrayString items, int pos)"""
1336 return _controls_.ListBox_InsertItems(*args, **kwargs)
1337
1338 def Set(*args, **kwargs):
1339 """Set(self, wxArrayString items)"""
1340 return _controls_.ListBox_Set(*args, **kwargs)
1341
1342 def IsSelected(*args, **kwargs):
1343 """IsSelected(self, int n) -> bool"""
1344 return _controls_.ListBox_IsSelected(*args, **kwargs)
1345
1346 def SetSelection(*args, **kwargs):
1347 """SetSelection(self, int n, bool select=True)"""
1348 return _controls_.ListBox_SetSelection(*args, **kwargs)
1349
1350 def Select(*args, **kwargs):
1351 """
1352 Select(self, int n)
1353
1354 This is the same as `SetSelection` and exists only because it is
1355 slightly more natural for controls which support multiple selection.
1356 """
1357 return _controls_.ListBox_Select(*args, **kwargs)
1358
1359 def Deselect(*args, **kwargs):
1360 """Deselect(self, int n)"""
1361 return _controls_.ListBox_Deselect(*args, **kwargs)
1362
1363 def DeselectAll(*args, **kwargs):
1364 """DeselectAll(self, int itemToLeaveSelected=-1)"""
1365 return _controls_.ListBox_DeselectAll(*args, **kwargs)
1366
1367 def SetStringSelection(*args, **kwargs):
1368 """SetStringSelection(self, String s, bool select=True) -> bool"""
1369 return _controls_.ListBox_SetStringSelection(*args, **kwargs)
1370
1371 def GetSelections(*args, **kwargs):
1372 """GetSelections(self) -> PyObject"""
1373 return _controls_.ListBox_GetSelections(*args, **kwargs)
1374
1375 def SetFirstItem(*args, **kwargs):
1376 """SetFirstItem(self, int n)"""
1377 return _controls_.ListBox_SetFirstItem(*args, **kwargs)
1378
1379 def SetFirstItemStr(*args, **kwargs):
1380 """SetFirstItemStr(self, String s)"""
1381 return _controls_.ListBox_SetFirstItemStr(*args, **kwargs)
1382
1383 def EnsureVisible(*args, **kwargs):
1384 """EnsureVisible(self, int n)"""
1385 return _controls_.ListBox_EnsureVisible(*args, **kwargs)
1386
1387 def AppendAndEnsureVisible(*args, **kwargs):
1388 """AppendAndEnsureVisible(self, String s)"""
1389 return _controls_.ListBox_AppendAndEnsureVisible(*args, **kwargs)
1390
1391 def IsSorted(*args, **kwargs):
1392 """IsSorted(self) -> bool"""
1393 return _controls_.ListBox_IsSorted(*args, **kwargs)
1394
1395 def SetItemForegroundColour(*args, **kwargs):
1396 """SetItemForegroundColour(self, int item, Colour c)"""
1397 return _controls_.ListBox_SetItemForegroundColour(*args, **kwargs)
1398
1399 def SetItemBackgroundColour(*args, **kwargs):
1400 """SetItemBackgroundColour(self, int item, Colour c)"""
1401 return _controls_.ListBox_SetItemBackgroundColour(*args, **kwargs)
1402
1403 def SetItemFont(*args, **kwargs):
1404 """SetItemFont(self, int item, Font f)"""
1405 return _controls_.ListBox_SetItemFont(*args, **kwargs)
1406
1407 def GetClassDefaultAttributes(*args, **kwargs):
1408 """
1409 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1410
1411 Get the default attributes for this class. This is useful if you want
1412 to use the same font or colour in your own control as in a standard
1413 control -- which is a much better idea than hard coding specific
1414 colours or fonts which might look completely out of place on the
1415 user's system, especially if it uses themes.
1416
1417 The variant parameter is only relevant under Mac currently and is
1418 ignore under other platforms. Under Mac, it will change the size of
1419 the returned font. See `wx.Window.SetWindowVariant` for more about
1420 this.
1421 """
1422 return _controls_.ListBox_GetClassDefaultAttributes(*args, **kwargs)
1423
1424 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
1425
1426 class ListBoxPtr(ListBox):
1427 def __init__(self, this):
1428 self.this = this
1429 if not hasattr(self,"thisown"): self.thisown = 0
1430 self.__class__ = ListBox
1431 _controls_.ListBox_swigregister(ListBoxPtr)
1432 ListBoxNameStr = cvar.ListBoxNameStr
1433
1434 def PreListBox(*args, **kwargs):
1435 """PreListBox() -> ListBox"""
1436 val = _controls_.new_PreListBox(*args, **kwargs)
1437 val.thisown = 1
1438 return val
1439
1440 def ListBox_GetClassDefaultAttributes(*args, **kwargs):
1441 """
1442 ListBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1443
1444 Get the default attributes for this class. This is useful if you want
1445 to use the same font or colour in your own control as in a standard
1446 control -- which is a much better idea than hard coding specific
1447 colours or fonts which might look completely out of place on the
1448 user's system, especially if it uses themes.
1449
1450 The variant parameter is only relevant under Mac currently and is
1451 ignore under other platforms. Under Mac, it will change the size of
1452 the returned font. See `wx.Window.SetWindowVariant` for more about
1453 this.
1454 """
1455 return _controls_.ListBox_GetClassDefaultAttributes(*args, **kwargs)
1456
1457 #---------------------------------------------------------------------------
1458
1459 class CheckListBox(ListBox):
1460 """Proxy of C++ CheckListBox class"""
1461 def __repr__(self):
1462 return "<%s.%s; proxy of C++ wxCheckListBox instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1463 def __init__(self, *args, **kwargs):
1464 """
1465 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1466 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1467 long style=0, Validator validator=DefaultValidator,
1468 String name=ListBoxNameStr) -> CheckListBox
1469 """
1470 newobj = _controls_.new_CheckListBox(*args, **kwargs)
1471 self.this = newobj.this
1472 self.thisown = 1
1473 del newobj.thisown
1474 self._setOORInfo(self)
1475
1476 def Create(*args, **kwargs):
1477 """
1478 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1479 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
1480 long style=0, Validator validator=DefaultValidator,
1481 String name=ListBoxNameStr) -> bool
1482 """
1483 return _controls_.CheckListBox_Create(*args, **kwargs)
1484
1485 def IsChecked(*args, **kwargs):
1486 """IsChecked(self, int index) -> bool"""
1487 return _controls_.CheckListBox_IsChecked(*args, **kwargs)
1488
1489 def Check(*args, **kwargs):
1490 """Check(self, int index, int check=True)"""
1491 return _controls_.CheckListBox_Check(*args, **kwargs)
1492
1493 def HitTest(*args, **kwargs):
1494 """
1495 HitTest(self, Point pt) -> int
1496
1497 Test where the given (in client coords) point lies
1498 """
1499 return _controls_.CheckListBox_HitTest(*args, **kwargs)
1500
1501 def HitTestXY(*args, **kwargs):
1502 """
1503 HitTestXY(self, int x, int y) -> int
1504
1505 Test where the given (in client coords) point lies
1506 """
1507 return _controls_.CheckListBox_HitTestXY(*args, **kwargs)
1508
1509
1510 class CheckListBoxPtr(CheckListBox):
1511 def __init__(self, this):
1512 self.this = this
1513 if not hasattr(self,"thisown"): self.thisown = 0
1514 self.__class__ = CheckListBox
1515 _controls_.CheckListBox_swigregister(CheckListBoxPtr)
1516
1517 def PreCheckListBox(*args, **kwargs):
1518 """PreCheckListBox() -> CheckListBox"""
1519 val = _controls_.new_PreCheckListBox(*args, **kwargs)
1520 val.thisown = 1
1521 return val
1522
1523 #---------------------------------------------------------------------------
1524
1525 TE_NO_VSCROLL = _controls_.TE_NO_VSCROLL
1526 TE_AUTO_SCROLL = _controls_.TE_AUTO_SCROLL
1527 TE_READONLY = _controls_.TE_READONLY
1528 TE_MULTILINE = _controls_.TE_MULTILINE
1529 TE_PROCESS_TAB = _controls_.TE_PROCESS_TAB
1530 TE_LEFT = _controls_.TE_LEFT
1531 TE_CENTER = _controls_.TE_CENTER
1532 TE_RIGHT = _controls_.TE_RIGHT
1533 TE_CENTRE = _controls_.TE_CENTRE
1534 TE_RICH = _controls_.TE_RICH
1535 TE_PROCESS_ENTER = _controls_.TE_PROCESS_ENTER
1536 TE_PASSWORD = _controls_.TE_PASSWORD
1537 TE_AUTO_URL = _controls_.TE_AUTO_URL
1538 TE_NOHIDESEL = _controls_.TE_NOHIDESEL
1539 TE_DONTWRAP = _controls_.TE_DONTWRAP
1540 TE_LINEWRAP = _controls_.TE_LINEWRAP
1541 TE_WORDWRAP = _controls_.TE_WORDWRAP
1542 TE_RICH2 = _controls_.TE_RICH2
1543 TE_CAPITALIZE = _controls_.TE_CAPITALIZE
1544 TEXT_ALIGNMENT_DEFAULT = _controls_.TEXT_ALIGNMENT_DEFAULT
1545 TEXT_ALIGNMENT_LEFT = _controls_.TEXT_ALIGNMENT_LEFT
1546 TEXT_ALIGNMENT_CENTRE = _controls_.TEXT_ALIGNMENT_CENTRE
1547 TEXT_ALIGNMENT_CENTER = _controls_.TEXT_ALIGNMENT_CENTER
1548 TEXT_ALIGNMENT_RIGHT = _controls_.TEXT_ALIGNMENT_RIGHT
1549 TEXT_ALIGNMENT_JUSTIFIED = _controls_.TEXT_ALIGNMENT_JUSTIFIED
1550 TEXT_ATTR_TEXT_COLOUR = _controls_.TEXT_ATTR_TEXT_COLOUR
1551 TEXT_ATTR_BACKGROUND_COLOUR = _controls_.TEXT_ATTR_BACKGROUND_COLOUR
1552 TEXT_ATTR_FONT_FACE = _controls_.TEXT_ATTR_FONT_FACE
1553 TEXT_ATTR_FONT_SIZE = _controls_.TEXT_ATTR_FONT_SIZE
1554 TEXT_ATTR_FONT_WEIGHT = _controls_.TEXT_ATTR_FONT_WEIGHT
1555 TEXT_ATTR_FONT_ITALIC = _controls_.TEXT_ATTR_FONT_ITALIC
1556 TEXT_ATTR_FONT_UNDERLINE = _controls_.TEXT_ATTR_FONT_UNDERLINE
1557 TEXT_ATTR_FONT = _controls_.TEXT_ATTR_FONT
1558 TEXT_ATTR_ALIGNMENT = _controls_.TEXT_ATTR_ALIGNMENT
1559 TEXT_ATTR_LEFT_INDENT = _controls_.TEXT_ATTR_LEFT_INDENT
1560 TEXT_ATTR_RIGHT_INDENT = _controls_.TEXT_ATTR_RIGHT_INDENT
1561 TEXT_ATTR_TABS = _controls_.TEXT_ATTR_TABS
1562 TE_HT_UNKNOWN = _controls_.TE_HT_UNKNOWN
1563 TE_HT_BEFORE = _controls_.TE_HT_BEFORE
1564 TE_HT_ON_TEXT = _controls_.TE_HT_ON_TEXT
1565 TE_HT_BELOW = _controls_.TE_HT_BELOW
1566 TE_HT_BEYOND = _controls_.TE_HT_BEYOND
1567 OutOfRangeTextCoord = _controls_.OutOfRangeTextCoord
1568 InvalidTextCoord = _controls_.InvalidTextCoord
1569 class TextAttr(object):
1570 """Proxy of C++ TextAttr class"""
1571 def __repr__(self):
1572 return "<%s.%s; proxy of C++ wxTextAttr instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1573 def __init__(self, *args, **kwargs):
1574 """
1575 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
1576 Font font=wxNullFont, int alignment=TEXT_ALIGNMENT_DEFAULT) -> TextAttr
1577 """
1578 newobj = _controls_.new_TextAttr(*args, **kwargs)
1579 self.this = newobj.this
1580 self.thisown = 1
1581 del newobj.thisown
1582 def __del__(self, destroy=_controls_.delete_TextAttr):
1583 """__del__(self)"""
1584 try:
1585 if self.thisown: destroy(self)
1586 except: pass
1587
1588 def Init(*args, **kwargs):
1589 """Init(self)"""
1590 return _controls_.TextAttr_Init(*args, **kwargs)
1591
1592 def SetTextColour(*args, **kwargs):
1593 """SetTextColour(self, Colour colText)"""
1594 return _controls_.TextAttr_SetTextColour(*args, **kwargs)
1595
1596 def SetBackgroundColour(*args, **kwargs):
1597 """SetBackgroundColour(self, Colour colBack)"""
1598 return _controls_.TextAttr_SetBackgroundColour(*args, **kwargs)
1599
1600 def SetFont(*args, **kwargs):
1601 """SetFont(self, Font font, long flags=TEXT_ATTR_FONT)"""
1602 return _controls_.TextAttr_SetFont(*args, **kwargs)
1603
1604 def SetAlignment(*args, **kwargs):
1605 """SetAlignment(self, int alignment)"""
1606 return _controls_.TextAttr_SetAlignment(*args, **kwargs)
1607
1608 def SetTabs(*args, **kwargs):
1609 """SetTabs(self, wxArrayInt tabs)"""
1610 return _controls_.TextAttr_SetTabs(*args, **kwargs)
1611
1612 def SetLeftIndent(*args, **kwargs):
1613 """SetLeftIndent(self, int indent, int subIndent=0)"""
1614 return _controls_.TextAttr_SetLeftIndent(*args, **kwargs)
1615
1616 def SetRightIndent(*args, **kwargs):
1617 """SetRightIndent(self, int indent)"""
1618 return _controls_.TextAttr_SetRightIndent(*args, **kwargs)
1619
1620 def SetFlags(*args, **kwargs):
1621 """SetFlags(self, long flags)"""
1622 return _controls_.TextAttr_SetFlags(*args, **kwargs)
1623
1624 def HasTextColour(*args, **kwargs):
1625 """HasTextColour(self) -> bool"""
1626 return _controls_.TextAttr_HasTextColour(*args, **kwargs)
1627
1628 def HasBackgroundColour(*args, **kwargs):
1629 """HasBackgroundColour(self) -> bool"""
1630 return _controls_.TextAttr_HasBackgroundColour(*args, **kwargs)
1631
1632 def HasFont(*args, **kwargs):
1633 """HasFont(self) -> bool"""
1634 return _controls_.TextAttr_HasFont(*args, **kwargs)
1635
1636 def HasAlignment(*args, **kwargs):
1637 """HasAlignment(self) -> bool"""
1638 return _controls_.TextAttr_HasAlignment(*args, **kwargs)
1639
1640 def HasTabs(*args, **kwargs):
1641 """HasTabs(self) -> bool"""
1642 return _controls_.TextAttr_HasTabs(*args, **kwargs)
1643
1644 def HasLeftIndent(*args, **kwargs):
1645 """HasLeftIndent(self) -> bool"""
1646 return _controls_.TextAttr_HasLeftIndent(*args, **kwargs)
1647
1648 def HasRightIndent(*args, **kwargs):
1649 """HasRightIndent(self) -> bool"""
1650 return _controls_.TextAttr_HasRightIndent(*args, **kwargs)
1651
1652 def HasFlag(*args, **kwargs):
1653 """HasFlag(self, long flag) -> bool"""
1654 return _controls_.TextAttr_HasFlag(*args, **kwargs)
1655
1656 def GetTextColour(*args, **kwargs):
1657 """GetTextColour(self) -> Colour"""
1658 return _controls_.TextAttr_GetTextColour(*args, **kwargs)
1659
1660 def GetBackgroundColour(*args, **kwargs):
1661 """GetBackgroundColour(self) -> Colour"""
1662 return _controls_.TextAttr_GetBackgroundColour(*args, **kwargs)
1663
1664 def GetFont(*args, **kwargs):
1665 """GetFont(self) -> Font"""
1666 return _controls_.TextAttr_GetFont(*args, **kwargs)
1667
1668 def GetAlignment(*args, **kwargs):
1669 """GetAlignment(self) -> int"""
1670 return _controls_.TextAttr_GetAlignment(*args, **kwargs)
1671
1672 def GetTabs(*args, **kwargs):
1673 """GetTabs(self) -> wxArrayInt"""
1674 return _controls_.TextAttr_GetTabs(*args, **kwargs)
1675
1676 def GetLeftIndent(*args, **kwargs):
1677 """GetLeftIndent(self) -> long"""
1678 return _controls_.TextAttr_GetLeftIndent(*args, **kwargs)
1679
1680 def GetLeftSubIndent(*args, **kwargs):
1681 """GetLeftSubIndent(self) -> long"""
1682 return _controls_.TextAttr_GetLeftSubIndent(*args, **kwargs)
1683
1684 def GetRightIndent(*args, **kwargs):
1685 """GetRightIndent(self) -> long"""
1686 return _controls_.TextAttr_GetRightIndent(*args, **kwargs)
1687
1688 def GetFlags(*args, **kwargs):
1689 """GetFlags(self) -> long"""
1690 return _controls_.TextAttr_GetFlags(*args, **kwargs)
1691
1692 def IsDefault(*args, **kwargs):
1693 """IsDefault(self) -> bool"""
1694 return _controls_.TextAttr_IsDefault(*args, **kwargs)
1695
1696 def Combine(*args, **kwargs):
1697 """Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1698 return _controls_.TextAttr_Combine(*args, **kwargs)
1699
1700 Combine = staticmethod(Combine)
1701
1702 class TextAttrPtr(TextAttr):
1703 def __init__(self, this):
1704 self.this = this
1705 if not hasattr(self,"thisown"): self.thisown = 0
1706 self.__class__ = TextAttr
1707 _controls_.TextAttr_swigregister(TextAttrPtr)
1708 TextCtrlNameStr = cvar.TextCtrlNameStr
1709
1710 def TextAttr_Combine(*args, **kwargs):
1711 """TextAttr_Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -> TextAttr"""
1712 return _controls_.TextAttr_Combine(*args, **kwargs)
1713
1714 class TextCtrl(_core.Control):
1715 """Proxy of C++ TextCtrl class"""
1716 def __repr__(self):
1717 return "<%s.%s; proxy of C++ wxTextCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1718 def __init__(self, *args, **kwargs):
1719 """
1720 __init__(self, Window parent, int id=-1, String value=EmptyString,
1721 Point pos=DefaultPosition, Size size=DefaultSize,
1722 long style=0, Validator validator=DefaultValidator,
1723 String name=TextCtrlNameStr) -> TextCtrl
1724 """
1725 newobj = _controls_.new_TextCtrl(*args, **kwargs)
1726 self.this = newobj.this
1727 self.thisown = 1
1728 del newobj.thisown
1729 self._setOORInfo(self)
1730
1731 def Create(*args, **kwargs):
1732 """
1733 Create(self, Window parent, int id=-1, String value=EmptyString,
1734 Point pos=DefaultPosition, Size size=DefaultSize,
1735 long style=0, Validator validator=DefaultValidator,
1736 String name=TextCtrlNameStr) -> bool
1737 """
1738 return _controls_.TextCtrl_Create(*args, **kwargs)
1739
1740 def GetValue(*args, **kwargs):
1741 """GetValue(self) -> String"""
1742 return _controls_.TextCtrl_GetValue(*args, **kwargs)
1743
1744 def SetValue(*args, **kwargs):
1745 """SetValue(self, String value)"""
1746 return _controls_.TextCtrl_SetValue(*args, **kwargs)
1747
1748 def GetRange(*args, **kwargs):
1749 """GetRange(self, long from, long to) -> String"""
1750 return _controls_.TextCtrl_GetRange(*args, **kwargs)
1751
1752 def GetLineLength(*args, **kwargs):
1753 """GetLineLength(self, long lineNo) -> int"""
1754 return _controls_.TextCtrl_GetLineLength(*args, **kwargs)
1755
1756 def GetLineText(*args, **kwargs):
1757 """GetLineText(self, long lineNo) -> String"""
1758 return _controls_.TextCtrl_GetLineText(*args, **kwargs)
1759
1760 def GetNumberOfLines(*args, **kwargs):
1761 """GetNumberOfLines(self) -> int"""
1762 return _controls_.TextCtrl_GetNumberOfLines(*args, **kwargs)
1763
1764 def IsModified(*args, **kwargs):
1765 """IsModified(self) -> bool"""
1766 return _controls_.TextCtrl_IsModified(*args, **kwargs)
1767
1768 def IsEditable(*args, **kwargs):
1769 """IsEditable(self) -> bool"""
1770 return _controls_.TextCtrl_IsEditable(*args, **kwargs)
1771
1772 def IsSingleLine(*args, **kwargs):
1773 """IsSingleLine(self) -> bool"""
1774 return _controls_.TextCtrl_IsSingleLine(*args, **kwargs)
1775
1776 def IsMultiLine(*args, **kwargs):
1777 """IsMultiLine(self) -> bool"""
1778 return _controls_.TextCtrl_IsMultiLine(*args, **kwargs)
1779
1780 def GetSelection(*args, **kwargs):
1781 """
1782 GetSelection() -> (from, to)
1783
1784 If the return values from and to are the same, there is no selection.
1785 """
1786 return _controls_.TextCtrl_GetSelection(*args, **kwargs)
1787
1788 def GetStringSelection(*args, **kwargs):
1789 """GetStringSelection(self) -> String"""
1790 return _controls_.TextCtrl_GetStringSelection(*args, **kwargs)
1791
1792 def Clear(*args, **kwargs):
1793 """Clear(self)"""
1794 return _controls_.TextCtrl_Clear(*args, **kwargs)
1795
1796 def Replace(*args, **kwargs):
1797 """Replace(self, long from, long to, String value)"""
1798 return _controls_.TextCtrl_Replace(*args, **kwargs)
1799
1800 def Remove(*args, **kwargs):
1801 """Remove(self, long from, long to)"""
1802 return _controls_.TextCtrl_Remove(*args, **kwargs)
1803
1804 def LoadFile(*args, **kwargs):
1805 """LoadFile(self, String file) -> bool"""
1806 return _controls_.TextCtrl_LoadFile(*args, **kwargs)
1807
1808 def SaveFile(*args, **kwargs):
1809 """SaveFile(self, String file=EmptyString) -> bool"""
1810 return _controls_.TextCtrl_SaveFile(*args, **kwargs)
1811
1812 def MarkDirty(*args, **kwargs):
1813 """MarkDirty(self)"""
1814 return _controls_.TextCtrl_MarkDirty(*args, **kwargs)
1815
1816 def DiscardEdits(*args, **kwargs):
1817 """DiscardEdits(self)"""
1818 return _controls_.TextCtrl_DiscardEdits(*args, **kwargs)
1819
1820 def SetMaxLength(*args, **kwargs):
1821 """SetMaxLength(self, unsigned long len)"""
1822 return _controls_.TextCtrl_SetMaxLength(*args, **kwargs)
1823
1824 def WriteText(*args, **kwargs):
1825 """WriteText(self, String text)"""
1826 return _controls_.TextCtrl_WriteText(*args, **kwargs)
1827
1828 def AppendText(*args, **kwargs):
1829 """AppendText(self, String text)"""
1830 return _controls_.TextCtrl_AppendText(*args, **kwargs)
1831
1832 def EmulateKeyPress(*args, **kwargs):
1833 """EmulateKeyPress(self, KeyEvent event) -> bool"""
1834 return _controls_.TextCtrl_EmulateKeyPress(*args, **kwargs)
1835
1836 def SetStyle(*args, **kwargs):
1837 """SetStyle(self, long start, long end, TextAttr style) -> bool"""
1838 return _controls_.TextCtrl_SetStyle(*args, **kwargs)
1839
1840 def GetStyle(*args, **kwargs):
1841 """GetStyle(self, long position, TextAttr style) -> bool"""
1842 return _controls_.TextCtrl_GetStyle(*args, **kwargs)
1843
1844 def SetDefaultStyle(*args, **kwargs):
1845 """SetDefaultStyle(self, TextAttr style) -> bool"""
1846 return _controls_.TextCtrl_SetDefaultStyle(*args, **kwargs)
1847
1848 def GetDefaultStyle(*args, **kwargs):
1849 """GetDefaultStyle(self) -> TextAttr"""
1850 return _controls_.TextCtrl_GetDefaultStyle(*args, **kwargs)
1851
1852 def XYToPosition(*args, **kwargs):
1853 """XYToPosition(self, long x, long y) -> long"""
1854 return _controls_.TextCtrl_XYToPosition(*args, **kwargs)
1855
1856 def PositionToXY(*args, **kwargs):
1857 """PositionToXY(long pos) -> (x, y)"""
1858 return _controls_.TextCtrl_PositionToXY(*args, **kwargs)
1859
1860 def ShowPosition(*args, **kwargs):
1861 """ShowPosition(self, long pos)"""
1862 return _controls_.TextCtrl_ShowPosition(*args, **kwargs)
1863
1864 def HitTest(*args, **kwargs):
1865 """
1866 HitTest(Point pt) -> (result, col, row)
1867
1868 Find the row, col coresponding to the character at the point given in
1869 pixels. NB: pt is in device coords but is not adjusted for the client
1870 area origin nor scrolling.
1871 """
1872 return _controls_.TextCtrl_HitTest(*args, **kwargs)
1873
1874 def HitTestPos(*args, **kwargs):
1875 """
1876 HitTestPos(Point pt) -> (result, position)
1877
1878 Find the character position in the text coresponding to the point
1879 given in pixels. NB: pt is in device coords but is not adjusted for
1880 the client area origin nor scrolling.
1881 """
1882 return _controls_.TextCtrl_HitTestPos(*args, **kwargs)
1883
1884 def Copy(*args, **kwargs):
1885 """Copy(self)"""
1886 return _controls_.TextCtrl_Copy(*args, **kwargs)
1887
1888 def Cut(*args, **kwargs):
1889 """Cut(self)"""
1890 return _controls_.TextCtrl_Cut(*args, **kwargs)
1891
1892 def Paste(*args, **kwargs):
1893 """Paste(self)"""
1894 return _controls_.TextCtrl_Paste(*args, **kwargs)
1895
1896 def CanCopy(*args, **kwargs):
1897 """CanCopy(self) -> bool"""
1898 return _controls_.TextCtrl_CanCopy(*args, **kwargs)
1899
1900 def CanCut(*args, **kwargs):
1901 """CanCut(self) -> bool"""
1902 return _controls_.TextCtrl_CanCut(*args, **kwargs)
1903
1904 def CanPaste(*args, **kwargs):
1905 """CanPaste(self) -> bool"""
1906 return _controls_.TextCtrl_CanPaste(*args, **kwargs)
1907
1908 def Undo(*args, **kwargs):
1909 """Undo(self)"""
1910 return _controls_.TextCtrl_Undo(*args, **kwargs)
1911
1912 def Redo(*args, **kwargs):
1913 """Redo(self)"""
1914 return _controls_.TextCtrl_Redo(*args, **kwargs)
1915
1916 def CanUndo(*args, **kwargs):
1917 """CanUndo(self) -> bool"""
1918 return _controls_.TextCtrl_CanUndo(*args, **kwargs)
1919
1920 def CanRedo(*args, **kwargs):
1921 """CanRedo(self) -> bool"""
1922 return _controls_.TextCtrl_CanRedo(*args, **kwargs)
1923
1924 def SetInsertionPoint(*args, **kwargs):
1925 """SetInsertionPoint(self, long pos)"""
1926 return _controls_.TextCtrl_SetInsertionPoint(*args, **kwargs)
1927
1928 def SetInsertionPointEnd(*args, **kwargs):
1929 """SetInsertionPointEnd(self)"""
1930 return _controls_.TextCtrl_SetInsertionPointEnd(*args, **kwargs)
1931
1932 def GetInsertionPoint(*args, **kwargs):
1933 """GetInsertionPoint(self) -> long"""
1934 return _controls_.TextCtrl_GetInsertionPoint(*args, **kwargs)
1935
1936 def GetLastPosition(*args, **kwargs):
1937 """GetLastPosition(self) -> long"""
1938 return _controls_.TextCtrl_GetLastPosition(*args, **kwargs)
1939
1940 def SetSelection(*args, **kwargs):
1941 """SetSelection(self, long from, long to)"""
1942 return _controls_.TextCtrl_SetSelection(*args, **kwargs)
1943
1944 def SelectAll(*args, **kwargs):
1945 """SelectAll(self)"""
1946 return _controls_.TextCtrl_SelectAll(*args, **kwargs)
1947
1948 def SetEditable(*args, **kwargs):
1949 """SetEditable(self, bool editable)"""
1950 return _controls_.TextCtrl_SetEditable(*args, **kwargs)
1951
1952 def write(*args, **kwargs):
1953 """write(self, String text)"""
1954 return _controls_.TextCtrl_write(*args, **kwargs)
1955
1956 def GetString(*args, **kwargs):
1957 """GetString(self, long from, long to) -> String"""
1958 return _controls_.TextCtrl_GetString(*args, **kwargs)
1959
1960 def GetClassDefaultAttributes(*args, **kwargs):
1961 """
1962 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1963
1964 Get the default attributes for this class. This is useful if you want
1965 to use the same font or colour in your own control as in a standard
1966 control -- which is a much better idea than hard coding specific
1967 colours or fonts which might look completely out of place on the
1968 user's system, especially if it uses themes.
1969
1970 The variant parameter is only relevant under Mac currently and is
1971 ignore under other platforms. Under Mac, it will change the size of
1972 the returned font. See `wx.Window.SetWindowVariant` for more about
1973 this.
1974 """
1975 return _controls_.TextCtrl_GetClassDefaultAttributes(*args, **kwargs)
1976
1977 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
1978
1979 class TextCtrlPtr(TextCtrl):
1980 def __init__(self, this):
1981 self.this = this
1982 if not hasattr(self,"thisown"): self.thisown = 0
1983 self.__class__ = TextCtrl
1984 _controls_.TextCtrl_swigregister(TextCtrlPtr)
1985
1986 def PreTextCtrl(*args, **kwargs):
1987 """PreTextCtrl() -> TextCtrl"""
1988 val = _controls_.new_PreTextCtrl(*args, **kwargs)
1989 val.thisown = 1
1990 return val
1991
1992 def TextCtrl_GetClassDefaultAttributes(*args, **kwargs):
1993 """
1994 TextCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1995
1996 Get the default attributes for this class. This is useful if you want
1997 to use the same font or colour in your own control as in a standard
1998 control -- which is a much better idea than hard coding specific
1999 colours or fonts which might look completely out of place on the
2000 user's system, especially if it uses themes.
2001
2002 The variant parameter is only relevant under Mac currently and is
2003 ignore under other platforms. Under Mac, it will change the size of
2004 the returned font. See `wx.Window.SetWindowVariant` for more about
2005 this.
2006 """
2007 return _controls_.TextCtrl_GetClassDefaultAttributes(*args, **kwargs)
2008
2009 wxEVT_COMMAND_TEXT_UPDATED = _controls_.wxEVT_COMMAND_TEXT_UPDATED
2010 wxEVT_COMMAND_TEXT_ENTER = _controls_.wxEVT_COMMAND_TEXT_ENTER
2011 wxEVT_COMMAND_TEXT_URL = _controls_.wxEVT_COMMAND_TEXT_URL
2012 wxEVT_COMMAND_TEXT_MAXLEN = _controls_.wxEVT_COMMAND_TEXT_MAXLEN
2013 class TextUrlEvent(_core.CommandEvent):
2014 """Proxy of C++ TextUrlEvent class"""
2015 def __repr__(self):
2016 return "<%s.%s; proxy of C++ wxTextUrlEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2017 def __init__(self, *args, **kwargs):
2018 """__init__(self, int winid, MouseEvent evtMouse, long start, long end) -> TextUrlEvent"""
2019 newobj = _controls_.new_TextUrlEvent(*args, **kwargs)
2020 self.this = newobj.this
2021 self.thisown = 1
2022 del newobj.thisown
2023 def GetMouseEvent(*args, **kwargs):
2024 """GetMouseEvent(self) -> MouseEvent"""
2025 return _controls_.TextUrlEvent_GetMouseEvent(*args, **kwargs)
2026
2027 def GetURLStart(*args, **kwargs):
2028 """GetURLStart(self) -> long"""
2029 return _controls_.TextUrlEvent_GetURLStart(*args, **kwargs)
2030
2031 def GetURLEnd(*args, **kwargs):
2032 """GetURLEnd(self) -> long"""
2033 return _controls_.TextUrlEvent_GetURLEnd(*args, **kwargs)
2034
2035
2036 class TextUrlEventPtr(TextUrlEvent):
2037 def __init__(self, this):
2038 self.this = this
2039 if not hasattr(self,"thisown"): self.thisown = 0
2040 self.__class__ = TextUrlEvent
2041 _controls_.TextUrlEvent_swigregister(TextUrlEventPtr)
2042
2043 EVT_TEXT = wx.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED, 1)
2044 EVT_TEXT_ENTER = wx.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER, 1)
2045 EVT_TEXT_URL = wx.PyEventBinder( wxEVT_COMMAND_TEXT_URL, 1)
2046 EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN, 1)
2047
2048 #---------------------------------------------------------------------------
2049
2050 class ScrollBar(_core.Control):
2051 """Proxy of C++ ScrollBar class"""
2052 def __repr__(self):
2053 return "<%s.%s; proxy of C++ wxScrollBar instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2054 def __init__(self, *args, **kwargs):
2055 """
2056 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2057 Size size=DefaultSize, long style=SB_HORIZONTAL,
2058 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> ScrollBar
2059 """
2060 newobj = _controls_.new_ScrollBar(*args, **kwargs)
2061 self.this = newobj.this
2062 self.thisown = 1
2063 del newobj.thisown
2064 self._setOORInfo(self)
2065
2066 def Create(*args, **kwargs):
2067 """
2068 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2069 Size size=DefaultSize, long style=SB_HORIZONTAL,
2070 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -> bool
2071
2072 Do the 2nd phase and create the GUI control.
2073 """
2074 return _controls_.ScrollBar_Create(*args, **kwargs)
2075
2076 def GetThumbPosition(*args, **kwargs):
2077 """GetThumbPosition(self) -> int"""
2078 return _controls_.ScrollBar_GetThumbPosition(*args, **kwargs)
2079
2080 def GetThumbSize(*args, **kwargs):
2081 """GetThumbSize(self) -> int"""
2082 return _controls_.ScrollBar_GetThumbSize(*args, **kwargs)
2083
2084 GetThumbLength = GetThumbSize
2085 def GetPageSize(*args, **kwargs):
2086 """GetPageSize(self) -> int"""
2087 return _controls_.ScrollBar_GetPageSize(*args, **kwargs)
2088
2089 def GetRange(*args, **kwargs):
2090 """GetRange(self) -> int"""
2091 return _controls_.ScrollBar_GetRange(*args, **kwargs)
2092
2093 def IsVertical(*args, **kwargs):
2094 """IsVertical(self) -> bool"""
2095 return _controls_.ScrollBar_IsVertical(*args, **kwargs)
2096
2097 def SetThumbPosition(*args, **kwargs):
2098 """SetThumbPosition(self, int viewStart)"""
2099 return _controls_.ScrollBar_SetThumbPosition(*args, **kwargs)
2100
2101 def SetScrollbar(*args, **kwargs):
2102 """
2103 SetScrollbar(self, int position, int thumbSize, int range, int pageSize,
2104 bool refresh=True)
2105
2106 Sets the scrollbar properties of a built-in scrollbar.
2107 """
2108 return _controls_.ScrollBar_SetScrollbar(*args, **kwargs)
2109
2110 def GetClassDefaultAttributes(*args, **kwargs):
2111 """
2112 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2113
2114 Get the default attributes for this class. This is useful if you want
2115 to use the same font or colour in your own control as in a standard
2116 control -- which is a much better idea than hard coding specific
2117 colours or fonts which might look completely out of place on the
2118 user's system, especially if it uses themes.
2119
2120 The variant parameter is only relevant under Mac currently and is
2121 ignore under other platforms. Under Mac, it will change the size of
2122 the returned font. See `wx.Window.SetWindowVariant` for more about
2123 this.
2124 """
2125 return _controls_.ScrollBar_GetClassDefaultAttributes(*args, **kwargs)
2126
2127 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2128
2129 class ScrollBarPtr(ScrollBar):
2130 def __init__(self, this):
2131 self.this = this
2132 if not hasattr(self,"thisown"): self.thisown = 0
2133 self.__class__ = ScrollBar
2134 _controls_.ScrollBar_swigregister(ScrollBarPtr)
2135 ScrollBarNameStr = cvar.ScrollBarNameStr
2136
2137 def PreScrollBar(*args, **kwargs):
2138 """PreScrollBar() -> ScrollBar"""
2139 val = _controls_.new_PreScrollBar(*args, **kwargs)
2140 val.thisown = 1
2141 return val
2142
2143 def ScrollBar_GetClassDefaultAttributes(*args, **kwargs):
2144 """
2145 ScrollBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2146
2147 Get the default attributes for this class. This is useful if you want
2148 to use the same font or colour in your own control as in a standard
2149 control -- which is a much better idea than hard coding specific
2150 colours or fonts which might look completely out of place on the
2151 user's system, especially if it uses themes.
2152
2153 The variant parameter is only relevant under Mac currently and is
2154 ignore under other platforms. Under Mac, it will change the size of
2155 the returned font. See `wx.Window.SetWindowVariant` for more about
2156 this.
2157 """
2158 return _controls_.ScrollBar_GetClassDefaultAttributes(*args, **kwargs)
2159
2160 #---------------------------------------------------------------------------
2161
2162 SP_HORIZONTAL = _controls_.SP_HORIZONTAL
2163 SP_VERTICAL = _controls_.SP_VERTICAL
2164 SP_ARROW_KEYS = _controls_.SP_ARROW_KEYS
2165 SP_WRAP = _controls_.SP_WRAP
2166 class SpinButton(_core.Control):
2167 """Proxy of C++ SpinButton class"""
2168 def __repr__(self):
2169 return "<%s.%s; proxy of C++ wxSpinButton instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2170 def __init__(self, *args, **kwargs):
2171 """
2172 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
2173 Size size=DefaultSize, long style=SP_HORIZONTAL,
2174 String name=SPIN_BUTTON_NAME) -> SpinButton
2175 """
2176 newobj = _controls_.new_SpinButton(*args, **kwargs)
2177 self.this = newobj.this
2178 self.thisown = 1
2179 del newobj.thisown
2180 self._setOORInfo(self)
2181
2182 def Create(*args, **kwargs):
2183 """
2184 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
2185 Size size=DefaultSize, long style=SP_HORIZONTAL,
2186 String name=SPIN_BUTTON_NAME) -> bool
2187 """
2188 return _controls_.SpinButton_Create(*args, **kwargs)
2189
2190 def GetValue(*args, **kwargs):
2191 """GetValue(self) -> int"""
2192 return _controls_.SpinButton_GetValue(*args, **kwargs)
2193
2194 def GetMin(*args, **kwargs):
2195 """GetMin(self) -> int"""
2196 return _controls_.SpinButton_GetMin(*args, **kwargs)
2197
2198 def GetMax(*args, **kwargs):
2199 """GetMax(self) -> int"""
2200 return _controls_.SpinButton_GetMax(*args, **kwargs)
2201
2202 def SetValue(*args, **kwargs):
2203 """SetValue(self, int val)"""
2204 return _controls_.SpinButton_SetValue(*args, **kwargs)
2205
2206 def SetMin(*args, **kwargs):
2207 """SetMin(self, int minVal)"""
2208 return _controls_.SpinButton_SetMin(*args, **kwargs)
2209
2210 def SetMax(*args, **kwargs):
2211 """SetMax(self, int maxVal)"""
2212 return _controls_.SpinButton_SetMax(*args, **kwargs)
2213
2214 def SetRange(*args, **kwargs):
2215 """SetRange(self, int minVal, int maxVal)"""
2216 return _controls_.SpinButton_SetRange(*args, **kwargs)
2217
2218 def IsVertical(*args, **kwargs):
2219 """IsVertical(self) -> bool"""
2220 return _controls_.SpinButton_IsVertical(*args, **kwargs)
2221
2222 def GetClassDefaultAttributes(*args, **kwargs):
2223 """
2224 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2225
2226 Get the default attributes for this class. This is useful if you want
2227 to use the same font or colour in your own control as in a standard
2228 control -- which is a much better idea than hard coding specific
2229 colours or fonts which might look completely out of place on the
2230 user's system, especially if it uses themes.
2231
2232 The variant parameter is only relevant under Mac currently and is
2233 ignore under other platforms. Under Mac, it will change the size of
2234 the returned font. See `wx.Window.SetWindowVariant` for more about
2235 this.
2236 """
2237 return _controls_.SpinButton_GetClassDefaultAttributes(*args, **kwargs)
2238
2239 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2240
2241 class SpinButtonPtr(SpinButton):
2242 def __init__(self, this):
2243 self.this = this
2244 if not hasattr(self,"thisown"): self.thisown = 0
2245 self.__class__ = SpinButton
2246 _controls_.SpinButton_swigregister(SpinButtonPtr)
2247 SPIN_BUTTON_NAME = cvar.SPIN_BUTTON_NAME
2248 SpinCtrlNameStr = cvar.SpinCtrlNameStr
2249
2250 def PreSpinButton(*args, **kwargs):
2251 """PreSpinButton() -> SpinButton"""
2252 val = _controls_.new_PreSpinButton(*args, **kwargs)
2253 val.thisown = 1
2254 return val
2255
2256 def SpinButton_GetClassDefaultAttributes(*args, **kwargs):
2257 """
2258 SpinButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2259
2260 Get the default attributes for this class. This is useful if you want
2261 to use the same font or colour in your own control as in a standard
2262 control -- which is a much better idea than hard coding specific
2263 colours or fonts which might look completely out of place on the
2264 user's system, especially if it uses themes.
2265
2266 The variant parameter is only relevant under Mac currently and is
2267 ignore under other platforms. Under Mac, it will change the size of
2268 the returned font. See `wx.Window.SetWindowVariant` for more about
2269 this.
2270 """
2271 return _controls_.SpinButton_GetClassDefaultAttributes(*args, **kwargs)
2272
2273 class SpinCtrl(_core.Control):
2274 """Proxy of C++ SpinCtrl class"""
2275 def __repr__(self):
2276 return "<%s.%s; proxy of C++ wxSpinCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2277 def __init__(self, *args, **kwargs):
2278 """
2279 __init__(self, Window parent, int id=-1, String value=EmptyString,
2280 Point pos=DefaultPosition, Size size=DefaultSize,
2281 long style=SP_ARROW_KEYS, int min=0, int max=100,
2282 int initial=0, String name=SpinCtrlNameStr) -> SpinCtrl
2283 """
2284 newobj = _controls_.new_SpinCtrl(*args, **kwargs)
2285 self.this = newobj.this
2286 self.thisown = 1
2287 del newobj.thisown
2288 self._setOORInfo(self)
2289
2290 def Create(*args, **kwargs):
2291 """
2292 Create(self, Window parent, int id=-1, String value=EmptyString,
2293 Point pos=DefaultPosition, Size size=DefaultSize,
2294 long style=SP_ARROW_KEYS, int min=0, int max=100,
2295 int initial=0, String name=SpinCtrlNameStr) -> bool
2296 """
2297 return _controls_.SpinCtrl_Create(*args, **kwargs)
2298
2299 def GetValue(*args, **kwargs):
2300 """GetValue(self) -> int"""
2301 return _controls_.SpinCtrl_GetValue(*args, **kwargs)
2302
2303 def SetValue(*args, **kwargs):
2304 """SetValue(self, int value)"""
2305 return _controls_.SpinCtrl_SetValue(*args, **kwargs)
2306
2307 def SetValueString(*args, **kwargs):
2308 """SetValueString(self, String text)"""
2309 return _controls_.SpinCtrl_SetValueString(*args, **kwargs)
2310
2311 def SetRange(*args, **kwargs):
2312 """SetRange(self, int minVal, int maxVal)"""
2313 return _controls_.SpinCtrl_SetRange(*args, **kwargs)
2314
2315 def GetMin(*args, **kwargs):
2316 """GetMin(self) -> int"""
2317 return _controls_.SpinCtrl_GetMin(*args, **kwargs)
2318
2319 def GetMax(*args, **kwargs):
2320 """GetMax(self) -> int"""
2321 return _controls_.SpinCtrl_GetMax(*args, **kwargs)
2322
2323 def SetSelection(*args, **kwargs):
2324 """SetSelection(self, long from, long to)"""
2325 return _controls_.SpinCtrl_SetSelection(*args, **kwargs)
2326
2327 def GetClassDefaultAttributes(*args, **kwargs):
2328 """
2329 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2330
2331 Get the default attributes for this class. This is useful if you want
2332 to use the same font or colour in your own control as in a standard
2333 control -- which is a much better idea than hard coding specific
2334 colours or fonts which might look completely out of place on the
2335 user's system, especially if it uses themes.
2336
2337 The variant parameter is only relevant under Mac currently and is
2338 ignore under other platforms. Under Mac, it will change the size of
2339 the returned font. See `wx.Window.SetWindowVariant` for more about
2340 this.
2341 """
2342 return _controls_.SpinCtrl_GetClassDefaultAttributes(*args, **kwargs)
2343
2344 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2345
2346 class SpinCtrlPtr(SpinCtrl):
2347 def __init__(self, this):
2348 self.this = this
2349 if not hasattr(self,"thisown"): self.thisown = 0
2350 self.__class__ = SpinCtrl
2351 _controls_.SpinCtrl_swigregister(SpinCtrlPtr)
2352
2353 def PreSpinCtrl(*args, **kwargs):
2354 """PreSpinCtrl() -> SpinCtrl"""
2355 val = _controls_.new_PreSpinCtrl(*args, **kwargs)
2356 val.thisown = 1
2357 return val
2358
2359 def SpinCtrl_GetClassDefaultAttributes(*args, **kwargs):
2360 """
2361 SpinCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2362
2363 Get the default attributes for this class. This is useful if you want
2364 to use the same font or colour in your own control as in a standard
2365 control -- which is a much better idea than hard coding specific
2366 colours or fonts which might look completely out of place on the
2367 user's system, especially if it uses themes.
2368
2369 The variant parameter is only relevant under Mac currently and is
2370 ignore under other platforms. Under Mac, it will change the size of
2371 the returned font. See `wx.Window.SetWindowVariant` for more about
2372 this.
2373 """
2374 return _controls_.SpinCtrl_GetClassDefaultAttributes(*args, **kwargs)
2375
2376 class SpinEvent(_core.NotifyEvent):
2377 """Proxy of C++ SpinEvent class"""
2378 def __repr__(self):
2379 return "<%s.%s; proxy of C++ wxSpinEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2380 def __init__(self, *args, **kwargs):
2381 """__init__(self, wxEventType commandType=wxEVT_NULL, int winid=0) -> SpinEvent"""
2382 newobj = _controls_.new_SpinEvent(*args, **kwargs)
2383 self.this = newobj.this
2384 self.thisown = 1
2385 del newobj.thisown
2386 def GetPosition(*args, **kwargs):
2387 """GetPosition(self) -> int"""
2388 return _controls_.SpinEvent_GetPosition(*args, **kwargs)
2389
2390 def SetPosition(*args, **kwargs):
2391 """SetPosition(self, int pos)"""
2392 return _controls_.SpinEvent_SetPosition(*args, **kwargs)
2393
2394
2395 class SpinEventPtr(SpinEvent):
2396 def __init__(self, this):
2397 self.this = this
2398 if not hasattr(self,"thisown"): self.thisown = 0
2399 self.__class__ = SpinEvent
2400 _controls_.SpinEvent_swigregister(SpinEventPtr)
2401
2402 wxEVT_COMMAND_SPINCTRL_UPDATED = _controls_.wxEVT_COMMAND_SPINCTRL_UPDATED
2403 EVT_SPIN_UP = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEUP, 1)
2404 EVT_SPIN_DOWN = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEDOWN, 1)
2405 EVT_SPIN = wx.PyEventBinder( wx.wxEVT_SCROLL_THUMBTRACK, 1)
2406 EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED, 1)
2407
2408 #---------------------------------------------------------------------------
2409
2410 class RadioBox(_core.Control):
2411 """Proxy of C++ RadioBox class"""
2412 def __repr__(self):
2413 return "<%s.%s; proxy of C++ wxRadioBox instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2414 def __init__(self, *args, **kwargs):
2415 """
2416 __init__(self, Window parent, int id=-1, String label=EmptyString,
2417 Point pos=DefaultPosition, Size size=DefaultSize,
2418 wxArrayString choices=wxPyEmptyStringArray,
2419 int majorDimension=0, long style=RA_HORIZONTAL,
2420 Validator validator=DefaultValidator,
2421 String name=RadioBoxNameStr) -> RadioBox
2422 """
2423 if kwargs.has_key('point'): kwargs['pos'] = kwargs['point'];del kwargs['point']
2424 newobj = _controls_.new_RadioBox(*args, **kwargs)
2425 self.this = newobj.this
2426 self.thisown = 1
2427 del newobj.thisown
2428 self._setOORInfo(self)
2429
2430 def Create(*args, **kwargs):
2431 """
2432 Create(self, Window parent, int id=-1, String label=EmptyString,
2433 Point pos=DefaultPosition, Size size=DefaultSize,
2434 wxArrayString choices=wxPyEmptyStringArray,
2435 int majorDimension=0, long style=RA_HORIZONTAL,
2436 Validator validator=DefaultValidator,
2437 String name=RadioBoxNameStr) -> bool
2438 """
2439 return _controls_.RadioBox_Create(*args, **kwargs)
2440
2441 def SetSelection(*args, **kwargs):
2442 """SetSelection(self, int n)"""
2443 return _controls_.RadioBox_SetSelection(*args, **kwargs)
2444
2445 def GetSelection(*args, **kwargs):
2446 """GetSelection(self) -> int"""
2447 return _controls_.RadioBox_GetSelection(*args, **kwargs)
2448
2449 def GetStringSelection(*args, **kwargs):
2450 """GetStringSelection(self) -> String"""
2451 return _controls_.RadioBox_GetStringSelection(*args, **kwargs)
2452
2453 def SetStringSelection(*args, **kwargs):
2454 """SetStringSelection(self, String s) -> bool"""
2455 return _controls_.RadioBox_SetStringSelection(*args, **kwargs)
2456
2457 def GetCount(*args, **kwargs):
2458 """GetCount(self) -> int"""
2459 return _controls_.RadioBox_GetCount(*args, **kwargs)
2460
2461 def FindString(*args, **kwargs):
2462 """FindString(self, String s) -> int"""
2463 return _controls_.RadioBox_FindString(*args, **kwargs)
2464
2465 def GetString(*args, **kwargs):
2466 """GetString(self, int n) -> String"""
2467 return _controls_.RadioBox_GetString(*args, **kwargs)
2468
2469 def SetString(*args, **kwargs):
2470 """SetString(self, int n, String label)"""
2471 return _controls_.RadioBox_SetString(*args, **kwargs)
2472
2473 GetItemLabel = GetString
2474 SetItemLabel = SetString
2475 def EnableItem(*args, **kwargs):
2476 """EnableItem(self, int n, bool enable=True)"""
2477 return _controls_.RadioBox_EnableItem(*args, **kwargs)
2478
2479 def ShowItem(*args, **kwargs):
2480 """ShowItem(self, int n, bool show=True)"""
2481 return _controls_.RadioBox_ShowItem(*args, **kwargs)
2482
2483 def GetColumnCount(*args, **kwargs):
2484 """GetColumnCount(self) -> int"""
2485 return _controls_.RadioBox_GetColumnCount(*args, **kwargs)
2486
2487 def GetRowCount(*args, **kwargs):
2488 """GetRowCount(self) -> int"""
2489 return _controls_.RadioBox_GetRowCount(*args, **kwargs)
2490
2491 def GetNextItem(*args, **kwargs):
2492 """GetNextItem(self, int item, int dir, long style) -> int"""
2493 return _controls_.RadioBox_GetNextItem(*args, **kwargs)
2494
2495 def GetClassDefaultAttributes(*args, **kwargs):
2496 """
2497 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2498
2499 Get the default attributes for this class. This is useful if you want
2500 to use the same font or colour in your own control as in a standard
2501 control -- which is a much better idea than hard coding specific
2502 colours or fonts which might look completely out of place on the
2503 user's system, especially if it uses themes.
2504
2505 The variant parameter is only relevant under Mac currently and is
2506 ignore under other platforms. Under Mac, it will change the size of
2507 the returned font. See `wx.Window.SetWindowVariant` for more about
2508 this.
2509 """
2510 return _controls_.RadioBox_GetClassDefaultAttributes(*args, **kwargs)
2511
2512 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2513
2514 class RadioBoxPtr(RadioBox):
2515 def __init__(self, this):
2516 self.this = this
2517 if not hasattr(self,"thisown"): self.thisown = 0
2518 self.__class__ = RadioBox
2519 _controls_.RadioBox_swigregister(RadioBoxPtr)
2520 RadioBoxNameStr = cvar.RadioBoxNameStr
2521 RadioButtonNameStr = cvar.RadioButtonNameStr
2522
2523 def PreRadioBox(*args, **kwargs):
2524 """PreRadioBox() -> RadioBox"""
2525 val = _controls_.new_PreRadioBox(*args, **kwargs)
2526 val.thisown = 1
2527 return val
2528
2529 def RadioBox_GetClassDefaultAttributes(*args, **kwargs):
2530 """
2531 RadioBox_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2532
2533 Get the default attributes for this class. This is useful if you want
2534 to use the same font or colour in your own control as in a standard
2535 control -- which is a much better idea than hard coding specific
2536 colours or fonts which might look completely out of place on the
2537 user's system, especially if it uses themes.
2538
2539 The variant parameter is only relevant under Mac currently and is
2540 ignore under other platforms. Under Mac, it will change the size of
2541 the returned font. See `wx.Window.SetWindowVariant` for more about
2542 this.
2543 """
2544 return _controls_.RadioBox_GetClassDefaultAttributes(*args, **kwargs)
2545
2546 #---------------------------------------------------------------------------
2547
2548 class RadioButton(_core.Control):
2549 """Proxy of C++ RadioButton class"""
2550 def __repr__(self):
2551 return "<%s.%s; proxy of C++ wxRadioButton instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2552 def __init__(self, *args, **kwargs):
2553 """
2554 __init__(self, Window parent, int id=-1, String label=EmptyString,
2555 Point pos=DefaultPosition, Size size=DefaultSize,
2556 long style=0, Validator validator=DefaultValidator,
2557 String name=RadioButtonNameStr) -> RadioButton
2558 """
2559 newobj = _controls_.new_RadioButton(*args, **kwargs)
2560 self.this = newobj.this
2561 self.thisown = 1
2562 del newobj.thisown
2563 self._setOORInfo(self)
2564
2565 def Create(*args, **kwargs):
2566 """
2567 Create(self, Window parent, int id=-1, String label=EmptyString,
2568 Point pos=DefaultPosition, Size size=DefaultSize,
2569 long style=0, Validator validator=DefaultValidator,
2570 String name=RadioButtonNameStr) -> bool
2571 """
2572 return _controls_.RadioButton_Create(*args, **kwargs)
2573
2574 def GetValue(*args, **kwargs):
2575 """GetValue(self) -> bool"""
2576 return _controls_.RadioButton_GetValue(*args, **kwargs)
2577
2578 def SetValue(*args, **kwargs):
2579 """SetValue(self, bool value)"""
2580 return _controls_.RadioButton_SetValue(*args, **kwargs)
2581
2582 def GetClassDefaultAttributes(*args, **kwargs):
2583 """
2584 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2585
2586 Get the default attributes for this class. This is useful if you want
2587 to use the same font or colour in your own control as in a standard
2588 control -- which is a much better idea than hard coding specific
2589 colours or fonts which might look completely out of place on the
2590 user's system, especially if it uses themes.
2591
2592 The variant parameter is only relevant under Mac currently and is
2593 ignore under other platforms. Under Mac, it will change the size of
2594 the returned font. See `wx.Window.SetWindowVariant` for more about
2595 this.
2596 """
2597 return _controls_.RadioButton_GetClassDefaultAttributes(*args, **kwargs)
2598
2599 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2600
2601 class RadioButtonPtr(RadioButton):
2602 def __init__(self, this):
2603 self.this = this
2604 if not hasattr(self,"thisown"): self.thisown = 0
2605 self.__class__ = RadioButton
2606 _controls_.RadioButton_swigregister(RadioButtonPtr)
2607
2608 def PreRadioButton(*args, **kwargs):
2609 """PreRadioButton() -> RadioButton"""
2610 val = _controls_.new_PreRadioButton(*args, **kwargs)
2611 val.thisown = 1
2612 return val
2613
2614 def RadioButton_GetClassDefaultAttributes(*args, **kwargs):
2615 """
2616 RadioButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2617
2618 Get the default attributes for this class. This is useful if you want
2619 to use the same font or colour in your own control as in a standard
2620 control -- which is a much better idea than hard coding specific
2621 colours or fonts which might look completely out of place on the
2622 user's system, especially if it uses themes.
2623
2624 The variant parameter is only relevant under Mac currently and is
2625 ignore under other platforms. Under Mac, it will change the size of
2626 the returned font. See `wx.Window.SetWindowVariant` for more about
2627 this.
2628 """
2629 return _controls_.RadioButton_GetClassDefaultAttributes(*args, **kwargs)
2630
2631 #---------------------------------------------------------------------------
2632
2633 SL_HORIZONTAL = _controls_.SL_HORIZONTAL
2634 SL_VERTICAL = _controls_.SL_VERTICAL
2635 SL_AUTOTICKS = _controls_.SL_AUTOTICKS
2636 SL_LABELS = _controls_.SL_LABELS
2637 SL_LEFT = _controls_.SL_LEFT
2638 SL_TOP = _controls_.SL_TOP
2639 SL_RIGHT = _controls_.SL_RIGHT
2640 SL_BOTTOM = _controls_.SL_BOTTOM
2641 SL_BOTH = _controls_.SL_BOTH
2642 SL_SELRANGE = _controls_.SL_SELRANGE
2643 SL_INVERSE = _controls_.SL_INVERSE
2644 class Slider(_core.Control):
2645 """Proxy of C++ Slider class"""
2646 def __repr__(self):
2647 return "<%s.%s; proxy of C++ wxSlider instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2648 def __init__(self, *args, **kwargs):
2649 """
2650 __init__(self, Window parent, int id=-1, int value=0, int minValue=0,
2651 int maxValue=100, Point pos=DefaultPosition,
2652 Size size=DefaultSize, long style=SL_HORIZONTAL,
2653 Validator validator=DefaultValidator,
2654 String name=SliderNameStr) -> Slider
2655 """
2656 if kwargs.has_key('point'): kwargs['pos'] = kwargs['point'];del kwargs['point']
2657 newobj = _controls_.new_Slider(*args, **kwargs)
2658 self.this = newobj.this
2659 self.thisown = 1
2660 del newobj.thisown
2661 self._setOORInfo(self)
2662
2663 def Create(*args, **kwargs):
2664 """
2665 Create(self, Window parent, int id=-1, int value=0, int minValue=0,
2666 int maxValue=100, Point pos=DefaultPosition,
2667 Size size=DefaultSize, long style=SL_HORIZONTAL,
2668 Validator validator=DefaultValidator,
2669 String name=SliderNameStr) -> bool
2670 """
2671 return _controls_.Slider_Create(*args, **kwargs)
2672
2673 def GetValue(*args, **kwargs):
2674 """GetValue(self) -> int"""
2675 return _controls_.Slider_GetValue(*args, **kwargs)
2676
2677 def SetValue(*args, **kwargs):
2678 """SetValue(self, int value)"""
2679 return _controls_.Slider_SetValue(*args, **kwargs)
2680
2681 def SetRange(*args, **kwargs):
2682 """SetRange(self, int minValue, int maxValue)"""
2683 return _controls_.Slider_SetRange(*args, **kwargs)
2684
2685 def GetMin(*args, **kwargs):
2686 """GetMin(self) -> int"""
2687 return _controls_.Slider_GetMin(*args, **kwargs)
2688
2689 def GetMax(*args, **kwargs):
2690 """GetMax(self) -> int"""
2691 return _controls_.Slider_GetMax(*args, **kwargs)
2692
2693 def SetMin(*args, **kwargs):
2694 """SetMin(self, int minValue)"""
2695 return _controls_.Slider_SetMin(*args, **kwargs)
2696
2697 def SetMax(*args, **kwargs):
2698 """SetMax(self, int maxValue)"""
2699 return _controls_.Slider_SetMax(*args, **kwargs)
2700
2701 def SetLineSize(*args, **kwargs):
2702 """SetLineSize(self, int lineSize)"""
2703 return _controls_.Slider_SetLineSize(*args, **kwargs)
2704
2705 def SetPageSize(*args, **kwargs):
2706 """SetPageSize(self, int pageSize)"""
2707 return _controls_.Slider_SetPageSize(*args, **kwargs)
2708
2709 def GetLineSize(*args, **kwargs):
2710 """GetLineSize(self) -> int"""
2711 return _controls_.Slider_GetLineSize(*args, **kwargs)
2712
2713 def GetPageSize(*args, **kwargs):
2714 """GetPageSize(self) -> int"""
2715 return _controls_.Slider_GetPageSize(*args, **kwargs)
2716
2717 def SetThumbLength(*args, **kwargs):
2718 """SetThumbLength(self, int lenPixels)"""
2719 return _controls_.Slider_SetThumbLength(*args, **kwargs)
2720
2721 def GetThumbLength(*args, **kwargs):
2722 """GetThumbLength(self) -> int"""
2723 return _controls_.Slider_GetThumbLength(*args, **kwargs)
2724
2725 def SetTickFreq(*args, **kwargs):
2726 """SetTickFreq(self, int n, int pos=1)"""
2727 return _controls_.Slider_SetTickFreq(*args, **kwargs)
2728
2729 def GetTickFreq(*args, **kwargs):
2730 """GetTickFreq(self) -> int"""
2731 return _controls_.Slider_GetTickFreq(*args, **kwargs)
2732
2733 def ClearTicks(*args, **kwargs):
2734 """ClearTicks(self)"""
2735 return _controls_.Slider_ClearTicks(*args, **kwargs)
2736
2737 def SetTick(*args, **kwargs):
2738 """SetTick(self, int tickPos)"""
2739 return _controls_.Slider_SetTick(*args, **kwargs)
2740
2741 def ClearSel(*args, **kwargs):
2742 """ClearSel(self)"""
2743 return _controls_.Slider_ClearSel(*args, **kwargs)
2744
2745 def GetSelEnd(*args, **kwargs):
2746 """GetSelEnd(self) -> int"""
2747 return _controls_.Slider_GetSelEnd(*args, **kwargs)
2748
2749 def GetSelStart(*args, **kwargs):
2750 """GetSelStart(self) -> int"""
2751 return _controls_.Slider_GetSelStart(*args, **kwargs)
2752
2753 def SetSelection(*args, **kwargs):
2754 """SetSelection(self, int min, int max)"""
2755 return _controls_.Slider_SetSelection(*args, **kwargs)
2756
2757 def GetClassDefaultAttributes(*args, **kwargs):
2758 """
2759 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2760
2761 Get the default attributes for this class. This is useful if you want
2762 to use the same font or colour in your own control as in a standard
2763 control -- which is a much better idea than hard coding specific
2764 colours or fonts which might look completely out of place on the
2765 user's system, especially if it uses themes.
2766
2767 The variant parameter is only relevant under Mac currently and is
2768 ignore under other platforms. Under Mac, it will change the size of
2769 the returned font. See `wx.Window.SetWindowVariant` for more about
2770 this.
2771 """
2772 return _controls_.Slider_GetClassDefaultAttributes(*args, **kwargs)
2773
2774 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2775
2776 class SliderPtr(Slider):
2777 def __init__(self, this):
2778 self.this = this
2779 if not hasattr(self,"thisown"): self.thisown = 0
2780 self.__class__ = Slider
2781 _controls_.Slider_swigregister(SliderPtr)
2782 SliderNameStr = cvar.SliderNameStr
2783
2784 def PreSlider(*args, **kwargs):
2785 """PreSlider() -> Slider"""
2786 val = _controls_.new_PreSlider(*args, **kwargs)
2787 val.thisown = 1
2788 return val
2789
2790 def Slider_GetClassDefaultAttributes(*args, **kwargs):
2791 """
2792 Slider_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2793
2794 Get the default attributes for this class. This is useful if you want
2795 to use the same font or colour in your own control as in a standard
2796 control -- which is a much better idea than hard coding specific
2797 colours or fonts which might look completely out of place on the
2798 user's system, especially if it uses themes.
2799
2800 The variant parameter is only relevant under Mac currently and is
2801 ignore under other platforms. Under Mac, it will change the size of
2802 the returned font. See `wx.Window.SetWindowVariant` for more about
2803 this.
2804 """
2805 return _controls_.Slider_GetClassDefaultAttributes(*args, **kwargs)
2806
2807 #---------------------------------------------------------------------------
2808
2809 wxEVT_COMMAND_TOGGLEBUTTON_CLICKED = _controls_.wxEVT_COMMAND_TOGGLEBUTTON_CLICKED
2810 EVT_TOGGLEBUTTON = wx.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, 1)
2811
2812 class ToggleButton(_core.Control):
2813 """Proxy of C++ ToggleButton class"""
2814 def __repr__(self):
2815 return "<%s.%s; proxy of C++ wxToggleButton instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2816 def __init__(self, *args, **kwargs):
2817 """
2818 __init__(self, Window parent, int id=-1, String label=EmptyString,
2819 Point pos=DefaultPosition, Size size=DefaultSize,
2820 long style=0, Validator validator=DefaultValidator,
2821 String name=ToggleButtonNameStr) -> ToggleButton
2822 """
2823 newobj = _controls_.new_ToggleButton(*args, **kwargs)
2824 self.this = newobj.this
2825 self.thisown = 1
2826 del newobj.thisown
2827 self._setOORInfo(self)
2828
2829 def Create(*args, **kwargs):
2830 """
2831 Create(self, Window parent, int id=-1, String label=EmptyString,
2832 Point pos=DefaultPosition, Size size=DefaultSize,
2833 long style=0, Validator validator=DefaultValidator,
2834 String name=ToggleButtonNameStr) -> bool
2835 """
2836 return _controls_.ToggleButton_Create(*args, **kwargs)
2837
2838 def SetValue(*args, **kwargs):
2839 """SetValue(self, bool value)"""
2840 return _controls_.ToggleButton_SetValue(*args, **kwargs)
2841
2842 def GetValue(*args, **kwargs):
2843 """GetValue(self) -> bool"""
2844 return _controls_.ToggleButton_GetValue(*args, **kwargs)
2845
2846 def SetLabel(*args, **kwargs):
2847 """
2848 SetLabel(self, String label)
2849
2850 Sets the item's text.
2851 """
2852 return _controls_.ToggleButton_SetLabel(*args, **kwargs)
2853
2854 def GetClassDefaultAttributes(*args, **kwargs):
2855 """
2856 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2857
2858 Get the default attributes for this class. This is useful if you want
2859 to use the same font or colour in your own control as in a standard
2860 control -- which is a much better idea than hard coding specific
2861 colours or fonts which might look completely out of place on the
2862 user's system, especially if it uses themes.
2863
2864 The variant parameter is only relevant under Mac currently and is
2865 ignore under other platforms. Under Mac, it will change the size of
2866 the returned font. See `wx.Window.SetWindowVariant` for more about
2867 this.
2868 """
2869 return _controls_.ToggleButton_GetClassDefaultAttributes(*args, **kwargs)
2870
2871 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
2872
2873 class ToggleButtonPtr(ToggleButton):
2874 def __init__(self, this):
2875 self.this = this
2876 if not hasattr(self,"thisown"): self.thisown = 0
2877 self.__class__ = ToggleButton
2878 _controls_.ToggleButton_swigregister(ToggleButtonPtr)
2879 ToggleButtonNameStr = cvar.ToggleButtonNameStr
2880
2881 def PreToggleButton(*args, **kwargs):
2882 """PreToggleButton() -> ToggleButton"""
2883 val = _controls_.new_PreToggleButton(*args, **kwargs)
2884 val.thisown = 1
2885 return val
2886
2887 def ToggleButton_GetClassDefaultAttributes(*args, **kwargs):
2888 """
2889 ToggleButton_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2890
2891 Get the default attributes for this class. This is useful if you want
2892 to use the same font or colour in your own control as in a standard
2893 control -- which is a much better idea than hard coding specific
2894 colours or fonts which might look completely out of place on the
2895 user's system, especially if it uses themes.
2896
2897 The variant parameter is only relevant under Mac currently and is
2898 ignore under other platforms. Under Mac, it will change the size of
2899 the returned font. See `wx.Window.SetWindowVariant` for more about
2900 this.
2901 """
2902 return _controls_.ToggleButton_GetClassDefaultAttributes(*args, **kwargs)
2903
2904 #---------------------------------------------------------------------------
2905
2906 class BookCtrlBase(_core.Control):
2907 """Proxy of C++ BookCtrlBase class"""
2908 def __init__(self): raise RuntimeError, "No constructor defined"
2909 def __repr__(self):
2910 return "<%s.%s; proxy of C++ wxBookCtrlBase instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2911 def GetPageCount(*args, **kwargs):
2912 """GetPageCount(self) -> size_t"""
2913 return _controls_.BookCtrlBase_GetPageCount(*args, **kwargs)
2914
2915 def GetPage(*args, **kwargs):
2916 """GetPage(self, size_t n) -> Window"""
2917 return _controls_.BookCtrlBase_GetPage(*args, **kwargs)
2918
2919 def GetCurrentPage(*args, **kwargs):
2920 """GetCurrentPage(self) -> Window"""
2921 return _controls_.BookCtrlBase_GetCurrentPage(*args, **kwargs)
2922
2923 def GetSelection(*args, **kwargs):
2924 """GetSelection(self) -> int"""
2925 return _controls_.BookCtrlBase_GetSelection(*args, **kwargs)
2926
2927 def SetPageText(*args, **kwargs):
2928 """SetPageText(self, size_t n, String strText) -> bool"""
2929 return _controls_.BookCtrlBase_SetPageText(*args, **kwargs)
2930
2931 def GetPageText(*args, **kwargs):
2932 """GetPageText(self, size_t n) -> String"""
2933 return _controls_.BookCtrlBase_GetPageText(*args, **kwargs)
2934
2935 def SetImageList(*args, **kwargs):
2936 """SetImageList(self, ImageList imageList)"""
2937 return _controls_.BookCtrlBase_SetImageList(*args, **kwargs)
2938
2939 def AssignImageList(*args, **kwargs):
2940 """AssignImageList(self, ImageList imageList)"""
2941 return _controls_.BookCtrlBase_AssignImageList(*args, **kwargs)
2942
2943 def GetImageList(*args, **kwargs):
2944 """GetImageList(self) -> ImageList"""
2945 return _controls_.BookCtrlBase_GetImageList(*args, **kwargs)
2946
2947 def GetPageImage(*args, **kwargs):
2948 """GetPageImage(self, size_t n) -> int"""
2949 return _controls_.BookCtrlBase_GetPageImage(*args, **kwargs)
2950
2951 def SetPageImage(*args, **kwargs):
2952 """SetPageImage(self, size_t n, int imageId) -> bool"""
2953 return _controls_.BookCtrlBase_SetPageImage(*args, **kwargs)
2954
2955 def SetPageSize(*args, **kwargs):
2956 """SetPageSize(self, Size size)"""
2957 return _controls_.BookCtrlBase_SetPageSize(*args, **kwargs)
2958
2959 def CalcSizeFromPage(*args, **kwargs):
2960 """CalcSizeFromPage(self, Size sizePage) -> Size"""
2961 return _controls_.BookCtrlBase_CalcSizeFromPage(*args, **kwargs)
2962
2963 def DeletePage(*args, **kwargs):
2964 """DeletePage(self, size_t n) -> bool"""
2965 return _controls_.BookCtrlBase_DeletePage(*args, **kwargs)
2966
2967 def RemovePage(*args, **kwargs):
2968 """RemovePage(self, size_t n) -> bool"""
2969 return _controls_.BookCtrlBase_RemovePage(*args, **kwargs)
2970
2971 def DeleteAllPages(*args, **kwargs):
2972 """DeleteAllPages(self) -> bool"""
2973 return _controls_.BookCtrlBase_DeleteAllPages(*args, **kwargs)
2974
2975 def AddPage(*args, **kwargs):
2976 """AddPage(self, Window page, String text, bool select=False, int imageId=-1) -> bool"""
2977 return _controls_.BookCtrlBase_AddPage(*args, **kwargs)
2978
2979 def InsertPage(*args, **kwargs):
2980 """
2981 InsertPage(self, size_t n, Window page, String text, bool select=False,
2982 int imageId=-1) -> bool
2983 """
2984 return _controls_.BookCtrlBase_InsertPage(*args, **kwargs)
2985
2986 def SetSelection(*args, **kwargs):
2987 """SetSelection(self, size_t n) -> int"""
2988 return _controls_.BookCtrlBase_SetSelection(*args, **kwargs)
2989
2990 def AdvanceSelection(*args, **kwargs):
2991 """AdvanceSelection(self, bool forward=True)"""
2992 return _controls_.BookCtrlBase_AdvanceSelection(*args, **kwargs)
2993
2994 def GetClassDefaultAttributes(*args, **kwargs):
2995 """
2996 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
2997
2998 Get the default attributes for this class. This is useful if you want
2999 to use the same font or colour in your own control as in a standard
3000 control -- which is a much better idea than hard coding specific
3001 colours or fonts which might look completely out of place on the
3002 user's system, especially if it uses themes.
3003
3004 The variant parameter is only relevant under Mac currently and is
3005 ignore under other platforms. Under Mac, it will change the size of
3006 the returned font. See `wx.Window.SetWindowVariant` for more about
3007 this.
3008 """
3009 return _controls_.BookCtrlBase_GetClassDefaultAttributes(*args, **kwargs)
3010
3011 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
3012
3013 class BookCtrlBasePtr(BookCtrlBase):
3014 def __init__(self, this):
3015 self.this = this
3016 if not hasattr(self,"thisown"): self.thisown = 0
3017 self.__class__ = BookCtrlBase
3018 _controls_.BookCtrlBase_swigregister(BookCtrlBasePtr)
3019 NotebookNameStr = cvar.NotebookNameStr
3020
3021 def BookCtrlBase_GetClassDefaultAttributes(*args, **kwargs):
3022 """
3023 BookCtrlBase_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3024
3025 Get the default attributes for this class. This is useful if you want
3026 to use the same font or colour in your own control as in a standard
3027 control -- which is a much better idea than hard coding specific
3028 colours or fonts which might look completely out of place on the
3029 user's system, especially if it uses themes.
3030
3031 The variant parameter is only relevant under Mac currently and is
3032 ignore under other platforms. Under Mac, it will change the size of
3033 the returned font. See `wx.Window.SetWindowVariant` for more about
3034 this.
3035 """
3036 return _controls_.BookCtrlBase_GetClassDefaultAttributes(*args, **kwargs)
3037
3038 class BookCtrlBaseEvent(_core.NotifyEvent):
3039 """Proxy of C++ BookCtrlBaseEvent class"""
3040 def __repr__(self):
3041 return "<%s.%s; proxy of C++ wxBookCtrlBaseEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3042 def __init__(self, *args, **kwargs):
3043 """
3044 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3045 int nOldSel=-1) -> BookCtrlBaseEvent
3046 """
3047 newobj = _controls_.new_BookCtrlBaseEvent(*args, **kwargs)
3048 self.this = newobj.this
3049 self.thisown = 1
3050 del newobj.thisown
3051 def GetSelection(*args, **kwargs):
3052 """GetSelection(self) -> int"""
3053 return _controls_.BookCtrlBaseEvent_GetSelection(*args, **kwargs)
3054
3055 def SetSelection(*args, **kwargs):
3056 """SetSelection(self, int nSel)"""
3057 return _controls_.BookCtrlBaseEvent_SetSelection(*args, **kwargs)
3058
3059 def GetOldSelection(*args, **kwargs):
3060 """GetOldSelection(self) -> int"""
3061 return _controls_.BookCtrlBaseEvent_GetOldSelection(*args, **kwargs)
3062
3063 def SetOldSelection(*args, **kwargs):
3064 """SetOldSelection(self, int nOldSel)"""
3065 return _controls_.BookCtrlBaseEvent_SetOldSelection(*args, **kwargs)
3066
3067
3068 class BookCtrlBaseEventPtr(BookCtrlBaseEvent):
3069 def __init__(self, this):
3070 self.this = this
3071 if not hasattr(self,"thisown"): self.thisown = 0
3072 self.__class__ = BookCtrlBaseEvent
3073 _controls_.BookCtrlBaseEvent_swigregister(BookCtrlBaseEventPtr)
3074
3075 #---------------------------------------------------------------------------
3076
3077 NB_FIXEDWIDTH = _controls_.NB_FIXEDWIDTH
3078 NB_TOP = _controls_.NB_TOP
3079 NB_LEFT = _controls_.NB_LEFT
3080 NB_RIGHT = _controls_.NB_RIGHT
3081 NB_BOTTOM = _controls_.NB_BOTTOM
3082 NB_MULTILINE = _controls_.NB_MULTILINE
3083 NB_NOPAGETHEME = _controls_.NB_NOPAGETHEME
3084 NB_HITTEST_NOWHERE = _controls_.NB_HITTEST_NOWHERE
3085 NB_HITTEST_ONICON = _controls_.NB_HITTEST_ONICON
3086 NB_HITTEST_ONLABEL = _controls_.NB_HITTEST_ONLABEL
3087 NB_HITTEST_ONITEM = _controls_.NB_HITTEST_ONITEM
3088 class Notebook(BookCtrlBase):
3089 """Proxy of C++ Notebook class"""
3090 def __repr__(self):
3091 return "<%s.%s; proxy of C++ wxNotebook instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3092 def __init__(self, *args, **kwargs):
3093 """
3094 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3095 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> Notebook
3096 """
3097 newobj = _controls_.new_Notebook(*args, **kwargs)
3098 self.this = newobj.this
3099 self.thisown = 1
3100 del newobj.thisown
3101 self._setOORInfo(self)
3102
3103 def Create(*args, **kwargs):
3104 """
3105 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3106 Size size=DefaultSize, long style=0, String name=NotebookNameStr) -> bool
3107 """
3108 return _controls_.Notebook_Create(*args, **kwargs)
3109
3110 def GetRowCount(*args, **kwargs):
3111 """GetRowCount(self) -> int"""
3112 return _controls_.Notebook_GetRowCount(*args, **kwargs)
3113
3114 def SetPadding(*args, **kwargs):
3115 """SetPadding(self, Size padding)"""
3116 return _controls_.Notebook_SetPadding(*args, **kwargs)
3117
3118 def SetTabSize(*args, **kwargs):
3119 """SetTabSize(self, Size sz)"""
3120 return _controls_.Notebook_SetTabSize(*args, **kwargs)
3121
3122 def HitTest(*args, **kwargs):
3123 """
3124 HitTest(Point pt) -> (tab, where)
3125
3126 Returns the tab which is hit, and flags indicating where using
3127 wx.NB_HITTEST flags.
3128 """
3129 return _controls_.Notebook_HitTest(*args, **kwargs)
3130
3131 def CalcSizeFromPage(*args, **kwargs):
3132 """CalcSizeFromPage(self, Size sizePage) -> Size"""
3133 return _controls_.Notebook_CalcSizeFromPage(*args, **kwargs)
3134
3135 def GetThemeBackgroundColour(*args, **kwargs):
3136 """GetThemeBackgroundColour(self) -> Colour"""
3137 return _controls_.Notebook_GetThemeBackgroundColour(*args, **kwargs)
3138
3139 def GetClassDefaultAttributes(*args, **kwargs):
3140 """
3141 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3142
3143 Get the default attributes for this class. This is useful if you want
3144 to use the same font or colour in your own control as in a standard
3145 control -- which is a much better idea than hard coding specific
3146 colours or fonts which might look completely out of place on the
3147 user's system, especially if it uses themes.
3148
3149 The variant parameter is only relevant under Mac currently and is
3150 ignore under other platforms. Under Mac, it will change the size of
3151 the returned font. See `wx.Window.SetWindowVariant` for more about
3152 this.
3153 """
3154 return _controls_.Notebook_GetClassDefaultAttributes(*args, **kwargs)
3155
3156 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
3157
3158 class NotebookPtr(Notebook):
3159 def __init__(self, this):
3160 self.this = this
3161 if not hasattr(self,"thisown"): self.thisown = 0
3162 self.__class__ = Notebook
3163 _controls_.Notebook_swigregister(NotebookPtr)
3164
3165 def PreNotebook(*args, **kwargs):
3166 """PreNotebook() -> Notebook"""
3167 val = _controls_.new_PreNotebook(*args, **kwargs)
3168 val.thisown = 1
3169 return val
3170
3171 def Notebook_GetClassDefaultAttributes(*args, **kwargs):
3172 """
3173 Notebook_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3174
3175 Get the default attributes for this class. This is useful if you want
3176 to use the same font or colour in your own control as in a standard
3177 control -- which is a much better idea than hard coding specific
3178 colours or fonts which might look completely out of place on the
3179 user's system, especially if it uses themes.
3180
3181 The variant parameter is only relevant under Mac currently and is
3182 ignore under other platforms. Under Mac, it will change the size of
3183 the returned font. See `wx.Window.SetWindowVariant` for more about
3184 this.
3185 """
3186 return _controls_.Notebook_GetClassDefaultAttributes(*args, **kwargs)
3187
3188 class NotebookEvent(BookCtrlBaseEvent):
3189 """Proxy of C++ NotebookEvent class"""
3190 def __repr__(self):
3191 return "<%s.%s; proxy of C++ wxNotebookEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3192 def __init__(self, *args, **kwargs):
3193 """
3194 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3195 int nOldSel=-1) -> NotebookEvent
3196 """
3197 newobj = _controls_.new_NotebookEvent(*args, **kwargs)
3198 self.this = newobj.this
3199 self.thisown = 1
3200 del newobj.thisown
3201
3202 class NotebookEventPtr(NotebookEvent):
3203 def __init__(self, this):
3204 self.this = this
3205 if not hasattr(self,"thisown"): self.thisown = 0
3206 self.__class__ = NotebookEvent
3207 _controls_.NotebookEvent_swigregister(NotebookEventPtr)
3208
3209 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED = _controls_.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
3210 wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING = _controls_.wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
3211 # wxNotebook events
3212 EVT_NOTEBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, 1 )
3213 EVT_NOTEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING, 1 )
3214
3215 #----------------------------------------------------------------------------
3216
3217 class NotebookPage(wx.Panel):
3218 """
3219 There is an old (and apparently unsolvable) bug when placing a
3220 window with a nonstandard background colour in a wx.Notebook on
3221 wxGTK, as the notbooks's background colour would always be used
3222 when the window is refreshed. The solution is to place a panel in
3223 the notbook and the coloured window on the panel, sized to cover
3224 the panel. This simple class does that for you, just put an
3225 instance of this in the notebook and make your regular window a
3226 child of this one and it will handle the resize for you.
3227 """
3228 def __init__(self, parent, id=-1,
3229 pos=wx.DefaultPosition, size=wx.DefaultSize,
3230 style=wx.TAB_TRAVERSAL, name="panel"):
3231 wx.Panel.__init__(self, parent, id, pos, size, style, name)
3232 self.child = None
3233 self.Bind(wx.EVT_SIZE, self.OnSize)
3234
3235 def OnSize(self, evt):
3236 if self.child is None:
3237 children = self.GetChildren()
3238 if len(children):
3239 self.child = children[0]
3240 if self.child:
3241 self.child.SetPosition((0,0))
3242 self.child.SetSize(self.GetSize())
3243
3244
3245 #---------------------------------------------------------------------------
3246
3247 LB_DEFAULT = _controls_.LB_DEFAULT
3248 LB_TOP = _controls_.LB_TOP
3249 LB_BOTTOM = _controls_.LB_BOTTOM
3250 LB_LEFT = _controls_.LB_LEFT
3251 LB_RIGHT = _controls_.LB_RIGHT
3252 LB_ALIGN_MASK = _controls_.LB_ALIGN_MASK
3253 class Listbook(BookCtrlBase):
3254 """Proxy of C++ Listbook class"""
3255 def __repr__(self):
3256 return "<%s.%s; proxy of C++ wxListbook instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3257 def __init__(self, *args, **kwargs):
3258 """
3259 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3260 Size size=DefaultSize, long style=0, String name=EmptyString) -> Listbook
3261 """
3262 newobj = _controls_.new_Listbook(*args, **kwargs)
3263 self.this = newobj.this
3264 self.thisown = 1
3265 del newobj.thisown
3266 self._setOORInfo(self)
3267
3268 def Create(*args, **kwargs):
3269 """
3270 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3271 Size size=DefaultSize, long style=0, String name=EmptyString) -> bool
3272 """
3273 return _controls_.Listbook_Create(*args, **kwargs)
3274
3275 def IsVertical(*args, **kwargs):
3276 """IsVertical(self) -> bool"""
3277 return _controls_.Listbook_IsVertical(*args, **kwargs)
3278
3279 def GetListView(*args, **kwargs):
3280 """GetListView(self) -> ListView"""
3281 return _controls_.Listbook_GetListView(*args, **kwargs)
3282
3283
3284 class ListbookPtr(Listbook):
3285 def __init__(self, this):
3286 self.this = this
3287 if not hasattr(self,"thisown"): self.thisown = 0
3288 self.__class__ = Listbook
3289 _controls_.Listbook_swigregister(ListbookPtr)
3290
3291 def PreListbook(*args, **kwargs):
3292 """PreListbook() -> Listbook"""
3293 val = _controls_.new_PreListbook(*args, **kwargs)
3294 val.thisown = 1
3295 return val
3296
3297 class ListbookEvent(BookCtrlBaseEvent):
3298 """Proxy of C++ ListbookEvent class"""
3299 def __repr__(self):
3300 return "<%s.%s; proxy of C++ wxListbookEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3301 def __init__(self, *args, **kwargs):
3302 """
3303 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3304 int nOldSel=-1) -> ListbookEvent
3305 """
3306 newobj = _controls_.new_ListbookEvent(*args, **kwargs)
3307 self.this = newobj.this
3308 self.thisown = 1
3309 del newobj.thisown
3310
3311 class ListbookEventPtr(ListbookEvent):
3312 def __init__(self, this):
3313 self.this = this
3314 if not hasattr(self,"thisown"): self.thisown = 0
3315 self.__class__ = ListbookEvent
3316 _controls_.ListbookEvent_swigregister(ListbookEventPtr)
3317
3318 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED = _controls_.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED
3319 wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING = _controls_.wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING
3320 EVT_LISTBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED, 1 )
3321 EVT_LISTBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING, 1 )
3322
3323 CHB_DEFAULT = _controls_.CHB_DEFAULT
3324 CHB_TOP = _controls_.CHB_TOP
3325 CHB_BOTTOM = _controls_.CHB_BOTTOM
3326 CHB_LEFT = _controls_.CHB_LEFT
3327 CHB_RIGHT = _controls_.CHB_RIGHT
3328 CHB_ALIGN_MASK = _controls_.CHB_ALIGN_MASK
3329 class Choicebook(BookCtrlBase):
3330 """Proxy of C++ Choicebook class"""
3331 def __repr__(self):
3332 return "<%s.%s; proxy of C++ wxChoicebook instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3333 def __init__(self, *args, **kwargs):
3334 """
3335 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3336 long style=0, String name=EmptyString) -> Choicebook
3337 """
3338 newobj = _controls_.new_Choicebook(*args, **kwargs)
3339 self.this = newobj.this
3340 self.thisown = 1
3341 del newobj.thisown
3342 self._setOORInfo(self)
3343
3344 def Create(*args, **kwargs):
3345 """
3346 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3347 long style=0, String name=EmptyString) -> bool
3348 """
3349 return _controls_.Choicebook_Create(*args, **kwargs)
3350
3351 def IsVertical(*args, **kwargs):
3352 """IsVertical(self) -> bool"""
3353 return _controls_.Choicebook_IsVertical(*args, **kwargs)
3354
3355 def DeleteAllPages(*args, **kwargs):
3356 """DeleteAllPages(self) -> bool"""
3357 return _controls_.Choicebook_DeleteAllPages(*args, **kwargs)
3358
3359
3360 class ChoicebookPtr(Choicebook):
3361 def __init__(self, this):
3362 self.this = this
3363 if not hasattr(self,"thisown"): self.thisown = 0
3364 self.__class__ = Choicebook
3365 _controls_.Choicebook_swigregister(ChoicebookPtr)
3366
3367 def PreChoicebook(*args, **kwargs):
3368 """PreChoicebook() -> Choicebook"""
3369 val = _controls_.new_PreChoicebook(*args, **kwargs)
3370 val.thisown = 1
3371 return val
3372
3373 class ChoicebookEvent(BookCtrlBaseEvent):
3374 """Proxy of C++ ChoicebookEvent class"""
3375 def __repr__(self):
3376 return "<%s.%s; proxy of C++ wxChoicebookEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3377 def __init__(self, *args, **kwargs):
3378 """
3379 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0, int nSel=-1,
3380 int nOldSel=-1) -> ChoicebookEvent
3381 """
3382 newobj = _controls_.new_ChoicebookEvent(*args, **kwargs)
3383 self.this = newobj.this
3384 self.thisown = 1
3385 del newobj.thisown
3386
3387 class ChoicebookEventPtr(ChoicebookEvent):
3388 def __init__(self, this):
3389 self.this = this
3390 if not hasattr(self,"thisown"): self.thisown = 0
3391 self.__class__ = ChoicebookEvent
3392 _controls_.ChoicebookEvent_swigregister(ChoicebookEventPtr)
3393
3394 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED = _controls_.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
3395 wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING = _controls_.wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
3396 EVT_CHOICEBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED, 1 )
3397 EVT_CHOICEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING, 1 )
3398
3399 #---------------------------------------------------------------------------
3400
3401 class BookCtrlSizer(_core.Sizer):
3402 """Proxy of C++ BookCtrlSizer class"""
3403 def __repr__(self):
3404 return "<%s.%s; proxy of C++ wxBookCtrlSizer instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3405 def __init__(self, *args, **kwargs):
3406 """__init__(self, BookCtrlBase nb) -> BookCtrlSizer"""
3407 newobj = _controls_.new_BookCtrlSizer(*args, **kwargs)
3408 self.this = newobj.this
3409 self.thisown = 1
3410 del newobj.thisown
3411 self._setOORInfo(self)
3412
3413 def RecalcSizes(*args, **kwargs):
3414 """
3415 RecalcSizes(self)
3416
3417 Using the sizes calculated by `CalcMin` reposition and resize all the
3418 items managed by this sizer. You should not need to call this directly as
3419 it is called by `Layout`.
3420 """
3421 return _controls_.BookCtrlSizer_RecalcSizes(*args, **kwargs)
3422
3423 def CalcMin(*args, **kwargs):
3424 """
3425 CalcMin(self) -> Size
3426
3427 This method is where the sizer will do the actual calculation of its
3428 children's minimal sizes. You should not need to call this directly as
3429 it is called by `Layout`.
3430 """
3431 return _controls_.BookCtrlSizer_CalcMin(*args, **kwargs)
3432
3433 def GetControl(*args, **kwargs):
3434 """GetControl(self) -> BookCtrlBase"""
3435 return _controls_.BookCtrlSizer_GetControl(*args, **kwargs)
3436
3437
3438 class BookCtrlSizerPtr(BookCtrlSizer):
3439 def __init__(self, this):
3440 self.this = this
3441 if not hasattr(self,"thisown"): self.thisown = 0
3442 self.__class__ = BookCtrlSizer
3443 _controls_.BookCtrlSizer_swigregister(BookCtrlSizerPtr)
3444
3445 class NotebookSizer(_core.Sizer):
3446 """Proxy of C++ NotebookSizer class"""
3447 def __repr__(self):
3448 return "<%s.%s; proxy of C++ wxNotebookSizer instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3449 def __init__(self, *args, **kwargs):
3450 """__init__(self, Notebook nb) -> NotebookSizer"""
3451 newobj = _controls_.new_NotebookSizer(*args, **kwargs)
3452 self.this = newobj.this
3453 self.thisown = 1
3454 del newobj.thisown
3455 self._setOORInfo(self)
3456
3457 def RecalcSizes(*args, **kwargs):
3458 """
3459 RecalcSizes(self)
3460
3461 Using the sizes calculated by `CalcMin` reposition and resize all the
3462 items managed by this sizer. You should not need to call this directly as
3463 it is called by `Layout`.
3464 """
3465 return _controls_.NotebookSizer_RecalcSizes(*args, **kwargs)
3466
3467 def CalcMin(*args, **kwargs):
3468 """
3469 CalcMin(self) -> Size
3470
3471 This method is where the sizer will do the actual calculation of its
3472 children's minimal sizes. You should not need to call this directly as
3473 it is called by `Layout`.
3474 """
3475 return _controls_.NotebookSizer_CalcMin(*args, **kwargs)
3476
3477 def GetNotebook(*args, **kwargs):
3478 """GetNotebook(self) -> Notebook"""
3479 return _controls_.NotebookSizer_GetNotebook(*args, **kwargs)
3480
3481
3482 class NotebookSizerPtr(NotebookSizer):
3483 def __init__(self, this):
3484 self.this = this
3485 if not hasattr(self,"thisown"): self.thisown = 0
3486 self.__class__ = NotebookSizer
3487 _controls_.NotebookSizer_swigregister(NotebookSizerPtr)
3488
3489 NotebookSizer.__init__ = wx._deprecated(NotebookSizer.__init__, "NotebookSizer is no longer needed.")
3490 BookCtrlSizer.__init__ = wx._deprecated(BookCtrlSizer.__init__, "BookCtrlSizer is no longer needed.")
3491 #---------------------------------------------------------------------------
3492
3493 TOOL_STYLE_BUTTON = _controls_.TOOL_STYLE_BUTTON
3494 TOOL_STYLE_SEPARATOR = _controls_.TOOL_STYLE_SEPARATOR
3495 TOOL_STYLE_CONTROL = _controls_.TOOL_STYLE_CONTROL
3496 TB_HORIZONTAL = _controls_.TB_HORIZONTAL
3497 TB_VERTICAL = _controls_.TB_VERTICAL
3498 TB_3DBUTTONS = _controls_.TB_3DBUTTONS
3499 TB_FLAT = _controls_.TB_FLAT
3500 TB_DOCKABLE = _controls_.TB_DOCKABLE
3501 TB_NOICONS = _controls_.TB_NOICONS
3502 TB_TEXT = _controls_.TB_TEXT
3503 TB_NODIVIDER = _controls_.TB_NODIVIDER
3504 TB_NOALIGN = _controls_.TB_NOALIGN
3505 TB_HORZ_LAYOUT = _controls_.TB_HORZ_LAYOUT
3506 TB_HORZ_TEXT = _controls_.TB_HORZ_TEXT
3507 class ToolBarToolBase(_core.Object):
3508 """Proxy of C++ ToolBarToolBase class"""
3509 def __init__(self): raise RuntimeError, "No constructor defined"
3510 def __repr__(self):
3511 return "<%s.%s; proxy of C++ wxToolBarToolBase instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3512 def GetId(*args, **kwargs):
3513 """GetId(self) -> int"""
3514 return _controls_.ToolBarToolBase_GetId(*args, **kwargs)
3515
3516 def GetControl(*args, **kwargs):
3517 """GetControl(self) -> Control"""
3518 return _controls_.ToolBarToolBase_GetControl(*args, **kwargs)
3519
3520 def GetToolBar(*args, **kwargs):
3521 """GetToolBar(self) -> ToolBarBase"""
3522 return _controls_.ToolBarToolBase_GetToolBar(*args, **kwargs)
3523
3524 def IsButton(*args, **kwargs):
3525 """IsButton(self) -> int"""
3526 return _controls_.ToolBarToolBase_IsButton(*args, **kwargs)
3527
3528 def IsControl(*args, **kwargs):
3529 """IsControl(self) -> int"""
3530 return _controls_.ToolBarToolBase_IsControl(*args, **kwargs)
3531
3532 def IsSeparator(*args, **kwargs):
3533 """IsSeparator(self) -> int"""
3534 return _controls_.ToolBarToolBase_IsSeparator(*args, **kwargs)
3535
3536 def GetStyle(*args, **kwargs):
3537 """GetStyle(self) -> int"""
3538 return _controls_.ToolBarToolBase_GetStyle(*args, **kwargs)
3539
3540 def GetKind(*args, **kwargs):
3541 """GetKind(self) -> int"""
3542 return _controls_.ToolBarToolBase_GetKind(*args, **kwargs)
3543
3544 def IsEnabled(*args, **kwargs):
3545 """IsEnabled(self) -> bool"""
3546 return _controls_.ToolBarToolBase_IsEnabled(*args, **kwargs)
3547
3548 def IsToggled(*args, **kwargs):
3549 """IsToggled(self) -> bool"""
3550 return _controls_.ToolBarToolBase_IsToggled(*args, **kwargs)
3551
3552 def CanBeToggled(*args, **kwargs):
3553 """CanBeToggled(self) -> bool"""
3554 return _controls_.ToolBarToolBase_CanBeToggled(*args, **kwargs)
3555
3556 def GetNormalBitmap(*args, **kwargs):
3557 """GetNormalBitmap(self) -> Bitmap"""
3558 return _controls_.ToolBarToolBase_GetNormalBitmap(*args, **kwargs)
3559
3560 def GetDisabledBitmap(*args, **kwargs):
3561 """GetDisabledBitmap(self) -> Bitmap"""
3562 return _controls_.ToolBarToolBase_GetDisabledBitmap(*args, **kwargs)
3563
3564 def GetBitmap(*args, **kwargs):
3565 """GetBitmap(self) -> Bitmap"""
3566 return _controls_.ToolBarToolBase_GetBitmap(*args, **kwargs)
3567
3568 def GetLabel(*args, **kwargs):
3569 """GetLabel(self) -> String"""
3570 return _controls_.ToolBarToolBase_GetLabel(*args, **kwargs)
3571
3572 def GetShortHelp(*args, **kwargs):
3573 """GetShortHelp(self) -> String"""
3574 return _controls_.ToolBarToolBase_GetShortHelp(*args, **kwargs)
3575
3576 def GetLongHelp(*args, **kwargs):
3577 """GetLongHelp(self) -> String"""
3578 return _controls_.ToolBarToolBase_GetLongHelp(*args, **kwargs)
3579
3580 def Enable(*args, **kwargs):
3581 """Enable(self, bool enable) -> bool"""
3582 return _controls_.ToolBarToolBase_Enable(*args, **kwargs)
3583
3584 def Toggle(*args, **kwargs):
3585 """Toggle(self)"""
3586 return _controls_.ToolBarToolBase_Toggle(*args, **kwargs)
3587
3588 def SetToggle(*args, **kwargs):
3589 """SetToggle(self, bool toggle) -> bool"""
3590 return _controls_.ToolBarToolBase_SetToggle(*args, **kwargs)
3591
3592 def SetShortHelp(*args, **kwargs):
3593 """SetShortHelp(self, String help) -> bool"""
3594 return _controls_.ToolBarToolBase_SetShortHelp(*args, **kwargs)
3595
3596 def SetLongHelp(*args, **kwargs):
3597 """SetLongHelp(self, String help) -> bool"""
3598 return _controls_.ToolBarToolBase_SetLongHelp(*args, **kwargs)
3599
3600 def SetNormalBitmap(*args, **kwargs):
3601 """SetNormalBitmap(self, Bitmap bmp)"""
3602 return _controls_.ToolBarToolBase_SetNormalBitmap(*args, **kwargs)
3603
3604 def SetDisabledBitmap(*args, **kwargs):
3605 """SetDisabledBitmap(self, Bitmap bmp)"""
3606 return _controls_.ToolBarToolBase_SetDisabledBitmap(*args, **kwargs)
3607
3608 def SetLabel(*args, **kwargs):
3609 """SetLabel(self, String label)"""
3610 return _controls_.ToolBarToolBase_SetLabel(*args, **kwargs)
3611
3612 def Detach(*args, **kwargs):
3613 """Detach(self)"""
3614 return _controls_.ToolBarToolBase_Detach(*args, **kwargs)
3615
3616 def Attach(*args, **kwargs):
3617 """Attach(self, ToolBarBase tbar)"""
3618 return _controls_.ToolBarToolBase_Attach(*args, **kwargs)
3619
3620 def GetClientData(*args, **kwargs):
3621 """GetClientData(self) -> PyObject"""
3622 return _controls_.ToolBarToolBase_GetClientData(*args, **kwargs)
3623
3624 def SetClientData(*args, **kwargs):
3625 """SetClientData(self, PyObject clientData)"""
3626 return _controls_.ToolBarToolBase_SetClientData(*args, **kwargs)
3627
3628 GetBitmap1 = GetNormalBitmap
3629 GetBitmap2 = GetDisabledBitmap
3630 SetBitmap1 = SetNormalBitmap
3631 SetBitmap2 = SetDisabledBitmap
3632
3633
3634 class ToolBarToolBasePtr(ToolBarToolBase):
3635 def __init__(self, this):
3636 self.this = this
3637 if not hasattr(self,"thisown"): self.thisown = 0
3638 self.__class__ = ToolBarToolBase
3639 _controls_.ToolBarToolBase_swigregister(ToolBarToolBasePtr)
3640
3641 class ToolBarBase(_core.Control):
3642 """Proxy of C++ ToolBarBase class"""
3643 def __init__(self): raise RuntimeError, "No constructor defined"
3644 def __repr__(self):
3645 return "<%s.%s; proxy of C++ wxToolBarBase instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3646 def DoAddTool(*args, **kwargs):
3647 """
3648 DoAddTool(self, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3649 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
3650 String longHelp=EmptyString,
3651 PyObject clientData=None) -> ToolBarToolBase
3652 """
3653 return _controls_.ToolBarBase_DoAddTool(*args, **kwargs)
3654
3655 def DoInsertTool(*args, **kwargs):
3656 """
3657 DoInsertTool(self, size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
3658 int kind=ITEM_NORMAL,
3659 String shortHelp=EmptyString, String longHelp=EmptyString,
3660 PyObject clientData=None) -> ToolBarToolBase
3661 """
3662 return _controls_.ToolBarBase_DoInsertTool(*args, **kwargs)
3663
3664 # These match the original Add methods for this class, kept for
3665 # backwards compatibility with versions < 2.3.3.
3666
3667
3668 def AddTool(self, id, bitmap,
3669 pushedBitmap = wx.NullBitmap,
3670 isToggle = 0,
3671 clientData = None,
3672 shortHelpString = '',
3673 longHelpString = '') :
3674 '''Old style method to add a tool to the toolbar.'''
3675 kind = wx.ITEM_NORMAL
3676 if isToggle: kind = wx.ITEM_CHECK
3677 return self.DoAddTool(id, '', bitmap, pushedBitmap, kind,
3678 shortHelpString, longHelpString, clientData)
3679
3680 def AddSimpleTool(self, id, bitmap,
3681 shortHelpString = '',
3682 longHelpString = '',
3683 isToggle = 0):
3684 '''Old style method to add a tool to the toolbar.'''
3685 kind = wx.ITEM_NORMAL
3686 if isToggle: kind = wx.ITEM_CHECK
3687 return self.DoAddTool(id, '', bitmap, wx.NullBitmap, kind,
3688 shortHelpString, longHelpString, None)
3689
3690 def InsertTool(self, pos, id, bitmap,
3691 pushedBitmap = wx.NullBitmap,
3692 isToggle = 0,
3693 clientData = None,
3694 shortHelpString = '',
3695 longHelpString = ''):
3696 '''Old style method to insert a tool in the toolbar.'''
3697 kind = wx.ITEM_NORMAL
3698 if isToggle: kind = wx.ITEM_CHECK
3699 return self.DoInsertTool(pos, id, '', bitmap, pushedBitmap, kind,
3700 shortHelpString, longHelpString, clientData)
3701
3702 def InsertSimpleTool(self, pos, id, bitmap,
3703 shortHelpString = '',
3704 longHelpString = '',
3705 isToggle = 0):
3706 '''Old style method to insert a tool in the toolbar.'''
3707 kind = wx.ITEM_NORMAL
3708 if isToggle: kind = wx.ITEM_CHECK
3709 return self.DoInsertTool(pos, id, '', bitmap, wx.NullBitmap, kind,
3710 shortHelpString, longHelpString, None)
3711
3712
3713 # The following are the new toolbar Add methods starting with
3714 # 2.3.3. They are renamed to have 'Label' in the name so as to be
3715 # able to keep backwards compatibility with using the above
3716 # methods. Eventually these should migrate to be the methods used
3717 # primarily and lose the 'Label' in the name...
3718
3719 def AddLabelTool(self, id, label, bitmap,
3720 bmpDisabled = wx.NullBitmap,
3721 kind = wx.ITEM_NORMAL,
3722 shortHelp = '', longHelp = '',
3723 clientData = None):
3724 '''
3725 The full AddTool() function.
3726
3727 If bmpDisabled is wx.NullBitmap, a shadowed version of the normal bitmap
3728 is created and used as the disabled image.
3729 '''
3730 return self.DoAddTool(id, label, bitmap, bmpDisabled, kind,
3731 shortHelp, longHelp, clientData)
3732
3733
3734 def InsertLabelTool(self, pos, id, label, bitmap,
3735 bmpDisabled = wx.NullBitmap,
3736 kind = wx.ITEM_NORMAL,
3737 shortHelp = '', longHelp = '',
3738 clientData = None):
3739 '''
3740 Insert the new tool at the given position, if pos == GetToolsCount(), it
3741 is equivalent to AddTool()
3742 '''
3743 return self.DoInsertTool(pos, id, label, bitmap, bmpDisabled, kind,
3744 shortHelp, longHelp, clientData)
3745
3746 def AddCheckLabelTool(self, id, label, bitmap,
3747 bmpDisabled = wx.NullBitmap,
3748 shortHelp = '', longHelp = '',
3749 clientData = None):
3750 '''Add a check tool, i.e. a tool which can be toggled'''
3751 return self.DoAddTool(id, label, bitmap, bmpDisabled, wx.ITEM_CHECK,
3752 shortHelp, longHelp, clientData)
3753
3754 def AddRadioLabelTool(self, id, label, bitmap,
3755 bmpDisabled = wx.NullBitmap,
3756 shortHelp = '', longHelp = '',
3757 clientData = None):
3758 '''
3759 Add a radio tool, i.e. a tool which can be toggled and releases any
3760 other toggled radio tools in the same group when it happens
3761 '''
3762 return self.DoAddTool(id, label, bitmap, bmpDisabled, wx.ITEM_RADIO,
3763 shortHelp, longHelp, clientData)
3764
3765
3766 # For consistency with the backwards compatible methods above, here are
3767 # some non-'Label' versions of the Check and Radio methods
3768
3769 def AddCheckTool(self, id, bitmap,
3770 bmpDisabled = wx.NullBitmap,
3771 shortHelp = '', longHelp = '',
3772 clientData = None):
3773 '''Add a check tool, i.e. a tool which can be toggled'''
3774 return self.DoAddTool(id, '', bitmap, bmpDisabled, wx.ITEM_CHECK,
3775 shortHelp, longHelp, clientData)
3776
3777 def AddRadioTool(self, id, bitmap,
3778 bmpDisabled = wx.NullBitmap,
3779 shortHelp = '', longHelp = '',
3780 clientData = None):
3781 '''
3782 Add a radio tool, i.e. a tool which can be toggled and releases any
3783 other toggled radio tools in the same group when it happens
3784 '''
3785 return self.DoAddTool(id, '', bitmap, bmpDisabled, wx.ITEM_RADIO,
3786 shortHelp, longHelp, clientData)
3787
3788 def AddToolItem(*args, **kwargs):
3789 """AddToolItem(self, ToolBarToolBase tool) -> ToolBarToolBase"""
3790 return _controls_.ToolBarBase_AddToolItem(*args, **kwargs)
3791
3792 def InsertToolItem(*args, **kwargs):
3793 """InsertToolItem(self, size_t pos, ToolBarToolBase tool) -> ToolBarToolBase"""
3794 return _controls_.ToolBarBase_InsertToolItem(*args, **kwargs)
3795
3796 def AddControl(*args, **kwargs):
3797 """AddControl(self, Control control) -> ToolBarToolBase"""
3798 return _controls_.ToolBarBase_AddControl(*args, **kwargs)
3799
3800 def InsertControl(*args, **kwargs):
3801 """InsertControl(self, size_t pos, Control control) -> ToolBarToolBase"""
3802 return _controls_.ToolBarBase_InsertControl(*args, **kwargs)
3803
3804 def FindControl(*args, **kwargs):
3805 """FindControl(self, int id) -> Control"""
3806 return _controls_.ToolBarBase_FindControl(*args, **kwargs)
3807
3808 def AddSeparator(*args, **kwargs):
3809 """AddSeparator(self) -> ToolBarToolBase"""
3810 return _controls_.ToolBarBase_AddSeparator(*args, **kwargs)
3811
3812 def InsertSeparator(*args, **kwargs):
3813 """InsertSeparator(self, size_t pos) -> ToolBarToolBase"""
3814 return _controls_.ToolBarBase_InsertSeparator(*args, **kwargs)
3815
3816 def RemoveTool(*args, **kwargs):
3817 """RemoveTool(self, int id) -> ToolBarToolBase"""
3818 return _controls_.ToolBarBase_RemoveTool(*args, **kwargs)
3819
3820 def DeleteToolByPos(*args, **kwargs):
3821 """DeleteToolByPos(self, size_t pos) -> bool"""
3822 return _controls_.ToolBarBase_DeleteToolByPos(*args, **kwargs)
3823
3824 def DeleteTool(*args, **kwargs):
3825 """DeleteTool(self, int id) -> bool"""
3826 return _controls_.ToolBarBase_DeleteTool(*args, **kwargs)
3827
3828 def ClearTools(*args, **kwargs):
3829 """ClearTools(self)"""
3830 return _controls_.ToolBarBase_ClearTools(*args, **kwargs)
3831
3832 def Realize(*args, **kwargs):
3833 """Realize(self) -> bool"""
3834 return _controls_.ToolBarBase_Realize(*args, **kwargs)
3835
3836 def EnableTool(*args, **kwargs):
3837 """EnableTool(self, int id, bool enable)"""
3838 return _controls_.ToolBarBase_EnableTool(*args, **kwargs)
3839
3840 def ToggleTool(*args, **kwargs):
3841 """ToggleTool(self, int id, bool toggle)"""
3842 return _controls_.ToolBarBase_ToggleTool(*args, **kwargs)
3843
3844 def SetToggle(*args, **kwargs):
3845 """SetToggle(self, int id, bool toggle)"""
3846 return _controls_.ToolBarBase_SetToggle(*args, **kwargs)
3847
3848 def GetToolClientData(*args, **kwargs):
3849 """GetToolClientData(self, int id) -> PyObject"""
3850 return _controls_.ToolBarBase_GetToolClientData(*args, **kwargs)
3851
3852 def SetToolClientData(*args, **kwargs):
3853 """SetToolClientData(self, int id, PyObject clientData)"""
3854 return _controls_.ToolBarBase_SetToolClientData(*args, **kwargs)
3855
3856 def GetToolPos(*args, **kwargs):
3857 """GetToolPos(self, int id) -> int"""
3858 return _controls_.ToolBarBase_GetToolPos(*args, **kwargs)
3859
3860 def GetToolState(*args, **kwargs):
3861 """GetToolState(self, int id) -> bool"""
3862 return _controls_.ToolBarBase_GetToolState(*args, **kwargs)
3863
3864 def GetToolEnabled(*args, **kwargs):
3865 """GetToolEnabled(self, int id) -> bool"""
3866 return _controls_.ToolBarBase_GetToolEnabled(*args, **kwargs)
3867
3868 def SetToolShortHelp(*args, **kwargs):
3869 """SetToolShortHelp(self, int id, String helpString)"""
3870 return _controls_.ToolBarBase_SetToolShortHelp(*args, **kwargs)
3871
3872 def GetToolShortHelp(*args, **kwargs):
3873 """GetToolShortHelp(self, int id) -> String"""
3874 return _controls_.ToolBarBase_GetToolShortHelp(*args, **kwargs)
3875
3876 def SetToolLongHelp(*args, **kwargs):
3877 """SetToolLongHelp(self, int id, String helpString)"""
3878 return _controls_.ToolBarBase_SetToolLongHelp(*args, **kwargs)
3879
3880 def GetToolLongHelp(*args, **kwargs):
3881 """GetToolLongHelp(self, int id) -> String"""
3882 return _controls_.ToolBarBase_GetToolLongHelp(*args, **kwargs)
3883
3884 def SetMarginsXY(*args, **kwargs):
3885 """SetMarginsXY(self, int x, int y)"""
3886 return _controls_.ToolBarBase_SetMarginsXY(*args, **kwargs)
3887
3888 def SetMargins(*args, **kwargs):
3889 """SetMargins(self, Size size)"""
3890 return _controls_.ToolBarBase_SetMargins(*args, **kwargs)
3891
3892 def SetToolPacking(*args, **kwargs):
3893 """SetToolPacking(self, int packing)"""
3894 return _controls_.ToolBarBase_SetToolPacking(*args, **kwargs)
3895
3896 def SetToolSeparation(*args, **kwargs):
3897 """SetToolSeparation(self, int separation)"""
3898 return _controls_.ToolBarBase_SetToolSeparation(*args, **kwargs)
3899
3900 def GetToolMargins(*args, **kwargs):
3901 """GetToolMargins(self) -> Size"""
3902 return _controls_.ToolBarBase_GetToolMargins(*args, **kwargs)
3903
3904 def GetMargins(*args, **kwargs):
3905 """GetMargins(self) -> Size"""
3906 return _controls_.ToolBarBase_GetMargins(*args, **kwargs)
3907
3908 def GetToolPacking(*args, **kwargs):
3909 """GetToolPacking(self) -> int"""
3910 return _controls_.ToolBarBase_GetToolPacking(*args, **kwargs)
3911
3912 def GetToolSeparation(*args, **kwargs):
3913 """GetToolSeparation(self) -> int"""
3914 return _controls_.ToolBarBase_GetToolSeparation(*args, **kwargs)
3915
3916 def SetRows(*args, **kwargs):
3917 """SetRows(self, int nRows)"""
3918 return _controls_.ToolBarBase_SetRows(*args, **kwargs)
3919
3920 def SetMaxRowsCols(*args, **kwargs):
3921 """SetMaxRowsCols(self, int rows, int cols)"""
3922 return _controls_.ToolBarBase_SetMaxRowsCols(*args, **kwargs)
3923
3924 def GetMaxRows(*args, **kwargs):
3925 """GetMaxRows(self) -> int"""
3926 return _controls_.ToolBarBase_GetMaxRows(*args, **kwargs)
3927
3928 def GetMaxCols(*args, **kwargs):
3929 """GetMaxCols(self) -> int"""
3930 return _controls_.ToolBarBase_GetMaxCols(*args, **kwargs)
3931
3932 def SetToolBitmapSize(*args, **kwargs):
3933 """SetToolBitmapSize(self, Size size)"""
3934 return _controls_.ToolBarBase_SetToolBitmapSize(*args, **kwargs)
3935
3936 def GetToolBitmapSize(*args, **kwargs):
3937 """GetToolBitmapSize(self) -> Size"""
3938 return _controls_.ToolBarBase_GetToolBitmapSize(*args, **kwargs)
3939
3940 def GetToolSize(*args, **kwargs):
3941 """GetToolSize(self) -> Size"""
3942 return _controls_.ToolBarBase_GetToolSize(*args, **kwargs)
3943
3944 def FindToolForPosition(*args, **kwargs):
3945 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3946 return _controls_.ToolBarBase_FindToolForPosition(*args, **kwargs)
3947
3948 def FindById(*args, **kwargs):
3949 """FindById(self, int toolid) -> ToolBarToolBase"""
3950 return _controls_.ToolBarBase_FindById(*args, **kwargs)
3951
3952 def IsVertical(*args, **kwargs):
3953 """IsVertical(self) -> bool"""
3954 return _controls_.ToolBarBase_IsVertical(*args, **kwargs)
3955
3956
3957 class ToolBarBasePtr(ToolBarBase):
3958 def __init__(self, this):
3959 self.this = this
3960 if not hasattr(self,"thisown"): self.thisown = 0
3961 self.__class__ = ToolBarBase
3962 _controls_.ToolBarBase_swigregister(ToolBarBasePtr)
3963
3964 class ToolBar(ToolBarBase):
3965 """Proxy of C++ ToolBar class"""
3966 def __repr__(self):
3967 return "<%s.%s; proxy of C++ wxToolBar instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3968 def __init__(self, *args, **kwargs):
3969 """
3970 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3971 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
3972 String name=wxPyToolBarNameStr) -> ToolBar
3973 """
3974 newobj = _controls_.new_ToolBar(*args, **kwargs)
3975 self.this = newobj.this
3976 self.thisown = 1
3977 del newobj.thisown
3978 self._setOORInfo(self)
3979
3980 def Create(*args, **kwargs):
3981 """
3982 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
3983 Size size=DefaultSize, long style=wxNO_BORDER|wxTB_HORIZONTAL,
3984 String name=wxPyToolBarNameStr) -> bool
3985 """
3986 return _controls_.ToolBar_Create(*args, **kwargs)
3987
3988 def FindToolForPosition(*args, **kwargs):
3989 """FindToolForPosition(self, int x, int y) -> ToolBarToolBase"""
3990 return _controls_.ToolBar_FindToolForPosition(*args, **kwargs)
3991
3992 def GetClassDefaultAttributes(*args, **kwargs):
3993 """
3994 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
3995
3996 Get the default attributes for this class. This is useful if you want
3997 to use the same font or colour in your own control as in a standard
3998 control -- which is a much better idea than hard coding specific
3999 colours or fonts which might look completely out of place on the
4000 user's system, especially if it uses themes.
4001
4002 The variant parameter is only relevant under Mac currently and is
4003 ignore under other platforms. Under Mac, it will change the size of
4004 the returned font. See `wx.Window.SetWindowVariant` for more about
4005 this.
4006 """
4007 return _controls_.ToolBar_GetClassDefaultAttributes(*args, **kwargs)
4008
4009 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
4010
4011 class ToolBarPtr(ToolBar):
4012 def __init__(self, this):
4013 self.this = this
4014 if not hasattr(self,"thisown"): self.thisown = 0
4015 self.__class__ = ToolBar
4016 _controls_.ToolBar_swigregister(ToolBarPtr)
4017
4018 def PreToolBar(*args, **kwargs):
4019 """PreToolBar() -> ToolBar"""
4020 val = _controls_.new_PreToolBar(*args, **kwargs)
4021 val.thisown = 1
4022 return val
4023
4024 def ToolBar_GetClassDefaultAttributes(*args, **kwargs):
4025 """
4026 ToolBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4027
4028 Get the default attributes for this class. This is useful if you want
4029 to use the same font or colour in your own control as in a standard
4030 control -- which is a much better idea than hard coding specific
4031 colours or fonts which might look completely out of place on the
4032 user's system, especially if it uses themes.
4033
4034 The variant parameter is only relevant under Mac currently and is
4035 ignore under other platforms. Under Mac, it will change the size of
4036 the returned font. See `wx.Window.SetWindowVariant` for more about
4037 this.
4038 """
4039 return _controls_.ToolBar_GetClassDefaultAttributes(*args, **kwargs)
4040
4041 #---------------------------------------------------------------------------
4042
4043 LC_VRULES = _controls_.LC_VRULES
4044 LC_HRULES = _controls_.LC_HRULES
4045 LC_ICON = _controls_.LC_ICON
4046 LC_SMALL_ICON = _controls_.LC_SMALL_ICON
4047 LC_LIST = _controls_.LC_LIST
4048 LC_REPORT = _controls_.LC_REPORT
4049 LC_ALIGN_TOP = _controls_.LC_ALIGN_TOP
4050 LC_ALIGN_LEFT = _controls_.LC_ALIGN_LEFT
4051 LC_AUTOARRANGE = _controls_.LC_AUTOARRANGE
4052 LC_VIRTUAL = _controls_.LC_VIRTUAL
4053 LC_EDIT_LABELS = _controls_.LC_EDIT_LABELS
4054 LC_NO_HEADER = _controls_.LC_NO_HEADER
4055 LC_NO_SORT_HEADER = _controls_.LC_NO_SORT_HEADER
4056 LC_SINGLE_SEL = _controls_.LC_SINGLE_SEL
4057 LC_SORT_ASCENDING = _controls_.LC_SORT_ASCENDING
4058 LC_SORT_DESCENDING = _controls_.LC_SORT_DESCENDING
4059 LC_MASK_TYPE = _controls_.LC_MASK_TYPE
4060 LC_MASK_ALIGN = _controls_.LC_MASK_ALIGN
4061 LC_MASK_SORT = _controls_.LC_MASK_SORT
4062 LIST_MASK_STATE = _controls_.LIST_MASK_STATE
4063 LIST_MASK_TEXT = _controls_.LIST_MASK_TEXT
4064 LIST_MASK_IMAGE = _controls_.LIST_MASK_IMAGE
4065 LIST_MASK_DATA = _controls_.LIST_MASK_DATA
4066 LIST_SET_ITEM = _controls_.LIST_SET_ITEM
4067 LIST_MASK_WIDTH = _controls_.LIST_MASK_WIDTH
4068 LIST_MASK_FORMAT = _controls_.LIST_MASK_FORMAT
4069 LIST_STATE_DONTCARE = _controls_.LIST_STATE_DONTCARE
4070 LIST_STATE_DROPHILITED = _controls_.LIST_STATE_DROPHILITED
4071 LIST_STATE_FOCUSED = _controls_.LIST_STATE_FOCUSED
4072 LIST_STATE_SELECTED = _controls_.LIST_STATE_SELECTED
4073 LIST_STATE_CUT = _controls_.LIST_STATE_CUT
4074 LIST_STATE_DISABLED = _controls_.LIST_STATE_DISABLED
4075 LIST_STATE_FILTERED = _controls_.LIST_STATE_FILTERED
4076 LIST_STATE_INUSE = _controls_.LIST_STATE_INUSE
4077 LIST_STATE_PICKED = _controls_.LIST_STATE_PICKED
4078 LIST_STATE_SOURCE = _controls_.LIST_STATE_SOURCE
4079 LIST_HITTEST_ABOVE = _controls_.LIST_HITTEST_ABOVE
4080 LIST_HITTEST_BELOW = _controls_.LIST_HITTEST_BELOW
4081 LIST_HITTEST_NOWHERE = _controls_.LIST_HITTEST_NOWHERE
4082 LIST_HITTEST_ONITEMICON = _controls_.LIST_HITTEST_ONITEMICON
4083 LIST_HITTEST_ONITEMLABEL = _controls_.LIST_HITTEST_ONITEMLABEL
4084 LIST_HITTEST_ONITEMRIGHT = _controls_.LIST_HITTEST_ONITEMRIGHT
4085 LIST_HITTEST_ONITEMSTATEICON = _controls_.LIST_HITTEST_ONITEMSTATEICON
4086 LIST_HITTEST_TOLEFT = _controls_.LIST_HITTEST_TOLEFT
4087 LIST_HITTEST_TORIGHT = _controls_.LIST_HITTEST_TORIGHT
4088 LIST_HITTEST_ONITEM = _controls_.LIST_HITTEST_ONITEM
4089 LIST_NEXT_ABOVE = _controls_.LIST_NEXT_ABOVE
4090 LIST_NEXT_ALL = _controls_.LIST_NEXT_ALL
4091 LIST_NEXT_BELOW = _controls_.LIST_NEXT_BELOW
4092 LIST_NEXT_LEFT = _controls_.LIST_NEXT_LEFT
4093 LIST_NEXT_RIGHT = _controls_.LIST_NEXT_RIGHT
4094 LIST_ALIGN_DEFAULT = _controls_.LIST_ALIGN_DEFAULT
4095 LIST_ALIGN_LEFT = _controls_.LIST_ALIGN_LEFT
4096 LIST_ALIGN_TOP = _controls_.LIST_ALIGN_TOP
4097 LIST_ALIGN_SNAP_TO_GRID = _controls_.LIST_ALIGN_SNAP_TO_GRID
4098 LIST_FORMAT_LEFT = _controls_.LIST_FORMAT_LEFT
4099 LIST_FORMAT_RIGHT = _controls_.LIST_FORMAT_RIGHT
4100 LIST_FORMAT_CENTRE = _controls_.LIST_FORMAT_CENTRE
4101 LIST_FORMAT_CENTER = _controls_.LIST_FORMAT_CENTER
4102 LIST_AUTOSIZE = _controls_.LIST_AUTOSIZE
4103 LIST_AUTOSIZE_USEHEADER = _controls_.LIST_AUTOSIZE_USEHEADER
4104 LIST_RECT_BOUNDS = _controls_.LIST_RECT_BOUNDS
4105 LIST_RECT_ICON = _controls_.LIST_RECT_ICON
4106 LIST_RECT_LABEL = _controls_.LIST_RECT_LABEL
4107 LIST_FIND_UP = _controls_.LIST_FIND_UP
4108 LIST_FIND_DOWN = _controls_.LIST_FIND_DOWN
4109 LIST_FIND_LEFT = _controls_.LIST_FIND_LEFT
4110 LIST_FIND_RIGHT = _controls_.LIST_FIND_RIGHT
4111 #---------------------------------------------------------------------------
4112
4113 class ListItemAttr(object):
4114 """Proxy of C++ ListItemAttr class"""
4115 def __repr__(self):
4116 return "<%s.%s; proxy of C++ wxListItemAttr instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4117 def __init__(self, *args, **kwargs):
4118 """
4119 __init__(self, Colour colText=wxNullColour, Colour colBack=wxNullColour,
4120 Font font=wxNullFont) -> ListItemAttr
4121 """
4122 newobj = _controls_.new_ListItemAttr(*args, **kwargs)
4123 self.this = newobj.this
4124 self.thisown = 1
4125 del newobj.thisown
4126 def SetTextColour(*args, **kwargs):
4127 """SetTextColour(self, Colour colText)"""
4128 return _controls_.ListItemAttr_SetTextColour(*args, **kwargs)
4129
4130 def SetBackgroundColour(*args, **kwargs):
4131 """SetBackgroundColour(self, Colour colBack)"""
4132 return _controls_.ListItemAttr_SetBackgroundColour(*args, **kwargs)
4133
4134 def SetFont(*args, **kwargs):
4135 """SetFont(self, Font font)"""
4136 return _controls_.ListItemAttr_SetFont(*args, **kwargs)
4137
4138 def HasTextColour(*args, **kwargs):
4139 """HasTextColour(self) -> bool"""
4140 return _controls_.ListItemAttr_HasTextColour(*args, **kwargs)
4141
4142 def HasBackgroundColour(*args, **kwargs):
4143 """HasBackgroundColour(self) -> bool"""
4144 return _controls_.ListItemAttr_HasBackgroundColour(*args, **kwargs)
4145
4146 def HasFont(*args, **kwargs):
4147 """HasFont(self) -> bool"""
4148 return _controls_.ListItemAttr_HasFont(*args, **kwargs)
4149
4150 def GetTextColour(*args, **kwargs):
4151 """GetTextColour(self) -> Colour"""
4152 return _controls_.ListItemAttr_GetTextColour(*args, **kwargs)
4153
4154 def GetBackgroundColour(*args, **kwargs):
4155 """GetBackgroundColour(self) -> Colour"""
4156 return _controls_.ListItemAttr_GetBackgroundColour(*args, **kwargs)
4157
4158 def GetFont(*args, **kwargs):
4159 """GetFont(self) -> Font"""
4160 return _controls_.ListItemAttr_GetFont(*args, **kwargs)
4161
4162 def Destroy(*args, **kwargs):
4163 """Destroy(self)"""
4164 return _controls_.ListItemAttr_Destroy(*args, **kwargs)
4165
4166
4167 class ListItemAttrPtr(ListItemAttr):
4168 def __init__(self, this):
4169 self.this = this
4170 if not hasattr(self,"thisown"): self.thisown = 0
4171 self.__class__ = ListItemAttr
4172 _controls_.ListItemAttr_swigregister(ListItemAttrPtr)
4173 ListCtrlNameStr = cvar.ListCtrlNameStr
4174
4175 #---------------------------------------------------------------------------
4176
4177 class ListItem(_core.Object):
4178 """Proxy of C++ ListItem class"""
4179 def __repr__(self):
4180 return "<%s.%s; proxy of C++ wxListItem instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4181 def __init__(self, *args, **kwargs):
4182 """__init__(self) -> ListItem"""
4183 newobj = _controls_.new_ListItem(*args, **kwargs)
4184 self.this = newobj.this
4185 self.thisown = 1
4186 del newobj.thisown
4187 def __del__(self, destroy=_controls_.delete_ListItem):
4188 """__del__(self)"""
4189 try:
4190 if self.thisown: destroy(self)
4191 except: pass
4192
4193 def Clear(*args, **kwargs):
4194 """Clear(self)"""
4195 return _controls_.ListItem_Clear(*args, **kwargs)
4196
4197 def ClearAttributes(*args, **kwargs):
4198 """ClearAttributes(self)"""
4199 return _controls_.ListItem_ClearAttributes(*args, **kwargs)
4200
4201 def SetMask(*args, **kwargs):
4202 """SetMask(self, long mask)"""
4203 return _controls_.ListItem_SetMask(*args, **kwargs)
4204
4205 def SetId(*args, **kwargs):
4206 """SetId(self, long id)"""
4207 return _controls_.ListItem_SetId(*args, **kwargs)
4208
4209 def SetColumn(*args, **kwargs):
4210 """SetColumn(self, int col)"""
4211 return _controls_.ListItem_SetColumn(*args, **kwargs)
4212
4213 def SetState(*args, **kwargs):
4214 """SetState(self, long state)"""
4215 return _controls_.ListItem_SetState(*args, **kwargs)
4216
4217 def SetStateMask(*args, **kwargs):
4218 """SetStateMask(self, long stateMask)"""
4219 return _controls_.ListItem_SetStateMask(*args, **kwargs)
4220
4221 def SetText(*args, **kwargs):
4222 """SetText(self, String text)"""
4223 return _controls_.ListItem_SetText(*args, **kwargs)
4224
4225 def SetImage(*args, **kwargs):
4226 """SetImage(self, int image)"""
4227 return _controls_.ListItem_SetImage(*args, **kwargs)
4228
4229 def SetData(*args, **kwargs):
4230 """SetData(self, long data)"""
4231 return _controls_.ListItem_SetData(*args, **kwargs)
4232
4233 def SetWidth(*args, **kwargs):
4234 """SetWidth(self, int width)"""
4235 return _controls_.ListItem_SetWidth(*args, **kwargs)
4236
4237 def SetAlign(*args, **kwargs):
4238 """SetAlign(self, int align)"""
4239 return _controls_.ListItem_SetAlign(*args, **kwargs)
4240
4241 def SetTextColour(*args, **kwargs):
4242 """SetTextColour(self, Colour colText)"""
4243 return _controls_.ListItem_SetTextColour(*args, **kwargs)
4244
4245 def SetBackgroundColour(*args, **kwargs):
4246 """SetBackgroundColour(self, Colour colBack)"""
4247 return _controls_.ListItem_SetBackgroundColour(*args, **kwargs)
4248
4249 def SetFont(*args, **kwargs):
4250 """SetFont(self, Font font)"""
4251 return _controls_.ListItem_SetFont(*args, **kwargs)
4252
4253 def GetMask(*args, **kwargs):
4254 """GetMask(self) -> long"""
4255 return _controls_.ListItem_GetMask(*args, **kwargs)
4256
4257 def GetId(*args, **kwargs):
4258 """GetId(self) -> long"""
4259 return _controls_.ListItem_GetId(*args, **kwargs)
4260
4261 def GetColumn(*args, **kwargs):
4262 """GetColumn(self) -> int"""
4263 return _controls_.ListItem_GetColumn(*args, **kwargs)
4264
4265 def GetState(*args, **kwargs):
4266 """GetState(self) -> long"""
4267 return _controls_.ListItem_GetState(*args, **kwargs)
4268
4269 def GetText(*args, **kwargs):
4270 """GetText(self) -> String"""
4271 return _controls_.ListItem_GetText(*args, **kwargs)
4272
4273 def GetImage(*args, **kwargs):
4274 """GetImage(self) -> int"""
4275 return _controls_.ListItem_GetImage(*args, **kwargs)
4276
4277 def GetData(*args, **kwargs):
4278 """GetData(self) -> long"""
4279 return _controls_.ListItem_GetData(*args, **kwargs)
4280
4281 def GetWidth(*args, **kwargs):
4282 """GetWidth(self) -> int"""
4283 return _controls_.ListItem_GetWidth(*args, **kwargs)
4284
4285 def GetAlign(*args, **kwargs):
4286 """GetAlign(self) -> int"""
4287 return _controls_.ListItem_GetAlign(*args, **kwargs)
4288
4289 def GetAttributes(*args, **kwargs):
4290 """GetAttributes(self) -> ListItemAttr"""
4291 return _controls_.ListItem_GetAttributes(*args, **kwargs)
4292
4293 def HasAttributes(*args, **kwargs):
4294 """HasAttributes(self) -> bool"""
4295 return _controls_.ListItem_HasAttributes(*args, **kwargs)
4296
4297 def GetTextColour(*args, **kwargs):
4298 """GetTextColour(self) -> Colour"""
4299 return _controls_.ListItem_GetTextColour(*args, **kwargs)
4300
4301 def GetBackgroundColour(*args, **kwargs):
4302 """GetBackgroundColour(self) -> Colour"""
4303 return _controls_.ListItem_GetBackgroundColour(*args, **kwargs)
4304
4305 def GetFont(*args, **kwargs):
4306 """GetFont(self) -> Font"""
4307 return _controls_.ListItem_GetFont(*args, **kwargs)
4308
4309 m_mask = property(_controls_.ListItem_m_mask_get, _controls_.ListItem_m_mask_set)
4310 m_itemId = property(_controls_.ListItem_m_itemId_get, _controls_.ListItem_m_itemId_set)
4311 m_col = property(_controls_.ListItem_m_col_get, _controls_.ListItem_m_col_set)
4312 m_state = property(_controls_.ListItem_m_state_get, _controls_.ListItem_m_state_set)
4313 m_stateMask = property(_controls_.ListItem_m_stateMask_get, _controls_.ListItem_m_stateMask_set)
4314 m_text = property(_controls_.ListItem_m_text_get, _controls_.ListItem_m_text_set)
4315 m_image = property(_controls_.ListItem_m_image_get, _controls_.ListItem_m_image_set)
4316 m_data = property(_controls_.ListItem_m_data_get, _controls_.ListItem_m_data_set)
4317 m_format = property(_controls_.ListItem_m_format_get, _controls_.ListItem_m_format_set)
4318 m_width = property(_controls_.ListItem_m_width_get, _controls_.ListItem_m_width_set)
4319
4320 class ListItemPtr(ListItem):
4321 def __init__(self, this):
4322 self.this = this
4323 if not hasattr(self,"thisown"): self.thisown = 0
4324 self.__class__ = ListItem
4325 _controls_.ListItem_swigregister(ListItemPtr)
4326
4327 #---------------------------------------------------------------------------
4328
4329 class ListEvent(_core.NotifyEvent):
4330 """Proxy of C++ ListEvent class"""
4331 def __repr__(self):
4332 return "<%s.%s; proxy of C++ wxListEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4333 def __init__(self, *args, **kwargs):
4334 """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> ListEvent"""
4335 newobj = _controls_.new_ListEvent(*args, **kwargs)
4336 self.this = newobj.this
4337 self.thisown = 1
4338 del newobj.thisown
4339 m_code = property(_controls_.ListEvent_m_code_get, _controls_.ListEvent_m_code_set)
4340 m_oldItemIndex = property(_controls_.ListEvent_m_oldItemIndex_get, _controls_.ListEvent_m_oldItemIndex_set)
4341 m_itemIndex = property(_controls_.ListEvent_m_itemIndex_get, _controls_.ListEvent_m_itemIndex_set)
4342 m_col = property(_controls_.ListEvent_m_col_get, _controls_.ListEvent_m_col_set)
4343 m_pointDrag = property(_controls_.ListEvent_m_pointDrag_get, _controls_.ListEvent_m_pointDrag_set)
4344 m_item = property(_controls_.ListEvent_m_item_get)
4345 def GetKeyCode(*args, **kwargs):
4346 """GetKeyCode(self) -> int"""
4347 return _controls_.ListEvent_GetKeyCode(*args, **kwargs)
4348
4349 GetCode = GetKeyCode
4350 def GetIndex(*args, **kwargs):
4351 """GetIndex(self) -> long"""
4352 return _controls_.ListEvent_GetIndex(*args, **kwargs)
4353
4354 def GetColumn(*args, **kwargs):
4355 """GetColumn(self) -> int"""
4356 return _controls_.ListEvent_GetColumn(*args, **kwargs)
4357
4358 def GetPoint(*args, **kwargs):
4359 """GetPoint(self) -> Point"""
4360 return _controls_.ListEvent_GetPoint(*args, **kwargs)
4361
4362 GetPosition = GetPoint
4363 def GetLabel(*args, **kwargs):
4364 """GetLabel(self) -> String"""
4365 return _controls_.ListEvent_GetLabel(*args, **kwargs)
4366
4367 def GetText(*args, **kwargs):
4368 """GetText(self) -> String"""
4369 return _controls_.ListEvent_GetText(*args, **kwargs)
4370
4371 def GetImage(*args, **kwargs):
4372 """GetImage(self) -> int"""
4373 return _controls_.ListEvent_GetImage(*args, **kwargs)
4374
4375 def GetData(*args, **kwargs):
4376 """GetData(self) -> long"""
4377 return _controls_.ListEvent_GetData(*args, **kwargs)
4378
4379 def GetMask(*args, **kwargs):
4380 """GetMask(self) -> long"""
4381 return _controls_.ListEvent_GetMask(*args, **kwargs)
4382
4383 def GetItem(*args, **kwargs):
4384 """GetItem(self) -> ListItem"""
4385 return _controls_.ListEvent_GetItem(*args, **kwargs)
4386
4387 def GetCacheFrom(*args, **kwargs):
4388 """GetCacheFrom(self) -> long"""
4389 return _controls_.ListEvent_GetCacheFrom(*args, **kwargs)
4390
4391 def GetCacheTo(*args, **kwargs):
4392 """GetCacheTo(self) -> long"""
4393 return _controls_.ListEvent_GetCacheTo(*args, **kwargs)
4394
4395 def IsEditCancelled(*args, **kwargs):
4396 """IsEditCancelled(self) -> bool"""
4397 return _controls_.ListEvent_IsEditCancelled(*args, **kwargs)
4398
4399 def SetEditCanceled(*args, **kwargs):
4400 """SetEditCanceled(self, bool editCancelled)"""
4401 return _controls_.ListEvent_SetEditCanceled(*args, **kwargs)
4402
4403
4404 class ListEventPtr(ListEvent):
4405 def __init__(self, this):
4406 self.this = this
4407 if not hasattr(self,"thisown"): self.thisown = 0
4408 self.__class__ = ListEvent
4409 _controls_.ListEvent_swigregister(ListEventPtr)
4410
4411 wxEVT_COMMAND_LIST_BEGIN_DRAG = _controls_.wxEVT_COMMAND_LIST_BEGIN_DRAG
4412 wxEVT_COMMAND_LIST_BEGIN_RDRAG = _controls_.wxEVT_COMMAND_LIST_BEGIN_RDRAG
4413 wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT = _controls_.wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
4414 wxEVT_COMMAND_LIST_END_LABEL_EDIT = _controls_.wxEVT_COMMAND_LIST_END_LABEL_EDIT
4415 wxEVT_COMMAND_LIST_DELETE_ITEM = _controls_.wxEVT_COMMAND_LIST_DELETE_ITEM
4416 wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS = _controls_.wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
4417 wxEVT_COMMAND_LIST_ITEM_SELECTED = _controls_.wxEVT_COMMAND_LIST_ITEM_SELECTED
4418 wxEVT_COMMAND_LIST_ITEM_DESELECTED = _controls_.wxEVT_COMMAND_LIST_ITEM_DESELECTED
4419 wxEVT_COMMAND_LIST_KEY_DOWN = _controls_.wxEVT_COMMAND_LIST_KEY_DOWN
4420 wxEVT_COMMAND_LIST_INSERT_ITEM = _controls_.wxEVT_COMMAND_LIST_INSERT_ITEM
4421 wxEVT_COMMAND_LIST_COL_CLICK = _controls_.wxEVT_COMMAND_LIST_COL_CLICK
4422 wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK = _controls_.wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
4423 wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK = _controls_.wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
4424 wxEVT_COMMAND_LIST_ITEM_ACTIVATED = _controls_.wxEVT_COMMAND_LIST_ITEM_ACTIVATED
4425 wxEVT_COMMAND_LIST_CACHE_HINT = _controls_.wxEVT_COMMAND_LIST_CACHE_HINT
4426 wxEVT_COMMAND_LIST_COL_RIGHT_CLICK = _controls_.wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
4427 wxEVT_COMMAND_LIST_COL_BEGIN_DRAG = _controls_.wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
4428 wxEVT_COMMAND_LIST_COL_DRAGGING = _controls_.wxEVT_COMMAND_LIST_COL_DRAGGING
4429 wxEVT_COMMAND_LIST_COL_END_DRAG = _controls_.wxEVT_COMMAND_LIST_COL_END_DRAG
4430 wxEVT_COMMAND_LIST_ITEM_FOCUSED = _controls_.wxEVT_COMMAND_LIST_ITEM_FOCUSED
4431 wxEVT_COMMAND_LIST_GET_INFO = _controls_.wxEVT_COMMAND_LIST_GET_INFO
4432 wxEVT_COMMAND_LIST_SET_INFO = _controls_.wxEVT_COMMAND_LIST_SET_INFO
4433 EVT_LIST_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG , 1)
4434 EVT_LIST_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG , 1)
4435 EVT_LIST_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT , 1)
4436 EVT_LIST_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT , 1)
4437 EVT_LIST_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM , 1)
4438 EVT_LIST_DELETE_ALL_ITEMS = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS , 1)
4439 EVT_LIST_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO , 1)
4440 EVT_LIST_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO , 1)
4441 EVT_LIST_ITEM_SELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED , 1)
4442 EVT_LIST_ITEM_DESELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED , 1)
4443 EVT_LIST_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN , 1)
4444 EVT_LIST_INSERT_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM , 1)
4445 EVT_LIST_COL_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK , 1)
4446 EVT_LIST_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK , 1)
4447 EVT_LIST_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, 1)
4448 EVT_LIST_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED , 1)
4449 EVT_LIST_CACHE_HINT = wx.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT , 1)
4450 EVT_LIST_COL_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK , 1)
4451 EVT_LIST_COL_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG , 1)
4452 EVT_LIST_COL_DRAGGING = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING , 1)
4453 EVT_LIST_COL_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG , 1)
4454 EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED , 1)
4455
4456 EVT_LIST_GET_INFO = wx._deprecated(EVT_LIST_GET_INFO)
4457 EVT_LIST_SET_INFO = wx._deprecated(EVT_LIST_SET_INFO)
4458
4459 #---------------------------------------------------------------------------
4460
4461 class ListCtrl(_core.Control):
4462 """Proxy of C++ ListCtrl class"""
4463 def __repr__(self):
4464 return "<%s.%s; proxy of C++ wxPyListCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4465 def __init__(self, *args, **kwargs):
4466 """
4467 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4468 Size size=DefaultSize, long style=LC_ICON,
4469 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListCtrl
4470 """
4471 newobj = _controls_.new_ListCtrl(*args, **kwargs)
4472 self.this = newobj.this
4473 self.thisown = 1
4474 del newobj.thisown
4475 self._setOORInfo(self);self._setCallbackInfo(self, ListCtrl)
4476
4477 def Create(*args, **kwargs):
4478 """
4479 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4480 Size size=DefaultSize, long style=LC_ICON,
4481 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4482
4483 Do the 2nd phase and create the GUI control.
4484 """
4485 return _controls_.ListCtrl_Create(*args, **kwargs)
4486
4487 def _setCallbackInfo(*args, **kwargs):
4488 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4489 return _controls_.ListCtrl__setCallbackInfo(*args, **kwargs)
4490
4491 def SetForegroundColour(*args, **kwargs):
4492 """
4493 SetForegroundColour(self, Colour col) -> bool
4494
4495 Sets the foreground colour of the window. Returns True is the colour
4496 was changed. The interpretation of foreground colour is dependent on
4497 the window class; it may be the text colour or other colour, or it may
4498 not be used at all.
4499 """
4500 return _controls_.ListCtrl_SetForegroundColour(*args, **kwargs)
4501
4502 def SetBackgroundColour(*args, **kwargs):
4503 """
4504 SetBackgroundColour(self, Colour col) -> bool
4505
4506 Sets the background colour of the window. Returns True if the colour
4507 was changed. The background colour is usually painted by the default
4508 EVT_ERASE_BACKGROUND event handler function under Windows and
4509 automatically under GTK. Using `wx.NullColour` will reset the window
4510 to the default background colour.
4511
4512 Note that setting the background colour may not cause an immediate
4513 refresh, so you may wish to call `ClearBackground` or `Refresh` after
4514 calling this function.
4515
4516 Using this function will disable attempts to use themes for this
4517 window, if the system supports them. Use with care since usually the
4518 themes represent the appearance chosen by the user to be used for all
4519 applications on the system.
4520 """
4521 return _controls_.ListCtrl_SetBackgroundColour(*args, **kwargs)
4522
4523 def GetColumn(*args, **kwargs):
4524 """GetColumn(self, int col) -> ListItem"""
4525 val = _controls_.ListCtrl_GetColumn(*args, **kwargs)
4526 if val is not None: val.thisown = 1
4527 return val
4528
4529 def SetColumn(*args, **kwargs):
4530 """SetColumn(self, int col, ListItem item) -> bool"""
4531 return _controls_.ListCtrl_SetColumn(*args, **kwargs)
4532
4533 def GetColumnWidth(*args, **kwargs):
4534 """GetColumnWidth(self, int col) -> int"""
4535 return _controls_.ListCtrl_GetColumnWidth(*args, **kwargs)
4536
4537 def SetColumnWidth(*args, **kwargs):
4538 """SetColumnWidth(self, int col, int width) -> bool"""
4539 return _controls_.ListCtrl_SetColumnWidth(*args, **kwargs)
4540
4541 def GetCountPerPage(*args, **kwargs):
4542 """GetCountPerPage(self) -> int"""
4543 return _controls_.ListCtrl_GetCountPerPage(*args, **kwargs)
4544
4545 def GetViewRect(*args, **kwargs):
4546 """GetViewRect(self) -> Rect"""
4547 return _controls_.ListCtrl_GetViewRect(*args, **kwargs)
4548
4549 def GetItem(*args, **kwargs):
4550 """GetItem(self, long itemId, int col=0) -> ListItem"""
4551 val = _controls_.ListCtrl_GetItem(*args, **kwargs)
4552 if val is not None: val.thisown = 1
4553 return val
4554
4555 def SetItem(*args, **kwargs):
4556 """SetItem(self, ListItem info) -> bool"""
4557 return _controls_.ListCtrl_SetItem(*args, **kwargs)
4558
4559 def SetStringItem(*args, **kwargs):
4560 """SetStringItem(self, long index, int col, String label, int imageId=-1) -> long"""
4561 return _controls_.ListCtrl_SetStringItem(*args, **kwargs)
4562
4563 def GetItemState(*args, **kwargs):
4564 """GetItemState(self, long item, long stateMask) -> int"""
4565 return _controls_.ListCtrl_GetItemState(*args, **kwargs)
4566
4567 def SetItemState(*args, **kwargs):
4568 """SetItemState(self, long item, long state, long stateMask) -> bool"""
4569 return _controls_.ListCtrl_SetItemState(*args, **kwargs)
4570
4571 def SetItemImage(*args, **kwargs):
4572 """SetItemImage(self, long item, int image, int selImage=-1) -> bool"""
4573 return _controls_.ListCtrl_SetItemImage(*args, **kwargs)
4574
4575 def GetItemText(*args, **kwargs):
4576 """GetItemText(self, long item) -> String"""
4577 return _controls_.ListCtrl_GetItemText(*args, **kwargs)
4578
4579 def SetItemText(*args, **kwargs):
4580 """SetItemText(self, long item, String str)"""
4581 return _controls_.ListCtrl_SetItemText(*args, **kwargs)
4582
4583 def GetItemData(*args, **kwargs):
4584 """GetItemData(self, long item) -> long"""
4585 return _controls_.ListCtrl_GetItemData(*args, **kwargs)
4586
4587 def SetItemData(*args, **kwargs):
4588 """SetItemData(self, long item, long data) -> bool"""
4589 return _controls_.ListCtrl_SetItemData(*args, **kwargs)
4590
4591 def GetItemPosition(*args, **kwargs):
4592 """GetItemPosition(self, long item) -> Point"""
4593 return _controls_.ListCtrl_GetItemPosition(*args, **kwargs)
4594
4595 def GetItemRect(*args, **kwargs):
4596 """GetItemRect(self, long item, int code=LIST_RECT_BOUNDS) -> Rect"""
4597 return _controls_.ListCtrl_GetItemRect(*args, **kwargs)
4598
4599 def SetItemPosition(*args, **kwargs):
4600 """SetItemPosition(self, long item, Point pos) -> bool"""
4601 return _controls_.ListCtrl_SetItemPosition(*args, **kwargs)
4602
4603 def GetItemCount(*args, **kwargs):
4604 """GetItemCount(self) -> int"""
4605 return _controls_.ListCtrl_GetItemCount(*args, **kwargs)
4606
4607 def GetColumnCount(*args, **kwargs):
4608 """GetColumnCount(self) -> int"""
4609 return _controls_.ListCtrl_GetColumnCount(*args, **kwargs)
4610
4611 def GetItemSpacing(*args, **kwargs):
4612 """GetItemSpacing(self) -> Size"""
4613 return _controls_.ListCtrl_GetItemSpacing(*args, **kwargs)
4614
4615 def SetItemSpacing(*args, **kwargs):
4616 """SetItemSpacing(self, int spacing, bool isSmall=False)"""
4617 return _controls_.ListCtrl_SetItemSpacing(*args, **kwargs)
4618
4619 def GetSelectedItemCount(*args, **kwargs):
4620 """GetSelectedItemCount(self) -> int"""
4621 return _controls_.ListCtrl_GetSelectedItemCount(*args, **kwargs)
4622
4623 def GetTextColour(*args, **kwargs):
4624 """GetTextColour(self) -> Colour"""
4625 return _controls_.ListCtrl_GetTextColour(*args, **kwargs)
4626
4627 def SetTextColour(*args, **kwargs):
4628 """SetTextColour(self, Colour col)"""
4629 return _controls_.ListCtrl_SetTextColour(*args, **kwargs)
4630
4631 def GetTopItem(*args, **kwargs):
4632 """GetTopItem(self) -> long"""
4633 return _controls_.ListCtrl_GetTopItem(*args, **kwargs)
4634
4635 def SetSingleStyle(*args, **kwargs):
4636 """SetSingleStyle(self, long style, bool add=True)"""
4637 return _controls_.ListCtrl_SetSingleStyle(*args, **kwargs)
4638
4639 def SetWindowStyleFlag(*args, **kwargs):
4640 """
4641 SetWindowStyleFlag(self, long style)
4642
4643 Sets the style of the window. Please note that some styles cannot be
4644 changed after the window creation and that Refresh() might need to be
4645 called after changing the others for the change to take place
4646 immediately.
4647 """
4648 return _controls_.ListCtrl_SetWindowStyleFlag(*args, **kwargs)
4649
4650 def GetNextItem(*args, **kwargs):
4651 """GetNextItem(self, long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -> long"""
4652 return _controls_.ListCtrl_GetNextItem(*args, **kwargs)
4653
4654 def GetImageList(*args, **kwargs):
4655 """GetImageList(self, int which) -> ImageList"""
4656 return _controls_.ListCtrl_GetImageList(*args, **kwargs)
4657
4658 def SetImageList(*args, **kwargs):
4659 """SetImageList(self, ImageList imageList, int which)"""
4660 return _controls_.ListCtrl_SetImageList(*args, **kwargs)
4661
4662 def AssignImageList(*args, **kwargs):
4663 """AssignImageList(self, ImageList imageList, int which)"""
4664 return _controls_.ListCtrl_AssignImageList(*args, **kwargs)
4665
4666 def InReportView(*args, **kwargs):
4667 """InReportView(self) -> bool"""
4668 return _controls_.ListCtrl_InReportView(*args, **kwargs)
4669
4670 def IsVirtual(*args, **kwargs):
4671 """IsVirtual(self) -> bool"""
4672 return _controls_.ListCtrl_IsVirtual(*args, **kwargs)
4673
4674 def RefreshItem(*args, **kwargs):
4675 """RefreshItem(self, long item)"""
4676 return _controls_.ListCtrl_RefreshItem(*args, **kwargs)
4677
4678 def RefreshItems(*args, **kwargs):
4679 """RefreshItems(self, long itemFrom, long itemTo)"""
4680 return _controls_.ListCtrl_RefreshItems(*args, **kwargs)
4681
4682 def Arrange(*args, **kwargs):
4683 """Arrange(self, int flag=LIST_ALIGN_DEFAULT) -> bool"""
4684 return _controls_.ListCtrl_Arrange(*args, **kwargs)
4685
4686 def DeleteItem(*args, **kwargs):
4687 """DeleteItem(self, long item) -> bool"""
4688 return _controls_.ListCtrl_DeleteItem(*args, **kwargs)
4689
4690 def DeleteAllItems(*args, **kwargs):
4691 """DeleteAllItems(self) -> bool"""
4692 return _controls_.ListCtrl_DeleteAllItems(*args, **kwargs)
4693
4694 def DeleteColumn(*args, **kwargs):
4695 """DeleteColumn(self, int col) -> bool"""
4696 return _controls_.ListCtrl_DeleteColumn(*args, **kwargs)
4697
4698 def DeleteAllColumns(*args, **kwargs):
4699 """DeleteAllColumns(self) -> bool"""
4700 return _controls_.ListCtrl_DeleteAllColumns(*args, **kwargs)
4701
4702 def ClearAll(*args, **kwargs):
4703 """ClearAll(self)"""
4704 return _controls_.ListCtrl_ClearAll(*args, **kwargs)
4705
4706 def EditLabel(*args, **kwargs):
4707 """EditLabel(self, long item)"""
4708 return _controls_.ListCtrl_EditLabel(*args, **kwargs)
4709
4710 def EnsureVisible(*args, **kwargs):
4711 """EnsureVisible(self, long item) -> bool"""
4712 return _controls_.ListCtrl_EnsureVisible(*args, **kwargs)
4713
4714 def FindItem(*args, **kwargs):
4715 """FindItem(self, long start, String str, bool partial=False) -> long"""
4716 return _controls_.ListCtrl_FindItem(*args, **kwargs)
4717
4718 def FindItemData(*args, **kwargs):
4719 """FindItemData(self, long start, long data) -> long"""
4720 return _controls_.ListCtrl_FindItemData(*args, **kwargs)
4721
4722 def FindItemAtPos(*args, **kwargs):
4723 """FindItemAtPos(self, long start, Point pt, int direction) -> long"""
4724 return _controls_.ListCtrl_FindItemAtPos(*args, **kwargs)
4725
4726 def HitTest(*args, **kwargs):
4727 """
4728 HitTest(Point point) -> (item, where)
4729
4730 Determines which item (if any) is at the specified point, giving
4731 in the second return value (see wx.LIST_HITTEST flags.)
4732 """
4733 return _controls_.ListCtrl_HitTest(*args, **kwargs)
4734
4735 def InsertItem(*args, **kwargs):
4736 """InsertItem(self, ListItem info) -> long"""
4737 return _controls_.ListCtrl_InsertItem(*args, **kwargs)
4738
4739 def InsertStringItem(*args, **kwargs):
4740 """InsertStringItem(self, long index, String label) -> long"""
4741 return _controls_.ListCtrl_InsertStringItem(*args, **kwargs)
4742
4743 def InsertImageItem(*args, **kwargs):
4744 """InsertImageItem(self, long index, int imageIndex) -> long"""
4745 return _controls_.ListCtrl_InsertImageItem(*args, **kwargs)
4746
4747 def InsertImageStringItem(*args, **kwargs):
4748 """InsertImageStringItem(self, long index, String label, int imageIndex) -> long"""
4749 return _controls_.ListCtrl_InsertImageStringItem(*args, **kwargs)
4750
4751 def InsertColumnInfo(*args, **kwargs):
4752 """InsertColumnInfo(self, long col, ListItem info) -> long"""
4753 return _controls_.ListCtrl_InsertColumnInfo(*args, **kwargs)
4754
4755 def InsertColumn(*args, **kwargs):
4756 """
4757 InsertColumn(self, long col, String heading, int format=LIST_FORMAT_LEFT,
4758 int width=-1) -> long
4759 """
4760 return _controls_.ListCtrl_InsertColumn(*args, **kwargs)
4761
4762 def SetItemCount(*args, **kwargs):
4763 """SetItemCount(self, long count)"""
4764 return _controls_.ListCtrl_SetItemCount(*args, **kwargs)
4765
4766 def ScrollList(*args, **kwargs):
4767 """ScrollList(self, int dx, int dy) -> bool"""
4768 return _controls_.ListCtrl_ScrollList(*args, **kwargs)
4769
4770 def SetItemTextColour(*args, **kwargs):
4771 """SetItemTextColour(self, long item, Colour col)"""
4772 return _controls_.ListCtrl_SetItemTextColour(*args, **kwargs)
4773
4774 def GetItemTextColour(*args, **kwargs):
4775 """GetItemTextColour(self, long item) -> Colour"""
4776 return _controls_.ListCtrl_GetItemTextColour(*args, **kwargs)
4777
4778 def SetItemBackgroundColour(*args, **kwargs):
4779 """SetItemBackgroundColour(self, long item, Colour col)"""
4780 return _controls_.ListCtrl_SetItemBackgroundColour(*args, **kwargs)
4781
4782 def GetItemBackgroundColour(*args, **kwargs):
4783 """GetItemBackgroundColour(self, long item) -> Colour"""
4784 return _controls_.ListCtrl_GetItemBackgroundColour(*args, **kwargs)
4785
4786 #
4787 # Some helpers...
4788 def Select(self, idx, on=1):
4789 '''[de]select an item'''
4790 if on: state = wx.LIST_STATE_SELECTED
4791 else: state = 0
4792 self.SetItemState(idx, state, wx.LIST_STATE_SELECTED)
4793
4794 def Focus(self, idx):
4795 '''Focus and show the given item'''
4796 self.SetItemState(idx, wx.LIST_STATE_FOCUSED, wx.LIST_STATE_FOCUSED)
4797 self.EnsureVisible(idx)
4798
4799 def GetFocusedItem(self):
4800 '''get the currently focused item or -1 if none'''
4801 return self.GetNextItem(-1, wx.LIST_NEXT_ALL, wx.LIST_STATE_FOCUSED)
4802
4803 def GetFirstSelected(self, *args):
4804 '''return first selected item, or -1 when none'''
4805 return self.GetNextSelected(-1)
4806
4807 def GetNextSelected(self, item):
4808 '''return subsequent selected items, or -1 when no more'''
4809 return self.GetNextItem(item, wx.LIST_NEXT_ALL, wx.LIST_STATE_SELECTED)
4810
4811 def IsSelected(self, idx):
4812 '''return True if the item is selected'''
4813 return (self.GetItemState(idx, wx.LIST_STATE_SELECTED) & wx.LIST_STATE_SELECTED) != 0
4814
4815 def SetColumnImage(self, col, image):
4816 item = self.GetColumn(col)
4817 # preserve all other attributes too
4818 item.SetMask( wx.LIST_MASK_STATE |
4819 wx.LIST_MASK_TEXT |
4820 wx.LIST_MASK_IMAGE |
4821 wx.LIST_MASK_DATA |
4822 wx.LIST_SET_ITEM |
4823 wx.LIST_MASK_WIDTH |
4824 wx.LIST_MASK_FORMAT )
4825 item.SetImage(image)
4826 self.SetColumn(col, item)
4827
4828 def ClearColumnImage(self, col):
4829 self.SetColumnImage(col, -1)
4830
4831 def Append(self, entry):
4832 '''Append an item to the list control. The entry parameter should be a
4833 sequence with an item for each column'''
4834 if len(entry):
4835 if wx.USE_UNICODE:
4836 cvtfunc = unicode
4837 else:
4838 cvtfunc = str
4839 pos = self.GetItemCount()
4840 self.InsertStringItem(pos, cvtfunc(entry[0]))
4841 for i in range(1, len(entry)):
4842 self.SetStringItem(pos, i, cvtfunc(entry[i]))
4843 return pos
4844
4845 def SortItems(*args, **kwargs):
4846 """SortItems(self, PyObject func) -> bool"""
4847 return _controls_.ListCtrl_SortItems(*args, **kwargs)
4848
4849 def GetMainWindow(*args, **kwargs):
4850 """GetMainWindow(self) -> Window"""
4851 return _controls_.ListCtrl_GetMainWindow(*args, **kwargs)
4852
4853 def GetClassDefaultAttributes(*args, **kwargs):
4854 """
4855 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4856
4857 Get the default attributes for this class. This is useful if you want
4858 to use the same font or colour in your own control as in a standard
4859 control -- which is a much better idea than hard coding specific
4860 colours or fonts which might look completely out of place on the
4861 user's system, especially if it uses themes.
4862
4863 The variant parameter is only relevant under Mac currently and is
4864 ignore under other platforms. Under Mac, it will change the size of
4865 the returned font. See `wx.Window.SetWindowVariant` for more about
4866 this.
4867 """
4868 return _controls_.ListCtrl_GetClassDefaultAttributes(*args, **kwargs)
4869
4870 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
4871
4872 class ListCtrlPtr(ListCtrl):
4873 def __init__(self, this):
4874 self.this = this
4875 if not hasattr(self,"thisown"): self.thisown = 0
4876 self.__class__ = ListCtrl
4877 _controls_.ListCtrl_swigregister(ListCtrlPtr)
4878
4879 def PreListCtrl(*args, **kwargs):
4880 """PreListCtrl() -> ListCtrl"""
4881 val = _controls_.new_PreListCtrl(*args, **kwargs)
4882 val.thisown = 1
4883 return val
4884
4885 def ListCtrl_GetClassDefaultAttributes(*args, **kwargs):
4886 """
4887 ListCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
4888
4889 Get the default attributes for this class. This is useful if you want
4890 to use the same font or colour in your own control as in a standard
4891 control -- which is a much better idea than hard coding specific
4892 colours or fonts which might look completely out of place on the
4893 user's system, especially if it uses themes.
4894
4895 The variant parameter is only relevant under Mac currently and is
4896 ignore under other platforms. Under Mac, it will change the size of
4897 the returned font. See `wx.Window.SetWindowVariant` for more about
4898 this.
4899 """
4900 return _controls_.ListCtrl_GetClassDefaultAttributes(*args, **kwargs)
4901
4902 #---------------------------------------------------------------------------
4903
4904 class ListView(ListCtrl):
4905 """Proxy of C++ ListView class"""
4906 def __repr__(self):
4907 return "<%s.%s; proxy of C++ wxListView instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4908 def __init__(self, *args, **kwargs):
4909 """
4910 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
4911 Size size=DefaultSize, long style=LC_REPORT,
4912 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> ListView
4913 """
4914 newobj = _controls_.new_ListView(*args, **kwargs)
4915 self.this = newobj.this
4916 self.thisown = 1
4917 del newobj.thisown
4918 self._setOORInfo(self)
4919
4920 def Create(*args, **kwargs):
4921 """
4922 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
4923 Size size=DefaultSize, long style=LC_REPORT,
4924 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -> bool
4925
4926 Do the 2nd phase and create the GUI control.
4927 """
4928 return _controls_.ListView_Create(*args, **kwargs)
4929
4930 def Select(*args, **kwargs):
4931 """Select(self, long n, bool on=True)"""
4932 return _controls_.ListView_Select(*args, **kwargs)
4933
4934 def Focus(*args, **kwargs):
4935 """Focus(self, long index)"""
4936 return _controls_.ListView_Focus(*args, **kwargs)
4937
4938 def GetFocusedItem(*args, **kwargs):
4939 """GetFocusedItem(self) -> long"""
4940 return _controls_.ListView_GetFocusedItem(*args, **kwargs)
4941
4942 def GetNextSelected(*args, **kwargs):
4943 """GetNextSelected(self, long item) -> long"""
4944 return _controls_.ListView_GetNextSelected(*args, **kwargs)
4945
4946 def GetFirstSelected(*args, **kwargs):
4947 """GetFirstSelected(self) -> long"""
4948 return _controls_.ListView_GetFirstSelected(*args, **kwargs)
4949
4950 def IsSelected(*args, **kwargs):
4951 """IsSelected(self, long index) -> bool"""
4952 return _controls_.ListView_IsSelected(*args, **kwargs)
4953
4954 def SetColumnImage(*args, **kwargs):
4955 """SetColumnImage(self, int col, int image)"""
4956 return _controls_.ListView_SetColumnImage(*args, **kwargs)
4957
4958 def ClearColumnImage(*args, **kwargs):
4959 """ClearColumnImage(self, int col)"""
4960 return _controls_.ListView_ClearColumnImage(*args, **kwargs)
4961
4962
4963 class ListViewPtr(ListView):
4964 def __init__(self, this):
4965 self.this = this
4966 if not hasattr(self,"thisown"): self.thisown = 0
4967 self.__class__ = ListView
4968 _controls_.ListView_swigregister(ListViewPtr)
4969
4970 def PreListView(*args, **kwargs):
4971 """PreListView() -> ListView"""
4972 val = _controls_.new_PreListView(*args, **kwargs)
4973 val.thisown = 1
4974 return val
4975
4976 #---------------------------------------------------------------------------
4977
4978 TR_NO_BUTTONS = _controls_.TR_NO_BUTTONS
4979 TR_HAS_BUTTONS = _controls_.TR_HAS_BUTTONS
4980 TR_NO_LINES = _controls_.TR_NO_LINES
4981 TR_LINES_AT_ROOT = _controls_.TR_LINES_AT_ROOT
4982 TR_SINGLE = _controls_.TR_SINGLE
4983 TR_MULTIPLE = _controls_.TR_MULTIPLE
4984 TR_EXTENDED = _controls_.TR_EXTENDED
4985 TR_HAS_VARIABLE_ROW_HEIGHT = _controls_.TR_HAS_VARIABLE_ROW_HEIGHT
4986 TR_EDIT_LABELS = _controls_.TR_EDIT_LABELS
4987 TR_HIDE_ROOT = _controls_.TR_HIDE_ROOT
4988 TR_ROW_LINES = _controls_.TR_ROW_LINES
4989 TR_FULL_ROW_HIGHLIGHT = _controls_.TR_FULL_ROW_HIGHLIGHT
4990 TR_DEFAULT_STYLE = _controls_.TR_DEFAULT_STYLE
4991 TR_TWIST_BUTTONS = _controls_.TR_TWIST_BUTTONS
4992 TR_MAC_BUTTONS = _controls_.TR_MAC_BUTTONS
4993 TR_AQUA_BUTTONS = _controls_.TR_AQUA_BUTTONS
4994 TreeItemIcon_Normal = _controls_.TreeItemIcon_Normal
4995 TreeItemIcon_Selected = _controls_.TreeItemIcon_Selected
4996 TreeItemIcon_Expanded = _controls_.TreeItemIcon_Expanded
4997 TreeItemIcon_SelectedExpanded = _controls_.TreeItemIcon_SelectedExpanded
4998 TreeItemIcon_Max = _controls_.TreeItemIcon_Max
4999 TREE_HITTEST_ABOVE = _controls_.TREE_HITTEST_ABOVE
5000 TREE_HITTEST_BELOW = _controls_.TREE_HITTEST_BELOW
5001 TREE_HITTEST_NOWHERE = _controls_.TREE_HITTEST_NOWHERE
5002 TREE_HITTEST_ONITEMBUTTON = _controls_.TREE_HITTEST_ONITEMBUTTON
5003 TREE_HITTEST_ONITEMICON = _controls_.TREE_HITTEST_ONITEMICON
5004 TREE_HITTEST_ONITEMINDENT = _controls_.TREE_HITTEST_ONITEMINDENT
5005 TREE_HITTEST_ONITEMLABEL = _controls_.TREE_HITTEST_ONITEMLABEL
5006 TREE_HITTEST_ONITEMRIGHT = _controls_.TREE_HITTEST_ONITEMRIGHT
5007 TREE_HITTEST_ONITEMSTATEICON = _controls_.TREE_HITTEST_ONITEMSTATEICON
5008 TREE_HITTEST_TOLEFT = _controls_.TREE_HITTEST_TOLEFT
5009 TREE_HITTEST_TORIGHT = _controls_.TREE_HITTEST_TORIGHT
5010 TREE_HITTEST_ONITEMUPPERPART = _controls_.TREE_HITTEST_ONITEMUPPERPART
5011 TREE_HITTEST_ONITEMLOWERPART = _controls_.TREE_HITTEST_ONITEMLOWERPART
5012 TREE_HITTEST_ONITEM = _controls_.TREE_HITTEST_ONITEM
5013 #---------------------------------------------------------------------------
5014
5015 class TreeItemId(object):
5016 """Proxy of C++ TreeItemId class"""
5017 def __repr__(self):
5018 return "<%s.%s; proxy of C++ wxTreeItemId instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
5019 def __init__(self, *args, **kwargs):
5020 """__init__(self) -> TreeItemId"""
5021 newobj = _controls_.new_TreeItemId(*args, **kwargs)
5022 self.this = newobj.this
5023 self.thisown = 1
5024 del newobj.thisown
5025 def __del__(self, destroy=_controls_.delete_TreeItemId):
5026 """__del__(self)"""
5027 try:
5028 if self.thisown: destroy(self)
5029 except: pass
5030
5031 def IsOk(*args, **kwargs):
5032 """IsOk(self) -> bool"""
5033 return _controls_.TreeItemId_IsOk(*args, **kwargs)
5034
5035 def __eq__(*args, **kwargs):
5036 """__eq__(self, TreeItemId other) -> bool"""
5037 return _controls_.TreeItemId___eq__(*args, **kwargs)
5038
5039 def __ne__(*args, **kwargs):
5040 """__ne__(self, TreeItemId other) -> bool"""
5041 return _controls_.TreeItemId___ne__(*args, **kwargs)
5042
5043 m_pItem = property(_controls_.TreeItemId_m_pItem_get, _controls_.TreeItemId_m_pItem_set)
5044 Ok = IsOk
5045 def __nonzero__(self): return self.IsOk()
5046
5047 class TreeItemIdPtr(TreeItemId):
5048 def __init__(self, this):
5049 self.this = this
5050 if not hasattr(self,"thisown"): self.thisown = 0
5051 self.__class__ = TreeItemId
5052 _controls_.TreeItemId_swigregister(TreeItemIdPtr)
5053 TreeCtrlNameStr = cvar.TreeCtrlNameStr
5054
5055 class TreeItemData(object):
5056 """Proxy of C++ TreeItemData class"""
5057 def __repr__(self):
5058 return "<%s.%s; proxy of C++ wxPyTreeItemData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
5059 def __init__(self, *args, **kwargs):
5060 """__init__(self, PyObject obj=None) -> TreeItemData"""
5061 newobj = _controls_.new_TreeItemData(*args, **kwargs)
5062 self.this = newobj.this
5063 self.thisown = 1
5064 del newobj.thisown
5065 def GetData(*args, **kwargs):
5066 """GetData(self) -> PyObject"""
5067 return _controls_.TreeItemData_GetData(*args, **kwargs)
5068
5069 def SetData(*args, **kwargs):
5070 """SetData(self, PyObject obj)"""
5071 return _controls_.TreeItemData_SetData(*args, **kwargs)
5072
5073 def GetId(*args, **kwargs):
5074 """GetId(self) -> TreeItemId"""
5075 return _controls_.TreeItemData_GetId(*args, **kwargs)
5076
5077 def SetId(*args, **kwargs):
5078 """SetId(self, TreeItemId id)"""
5079 return _controls_.TreeItemData_SetId(*args, **kwargs)
5080
5081 def Destroy(*args, **kwargs):
5082 """Destroy(self)"""
5083 return _controls_.TreeItemData_Destroy(*args, **kwargs)
5084
5085
5086 class TreeItemDataPtr(TreeItemData):
5087 def __init__(self, this):
5088 self.this = this
5089 if not hasattr(self,"thisown"): self.thisown = 0
5090 self.__class__ = TreeItemData
5091 _controls_.TreeItemData_swigregister(TreeItemDataPtr)
5092
5093 #---------------------------------------------------------------------------
5094
5095 wxEVT_COMMAND_TREE_BEGIN_DRAG = _controls_.wxEVT_COMMAND_TREE_BEGIN_DRAG
5096 wxEVT_COMMAND_TREE_BEGIN_RDRAG = _controls_.wxEVT_COMMAND_TREE_BEGIN_RDRAG
5097 wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT = _controls_.wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
5098 wxEVT_COMMAND_TREE_END_LABEL_EDIT = _controls_.wxEVT_COMMAND_TREE_END_LABEL_EDIT
5099 wxEVT_COMMAND_TREE_DELETE_ITEM = _controls_.wxEVT_COMMAND_TREE_DELETE_ITEM
5100 wxEVT_COMMAND_TREE_GET_INFO = _controls_.wxEVT_COMMAND_TREE_GET_INFO
5101 wxEVT_COMMAND_TREE_SET_INFO = _controls_.wxEVT_COMMAND_TREE_SET_INFO
5102 wxEVT_COMMAND_TREE_ITEM_EXPANDED = _controls_.wxEVT_COMMAND_TREE_ITEM_EXPANDED
5103 wxEVT_COMMAND_TREE_ITEM_EXPANDING = _controls_.wxEVT_COMMAND_TREE_ITEM_EXPANDING
5104 wxEVT_COMMAND_TREE_ITEM_COLLAPSED = _controls_.wxEVT_COMMAND_TREE_ITEM_COLLAPSED
5105 wxEVT_COMMAND_TREE_ITEM_COLLAPSING = _controls_.wxEVT_COMMAND_TREE_ITEM_COLLAPSING
5106 wxEVT_COMMAND_TREE_SEL_CHANGED = _controls_.wxEVT_COMMAND_TREE_SEL_CHANGED
5107 wxEVT_COMMAND_TREE_SEL_CHANGING = _controls_.wxEVT_COMMAND_TREE_SEL_CHANGING
5108 wxEVT_COMMAND_TREE_KEY_DOWN = _controls_.wxEVT_COMMAND_TREE_KEY_DOWN
5109 wxEVT_COMMAND_TREE_ITEM_ACTIVATED = _controls_.wxEVT_COMMAND_TREE_ITEM_ACTIVATED
5110 wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK = _controls_.wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
5111 wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK = _controls_.wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
5112 wxEVT_COMMAND_TREE_END_DRAG = _controls_.wxEVT_COMMAND_TREE_END_DRAG
5113 wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK = _controls_.wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
5114 wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP = _controls_.wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
5115 wxEVT_COMMAND_TREE_ITEM_MENU = _controls_.wxEVT_COMMAND_TREE_ITEM_MENU
5116 EVT_TREE_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG , 1)
5117 EVT_TREE_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG , 1)
5118 EVT_TREE_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT , 1)
5119 EVT_TREE_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT , 1)
5120 EVT_TREE_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM , 1)
5121 EVT_TREE_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO , 1)
5122 EVT_TREE_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO , 1)
5123 EVT_TREE_ITEM_EXPANDED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED , 1)
5124 EVT_TREE_ITEM_EXPANDING = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING , 1)
5125 EVT_TREE_ITEM_COLLAPSED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED , 1)
5126 EVT_TREE_ITEM_COLLAPSING = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING , 1)
5127 EVT_TREE_SEL_CHANGED = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED , 1)
5128 EVT_TREE_SEL_CHANGING = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING , 1)
5129 EVT_TREE_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN , 1)
5130 EVT_TREE_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED , 1)
5131 EVT_TREE_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK , 1)
5132 EVT_TREE_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, 1)
5133 EVT_TREE_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG , 1)
5134 EVT_TREE_STATE_IMAGE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK, 1)
5135 EVT_TREE_ITEM_GETTOOLTIP = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP, 1)
5136 EVT_COMMAND_TREE_ITEM_MENU = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MENU, 1)
5137
5138 class TreeEvent(_core.NotifyEvent):
5139 """Proxy of C++ TreeEvent class"""
5140 def __repr__(self):
5141 return "<%s.%s; proxy of C++ wxTreeEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
5142 def __init__(self, *args, **kwargs):
5143 """__init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> TreeEvent"""
5144 newobj = _controls_.new_TreeEvent(*args, **kwargs)
5145 self.this = newobj.this
5146 self.thisown = 1
5147 del newobj.thisown
5148 def GetItem(*args, **kwargs):
5149 """GetItem(self) -> TreeItemId"""
5150 return _controls_.TreeEvent_GetItem(*args, **kwargs)
5151
5152 def SetItem(*args, **kwargs):
5153 """SetItem(self, TreeItemId item)"""
5154 return _controls_.TreeEvent_SetItem(*args, **kwargs)
5155
5156 def GetOldItem(*args, **kwargs):
5157 """GetOldItem(self) -> TreeItemId"""
5158 return _controls_.TreeEvent_GetOldItem(*args, **kwargs)
5159
5160 def SetOldItem(*args, **kwargs):
5161 """SetOldItem(self, TreeItemId item)"""
5162 return _controls_.TreeEvent_SetOldItem(*args, **kwargs)
5163
5164 def GetPoint(*args, **kwargs):
5165 """GetPoint(self) -> Point"""
5166 return _controls_.TreeEvent_GetPoint(*args, **kwargs)
5167
5168 def SetPoint(*args, **kwargs):
5169 """SetPoint(self, Point pt)"""
5170 return _controls_.TreeEvent_SetPoint(*args, **kwargs)
5171
5172 def GetKeyEvent(*args, **kwargs):
5173 """GetKeyEvent(self) -> KeyEvent"""
5174 return _controls_.TreeEvent_GetKeyEvent(*args, **kwargs)
5175
5176 def GetKeyCode(*args, **kwargs):
5177 """GetKeyCode(self) -> int"""
5178 return _controls_.TreeEvent_GetKeyCode(*args, **kwargs)
5179
5180 def SetKeyEvent(*args, **kwargs):
5181 """SetKeyEvent(self, KeyEvent evt)"""
5182 return _controls_.TreeEvent_SetKeyEvent(*args, **kwargs)
5183
5184 def GetLabel(*args, **kwargs):
5185 """GetLabel(self) -> String"""
5186 return _controls_.TreeEvent_GetLabel(*args, **kwargs)
5187
5188 def SetLabel(*args, **kwargs):
5189 """SetLabel(self, String label)"""
5190 return _controls_.TreeEvent_SetLabel(*args, **kwargs)
5191
5192 def IsEditCancelled(*args, **kwargs):
5193 """IsEditCancelled(self) -> bool"""
5194 return _controls_.TreeEvent_IsEditCancelled(*args, **kwargs)
5195
5196 def SetEditCanceled(*args, **kwargs):
5197 """SetEditCanceled(self, bool editCancelled)"""
5198 return _controls_.TreeEvent_SetEditCanceled(*args, **kwargs)
5199
5200 def SetToolTip(*args, **kwargs):
5201 """SetToolTip(self, String toolTip)"""
5202 return _controls_.TreeEvent_SetToolTip(*args, **kwargs)
5203
5204 def GetToolTip(*args, **kwargs):
5205 """GetToolTip(self) -> String"""
5206 return _controls_.TreeEvent_GetToolTip(*args, **kwargs)
5207
5208
5209 class TreeEventPtr(TreeEvent):
5210 def __init__(self, this):
5211 self.this = this
5212 if not hasattr(self,"thisown"): self.thisown = 0
5213 self.__class__ = TreeEvent
5214 _controls_.TreeEvent_swigregister(TreeEventPtr)
5215
5216 #---------------------------------------------------------------------------
5217
5218 class TreeCtrl(_core.Control):
5219 """Proxy of C++ TreeCtrl class"""
5220 def __repr__(self):
5221 return "<%s.%s; proxy of C++ wxPyTreeCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
5222 def __init__(self, *args, **kwargs):
5223 """
5224 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
5225 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
5226 Validator validator=DefaultValidator,
5227 String name=TreeCtrlNameStr) -> TreeCtrl
5228 """
5229 newobj = _controls_.new_TreeCtrl(*args, **kwargs)
5230 self.this = newobj.this
5231 self.thisown = 1
5232 del newobj.thisown
5233 self._setOORInfo(self);self._setCallbackInfo(self, TreeCtrl)
5234
5235 def Create(*args, **kwargs):
5236 """
5237 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
5238 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
5239 Validator validator=DefaultValidator,
5240 String name=TreeCtrlNameStr) -> bool
5241
5242 Do the 2nd phase and create the GUI control.
5243 """
5244 return _controls_.TreeCtrl_Create(*args, **kwargs)
5245
5246 def _setCallbackInfo(*args, **kwargs):
5247 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5248 return _controls_.TreeCtrl__setCallbackInfo(*args, **kwargs)
5249
5250 def GetCount(*args, **kwargs):
5251 """GetCount(self) -> size_t"""
5252 return _controls_.TreeCtrl_GetCount(*args, **kwargs)
5253
5254 def GetIndent(*args, **kwargs):
5255 """GetIndent(self) -> unsigned int"""
5256 return _controls_.TreeCtrl_GetIndent(*args, **kwargs)
5257
5258 def SetIndent(*args, **kwargs):
5259 """SetIndent(self, unsigned int indent)"""
5260 return _controls_.TreeCtrl_SetIndent(*args, **kwargs)
5261
5262 def GetSpacing(*args, **kwargs):
5263 """GetSpacing(self) -> unsigned int"""
5264 return _controls_.TreeCtrl_GetSpacing(*args, **kwargs)
5265
5266 def SetSpacing(*args, **kwargs):
5267 """SetSpacing(self, unsigned int spacing)"""
5268 return _controls_.TreeCtrl_SetSpacing(*args, **kwargs)
5269
5270 def GetImageList(*args, **kwargs):
5271 """GetImageList(self) -> ImageList"""
5272 return _controls_.TreeCtrl_GetImageList(*args, **kwargs)
5273
5274 def GetStateImageList(*args, **kwargs):
5275 """GetStateImageList(self) -> ImageList"""
5276 return _controls_.TreeCtrl_GetStateImageList(*args, **kwargs)
5277
5278 def SetImageList(*args, **kwargs):
5279 """SetImageList(self, ImageList imageList)"""
5280 return _controls_.TreeCtrl_SetImageList(*args, **kwargs)
5281
5282 def SetStateImageList(*args, **kwargs):
5283 """SetStateImageList(self, ImageList imageList)"""
5284 return _controls_.TreeCtrl_SetStateImageList(*args, **kwargs)
5285
5286 def AssignImageList(*args, **kwargs):
5287 """AssignImageList(self, ImageList imageList)"""
5288 return _controls_.TreeCtrl_AssignImageList(*args, **kwargs)
5289
5290 def AssignStateImageList(*args, **kwargs):
5291 """AssignStateImageList(self, ImageList imageList)"""
5292 return _controls_.TreeCtrl_AssignStateImageList(*args, **kwargs)
5293
5294 def GetItemText(*args, **kwargs):
5295 """GetItemText(self, TreeItemId item) -> String"""
5296 return _controls_.TreeCtrl_GetItemText(*args, **kwargs)
5297
5298 def GetItemImage(*args, **kwargs):
5299 """GetItemImage(self, TreeItemId item, int which=TreeItemIcon_Normal) -> int"""
5300 return _controls_.TreeCtrl_GetItemImage(*args, **kwargs)
5301
5302 def GetItemData(*args, **kwargs):
5303 """GetItemData(self, TreeItemId item) -> TreeItemData"""
5304 return _controls_.TreeCtrl_GetItemData(*args, **kwargs)
5305
5306 def GetItemPyData(*args, **kwargs):
5307 """GetItemPyData(self, TreeItemId item) -> PyObject"""
5308 return _controls_.TreeCtrl_GetItemPyData(*args, **kwargs)
5309
5310 GetPyData = GetItemPyData
5311 def GetItemTextColour(*args, **kwargs):
5312 """GetItemTextColour(self, TreeItemId item) -> Colour"""
5313 return _controls_.TreeCtrl_GetItemTextColour(*args, **kwargs)
5314
5315 def GetItemBackgroundColour(*args, **kwargs):
5316 """GetItemBackgroundColour(self, TreeItemId item) -> Colour"""
5317 return _controls_.TreeCtrl_GetItemBackgroundColour(*args, **kwargs)
5318
5319 def GetItemFont(*args, **kwargs):
5320 """GetItemFont(self, TreeItemId item) -> Font"""
5321 return _controls_.TreeCtrl_GetItemFont(*args, **kwargs)
5322
5323 def SetItemText(*args, **kwargs):
5324 """SetItemText(self, TreeItemId item, String text)"""
5325 return _controls_.TreeCtrl_SetItemText(*args, **kwargs)
5326
5327 def SetItemImage(*args, **kwargs):
5328 """SetItemImage(self, TreeItemId item, int image, int which=TreeItemIcon_Normal)"""
5329 return _controls_.TreeCtrl_SetItemImage(*args, **kwargs)
5330
5331 def SetItemData(*args, **kwargs):
5332 """SetItemData(self, TreeItemId item, TreeItemData data)"""
5333 return _controls_.TreeCtrl_SetItemData(*args, **kwargs)
5334
5335 def SetItemPyData(*args, **kwargs):
5336 """SetItemPyData(self, TreeItemId item, PyObject obj)"""
5337 return _controls_.TreeCtrl_SetItemPyData(*args, **kwargs)
5338
5339 SetPyData = SetItemPyData
5340 def SetItemHasChildren(*args, **kwargs):
5341 """SetItemHasChildren(self, TreeItemId item, bool has=True)"""
5342 return _controls_.TreeCtrl_SetItemHasChildren(*args, **kwargs)
5343
5344 def SetItemBold(*args, **kwargs):
5345 """SetItemBold(self, TreeItemId item, bool bold=True)"""
5346 return _controls_.TreeCtrl_SetItemBold(*args, **kwargs)
5347
5348 def SetItemDropHighlight(*args, **kwargs):
5349 """SetItemDropHighlight(self, TreeItemId item, bool highlight=True)"""
5350 return _controls_.TreeCtrl_SetItemDropHighlight(*args, **kwargs)
5351
5352 def SetItemTextColour(*args, **kwargs):
5353 """SetItemTextColour(self, TreeItemId item, Colour col)"""
5354 return _controls_.TreeCtrl_SetItemTextColour(*args, **kwargs)
5355
5356 def SetItemBackgroundColour(*args, **kwargs):
5357 """SetItemBackgroundColour(self, TreeItemId item, Colour col)"""
5358 return _controls_.TreeCtrl_SetItemBackgroundColour(*args, **kwargs)
5359
5360 def SetItemFont(*args, **kwargs):
5361 """SetItemFont(self, TreeItemId item, Font font)"""
5362 return _controls_.TreeCtrl_SetItemFont(*args, **kwargs)
5363
5364 def IsVisible(*args, **kwargs):
5365 """IsVisible(self, TreeItemId item) -> bool"""
5366 return _controls_.TreeCtrl_IsVisible(*args, **kwargs)
5367
5368 def ItemHasChildren(*args, **kwargs):
5369 """ItemHasChildren(self, TreeItemId item) -> bool"""
5370 return _controls_.TreeCtrl_ItemHasChildren(*args, **kwargs)
5371
5372 def IsExpanded(*args, **kwargs):
5373 """IsExpanded(self, TreeItemId item) -> bool"""
5374 return _controls_.TreeCtrl_IsExpanded(*args, **kwargs)
5375
5376 def IsSelected(*args, **kwargs):
5377 """IsSelected(self, TreeItemId item) -> bool"""
5378 return _controls_.TreeCtrl_IsSelected(*args, **kwargs)
5379
5380 def IsBold(*args, **kwargs):
5381 """IsBold(self, TreeItemId item) -> bool"""
5382 return _controls_.TreeCtrl_IsBold(*args, **kwargs)
5383
5384 def GetChildrenCount(*args, **kwargs):
5385 """GetChildrenCount(self, TreeItemId item, bool recursively=True) -> size_t"""
5386 return _controls_.TreeCtrl_GetChildrenCount(*args, **kwargs)
5387
5388 def GetRootItem(*args, **kwargs):
5389 """GetRootItem(self) -> TreeItemId"""
5390 return _controls_.TreeCtrl_GetRootItem(*args, **kwargs)
5391
5392 def GetSelection(*args, **kwargs):
5393 """GetSelection(self) -> TreeItemId"""
5394 return _controls_.TreeCtrl_GetSelection(*args, **kwargs)
5395
5396 def GetSelections(*args, **kwargs):
5397 """GetSelections(self) -> PyObject"""
5398 return _controls_.TreeCtrl_GetSelections(*args, **kwargs)
5399
5400 def GetItemParent(*args, **kwargs):
5401 """GetItemParent(self, TreeItemId item) -> TreeItemId"""
5402 return _controls_.TreeCtrl_GetItemParent(*args, **kwargs)
5403
5404 def GetFirstChild(*args, **kwargs):
5405 """GetFirstChild(self, TreeItemId item) -> PyObject"""
5406 return _controls_.TreeCtrl_GetFirstChild(*args, **kwargs)
5407
5408 def GetNextChild(*args, **kwargs):
5409 """GetNextChild(self, TreeItemId item, void cookie) -> PyObject"""
5410 return _controls_.TreeCtrl_GetNextChild(*args, **kwargs)
5411
5412 def GetLastChild(*args, **kwargs):
5413 """GetLastChild(self, TreeItemId item) -> TreeItemId"""
5414 return _controls_.TreeCtrl_GetLastChild(*args, **kwargs)
5415
5416 def GetNextSibling(*args, **kwargs):
5417 """GetNextSibling(self, TreeItemId item) -> TreeItemId"""
5418 return _controls_.TreeCtrl_GetNextSibling(*args, **kwargs)
5419
5420 def GetPrevSibling(*args, **kwargs):
5421 """GetPrevSibling(self, TreeItemId item) -> TreeItemId"""
5422 return _controls_.TreeCtrl_GetPrevSibling(*args, **kwargs)
5423
5424 def GetFirstVisibleItem(*args, **kwargs):
5425 """GetFirstVisibleItem(self) -> TreeItemId"""
5426 return _controls_.TreeCtrl_GetFirstVisibleItem(*args, **kwargs)
5427
5428 def GetNextVisible(*args, **kwargs):
5429 """GetNextVisible(self, TreeItemId item) -> TreeItemId"""
5430 return _controls_.TreeCtrl_GetNextVisible(*args, **kwargs)
5431
5432 def GetPrevVisible(*args, **kwargs):
5433 """GetPrevVisible(self, TreeItemId item) -> TreeItemId"""
5434 return _controls_.TreeCtrl_GetPrevVisible(*args, **kwargs)
5435
5436 def AddRoot(*args, **kwargs):
5437 """AddRoot(self, String text, int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId"""
5438 return _controls_.TreeCtrl_AddRoot(*args, **kwargs)
5439
5440 def PrependItem(*args, **kwargs):
5441 """
5442 PrependItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5443 TreeItemData data=None) -> TreeItemId
5444 """
5445 return _controls_.TreeCtrl_PrependItem(*args, **kwargs)
5446
5447 def InsertItem(*args, **kwargs):
5448 """
5449 InsertItem(self, TreeItemId parent, TreeItemId idPrevious, String text,
5450 int image=-1, int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5451 """
5452 return _controls_.TreeCtrl_InsertItem(*args, **kwargs)
5453
5454 def InsertItemBefore(*args, **kwargs):
5455 """
5456 InsertItemBefore(self, TreeItemId parent, size_t index, String text, int image=-1,
5457 int selectedImage=-1, TreeItemData data=None) -> TreeItemId
5458 """
5459 return _controls_.TreeCtrl_InsertItemBefore(*args, **kwargs)
5460
5461 def AppendItem(*args, **kwargs):
5462 """
5463 AppendItem(self, TreeItemId parent, String text, int image=-1, int selectedImage=-1,
5464 TreeItemData data=None) -> TreeItemId
5465 """
5466 return _controls_.TreeCtrl_AppendItem(*args, **kwargs)
5467
5468 def Delete(*args, **kwargs):
5469 """Delete(self, TreeItemId item)"""
5470 return _controls_.TreeCtrl_Delete(*args, **kwargs)
5471
5472 def DeleteChildren(*args, **kwargs):
5473 """DeleteChildren(self, TreeItemId item)"""
5474 return _controls_.TreeCtrl_DeleteChildren(*args, **kwargs)
5475
5476 def DeleteAllItems(*args, **kwargs):
5477 """DeleteAllItems(self)"""
5478 return _controls_.TreeCtrl_DeleteAllItems(*args, **kwargs)
5479
5480 def Expand(*args, **kwargs):
5481 """Expand(self, TreeItemId item)"""
5482 return _controls_.TreeCtrl_Expand(*args, **kwargs)
5483
5484 def Collapse(*args, **kwargs):
5485 """Collapse(self, TreeItemId item)"""
5486 return _controls_.TreeCtrl_Collapse(*args, **kwargs)
5487
5488 def CollapseAndReset(*args, **kwargs):
5489 """CollapseAndReset(self, TreeItemId item)"""
5490 return _controls_.TreeCtrl_CollapseAndReset(*args, **kwargs)
5491
5492 def Toggle(*args, **kwargs):
5493 """Toggle(self, TreeItemId item)"""
5494 return _controls_.TreeCtrl_Toggle(*args, **kwargs)
5495
5496 def Unselect(*args, **kwargs):
5497 """Unselect(self)"""
5498 return _controls_.TreeCtrl_Unselect(*args, **kwargs)
5499
5500 def UnselectItem(*args, **kwargs):
5501 """UnselectItem(self, TreeItemId item)"""
5502 return _controls_.TreeCtrl_UnselectItem(*args, **kwargs)
5503
5504 def UnselectAll(*args, **kwargs):
5505 """UnselectAll(self)"""
5506 return _controls_.TreeCtrl_UnselectAll(*args, **kwargs)
5507
5508 def SelectItem(*args, **kwargs):
5509 """SelectItem(self, TreeItemId item, bool select=True)"""
5510 return _controls_.TreeCtrl_SelectItem(*args, **kwargs)
5511
5512 def ToggleItemSelection(*args, **kwargs):
5513 """ToggleItemSelection(self, TreeItemId item)"""
5514 return _controls_.TreeCtrl_ToggleItemSelection(*args, **kwargs)
5515
5516 def EnsureVisible(*args, **kwargs):
5517 """EnsureVisible(self, TreeItemId item)"""
5518 return _controls_.TreeCtrl_EnsureVisible(*args, **kwargs)
5519
5520 def ScrollTo(*args, **kwargs):
5521 """ScrollTo(self, TreeItemId item)"""
5522 return _controls_.TreeCtrl_ScrollTo(*args, **kwargs)
5523
5524 def EditLabel(*args, **kwargs):
5525 """EditLabel(self, TreeItemId item)"""
5526 return _controls_.TreeCtrl_EditLabel(*args, **kwargs)
5527
5528 def GetEditControl(*args, **kwargs):
5529 """GetEditControl(self) -> TextCtrl"""
5530 return _controls_.TreeCtrl_GetEditControl(*args, **kwargs)
5531
5532 def SortChildren(*args, **kwargs):
5533 """SortChildren(self, TreeItemId item)"""
5534 return _controls_.TreeCtrl_SortChildren(*args, **kwargs)
5535
5536 def HitTest(*args, **kwargs):
5537 """
5538 HitTest(Point point) -> (item, where)
5539
5540 Determine which item (if any) belongs the given point. The coordinates
5541 specified are relative to the client area of tree ctrl and the where return
5542 value is set to a bitmask of wxTREE_HITTEST_xxx constants.
5543
5544 """
5545 return _controls_.TreeCtrl_HitTest(*args, **kwargs)
5546
5547 def GetBoundingRect(*args, **kwargs):
5548 """GetBoundingRect(self, TreeItemId item, bool textOnly=False) -> PyObject"""
5549 return _controls_.TreeCtrl_GetBoundingRect(*args, **kwargs)
5550
5551 def GetClassDefaultAttributes(*args, **kwargs):
5552 """
5553 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5554
5555 Get the default attributes for this class. This is useful if you want
5556 to use the same font or colour in your own control as in a standard
5557 control -- which is a much better idea than hard coding specific
5558 colours or fonts which might look completely out of place on the
5559 user's system, especially if it uses themes.
5560
5561 The variant parameter is only relevant under Mac currently and is
5562 ignore under other platforms. Under Mac, it will change the size of
5563 the returned font. See `wx.Window.SetWindowVariant` for more about
5564 this.
5565 """
5566 return _controls_.TreeCtrl_GetClassDefaultAttributes(*args, **kwargs)
5567
5568 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
5569
5570 class TreeCtrlPtr(TreeCtrl):
5571 def __init__(self, this):
5572 self.this = this
5573 if not hasattr(self,"thisown"): self.thisown = 0
5574 self.__class__ = TreeCtrl
5575 _controls_.TreeCtrl_swigregister(TreeCtrlPtr)
5576
5577 def PreTreeCtrl(*args, **kwargs):
5578 """PreTreeCtrl() -> TreeCtrl"""
5579 val = _controls_.new_PreTreeCtrl(*args, **kwargs)
5580 val.thisown = 1
5581 return val
5582
5583 def TreeCtrl_GetClassDefaultAttributes(*args, **kwargs):
5584 """
5585 TreeCtrl_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
5586
5587 Get the default attributes for this class. This is useful if you want
5588 to use the same font or colour in your own control as in a standard
5589 control -- which is a much better idea than hard coding specific
5590 colours or fonts which might look completely out of place on the
5591 user's system, especially if it uses themes.
5592
5593 The variant parameter is only relevant under Mac currently and is
5594 ignore under other platforms. Under Mac, it will change the size of
5595 the returned font. See `wx.Window.SetWindowVariant` for more about
5596 this.
5597 """
5598 return _controls_.TreeCtrl_GetClassDefaultAttributes(*args, **kwargs)
5599
5600 #---------------------------------------------------------------------------
5601
5602 DIRCTRL_DIR_ONLY = _controls_.DIRCTRL_DIR_ONLY
5603 DIRCTRL_SELECT_FIRST = _controls_.DIRCTRL_SELECT_FIRST
5604 DIRCTRL_SHOW_FILTERS = _controls_.DIRCTRL_SHOW_FILTERS
5605 DIRCTRL_3D_INTERNAL = _controls_.DIRCTRL_3D_INTERNAL
5606 DIRCTRL_EDIT_LABELS = _controls_.DIRCTRL_EDIT_LABELS
5607 class GenericDirCtrl(_core.Control):
5608 """Proxy of C++ GenericDirCtrl class"""
5609 def __repr__(self):
5610 return "<%s.%s; proxy of C++ wxGenericDirCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
5611 def __init__(self, *args, **kwargs):
5612 """
5613 __init__(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5614 Point pos=DefaultPosition, Size size=DefaultSize,
5615 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5616 String filter=EmptyString,
5617 int defaultFilter=0, String name=TreeCtrlNameStr) -> GenericDirCtrl
5618 """
5619 newobj = _controls_.new_GenericDirCtrl(*args, **kwargs)
5620 self.this = newobj.this
5621 self.thisown = 1
5622 del newobj.thisown
5623 self._setOORInfo(self)
5624
5625 def Create(*args, **kwargs):
5626 """
5627 Create(self, Window parent, int id=-1, String dir=DirDialogDefaultFolderStr,
5628 Point pos=DefaultPosition, Size size=DefaultSize,
5629 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
5630 String filter=EmptyString,
5631 int defaultFilter=0, String name=TreeCtrlNameStr) -> bool
5632 """
5633 return _controls_.GenericDirCtrl_Create(*args, **kwargs)
5634
5635 def ExpandPath(*args, **kwargs):
5636 """ExpandPath(self, String path) -> bool"""
5637 return _controls_.GenericDirCtrl_ExpandPath(*args, **kwargs)
5638
5639 def GetDefaultPath(*args, **kwargs):
5640 """GetDefaultPath(self) -> String"""
5641 return _controls_.GenericDirCtrl_GetDefaultPath(*args, **kwargs)
5642
5643 def SetDefaultPath(*args, **kwargs):
5644 """SetDefaultPath(self, String path)"""
5645 return _controls_.GenericDirCtrl_SetDefaultPath(*args, **kwargs)
5646
5647 def GetPath(*args, **kwargs):
5648 """GetPath(self) -> String"""
5649 return _controls_.GenericDirCtrl_GetPath(*args, **kwargs)
5650
5651 def GetFilePath(*args, **kwargs):
5652 """GetFilePath(self) -> String"""
5653 return _controls_.GenericDirCtrl_GetFilePath(*args, **kwargs)
5654
5655 def SetPath(*args, **kwargs):
5656 """SetPath(self, String path)"""
5657 return _controls_.GenericDirCtrl_SetPath(*args, **kwargs)
5658
5659 def ShowHidden(*args, **kwargs):
5660 """ShowHidden(self, bool show)"""
5661 return _controls_.GenericDirCtrl_ShowHidden(*args, **kwargs)
5662
5663 def GetShowHidden(*args, **kwargs):
5664 """GetShowHidden(self) -> bool"""
5665 return _controls_.GenericDirCtrl_GetShowHidden(*args, **kwargs)
5666
5667 def GetFilter(*args, **kwargs):
5668 """GetFilter(self) -> String"""
5669 return _controls_.GenericDirCtrl_GetFilter(*args, **kwargs)
5670
5671 def SetFilter(*args, **kwargs):
5672 """SetFilter(self, String filter)"""
5673 return _controls_.GenericDirCtrl_SetFilter(*args, **kwargs)
5674
5675 def GetFilterIndex(*args, **kwargs):
5676 """GetFilterIndex(self) -> int"""
5677 return _controls_.GenericDirCtrl_GetFilterIndex(*args, **kwargs)
5678
5679 def SetFilterIndex(*args, **kwargs):
5680 """SetFilterIndex(self, int n)"""
5681 return _controls_.GenericDirCtrl_SetFilterIndex(*args, **kwargs)
5682
5683 def GetRootId(*args, **kwargs):
5684 """GetRootId(self) -> TreeItemId"""
5685 return _controls_.GenericDirCtrl_GetRootId(*args, **kwargs)
5686
5687 def GetTreeCtrl(*args, **kwargs):
5688 """GetTreeCtrl(self) -> TreeCtrl"""
5689 return _controls_.GenericDirCtrl_GetTreeCtrl(*args, **kwargs)
5690
5691 def GetFilterListCtrl(*args, **kwargs):
5692 """GetFilterListCtrl(self) -> DirFilterListCtrl"""
5693 return _controls_.GenericDirCtrl_GetFilterListCtrl(*args, **kwargs)
5694
5695 def FindChild(*args, **kwargs):
5696 """
5697 FindChild(wxTreeItemId parentId, wxString path) -> (item, done)
5698
5699 Find the child that matches the first part of 'path'. E.g. if a child
5700 path is "/usr" and 'path' is "/usr/include" then the child for
5701 /usr is returned. If the path string has been used (we're at the
5702 leaf), done is set to True.
5703
5704 """
5705 return _controls_.GenericDirCtrl_FindChild(*args, **kwargs)
5706
5707 def DoResize(*args, **kwargs):
5708 """DoResize(self)"""
5709 return _controls_.GenericDirCtrl_DoResize(*args, **kwargs)
5710
5711 def ReCreateTree(*args, **kwargs):
5712 """ReCreateTree(self)"""
5713 return _controls_.GenericDirCtrl_ReCreateTree(*args, **kwargs)
5714
5715
5716 class GenericDirCtrlPtr(GenericDirCtrl):
5717 def __init__(self, this):
5718 self.this = this
5719 if not hasattr(self,"thisown"): self.thisown = 0
5720 self.__class__ = GenericDirCtrl
5721 _controls_.GenericDirCtrl_swigregister(GenericDirCtrlPtr)
5722 DirDialogDefaultFolderStr = cvar.DirDialogDefaultFolderStr
5723
5724 def PreGenericDirCtrl(*args, **kwargs):
5725 """PreGenericDirCtrl() -> GenericDirCtrl"""
5726 val = _controls_.new_PreGenericDirCtrl(*args, **kwargs)
5727 val.thisown = 1
5728 return val
5729
5730 class DirFilterListCtrl(Choice):
5731 """Proxy of C++ DirFilterListCtrl class"""
5732 def __repr__(self):
5733 return "<%s.%s; proxy of C++ wxDirFilterListCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
5734 def __init__(self, *args, **kwargs):
5735 """
5736 __init__(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5737 Size size=DefaultSize, long style=0) -> DirFilterListCtrl
5738 """
5739 newobj = _controls_.new_DirFilterListCtrl(*args, **kwargs)
5740 self.this = newobj.this
5741 self.thisown = 1
5742 del newobj.thisown
5743 self._setOORInfo(self)
5744
5745 def Create(*args, **kwargs):
5746 """
5747 Create(self, GenericDirCtrl parent, int id=-1, Point pos=DefaultPosition,
5748 Size size=DefaultSize, long style=0) -> bool
5749 """
5750 return _controls_.DirFilterListCtrl_Create(*args, **kwargs)
5751
5752 def FillFilterList(*args, **kwargs):
5753 """FillFilterList(self, String filter, int defaultFilter)"""
5754 return _controls_.DirFilterListCtrl_FillFilterList(*args, **kwargs)
5755
5756
5757 class DirFilterListCtrlPtr(DirFilterListCtrl):
5758 def __init__(self, this):
5759 self.this = this
5760 if not hasattr(self,"thisown"): self.thisown = 0
5761 self.__class__ = DirFilterListCtrl
5762 _controls_.DirFilterListCtrl_swigregister(DirFilterListCtrlPtr)
5763
5764 def PreDirFilterListCtrl(*args, **kwargs):
5765 """PreDirFilterListCtrl() -> DirFilterListCtrl"""
5766 val = _controls_.new_PreDirFilterListCtrl(*args, **kwargs)
5767 val.thisown = 1
5768 return val
5769
5770 #---------------------------------------------------------------------------
5771
5772 class PyControl(_core.Control):
5773 """Proxy of C++ PyControl class"""
5774 def __repr__(self):
5775 return "<%s.%s; proxy of C++ wxPyControl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
5776 def __init__(self, *args, **kwargs):
5777 """
5778 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
5779 Size size=DefaultSize, long style=0, Validator validator=DefaultValidator,
5780 String name=ControlNameStr) -> PyControl
5781 """
5782 newobj = _controls_.new_PyControl(*args, **kwargs)
5783 self.this = newobj.this
5784 self.thisown = 1
5785 del newobj.thisown
5786 self._setOORInfo(self); self._setCallbackInfo(self, PyControl)
5787
5788 def _setCallbackInfo(*args, **kwargs):
5789 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
5790 return _controls_.PyControl__setCallbackInfo(*args, **kwargs)
5791
5792 def SetBestSize(*args, **kwargs):
5793 """SetBestSize(self, Size size)"""
5794 return _controls_.PyControl_SetBestSize(*args, **kwargs)
5795
5796 def base_DoMoveWindow(*args, **kwargs):
5797 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
5798 return _controls_.PyControl_base_DoMoveWindow(*args, **kwargs)
5799
5800 def base_DoSetSize(*args, **kwargs):
5801 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
5802 return _controls_.PyControl_base_DoSetSize(*args, **kwargs)
5803
5804 def base_DoSetClientSize(*args, **kwargs):
5805 """base_DoSetClientSize(self, int width, int height)"""
5806 return _controls_.PyControl_base_DoSetClientSize(*args, **kwargs)
5807
5808 def base_DoSetVirtualSize(*args, **kwargs):
5809 """base_DoSetVirtualSize(self, int x, int y)"""
5810 return _controls_.PyControl_base_DoSetVirtualSize(*args, **kwargs)
5811
5812 def base_DoGetSize(*args, **kwargs):
5813 """base_DoGetSize() -> (width, height)"""
5814 return _controls_.PyControl_base_DoGetSize(*args, **kwargs)
5815
5816 def base_DoGetClientSize(*args, **kwargs):
5817 """base_DoGetClientSize() -> (width, height)"""
5818 return _controls_.PyControl_base_DoGetClientSize(*args, **kwargs)
5819
5820 def base_DoGetPosition(*args, **kwargs):
5821 """base_DoGetPosition() -> (x,y)"""
5822 return _controls_.PyControl_base_DoGetPosition(*args, **kwargs)
5823
5824 def base_DoGetVirtualSize(*args, **kwargs):
5825 """base_DoGetVirtualSize(self) -> Size"""
5826 return _controls_.PyControl_base_DoGetVirtualSize(*args, **kwargs)
5827
5828 def base_DoGetBestSize(*args, **kwargs):
5829 """base_DoGetBestSize(self) -> Size"""
5830 return _controls_.PyControl_base_DoGetBestSize(*args, **kwargs)
5831
5832 def base_InitDialog(*args, **kwargs):
5833 """base_InitDialog(self)"""
5834 return _controls_.PyControl_base_InitDialog(*args, **kwargs)
5835
5836 def base_TransferDataToWindow(*args, **kwargs):
5837 """base_TransferDataToWindow(self) -> bool"""
5838 return _controls_.PyControl_base_TransferDataToWindow(*args, **kwargs)
5839
5840 def base_TransferDataFromWindow(*args, **kwargs):
5841 """base_TransferDataFromWindow(self) -> bool"""
5842 return _controls_.PyControl_base_TransferDataFromWindow(*args, **kwargs)
5843
5844 def base_Validate(*args, **kwargs):
5845 """base_Validate(self) -> bool"""
5846 return _controls_.PyControl_base_Validate(*args, **kwargs)
5847
5848 def base_AcceptsFocus(*args, **kwargs):
5849 """base_AcceptsFocus(self) -> bool"""
5850 return _controls_.PyControl_base_AcceptsFocus(*args, **kwargs)
5851
5852 def base_AcceptsFocusFromKeyboard(*args, **kwargs):
5853 """base_AcceptsFocusFromKeyboard(self) -> bool"""
5854 return _controls_.PyControl_base_AcceptsFocusFromKeyboard(*args, **kwargs)
5855
5856 def base_GetMaxSize(*args, **kwargs):
5857 """base_GetMaxSize(self) -> Size"""
5858 return _controls_.PyControl_base_GetMaxSize(*args, **kwargs)
5859
5860 def base_AddChild(*args, **kwargs):
5861 """base_AddChild(self, Window child)"""
5862 return _controls_.PyControl_base_AddChild(*args, **kwargs)
5863
5864 def base_RemoveChild(*args, **kwargs):
5865 """base_RemoveChild(self, Window child)"""
5866 return _controls_.PyControl_base_RemoveChild(*args, **kwargs)
5867
5868 def base_ShouldInheritColours(*args, **kwargs):
5869 """base_ShouldInheritColours(self) -> bool"""
5870 return _controls_.PyControl_base_ShouldInheritColours(*args, **kwargs)
5871
5872 def base_ApplyParentThemeBackground(*args, **kwargs):
5873 """base_ApplyParentThemeBackground(self, Colour c)"""
5874 return _controls_.PyControl_base_ApplyParentThemeBackground(*args, **kwargs)
5875
5876 def base_GetDefaultAttributes(*args, **kwargs):
5877 """base_GetDefaultAttributes(self) -> VisualAttributes"""
5878 return _controls_.PyControl_base_GetDefaultAttributes(*args, **kwargs)
5879
5880
5881 class PyControlPtr(PyControl):
5882 def __init__(self, this):
5883 self.this = this
5884 if not hasattr(self,"thisown"): self.thisown = 0
5885 self.__class__ = PyControl
5886 _controls_.PyControl_swigregister(PyControlPtr)
5887
5888 def PrePyControl(*args, **kwargs):
5889 """PrePyControl() -> PyControl"""
5890 val = _controls_.new_PrePyControl(*args, **kwargs)
5891 val.thisown = 1
5892 return val
5893
5894 #---------------------------------------------------------------------------
5895
5896 FRAME_EX_CONTEXTHELP = _controls_.FRAME_EX_CONTEXTHELP
5897 DIALOG_EX_CONTEXTHELP = _controls_.DIALOG_EX_CONTEXTHELP
5898 wxEVT_HELP = _controls_.wxEVT_HELP
5899 wxEVT_DETAILED_HELP = _controls_.wxEVT_DETAILED_HELP
5900 EVT_HELP = wx.PyEventBinder( wxEVT_HELP, 1)
5901 EVT_HELP_RANGE = wx.PyEventBinder( wxEVT_HELP, 2)
5902 EVT_DETAILED_HELP = wx.PyEventBinder( wxEVT_DETAILED_HELP, 1)
5903 EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP, 2)
5904
5905 class HelpEvent(_core.CommandEvent):
5906 """
5907 A help event is sent when the user has requested context-sensitive
5908 help. This can either be caused by the application requesting
5909 context-sensitive help mode via wx.ContextHelp, or (on MS Windows) by
5910 the system generating a WM_HELP message when the user pressed F1 or
5911 clicked on the query button in a dialog caption.
5912
5913 A help event is sent to the window that the user clicked on, and is
5914 propagated up the window hierarchy until the event is processed or
5915 there are no more event handlers. The application should call
5916 event.GetId to check the identity of the clicked-on window, and then
5917 either show some suitable help or call event.Skip if the identifier is
5918 unrecognised. Calling Skip is important because it allows wxWindows to
5919 generate further events for ancestors of the clicked-on
5920 window. Otherwise it would be impossible to show help for container
5921 windows, since processing would stop after the first window found.
5922 """
5923 def __repr__(self):
5924 return "<%s.%s; proxy of C++ wxHelpEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
5925 def __init__(self, *args, **kwargs):
5926 """__init__(self, wxEventType type=wxEVT_NULL, int winid=0, Point pt=DefaultPosition) -> HelpEvent"""
5927 newobj = _controls_.new_HelpEvent(*args, **kwargs)
5928 self.this = newobj.this
5929 self.thisown = 1
5930 del newobj.thisown
5931 def GetPosition(*args, **kwargs):
5932 """
5933 GetPosition(self) -> Point
5934
5935 Returns the left-click position of the mouse, in screen
5936 coordinates. This allows the application to position the help
5937 appropriately.
5938 """
5939 return _controls_.HelpEvent_GetPosition(*args, **kwargs)
5940
5941 def SetPosition(*args, **kwargs):
5942 """
5943 SetPosition(self, Point pos)
5944
5945 Sets the left-click position of the mouse, in screen coordinates.
5946 """
5947 return _controls_.HelpEvent_SetPosition(*args, **kwargs)
5948
5949 def GetLink(*args, **kwargs):
5950 """
5951 GetLink(self) -> String
5952
5953 Get an optional link to further help
5954 """
5955 return _controls_.HelpEvent_GetLink(*args, **kwargs)
5956
5957 def SetLink(*args, **kwargs):
5958 """
5959 SetLink(self, String link)
5960
5961 Set an optional link to further help
5962 """
5963 return _controls_.HelpEvent_SetLink(*args, **kwargs)
5964
5965 def GetTarget(*args, **kwargs):
5966 """
5967 GetTarget(self) -> String
5968
5969 Get an optional target to display help in. E.g. a window specification
5970 """
5971 return _controls_.HelpEvent_GetTarget(*args, **kwargs)
5972
5973 def SetTarget(*args, **kwargs):
5974 """
5975 SetTarget(self, String target)
5976
5977 Set an optional target to display help in. E.g. a window specification
5978 """
5979 return _controls_.HelpEvent_SetTarget(*args, **kwargs)
5980
5981
5982 class HelpEventPtr(HelpEvent):
5983 def __init__(self, this):
5984 self.this = this
5985 if not hasattr(self,"thisown"): self.thisown = 0
5986 self.__class__ = HelpEvent
5987 _controls_.HelpEvent_swigregister(HelpEventPtr)
5988
5989 class ContextHelp(_core.Object):
5990 """
5991 This class changes the cursor to a query and puts the application into
5992 a 'context-sensitive help mode'. When the user left-clicks on a window
5993 within the specified window, a ``EVT_HELP`` event is sent to that
5994 control, and the application may respond to it by popping up some
5995 help.
5996
5997 There are a couple of ways to invoke this behaviour implicitly:
5998
5999 * Use the wx.DIALOG_EX_CONTEXTHELP extended style for a dialog
6000 (Windows only). This will put a question mark in the titlebar,
6001 and Windows will put the application into context-sensitive help
6002 mode automatically, with further programming.
6003
6004 * Create a `wx.ContextHelpButton`, whose predefined behaviour is
6005 to create a context help object. Normally you will write your
6006 application so that this button is only added to a dialog for
6007 non-Windows platforms (use ``wx.DIALOG_EX_CONTEXTHELP`` on
6008 Windows).
6009
6010 :see: `wx.ContextHelpButton`
6011
6012 """
6013 def __repr__(self):
6014 return "<%s.%s; proxy of C++ wxContextHelp instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
6015 def __init__(self, *args, **kwargs):
6016 """
6017 __init__(self, Window window=None, bool doNow=True) -> ContextHelp
6018
6019 Constructs a context help object, calling BeginContextHelp if doNow is
6020 true (the default).
6021
6022 If window is None, the top window is used.
6023 """
6024 newobj = _controls_.new_ContextHelp(*args, **kwargs)
6025 self.this = newobj.this
6026 self.thisown = 1
6027 del newobj.thisown
6028 def __del__(self, destroy=_controls_.delete_ContextHelp):
6029 """__del__(self)"""
6030 try:
6031 if self.thisown: destroy(self)
6032 except: pass
6033
6034 def BeginContextHelp(*args, **kwargs):
6035 """
6036 BeginContextHelp(self, Window window=None) -> bool
6037
6038 Puts the application into context-sensitive help mode. window is the
6039 window which will be used to catch events; if NULL, the top window
6040 will be used.
6041
6042 Returns true if the application was successfully put into
6043 context-sensitive help mode. This function only returns when the event
6044 loop has finished.
6045 """
6046 return _controls_.ContextHelp_BeginContextHelp(*args, **kwargs)
6047
6048 def EndContextHelp(*args, **kwargs):
6049 """
6050 EndContextHelp(self) -> bool
6051
6052 Ends context-sensitive help mode. Not normally called by the
6053 application.
6054 """
6055 return _controls_.ContextHelp_EndContextHelp(*args, **kwargs)
6056
6057
6058 class ContextHelpPtr(ContextHelp):
6059 def __init__(self, this):
6060 self.this = this
6061 if not hasattr(self,"thisown"): self.thisown = 0
6062 self.__class__ = ContextHelp
6063 _controls_.ContextHelp_swigregister(ContextHelpPtr)
6064
6065 class ContextHelpButton(BitmapButton):
6066 """
6067 Instances of this class may be used to add a question mark button that
6068 when pressed, puts the application into context-help mode. It does
6069 this by creating a wx.ContextHelp object which itself generates a
6070 ``EVT_HELP`` event when the user clicks on a window.
6071
6072 On Windows, you may add a question-mark icon to a dialog by use of the
6073 ``wx.DIALOG_EX_CONTEXTHELP`` extra style, but on other platforms you
6074 will have to add a button explicitly, usually next to OK, Cancel or
6075 similar buttons.
6076
6077 :see: `wx.ContextHelp`, `wx.ContextHelpButton`
6078
6079 """
6080 def __repr__(self):
6081 return "<%s.%s; proxy of C++ wxContextHelpButton instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
6082 def __init__(self, *args, **kwargs):
6083 """
6084 __init__(self, Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
6085 Size size=DefaultSize, long style=BU_AUTODRAW) -> ContextHelpButton
6086
6087 Constructor, creating and showing a context help button.
6088 """
6089 newobj = _controls_.new_ContextHelpButton(*args, **kwargs)
6090 self.this = newobj.this
6091 self.thisown = 1
6092 del newobj.thisown
6093 self._setOORInfo(self)
6094
6095
6096 class ContextHelpButtonPtr(ContextHelpButton):
6097 def __init__(self, this):
6098 self.this = this
6099 if not hasattr(self,"thisown"): self.thisown = 0
6100 self.__class__ = ContextHelpButton
6101 _controls_.ContextHelpButton_swigregister(ContextHelpButtonPtr)
6102
6103 class HelpProvider(object):
6104 """
6105 wx.HelpProvider is an abstract class used by a program
6106 implementing context-sensitive help to show the help text for the
6107 given window.
6108
6109 The current help provider must be explicitly set by the
6110 application using wx.HelpProvider.Set().
6111 """
6112 def __init__(self): raise RuntimeError, "No constructor defined"
6113 def __repr__(self):
6114 return "<%s.%s; proxy of C++ wxHelpProvider instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
6115 def Set(*args, **kwargs):
6116 """
6117 Set(HelpProvider helpProvider) -> HelpProvider
6118
6119 Sset the current, application-wide help provider. Returns the previous
6120 one. Unlike some other classes, the help provider is not created on
6121 demand. This must be explicitly done by the application.
6122 """
6123 return _controls_.HelpProvider_Set(*args, **kwargs)
6124
6125 Set = staticmethod(Set)
6126 def Get(*args, **kwargs):
6127 """
6128 Get() -> HelpProvider
6129
6130 Return the current application-wide help provider.
6131 """
6132 return _controls_.HelpProvider_Get(*args, **kwargs)
6133
6134 Get = staticmethod(Get)
6135 def GetHelp(*args, **kwargs):
6136 """
6137 GetHelp(self, Window window) -> String
6138
6139 Gets the help string for this window. Its interpretation is dependent
6140 on the help provider except that empty string always means that no
6141 help is associated with the window.
6142 """
6143 return _controls_.HelpProvider_GetHelp(*args, **kwargs)
6144
6145 def ShowHelp(*args, **kwargs):
6146 """
6147 ShowHelp(self, Window window) -> bool
6148
6149 Shows help for the given window. Uses GetHelp internally if
6150 applicable. Returns True if it was done, or False if no help was
6151 available for this window.
6152 """
6153 return _controls_.HelpProvider_ShowHelp(*args, **kwargs)
6154
6155 def AddHelp(*args, **kwargs):
6156 """
6157 AddHelp(self, Window window, String text)
6158
6159 Associates the text with the given window.
6160 """
6161 return _controls_.HelpProvider_AddHelp(*args, **kwargs)
6162
6163 def AddHelpById(*args, **kwargs):
6164 """
6165 AddHelpById(self, int id, String text)
6166
6167 This version associates the given text with all windows with this
6168 id. May be used to set the same help string for all Cancel buttons in
6169 the application, for example.
6170 """
6171 return _controls_.HelpProvider_AddHelpById(*args, **kwargs)
6172
6173 def RemoveHelp(*args, **kwargs):
6174 """
6175 RemoveHelp(self, Window window)
6176
6177 Removes the association between the window pointer and the help
6178 text. This is called by the wx.Window destructor. Without this, the
6179 table of help strings will fill up and when window pointers are
6180 reused, the wrong help string will be found.
6181 """
6182 return _controls_.HelpProvider_RemoveHelp(*args, **kwargs)
6183
6184 def Destroy(*args, **kwargs):
6185 """Destroy(self)"""
6186 return _controls_.HelpProvider_Destroy(*args, **kwargs)
6187
6188
6189 class HelpProviderPtr(HelpProvider):
6190 def __init__(self, this):
6191 self.this = this
6192 if not hasattr(self,"thisown"): self.thisown = 0
6193 self.__class__ = HelpProvider
6194 _controls_.HelpProvider_swigregister(HelpProviderPtr)
6195
6196 def HelpProvider_Set(*args, **kwargs):
6197 """
6198 HelpProvider_Set(HelpProvider helpProvider) -> HelpProvider
6199
6200 Sset the current, application-wide help provider. Returns the previous
6201 one. Unlike some other classes, the help provider is not created on
6202 demand. This must be explicitly done by the application.
6203 """
6204 return _controls_.HelpProvider_Set(*args, **kwargs)
6205
6206 def HelpProvider_Get(*args, **kwargs):
6207 """
6208 HelpProvider_Get() -> HelpProvider
6209
6210 Return the current application-wide help provider.
6211 """
6212 return _controls_.HelpProvider_Get(*args, **kwargs)
6213
6214 class SimpleHelpProvider(HelpProvider):
6215 """
6216 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6217 supports only plain text help strings, and shows the string associated
6218 with the control (if any) in a tooltip.
6219 """
6220 def __repr__(self):
6221 return "<%s.%s; proxy of C++ wxSimpleHelpProvider instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
6222 def __init__(self, *args, **kwargs):
6223 """
6224 __init__(self) -> SimpleHelpProvider
6225
6226 wx.SimpleHelpProvider is an implementation of `wx.HelpProvider` which
6227 supports only plain text help strings, and shows the string associated
6228 with the control (if any) in a tooltip.
6229 """
6230 newobj = _controls_.new_SimpleHelpProvider(*args, **kwargs)
6231 self.this = newobj.this
6232 self.thisown = 1
6233 del newobj.thisown
6234
6235 class SimpleHelpProviderPtr(SimpleHelpProvider):
6236 def __init__(self, this):
6237 self.this = this
6238 if not hasattr(self,"thisown"): self.thisown = 0
6239 self.__class__ = SimpleHelpProvider
6240 _controls_.SimpleHelpProvider_swigregister(SimpleHelpProviderPtr)
6241
6242 #---------------------------------------------------------------------------
6243
6244 class DragImage(_core.Object):
6245 """Proxy of C++ DragImage class"""
6246 def __repr__(self):
6247 return "<%s.%s; proxy of C++ wxGenericDragImage instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
6248 def __init__(self, *args, **kwargs):
6249 """__init__(self, Bitmap image, Cursor cursor=wxNullCursor) -> DragImage"""
6250 newobj = _controls_.new_DragImage(*args, **kwargs)
6251 self.this = newobj.this
6252 self.thisown = 1
6253 del newobj.thisown
6254 def __del__(self, destroy=_controls_.delete_DragImage):
6255 """__del__(self)"""
6256 try:
6257 if self.thisown: destroy(self)
6258 except: pass
6259
6260 def SetBackingBitmap(*args, **kwargs):
6261 """SetBackingBitmap(self, Bitmap bitmap)"""
6262 return _controls_.DragImage_SetBackingBitmap(*args, **kwargs)
6263
6264 def BeginDrag(*args, **kwargs):
6265 """
6266 BeginDrag(self, Point hotspot, Window window, bool fullScreen=False,
6267 Rect rect=None) -> bool
6268 """
6269 return _controls_.DragImage_BeginDrag(*args, **kwargs)
6270
6271 def BeginDragBounded(*args, **kwargs):
6272 """BeginDragBounded(self, Point hotspot, Window window, Window boundingWindow) -> bool"""
6273 return _controls_.DragImage_BeginDragBounded(*args, **kwargs)
6274
6275 def EndDrag(*args, **kwargs):
6276 """EndDrag(self) -> bool"""
6277 return _controls_.DragImage_EndDrag(*args, **kwargs)
6278
6279 def Move(*args, **kwargs):
6280 """Move(self, Point pt) -> bool"""
6281 return _controls_.DragImage_Move(*args, **kwargs)
6282
6283 def Show(*args, **kwargs):
6284 """Show(self) -> bool"""
6285 return _controls_.DragImage_Show(*args, **kwargs)
6286
6287 def Hide(*args, **kwargs):
6288 """Hide(self) -> bool"""
6289 return _controls_.DragImage_Hide(*args, **kwargs)
6290
6291 def GetImageRect(*args, **kwargs):
6292 """GetImageRect(self, Point pos) -> Rect"""
6293 return _controls_.DragImage_GetImageRect(*args, **kwargs)
6294
6295 def DoDrawImage(*args, **kwargs):
6296 """DoDrawImage(self, DC dc, Point pos) -> bool"""
6297 return _controls_.DragImage_DoDrawImage(*args, **kwargs)
6298
6299 def UpdateBackingFromWindow(*args, **kwargs):
6300 """UpdateBackingFromWindow(self, DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -> bool"""
6301 return _controls_.DragImage_UpdateBackingFromWindow(*args, **kwargs)
6302
6303 def RedrawImage(*args, **kwargs):
6304 """RedrawImage(self, Point oldPos, Point newPos, bool eraseOld, bool drawNew) -> bool"""
6305 return _controls_.DragImage_RedrawImage(*args, **kwargs)
6306
6307
6308 class DragImagePtr(DragImage):
6309 def __init__(self, this):
6310 self.this = this
6311 if not hasattr(self,"thisown"): self.thisown = 0
6312 self.__class__ = DragImage
6313 _controls_.DragImage_swigregister(DragImagePtr)
6314
6315 def DragIcon(*args, **kwargs):
6316 """DragIcon(Icon image, Cursor cursor=wxNullCursor) -> DragImage"""
6317 val = _controls_.new_DragIcon(*args, **kwargs)
6318 val.thisown = 1
6319 return val
6320
6321 def DragString(*args, **kwargs):
6322 """DragString(String str, Cursor cursor=wxNullCursor) -> DragImage"""
6323 val = _controls_.new_DragString(*args, **kwargs)
6324 val.thisown = 1
6325 return val
6326
6327 def DragTreeItem(*args, **kwargs):
6328 """DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -> DragImage"""
6329 val = _controls_.new_DragTreeItem(*args, **kwargs)
6330 val.thisown = 1
6331 return val
6332
6333 def DragListItem(*args, **kwargs):
6334 """DragListItem(ListCtrl listCtrl, long id) -> DragImage"""
6335 val = _controls_.new_DragListItem(*args, **kwargs)
6336 val.thisown = 1
6337 return val
6338
6339 #---------------------------------------------------------------------------
6340
6341 DP_DEFAULT = _controls_.DP_DEFAULT
6342 DP_SPIN = _controls_.DP_SPIN
6343 DP_DROPDOWN = _controls_.DP_DROPDOWN
6344 DP_SHOWCENTURY = _controls_.DP_SHOWCENTURY
6345 DP_ALLOWNONE = _controls_.DP_ALLOWNONE
6346 class DatePickerCtrl(_core.Control):
6347 """
6348 This control allows the user to select a date. Unlike
6349 `wx.calendar.CalendarCtrl`, which is a relatively big control,
6350 `wx.DatePickerCtrl` is implemented as a small window showing the
6351 currently selected date. The control can be edited using the keyboard,
6352 and can also display a popup window for more user-friendly date
6353 selection, depending on the styles used and the platform.
6354 """
6355 def __repr__(self):
6356 return "<%s.%s; proxy of C++ wxDatePickerCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
6357 def __init__(self, *args, **kwargs):
6358 """
6359 __init__(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6360 Point pos=DefaultPosition, Size size=DefaultSize,
6361 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6362 Validator validator=DefaultValidator,
6363 String name=DatePickerCtrlNameStr) -> DatePickerCtrl
6364
6365 Create a new DatePickerCtrl.
6366 """
6367 newobj = _controls_.new_DatePickerCtrl(*args, **kwargs)
6368 self.this = newobj.this
6369 self.thisown = 1
6370 del newobj.thisown
6371 self._setOORInfo(self)
6372
6373 def Create(*args, **kwargs):
6374 """
6375 Create(self, Window parent, int id=-1, DateTime dt=wxDefaultDateTime,
6376 Point pos=DefaultPosition, Size size=DefaultSize,
6377 long style=wxDP_DEFAULT|wxDP_SHOWCENTURY,
6378 Validator validator=DefaultValidator,
6379 String name=DatePickerCtrlNameStr) -> bool
6380
6381 Create the GUI parts of the DatePickerCtrl, for use in 2-phase
6382 creation.
6383 """
6384 return _controls_.DatePickerCtrl_Create(*args, **kwargs)
6385
6386 def SetValue(*args, **kwargs):
6387 """
6388 SetValue(self, DateTime dt)
6389
6390 Changes the current value of the control. The date should be valid and
6391 included in the currently selected range, if any.
6392
6393 Calling this method does not result in a date change event.
6394 """
6395 return _controls_.DatePickerCtrl_SetValue(*args, **kwargs)
6396
6397 def GetValue(*args, **kwargs):
6398 """
6399 GetValue(self) -> DateTime
6400
6401 Returns the currently selected date. If there is no selection or the
6402 selection is outside of the current range, an invalid `wx.DateTime`
6403 object is returned.
6404 """
6405 return _controls_.DatePickerCtrl_GetValue(*args, **kwargs)
6406
6407 def SetRange(*args, **kwargs):
6408 """
6409 SetRange(self, DateTime dt1, DateTime dt2)
6410
6411 Sets the valid range for the date selection. If dt1 is valid, it
6412 becomes the earliest date (inclusive) accepted by the control. If dt2
6413 is valid, it becomes the latest possible date.
6414
6415 If the current value of the control is outside of the newly set range
6416 bounds, the behaviour is undefined.
6417 """
6418 return _controls_.DatePickerCtrl_SetRange(*args, **kwargs)
6419
6420 def GetLowerLimit(*args, **kwargs):
6421 """
6422 GetLowerLimit(self) -> DateTime
6423
6424 Get the lower limit of the valid range for the date selection, if any.
6425 If there is no range or there is no lower limit, then the
6426 `wx.DateTime` value returned will be invalid.
6427 """
6428 return _controls_.DatePickerCtrl_GetLowerLimit(*args, **kwargs)
6429
6430 def GetUpperLimit(*args, **kwargs):
6431 """
6432 GetUpperLimit(self) -> DateTime
6433
6434 Get the upper limit of the valid range for the date selection, if any.
6435 If there is no range or there is no upper limit, then the
6436 `wx.DateTime` value returned will be invalid.
6437 """
6438 return _controls_.DatePickerCtrl_GetUpperLimit(*args, **kwargs)
6439
6440
6441 class DatePickerCtrlPtr(DatePickerCtrl):
6442 def __init__(self, this):
6443 self.this = this
6444 if not hasattr(self,"thisown"): self.thisown = 0
6445 self.__class__ = DatePickerCtrl
6446 _controls_.DatePickerCtrl_swigregister(DatePickerCtrlPtr)
6447 DatePickerCtrlNameStr = cvar.DatePickerCtrlNameStr
6448
6449 def PreDatePickerCtrl(*args, **kwargs):
6450 """
6451 PreDatePickerCtrl() -> DatePickerCtrl
6452
6453 Precreate a DatePickerCtrl for use in 2-phase creation.
6454 """
6455 val = _controls_.new_PreDatePickerCtrl(*args, **kwargs)
6456 val.thisown = 1
6457 return val
6458
6459