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