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