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