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