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