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