]>
Commit | Line | Data |
---|---|---|
554f62e9 | 1 | # This file was created automatically by SWIG 1.3.29. |
d55e5bfc RD |
2 | # Don't modify this file, modify the SWIG interface instead. |
3 | ||
4 | import _windows_ | |
554f62e9 RD |
5 | import new |
6 | new_instancemethod = new.instancemethod | |
093d3ff1 | 7 | def _swig_setattr_nondynamic(self,class_type,name,value,static=1): |
554f62e9 | 8 | if (name == "thisown"): return self.this.own(value) |
093d3ff1 | 9 | if (name == "this"): |
554f62e9 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) | |
554f62e9 | 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): | |
554f62e9 | 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 | ||
554f62e9 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): | |
554f62e9 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 | ||
d55e5bfc RD |
54 | import _core |
55 | wx = _core | |
d55e5bfc RD |
56 | #--------------------------------------------------------------------------- |
57 | ||
58 | class Panel(_core.Window): | |
093d3ff1 | 59 | """Proxy of C++ Panel class""" |
554f62e9 RD |
60 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
61 | __repr__ = _swig_repr | |
62 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
63 | """ |
64 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
65 | Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER, | |
66 | String name=PanelNameStr) -> Panel | |
67 | """ | |
554f62e9 | 68 | _windows_.Panel_swiginit(self,_windows_.new_Panel(*args, **kwargs)) |
d55e5bfc RD |
69 | self._setOORInfo(self) |
70 | ||
71 | def Create(*args, **kwargs): | |
72 | """ | |
73 | Create(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
74 | Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER, | |
75 | String name=PanelNameStr) -> bool | |
354693ff RD |
76 | |
77 | Create the GUI part of the Window for 2-phase creation mode. | |
d55e5bfc RD |
78 | """ |
79 | return _windows_.Panel_Create(*args, **kwargs) | |
80 | ||
b519803b RD |
81 | def SetFocusIgnoringChildren(*args, **kwargs): |
82 | """ | |
83 | SetFocusIgnoringChildren(self) | |
84 | ||
85 | In contrast to `SetFocus` (see above) this will set the focus to the | |
86 | panel even of there are child windows in the panel. This is only | |
87 | rarely needed. | |
88 | """ | |
89 | return _windows_.Panel_SetFocusIgnoringChildren(*args, **kwargs) | |
90 | ||
f20a2e1f RD |
91 | def GetClassDefaultAttributes(*args, **kwargs): |
92 | """ | |
93 | GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes | |
94 | ||
79fccf9d RD |
95 | Get the default attributes for this class. This is useful if you want |
96 | to use the same font or colour in your own control as in a standard | |
97 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
98 | colours or fonts which might look completely out of place on the |
99 | user's system, especially if it uses themes. | |
f20a2e1f RD |
100 | |
101 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 102 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
103 | the returned font. See `wx.Window.SetWindowVariant` for more about |
104 | this. | |
f20a2e1f RD |
105 | """ |
106 | return _windows_.Panel_GetClassDefaultAttributes(*args, **kwargs) | |
107 | ||
108 | GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes) | |
2131d850 | 109 | _windows_.Panel_swigregister(Panel) |
d55e5bfc RD |
110 | |
111 | def PrePanel(*args, **kwargs): | |
112 | """PrePanel() -> Panel""" | |
113 | val = _windows_.new_PrePanel(*args, **kwargs) | |
d55e5bfc RD |
114 | return val |
115 | ||
f20a2e1f | 116 | def Panel_GetClassDefaultAttributes(*args, **kwargs): |
554f62e9 | 117 | """ |
f20a2e1f RD |
118 | Panel_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes |
119 | ||
79fccf9d RD |
120 | Get the default attributes for this class. This is useful if you want |
121 | to use the same font or colour in your own control as in a standard | |
122 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
123 | colours or fonts which might look completely out of place on the |
124 | user's system, especially if it uses themes. | |
f20a2e1f RD |
125 | |
126 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 127 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
128 | the returned font. See `wx.Window.SetWindowVariant` for more about |
129 | this. | |
f20a2e1f | 130 | """ |
554f62e9 | 131 | return _windows_.Panel_GetClassDefaultAttributes(*args, **kwargs) |
f20a2e1f | 132 | |
d55e5bfc RD |
133 | #--------------------------------------------------------------------------- |
134 | ||
135 | class ScrolledWindow(Panel): | |
093d3ff1 | 136 | """Proxy of C++ ScrolledWindow class""" |
554f62e9 RD |
137 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
138 | __repr__ = _swig_repr | |
139 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
140 | """ |
141 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
142 | Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL, | |
143 | String name=PanelNameStr) -> ScrolledWindow | |
144 | """ | |
554f62e9 | 145 | _windows_.ScrolledWindow_swiginit(self,_windows_.new_ScrolledWindow(*args, **kwargs)) |
d55e5bfc RD |
146 | self._setOORInfo(self) |
147 | ||
148 | def Create(*args, **kwargs): | |
149 | """ | |
150 | Create(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
151 | Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL, | |
152 | String name=PanelNameStr) -> bool | |
354693ff RD |
153 | |
154 | Create the GUI part of the Window for 2-phase creation mode. | |
d55e5bfc RD |
155 | """ |
156 | return _windows_.ScrolledWindow_Create(*args, **kwargs) | |
157 | ||
158 | def SetScrollbars(*args, **kwargs): | |
159 | """ | |
160 | SetScrollbars(self, int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX, | |
161 | int noUnitsY, int xPos=0, int yPos=0, bool noRefresh=False) | |
162 | """ | |
163 | return _windows_.ScrolledWindow_SetScrollbars(*args, **kwargs) | |
164 | ||
165 | def Scroll(*args, **kwargs): | |
166 | """Scroll(self, int x, int y)""" | |
167 | return _windows_.ScrolledWindow_Scroll(*args, **kwargs) | |
168 | ||
169 | def GetScrollPageSize(*args, **kwargs): | |
170 | """GetScrollPageSize(self, int orient) -> int""" | |
171 | return _windows_.ScrolledWindow_GetScrollPageSize(*args, **kwargs) | |
172 | ||
173 | def SetScrollPageSize(*args, **kwargs): | |
174 | """SetScrollPageSize(self, int orient, int pageSize)""" | |
175 | return _windows_.ScrolledWindow_SetScrollPageSize(*args, **kwargs) | |
176 | ||
177 | def SetScrollRate(*args, **kwargs): | |
178 | """SetScrollRate(self, int xstep, int ystep)""" | |
179 | return _windows_.ScrolledWindow_SetScrollRate(*args, **kwargs) | |
180 | ||
181 | def GetScrollPixelsPerUnit(*args, **kwargs): | |
a001823c RD |
182 | """ |
183 | GetScrollPixelsPerUnit() -> (xUnit, yUnit) | |
184 | ||
185 | Get the size of one logical unit in physical units. | |
186 | """ | |
d55e5bfc RD |
187 | return _windows_.ScrolledWindow_GetScrollPixelsPerUnit(*args, **kwargs) |
188 | ||
189 | def EnableScrolling(*args, **kwargs): | |
190 | """EnableScrolling(self, bool x_scrolling, bool y_scrolling)""" | |
191 | return _windows_.ScrolledWindow_EnableScrolling(*args, **kwargs) | |
192 | ||
193 | def GetViewStart(*args, **kwargs): | |
a001823c RD |
194 | """ |
195 | GetViewStart() -> (x,y) | |
196 | ||
197 | Get the view start | |
198 | """ | |
d55e5bfc RD |
199 | return _windows_.ScrolledWindow_GetViewStart(*args, **kwargs) |
200 | ||
201 | def SetScale(*args, **kwargs): | |
202 | """SetScale(self, double xs, double ys)""" | |
203 | return _windows_.ScrolledWindow_SetScale(*args, **kwargs) | |
204 | ||
205 | def GetScaleX(*args, **kwargs): | |
206 | """GetScaleX(self) -> double""" | |
207 | return _windows_.ScrolledWindow_GetScaleX(*args, **kwargs) | |
208 | ||
209 | def GetScaleY(*args, **kwargs): | |
210 | """GetScaleY(self) -> double""" | |
211 | return _windows_.ScrolledWindow_GetScaleY(*args, **kwargs) | |
212 | ||
213 | def CalcScrolledPosition(*args): | |
214 | """ | |
215 | CalcScrolledPosition(self, Point pt) -> Point | |
216 | CalcScrolledPosition(int x, int y) -> (sx, sy) | |
217 | ||
218 | Translate between scrolled and unscrolled coordinates. | |
219 | """ | |
220 | return _windows_.ScrolledWindow_CalcScrolledPosition(*args) | |
221 | ||
222 | def CalcUnscrolledPosition(*args): | |
223 | """ | |
224 | CalcUnscrolledPosition(self, Point pt) -> Point | |
225 | CalcUnscrolledPosition(int x, int y) -> (ux, uy) | |
226 | ||
227 | Translate between scrolled and unscrolled coordinates. | |
228 | """ | |
229 | return _windows_.ScrolledWindow_CalcUnscrolledPosition(*args) | |
230 | ||
231 | def AdjustScrollbars(*args, **kwargs): | |
232 | """AdjustScrollbars(self)""" | |
233 | return _windows_.ScrolledWindow_AdjustScrollbars(*args, **kwargs) | |
234 | ||
235 | def CalcScrollInc(*args, **kwargs): | |
236 | """CalcScrollInc(self, ScrollWinEvent event) -> int""" | |
237 | return _windows_.ScrolledWindow_CalcScrollInc(*args, **kwargs) | |
238 | ||
239 | def SetTargetWindow(*args, **kwargs): | |
240 | """SetTargetWindow(self, Window target)""" | |
241 | return _windows_.ScrolledWindow_SetTargetWindow(*args, **kwargs) | |
242 | ||
243 | def GetTargetWindow(*args, **kwargs): | |
244 | """GetTargetWindow(self) -> Window""" | |
245 | return _windows_.ScrolledWindow_GetTargetWindow(*args, **kwargs) | |
246 | ||
247 | def SetTargetRect(*args, **kwargs): | |
248 | """SetTargetRect(self, Rect rect)""" | |
249 | return _windows_.ScrolledWindow_SetTargetRect(*args, **kwargs) | |
250 | ||
251 | def GetTargetRect(*args, **kwargs): | |
252 | """GetTargetRect(self) -> Rect""" | |
253 | return _windows_.ScrolledWindow_GetTargetRect(*args, **kwargs) | |
254 | ||
f5b96ee1 RD |
255 | def DoPrepareDC(*args, **kwargs): |
256 | """ | |
257 | DoPrepareDC(self, DC dc) | |
258 | ||
259 | Normally what is called by `PrepareDC`. | |
260 | """ | |
261 | return _windows_.ScrolledWindow_DoPrepareDC(*args, **kwargs) | |
262 | ||
f20a2e1f RD |
263 | def GetClassDefaultAttributes(*args, **kwargs): |
264 | """ | |
265 | GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes | |
266 | ||
79fccf9d RD |
267 | Get the default attributes for this class. This is useful if you want |
268 | to use the same font or colour in your own control as in a standard | |
269 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
270 | colours or fonts which might look completely out of place on the |
271 | user's system, especially if it uses themes. | |
f20a2e1f RD |
272 | |
273 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 274 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
275 | the returned font. See `wx.Window.SetWindowVariant` for more about |
276 | this. | |
f20a2e1f RD |
277 | """ |
278 | return _windows_.ScrolledWindow_GetClassDefaultAttributes(*args, **kwargs) | |
279 | ||
280 | GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes) | |
2131d850 | 281 | _windows_.ScrolledWindow_swigregister(ScrolledWindow) |
d55e5bfc RD |
282 | |
283 | def PreScrolledWindow(*args, **kwargs): | |
284 | """PreScrolledWindow() -> ScrolledWindow""" | |
285 | val = _windows_.new_PreScrolledWindow(*args, **kwargs) | |
d55e5bfc RD |
286 | return val |
287 | ||
f20a2e1f | 288 | def ScrolledWindow_GetClassDefaultAttributes(*args, **kwargs): |
554f62e9 | 289 | """ |
f20a2e1f RD |
290 | ScrolledWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes |
291 | ||
79fccf9d RD |
292 | Get the default attributes for this class. This is useful if you want |
293 | to use the same font or colour in your own control as in a standard | |
294 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
295 | colours or fonts which might look completely out of place on the |
296 | user's system, especially if it uses themes. | |
f20a2e1f RD |
297 | |
298 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 299 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
300 | the returned font. See `wx.Window.SetWindowVariant` for more about |
301 | this. | |
f20a2e1f | 302 | """ |
554f62e9 | 303 | return _windows_.ScrolledWindow_GetClassDefaultAttributes(*args, **kwargs) |
f20a2e1f | 304 | |
d55e5bfc RD |
305 | #--------------------------------------------------------------------------- |
306 | ||
307 | STAY_ON_TOP = _windows_.STAY_ON_TOP | |
308 | ICONIZE = _windows_.ICONIZE | |
309 | MINIMIZE = _windows_.MINIMIZE | |
310 | MAXIMIZE = _windows_.MAXIMIZE | |
311 | CLOSE_BOX = _windows_.CLOSE_BOX | |
312 | THICK_FRAME = _windows_.THICK_FRAME | |
313 | SYSTEM_MENU = _windows_.SYSTEM_MENU | |
314 | MINIMIZE_BOX = _windows_.MINIMIZE_BOX | |
315 | MAXIMIZE_BOX = _windows_.MAXIMIZE_BOX | |
316 | TINY_CAPTION_HORIZ = _windows_.TINY_CAPTION_HORIZ | |
317 | TINY_CAPTION_VERT = _windows_.TINY_CAPTION_VERT | |
318 | RESIZE_BOX = _windows_.RESIZE_BOX | |
319 | RESIZE_BORDER = _windows_.RESIZE_BORDER | |
320 | DIALOG_NO_PARENT = _windows_.DIALOG_NO_PARENT | |
321 | DEFAULT_FRAME_STYLE = _windows_.DEFAULT_FRAME_STYLE | |
322 | DEFAULT_DIALOG_STYLE = _windows_.DEFAULT_DIALOG_STYLE | |
323 | FRAME_TOOL_WINDOW = _windows_.FRAME_TOOL_WINDOW | |
324 | FRAME_FLOAT_ON_PARENT = _windows_.FRAME_FLOAT_ON_PARENT | |
325 | FRAME_NO_WINDOW_MENU = _windows_.FRAME_NO_WINDOW_MENU | |
326 | FRAME_NO_TASKBAR = _windows_.FRAME_NO_TASKBAR | |
327 | FRAME_SHAPED = _windows_.FRAME_SHAPED | |
ae8162c8 | 328 | FRAME_DRAWER = _windows_.FRAME_DRAWER |
6932ae68 RD |
329 | FRAME_EX_METAL = _windows_.FRAME_EX_METAL |
330 | DIALOG_EX_METAL = _windows_.DIALOG_EX_METAL | |
d55e5bfc RD |
331 | DIALOG_MODAL = _windows_.DIALOG_MODAL |
332 | DIALOG_MODELESS = _windows_.DIALOG_MODELESS | |
333 | USER_COLOURS = _windows_.USER_COLOURS | |
334 | NO_3D = _windows_.NO_3D | |
335 | FULLSCREEN_NOMENUBAR = _windows_.FULLSCREEN_NOMENUBAR | |
336 | FULLSCREEN_NOTOOLBAR = _windows_.FULLSCREEN_NOTOOLBAR | |
337 | FULLSCREEN_NOSTATUSBAR = _windows_.FULLSCREEN_NOSTATUSBAR | |
338 | FULLSCREEN_NOBORDER = _windows_.FULLSCREEN_NOBORDER | |
339 | FULLSCREEN_NOCAPTION = _windows_.FULLSCREEN_NOCAPTION | |
340 | FULLSCREEN_ALL = _windows_.FULLSCREEN_ALL | |
341 | TOPLEVEL_EX_DIALOG = _windows_.TOPLEVEL_EX_DIALOG | |
c32bde28 RD |
342 | USER_ATTENTION_INFO = _windows_.USER_ATTENTION_INFO |
343 | USER_ATTENTION_ERROR = _windows_.USER_ATTENTION_ERROR | |
d55e5bfc | 344 | class TopLevelWindow(_core.Window): |
093d3ff1 | 345 | """Proxy of C++ TopLevelWindow class""" |
554f62e9 RD |
346 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
347 | def __init__(self): raise AttributeError, "No constructor defined" | |
348 | __repr__ = _swig_repr | |
d55e5bfc RD |
349 | def Maximize(*args, **kwargs): |
350 | """Maximize(self, bool maximize=True)""" | |
351 | return _windows_.TopLevelWindow_Maximize(*args, **kwargs) | |
352 | ||
353 | def Restore(*args, **kwargs): | |
354 | """Restore(self)""" | |
355 | return _windows_.TopLevelWindow_Restore(*args, **kwargs) | |
356 | ||
357 | def Iconize(*args, **kwargs): | |
358 | """Iconize(self, bool iconize=True)""" | |
359 | return _windows_.TopLevelWindow_Iconize(*args, **kwargs) | |
360 | ||
361 | def IsMaximized(*args, **kwargs): | |
362 | """IsMaximized(self) -> bool""" | |
363 | return _windows_.TopLevelWindow_IsMaximized(*args, **kwargs) | |
364 | ||
f460c29d RD |
365 | def IsAlwaysMaximized(*args, **kwargs): |
366 | """IsAlwaysMaximized(self) -> bool""" | |
367 | return _windows_.TopLevelWindow_IsAlwaysMaximized(*args, **kwargs) | |
368 | ||
d55e5bfc RD |
369 | def IsIconized(*args, **kwargs): |
370 | """IsIconized(self) -> bool""" | |
371 | return _windows_.TopLevelWindow_IsIconized(*args, **kwargs) | |
372 | ||
373 | def GetIcon(*args, **kwargs): | |
374 | """GetIcon(self) -> Icon""" | |
375 | return _windows_.TopLevelWindow_GetIcon(*args, **kwargs) | |
376 | ||
377 | def SetIcon(*args, **kwargs): | |
378 | """SetIcon(self, Icon icon)""" | |
379 | return _windows_.TopLevelWindow_SetIcon(*args, **kwargs) | |
380 | ||
381 | def SetIcons(*args, **kwargs): | |
382 | """SetIcons(self, wxIconBundle icons)""" | |
383 | return _windows_.TopLevelWindow_SetIcons(*args, **kwargs) | |
384 | ||
385 | def ShowFullScreen(*args, **kwargs): | |
386 | """ShowFullScreen(self, bool show, long style=FULLSCREEN_ALL) -> bool""" | |
387 | return _windows_.TopLevelWindow_ShowFullScreen(*args, **kwargs) | |
388 | ||
389 | def IsFullScreen(*args, **kwargs): | |
390 | """IsFullScreen(self) -> bool""" | |
391 | return _windows_.TopLevelWindow_IsFullScreen(*args, **kwargs) | |
392 | ||
393 | def SetTitle(*args, **kwargs): | |
2f91e3df | 394 | """SetTitle(self, String title)""" |
d55e5bfc RD |
395 | return _windows_.TopLevelWindow_SetTitle(*args, **kwargs) |
396 | ||
397 | def GetTitle(*args, **kwargs): | |
2f91e3df | 398 | """GetTitle(self) -> String""" |
d55e5bfc RD |
399 | return _windows_.TopLevelWindow_GetTitle(*args, **kwargs) |
400 | ||
401 | def SetShape(*args, **kwargs): | |
402 | """SetShape(self, Region region) -> bool""" | |
403 | return _windows_.TopLevelWindow_SetShape(*args, **kwargs) | |
404 | ||
c32bde28 RD |
405 | def RequestUserAttention(*args, **kwargs): |
406 | """RequestUserAttention(self, int flags=USER_ATTENTION_INFO)""" | |
407 | return _windows_.TopLevelWindow_RequestUserAttention(*args, **kwargs) | |
408 | ||
5e483524 RD |
409 | def IsActive(*args, **kwargs): |
410 | """IsActive(self) -> bool""" | |
411 | return _windows_.TopLevelWindow_IsActive(*args, **kwargs) | |
412 | ||
84f85550 RD |
413 | def MacSetMetalAppearance(*args, **kwargs): |
414 | """MacSetMetalAppearance(self, bool on)""" | |
415 | return _windows_.TopLevelWindow_MacSetMetalAppearance(*args, **kwargs) | |
416 | ||
417 | def MacGetMetalAppearance(*args, **kwargs): | |
418 | """MacGetMetalAppearance(self) -> bool""" | |
419 | return _windows_.TopLevelWindow_MacGetMetalAppearance(*args, **kwargs) | |
420 | ||
b1fcee84 RD |
421 | def CenterOnScreen(*args, **kwargs): |
422 | """ | |
423 | CenterOnScreen(self, int dir=BOTH) | |
424 | ||
425 | Center the window on screen | |
426 | """ | |
427 | return _windows_.TopLevelWindow_CenterOnScreen(*args, **kwargs) | |
428 | ||
429 | CentreOnScreen = CenterOnScreen | |
2131d850 | 430 | _windows_.TopLevelWindow_swigregister(TopLevelWindow) |
d55e5bfc RD |
431 | cvar = _windows_.cvar |
432 | FrameNameStr = cvar.FrameNameStr | |
433 | DialogNameStr = cvar.DialogNameStr | |
434 | StatusLineNameStr = cvar.StatusLineNameStr | |
435 | ToolBarNameStr = cvar.ToolBarNameStr | |
436 | ||
437 | #--------------------------------------------------------------------------- | |
438 | ||
439 | class Frame(TopLevelWindow): | |
093d3ff1 | 440 | """Proxy of C++ Frame class""" |
554f62e9 RD |
441 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
442 | __repr__ = _swig_repr | |
443 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 444 | """ |
248ed943 RD |
445 | __init__(self, Window parent, int id=-1, String title=EmptyString, |
446 | Point pos=DefaultPosition, Size size=DefaultSize, | |
447 | long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> Frame | |
d55e5bfc | 448 | """ |
554f62e9 | 449 | _windows_.Frame_swiginit(self,_windows_.new_Frame(*args, **kwargs)) |
d55e5bfc RD |
450 | self._setOORInfo(self) |
451 | ||
452 | def Create(*args, **kwargs): | |
453 | """ | |
248ed943 RD |
454 | Create(self, Window parent, int id=-1, String title=EmptyString, |
455 | Point pos=DefaultPosition, Size size=DefaultSize, | |
456 | long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool | |
d55e5bfc RD |
457 | """ |
458 | return _windows_.Frame_Create(*args, **kwargs) | |
459 | ||
d55e5bfc RD |
460 | def SendSizeEvent(*args, **kwargs): |
461 | """SendSizeEvent(self)""" | |
462 | return _windows_.Frame_SendSizeEvent(*args, **kwargs) | |
463 | ||
464 | def SetMenuBar(*args, **kwargs): | |
465 | """SetMenuBar(self, MenuBar menubar)""" | |
466 | return _windows_.Frame_SetMenuBar(*args, **kwargs) | |
467 | ||
468 | def GetMenuBar(*args, **kwargs): | |
469 | """GetMenuBar(self) -> MenuBar""" | |
470 | return _windows_.Frame_GetMenuBar(*args, **kwargs) | |
471 | ||
472 | def ProcessCommand(*args, **kwargs): | |
473 | """ProcessCommand(self, int winid) -> bool""" | |
474 | return _windows_.Frame_ProcessCommand(*args, **kwargs) | |
475 | ||
476 | Command = ProcessCommand | |
477 | def CreateStatusBar(*args, **kwargs): | |
478 | """ | |
a3957d3d RD |
479 | CreateStatusBar(self, int number=1, long style=DEFAULT_STATUSBAR_STYLE, int winid=0, |
480 | String name=StatusLineNameStr) -> StatusBar | |
d55e5bfc RD |
481 | """ |
482 | return _windows_.Frame_CreateStatusBar(*args, **kwargs) | |
483 | ||
484 | def GetStatusBar(*args, **kwargs): | |
485 | """GetStatusBar(self) -> StatusBar""" | |
486 | return _windows_.Frame_GetStatusBar(*args, **kwargs) | |
487 | ||
488 | def SetStatusBar(*args, **kwargs): | |
489 | """SetStatusBar(self, StatusBar statBar)""" | |
490 | return _windows_.Frame_SetStatusBar(*args, **kwargs) | |
491 | ||
492 | def SetStatusText(*args, **kwargs): | |
493 | """SetStatusText(self, String text, int number=0)""" | |
494 | return _windows_.Frame_SetStatusText(*args, **kwargs) | |
495 | ||
496 | def SetStatusWidths(*args, **kwargs): | |
093d3ff1 | 497 | """SetStatusWidths(self, int widths)""" |
d55e5bfc RD |
498 | return _windows_.Frame_SetStatusWidths(*args, **kwargs) |
499 | ||
500 | def PushStatusText(*args, **kwargs): | |
501 | """PushStatusText(self, String text, int number=0)""" | |
502 | return _windows_.Frame_PushStatusText(*args, **kwargs) | |
503 | ||
504 | def PopStatusText(*args, **kwargs): | |
505 | """PopStatusText(self, int number=0)""" | |
506 | return _windows_.Frame_PopStatusText(*args, **kwargs) | |
507 | ||
508 | def SetStatusBarPane(*args, **kwargs): | |
509 | """SetStatusBarPane(self, int n)""" | |
510 | return _windows_.Frame_SetStatusBarPane(*args, **kwargs) | |
511 | ||
512 | def GetStatusBarPane(*args, **kwargs): | |
513 | """GetStatusBarPane(self) -> int""" | |
514 | return _windows_.Frame_GetStatusBarPane(*args, **kwargs) | |
515 | ||
516 | def CreateToolBar(*args, **kwargs): | |
517 | """CreateToolBar(self, long style=-1, int winid=-1, String name=ToolBarNameStr) -> wxToolBar""" | |
518 | return _windows_.Frame_CreateToolBar(*args, **kwargs) | |
519 | ||
520 | def GetToolBar(*args, **kwargs): | |
521 | """GetToolBar(self) -> wxToolBar""" | |
522 | return _windows_.Frame_GetToolBar(*args, **kwargs) | |
523 | ||
524 | def SetToolBar(*args, **kwargs): | |
525 | """SetToolBar(self, wxToolBar toolbar)""" | |
526 | return _windows_.Frame_SetToolBar(*args, **kwargs) | |
527 | ||
528 | def DoGiveHelp(*args, **kwargs): | |
529 | """DoGiveHelp(self, String text, bool show)""" | |
530 | return _windows_.Frame_DoGiveHelp(*args, **kwargs) | |
531 | ||
532 | def DoMenuUpdates(*args, **kwargs): | |
533 | """DoMenuUpdates(self, Menu menu=None)""" | |
534 | return _windows_.Frame_DoMenuUpdates(*args, **kwargs) | |
535 | ||
f20a2e1f RD |
536 | def GetClassDefaultAttributes(*args, **kwargs): |
537 | """ | |
538 | GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes | |
539 | ||
79fccf9d RD |
540 | Get the default attributes for this class. This is useful if you want |
541 | to use the same font or colour in your own control as in a standard | |
542 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
543 | colours or fonts which might look completely out of place on the |
544 | user's system, especially if it uses themes. | |
f20a2e1f RD |
545 | |
546 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 547 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
548 | the returned font. See `wx.Window.SetWindowVariant` for more about |
549 | this. | |
f20a2e1f RD |
550 | """ |
551 | return _windows_.Frame_GetClassDefaultAttributes(*args, **kwargs) | |
552 | ||
553 | GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes) | |
2131d850 | 554 | _windows_.Frame_swigregister(Frame) |
d55e5bfc RD |
555 | |
556 | def PreFrame(*args, **kwargs): | |
557 | """PreFrame() -> Frame""" | |
558 | val = _windows_.new_PreFrame(*args, **kwargs) | |
d55e5bfc RD |
559 | return val |
560 | ||
f20a2e1f | 561 | def Frame_GetClassDefaultAttributes(*args, **kwargs): |
554f62e9 | 562 | """ |
f20a2e1f RD |
563 | Frame_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes |
564 | ||
79fccf9d RD |
565 | Get the default attributes for this class. This is useful if you want |
566 | to use the same font or colour in your own control as in a standard | |
567 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
568 | colours or fonts which might look completely out of place on the |
569 | user's system, especially if it uses themes. | |
f20a2e1f RD |
570 | |
571 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 572 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
573 | the returned font. See `wx.Window.SetWindowVariant` for more about |
574 | this. | |
f20a2e1f | 575 | """ |
554f62e9 | 576 | return _windows_.Frame_GetClassDefaultAttributes(*args, **kwargs) |
f20a2e1f | 577 | |
d55e5bfc RD |
578 | #--------------------------------------------------------------------------- |
579 | ||
580 | class Dialog(TopLevelWindow): | |
093d3ff1 | 581 | """Proxy of C++ Dialog class""" |
554f62e9 RD |
582 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
583 | __repr__ = _swig_repr | |
7449af73 | 584 | ButtonSizerFlags = _windows_.Dialog_ButtonSizerFlags |
554f62e9 | 585 | def __init__(self, *args, **kwargs): |
d55e5bfc | 586 | """ |
248ed943 RD |
587 | __init__(self, Window parent, int id=-1, String title=EmptyString, |
588 | Point pos=DefaultPosition, Size size=DefaultSize, | |
589 | long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> Dialog | |
d55e5bfc | 590 | """ |
554f62e9 | 591 | _windows_.Dialog_swiginit(self,_windows_.new_Dialog(*args, **kwargs)) |
d55e5bfc RD |
592 | self._setOORInfo(self) |
593 | ||
594 | def Create(*args, **kwargs): | |
595 | """ | |
248ed943 RD |
596 | Create(self, Window parent, int id=-1, String title=EmptyString, |
597 | Point pos=DefaultPosition, Size size=DefaultSize, | |
598 | long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> bool | |
d55e5bfc RD |
599 | """ |
600 | return _windows_.Dialog_Create(*args, **kwargs) | |
601 | ||
602 | def SetReturnCode(*args, **kwargs): | |
603 | """SetReturnCode(self, int returnCode)""" | |
604 | return _windows_.Dialog_SetReturnCode(*args, **kwargs) | |
605 | ||
606 | def GetReturnCode(*args, **kwargs): | |
607 | """GetReturnCode(self) -> int""" | |
608 | return _windows_.Dialog_GetReturnCode(*args, **kwargs) | |
609 | ||
b1fcee84 RD |
610 | def SetAffirmativeId(*args, **kwargs): |
611 | """SetAffirmativeId(self, int affirmativeId)""" | |
612 | return _windows_.Dialog_SetAffirmativeId(*args, **kwargs) | |
613 | ||
614 | def GetAffirmativeId(*args, **kwargs): | |
615 | """GetAffirmativeId(self) -> int""" | |
616 | return _windows_.Dialog_GetAffirmativeId(*args, **kwargs) | |
617 | ||
618 | def SetEscapeId(*args, **kwargs): | |
619 | """SetEscapeId(self, int escapeId)""" | |
620 | return _windows_.Dialog_SetEscapeId(*args, **kwargs) | |
621 | ||
622 | def GetEscapeId(*args, **kwargs): | |
623 | """GetEscapeId(self) -> int""" | |
624 | return _windows_.Dialog_GetEscapeId(*args, **kwargs) | |
625 | ||
d55e5bfc RD |
626 | def CreateTextSizer(*args, **kwargs): |
627 | """CreateTextSizer(self, String message) -> Sizer""" | |
628 | return _windows_.Dialog_CreateTextSizer(*args, **kwargs) | |
629 | ||
630 | def CreateButtonSizer(*args, **kwargs): | |
7449af73 | 631 | """CreateButtonSizer(self, long flags, bool separated=False, int distance=0) -> Sizer""" |
d55e5bfc RD |
632 | return _windows_.Dialog_CreateButtonSizer(*args, **kwargs) |
633 | ||
62d32a5f RD |
634 | def CreateStdDialogButtonSizer(*args, **kwargs): |
635 | """CreateStdDialogButtonSizer(self, long flags) -> StdDialogButtonSizer""" | |
636 | return _windows_.Dialog_CreateStdDialogButtonSizer(*args, **kwargs) | |
637 | ||
d55e5bfc RD |
638 | def IsModal(*args, **kwargs): |
639 | """IsModal(self) -> bool""" | |
640 | return _windows_.Dialog_IsModal(*args, **kwargs) | |
641 | ||
642 | def ShowModal(*args, **kwargs): | |
643 | """ShowModal(self) -> int""" | |
644 | return _windows_.Dialog_ShowModal(*args, **kwargs) | |
645 | ||
646 | def EndModal(*args, **kwargs): | |
647 | """EndModal(self, int retCode)""" | |
648 | return _windows_.Dialog_EndModal(*args, **kwargs) | |
649 | ||
f20a2e1f RD |
650 | def GetClassDefaultAttributes(*args, **kwargs): |
651 | """ | |
652 | GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes | |
653 | ||
79fccf9d RD |
654 | Get the default attributes for this class. This is useful if you want |
655 | to use the same font or colour in your own control as in a standard | |
656 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
657 | colours or fonts which might look completely out of place on the |
658 | user's system, especially if it uses themes. | |
f20a2e1f RD |
659 | |
660 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 661 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
662 | the returned font. See `wx.Window.SetWindowVariant` for more about |
663 | this. | |
f20a2e1f RD |
664 | """ |
665 | return _windows_.Dialog_GetClassDefaultAttributes(*args, **kwargs) | |
666 | ||
667 | GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes) | |
2131d850 | 668 | _windows_.Dialog_swigregister(Dialog) |
d55e5bfc RD |
669 | |
670 | def PreDialog(*args, **kwargs): | |
671 | """PreDialog() -> Dialog""" | |
672 | val = _windows_.new_PreDialog(*args, **kwargs) | |
d55e5bfc RD |
673 | return val |
674 | ||
f20a2e1f | 675 | def Dialog_GetClassDefaultAttributes(*args, **kwargs): |
554f62e9 | 676 | """ |
f20a2e1f RD |
677 | Dialog_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes |
678 | ||
79fccf9d RD |
679 | Get the default attributes for this class. This is useful if you want |
680 | to use the same font or colour in your own control as in a standard | |
681 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
682 | colours or fonts which might look completely out of place on the |
683 | user's system, especially if it uses themes. | |
f20a2e1f RD |
684 | |
685 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 686 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
687 | the returned font. See `wx.Window.SetWindowVariant` for more about |
688 | this. | |
f20a2e1f | 689 | """ |
554f62e9 | 690 | return _windows_.Dialog_GetClassDefaultAttributes(*args, **kwargs) |
f20a2e1f | 691 | |
d55e5bfc RD |
692 | #--------------------------------------------------------------------------- |
693 | ||
694 | class MiniFrame(Frame): | |
093d3ff1 | 695 | """Proxy of C++ MiniFrame class""" |
554f62e9 RD |
696 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
697 | __repr__ = _swig_repr | |
698 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 699 | """ |
248ed943 RD |
700 | __init__(self, Window parent, int id=-1, String title=EmptyString, |
701 | Point pos=DefaultPosition, Size size=DefaultSize, | |
702 | long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> MiniFrame | |
d55e5bfc | 703 | """ |
554f62e9 | 704 | _windows_.MiniFrame_swiginit(self,_windows_.new_MiniFrame(*args, **kwargs)) |
d55e5bfc RD |
705 | self._setOORInfo(self) |
706 | ||
707 | def Create(*args, **kwargs): | |
708 | """ | |
248ed943 RD |
709 | Create(self, Window parent, int id=-1, String title=EmptyString, |
710 | Point pos=DefaultPosition, Size size=DefaultSize, | |
711 | long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool | |
d55e5bfc RD |
712 | """ |
713 | return _windows_.MiniFrame_Create(*args, **kwargs) | |
714 | ||
2131d850 | 715 | _windows_.MiniFrame_swigregister(MiniFrame) |
d55e5bfc RD |
716 | |
717 | def PreMiniFrame(*args, **kwargs): | |
718 | """PreMiniFrame() -> MiniFrame""" | |
719 | val = _windows_.new_PreMiniFrame(*args, **kwargs) | |
d55e5bfc RD |
720 | return val |
721 | ||
722 | #--------------------------------------------------------------------------- | |
723 | ||
724 | SPLASH_CENTRE_ON_PARENT = _windows_.SPLASH_CENTRE_ON_PARENT | |
725 | SPLASH_CENTRE_ON_SCREEN = _windows_.SPLASH_CENTRE_ON_SCREEN | |
726 | SPLASH_NO_CENTRE = _windows_.SPLASH_NO_CENTRE | |
727 | SPLASH_TIMEOUT = _windows_.SPLASH_TIMEOUT | |
728 | SPLASH_NO_TIMEOUT = _windows_.SPLASH_NO_TIMEOUT | |
729 | class SplashScreenWindow(_core.Window): | |
093d3ff1 | 730 | """Proxy of C++ SplashScreenWindow class""" |
554f62e9 RD |
731 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
732 | __repr__ = _swig_repr | |
733 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
734 | """ |
735 | __init__(self, Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition, | |
736 | Size size=DefaultSize, long style=NO_BORDER) -> SplashScreenWindow | |
737 | """ | |
554f62e9 | 738 | _windows_.SplashScreenWindow_swiginit(self,_windows_.new_SplashScreenWindow(*args, **kwargs)) |
d55e5bfc RD |
739 | self._setOORInfo(self) |
740 | ||
741 | def SetBitmap(*args, **kwargs): | |
742 | """SetBitmap(self, Bitmap bitmap)""" | |
743 | return _windows_.SplashScreenWindow_SetBitmap(*args, **kwargs) | |
744 | ||
745 | def GetBitmap(*args, **kwargs): | |
746 | """GetBitmap(self) -> Bitmap""" | |
747 | return _windows_.SplashScreenWindow_GetBitmap(*args, **kwargs) | |
748 | ||
2131d850 | 749 | _windows_.SplashScreenWindow_swigregister(SplashScreenWindow) |
d55e5bfc RD |
750 | |
751 | class SplashScreen(Frame): | |
093d3ff1 | 752 | """Proxy of C++ SplashScreen class""" |
554f62e9 RD |
753 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
754 | __repr__ = _swig_repr | |
755 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
756 | """ |
757 | __init__(self, Bitmap bitmap, long splashStyle, int milliseconds, | |
248ed943 | 758 | Window parent, int id=-1, Point pos=DefaultPosition, |
d55e5bfc RD |
759 | Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -> SplashScreen |
760 | """ | |
554f62e9 | 761 | _windows_.SplashScreen_swiginit(self,_windows_.new_SplashScreen(*args, **kwargs)) |
d55e5bfc RD |
762 | self._setOORInfo(self) |
763 | ||
764 | def GetSplashStyle(*args, **kwargs): | |
765 | """GetSplashStyle(self) -> long""" | |
766 | return _windows_.SplashScreen_GetSplashStyle(*args, **kwargs) | |
767 | ||
768 | def GetSplashWindow(*args, **kwargs): | |
769 | """GetSplashWindow(self) -> SplashScreenWindow""" | |
770 | return _windows_.SplashScreen_GetSplashWindow(*args, **kwargs) | |
771 | ||
772 | def GetTimeout(*args, **kwargs): | |
773 | """GetTimeout(self) -> int""" | |
774 | return _windows_.SplashScreen_GetTimeout(*args, **kwargs) | |
775 | ||
2131d850 | 776 | _windows_.SplashScreen_swigregister(SplashScreen) |
d55e5bfc RD |
777 | |
778 | #--------------------------------------------------------------------------- | |
779 | ||
03837c5c RD |
780 | SB_NORMAL = _windows_.SB_NORMAL |
781 | SB_FLAT = _windows_.SB_FLAT | |
782 | SB_RAISED = _windows_.SB_RAISED | |
d55e5bfc | 783 | class StatusBar(_core.Window): |
093d3ff1 | 784 | """Proxy of C++ StatusBar class""" |
554f62e9 RD |
785 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
786 | __repr__ = _swig_repr | |
787 | def __init__(self, *args, **kwargs): | |
6d88e192 | 788 | """ |
a3957d3d | 789 | __init__(self, Window parent, int id=-1, long style=DEFAULT_STATUSBAR_STYLE, |
6d88e192 RD |
790 | String name=StatusLineNameStr) -> StatusBar |
791 | """ | |
554f62e9 | 792 | _windows_.StatusBar_swiginit(self,_windows_.new_StatusBar(*args, **kwargs)) |
d55e5bfc RD |
793 | self._setOORInfo(self) |
794 | ||
795 | def Create(*args, **kwargs): | |
248ed943 | 796 | """Create(self, Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> bool""" |
d55e5bfc RD |
797 | return _windows_.StatusBar_Create(*args, **kwargs) |
798 | ||
799 | def SetFieldsCount(*args, **kwargs): | |
800 | """SetFieldsCount(self, int number=1)""" | |
801 | return _windows_.StatusBar_SetFieldsCount(*args, **kwargs) | |
802 | ||
803 | def GetFieldsCount(*args, **kwargs): | |
804 | """GetFieldsCount(self) -> int""" | |
805 | return _windows_.StatusBar_GetFieldsCount(*args, **kwargs) | |
806 | ||
807 | def SetStatusText(*args, **kwargs): | |
808 | """SetStatusText(self, String text, int number=0)""" | |
809 | return _windows_.StatusBar_SetStatusText(*args, **kwargs) | |
810 | ||
811 | def GetStatusText(*args, **kwargs): | |
812 | """GetStatusText(self, int number=0) -> String""" | |
813 | return _windows_.StatusBar_GetStatusText(*args, **kwargs) | |
814 | ||
815 | def PushStatusText(*args, **kwargs): | |
816 | """PushStatusText(self, String text, int number=0)""" | |
817 | return _windows_.StatusBar_PushStatusText(*args, **kwargs) | |
818 | ||
819 | def PopStatusText(*args, **kwargs): | |
820 | """PopStatusText(self, int number=0)""" | |
821 | return _windows_.StatusBar_PopStatusText(*args, **kwargs) | |
822 | ||
823 | def SetStatusWidths(*args, **kwargs): | |
093d3ff1 | 824 | """SetStatusWidths(self, int widths)""" |
d55e5bfc RD |
825 | return _windows_.StatusBar_SetStatusWidths(*args, **kwargs) |
826 | ||
03837c5c | 827 | def SetStatusStyles(*args, **kwargs): |
093d3ff1 | 828 | """SetStatusStyles(self, int styles)""" |
03837c5c RD |
829 | return _windows_.StatusBar_SetStatusStyles(*args, **kwargs) |
830 | ||
d55e5bfc RD |
831 | def GetFieldRect(*args, **kwargs): |
832 | """GetFieldRect(self, int i) -> Rect""" | |
833 | return _windows_.StatusBar_GetFieldRect(*args, **kwargs) | |
834 | ||
835 | def SetMinHeight(*args, **kwargs): | |
836 | """SetMinHeight(self, int height)""" | |
837 | return _windows_.StatusBar_SetMinHeight(*args, **kwargs) | |
838 | ||
839 | def GetBorderX(*args, **kwargs): | |
840 | """GetBorderX(self) -> int""" | |
841 | return _windows_.StatusBar_GetBorderX(*args, **kwargs) | |
842 | ||
843 | def GetBorderY(*args, **kwargs): | |
844 | """GetBorderY(self) -> int""" | |
845 | return _windows_.StatusBar_GetBorderY(*args, **kwargs) | |
846 | ||
f20a2e1f RD |
847 | def GetClassDefaultAttributes(*args, **kwargs): |
848 | """ | |
849 | GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes | |
850 | ||
79fccf9d RD |
851 | Get the default attributes for this class. This is useful if you want |
852 | to use the same font or colour in your own control as in a standard | |
853 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
854 | colours or fonts which might look completely out of place on the |
855 | user's system, especially if it uses themes. | |
f20a2e1f RD |
856 | |
857 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 858 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
859 | the returned font. See `wx.Window.SetWindowVariant` for more about |
860 | this. | |
f20a2e1f RD |
861 | """ |
862 | return _windows_.StatusBar_GetClassDefaultAttributes(*args, **kwargs) | |
863 | ||
864 | GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes) | |
2131d850 | 865 | _windows_.StatusBar_swigregister(StatusBar) |
d55e5bfc RD |
866 | |
867 | def PreStatusBar(*args, **kwargs): | |
868 | """PreStatusBar() -> StatusBar""" | |
869 | val = _windows_.new_PreStatusBar(*args, **kwargs) | |
d55e5bfc RD |
870 | return val |
871 | ||
f20a2e1f | 872 | def StatusBar_GetClassDefaultAttributes(*args, **kwargs): |
554f62e9 | 873 | """ |
f20a2e1f RD |
874 | StatusBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes |
875 | ||
79fccf9d RD |
876 | Get the default attributes for this class. This is useful if you want |
877 | to use the same font or colour in your own control as in a standard | |
878 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
879 | colours or fonts which might look completely out of place on the |
880 | user's system, especially if it uses themes. | |
f20a2e1f RD |
881 | |
882 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 883 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
884 | the returned font. See `wx.Window.SetWindowVariant` for more about |
885 | this. | |
f20a2e1f | 886 | """ |
554f62e9 | 887 | return _windows_.StatusBar_GetClassDefaultAttributes(*args, **kwargs) |
f20a2e1f | 888 | |
d55e5bfc RD |
889 | #--------------------------------------------------------------------------- |
890 | ||
891 | SP_NOBORDER = _windows_.SP_NOBORDER | |
892 | SP_NOSASH = _windows_.SP_NOSASH | |
893 | SP_PERMIT_UNSPLIT = _windows_.SP_PERMIT_UNSPLIT | |
894 | SP_LIVE_UPDATE = _windows_.SP_LIVE_UPDATE | |
895 | SP_3DSASH = _windows_.SP_3DSASH | |
896 | SP_3DBORDER = _windows_.SP_3DBORDER | |
897 | SP_NO_XP_THEME = _windows_.SP_NO_XP_THEME | |
898 | SP_BORDER = _windows_.SP_BORDER | |
899 | SP_3D = _windows_.SP_3D | |
900 | SPLIT_HORIZONTAL = _windows_.SPLIT_HORIZONTAL | |
901 | SPLIT_VERTICAL = _windows_.SPLIT_VERTICAL | |
902 | SPLIT_DRAG_NONE = _windows_.SPLIT_DRAG_NONE | |
903 | SPLIT_DRAG_DRAGGING = _windows_.SPLIT_DRAG_DRAGGING | |
904 | SPLIT_DRAG_LEFT_DOWN = _windows_.SPLIT_DRAG_LEFT_DOWN | |
905 | class SplitterWindow(_core.Window): | |
906 | """ | |
79fccf9d RD |
907 | wx.SplitterWindow manages up to two subwindows or panes, with an |
908 | optional vertical or horizontal split which can be used with the mouse | |
909 | or programmatically. | |
d55e5bfc | 910 | """ |
554f62e9 RD |
911 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
912 | __repr__ = _swig_repr | |
913 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
914 | """ |
915 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
916 | Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> SplitterWindow | |
917 | ||
918 | Constructor. Creates and shows a SplitterWindow. | |
919 | """ | |
920 | if kwargs.has_key('point'): kwargs['pos'] = kwargs['point'];del kwargs['point'] | |
554f62e9 | 921 | _windows_.SplitterWindow_swiginit(self,_windows_.new_SplitterWindow(*args, **kwargs)) |
d55e5bfc RD |
922 | self._setOORInfo(self) |
923 | ||
924 | def Create(*args, **kwargs): | |
925 | """ | |
926 | Create(self, Window parent, int id=-1, Point pos=DefaultPosition, | |
927 | Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> bool | |
928 | ||
929 | Create the GUI part of the SplitterWindow for the 2-phase create. | |
930 | """ | |
931 | return _windows_.SplitterWindow_Create(*args, **kwargs) | |
932 | ||
933 | def GetWindow1(*args, **kwargs): | |
934 | """ | |
935 | GetWindow1(self) -> Window | |
936 | ||
937 | Gets the only or left/top pane. | |
938 | """ | |
939 | return _windows_.SplitterWindow_GetWindow1(*args, **kwargs) | |
940 | ||
941 | def GetWindow2(*args, **kwargs): | |
942 | """ | |
943 | GetWindow2(self) -> Window | |
944 | ||
945 | Gets the right/bottom pane. | |
946 | """ | |
947 | return _windows_.SplitterWindow_GetWindow2(*args, **kwargs) | |
948 | ||
949 | def SetSplitMode(*args, **kwargs): | |
950 | """ | |
951 | SetSplitMode(self, int mode) | |
952 | ||
953 | Sets the split mode. The mode can be wx.SPLIT_VERTICAL or | |
79fccf9d RD |
954 | wx.SPLIT_HORIZONTAL. This only sets the internal variable; does not |
955 | update the display. | |
d55e5bfc RD |
956 | """ |
957 | return _windows_.SplitterWindow_SetSplitMode(*args, **kwargs) | |
958 | ||
959 | def GetSplitMode(*args, **kwargs): | |
960 | """ | |
961 | GetSplitMode(self) -> int | |
962 | ||
963 | Gets the split mode | |
964 | """ | |
965 | return _windows_.SplitterWindow_GetSplitMode(*args, **kwargs) | |
966 | ||
967 | def Initialize(*args, **kwargs): | |
968 | """ | |
969 | Initialize(self, Window window) | |
970 | ||
79fccf9d RD |
971 | Initializes the splitter window to have one pane. This should be |
972 | called if you wish to initially view only a single pane in the | |
51b83b37 | 973 | splitter window. The child window is shown if it is currently hidden. |
d55e5bfc RD |
974 | """ |
975 | return _windows_.SplitterWindow_Initialize(*args, **kwargs) | |
976 | ||
977 | def SplitVertically(*args, **kwargs): | |
978 | """ | |
979 | SplitVertically(self, Window window1, Window window2, int sashPosition=0) -> bool | |
980 | ||
51b83b37 RD |
981 | Initializes the left and right panes of the splitter window. The |
982 | child windows are shown if they are currently hidden. | |
d55e5bfc RD |
983 | """ |
984 | return _windows_.SplitterWindow_SplitVertically(*args, **kwargs) | |
985 | ||
986 | def SplitHorizontally(*args, **kwargs): | |
987 | """ | |
988 | SplitHorizontally(self, Window window1, Window window2, int sashPosition=0) -> bool | |
989 | ||
51b83b37 RD |
990 | Initializes the top and bottom panes of the splitter window. The |
991 | child windows are shown if they are currently hidden. | |
d55e5bfc RD |
992 | """ |
993 | return _windows_.SplitterWindow_SplitHorizontally(*args, **kwargs) | |
994 | ||
995 | def Unsplit(*args, **kwargs): | |
996 | """ | |
997 | Unsplit(self, Window toRemove=None) -> bool | |
998 | ||
79fccf9d RD |
999 | Unsplits the window. Pass the pane to remove, or None to remove the |
1000 | right or bottom pane. Returns True if successful, False otherwise (the | |
1001 | window was not split). | |
d55e5bfc RD |
1002 | |
1003 | This function will not actually delete the pane being | |
1004 | removed; it sends EVT_SPLITTER_UNSPLIT which can be handled | |
1005 | for the desired behaviour. By default, the pane being | |
1006 | removed is only hidden. | |
1007 | """ | |
1008 | return _windows_.SplitterWindow_Unsplit(*args, **kwargs) | |
1009 | ||
1010 | def ReplaceWindow(*args, **kwargs): | |
1011 | """ | |
1012 | ReplaceWindow(self, Window winOld, Window winNew) -> bool | |
1013 | ||
1014 | This function replaces one of the windows managed by the | |
79fccf9d RD |
1015 | SplitterWindow with another one. It is in general better to use it |
1016 | instead of calling Unsplit() and then resplitting the window back | |
1017 | because it will provoke much less flicker. It is valid to call this | |
1018 | function whether the splitter has two windows or only one. | |
1019 | ||
1020 | Both parameters should be non-None and winOld must specify one of the | |
1021 | windows managed by the splitter. If the parameters are incorrect or | |
1022 | the window couldn't be replaced, False is returned. Otherwise the | |
1023 | function will return True, but please notice that it will not Destroy | |
1024 | the replaced window and you may wish to do it yourself. | |
d55e5bfc RD |
1025 | """ |
1026 | return _windows_.SplitterWindow_ReplaceWindow(*args, **kwargs) | |
1027 | ||
1028 | def UpdateSize(*args, **kwargs): | |
1029 | """ | |
1030 | UpdateSize(self) | |
1031 | ||
79fccf9d RD |
1032 | Causes any pending sizing of the sash and child panes to take place |
1033 | immediately. | |
d55e5bfc | 1034 | |
79fccf9d RD |
1035 | Such resizing normally takes place in idle time, in order to wait for |
1036 | layout to be completed. However, this can cause unacceptable flicker | |
1037 | as the panes are resized after the window has been shown. To work | |
1038 | around this, you can perform window layout (for example by sending a | |
1039 | size event to the parent window), and then call this function, before | |
1040 | showing the top-level window. | |
d55e5bfc RD |
1041 | """ |
1042 | return _windows_.SplitterWindow_UpdateSize(*args, **kwargs) | |
1043 | ||
1044 | def IsSplit(*args, **kwargs): | |
1045 | """ | |
1046 | IsSplit(self) -> bool | |
1047 | ||
1048 | Is the window split? | |
1049 | """ | |
1050 | return _windows_.SplitterWindow_IsSplit(*args, **kwargs) | |
1051 | ||
1052 | def SetSashSize(*args, **kwargs): | |
1053 | """ | |
1054 | SetSashSize(self, int width) | |
1055 | ||
88c6b281 | 1056 | Sets the sash size. |
d55e5bfc RD |
1057 | """ |
1058 | return _windows_.SplitterWindow_SetSashSize(*args, **kwargs) | |
1059 | ||
1060 | def SetBorderSize(*args, **kwargs): | |
1061 | """ | |
1062 | SetBorderSize(self, int width) | |
1063 | ||
f78cc896 | 1064 | Sets the border size. Currently a NOP. |
d55e5bfc RD |
1065 | """ |
1066 | return _windows_.SplitterWindow_SetBorderSize(*args, **kwargs) | |
1067 | ||
1068 | def GetSashSize(*args, **kwargs): | |
1069 | """ | |
1070 | GetSashSize(self) -> int | |
1071 | ||
1072 | Gets the sash size | |
1073 | """ | |
1074 | return _windows_.SplitterWindow_GetSashSize(*args, **kwargs) | |
1075 | ||
1076 | def GetBorderSize(*args, **kwargs): | |
1077 | """ | |
1078 | GetBorderSize(self) -> int | |
1079 | ||
1080 | Gets the border size | |
1081 | """ | |
1082 | return _windows_.SplitterWindow_GetBorderSize(*args, **kwargs) | |
1083 | ||
1084 | def SetSashPosition(*args, **kwargs): | |
1085 | """ | |
1086 | SetSashPosition(self, int position, bool redraw=True) | |
1087 | ||
79fccf9d RD |
1088 | Sets the sash position, in pixels. If redraw is Ttrue then the panes |
1089 | are resized and the sash and border are redrawn. | |
d55e5bfc RD |
1090 | """ |
1091 | return _windows_.SplitterWindow_SetSashPosition(*args, **kwargs) | |
1092 | ||
1093 | def GetSashPosition(*args, **kwargs): | |
1094 | """ | |
1095 | GetSashPosition(self) -> int | |
1096 | ||
1097 | Returns the surrent sash position. | |
1098 | """ | |
1099 | return _windows_.SplitterWindow_GetSashPosition(*args, **kwargs) | |
1100 | ||
b519803b RD |
1101 | def SetSashGravity(*args, **kwargs): |
1102 | """ | |
1103 | SetSashGravity(self, double gravity) | |
1104 | ||
1105 | Set the sash gravity. Gravity is a floating-point factor between 0.0 | |
1106 | and 1.0 which controls position of sash while resizing the | |
1107 | `wx.SplitterWindow`. The gravity specifies how much the left/top | |
1108 | window will grow while resizing. | |
1109 | """ | |
1110 | return _windows_.SplitterWindow_SetSashGravity(*args, **kwargs) | |
1111 | ||
1112 | def GetSashGravity(*args, **kwargs): | |
1113 | """ | |
1114 | GetSashGravity(self) -> double | |
1115 | ||
1116 | Gets the sash gravity. | |
1117 | ||
1118 | :see: `SetSashGravity` | |
1119 | ||
1120 | """ | |
1121 | return _windows_.SplitterWindow_GetSashGravity(*args, **kwargs) | |
1122 | ||
d55e5bfc RD |
1123 | def SetMinimumPaneSize(*args, **kwargs): |
1124 | """ | |
1125 | SetMinimumPaneSize(self, int min) | |
1126 | ||
1127 | Sets the minimum pane size in pixels. | |
1128 | ||
79fccf9d RD |
1129 | The default minimum pane size is zero, which means that either pane |
1130 | can be reduced to zero by dragging the sash, thus removing one of the | |
1131 | panes. To prevent this behaviour (and veto out-of-range sash | |
1132 | dragging), set a minimum size, for example 20 pixels. If the | |
1133 | wx.SP_PERMIT_UNSPLIT style is used when a splitter window is created, | |
1134 | the window may be unsplit even if minimum size is non-zero. | |
d55e5bfc RD |
1135 | """ |
1136 | return _windows_.SplitterWindow_SetMinimumPaneSize(*args, **kwargs) | |
1137 | ||
1138 | def GetMinimumPaneSize(*args, **kwargs): | |
1139 | """ | |
1140 | GetMinimumPaneSize(self) -> int | |
1141 | ||
1142 | Gets the minimum pane size in pixels. | |
1143 | """ | |
1144 | return _windows_.SplitterWindow_GetMinimumPaneSize(*args, **kwargs) | |
1145 | ||
1146 | def SashHitTest(*args, **kwargs): | |
1147 | """ | |
1148 | SashHitTest(self, int x, int y, int tolerance=5) -> bool | |
1149 | ||
1150 | Tests for x, y over the sash | |
1151 | """ | |
1152 | return _windows_.SplitterWindow_SashHitTest(*args, **kwargs) | |
1153 | ||
1154 | def SizeWindows(*args, **kwargs): | |
1155 | """ | |
1156 | SizeWindows(self) | |
1157 | ||
1158 | Resizes subwindows | |
1159 | """ | |
1160 | return _windows_.SplitterWindow_SizeWindows(*args, **kwargs) | |
1161 | ||
1162 | def SetNeedUpdating(*args, **kwargs): | |
1163 | """SetNeedUpdating(self, bool needUpdating)""" | |
1164 | return _windows_.SplitterWindow_SetNeedUpdating(*args, **kwargs) | |
1165 | ||
1166 | def GetNeedUpdating(*args, **kwargs): | |
1167 | """GetNeedUpdating(self) -> bool""" | |
1168 | return _windows_.SplitterWindow_GetNeedUpdating(*args, **kwargs) | |
1169 | ||
f20a2e1f RD |
1170 | def GetClassDefaultAttributes(*args, **kwargs): |
1171 | """ | |
1172 | GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes | |
1173 | ||
79fccf9d RD |
1174 | Get the default attributes for this class. This is useful if you want |
1175 | to use the same font or colour in your own control as in a standard | |
1176 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
1177 | colours or fonts which might look completely out of place on the |
1178 | user's system, especially if it uses themes. | |
f20a2e1f RD |
1179 | |
1180 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 1181 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
1182 | the returned font. See `wx.Window.SetWindowVariant` for more about |
1183 | this. | |
f20a2e1f RD |
1184 | """ |
1185 | return _windows_.SplitterWindow_GetClassDefaultAttributes(*args, **kwargs) | |
1186 | ||
1187 | GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes) | |
2131d850 | 1188 | _windows_.SplitterWindow_swigregister(SplitterWindow) |
d55e5bfc RD |
1189 | SplitterNameStr = cvar.SplitterNameStr |
1190 | ||
1191 | def PreSplitterWindow(*args, **kwargs): | |
1192 | """ | |
1193 | PreSplitterWindow() -> SplitterWindow | |
1194 | ||
1195 | Precreate a SplitterWindow for 2-phase creation. | |
1196 | """ | |
1197 | val = _windows_.new_PreSplitterWindow(*args, **kwargs) | |
d55e5bfc RD |
1198 | return val |
1199 | ||
f20a2e1f | 1200 | def SplitterWindow_GetClassDefaultAttributes(*args, **kwargs): |
554f62e9 | 1201 | """ |
f20a2e1f RD |
1202 | SplitterWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes |
1203 | ||
79fccf9d RD |
1204 | Get the default attributes for this class. This is useful if you want |
1205 | to use the same font or colour in your own control as in a standard | |
1206 | control -- which is a much better idea than hard coding specific | |
caef1a4d RD |
1207 | colours or fonts which might look completely out of place on the |
1208 | user's system, especially if it uses themes. | |
f20a2e1f RD |
1209 | |
1210 | The variant parameter is only relevant under Mac currently and is | |
79fccf9d | 1211 | ignore under other platforms. Under Mac, it will change the size of |
caef1a4d RD |
1212 | the returned font. See `wx.Window.SetWindowVariant` for more about |
1213 | this. | |
f20a2e1f | 1214 | """ |
554f62e9 | 1215 | return _windows_.SplitterWindow_GetClassDefaultAttributes(*args, **kwargs) |
f20a2e1f | 1216 | |
d55e5bfc RD |
1217 | class SplitterEvent(_core.NotifyEvent): |
1218 | """This class represents the events generated by a splitter control.""" | |
554f62e9 RD |
1219 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1220 | __repr__ = _swig_repr | |
1221 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 1222 | """ |
f460c29d | 1223 | __init__(self, EventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent |
d55e5bfc RD |
1224 | |
1225 | This class represents the events generated by a splitter control. | |
1226 | """ | |
554f62e9 | 1227 | _windows_.SplitterEvent_swiginit(self,_windows_.new_SplitterEvent(*args, **kwargs)) |
d55e5bfc RD |
1228 | def SetSashPosition(*args, **kwargs): |
1229 | """ | |
1230 | SetSashPosition(self, int pos) | |
1231 | ||
51b83b37 | 1232 | This function is only meaningful during EVT_SPLITTER_SASH_POS_CHANGING |
79fccf9d RD |
1233 | and EVT_SPLITTER_SASH_POS_CHANGED events. In the case of _CHANGED |
1234 | events, sets the the new sash position. In the case of _CHANGING | |
1235 | events, sets the new tracking bar position so visual feedback during | |
1236 | dragging will represent that change that will actually take place. Set | |
1237 | to -1 from the event handler code to prevent repositioning. | |
d55e5bfc RD |
1238 | """ |
1239 | return _windows_.SplitterEvent_SetSashPosition(*args, **kwargs) | |
1240 | ||
1241 | def GetSashPosition(*args, **kwargs): | |
1242 | """ | |
1243 | GetSashPosition(self) -> int | |
1244 | ||
79fccf9d RD |
1245 | Returns the new sash position while in EVT_SPLITTER_SASH_POS_CHANGING |
1246 | and EVT_SPLITTER_SASH_POS_CHANGED events. | |
d55e5bfc RD |
1247 | """ |
1248 | return _windows_.SplitterEvent_GetSashPosition(*args, **kwargs) | |
1249 | ||
1250 | def GetWindowBeingRemoved(*args, **kwargs): | |
1251 | """ | |
1252 | GetWindowBeingRemoved(self) -> Window | |
1253 | ||
79fccf9d RD |
1254 | Returns a pointer to the window being removed when a splitter window |
1255 | is unsplit. | |
d55e5bfc RD |
1256 | """ |
1257 | return _windows_.SplitterEvent_GetWindowBeingRemoved(*args, **kwargs) | |
1258 | ||
1259 | def GetX(*args, **kwargs): | |
1260 | """ | |
1261 | GetX(self) -> int | |
1262 | ||
1263 | Returns the x coordinate of the double-click point in a | |
1264 | EVT_SPLITTER_DCLICK event. | |
1265 | """ | |
1266 | return _windows_.SplitterEvent_GetX(*args, **kwargs) | |
1267 | ||
1268 | def GetY(*args, **kwargs): | |
1269 | """ | |
1270 | GetY(self) -> int | |
1271 | ||
1272 | Returns the y coordinate of the double-click point in a | |
1273 | EVT_SPLITTER_DCLICK event. | |
1274 | """ | |
1275 | return _windows_.SplitterEvent_GetY(*args, **kwargs) | |
1276 | ||
2131d850 | 1277 | _windows_.SplitterEvent_swigregister(SplitterEvent) |
d55e5bfc RD |
1278 | |
1279 | wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED = _windows_.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED | |
1280 | wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING = _windows_.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING | |
1281 | wxEVT_COMMAND_SPLITTER_DOUBLECLICKED = _windows_.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED | |
1282 | wxEVT_COMMAND_SPLITTER_UNSPLIT = _windows_.wxEVT_COMMAND_SPLITTER_UNSPLIT | |
1283 | EVT_SPLITTER_SASH_POS_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, 1 ) | |
1284 | EVT_SPLITTER_SASH_POS_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, 1 ) | |
1285 | EVT_SPLITTER_DOUBLECLICKED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, 1 ) | |
1286 | EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 ) | |
1287 | EVT_SPLITTER_DCLICK = EVT_SPLITTER_DOUBLECLICKED | |
1288 | ||
1289 | #--------------------------------------------------------------------------- | |
1290 | ||
1291 | SASH_DRAG_NONE = _windows_.SASH_DRAG_NONE | |
1292 | SASH_DRAG_DRAGGING = _windows_.SASH_DRAG_DRAGGING | |
1293 | SASH_DRAG_LEFT_DOWN = _windows_.SASH_DRAG_LEFT_DOWN | |
1294 | SW_NOBORDER = _windows_.SW_NOBORDER | |
1295 | SW_BORDER = _windows_.SW_BORDER | |
1296 | SW_3DSASH = _windows_.SW_3DSASH | |
1297 | SW_3DBORDER = _windows_.SW_3DBORDER | |
1298 | SW_3D = _windows_.SW_3D | |
1299 | SASH_TOP = _windows_.SASH_TOP | |
1300 | SASH_RIGHT = _windows_.SASH_RIGHT | |
1301 | SASH_BOTTOM = _windows_.SASH_BOTTOM | |
1302 | SASH_LEFT = _windows_.SASH_LEFT | |
1303 | SASH_NONE = _windows_.SASH_NONE | |
1304 | class SashWindow(_core.Window): | |
093d3ff1 | 1305 | """Proxy of C++ SashWindow class""" |
554f62e9 RD |
1306 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1307 | __repr__ = _swig_repr | |
1308 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 1309 | """ |
248ed943 RD |
1310 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, |
1311 | Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D, | |
d55e5bfc RD |
1312 | String name=SashNameStr) -> SashWindow |
1313 | """ | |
554f62e9 | 1314 | _windows_.SashWindow_swiginit(self,_windows_.new_SashWindow(*args, **kwargs)) |
d55e5bfc RD |
1315 | self._setOORInfo(self) |
1316 | ||
1317 | def Create(*args, **kwargs): | |
1318 | """ | |
248ed943 RD |
1319 | Create(self, Window parent, int id=-1, Point pos=DefaultPosition, |
1320 | Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D, | |
d55e5bfc RD |
1321 | String name=SashNameStr) -> bool |
1322 | """ | |
1323 | return _windows_.SashWindow_Create(*args, **kwargs) | |
1324 | ||
1325 | def SetSashVisible(*args, **kwargs): | |
1326 | """SetSashVisible(self, int edge, bool sash)""" | |
1327 | return _windows_.SashWindow_SetSashVisible(*args, **kwargs) | |
1328 | ||
1329 | def GetSashVisible(*args, **kwargs): | |
1330 | """GetSashVisible(self, int edge) -> bool""" | |
1331 | return _windows_.SashWindow_GetSashVisible(*args, **kwargs) | |
1332 | ||
1333 | def SetSashBorder(*args, **kwargs): | |
1334 | """SetSashBorder(self, int edge, bool border)""" | |
1335 | return _windows_.SashWindow_SetSashBorder(*args, **kwargs) | |
1336 | ||
1337 | def HasBorder(*args, **kwargs): | |
1338 | """HasBorder(self, int edge) -> bool""" | |
1339 | return _windows_.SashWindow_HasBorder(*args, **kwargs) | |
1340 | ||
1341 | def GetEdgeMargin(*args, **kwargs): | |
1342 | """GetEdgeMargin(self, int edge) -> int""" | |
1343 | return _windows_.SashWindow_GetEdgeMargin(*args, **kwargs) | |
1344 | ||
1345 | def SetDefaultBorderSize(*args, **kwargs): | |
1346 | """SetDefaultBorderSize(self, int width)""" | |
1347 | return _windows_.SashWindow_SetDefaultBorderSize(*args, **kwargs) | |
1348 | ||
1349 | def GetDefaultBorderSize(*args, **kwargs): | |
1350 | """GetDefaultBorderSize(self) -> int""" | |
1351 | return _windows_.SashWindow_GetDefaultBorderSize(*args, **kwargs) | |
1352 | ||
1353 | def SetExtraBorderSize(*args, **kwargs): | |
1354 | """SetExtraBorderSize(self, int width)""" | |
1355 | return _windows_.SashWindow_SetExtraBorderSize(*args, **kwargs) | |
1356 | ||
1357 | def GetExtraBorderSize(*args, **kwargs): | |
1358 | """GetExtraBorderSize(self) -> int""" | |
1359 | return _windows_.SashWindow_GetExtraBorderSize(*args, **kwargs) | |
1360 | ||
1361 | def SetMinimumSizeX(*args, **kwargs): | |
1362 | """SetMinimumSizeX(self, int min)""" | |
1363 | return _windows_.SashWindow_SetMinimumSizeX(*args, **kwargs) | |
1364 | ||
1365 | def SetMinimumSizeY(*args, **kwargs): | |
1366 | """SetMinimumSizeY(self, int min)""" | |
1367 | return _windows_.SashWindow_SetMinimumSizeY(*args, **kwargs) | |
1368 | ||
1369 | def GetMinimumSizeX(*args, **kwargs): | |
1370 | """GetMinimumSizeX(self) -> int""" | |
1371 | return _windows_.SashWindow_GetMinimumSizeX(*args, **kwargs) | |
1372 | ||
1373 | def GetMinimumSizeY(*args, **kwargs): | |
1374 | """GetMinimumSizeY(self) -> int""" | |
1375 | return _windows_.SashWindow_GetMinimumSizeY(*args, **kwargs) | |
1376 | ||
1377 | def SetMaximumSizeX(*args, **kwargs): | |
1378 | """SetMaximumSizeX(self, int max)""" | |
1379 | return _windows_.SashWindow_SetMaximumSizeX(*args, **kwargs) | |
1380 | ||
1381 | def SetMaximumSizeY(*args, **kwargs): | |
1382 | """SetMaximumSizeY(self, int max)""" | |
1383 | return _windows_.SashWindow_SetMaximumSizeY(*args, **kwargs) | |
1384 | ||
1385 | def GetMaximumSizeX(*args, **kwargs): | |
1386 | """GetMaximumSizeX(self) -> int""" | |
1387 | return _windows_.SashWindow_GetMaximumSizeX(*args, **kwargs) | |
1388 | ||
1389 | def GetMaximumSizeY(*args, **kwargs): | |
1390 | """GetMaximumSizeY(self) -> int""" | |
1391 | return _windows_.SashWindow_GetMaximumSizeY(*args, **kwargs) | |
1392 | ||
1393 | def SashHitTest(*args, **kwargs): | |
1394 | """SashHitTest(self, int x, int y, int tolerance=2) -> int""" | |
1395 | return _windows_.SashWindow_SashHitTest(*args, **kwargs) | |
1396 | ||
1397 | def SizeWindows(*args, **kwargs): | |
1398 | """SizeWindows(self)""" | |
1399 | return _windows_.SashWindow_SizeWindows(*args, **kwargs) | |
1400 | ||
2131d850 | 1401 | _windows_.SashWindow_swigregister(SashWindow) |
d55e5bfc RD |
1402 | SashNameStr = cvar.SashNameStr |
1403 | SashLayoutNameStr = cvar.SashLayoutNameStr | |
1404 | ||
1405 | def PreSashWindow(*args, **kwargs): | |
1406 | """PreSashWindow() -> SashWindow""" | |
1407 | val = _windows_.new_PreSashWindow(*args, **kwargs) | |
d55e5bfc RD |
1408 | return val |
1409 | ||
1410 | SASH_STATUS_OK = _windows_.SASH_STATUS_OK | |
1411 | SASH_STATUS_OUT_OF_RANGE = _windows_.SASH_STATUS_OUT_OF_RANGE | |
1412 | class SashEvent(_core.CommandEvent): | |
093d3ff1 | 1413 | """Proxy of C++ SashEvent class""" |
554f62e9 RD |
1414 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1415 | __repr__ = _swig_repr | |
1416 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 1417 | """__init__(self, int id=0, int edge=SASH_NONE) -> SashEvent""" |
554f62e9 | 1418 | _windows_.SashEvent_swiginit(self,_windows_.new_SashEvent(*args, **kwargs)) |
d55e5bfc RD |
1419 | def SetEdge(*args, **kwargs): |
1420 | """SetEdge(self, int edge)""" | |
1421 | return _windows_.SashEvent_SetEdge(*args, **kwargs) | |
1422 | ||
1423 | def GetEdge(*args, **kwargs): | |
1424 | """GetEdge(self) -> int""" | |
1425 | return _windows_.SashEvent_GetEdge(*args, **kwargs) | |
1426 | ||
1427 | def SetDragRect(*args, **kwargs): | |
1428 | """SetDragRect(self, Rect rect)""" | |
1429 | return _windows_.SashEvent_SetDragRect(*args, **kwargs) | |
1430 | ||
1431 | def GetDragRect(*args, **kwargs): | |
1432 | """GetDragRect(self) -> Rect""" | |
1433 | return _windows_.SashEvent_GetDragRect(*args, **kwargs) | |
1434 | ||
1435 | def SetDragStatus(*args, **kwargs): | |
1436 | """SetDragStatus(self, int status)""" | |
1437 | return _windows_.SashEvent_SetDragStatus(*args, **kwargs) | |
1438 | ||
1439 | def GetDragStatus(*args, **kwargs): | |
1440 | """GetDragStatus(self) -> int""" | |
1441 | return _windows_.SashEvent_GetDragStatus(*args, **kwargs) | |
1442 | ||
2131d850 | 1443 | _windows_.SashEvent_swigregister(SashEvent) |
d55e5bfc RD |
1444 | |
1445 | wxEVT_SASH_DRAGGED = _windows_.wxEVT_SASH_DRAGGED | |
1446 | EVT_SASH_DRAGGED = wx.PyEventBinder( wxEVT_SASH_DRAGGED, 1 ) | |
1447 | EVT_SASH_DRAGGED_RANGE = wx.PyEventBinder( wxEVT_SASH_DRAGGED, 2 ) | |
1448 | ||
1449 | #--------------------------------------------------------------------------- | |
1450 | ||
1451 | LAYOUT_HORIZONTAL = _windows_.LAYOUT_HORIZONTAL | |
1452 | LAYOUT_VERTICAL = _windows_.LAYOUT_VERTICAL | |
1453 | LAYOUT_NONE = _windows_.LAYOUT_NONE | |
1454 | LAYOUT_TOP = _windows_.LAYOUT_TOP | |
1455 | LAYOUT_LEFT = _windows_.LAYOUT_LEFT | |
1456 | LAYOUT_RIGHT = _windows_.LAYOUT_RIGHT | |
1457 | LAYOUT_BOTTOM = _windows_.LAYOUT_BOTTOM | |
1458 | LAYOUT_LENGTH_Y = _windows_.LAYOUT_LENGTH_Y | |
1459 | LAYOUT_LENGTH_X = _windows_.LAYOUT_LENGTH_X | |
1460 | LAYOUT_MRU_LENGTH = _windows_.LAYOUT_MRU_LENGTH | |
1461 | LAYOUT_QUERY = _windows_.LAYOUT_QUERY | |
1462 | wxEVT_QUERY_LAYOUT_INFO = _windows_.wxEVT_QUERY_LAYOUT_INFO | |
1463 | wxEVT_CALCULATE_LAYOUT = _windows_.wxEVT_CALCULATE_LAYOUT | |
1464 | class QueryLayoutInfoEvent(_core.Event): | |
093d3ff1 | 1465 | """Proxy of C++ QueryLayoutInfoEvent class""" |
554f62e9 RD |
1466 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1467 | __repr__ = _swig_repr | |
1468 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 1469 | """__init__(self, int id=0) -> QueryLayoutInfoEvent""" |
554f62e9 | 1470 | _windows_.QueryLayoutInfoEvent_swiginit(self,_windows_.new_QueryLayoutInfoEvent(*args, **kwargs)) |
d55e5bfc RD |
1471 | def SetRequestedLength(*args, **kwargs): |
1472 | """SetRequestedLength(self, int length)""" | |
1473 | return _windows_.QueryLayoutInfoEvent_SetRequestedLength(*args, **kwargs) | |
1474 | ||
1475 | def GetRequestedLength(*args, **kwargs): | |
1476 | """GetRequestedLength(self) -> int""" | |
1477 | return _windows_.QueryLayoutInfoEvent_GetRequestedLength(*args, **kwargs) | |
1478 | ||
1479 | def SetFlags(*args, **kwargs): | |
1480 | """SetFlags(self, int flags)""" | |
1481 | return _windows_.QueryLayoutInfoEvent_SetFlags(*args, **kwargs) | |
1482 | ||
1483 | def GetFlags(*args, **kwargs): | |
1484 | """GetFlags(self) -> int""" | |
1485 | return _windows_.QueryLayoutInfoEvent_GetFlags(*args, **kwargs) | |
1486 | ||
1487 | def SetSize(*args, **kwargs): | |
1488 | """SetSize(self, Size size)""" | |
1489 | return _windows_.QueryLayoutInfoEvent_SetSize(*args, **kwargs) | |
1490 | ||
1491 | def GetSize(*args, **kwargs): | |
1492 | """GetSize(self) -> Size""" | |
1493 | return _windows_.QueryLayoutInfoEvent_GetSize(*args, **kwargs) | |
1494 | ||
1495 | def SetOrientation(*args, **kwargs): | |
1496 | """SetOrientation(self, int orient)""" | |
1497 | return _windows_.QueryLayoutInfoEvent_SetOrientation(*args, **kwargs) | |
1498 | ||
1499 | def GetOrientation(*args, **kwargs): | |
1500 | """GetOrientation(self) -> int""" | |
1501 | return _windows_.QueryLayoutInfoEvent_GetOrientation(*args, **kwargs) | |
1502 | ||
1503 | def SetAlignment(*args, **kwargs): | |
1504 | """SetAlignment(self, int align)""" | |
1505 | return _windows_.QueryLayoutInfoEvent_SetAlignment(*args, **kwargs) | |
1506 | ||
1507 | def GetAlignment(*args, **kwargs): | |
1508 | """GetAlignment(self) -> int""" | |
1509 | return _windows_.QueryLayoutInfoEvent_GetAlignment(*args, **kwargs) | |
1510 | ||
2131d850 | 1511 | _windows_.QueryLayoutInfoEvent_swigregister(QueryLayoutInfoEvent) |
d55e5bfc RD |
1512 | |
1513 | class CalculateLayoutEvent(_core.Event): | |
093d3ff1 | 1514 | """Proxy of C++ CalculateLayoutEvent class""" |
554f62e9 RD |
1515 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1516 | __repr__ = _swig_repr | |
1517 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 1518 | """__init__(self, int id=0) -> CalculateLayoutEvent""" |
554f62e9 | 1519 | _windows_.CalculateLayoutEvent_swiginit(self,_windows_.new_CalculateLayoutEvent(*args, **kwargs)) |
d55e5bfc RD |
1520 | def SetFlags(*args, **kwargs): |
1521 | """SetFlags(self, int flags)""" | |
1522 | return _windows_.CalculateLayoutEvent_SetFlags(*args, **kwargs) | |
1523 | ||
1524 | def GetFlags(*args, **kwargs): | |
1525 | """GetFlags(self) -> int""" | |
1526 | return _windows_.CalculateLayoutEvent_GetFlags(*args, **kwargs) | |
1527 | ||
1528 | def SetRect(*args, **kwargs): | |
1529 | """SetRect(self, Rect rect)""" | |
1530 | return _windows_.CalculateLayoutEvent_SetRect(*args, **kwargs) | |
1531 | ||
1532 | def GetRect(*args, **kwargs): | |
1533 | """GetRect(self) -> Rect""" | |
1534 | return _windows_.CalculateLayoutEvent_GetRect(*args, **kwargs) | |
1535 | ||
2131d850 | 1536 | _windows_.CalculateLayoutEvent_swigregister(CalculateLayoutEvent) |
d55e5bfc RD |
1537 | |
1538 | EVT_QUERY_LAYOUT_INFO = wx.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO ) | |
1539 | EVT_CALCULATE_LAYOUT = wx.PyEventBinder( wxEVT_CALCULATE_LAYOUT ) | |
1540 | ||
1541 | class SashLayoutWindow(SashWindow): | |
093d3ff1 | 1542 | """Proxy of C++ SashLayoutWindow class""" |
554f62e9 RD |
1543 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1544 | __repr__ = _swig_repr | |
1545 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 1546 | """ |
248ed943 RD |
1547 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, |
1548 | Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D, | |
d55e5bfc RD |
1549 | String name=SashLayoutNameStr) -> SashLayoutWindow |
1550 | """ | |
554f62e9 | 1551 | _windows_.SashLayoutWindow_swiginit(self,_windows_.new_SashLayoutWindow(*args, **kwargs)) |
d55e5bfc RD |
1552 | self._setOORInfo(self) |
1553 | ||
1554 | def Create(*args, **kwargs): | |
1555 | """ | |
248ed943 RD |
1556 | Create(self, Window parent, int id=-1, Point pos=DefaultPosition, |
1557 | Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D, | |
d55e5bfc RD |
1558 | String name=SashLayoutNameStr) -> bool |
1559 | """ | |
1560 | return _windows_.SashLayoutWindow_Create(*args, **kwargs) | |
1561 | ||
1562 | def GetAlignment(*args, **kwargs): | |
1563 | """GetAlignment(self) -> int""" | |
1564 | return _windows_.SashLayoutWindow_GetAlignment(*args, **kwargs) | |
1565 | ||
1566 | def GetOrientation(*args, **kwargs): | |
1567 | """GetOrientation(self) -> int""" | |
1568 | return _windows_.SashLayoutWindow_GetOrientation(*args, **kwargs) | |
1569 | ||
1570 | def SetAlignment(*args, **kwargs): | |
1571 | """SetAlignment(self, int alignment)""" | |
1572 | return _windows_.SashLayoutWindow_SetAlignment(*args, **kwargs) | |
1573 | ||
1574 | def SetDefaultSize(*args, **kwargs): | |
1575 | """SetDefaultSize(self, Size size)""" | |
1576 | return _windows_.SashLayoutWindow_SetDefaultSize(*args, **kwargs) | |
1577 | ||
1578 | def SetOrientation(*args, **kwargs): | |
1579 | """SetOrientation(self, int orientation)""" | |
1580 | return _windows_.SashLayoutWindow_SetOrientation(*args, **kwargs) | |
1581 | ||
2131d850 | 1582 | _windows_.SashLayoutWindow_swigregister(SashLayoutWindow) |
d55e5bfc RD |
1583 | |
1584 | def PreSashLayoutWindow(*args, **kwargs): | |
1585 | """PreSashLayoutWindow() -> SashLayoutWindow""" | |
1586 | val = _windows_.new_PreSashLayoutWindow(*args, **kwargs) | |
d55e5bfc RD |
1587 | return val |
1588 | ||
1589 | class LayoutAlgorithm(_core.Object): | |
093d3ff1 | 1590 | """Proxy of C++ LayoutAlgorithm class""" |
554f62e9 RD |
1591 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1592 | __repr__ = _swig_repr | |
1593 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 1594 | """__init__(self) -> LayoutAlgorithm""" |
554f62e9 RD |
1595 | _windows_.LayoutAlgorithm_swiginit(self,_windows_.new_LayoutAlgorithm(*args, **kwargs)) |
1596 | __swig_destroy__ = _windows_.delete_LayoutAlgorithm | |
1597 | __del__ = lambda self : None; | |
d55e5bfc RD |
1598 | def LayoutMDIFrame(*args, **kwargs): |
1599 | """LayoutMDIFrame(self, MDIParentFrame frame, Rect rect=None) -> bool""" | |
1600 | return _windows_.LayoutAlgorithm_LayoutMDIFrame(*args, **kwargs) | |
1601 | ||
1602 | def LayoutFrame(*args, **kwargs): | |
1603 | """LayoutFrame(self, Frame frame, Window mainWindow=None) -> bool""" | |
1604 | return _windows_.LayoutAlgorithm_LayoutFrame(*args, **kwargs) | |
1605 | ||
1606 | def LayoutWindow(*args, **kwargs): | |
1607 | """LayoutWindow(self, Window parent, Window mainWindow=None) -> bool""" | |
1608 | return _windows_.LayoutAlgorithm_LayoutWindow(*args, **kwargs) | |
1609 | ||
2131d850 | 1610 | _windows_.LayoutAlgorithm_swigregister(LayoutAlgorithm) |
d55e5bfc RD |
1611 | |
1612 | #--------------------------------------------------------------------------- | |
1613 | ||
1614 | class PopupWindow(_core.Window): | |
093d3ff1 | 1615 | """Proxy of C++ PopupWindow class""" |
554f62e9 RD |
1616 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1617 | __repr__ = _swig_repr | |
1618 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 1619 | """__init__(self, Window parent, int flags=BORDER_NONE) -> PopupWindow""" |
554f62e9 | 1620 | _windows_.PopupWindow_swiginit(self,_windows_.new_PopupWindow(*args, **kwargs)) |
d55e5bfc RD |
1621 | self._setOORInfo(self) |
1622 | ||
1623 | def Create(*args, **kwargs): | |
1624 | """Create(self, Window parent, int flags=BORDER_NONE) -> bool""" | |
1625 | return _windows_.PopupWindow_Create(*args, **kwargs) | |
1626 | ||
1627 | def Position(*args, **kwargs): | |
1628 | """Position(self, Point ptOrigin, Size size)""" | |
1629 | return _windows_.PopupWindow_Position(*args, **kwargs) | |
1630 | ||
2131d850 | 1631 | _windows_.PopupWindow_swigregister(PopupWindow) |
d55e5bfc RD |
1632 | |
1633 | def PrePopupWindow(*args, **kwargs): | |
1634 | """PrePopupWindow() -> PopupWindow""" | |
1635 | val = _windows_.new_PrePopupWindow(*args, **kwargs) | |
d55e5bfc RD |
1636 | return val |
1637 | ||
1638 | #--------------------------------------------------------------------------- | |
1639 | ||
1640 | class PopupTransientWindow(PopupWindow): | |
093d3ff1 | 1641 | """Proxy of C++ PopupTransientWindow class""" |
554f62e9 RD |
1642 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1643 | __repr__ = _swig_repr | |
1644 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 1645 | """__init__(self, Window parent, int style=BORDER_NONE) -> PopupTransientWindow""" |
554f62e9 | 1646 | _windows_.PopupTransientWindow_swiginit(self,_windows_.new_PopupTransientWindow(*args, **kwargs)) |
d55e5bfc RD |
1647 | self._setOORInfo(self);self._setCallbackInfo(self, PopupTransientWindow) |
1648 | ||
1649 | def _setCallbackInfo(*args, **kwargs): | |
1650 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
1651 | return _windows_.PopupTransientWindow__setCallbackInfo(*args, **kwargs) | |
1652 | ||
1653 | def Popup(*args, **kwargs): | |
1654 | """Popup(self, Window focus=None)""" | |
1655 | return _windows_.PopupTransientWindow_Popup(*args, **kwargs) | |
1656 | ||
1657 | def Dismiss(*args, **kwargs): | |
1658 | """Dismiss(self)""" | |
1659 | return _windows_.PopupTransientWindow_Dismiss(*args, **kwargs) | |
1660 | ||
2131d850 | 1661 | _windows_.PopupTransientWindow_swigregister(PopupTransientWindow) |
d55e5bfc RD |
1662 | |
1663 | def PrePopupTransientWindow(*args, **kwargs): | |
1664 | """PrePopupTransientWindow() -> PopupTransientWindow""" | |
1665 | val = _windows_.new_PrePopupTransientWindow(*args, **kwargs) | |
d55e5bfc RD |
1666 | return val |
1667 | ||
1668 | #--------------------------------------------------------------------------- | |
1669 | ||
1670 | class TipWindow(PopupTransientWindow): | |
093d3ff1 | 1671 | """Proxy of C++ TipWindow class""" |
554f62e9 RD |
1672 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1673 | __repr__ = _swig_repr | |
1674 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 1675 | """__init__(self, Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow""" |
554f62e9 | 1676 | _windows_.TipWindow_swiginit(self,_windows_.new_TipWindow(*args, **kwargs)) |
d55e5bfc RD |
1677 | self._setOORInfo(self) |
1678 | ||
1679 | def SetBoundingRect(*args, **kwargs): | |
1680 | """SetBoundingRect(self, Rect rectBound)""" | |
1681 | return _windows_.TipWindow_SetBoundingRect(*args, **kwargs) | |
1682 | ||
1683 | def Close(*args, **kwargs): | |
093d3ff1 RD |
1684 | """ |
1685 | Close(self) | |
1686 | ||
1687 | This function simply generates a EVT_CLOSE event whose handler usually | |
1688 | tries to close the window. It doesn't close the window itself, | |
1689 | however. If force is False (the default) then the window's close | |
1690 | handler will be allowed to veto the destruction of the window. | |
1691 | """ | |
d55e5bfc RD |
1692 | return _windows_.TipWindow_Close(*args, **kwargs) |
1693 | ||
2131d850 | 1694 | _windows_.TipWindow_swigregister(TipWindow) |
d55e5bfc RD |
1695 | |
1696 | #--------------------------------------------------------------------------- | |
1697 | ||
1698 | class VScrolledWindow(Panel): | |
093d3ff1 | 1699 | """Proxy of C++ VScrolledWindow class""" |
554f62e9 RD |
1700 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1701 | __repr__ = _swig_repr | |
1702 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
1703 | """ |
1704 | __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition, | |
1705 | Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow | |
1706 | """ | |
554f62e9 | 1707 | _windows_.VScrolledWindow_swiginit(self,_windows_.new_VScrolledWindow(*args, **kwargs)) |
d55e5bfc RD |
1708 | self._setOORInfo(self); self._setCallbackInfo(self, VScrolledWindow) |
1709 | ||
1710 | def _setCallbackInfo(*args, **kwargs): | |
1711 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
1712 | return _windows_.VScrolledWindow__setCallbackInfo(*args, **kwargs) | |
1713 | ||
1714 | def Create(*args, **kwargs): | |
1715 | """ | |
1716 | Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition, | |
1717 | Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool | |
1718 | """ | |
1719 | return _windows_.VScrolledWindow_Create(*args, **kwargs) | |
1720 | ||
1721 | def SetLineCount(*args, **kwargs): | |
1722 | """SetLineCount(self, size_t count)""" | |
1723 | return _windows_.VScrolledWindow_SetLineCount(*args, **kwargs) | |
1724 | ||
1725 | def ScrollToLine(*args, **kwargs): | |
1726 | """ScrollToLine(self, size_t line) -> bool""" | |
1727 | return _windows_.VScrolledWindow_ScrollToLine(*args, **kwargs) | |
1728 | ||
d55e5bfc RD |
1729 | def RefreshLine(*args, **kwargs): |
1730 | """RefreshLine(self, size_t line)""" | |
1731 | return _windows_.VScrolledWindow_RefreshLine(*args, **kwargs) | |
1732 | ||
1733 | def RefreshLines(*args, **kwargs): | |
1734 | """RefreshLines(self, size_t from, size_t to)""" | |
1735 | return _windows_.VScrolledWindow_RefreshLines(*args, **kwargs) | |
1736 | ||
354693ff | 1737 | def HitTestXY(*args, **kwargs): |
bf26d883 | 1738 | """ |
354693ff | 1739 | HitTestXY(self, int x, int y) -> int |
bf26d883 RD |
1740 | |
1741 | Test where the given (in client coords) point lies | |
1742 | """ | |
354693ff | 1743 | return _windows_.VScrolledWindow_HitTestXY(*args, **kwargs) |
d55e5bfc RD |
1744 | |
1745 | def HitTest(*args, **kwargs): | |
bf26d883 RD |
1746 | """ |
1747 | HitTest(self, Point pt) -> int | |
1748 | ||
1749 | Test where the given (in client coords) point lies | |
1750 | """ | |
d55e5bfc RD |
1751 | return _windows_.VScrolledWindow_HitTest(*args, **kwargs) |
1752 | ||
1753 | def RefreshAll(*args, **kwargs): | |
1754 | """RefreshAll(self)""" | |
1755 | return _windows_.VScrolledWindow_RefreshAll(*args, **kwargs) | |
1756 | ||
1757 | def GetLineCount(*args, **kwargs): | |
1758 | """GetLineCount(self) -> size_t""" | |
1759 | return _windows_.VScrolledWindow_GetLineCount(*args, **kwargs) | |
1760 | ||
70b7a5fe RD |
1761 | def GetVisibleBegin(*args, **kwargs): |
1762 | """GetVisibleBegin(self) -> size_t""" | |
1763 | return _windows_.VScrolledWindow_GetVisibleBegin(*args, **kwargs) | |
1764 | ||
1765 | def GetVisibleEnd(*args, **kwargs): | |
1766 | """GetVisibleEnd(self) -> size_t""" | |
1767 | return _windows_.VScrolledWindow_GetVisibleEnd(*args, **kwargs) | |
1768 | ||
1769 | def IsVisible(*args, **kwargs): | |
1770 | """IsVisible(self, size_t line) -> bool""" | |
1771 | return _windows_.VScrolledWindow_IsVisible(*args, **kwargs) | |
1772 | ||
d55e5bfc RD |
1773 | def GetFirstVisibleLine(*args, **kwargs): |
1774 | """GetFirstVisibleLine(self) -> size_t""" | |
1775 | return _windows_.VScrolledWindow_GetFirstVisibleLine(*args, **kwargs) | |
1776 | ||
1777 | def GetLastVisibleLine(*args, **kwargs): | |
1778 | """GetLastVisibleLine(self) -> size_t""" | |
1779 | return _windows_.VScrolledWindow_GetLastVisibleLine(*args, **kwargs) | |
1780 | ||
554f62e9 RD |
1781 | def FindFirstFromBottom(*args, **kwargs): |
1782 | """FindFirstFromBottom(self, size_t lineLast, bool fullyVisible=False) -> size_t""" | |
1783 | return _windows_.VScrolledWindow_FindFirstFromBottom(*args, **kwargs) | |
1784 | ||
1785 | def GetLinesHeight(*args, **kwargs): | |
1786 | """GetLinesHeight(self, size_t lineMin, size_t lineMax) -> int""" | |
1787 | return _windows_.VScrolledWindow_GetLinesHeight(*args, **kwargs) | |
d55e5bfc | 1788 | |
2131d850 | 1789 | _windows_.VScrolledWindow_swigregister(VScrolledWindow) |
d55e5bfc RD |
1790 | |
1791 | def PreVScrolledWindow(*args, **kwargs): | |
1792 | """PreVScrolledWindow() -> VScrolledWindow""" | |
1793 | val = _windows_.new_PreVScrolledWindow(*args, **kwargs) | |
d55e5bfc RD |
1794 | return val |
1795 | ||
1796 | class VListBox(VScrolledWindow): | |
093d3ff1 | 1797 | """Proxy of C++ VListBox class""" |
554f62e9 RD |
1798 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1799 | __repr__ = _swig_repr | |
1800 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
1801 | """ |
1802 | __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition, | |
1803 | Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox | |
1804 | """ | |
554f62e9 | 1805 | _windows_.VListBox_swiginit(self,_windows_.new_VListBox(*args, **kwargs)) |
d55e5bfc RD |
1806 | self._setOORInfo(self);self._setCallbackInfo(self, VListBox) |
1807 | ||
1808 | def _setCallbackInfo(*args, **kwargs): | |
1809 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
1810 | return _windows_.VListBox__setCallbackInfo(*args, **kwargs) | |
1811 | ||
1812 | def Create(*args, **kwargs): | |
1813 | """ | |
1814 | Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition, | |
1815 | Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool | |
1816 | """ | |
1817 | return _windows_.VListBox_Create(*args, **kwargs) | |
1818 | ||
1819 | def GetItemCount(*args, **kwargs): | |
1820 | """GetItemCount(self) -> size_t""" | |
1821 | return _windows_.VListBox_GetItemCount(*args, **kwargs) | |
1822 | ||
1823 | def HasMultipleSelection(*args, **kwargs): | |
1824 | """HasMultipleSelection(self) -> bool""" | |
1825 | return _windows_.VListBox_HasMultipleSelection(*args, **kwargs) | |
1826 | ||
1827 | def GetSelection(*args, **kwargs): | |
1828 | """GetSelection(self) -> int""" | |
1829 | return _windows_.VListBox_GetSelection(*args, **kwargs) | |
1830 | ||
1831 | def IsCurrent(*args, **kwargs): | |
1832 | """IsCurrent(self, size_t item) -> bool""" | |
1833 | return _windows_.VListBox_IsCurrent(*args, **kwargs) | |
1834 | ||
1835 | def IsSelected(*args, **kwargs): | |
1836 | """IsSelected(self, size_t item) -> bool""" | |
1837 | return _windows_.VListBox_IsSelected(*args, **kwargs) | |
1838 | ||
1839 | def GetSelectedCount(*args, **kwargs): | |
1840 | """GetSelectedCount(self) -> size_t""" | |
1841 | return _windows_.VListBox_GetSelectedCount(*args, **kwargs) | |
1842 | ||
1843 | def GetFirstSelected(*args, **kwargs): | |
09c21d3b | 1844 | """GetFirstSelected(self) -> PyObject""" |
d55e5bfc RD |
1845 | return _windows_.VListBox_GetFirstSelected(*args, **kwargs) |
1846 | ||
1847 | def GetNextSelected(*args, **kwargs): | |
09c21d3b | 1848 | """GetNextSelected(self, unsigned long cookie) -> PyObject""" |
d55e5bfc RD |
1849 | return _windows_.VListBox_GetNextSelected(*args, **kwargs) |
1850 | ||
1851 | def GetMargins(*args, **kwargs): | |
1852 | """GetMargins(self) -> Point""" | |
1853 | return _windows_.VListBox_GetMargins(*args, **kwargs) | |
1854 | ||
1855 | def GetSelectionBackground(*args, **kwargs): | |
1856 | """GetSelectionBackground(self) -> Colour""" | |
1857 | return _windows_.VListBox_GetSelectionBackground(*args, **kwargs) | |
1858 | ||
1859 | def SetItemCount(*args, **kwargs): | |
1860 | """SetItemCount(self, size_t count)""" | |
1861 | return _windows_.VListBox_SetItemCount(*args, **kwargs) | |
1862 | ||
1863 | def Clear(*args, **kwargs): | |
1864 | """Clear(self)""" | |
1865 | return _windows_.VListBox_Clear(*args, **kwargs) | |
1866 | ||
1867 | def SetSelection(*args, **kwargs): | |
1868 | """SetSelection(self, int selection)""" | |
1869 | return _windows_.VListBox_SetSelection(*args, **kwargs) | |
1870 | ||
1871 | def Select(*args, **kwargs): | |
1872 | """Select(self, size_t item, bool select=True) -> bool""" | |
1873 | return _windows_.VListBox_Select(*args, **kwargs) | |
1874 | ||
1875 | def SelectRange(*args, **kwargs): | |
1876 | """SelectRange(self, size_t from, size_t to) -> bool""" | |
1877 | return _windows_.VListBox_SelectRange(*args, **kwargs) | |
1878 | ||
1879 | def Toggle(*args, **kwargs): | |
1880 | """Toggle(self, size_t item)""" | |
1881 | return _windows_.VListBox_Toggle(*args, **kwargs) | |
1882 | ||
1883 | def SelectAll(*args, **kwargs): | |
1884 | """SelectAll(self) -> bool""" | |
1885 | return _windows_.VListBox_SelectAll(*args, **kwargs) | |
1886 | ||
1887 | def DeselectAll(*args, **kwargs): | |
1888 | """DeselectAll(self) -> bool""" | |
1889 | return _windows_.VListBox_DeselectAll(*args, **kwargs) | |
1890 | ||
1891 | def SetMargins(*args, **kwargs): | |
1892 | """SetMargins(self, Point pt)""" | |
1893 | return _windows_.VListBox_SetMargins(*args, **kwargs) | |
1894 | ||
1895 | def SetMarginsXY(*args, **kwargs): | |
1896 | """SetMarginsXY(self, int x, int y)""" | |
1897 | return _windows_.VListBox_SetMarginsXY(*args, **kwargs) | |
1898 | ||
1899 | def SetSelectionBackground(*args, **kwargs): | |
1900 | """SetSelectionBackground(self, Colour col)""" | |
1901 | return _windows_.VListBox_SetSelectionBackground(*args, **kwargs) | |
1902 | ||
1c71765a RD |
1903 | def OnDrawSeparator(*args, **kwargs): |
1904 | """OnDrawSeparator(self, DC dc, Rect rect, size_t n)""" | |
1905 | return _windows_.VListBox_OnDrawSeparator(*args, **kwargs) | |
1906 | ||
1907 | def OnDrawBackground(*args, **kwargs): | |
1908 | """OnDrawBackground(self, DC dc, Rect rect, size_t n)""" | |
1909 | return _windows_.VListBox_OnDrawBackground(*args, **kwargs) | |
1910 | ||
2131d850 | 1911 | _windows_.VListBox_swigregister(VListBox) |
d55e5bfc RD |
1912 | VListBoxNameStr = cvar.VListBoxNameStr |
1913 | ||
1914 | def PreVListBox(*args, **kwargs): | |
1915 | """PreVListBox() -> VListBox""" | |
1916 | val = _windows_.new_PreVListBox(*args, **kwargs) | |
d55e5bfc RD |
1917 | return val |
1918 | ||
1919 | class HtmlListBox(VListBox): | |
093d3ff1 | 1920 | """Proxy of C++ HtmlListBox class""" |
554f62e9 RD |
1921 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1922 | __repr__ = _swig_repr | |
1923 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
1924 | """ |
1925 | __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition, | |
1926 | Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox | |
1927 | """ | |
554f62e9 | 1928 | _windows_.HtmlListBox_swiginit(self,_windows_.new_HtmlListBox(*args, **kwargs)) |
d55e5bfc RD |
1929 | self._setOORInfo(self);self._setCallbackInfo(self, HtmlListBox) |
1930 | ||
1931 | def _setCallbackInfo(*args, **kwargs): | |
1932 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
1933 | return _windows_.HtmlListBox__setCallbackInfo(*args, **kwargs) | |
1934 | ||
1935 | def Create(*args, **kwargs): | |
1936 | """ | |
1937 | Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition, | |
1938 | Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool | |
1939 | """ | |
1940 | return _windows_.HtmlListBox_Create(*args, **kwargs) | |
1941 | ||
d55e5bfc RD |
1942 | def SetItemCount(*args, **kwargs): |
1943 | """SetItemCount(self, size_t count)""" | |
1944 | return _windows_.HtmlListBox_SetItemCount(*args, **kwargs) | |
1945 | ||
c24da6d6 RD |
1946 | def GetFileSystem(*args, **kwargs): |
1947 | """GetFileSystem(self) -> FileSystem""" | |
1948 | return _windows_.HtmlListBox_GetFileSystem(*args, **kwargs) | |
1949 | ||
e9d6f3a4 RD |
1950 | def OnLinkClicked(*args, **kwargs): |
1951 | """OnLinkClicked(self, size_t n, wxHtmlLinkInfo link)""" | |
1952 | return _windows_.HtmlListBox_OnLinkClicked(*args, **kwargs) | |
1953 | ||
2131d850 | 1954 | _windows_.HtmlListBox_swigregister(HtmlListBox) |
d55e5bfc RD |
1955 | |
1956 | def PreHtmlListBox(*args, **kwargs): | |
1957 | """PreHtmlListBox() -> HtmlListBox""" | |
1958 | val = _windows_.new_PreHtmlListBox(*args, **kwargs) | |
d55e5bfc RD |
1959 | return val |
1960 | ||
1961 | #--------------------------------------------------------------------------- | |
1962 | ||
1963 | class TaskBarIcon(_core.EvtHandler): | |
093d3ff1 | 1964 | """Proxy of C++ TaskBarIcon class""" |
554f62e9 RD |
1965 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
1966 | __repr__ = _swig_repr | |
1967 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 1968 | """__init__(self) -> TaskBarIcon""" |
554f62e9 | 1969 | _windows_.TaskBarIcon_swiginit(self,_windows_.new_TaskBarIcon(*args, **kwargs)) |
5e483524 RD |
1970 | self._setCallbackInfo(self, TaskBarIcon, 0) |
1971 | ||
554f62e9 RD |
1972 | __swig_destroy__ = _windows_.delete_TaskBarIcon |
1973 | __del__ = lambda self : None; | |
5e483524 RD |
1974 | def _setCallbackInfo(*args, **kwargs): |
1975 | """_setCallbackInfo(self, PyObject self, PyObject _class, int incref)""" | |
1976 | return _windows_.TaskBarIcon__setCallbackInfo(*args, **kwargs) | |
d55e5bfc RD |
1977 | |
1978 | def Destroy(*args, **kwargs): | |
1979 | """ | |
1980 | Destroy(self) | |
1981 | ||
1982 | Deletes the C++ object this Python object is a proxy for. | |
1983 | """ | |
7e08d4ef RD |
1984 | val = _windows_.TaskBarIcon_Destroy(*args, **kwargs) |
1985 | args[0].thisown = 0 | |
1986 | return val | |
d55e5bfc RD |
1987 | |
1988 | def IsOk(*args, **kwargs): | |
1989 | """IsOk(self) -> bool""" | |
1990 | return _windows_.TaskBarIcon_IsOk(*args, **kwargs) | |
1991 | ||
1992 | def __nonzero__(self): return self.IsOk() | |
1993 | def IsIconInstalled(*args, **kwargs): | |
1994 | """IsIconInstalled(self) -> bool""" | |
1995 | return _windows_.TaskBarIcon_IsIconInstalled(*args, **kwargs) | |
1996 | ||
1997 | def SetIcon(*args, **kwargs): | |
1998 | """SetIcon(self, Icon icon, String tooltip=EmptyString) -> bool""" | |
1999 | return _windows_.TaskBarIcon_SetIcon(*args, **kwargs) | |
2000 | ||
2001 | def RemoveIcon(*args, **kwargs): | |
2002 | """RemoveIcon(self) -> bool""" | |
2003 | return _windows_.TaskBarIcon_RemoveIcon(*args, **kwargs) | |
2004 | ||
2005 | def PopupMenu(*args, **kwargs): | |
2006 | """PopupMenu(self, Menu menu) -> bool""" | |
2007 | return _windows_.TaskBarIcon_PopupMenu(*args, **kwargs) | |
2008 | ||
2131d850 | 2009 | _windows_.TaskBarIcon_swigregister(TaskBarIcon) |
d55e5bfc RD |
2010 | |
2011 | class TaskBarIconEvent(_core.Event): | |
093d3ff1 | 2012 | """Proxy of C++ TaskBarIconEvent class""" |
554f62e9 RD |
2013 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2014 | __repr__ = _swig_repr | |
2015 | def __init__(self, *args, **kwargs): | |
f460c29d | 2016 | """__init__(self, EventType evtType, wxTaskBarIcon tbIcon) -> TaskBarIconEvent""" |
554f62e9 | 2017 | _windows_.TaskBarIconEvent_swiginit(self,_windows_.new_TaskBarIconEvent(*args, **kwargs)) |
2131d850 | 2018 | _windows_.TaskBarIconEvent_swigregister(TaskBarIconEvent) |
d55e5bfc RD |
2019 | |
2020 | wxEVT_TASKBAR_MOVE = _windows_.wxEVT_TASKBAR_MOVE | |
2021 | wxEVT_TASKBAR_LEFT_DOWN = _windows_.wxEVT_TASKBAR_LEFT_DOWN | |
2022 | wxEVT_TASKBAR_LEFT_UP = _windows_.wxEVT_TASKBAR_LEFT_UP | |
2023 | wxEVT_TASKBAR_RIGHT_DOWN = _windows_.wxEVT_TASKBAR_RIGHT_DOWN | |
2024 | wxEVT_TASKBAR_RIGHT_UP = _windows_.wxEVT_TASKBAR_RIGHT_UP | |
2025 | wxEVT_TASKBAR_LEFT_DCLICK = _windows_.wxEVT_TASKBAR_LEFT_DCLICK | |
2026 | wxEVT_TASKBAR_RIGHT_DCLICK = _windows_.wxEVT_TASKBAR_RIGHT_DCLICK | |
2027 | EVT_TASKBAR_MOVE = wx.PyEventBinder ( wxEVT_TASKBAR_MOVE ) | |
2028 | EVT_TASKBAR_LEFT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN ) | |
2029 | EVT_TASKBAR_LEFT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP ) | |
2030 | EVT_TASKBAR_RIGHT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN ) | |
2031 | EVT_TASKBAR_RIGHT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP ) | |
2032 | EVT_TASKBAR_LEFT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK ) | |
2033 | EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK ) | |
2034 | ||
2035 | #--------------------------------------------------------------------------- | |
2036 | ||
2037 | class ColourData(_core.Object): | |
c24da6d6 RD |
2038 | """ |
2039 | This class holds a variety of information related to the colour | |
2040 | chooser dialog, used to transfer settings and results to and from the | |
2041 | `wx.ColourDialog`. | |
2042 | """ | |
554f62e9 RD |
2043 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2044 | __repr__ = _swig_repr | |
2045 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2046 | """ |
2047 | __init__(self) -> ColourData | |
2048 | ||
2049 | Constructor, sets default values. | |
2050 | """ | |
554f62e9 RD |
2051 | _windows_.ColourData_swiginit(self,_windows_.new_ColourData(*args, **kwargs)) |
2052 | __swig_destroy__ = _windows_.delete_ColourData | |
2053 | __del__ = lambda self : None; | |
d55e5bfc RD |
2054 | def GetChooseFull(*args, **kwargs): |
2055 | """ | |
2056 | GetChooseFull(self) -> bool | |
2057 | ||
c24da6d6 RD |
2058 | Under Windows, determines whether the Windows colour dialog will |
2059 | display the full dialog with custom colour selection controls. Has no | |
2060 | meaning under other platforms. The default value is true. | |
d55e5bfc RD |
2061 | """ |
2062 | return _windows_.ColourData_GetChooseFull(*args, **kwargs) | |
2063 | ||
2064 | def GetColour(*args, **kwargs): | |
2065 | """ | |
2066 | GetColour(self) -> Colour | |
2067 | ||
2068 | Gets the colour (pre)selected by the dialog. | |
2069 | """ | |
2070 | return _windows_.ColourData_GetColour(*args, **kwargs) | |
2071 | ||
2072 | def GetCustomColour(*args, **kwargs): | |
2073 | """ | |
2074 | GetCustomColour(self, int i) -> Colour | |
2075 | ||
c24da6d6 RD |
2076 | Gets the i'th custom colour associated with the colour dialog. i |
2077 | should be an integer between 0 and 15. The default custom colours are | |
248ed943 | 2078 | all invalid colours. |
d55e5bfc RD |
2079 | """ |
2080 | return _windows_.ColourData_GetCustomColour(*args, **kwargs) | |
2081 | ||
2082 | def SetChooseFull(*args, **kwargs): | |
2083 | """ | |
2084 | SetChooseFull(self, int flag) | |
2085 | ||
c24da6d6 RD |
2086 | Under Windows, tells the Windows colour dialog to display the full |
2087 | dialog with custom colour selection controls. Under other platforms, | |
2088 | has no effect. The default value is true. | |
d55e5bfc RD |
2089 | """ |
2090 | return _windows_.ColourData_SetChooseFull(*args, **kwargs) | |
2091 | ||
2092 | def SetColour(*args, **kwargs): | |
2093 | """ | |
2094 | SetColour(self, Colour colour) | |
2095 | ||
c24da6d6 RD |
2096 | Sets the default colour for the colour dialog. The default colour is |
2097 | black. | |
d55e5bfc RD |
2098 | """ |
2099 | return _windows_.ColourData_SetColour(*args, **kwargs) | |
2100 | ||
2101 | def SetCustomColour(*args, **kwargs): | |
2102 | """ | |
2103 | SetCustomColour(self, int i, Colour colour) | |
2104 | ||
c24da6d6 | 2105 | Sets the i'th custom colour for the colour dialog. i should be an |
248ed943 | 2106 | integer between 0 and 15. The default custom colours are all invalid colours. |
d55e5bfc RD |
2107 | """ |
2108 | return _windows_.ColourData_SetCustomColour(*args, **kwargs) | |
2109 | ||
2131d850 | 2110 | _windows_.ColourData_swigregister(ColourData) |
d55e5bfc RD |
2111 | FileSelectorPromptStr = cvar.FileSelectorPromptStr |
2112 | DirSelectorPromptStr = cvar.DirSelectorPromptStr | |
2113 | DirDialogNameStr = cvar.DirDialogNameStr | |
2114 | FileSelectorDefaultWildcardStr = cvar.FileSelectorDefaultWildcardStr | |
2115 | GetTextFromUserPromptStr = cvar.GetTextFromUserPromptStr | |
2116 | MessageBoxCaptionStr = cvar.MessageBoxCaptionStr | |
2117 | ||
2118 | class ColourDialog(Dialog): | |
2119 | """This class represents the colour chooser dialog.""" | |
554f62e9 RD |
2120 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2121 | __repr__ = _swig_repr | |
2122 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2123 | """ |
2124 | __init__(self, Window parent, ColourData data=None) -> ColourDialog | |
2125 | ||
c24da6d6 RD |
2126 | Constructor. Pass a parent window, and optionally a `wx.ColourData`, |
2127 | which will be copied to the colour dialog's internal ColourData | |
2128 | instance. | |
d55e5bfc | 2129 | """ |
554f62e9 | 2130 | _windows_.ColourDialog_swiginit(self,_windows_.new_ColourDialog(*args, **kwargs)) |
d55e5bfc RD |
2131 | self._setOORInfo(self) |
2132 | ||
2133 | def GetColourData(*args, **kwargs): | |
2134 | """ | |
2135 | GetColourData(self) -> ColourData | |
2136 | ||
c24da6d6 | 2137 | Returns a reference to the `wx.ColourData` used by the dialog. |
d55e5bfc RD |
2138 | """ |
2139 | return _windows_.ColourDialog_GetColourData(*args, **kwargs) | |
2140 | ||
2131d850 | 2141 | _windows_.ColourDialog_swigregister(ColourDialog) |
d55e5bfc | 2142 | |
7449af73 RD |
2143 | |
2144 | def GetColourFromUser(*args, **kwargs): | |
554f62e9 | 2145 | """ |
7449af73 RD |
2146 | GetColourFromUser(Window parent=(wxWindow *) NULL, Colour colInit=wxNullColour, |
2147 | String caption=EmptyString) -> Colour | |
2148 | """ | |
554f62e9 | 2149 | return _windows_.GetColourFromUser(*args, **kwargs) |
d55e5bfc | 2150 | class DirDialog(Dialog): |
c24da6d6 RD |
2151 | """ |
2152 | wx.DirDialog allows the user to select a directory by browising the | |
2153 | file system. | |
c24da6d6 | 2154 | """ |
554f62e9 RD |
2155 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2156 | __repr__ = _swig_repr | |
2157 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2158 | """ |
2159 | __init__(self, Window parent, String message=DirSelectorPromptStr, | |
2160 | String defaultPath=EmptyString, long style=0, | |
2161 | Point pos=DefaultPosition, Size size=DefaultSize, | |
2162 | String name=DirDialogNameStr) -> DirDialog | |
2163 | ||
2164 | Constructor. Use ShowModal method to show the dialog. | |
2165 | """ | |
554f62e9 | 2166 | _windows_.DirDialog_swiginit(self,_windows_.new_DirDialog(*args, **kwargs)) |
d55e5bfc RD |
2167 | self._setOORInfo(self) |
2168 | ||
2169 | def GetPath(*args, **kwargs): | |
2170 | """ | |
2171 | GetPath(self) -> String | |
2172 | ||
2173 | Returns the default or user-selected path. | |
2174 | """ | |
2175 | return _windows_.DirDialog_GetPath(*args, **kwargs) | |
2176 | ||
2177 | def GetMessage(*args, **kwargs): | |
2178 | """ | |
2179 | GetMessage(self) -> String | |
2180 | ||
2181 | Returns the message that will be displayed on the dialog. | |
2182 | """ | |
2183 | return _windows_.DirDialog_GetMessage(*args, **kwargs) | |
2184 | ||
d55e5bfc RD |
2185 | def SetMessage(*args, **kwargs): |
2186 | """ | |
2187 | SetMessage(self, String message) | |
2188 | ||
2189 | Sets the message that will be displayed on the dialog. | |
2190 | """ | |
2191 | return _windows_.DirDialog_SetMessage(*args, **kwargs) | |
2192 | ||
2193 | def SetPath(*args, **kwargs): | |
2194 | """ | |
2195 | SetPath(self, String path) | |
2196 | ||
2197 | Sets the default path. | |
2198 | """ | |
2199 | return _windows_.DirDialog_SetPath(*args, **kwargs) | |
2200 | ||
2131d850 | 2201 | _windows_.DirDialog_swigregister(DirDialog) |
d55e5bfc RD |
2202 | |
2203 | class FileDialog(Dialog): | |
c24da6d6 RD |
2204 | """ |
2205 | wx.FileDialog allows the user to select one or more files from the | |
2206 | filesystem. | |
c24da6d6 | 2207 | """ |
554f62e9 RD |
2208 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2209 | __repr__ = _swig_repr | |
2210 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2211 | """ |
2212 | __init__(self, Window parent, String message=FileSelectorPromptStr, | |
2213 | String defaultDir=EmptyString, String defaultFile=EmptyString, | |
2214 | String wildcard=FileSelectorDefaultWildcardStr, | |
2215 | long style=0, Point pos=DefaultPosition) -> FileDialog | |
2216 | ||
2217 | Constructor. Use ShowModal method to show the dialog. | |
2218 | """ | |
554f62e9 | 2219 | _windows_.FileDialog_swiginit(self,_windows_.new_FileDialog(*args, **kwargs)) |
d55e5bfc RD |
2220 | self._setOORInfo(self) |
2221 | ||
2222 | def SetMessage(*args, **kwargs): | |
2223 | """ | |
2224 | SetMessage(self, String message) | |
2225 | ||
2226 | Sets the message that will be displayed on the dialog. | |
2227 | """ | |
2228 | return _windows_.FileDialog_SetMessage(*args, **kwargs) | |
2229 | ||
2230 | def SetPath(*args, **kwargs): | |
2231 | """ | |
2232 | SetPath(self, String path) | |
2233 | ||
c24da6d6 RD |
2234 | Sets the path (the combined directory and filename that will be |
2235 | returned when the dialog is dismissed). | |
d55e5bfc RD |
2236 | """ |
2237 | return _windows_.FileDialog_SetPath(*args, **kwargs) | |
2238 | ||
2239 | def SetDirectory(*args, **kwargs): | |
2240 | """ | |
2241 | SetDirectory(self, String dir) | |
2242 | ||
2243 | Sets the default directory. | |
2244 | """ | |
2245 | return _windows_.FileDialog_SetDirectory(*args, **kwargs) | |
2246 | ||
2247 | def SetFilename(*args, **kwargs): | |
2248 | """ | |
2249 | SetFilename(self, String name) | |
2250 | ||
2251 | Sets the default filename. | |
2252 | """ | |
2253 | return _windows_.FileDialog_SetFilename(*args, **kwargs) | |
2254 | ||
2255 | def SetWildcard(*args, **kwargs): | |
2256 | """ | |
2257 | SetWildcard(self, String wildCard) | |
2258 | ||
c24da6d6 RD |
2259 | Sets the wildcard, which can contain multiple file types, for |
2260 | example:: | |
2261 | ||
d55e5bfc | 2262 | "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif" |
c24da6d6 | 2263 | |
d55e5bfc RD |
2264 | """ |
2265 | return _windows_.FileDialog_SetWildcard(*args, **kwargs) | |
2266 | ||
2267 | def SetStyle(*args, **kwargs): | |
2268 | """ | |
2269 | SetStyle(self, long style) | |
2270 | ||
2271 | Sets the dialog style. | |
2272 | """ | |
2273 | return _windows_.FileDialog_SetStyle(*args, **kwargs) | |
2274 | ||
2275 | def SetFilterIndex(*args, **kwargs): | |
2276 | """ | |
2277 | SetFilterIndex(self, int filterIndex) | |
2278 | ||
2279 | Sets the default filter index, starting from zero. | |
2280 | """ | |
2281 | return _windows_.FileDialog_SetFilterIndex(*args, **kwargs) | |
2282 | ||
2283 | def GetMessage(*args, **kwargs): | |
2284 | """ | |
2285 | GetMessage(self) -> String | |
2286 | ||
2287 | Returns the message that will be displayed on the dialog. | |
2288 | """ | |
2289 | return _windows_.FileDialog_GetMessage(*args, **kwargs) | |
2290 | ||
2291 | def GetPath(*args, **kwargs): | |
2292 | """ | |
2293 | GetPath(self) -> String | |
2294 | ||
2295 | Returns the full path (directory and filename) of the selected file. | |
2296 | """ | |
2297 | return _windows_.FileDialog_GetPath(*args, **kwargs) | |
2298 | ||
2299 | def GetDirectory(*args, **kwargs): | |
2300 | """ | |
2301 | GetDirectory(self) -> String | |
2302 | ||
2303 | Returns the default directory. | |
2304 | """ | |
2305 | return _windows_.FileDialog_GetDirectory(*args, **kwargs) | |
2306 | ||
2307 | def GetFilename(*args, **kwargs): | |
2308 | """ | |
2309 | GetFilename(self) -> String | |
2310 | ||
2311 | Returns the default filename. | |
2312 | """ | |
2313 | return _windows_.FileDialog_GetFilename(*args, **kwargs) | |
2314 | ||
2315 | def GetWildcard(*args, **kwargs): | |
2316 | """ | |
2317 | GetWildcard(self) -> String | |
2318 | ||
2319 | Returns the file dialog wildcard. | |
2320 | """ | |
2321 | return _windows_.FileDialog_GetWildcard(*args, **kwargs) | |
2322 | ||
2323 | def GetStyle(*args, **kwargs): | |
2324 | """ | |
2325 | GetStyle(self) -> long | |
2326 | ||
2327 | Returns the dialog style. | |
2328 | """ | |
2329 | return _windows_.FileDialog_GetStyle(*args, **kwargs) | |
2330 | ||
2331 | def GetFilterIndex(*args, **kwargs): | |
2332 | """ | |
2333 | GetFilterIndex(self) -> int | |
2334 | ||
2335 | Returns the index into the list of filters supplied, optionally, in | |
2336 | the wildcard parameter. Before the dialog is shown, this is the index | |
c24da6d6 RD |
2337 | which will be used when the dialog is first displayed. After the |
2338 | dialog is shown, this is the index selected by the user. | |
d55e5bfc RD |
2339 | """ |
2340 | return _windows_.FileDialog_GetFilterIndex(*args, **kwargs) | |
2341 | ||
2342 | def GetFilenames(*args, **kwargs): | |
2343 | """ | |
2344 | GetFilenames(self) -> PyObject | |
2345 | ||
c24da6d6 RD |
2346 | Returns a list of filenames chosen in the dialog. This function |
2347 | should only be used with the dialogs which have wx.MULTIPLE style, use | |
d55e5bfc RD |
2348 | GetFilename for the others. |
2349 | """ | |
2350 | return _windows_.FileDialog_GetFilenames(*args, **kwargs) | |
2351 | ||
2352 | def GetPaths(*args, **kwargs): | |
2353 | """ | |
2354 | GetPaths(self) -> PyObject | |
2355 | ||
2356 | Fills the array paths with the full paths of the files chosen. This | |
c24da6d6 RD |
2357 | function should only be used with the dialogs which have wx.MULTIPLE |
2358 | style, use GetPath for the others. | |
d55e5bfc RD |
2359 | """ |
2360 | return _windows_.FileDialog_GetPaths(*args, **kwargs) | |
2361 | ||
2131d850 | 2362 | _windows_.FileDialog_swigregister(FileDialog) |
d55e5bfc RD |
2363 | |
2364 | CHOICEDLG_STYLE = _windows_.CHOICEDLG_STYLE | |
2365 | class MultiChoiceDialog(Dialog): | |
2366 | """A simple dialog with a multi selection listbox.""" | |
554f62e9 RD |
2367 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2368 | __repr__ = _swig_repr | |
2369 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 2370 | """ |
034e3677 | 2371 | __init__(self, Window parent, String message, String caption, |
5dce5a9a | 2372 | List choices=EmptyList, long style=CHOICEDLG_STYLE, |
d55e5bfc RD |
2373 | Point pos=DefaultPosition) -> MultiChoiceDialog |
2374 | ||
034e3677 RD |
2375 | Constructor. Use the `ShowModal` method to show the dialog. |
2376 | ||
2377 | :param parent: The parent window. | |
2378 | :param message: Text to display above the list of selections. | |
2379 | :param caption: Text to use in the title bar of the dialog. | |
2380 | :param choices: A list of strings or unicode objects that the | |
2381 | user is allowed to choose from. | |
2382 | :param style: Styles to apply to the dialog. The default value is | |
2383 | equivallent to wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER|wx.OK|wx.CANCEL|wx.CENTER. | |
2384 | :param pos: Where to position the dialog (not used on Windows) | |
2385 | ||
2386 | ||
d55e5bfc | 2387 | """ |
554f62e9 | 2388 | _windows_.MultiChoiceDialog_swiginit(self,_windows_.new_MultiChoiceDialog(*args, **kwargs)) |
d55e5bfc RD |
2389 | self._setOORInfo(self) |
2390 | ||
2391 | def SetSelections(*args, **kwargs): | |
a001823c RD |
2392 | """ |
2393 | SetSelections(List selections) | |
2394 | ||
2395 | Specify the items in the list that should be selected, using a list of | |
034e3677 RD |
2396 | integers. The list should specify the indexes of the items that |
2397 | should be selected. | |
a001823c | 2398 | """ |
d55e5bfc RD |
2399 | return _windows_.MultiChoiceDialog_SetSelections(*args, **kwargs) |
2400 | ||
2401 | def GetSelections(*args, **kwargs): | |
2402 | """ | |
2403 | GetSelections() -> [selections] | |
2404 | ||
2405 | Returns a list of integers representing the items that are selected. | |
034e3677 | 2406 | If an item is selected then its index will appear in the list. |
d55e5bfc RD |
2407 | """ |
2408 | return _windows_.MultiChoiceDialog_GetSelections(*args, **kwargs) | |
2409 | ||
2131d850 | 2410 | _windows_.MultiChoiceDialog_swigregister(MultiChoiceDialog) |
d55e5bfc RD |
2411 | |
2412 | class SingleChoiceDialog(Dialog): | |
2413 | """A simple dialog with a single selection listbox.""" | |
554f62e9 RD |
2414 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2415 | __repr__ = _swig_repr | |
2416 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2417 | """ |
2418 | __init__(Window parent, String message, String caption, | |
5dce5a9a | 2419 | List choices=EmptyList, long style=CHOICEDLG_STYLE, |
d55e5bfc RD |
2420 | Point pos=DefaultPosition) -> SingleChoiceDialog |
2421 | ||
2422 | Constructor. Use ShowModal method to show the dialog. | |
2423 | """ | |
554f62e9 | 2424 | _windows_.SingleChoiceDialog_swiginit(self,_windows_.new_SingleChoiceDialog(*args, **kwargs)) |
d55e5bfc RD |
2425 | self._setOORInfo(self) |
2426 | ||
2427 | def GetSelection(*args, **kwargs): | |
2428 | """ | |
2429 | GetSelection(self) -> int | |
2430 | ||
2431 | Get the index of teh currently selected item. | |
2432 | """ | |
2433 | return _windows_.SingleChoiceDialog_GetSelection(*args, **kwargs) | |
2434 | ||
2435 | def GetStringSelection(*args, **kwargs): | |
2436 | """ | |
2437 | GetStringSelection(self) -> String | |
2438 | ||
2439 | Returns the string value of the currently selected item | |
2440 | """ | |
2441 | return _windows_.SingleChoiceDialog_GetStringSelection(*args, **kwargs) | |
2442 | ||
2443 | def SetSelection(*args, **kwargs): | |
2444 | """ | |
2445 | SetSelection(self, int sel) | |
2446 | ||
2447 | Set the current selected item to sel | |
2448 | """ | |
2449 | return _windows_.SingleChoiceDialog_SetSelection(*args, **kwargs) | |
2450 | ||
2131d850 | 2451 | _windows_.SingleChoiceDialog_swigregister(SingleChoiceDialog) |
d55e5bfc | 2452 | |
c9c2cf70 | 2453 | TextEntryDialogStyle = _windows_.TextEntryDialogStyle |
d55e5bfc RD |
2454 | class TextEntryDialog(Dialog): |
2455 | """A dialog with text control, [ok] and [cancel] buttons""" | |
554f62e9 RD |
2456 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2457 | __repr__ = _swig_repr | |
2458 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2459 | """ |
2460 | __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr, | |
2461 | String defaultValue=EmptyString, | |
c9c2cf70 | 2462 | long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> TextEntryDialog |
d55e5bfc RD |
2463 | |
2464 | Constructor. Use ShowModal method to show the dialog. | |
2465 | """ | |
554f62e9 | 2466 | _windows_.TextEntryDialog_swiginit(self,_windows_.new_TextEntryDialog(*args, **kwargs)) |
d55e5bfc RD |
2467 | self._setOORInfo(self) |
2468 | ||
2469 | def GetValue(*args, **kwargs): | |
2470 | """ | |
2471 | GetValue(self) -> String | |
2472 | ||
2473 | Returns the text that the user has entered if the user has pressed OK, | |
2474 | or the original value if the user has pressed Cancel. | |
2475 | """ | |
2476 | return _windows_.TextEntryDialog_GetValue(*args, **kwargs) | |
2477 | ||
2478 | def SetValue(*args, **kwargs): | |
2479 | """ | |
2480 | SetValue(self, String value) | |
2481 | ||
2482 | Sets the default text value. | |
2483 | """ | |
2484 | return _windows_.TextEntryDialog_SetValue(*args, **kwargs) | |
2485 | ||
2131d850 | 2486 | _windows_.TextEntryDialog_swigregister(TextEntryDialog) |
d55e5bfc | 2487 | |
c1cb24a4 | 2488 | class PasswordEntryDialog(TextEntryDialog): |
093d3ff1 | 2489 | """Proxy of C++ PasswordEntryDialog class""" |
554f62e9 RD |
2490 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2491 | __repr__ = _swig_repr | |
2492 | def __init__(self, *args, **kwargs): | |
c1cb24a4 RD |
2493 | """ |
2494 | __init__(self, Window parent, String message, String caption=GetPasswordFromUserPromptStr, | |
2495 | String value=EmptyString, | |
c9c2cf70 | 2496 | long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> PasswordEntryDialog |
c1cb24a4 | 2497 | """ |
554f62e9 | 2498 | _windows_.PasswordEntryDialog_swiginit(self,_windows_.new_PasswordEntryDialog(*args, **kwargs)) |
2131d850 | 2499 | _windows_.PasswordEntryDialog_swigregister(PasswordEntryDialog) |
c1cb24a4 RD |
2500 | GetPasswordFromUserPromptStr = cvar.GetPasswordFromUserPromptStr |
2501 | ||
d55e5bfc | 2502 | class FontData(_core.Object): |
c24da6d6 RD |
2503 | """ |
2504 | This class holds a variety of information related to font dialogs and | |
2505 | is used to transfer settings to and results from a `wx.FontDialog`. | |
2506 | """ | |
554f62e9 RD |
2507 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2508 | __repr__ = _swig_repr | |
2509 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2510 | """ |
2511 | __init__(self) -> FontData | |
2512 | ||
c24da6d6 RD |
2513 | This class holds a variety of information related to font dialogs and |
2514 | is used to transfer settings to and results from a `wx.FontDialog`. | |
d55e5bfc | 2515 | """ |
554f62e9 RD |
2516 | _windows_.FontData_swiginit(self,_windows_.new_FontData(*args, **kwargs)) |
2517 | __swig_destroy__ = _windows_.delete_FontData | |
2518 | __del__ = lambda self : None; | |
d55e5bfc RD |
2519 | def EnableEffects(*args, **kwargs): |
2520 | """ | |
2521 | EnableEffects(self, bool enable) | |
2522 | ||
c24da6d6 RD |
2523 | Enables or disables 'effects' under MS Windows only. This refers to |
2524 | the controls for manipulating colour, strikeout and underline | |
d55e5bfc RD |
2525 | properties. The default value is true. |
2526 | """ | |
2527 | return _windows_.FontData_EnableEffects(*args, **kwargs) | |
2528 | ||
2529 | def GetAllowSymbols(*args, **kwargs): | |
2530 | """ | |
2531 | GetAllowSymbols(self) -> bool | |
2532 | ||
c24da6d6 RD |
2533 | Under MS Windows, returns a flag determining whether symbol fonts can |
2534 | be selected. Has no effect on other platforms. The default value is | |
2535 | true. | |
d55e5bfc RD |
2536 | """ |
2537 | return _windows_.FontData_GetAllowSymbols(*args, **kwargs) | |
2538 | ||
2539 | def GetColour(*args, **kwargs): | |
2540 | """ | |
2541 | GetColour(self) -> Colour | |
2542 | ||
c24da6d6 RD |
2543 | Gets the colour associated with the font dialog. The default value is |
2544 | black. | |
d55e5bfc RD |
2545 | """ |
2546 | return _windows_.FontData_GetColour(*args, **kwargs) | |
2547 | ||
2548 | def GetChosenFont(*args, **kwargs): | |
2549 | """ | |
2550 | GetChosenFont(self) -> Font | |
2551 | ||
2552 | Gets the font chosen by the user. | |
2553 | """ | |
2554 | return _windows_.FontData_GetChosenFont(*args, **kwargs) | |
2555 | ||
2556 | def GetEnableEffects(*args, **kwargs): | |
2557 | """ | |
2558 | GetEnableEffects(self) -> bool | |
2559 | ||
2560 | Determines whether 'effects' are enabled under Windows. | |
2561 | """ | |
2562 | return _windows_.FontData_GetEnableEffects(*args, **kwargs) | |
2563 | ||
2564 | def GetInitialFont(*args, **kwargs): | |
2565 | """ | |
2566 | GetInitialFont(self) -> Font | |
2567 | ||
c24da6d6 RD |
2568 | Gets the font that will be initially used by the font dialog. This |
2569 | should have previously been set by the application. | |
d55e5bfc RD |
2570 | """ |
2571 | return _windows_.FontData_GetInitialFont(*args, **kwargs) | |
2572 | ||
2573 | def GetShowHelp(*args, **kwargs): | |
2574 | """ | |
2575 | GetShowHelp(self) -> bool | |
2576 | ||
c24da6d6 RD |
2577 | Returns true if the Help button will be shown (Windows only). The |
2578 | default value is false. | |
d55e5bfc RD |
2579 | """ |
2580 | return _windows_.FontData_GetShowHelp(*args, **kwargs) | |
2581 | ||
2582 | def SetAllowSymbols(*args, **kwargs): | |
2583 | """ | |
2584 | SetAllowSymbols(self, bool allowSymbols) | |
2585 | ||
c24da6d6 RD |
2586 | Under MS Windows, determines whether symbol fonts can be selected. Has |
2587 | no effect on other platforms. The default value is true. | |
d55e5bfc RD |
2588 | """ |
2589 | return _windows_.FontData_SetAllowSymbols(*args, **kwargs) | |
2590 | ||
2591 | def SetChosenFont(*args, **kwargs): | |
2592 | """ | |
2593 | SetChosenFont(self, Font font) | |
2594 | ||
c24da6d6 RD |
2595 | Sets the font that will be returned to the user (normally for internal |
2596 | use only). | |
d55e5bfc RD |
2597 | """ |
2598 | return _windows_.FontData_SetChosenFont(*args, **kwargs) | |
2599 | ||
2600 | def SetColour(*args, **kwargs): | |
2601 | """ | |
2602 | SetColour(self, Colour colour) | |
2603 | ||
c24da6d6 RD |
2604 | Sets the colour that will be used for the font foreground colour. The |
2605 | default colour is black. | |
d55e5bfc RD |
2606 | """ |
2607 | return _windows_.FontData_SetColour(*args, **kwargs) | |
2608 | ||
2609 | def SetInitialFont(*args, **kwargs): | |
2610 | """ | |
2611 | SetInitialFont(self, Font font) | |
2612 | ||
2613 | Sets the font that will be initially used by the font dialog. | |
2614 | """ | |
2615 | return _windows_.FontData_SetInitialFont(*args, **kwargs) | |
2616 | ||
2617 | def SetRange(*args, **kwargs): | |
2618 | """ | |
2619 | SetRange(self, int min, int max) | |
2620 | ||
c24da6d6 RD |
2621 | Sets the valid range for the font point size (Windows only). The |
2622 | default is 0, 0 (unrestricted range). | |
d55e5bfc RD |
2623 | """ |
2624 | return _windows_.FontData_SetRange(*args, **kwargs) | |
2625 | ||
2626 | def SetShowHelp(*args, **kwargs): | |
2627 | """ | |
2628 | SetShowHelp(self, bool showHelp) | |
2629 | ||
c24da6d6 RD |
2630 | Determines whether the Help button will be displayed in the font |
2631 | dialog (Windows only). The default value is false. | |
d55e5bfc RD |
2632 | """ |
2633 | return _windows_.FontData_SetShowHelp(*args, **kwargs) | |
2634 | ||
2131d850 | 2635 | _windows_.FontData_swigregister(FontData) |
d55e5bfc RD |
2636 | |
2637 | class FontDialog(Dialog): | |
c24da6d6 RD |
2638 | """ |
2639 | wx.FontDialog allows the user to select a system font and its attributes. | |
2640 | ||
2641 | :see: `wx.FontData` | |
2642 | ||
2643 | """ | |
554f62e9 RD |
2644 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2645 | __repr__ = _swig_repr | |
2646 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2647 | """ |
2648 | __init__(self, Window parent, FontData data) -> FontDialog | |
2649 | ||
c24da6d6 RD |
2650 | Constructor. Pass a parent window and the `wx.FontData` object to be |
2651 | used to initialize the dialog controls. Call `ShowModal` to display | |
2652 | the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the | |
2653 | results with via the `wx.FontData` returned by `GetFontData`. | |
d55e5bfc | 2654 | """ |
554f62e9 | 2655 | _windows_.FontDialog_swiginit(self,_windows_.new_FontDialog(*args, **kwargs)) |
d55e5bfc RD |
2656 | self._setOORInfo(self) |
2657 | ||
2658 | def GetFontData(*args, **kwargs): | |
2659 | """ | |
2660 | GetFontData(self) -> FontData | |
2661 | ||
c24da6d6 RD |
2662 | Returns a reference to the internal `wx.FontData` used by the |
2663 | wx.FontDialog. | |
d55e5bfc RD |
2664 | """ |
2665 | return _windows_.FontDialog_GetFontData(*args, **kwargs) | |
2666 | ||
2131d850 | 2667 | _windows_.FontDialog_swigregister(FontDialog) |
d55e5bfc | 2668 | |
7449af73 RD |
2669 | |
2670 | def GetFontFromUser(*args, **kwargs): | |
554f62e9 RD |
2671 | """GetFontFromUser(Window parent=None, Font fontInit=wxNullFont, String caption=EmptyString) -> Font""" |
2672 | return _windows_.GetFontFromUser(*args, **kwargs) | |
d55e5bfc RD |
2673 | class MessageDialog(Dialog): |
2674 | """ | |
c24da6d6 RD |
2675 | This class provides a simple dialog that shows a single or multi-line |
2676 | message, with a choice of OK, Yes, No and/or Cancel buttons. | |
d55e5bfc | 2677 | """ |
554f62e9 RD |
2678 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2679 | __repr__ = _swig_repr | |
2680 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2681 | """ |
2682 | __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr, | |
2683 | long style=wxOK|wxCANCEL|wxCENTRE, | |
2684 | Point pos=DefaultPosition) -> MessageDialog | |
2685 | ||
c24da6d6 | 2686 | Constructor, use `ShowModal` to display the dialog. |
d55e5bfc | 2687 | """ |
554f62e9 | 2688 | _windows_.MessageDialog_swiginit(self,_windows_.new_MessageDialog(*args, **kwargs)) |
d55e5bfc RD |
2689 | self._setOORInfo(self) |
2690 | ||
2131d850 | 2691 | _windows_.MessageDialog_swigregister(MessageDialog) |
d55e5bfc RD |
2692 | |
2693 | class ProgressDialog(Frame): | |
2694 | """ | |
c24da6d6 RD |
2695 | A dialog that shows a short message and a progress bar. Optionally, it |
2696 | can display an ABORT button. | |
d55e5bfc | 2697 | """ |
554f62e9 RD |
2698 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2699 | __repr__ = _swig_repr | |
2700 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2701 | """ |
2702 | __init__(self, String title, String message, int maximum=100, Window parent=None, | |
2703 | int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog | |
2704 | ||
c24da6d6 RD |
2705 | Constructor. Creates the dialog, displays it and disables user input |
2706 | for other windows, or, if wx.PD_APP_MODAL flag is not given, for its | |
2707 | parent window only. | |
d55e5bfc | 2708 | """ |
554f62e9 | 2709 | _windows_.ProgressDialog_swiginit(self,_windows_.new_ProgressDialog(*args, **kwargs)) |
d55e5bfc RD |
2710 | self._setOORInfo(self) |
2711 | ||
2712 | def Update(*args, **kwargs): | |
2713 | """ | |
f460c29d | 2714 | Update(self, int value, String newmsg) --> (continue, skip) |
d55e5bfc | 2715 | |
c24da6d6 | 2716 | Updates the dialog, setting the progress bar to the new value and, if |
6923d0a9 RD |
2717 | given changes the message above it. The value given should be less |
2718 | than or equal to the maximum value given to the constructor and the | |
f460c29d RD |
2719 | dialog is closed if it is equal to the maximum. Returns a tuple of |
2720 | boolean values, ``(continue, skip)`` where ``continue`` is ``True`` | |
2721 | unless the Cancel button has been pressed, and ``skip`` is ``False`` | |
2722 | unless the Skip button (if any) has been pressed. | |
2723 | ||
2724 | If the ``continue`` return value is ``false``, the application can either | |
2725 | immediately destroy the dialog or ask the user for confirmation, and if the | |
2726 | abort is not confirmed the dialog may be resumed with `Resume` function. | |
d55e5bfc | 2727 | |
d55e5bfc RD |
2728 | """ |
2729 | return _windows_.ProgressDialog_Update(*args, **kwargs) | |
2730 | ||
2731 | def Resume(*args, **kwargs): | |
2732 | """ | |
2733 | Resume(self) | |
2734 | ||
c24da6d6 RD |
2735 | Can be used to continue with the dialog, after the user had chosen to |
2736 | abort. | |
d55e5bfc RD |
2737 | """ |
2738 | return _windows_.ProgressDialog_Resume(*args, **kwargs) | |
2739 | ||
2131d850 | 2740 | _windows_.ProgressDialog_swigregister(ProgressDialog) |
d55e5bfc RD |
2741 | |
2742 | FR_DOWN = _windows_.FR_DOWN | |
2743 | FR_WHOLEWORD = _windows_.FR_WHOLEWORD | |
2744 | FR_MATCHCASE = _windows_.FR_MATCHCASE | |
2745 | FR_REPLACEDIALOG = _windows_.FR_REPLACEDIALOG | |
2746 | FR_NOUPDOWN = _windows_.FR_NOUPDOWN | |
2747 | FR_NOMATCHCASE = _windows_.FR_NOMATCHCASE | |
2748 | FR_NOWHOLEWORD = _windows_.FR_NOWHOLEWORD | |
2749 | wxEVT_COMMAND_FIND = _windows_.wxEVT_COMMAND_FIND | |
2750 | wxEVT_COMMAND_FIND_NEXT = _windows_.wxEVT_COMMAND_FIND_NEXT | |
2751 | wxEVT_COMMAND_FIND_REPLACE = _windows_.wxEVT_COMMAND_FIND_REPLACE | |
2752 | wxEVT_COMMAND_FIND_REPLACE_ALL = _windows_.wxEVT_COMMAND_FIND_REPLACE_ALL | |
2753 | wxEVT_COMMAND_FIND_CLOSE = _windows_.wxEVT_COMMAND_FIND_CLOSE | |
2754 | EVT_FIND = wx.PyEventBinder( wxEVT_COMMAND_FIND, 1 ) | |
2755 | EVT_FIND_NEXT = wx.PyEventBinder( wxEVT_COMMAND_FIND_NEXT, 1 ) | |
2756 | EVT_FIND_REPLACE = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE, 1 ) | |
2757 | EVT_FIND_REPLACE_ALL = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL, 1 ) | |
2758 | EVT_FIND_CLOSE = wx.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE, 1 ) | |
2759 | ||
2760 | # For backwards compatibility. Should they be removed? | |
2761 | EVT_COMMAND_FIND = EVT_FIND | |
2762 | EVT_COMMAND_FIND_NEXT = EVT_FIND_NEXT | |
2763 | EVT_COMMAND_FIND_REPLACE = EVT_FIND_REPLACE | |
2764 | EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL | |
2765 | EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE | |
2766 | ||
2767 | class FindDialogEvent(_core.CommandEvent): | |
2768 | """Events for the FindReplaceDialog""" | |
554f62e9 RD |
2769 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2770 | __repr__ = _swig_repr | |
2771 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 2772 | """ |
f460c29d | 2773 | __init__(self, EventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent |
d55e5bfc RD |
2774 | |
2775 | Events for the FindReplaceDialog | |
2776 | """ | |
554f62e9 | 2777 | _windows_.FindDialogEvent_swiginit(self,_windows_.new_FindDialogEvent(*args, **kwargs)) |
d55e5bfc RD |
2778 | def GetFlags(*args, **kwargs): |
2779 | """ | |
2780 | GetFlags(self) -> int | |
2781 | ||
2782 | Get the currently selected flags: this is the combination of | |
2783 | wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags. | |
2784 | """ | |
2785 | return _windows_.FindDialogEvent_GetFlags(*args, **kwargs) | |
2786 | ||
2787 | def GetFindString(*args, **kwargs): | |
2788 | """ | |
2789 | GetFindString(self) -> String | |
2790 | ||
2791 | Return the string to find (never empty). | |
2792 | """ | |
2793 | return _windows_.FindDialogEvent_GetFindString(*args, **kwargs) | |
2794 | ||
2795 | def GetReplaceString(*args, **kwargs): | |
2796 | """ | |
2797 | GetReplaceString(self) -> String | |
2798 | ||
c24da6d6 RD |
2799 | Return the string to replace the search string with (only for replace |
2800 | and replace all events). | |
d55e5bfc RD |
2801 | """ |
2802 | return _windows_.FindDialogEvent_GetReplaceString(*args, **kwargs) | |
2803 | ||
2804 | def GetDialog(*args, **kwargs): | |
2805 | """ | |
2806 | GetDialog(self) -> FindReplaceDialog | |
2807 | ||
2808 | Return the pointer to the dialog which generated this event. | |
2809 | """ | |
2810 | return _windows_.FindDialogEvent_GetDialog(*args, **kwargs) | |
2811 | ||
2812 | def SetFlags(*args, **kwargs): | |
2813 | """SetFlags(self, int flags)""" | |
2814 | return _windows_.FindDialogEvent_SetFlags(*args, **kwargs) | |
2815 | ||
2816 | def SetFindString(*args, **kwargs): | |
2817 | """SetFindString(self, String str)""" | |
2818 | return _windows_.FindDialogEvent_SetFindString(*args, **kwargs) | |
2819 | ||
2820 | def SetReplaceString(*args, **kwargs): | |
2821 | """SetReplaceString(self, String str)""" | |
2822 | return _windows_.FindDialogEvent_SetReplaceString(*args, **kwargs) | |
2823 | ||
2131d850 | 2824 | _windows_.FindDialogEvent_swigregister(FindDialogEvent) |
d55e5bfc RD |
2825 | |
2826 | class FindReplaceData(_core.Object): | |
2827 | """ | |
c24da6d6 RD |
2828 | wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used |
2829 | to initialize the dialog with the default values and will keep the | |
2830 | last values from the dialog when it is closed. It is also updated each | |
2831 | time a `wx.FindDialogEvent` is generated so instead of using the | |
2832 | `wx.FindDialogEvent` methods you can also directly query this object. | |
d55e5bfc | 2833 | |
c24da6d6 RD |
2834 | Note that all SetXXX() methods may only be called before showing the |
2835 | dialog and calling them has no effect later. | |
d55e5bfc | 2836 | """ |
554f62e9 RD |
2837 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2838 | __repr__ = _swig_repr | |
2839 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2840 | """ |
2841 | __init__(self, int flags=0) -> FindReplaceData | |
2842 | ||
2843 | Constuctor initializes the flags to default value (0). | |
2844 | """ | |
554f62e9 RD |
2845 | _windows_.FindReplaceData_swiginit(self,_windows_.new_FindReplaceData(*args, **kwargs)) |
2846 | __swig_destroy__ = _windows_.delete_FindReplaceData | |
2847 | __del__ = lambda self : None; | |
d55e5bfc RD |
2848 | def GetFindString(*args, **kwargs): |
2849 | """ | |
2850 | GetFindString(self) -> String | |
2851 | ||
2852 | Get the string to find. | |
2853 | """ | |
2854 | return _windows_.FindReplaceData_GetFindString(*args, **kwargs) | |
2855 | ||
2856 | def GetReplaceString(*args, **kwargs): | |
2857 | """ | |
2858 | GetReplaceString(self) -> String | |
2859 | ||
2860 | Get the replacement string. | |
2861 | """ | |
2862 | return _windows_.FindReplaceData_GetReplaceString(*args, **kwargs) | |
2863 | ||
2864 | def GetFlags(*args, **kwargs): | |
2865 | """ | |
2866 | GetFlags(self) -> int | |
2867 | ||
2868 | Get the combination of flag values. | |
2869 | """ | |
2870 | return _windows_.FindReplaceData_GetFlags(*args, **kwargs) | |
2871 | ||
2872 | def SetFlags(*args, **kwargs): | |
2873 | """ | |
2874 | SetFlags(self, int flags) | |
2875 | ||
2876 | Set the flags to use to initialize the controls of the dialog. | |
2877 | """ | |
2878 | return _windows_.FindReplaceData_SetFlags(*args, **kwargs) | |
2879 | ||
2880 | def SetFindString(*args, **kwargs): | |
2881 | """ | |
2882 | SetFindString(self, String str) | |
2883 | ||
2884 | Set the string to find (used as initial value by the dialog). | |
2885 | """ | |
2886 | return _windows_.FindReplaceData_SetFindString(*args, **kwargs) | |
2887 | ||
2888 | def SetReplaceString(*args, **kwargs): | |
2889 | """ | |
2890 | SetReplaceString(self, String str) | |
2891 | ||
2892 | Set the replacement string (used as initial value by the dialog). | |
2893 | """ | |
2894 | return _windows_.FindReplaceData_SetReplaceString(*args, **kwargs) | |
2895 | ||
2131d850 | 2896 | _windows_.FindReplaceData_swigregister(FindReplaceData) |
d55e5bfc RD |
2897 | |
2898 | class FindReplaceDialog(Dialog): | |
2899 | """ | |
c24da6d6 RD |
2900 | wx.FindReplaceDialog is a standard modeless dialog which is used to |
2901 | allow the user to search for some text (and possibly replace it with | |
2902 | something else). The actual searching is supposed to be done in the | |
2903 | owner window which is the parent of this dialog. Note that it means | |
2904 | that unlike for the other standard dialogs this one must have a parent | |
2905 | window. Also note that there is no way to use this dialog in a modal | |
2906 | way; it is always, by design and implementation, modeless. | |
d55e5bfc | 2907 | """ |
554f62e9 RD |
2908 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2909 | __repr__ = _swig_repr | |
2910 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
2911 | """ |
2912 | __init__(self, Window parent, FindReplaceData data, String title, | |
2913 | int style=0) -> FindReplaceDialog | |
2914 | ||
2915 | Create a FindReplaceDialog. The parent and data parameters must be | |
2916 | non-None. Use Show to display the dialog. | |
2917 | """ | |
554f62e9 | 2918 | _windows_.FindReplaceDialog_swiginit(self,_windows_.new_FindReplaceDialog(*args, **kwargs)) |
d55e5bfc RD |
2919 | self._setOORInfo(self) |
2920 | ||
2921 | def Create(*args, **kwargs): | |
2922 | """ | |
2923 | Create(self, Window parent, FindReplaceData data, String title, | |
2924 | int style=0) -> bool | |
2925 | ||
2926 | Create the dialog, for 2-phase create. | |
2927 | """ | |
2928 | return _windows_.FindReplaceDialog_Create(*args, **kwargs) | |
2929 | ||
2930 | def GetData(*args, **kwargs): | |
2931 | """ | |
2932 | GetData(self) -> FindReplaceData | |
2933 | ||
2934 | Get the FindReplaceData object used by this dialog. | |
2935 | """ | |
2936 | return _windows_.FindReplaceDialog_GetData(*args, **kwargs) | |
2937 | ||
2938 | def SetData(*args, **kwargs): | |
2939 | """ | |
2940 | SetData(self, FindReplaceData data) | |
2941 | ||
2942 | Set the FindReplaceData object used by this dialog. | |
2943 | """ | |
2944 | return _windows_.FindReplaceDialog_SetData(*args, **kwargs) | |
2945 | ||
2131d850 | 2946 | _windows_.FindReplaceDialog_swigregister(FindReplaceDialog) |
d55e5bfc RD |
2947 | |
2948 | def PreFindReplaceDialog(*args, **kwargs): | |
2949 | """ | |
2950 | PreFindReplaceDialog() -> FindReplaceDialog | |
2951 | ||
2952 | Precreate a FindReplaceDialog for 2-phase creation | |
2953 | """ | |
2954 | val = _windows_.new_PreFindReplaceDialog(*args, **kwargs) | |
d55e5bfc RD |
2955 | return val |
2956 | ||
2957 | #--------------------------------------------------------------------------- | |
2958 | ||
2959 | IDM_WINDOWTILE = _windows_.IDM_WINDOWTILE | |
2960 | IDM_WINDOWTILEHOR = _windows_.IDM_WINDOWTILEHOR | |
2961 | IDM_WINDOWCASCADE = _windows_.IDM_WINDOWCASCADE | |
2962 | IDM_WINDOWICONS = _windows_.IDM_WINDOWICONS | |
2963 | IDM_WINDOWNEXT = _windows_.IDM_WINDOWNEXT | |
2964 | IDM_WINDOWTILEVERT = _windows_.IDM_WINDOWTILEVERT | |
24d7cbea | 2965 | IDM_WINDOWPREV = _windows_.IDM_WINDOWPREV |
d55e5bfc RD |
2966 | FIRST_MDI_CHILD = _windows_.FIRST_MDI_CHILD |
2967 | LAST_MDI_CHILD = _windows_.LAST_MDI_CHILD | |
2968 | class MDIParentFrame(Frame): | |
093d3ff1 | 2969 | """Proxy of C++ MDIParentFrame class""" |
554f62e9 RD |
2970 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
2971 | __repr__ = _swig_repr | |
2972 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 2973 | """ |
248ed943 RD |
2974 | __init__(self, Window parent, int id=-1, String title=EmptyString, |
2975 | Point pos=DefaultPosition, Size size=DefaultSize, | |
2976 | long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL, | |
d55e5bfc RD |
2977 | String name=FrameNameStr) -> MDIParentFrame |
2978 | """ | |
554f62e9 | 2979 | _windows_.MDIParentFrame_swiginit(self,_windows_.new_MDIParentFrame(*args, **kwargs)) |
d55e5bfc RD |
2980 | self._setOORInfo(self) |
2981 | ||
2982 | def Create(*args, **kwargs): | |
2983 | """ | |
248ed943 RD |
2984 | Create(self, Window parent, int id=-1, String title=EmptyString, |
2985 | Point pos=DefaultPosition, Size size=DefaultSize, | |
2986 | long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL, | |
d55e5bfc RD |
2987 | String name=FrameNameStr) -> bool |
2988 | """ | |
2989 | return _windows_.MDIParentFrame_Create(*args, **kwargs) | |
2990 | ||
2991 | def ActivateNext(*args, **kwargs): | |
2992 | """ActivateNext(self)""" | |
2993 | return _windows_.MDIParentFrame_ActivateNext(*args, **kwargs) | |
2994 | ||
2995 | def ActivatePrevious(*args, **kwargs): | |
2996 | """ActivatePrevious(self)""" | |
2997 | return _windows_.MDIParentFrame_ActivatePrevious(*args, **kwargs) | |
2998 | ||
2999 | def ArrangeIcons(*args, **kwargs): | |
3000 | """ArrangeIcons(self)""" | |
3001 | return _windows_.MDIParentFrame_ArrangeIcons(*args, **kwargs) | |
3002 | ||
3003 | def Cascade(*args, **kwargs): | |
3004 | """Cascade(self)""" | |
3005 | return _windows_.MDIParentFrame_Cascade(*args, **kwargs) | |
3006 | ||
3007 | def GetActiveChild(*args, **kwargs): | |
3008 | """GetActiveChild(self) -> MDIChildFrame""" | |
3009 | return _windows_.MDIParentFrame_GetActiveChild(*args, **kwargs) | |
3010 | ||
3011 | def GetClientWindow(*args, **kwargs): | |
3012 | """GetClientWindow(self) -> MDIClientWindow""" | |
3013 | return _windows_.MDIParentFrame_GetClientWindow(*args, **kwargs) | |
3014 | ||
3015 | def GetToolBar(*args, **kwargs): | |
3016 | """GetToolBar(self) -> Window""" | |
3017 | return _windows_.MDIParentFrame_GetToolBar(*args, **kwargs) | |
3018 | ||
3019 | def GetWindowMenu(*args, **kwargs): | |
3020 | """GetWindowMenu(self) -> Menu""" | |
3021 | return _windows_.MDIParentFrame_GetWindowMenu(*args, **kwargs) | |
3022 | ||
3023 | def SetWindowMenu(*args, **kwargs): | |
3024 | """SetWindowMenu(self, Menu menu)""" | |
3025 | return _windows_.MDIParentFrame_SetWindowMenu(*args, **kwargs) | |
3026 | ||
d55e5bfc | 3027 | def Tile(*args, **kwargs): |
396fb509 | 3028 | """Tile(self, int orient=HORIZONTAL)""" |
d55e5bfc RD |
3029 | return _windows_.MDIParentFrame_Tile(*args, **kwargs) |
3030 | ||
2131d850 | 3031 | _windows_.MDIParentFrame_swigregister(MDIParentFrame) |
d55e5bfc RD |
3032 | |
3033 | def PreMDIParentFrame(*args, **kwargs): | |
3034 | """PreMDIParentFrame() -> MDIParentFrame""" | |
3035 | val = _windows_.new_PreMDIParentFrame(*args, **kwargs) | |
d55e5bfc RD |
3036 | return val |
3037 | ||
3038 | class MDIChildFrame(Frame): | |
093d3ff1 | 3039 | """Proxy of C++ MDIChildFrame class""" |
554f62e9 RD |
3040 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
3041 | __repr__ = _swig_repr | |
3042 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 3043 | """ |
248ed943 RD |
3044 | __init__(self, MDIParentFrame parent, int id=-1, String title=EmptyString, |
3045 | Point pos=DefaultPosition, Size size=DefaultSize, | |
3046 | long style=DEFAULT_FRAME_STYLE, | |
d55e5bfc RD |
3047 | String name=FrameNameStr) -> MDIChildFrame |
3048 | """ | |
554f62e9 | 3049 | _windows_.MDIChildFrame_swiginit(self,_windows_.new_MDIChildFrame(*args, **kwargs)) |
d55e5bfc RD |
3050 | self._setOORInfo(self) |
3051 | ||
3052 | def Create(*args, **kwargs): | |
3053 | """ | |
248ed943 RD |
3054 | Create(self, MDIParentFrame parent, int id=-1, String title=EmptyString, |
3055 | Point pos=DefaultPosition, Size size=DefaultSize, | |
3056 | long style=DEFAULT_FRAME_STYLE, | |
d55e5bfc RD |
3057 | String name=FrameNameStr) -> bool |
3058 | """ | |
3059 | return _windows_.MDIChildFrame_Create(*args, **kwargs) | |
3060 | ||
3061 | def Activate(*args, **kwargs): | |
3062 | """Activate(self)""" | |
3063 | return _windows_.MDIChildFrame_Activate(*args, **kwargs) | |
3064 | ||
2131d850 | 3065 | _windows_.MDIChildFrame_swigregister(MDIChildFrame) |
d55e5bfc RD |
3066 | |
3067 | def PreMDIChildFrame(*args, **kwargs): | |
3068 | """PreMDIChildFrame() -> MDIChildFrame""" | |
3069 | val = _windows_.new_PreMDIChildFrame(*args, **kwargs) | |
d55e5bfc RD |
3070 | return val |
3071 | ||
3072 | class MDIClientWindow(_core.Window): | |
093d3ff1 | 3073 | """Proxy of C++ MDIClientWindow class""" |
554f62e9 RD |
3074 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
3075 | __repr__ = _swig_repr | |
3076 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 3077 | """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow""" |
554f62e9 | 3078 | _windows_.MDIClientWindow_swiginit(self,_windows_.new_MDIClientWindow(*args, **kwargs)) |
d55e5bfc RD |
3079 | self._setOORInfo(self) |
3080 | ||
3081 | def Create(*args, **kwargs): | |
3082 | """Create(self, MDIParentFrame parent, long style=0) -> bool""" | |
3083 | return _windows_.MDIClientWindow_Create(*args, **kwargs) | |
3084 | ||
2131d850 | 3085 | _windows_.MDIClientWindow_swigregister(MDIClientWindow) |
d55e5bfc RD |
3086 | |
3087 | def PreMDIClientWindow(*args, **kwargs): | |
3088 | """PreMDIClientWindow() -> MDIClientWindow""" | |
3089 | val = _windows_.new_PreMDIClientWindow(*args, **kwargs) | |
d55e5bfc RD |
3090 | return val |
3091 | ||
3092 | #--------------------------------------------------------------------------- | |
3093 | ||
3094 | class PyWindow(_core.Window): | |
093d3ff1 | 3095 | """Proxy of C++ PyWindow class""" |
554f62e9 RD |
3096 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
3097 | __repr__ = _swig_repr | |
3098 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 3099 | """ |
248ed943 RD |
3100 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, |
3101 | Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyWindow | |
d55e5bfc | 3102 | """ |
554f62e9 | 3103 | _windows_.PyWindow_swiginit(self,_windows_.new_PyWindow(*args, **kwargs)) |
d55e5bfc RD |
3104 | self._setOORInfo(self); self._setCallbackInfo(self, PyWindow) |
3105 | ||
3106 | def _setCallbackInfo(*args, **kwargs): | |
3107 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
3108 | return _windows_.PyWindow__setCallbackInfo(*args, **kwargs) | |
3109 | ||
caef1a4d RD |
3110 | def SetBestSize(*args, **kwargs): |
3111 | """SetBestSize(self, Size size)""" | |
3112 | return _windows_.PyWindow_SetBestSize(*args, **kwargs) | |
3113 | ||
60d5fcc1 RD |
3114 | def DoEraseBackground(*args, **kwargs): |
3115 | """DoEraseBackground(self, DC dc) -> bool""" | |
3116 | return _windows_.PyWindow_DoEraseBackground(*args, **kwargs) | |
3117 | ||
b06b3e70 RD |
3118 | def DoMoveWindow(*args, **kwargs): |
3119 | """DoMoveWindow(self, int x, int y, int width, int height)""" | |
3120 | return _windows_.PyWindow_DoMoveWindow(*args, **kwargs) | |
d55e5bfc | 3121 | |
b06b3e70 RD |
3122 | def DoSetSize(*args, **kwargs): |
3123 | """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)""" | |
3124 | return _windows_.PyWindow_DoSetSize(*args, **kwargs) | |
d55e5bfc | 3125 | |
b06b3e70 RD |
3126 | def DoSetClientSize(*args, **kwargs): |
3127 | """DoSetClientSize(self, int width, int height)""" | |
3128 | return _windows_.PyWindow_DoSetClientSize(*args, **kwargs) | |
d55e5bfc | 3129 | |
b06b3e70 RD |
3130 | def DoSetVirtualSize(*args, **kwargs): |
3131 | """DoSetVirtualSize(self, int x, int y)""" | |
3132 | return _windows_.PyWindow_DoSetVirtualSize(*args, **kwargs) | |
d55e5bfc | 3133 | |
b06b3e70 RD |
3134 | def DoGetSize(*args, **kwargs): |
3135 | """DoGetSize() -> (width, height)""" | |
3136 | return _windows_.PyWindow_DoGetSize(*args, **kwargs) | |
d55e5bfc | 3137 | |
b06b3e70 RD |
3138 | def DoGetClientSize(*args, **kwargs): |
3139 | """DoGetClientSize() -> (width, height)""" | |
3140 | return _windows_.PyWindow_DoGetClientSize(*args, **kwargs) | |
d55e5bfc | 3141 | |
b06b3e70 RD |
3142 | def DoGetPosition(*args, **kwargs): |
3143 | """DoGetPosition() -> (x,y)""" | |
3144 | return _windows_.PyWindow_DoGetPosition(*args, **kwargs) | |
d55e5bfc | 3145 | |
b06b3e70 RD |
3146 | def DoGetVirtualSize(*args, **kwargs): |
3147 | """DoGetVirtualSize(self) -> Size""" | |
3148 | return _windows_.PyWindow_DoGetVirtualSize(*args, **kwargs) | |
d55e5bfc | 3149 | |
b06b3e70 RD |
3150 | def DoGetBestSize(*args, **kwargs): |
3151 | """DoGetBestSize(self) -> Size""" | |
3152 | return _windows_.PyWindow_DoGetBestSize(*args, **kwargs) | |
d55e5bfc | 3153 | |
b06b3e70 RD |
3154 | def GetDefaultAttributes(*args, **kwargs): |
3155 | """GetDefaultAttributes(self) -> VisualAttributes""" | |
3156 | return _windows_.PyWindow_GetDefaultAttributes(*args, **kwargs) | |
3157 | ||
3158 | def OnInternalIdle(*args, **kwargs): | |
3159 | """OnInternalIdle(self)""" | |
3160 | return _windows_.PyWindow_OnInternalIdle(*args, **kwargs) | |
3161 | ||
3162 | def base_DoMoveWindow(*args, **kw): | |
3163 | return PyWindow.DoMoveWindow(*args, **kw) | |
3164 | base_DoMoveWindow = wx._deprecated(base_DoMoveWindow, | |
3165 | "Please use PyWindow.DoMoveWindow instead.") | |
3166 | ||
3167 | def base_DoSetSize(*args, **kw): | |
3168 | return PyWindow.DoSetSize(*args, **kw) | |
3169 | base_DoSetSize = wx._deprecated(base_DoSetSize, | |
3170 | "Please use PyWindow.DoSetSize instead.") | |
d55e5bfc | 3171 | |
b06b3e70 RD |
3172 | def base_DoSetClientSize(*args, **kw): |
3173 | return PyWindow.DoSetClientSize(*args, **kw) | |
3174 | base_DoSetClientSize = wx._deprecated(base_DoSetClientSize, | |
3175 | "Please use PyWindow.DoSetClientSize instead.") | |
d55e5bfc | 3176 | |
b06b3e70 RD |
3177 | def base_DoSetVirtualSize(*args, **kw): |
3178 | return PyWindow.DoSetVirtualSize(*args, **kw) | |
3179 | base_DoSetVirtualSize = wx._deprecated(base_DoSetVirtualSize, | |
3180 | "Please use PyWindow.DoSetVirtualSize instead.") | |
d55e5bfc | 3181 | |
b06b3e70 RD |
3182 | def base_DoGetSize(*args, **kw): |
3183 | return PyWindow.DoGetSize(*args, **kw) | |
3184 | base_DoGetSize = wx._deprecated(base_DoGetSize, | |
3185 | "Please use PyWindow.DoGetSize instead.") | |
d55e5bfc | 3186 | |
b06b3e70 RD |
3187 | def base_DoGetClientSize(*args, **kw): |
3188 | return PyWindow.DoGetClientSize(*args, **kw) | |
3189 | base_DoGetClientSize = wx._deprecated(base_DoGetClientSize, | |
3190 | "Please use PyWindow.DoGetClientSize instead.") | |
d55e5bfc | 3191 | |
b06b3e70 RD |
3192 | def base_DoGetPosition(*args, **kw): |
3193 | return PyWindow.DoGetPosition(*args, **kw) | |
3194 | base_DoGetPosition = wx._deprecated(base_DoGetPosition, | |
3195 | "Please use PyWindow.DoGetPosition instead.") | |
d55e5bfc | 3196 | |
b06b3e70 RD |
3197 | def base_DoGetVirtualSize(*args, **kw): |
3198 | return PyWindow.DoGetVirtualSize(*args, **kw) | |
3199 | base_DoGetVirtualSize = wx._deprecated(base_DoGetVirtualSize, | |
3200 | "Please use PyWindow.DoGetVirtualSize instead.") | |
d55e5bfc | 3201 | |
b06b3e70 RD |
3202 | def base_DoGetBestSize(*args, **kw): |
3203 | return PyWindow.DoGetBestSize(*args, **kw) | |
3204 | base_DoGetBestSize = wx._deprecated(base_DoGetBestSize, | |
3205 | "Please use PyWindow.DoGetBestSize instead.") | |
d55e5bfc | 3206 | |
b06b3e70 RD |
3207 | def base_InitDialog(*args, **kw): |
3208 | return PyWindow.InitDialog(*args, **kw) | |
3209 | base_InitDialog = wx._deprecated(base_InitDialog, | |
3210 | "Please use PyWindow.InitDialog instead.") | |
d55e5bfc | 3211 | |
b06b3e70 RD |
3212 | def base_TransferDataToWindow(*args, **kw): |
3213 | return PyWindow.TransferDataToWindow(*args, **kw) | |
3214 | base_TransferDataToWindow = wx._deprecated(base_TransferDataToWindow, | |
3215 | "Please use PyWindow.TransferDataToWindow instead.") | |
d55e5bfc | 3216 | |
b06b3e70 RD |
3217 | def base_TransferDataFromWindow(*args, **kw): |
3218 | return PyWindow.TransferDataFromWindow(*args, **kw) | |
3219 | base_TransferDataFromWindow = wx._deprecated(base_TransferDataFromWindow, | |
3220 | "Please use PyWindow.TransferDataFromWindow instead.") | |
caef1a4d | 3221 | |
b06b3e70 RD |
3222 | def base_Validate(*args, **kw): |
3223 | return PyWindow.Validate(*args, **kw) | |
3224 | base_Validate = wx._deprecated(base_Validate, | |
3225 | "Please use PyWindow.Validate instead.") | |
3226 | ||
3227 | def base_AcceptsFocus(*args, **kw): | |
3228 | return PyWindow.AcceptsFocus(*args, **kw) | |
3229 | base_AcceptsFocus = wx._deprecated(base_AcceptsFocus, | |
3230 | "Please use PyWindow.AcceptsFocus instead.") | |
3231 | ||
3232 | def base_AcceptsFocusFromKeyboard(*args, **kw): | |
3233 | return PyWindow.AcceptsFocusFromKeyboard(*args, **kw) | |
3234 | base_AcceptsFocusFromKeyboard = wx._deprecated(base_AcceptsFocusFromKeyboard, | |
3235 | "Please use PyWindow.AcceptsFocusFromKeyboard instead.") | |
3236 | ||
3237 | def base_GetMaxSize(*args, **kw): | |
3238 | return PyWindow.GetMaxSize(*args, **kw) | |
3239 | base_GetMaxSize = wx._deprecated(base_GetMaxSize, | |
3240 | "Please use PyWindow.GetMaxSize instead.") | |
3241 | ||
3242 | def base_AddChild(*args, **kw): | |
3243 | return PyWindow.AddChild(*args, **kw) | |
3244 | base_AddChild = wx._deprecated(base_AddChild, | |
3245 | "Please use PyWindow.AddChild instead.") | |
3246 | ||
3247 | def base_RemoveChild(*args, **kw): | |
3248 | return PyWindow.RemoveChild(*args, **kw) | |
3249 | base_RemoveChild = wx._deprecated(base_RemoveChild, | |
3250 | "Please use PyWindow.RemoveChild instead.") | |
3251 | ||
3252 | def base_ShouldInheritColours(*args, **kw): | |
3253 | return PyWindow.ShouldInheritColours(*args, **kw) | |
3254 | base_ShouldInheritColours = wx._deprecated(base_ShouldInheritColours, | |
3255 | "Please use PyWindow.ShouldInheritColours instead.") | |
3256 | ||
3257 | def base_GetDefaultAttributes(*args, **kw): | |
3258 | return PyWindow.GetDefaultAttributes(*args, **kw) | |
3259 | base_GetDefaultAttributes = wx._deprecated(base_GetDefaultAttributes, | |
3260 | "Please use PyWindow.GetDefaultAttributes instead.") | |
3261 | ||
3262 | def base_OnInternalIdle(*args, **kw): | |
3263 | return PyWindow.OnInternalIdle(*args, **kw) | |
3264 | base_OnInternalIdle = wx._deprecated(base_OnInternalIdle, | |
3265 | "Please use PyWindow.OnInternalIdle instead.") | |
8d38bd1d | 3266 | |
2131d850 | 3267 | _windows_.PyWindow_swigregister(PyWindow) |
d55e5bfc RD |
3268 | |
3269 | def PrePyWindow(*args, **kwargs): | |
3270 | """PrePyWindow() -> PyWindow""" | |
3271 | val = _windows_.new_PrePyWindow(*args, **kwargs) | |
d55e5bfc RD |
3272 | return val |
3273 | ||
3274 | class PyPanel(Panel): | |
093d3ff1 | 3275 | """Proxy of C++ PyPanel class""" |
554f62e9 RD |
3276 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
3277 | __repr__ = _swig_repr | |
3278 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 3279 | """ |
248ed943 RD |
3280 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, |
3281 | Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyPanel | |
d55e5bfc | 3282 | """ |
554f62e9 | 3283 | _windows_.PyPanel_swiginit(self,_windows_.new_PyPanel(*args, **kwargs)) |
d55e5bfc RD |
3284 | self._setOORInfo(self); self._setCallbackInfo(self, PyPanel) |
3285 | ||
3286 | def _setCallbackInfo(*args, **kwargs): | |
3287 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
3288 | return _windows_.PyPanel__setCallbackInfo(*args, **kwargs) | |
3289 | ||
caef1a4d RD |
3290 | def SetBestSize(*args, **kwargs): |
3291 | """SetBestSize(self, Size size)""" | |
3292 | return _windows_.PyPanel_SetBestSize(*args, **kwargs) | |
3293 | ||
60d5fcc1 RD |
3294 | def DoEraseBackground(*args, **kwargs): |
3295 | """DoEraseBackground(self, DC dc) -> bool""" | |
3296 | return _windows_.PyPanel_DoEraseBackground(*args, **kwargs) | |
3297 | ||
b06b3e70 RD |
3298 | def DoMoveWindow(*args, **kwargs): |
3299 | """DoMoveWindow(self, int x, int y, int width, int height)""" | |
3300 | return _windows_.PyPanel_DoMoveWindow(*args, **kwargs) | |
3301 | ||
3302 | def DoSetSize(*args, **kwargs): | |
3303 | """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)""" | |
3304 | return _windows_.PyPanel_DoSetSize(*args, **kwargs) | |
3305 | ||
3306 | def DoSetClientSize(*args, **kwargs): | |
3307 | """DoSetClientSize(self, int width, int height)""" | |
3308 | return _windows_.PyPanel_DoSetClientSize(*args, **kwargs) | |
3309 | ||
3310 | def DoSetVirtualSize(*args, **kwargs): | |
3311 | """DoSetVirtualSize(self, int x, int y)""" | |
3312 | return _windows_.PyPanel_DoSetVirtualSize(*args, **kwargs) | |
3313 | ||
3314 | def DoGetSize(*args, **kwargs): | |
3315 | """DoGetSize() -> (width, height)""" | |
3316 | return _windows_.PyPanel_DoGetSize(*args, **kwargs) | |
3317 | ||
3318 | def DoGetClientSize(*args, **kwargs): | |
3319 | """DoGetClientSize() -> (width, height)""" | |
3320 | return _windows_.PyPanel_DoGetClientSize(*args, **kwargs) | |
3321 | ||
3322 | def DoGetPosition(*args, **kwargs): | |
3323 | """DoGetPosition() -> (x,y)""" | |
3324 | return _windows_.PyPanel_DoGetPosition(*args, **kwargs) | |
3325 | ||
3326 | def DoGetVirtualSize(*args, **kwargs): | |
3327 | """DoGetVirtualSize(self) -> Size""" | |
3328 | return _windows_.PyPanel_DoGetVirtualSize(*args, **kwargs) | |
3329 | ||
3330 | def DoGetBestSize(*args, **kwargs): | |
3331 | """DoGetBestSize(self) -> Size""" | |
3332 | return _windows_.PyPanel_DoGetBestSize(*args, **kwargs) | |
3333 | ||
b06b3e70 RD |
3334 | def GetDefaultAttributes(*args, **kwargs): |
3335 | """GetDefaultAttributes(self) -> VisualAttributes""" | |
3336 | return _windows_.PyPanel_GetDefaultAttributes(*args, **kwargs) | |
d55e5bfc | 3337 | |
b06b3e70 RD |
3338 | def OnInternalIdle(*args, **kwargs): |
3339 | """OnInternalIdle(self)""" | |
3340 | return _windows_.PyPanel_OnInternalIdle(*args, **kwargs) | |
d55e5bfc | 3341 | |
b06b3e70 RD |
3342 | def base_DoMoveWindow(*args, **kw): |
3343 | return PyPanel.DoMoveWindow(*args, **kw) | |
3344 | base_DoMoveWindow = wx._deprecated(base_DoMoveWindow, | |
3345 | "Please use PyPanel.DoMoveWindow instead.") | |
d55e5bfc | 3346 | |
b06b3e70 RD |
3347 | def base_DoSetSize(*args, **kw): |
3348 | return PyPanel.DoSetSize(*args, **kw) | |
3349 | base_DoSetSize = wx._deprecated(base_DoSetSize, | |
3350 | "Please use PyPanel.DoSetSize instead.") | |
d55e5bfc | 3351 | |
b06b3e70 RD |
3352 | def base_DoSetClientSize(*args, **kw): |
3353 | return PyPanel.DoSetClientSize(*args, **kw) | |
3354 | base_DoSetClientSize = wx._deprecated(base_DoSetClientSize, | |
3355 | "Please use PyPanel.DoSetClientSize instead.") | |
d55e5bfc | 3356 | |
b06b3e70 RD |
3357 | def base_DoSetVirtualSize(*args, **kw): |
3358 | return PyPanel.DoSetVirtualSize(*args, **kw) | |
3359 | base_DoSetVirtualSize = wx._deprecated(base_DoSetVirtualSize, | |
3360 | "Please use PyPanel.DoSetVirtualSize instead.") | |
d55e5bfc | 3361 | |
b06b3e70 RD |
3362 | def base_DoGetSize(*args, **kw): |
3363 | return PyPanel.DoGetSize(*args, **kw) | |
3364 | base_DoGetSize = wx._deprecated(base_DoGetSize, | |
3365 | "Please use PyPanel.DoGetSize instead.") | |
d55e5bfc | 3366 | |
b06b3e70 RD |
3367 | def base_DoGetClientSize(*args, **kw): |
3368 | return PyPanel.DoGetClientSize(*args, **kw) | |
3369 | base_DoGetClientSize = wx._deprecated(base_DoGetClientSize, | |
3370 | "Please use PyPanel.DoGetClientSize instead.") | |
d55e5bfc | 3371 | |
b06b3e70 RD |
3372 | def base_DoGetPosition(*args, **kw): |
3373 | return PyPanel.DoGetPosition(*args, **kw) | |
3374 | base_DoGetPosition = wx._deprecated(base_DoGetPosition, | |
3375 | "Please use PyPanel.DoGetPosition instead.") | |
d55e5bfc | 3376 | |
b06b3e70 RD |
3377 | def base_DoGetVirtualSize(*args, **kw): |
3378 | return PyPanel.DoGetVirtualSize(*args, **kw) | |
3379 | base_DoGetVirtualSize = wx._deprecated(base_DoGetVirtualSize, | |
3380 | "Please use PyPanel.DoGetVirtualSize instead.") | |
d55e5bfc | 3381 | |
b06b3e70 RD |
3382 | def base_DoGetBestSize(*args, **kw): |
3383 | return PyPanel.DoGetBestSize(*args, **kw) | |
3384 | base_DoGetBestSize = wx._deprecated(base_DoGetBestSize, | |
3385 | "Please use PyPanel.DoGetBestSize instead.") | |
d55e5bfc | 3386 | |
b06b3e70 RD |
3387 | def base_InitDialog(*args, **kw): |
3388 | return PyPanel.InitDialog(*args, **kw) | |
3389 | base_InitDialog = wx._deprecated(base_InitDialog, | |
3390 | "Please use PyPanel.InitDialog instead.") | |
d55e5bfc | 3391 | |
b06b3e70 RD |
3392 | def base_TransferDataToWindow(*args, **kw): |
3393 | return PyPanel.TransferDataToWindow(*args, **kw) | |
3394 | base_TransferDataToWindow = wx._deprecated(base_TransferDataToWindow, | |
3395 | "Please use PyPanel.TransferDataToWindow instead.") | |
d55e5bfc | 3396 | |
b06b3e70 RD |
3397 | def base_TransferDataFromWindow(*args, **kw): |
3398 | return PyPanel.TransferDataFromWindow(*args, **kw) | |
3399 | base_TransferDataFromWindow = wx._deprecated(base_TransferDataFromWindow, | |
3400 | "Please use PyPanel.TransferDataFromWindow instead.") | |
d55e5bfc | 3401 | |
b06b3e70 RD |
3402 | def base_Validate(*args, **kw): |
3403 | return PyPanel.Validate(*args, **kw) | |
3404 | base_Validate = wx._deprecated(base_Validate, | |
3405 | "Please use PyPanel.Validate instead.") | |
caef1a4d | 3406 | |
b06b3e70 RD |
3407 | def base_AcceptsFocus(*args, **kw): |
3408 | return PyPanel.AcceptsFocus(*args, **kw) | |
3409 | base_AcceptsFocus = wx._deprecated(base_AcceptsFocus, | |
3410 | "Please use PyPanel.AcceptsFocus instead.") | |
3411 | ||
3412 | def base_AcceptsFocusFromKeyboard(*args, **kw): | |
3413 | return PyPanel.AcceptsFocusFromKeyboard(*args, **kw) | |
3414 | base_AcceptsFocusFromKeyboard = wx._deprecated(base_AcceptsFocusFromKeyboard, | |
3415 | "Please use PyPanel.AcceptsFocusFromKeyboard instead.") | |
3416 | ||
3417 | def base_GetMaxSize(*args, **kw): | |
3418 | return PyPanel.GetMaxSize(*args, **kw) | |
3419 | base_GetMaxSize = wx._deprecated(base_GetMaxSize, | |
3420 | "Please use PyPanel.GetMaxSize instead.") | |
3421 | ||
3422 | def base_AddChild(*args, **kw): | |
3423 | return PyPanel.AddChild(*args, **kw) | |
3424 | base_AddChild = wx._deprecated(base_AddChild, | |
3425 | "Please use PyPanel.AddChild instead.") | |
3426 | ||
3427 | def base_RemoveChild(*args, **kw): | |
3428 | return PyPanel.RemoveChild(*args, **kw) | |
3429 | base_RemoveChild = wx._deprecated(base_RemoveChild, | |
3430 | "Please use PyPanel.RemoveChild instead.") | |
3431 | ||
3432 | def base_ShouldInheritColours(*args, **kw): | |
3433 | return PyPanel.ShouldInheritColours(*args, **kw) | |
3434 | base_ShouldInheritColours = wx._deprecated(base_ShouldInheritColours, | |
3435 | "Please use PyPanel.ShouldInheritColours instead.") | |
3436 | ||
3437 | def base_GetDefaultAttributes(*args, **kw): | |
3438 | return PyPanel.GetDefaultAttributes(*args, **kw) | |
3439 | base_GetDefaultAttributes = wx._deprecated(base_GetDefaultAttributes, | |
3440 | "Please use PyPanel.GetDefaultAttributes instead.") | |
3441 | ||
3442 | def base_OnInternalIdle(*args, **kw): | |
3443 | return PyPanel.OnInternalIdle(*args, **kw) | |
3444 | base_OnInternalIdle = wx._deprecated(base_OnInternalIdle, | |
3445 | "Please use PyPanel.OnInternalIdle instead.") | |
8d38bd1d | 3446 | |
2131d850 | 3447 | _windows_.PyPanel_swigregister(PyPanel) |
d55e5bfc RD |
3448 | |
3449 | def PrePyPanel(*args, **kwargs): | |
3450 | """PrePyPanel() -> PyPanel""" | |
3451 | val = _windows_.new_PrePyPanel(*args, **kwargs) | |
d55e5bfc RD |
3452 | return val |
3453 | ||
3454 | class PyScrolledWindow(ScrolledWindow): | |
093d3ff1 | 3455 | """Proxy of C++ PyScrolledWindow class""" |
554f62e9 RD |
3456 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
3457 | __repr__ = _swig_repr | |
3458 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 3459 | """ |
248ed943 RD |
3460 | __init__(self, Window parent, int id=-1, Point pos=DefaultPosition, |
3461 | Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyScrolledWindow | |
d55e5bfc | 3462 | """ |
554f62e9 | 3463 | _windows_.PyScrolledWindow_swiginit(self,_windows_.new_PyScrolledWindow(*args, **kwargs)) |
a01da36a | 3464 | self._setOORInfo(self); self._setCallbackInfo(self, PyScrolledWindow) |
d55e5bfc RD |
3465 | |
3466 | def _setCallbackInfo(*args, **kwargs): | |
3467 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
3468 | return _windows_.PyScrolledWindow__setCallbackInfo(*args, **kwargs) | |
3469 | ||
caef1a4d RD |
3470 | def SetBestSize(*args, **kwargs): |
3471 | """SetBestSize(self, Size size)""" | |
3472 | return _windows_.PyScrolledWindow_SetBestSize(*args, **kwargs) | |
3473 | ||
60d5fcc1 RD |
3474 | def DoEraseBackground(*args, **kwargs): |
3475 | """DoEraseBackground(self, DC dc) -> bool""" | |
3476 | return _windows_.PyScrolledWindow_DoEraseBackground(*args, **kwargs) | |
3477 | ||
b06b3e70 RD |
3478 | def DoMoveWindow(*args, **kwargs): |
3479 | """DoMoveWindow(self, int x, int y, int width, int height)""" | |
3480 | return _windows_.PyScrolledWindow_DoMoveWindow(*args, **kwargs) | |
3481 | ||
3482 | def DoSetSize(*args, **kwargs): | |
3483 | """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)""" | |
3484 | return _windows_.PyScrolledWindow_DoSetSize(*args, **kwargs) | |
3485 | ||
3486 | def DoSetClientSize(*args, **kwargs): | |
3487 | """DoSetClientSize(self, int width, int height)""" | |
3488 | return _windows_.PyScrolledWindow_DoSetClientSize(*args, **kwargs) | |
3489 | ||
3490 | def DoSetVirtualSize(*args, **kwargs): | |
3491 | """DoSetVirtualSize(self, int x, int y)""" | |
3492 | return _windows_.PyScrolledWindow_DoSetVirtualSize(*args, **kwargs) | |
d55e5bfc | 3493 | |
b06b3e70 RD |
3494 | def DoGetSize(*args, **kwargs): |
3495 | """DoGetSize() -> (width, height)""" | |
3496 | return _windows_.PyScrolledWindow_DoGetSize(*args, **kwargs) | |
d55e5bfc | 3497 | |
b06b3e70 RD |
3498 | def DoGetClientSize(*args, **kwargs): |
3499 | """DoGetClientSize() -> (width, height)""" | |
3500 | return _windows_.PyScrolledWindow_DoGetClientSize(*args, **kwargs) | |
d55e5bfc | 3501 | |
b06b3e70 RD |
3502 | def DoGetPosition(*args, **kwargs): |
3503 | """DoGetPosition() -> (x,y)""" | |
3504 | return _windows_.PyScrolledWindow_DoGetPosition(*args, **kwargs) | |
d55e5bfc | 3505 | |
b06b3e70 RD |
3506 | def DoGetVirtualSize(*args, **kwargs): |
3507 | """DoGetVirtualSize(self) -> Size""" | |
3508 | return _windows_.PyScrolledWindow_DoGetVirtualSize(*args, **kwargs) | |
d55e5bfc | 3509 | |
b06b3e70 RD |
3510 | def DoGetBestSize(*args, **kwargs): |
3511 | """DoGetBestSize(self) -> Size""" | |
3512 | return _windows_.PyScrolledWindow_DoGetBestSize(*args, **kwargs) | |
d55e5bfc | 3513 | |
b06b3e70 RD |
3514 | def GetDefaultAttributes(*args, **kwargs): |
3515 | """GetDefaultAttributes(self) -> VisualAttributes""" | |
3516 | return _windows_.PyScrolledWindow_GetDefaultAttributes(*args, **kwargs) | |
d55e5bfc | 3517 | |
b06b3e70 RD |
3518 | def OnInternalIdle(*args, **kwargs): |
3519 | """OnInternalIdle(self)""" | |
3520 | return _windows_.PyScrolledWindow_OnInternalIdle(*args, **kwargs) | |
d55e5bfc | 3521 | |
b06b3e70 RD |
3522 | def base_DoMoveWindow(*args, **kw): |
3523 | return PyScrolledWindow.DoMoveWindow(*args, **kw) | |
3524 | base_DoMoveWindow = wx._deprecated(base_DoMoveWindow, | |
3525 | "Please use PyScrolledWindow.DoMoveWindow instead.") | |
d55e5bfc | 3526 | |
b06b3e70 RD |
3527 | def base_DoSetSize(*args, **kw): |
3528 | return PyScrolledWindow.DoSetSize(*args, **kw) | |
3529 | base_DoSetSize = wx._deprecated(base_DoSetSize, | |
3530 | "Please use PyScrolledWindow.DoSetSize instead.") | |
d55e5bfc | 3531 | |
b06b3e70 RD |
3532 | def base_DoSetClientSize(*args, **kw): |
3533 | return PyScrolledWindow.DoSetClientSize(*args, **kw) | |
3534 | base_DoSetClientSize = wx._deprecated(base_DoSetClientSize, | |
3535 | "Please use PyScrolledWindow.DoSetClientSize instead.") | |
d55e5bfc | 3536 | |
b06b3e70 RD |
3537 | def base_DoSetVirtualSize(*args, **kw): |
3538 | return PyScrolledWindow.DoSetVirtualSize(*args, **kw) | |
3539 | base_DoSetVirtualSize = wx._deprecated(base_DoSetVirtualSize, | |
3540 | "Please use PyScrolledWindow.DoSetVirtualSize instead.") | |
d55e5bfc | 3541 | |
b06b3e70 RD |
3542 | def base_DoGetSize(*args, **kw): |
3543 | return PyScrolledWindow.DoGetSize(*args, **kw) | |
3544 | base_DoGetSize = wx._deprecated(base_DoGetSize, | |
3545 | "Please use PyScrolledWindow.DoGetSize instead.") | |
d55e5bfc | 3546 | |
b06b3e70 RD |
3547 | def base_DoGetClientSize(*args, **kw): |
3548 | return PyScrolledWindow.DoGetClientSize(*args, **kw) | |
3549 | base_DoGetClientSize = wx._deprecated(base_DoGetClientSize, | |
3550 | "Please use PyScrolledWindow.DoGetClientSize instead.") | |
d55e5bfc | 3551 | |
b06b3e70 RD |
3552 | def base_DoGetPosition(*args, **kw): |
3553 | return PyScrolledWindow.DoGetPosition(*args, **kw) | |
3554 | base_DoGetPosition = wx._deprecated(base_DoGetPosition, | |
3555 | "Please use PyScrolledWindow.DoGetPosition instead.") | |
d55e5bfc | 3556 | |
b06b3e70 RD |
3557 | def base_DoGetVirtualSize(*args, **kw): |
3558 | return PyScrolledWindow.DoGetVirtualSize(*args, **kw) | |
3559 | base_DoGetVirtualSize = wx._deprecated(base_DoGetVirtualSize, | |
3560 | "Please use PyScrolledWindow.DoGetVirtualSize instead.") | |
d55e5bfc | 3561 | |
b06b3e70 RD |
3562 | def base_DoGetBestSize(*args, **kw): |
3563 | return PyScrolledWindow.DoGetBestSize(*args, **kw) | |
3564 | base_DoGetBestSize = wx._deprecated(base_DoGetBestSize, | |
3565 | "Please use PyScrolledWindow.DoGetBestSize instead.") | |
caef1a4d | 3566 | |
b06b3e70 RD |
3567 | def base_InitDialog(*args, **kw): |
3568 | return PyScrolledWindow.InitDialog(*args, **kw) | |
3569 | base_InitDialog = wx._deprecated(base_InitDialog, | |
3570 | "Please use PyScrolledWindow.InitDialog instead.") | |
3571 | ||
3572 | def base_TransferDataToWindow(*args, **kw): | |
3573 | return PyScrolledWindow.TransferDataToWindow(*args, **kw) | |
3574 | base_TransferDataToWindow = wx._deprecated(base_TransferDataToWindow, | |
3575 | "Please use PyScrolledWindow.TransferDataToWindow instead.") | |
3576 | ||
3577 | def base_TransferDataFromWindow(*args, **kw): | |
3578 | return PyScrolledWindow.TransferDataFromWindow(*args, **kw) | |
3579 | base_TransferDataFromWindow = wx._deprecated(base_TransferDataFromWindow, | |
3580 | "Please use PyScrolledWindow.TransferDataFromWindow instead.") | |
3581 | ||
3582 | def base_Validate(*args, **kw): | |
3583 | return PyScrolledWindow.Validate(*args, **kw) | |
3584 | base_Validate = wx._deprecated(base_Validate, | |
3585 | "Please use PyScrolledWindow.Validate instead.") | |
3586 | ||
3587 | def base_AcceptsFocus(*args, **kw): | |
3588 | return PyScrolledWindow.AcceptsFocus(*args, **kw) | |
3589 | base_AcceptsFocus = wx._deprecated(base_AcceptsFocus, | |
3590 | "Please use PyScrolledWindow.AcceptsFocus instead.") | |
3591 | ||
3592 | def base_AcceptsFocusFromKeyboard(*args, **kw): | |
3593 | return PyScrolledWindow.AcceptsFocusFromKeyboard(*args, **kw) | |
3594 | base_AcceptsFocusFromKeyboard = wx._deprecated(base_AcceptsFocusFromKeyboard, | |
3595 | "Please use PyScrolledWindow.AcceptsFocusFromKeyboard instead.") | |
3596 | ||
3597 | def base_GetMaxSize(*args, **kw): | |
3598 | return PyScrolledWindow.GetMaxSize(*args, **kw) | |
3599 | base_GetMaxSize = wx._deprecated(base_GetMaxSize, | |
3600 | "Please use PyScrolledWindow.GetMaxSize instead.") | |
3601 | ||
3602 | def base_AddChild(*args, **kw): | |
3603 | return PyScrolledWindow.AddChild(*args, **kw) | |
3604 | base_AddChild = wx._deprecated(base_AddChild, | |
3605 | "Please use PyScrolledWindow.AddChild instead.") | |
3606 | ||
3607 | def base_RemoveChild(*args, **kw): | |
3608 | return PyScrolledWindow.RemoveChild(*args, **kw) | |
3609 | base_RemoveChild = wx._deprecated(base_RemoveChild, | |
3610 | "Please use PyScrolledWindow.RemoveChild instead.") | |
3611 | ||
3612 | def base_ShouldInheritColours(*args, **kw): | |
3613 | return PyScrolledWindow.ShouldInheritColours(*args, **kw) | |
3614 | base_ShouldInheritColours = wx._deprecated(base_ShouldInheritColours, | |
3615 | "Please use PyScrolledWindow.ShouldInheritColours instead.") | |
3616 | ||
3617 | def base_GetDefaultAttributes(*args, **kw): | |
3618 | return PyScrolledWindow.GetDefaultAttributes(*args, **kw) | |
3619 | base_GetDefaultAttributes = wx._deprecated(base_GetDefaultAttributes, | |
3620 | "Please use PyScrolledWindow.GetDefaultAttributes instead.") | |
3621 | ||
3622 | def base_OnInternalIdle(*args, **kw): | |
3623 | return PyScrolledWindow.OnInternalIdle(*args, **kw) | |
3624 | base_OnInternalIdle = wx._deprecated(base_OnInternalIdle, | |
3625 | "Please use PyScrolledWindow.OnInternalIdle instead.") | |
8d38bd1d | 3626 | |
2131d850 | 3627 | _windows_.PyScrolledWindow_swigregister(PyScrolledWindow) |
d55e5bfc RD |
3628 | |
3629 | def PrePyScrolledWindow(*args, **kwargs): | |
3630 | """PrePyScrolledWindow() -> PyScrolledWindow""" | |
3631 | val = _windows_.new_PrePyScrolledWindow(*args, **kwargs) | |
d55e5bfc RD |
3632 | return val |
3633 | ||
3634 | #--------------------------------------------------------------------------- | |
3635 | ||
3636 | PRINT_MODE_NONE = _windows_.PRINT_MODE_NONE | |
3637 | PRINT_MODE_PREVIEW = _windows_.PRINT_MODE_PREVIEW | |
3638 | PRINT_MODE_FILE = _windows_.PRINT_MODE_FILE | |
3639 | PRINT_MODE_PRINTER = _windows_.PRINT_MODE_PRINTER | |
3640 | PRINT_MODE_STREAM = _windows_.PRINT_MODE_STREAM | |
ae8162c8 RD |
3641 | PRINTBIN_DEFAULT = _windows_.PRINTBIN_DEFAULT |
3642 | PRINTBIN_ONLYONE = _windows_.PRINTBIN_ONLYONE | |
3643 | PRINTBIN_LOWER = _windows_.PRINTBIN_LOWER | |
3644 | PRINTBIN_MIDDLE = _windows_.PRINTBIN_MIDDLE | |
3645 | PRINTBIN_MANUAL = _windows_.PRINTBIN_MANUAL | |
3646 | PRINTBIN_ENVELOPE = _windows_.PRINTBIN_ENVELOPE | |
3647 | PRINTBIN_ENVMANUAL = _windows_.PRINTBIN_ENVMANUAL | |
3648 | PRINTBIN_AUTO = _windows_.PRINTBIN_AUTO | |
3649 | PRINTBIN_TRACTOR = _windows_.PRINTBIN_TRACTOR | |
3650 | PRINTBIN_SMALLFMT = _windows_.PRINTBIN_SMALLFMT | |
3651 | PRINTBIN_LARGEFMT = _windows_.PRINTBIN_LARGEFMT | |
3652 | PRINTBIN_LARGECAPACITY = _windows_.PRINTBIN_LARGECAPACITY | |
3653 | PRINTBIN_CASSETTE = _windows_.PRINTBIN_CASSETTE | |
3654 | PRINTBIN_FORMSOURCE = _windows_.PRINTBIN_FORMSOURCE | |
3655 | PRINTBIN_USER = _windows_.PRINTBIN_USER | |
d55e5bfc | 3656 | class PrintData(_core.Object): |
093d3ff1 | 3657 | """Proxy of C++ PrintData class""" |
554f62e9 RD |
3658 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
3659 | __repr__ = _swig_repr | |
3660 | def __init__(self, *args): | |
09c21d3b RD |
3661 | """ |
3662 | __init__(self) -> PrintData | |
3663 | __init__(self, PrintData data) -> PrintData | |
3664 | """ | |
554f62e9 RD |
3665 | _windows_.PrintData_swiginit(self,_windows_.new_PrintData(*args)) |
3666 | __swig_destroy__ = _windows_.delete_PrintData | |
3667 | __del__ = lambda self : None; | |
d55e5bfc RD |
3668 | def GetNoCopies(*args, **kwargs): |
3669 | """GetNoCopies(self) -> int""" | |
3670 | return _windows_.PrintData_GetNoCopies(*args, **kwargs) | |
3671 | ||
3672 | def GetCollate(*args, **kwargs): | |
3673 | """GetCollate(self) -> bool""" | |
3674 | return _windows_.PrintData_GetCollate(*args, **kwargs) | |
3675 | ||
3676 | def GetOrientation(*args, **kwargs): | |
3677 | """GetOrientation(self) -> int""" | |
3678 | return _windows_.PrintData_GetOrientation(*args, **kwargs) | |
3679 | ||
3680 | def Ok(*args, **kwargs): | |
3681 | """Ok(self) -> bool""" | |
3682 | return _windows_.PrintData_Ok(*args, **kwargs) | |
3683 | ||
3684 | def GetPrinterName(*args, **kwargs): | |
3685 | """GetPrinterName(self) -> String""" | |
3686 | return _windows_.PrintData_GetPrinterName(*args, **kwargs) | |
3687 | ||
3688 | def GetColour(*args, **kwargs): | |
3689 | """GetColour(self) -> bool""" | |
3690 | return _windows_.PrintData_GetColour(*args, **kwargs) | |
3691 | ||
3692 | def GetDuplex(*args, **kwargs): | |
3693 | """GetDuplex(self) -> int""" | |
3694 | return _windows_.PrintData_GetDuplex(*args, **kwargs) | |
3695 | ||
3696 | def GetPaperId(*args, **kwargs): | |
3697 | """GetPaperId(self) -> int""" | |
3698 | return _windows_.PrintData_GetPaperId(*args, **kwargs) | |
3699 | ||
3700 | def GetPaperSize(*args, **kwargs): | |
3701 | """GetPaperSize(self) -> Size""" | |
3702 | return _windows_.PrintData_GetPaperSize(*args, **kwargs) | |
3703 | ||
3704 | def GetQuality(*args, **kwargs): | |
3705 | """GetQuality(self) -> int""" | |
3706 | return _windows_.PrintData_GetQuality(*args, **kwargs) | |
3707 | ||
ae8162c8 RD |
3708 | def GetBin(*args, **kwargs): |
3709 | """GetBin(self) -> int""" | |
3710 | return _windows_.PrintData_GetBin(*args, **kwargs) | |
3711 | ||
c1cb24a4 RD |
3712 | def GetPrintMode(*args, **kwargs): |
3713 | """GetPrintMode(self) -> int""" | |
3714 | return _windows_.PrintData_GetPrintMode(*args, **kwargs) | |
3715 | ||
d55e5bfc RD |
3716 | def SetNoCopies(*args, **kwargs): |
3717 | """SetNoCopies(self, int v)""" | |
3718 | return _windows_.PrintData_SetNoCopies(*args, **kwargs) | |
3719 | ||
3720 | def SetCollate(*args, **kwargs): | |
3721 | """SetCollate(self, bool flag)""" | |
3722 | return _windows_.PrintData_SetCollate(*args, **kwargs) | |
3723 | ||
3724 | def SetOrientation(*args, **kwargs): | |
3725 | """SetOrientation(self, int orient)""" | |
3726 | return _windows_.PrintData_SetOrientation(*args, **kwargs) | |
3727 | ||
3728 | def SetPrinterName(*args, **kwargs): | |
3729 | """SetPrinterName(self, String name)""" | |
3730 | return _windows_.PrintData_SetPrinterName(*args, **kwargs) | |
3731 | ||
3732 | def SetColour(*args, **kwargs): | |
3733 | """SetColour(self, bool colour)""" | |
3734 | return _windows_.PrintData_SetColour(*args, **kwargs) | |
3735 | ||
3736 | def SetDuplex(*args, **kwargs): | |
3737 | """SetDuplex(self, int duplex)""" | |
3738 | return _windows_.PrintData_SetDuplex(*args, **kwargs) | |
3739 | ||
3740 | def SetPaperId(*args, **kwargs): | |
3741 | """SetPaperId(self, int sizeId)""" | |
3742 | return _windows_.PrintData_SetPaperId(*args, **kwargs) | |
3743 | ||
3744 | def SetPaperSize(*args, **kwargs): | |
3745 | """SetPaperSize(self, Size sz)""" | |
3746 | return _windows_.PrintData_SetPaperSize(*args, **kwargs) | |
3747 | ||
3748 | def SetQuality(*args, **kwargs): | |
3749 | """SetQuality(self, int quality)""" | |
3750 | return _windows_.PrintData_SetQuality(*args, **kwargs) | |
3751 | ||
ae8162c8 RD |
3752 | def SetBin(*args, **kwargs): |
3753 | """SetBin(self, int bin)""" | |
3754 | return _windows_.PrintData_SetBin(*args, **kwargs) | |
3755 | ||
c1cb24a4 RD |
3756 | def SetPrintMode(*args, **kwargs): |
3757 | """SetPrintMode(self, int printMode)""" | |
3758 | return _windows_.PrintData_SetPrintMode(*args, **kwargs) | |
3759 | ||
3760 | def GetFilename(*args, **kwargs): | |
3761 | """GetFilename(self) -> String""" | |
3762 | return _windows_.PrintData_GetFilename(*args, **kwargs) | |
3763 | ||
3764 | def SetFilename(*args, **kwargs): | |
3765 | """SetFilename(self, String filename)""" | |
3766 | return _windows_.PrintData_SetFilename(*args, **kwargs) | |
3767 | ||
3768 | def __nonzero__(self): return self.Ok() | |
b9d6a5f3 RD |
3769 | def GetPrivData(*args, **kwargs): |
3770 | """GetPrivData(self) -> PyObject""" | |
3771 | return _windows_.PrintData_GetPrivData(*args, **kwargs) | |
3772 | ||
3773 | def SetPrivData(*args, **kwargs): | |
3774 | """SetPrivData(self, PyObject data)""" | |
3775 | return _windows_.PrintData_SetPrivData(*args, **kwargs) | |
3776 | ||
2131d850 | 3777 | _windows_.PrintData_swigregister(PrintData) |
d55e5bfc RD |
3778 | PrintoutTitleStr = cvar.PrintoutTitleStr |
3779 | PreviewCanvasNameStr = cvar.PreviewCanvasNameStr | |
3780 | ||
3781 | class PageSetupDialogData(_core.Object): | |
093d3ff1 | 3782 | """Proxy of C++ PageSetupDialogData class""" |
554f62e9 RD |
3783 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
3784 | __repr__ = _swig_repr | |
3785 | def __init__(self, *args): | |
09c21d3b RD |
3786 | """ |
3787 | __init__(self) -> PageSetupDialogData | |
3788 | __init__(self, PageSetupDialogData data) -> PageSetupDialogData | |
fef4c27a | 3789 | __init__(self, PrintData data) -> PageSetupDialogData |
09c21d3b | 3790 | """ |
554f62e9 RD |
3791 | _windows_.PageSetupDialogData_swiginit(self,_windows_.new_PageSetupDialogData(*args)) |
3792 | __swig_destroy__ = _windows_.delete_PageSetupDialogData | |
3793 | __del__ = lambda self : None; | |
d55e5bfc RD |
3794 | def EnableHelp(*args, **kwargs): |
3795 | """EnableHelp(self, bool flag)""" | |
3796 | return _windows_.PageSetupDialogData_EnableHelp(*args, **kwargs) | |
3797 | ||
3798 | def EnableMargins(*args, **kwargs): | |
3799 | """EnableMargins(self, bool flag)""" | |
3800 | return _windows_.PageSetupDialogData_EnableMargins(*args, **kwargs) | |
3801 | ||
3802 | def EnableOrientation(*args, **kwargs): | |
3803 | """EnableOrientation(self, bool flag)""" | |
3804 | return _windows_.PageSetupDialogData_EnableOrientation(*args, **kwargs) | |
3805 | ||
3806 | def EnablePaper(*args, **kwargs): | |
3807 | """EnablePaper(self, bool flag)""" | |
3808 | return _windows_.PageSetupDialogData_EnablePaper(*args, **kwargs) | |
3809 | ||
3810 | def EnablePrinter(*args, **kwargs): | |
3811 | """EnablePrinter(self, bool flag)""" | |
3812 | return _windows_.PageSetupDialogData_EnablePrinter(*args, **kwargs) | |
3813 | ||
3814 | def GetDefaultMinMargins(*args, **kwargs): | |
3815 | """GetDefaultMinMargins(self) -> bool""" | |
3816 | return _windows_.PageSetupDialogData_GetDefaultMinMargins(*args, **kwargs) | |
3817 | ||
3818 | def GetEnableMargins(*args, **kwargs): | |
3819 | """GetEnableMargins(self) -> bool""" | |
3820 | return _windows_.PageSetupDialogData_GetEnableMargins(*args, **kwargs) | |
3821 | ||
3822 | def GetEnableOrientation(*args, **kwargs): | |
3823 | """GetEnableOrientation(self) -> bool""" | |
3824 | return _windows_.PageSetupDialogData_GetEnableOrientation(*args, **kwargs) | |
3825 | ||
3826 | def GetEnablePaper(*args, **kwargs): | |
3827 | """GetEnablePaper(self) -> bool""" | |
3828 | return _windows_.PageSetupDialogData_GetEnablePaper(*args, **kwargs) | |
3829 | ||
3830 | def GetEnablePrinter(*args, **kwargs): | |
3831 | """GetEnablePrinter(self) -> bool""" | |
3832 | return _windows_.PageSetupDialogData_GetEnablePrinter(*args, **kwargs) | |
3833 | ||
3834 | def GetEnableHelp(*args, **kwargs): | |
3835 | """GetEnableHelp(self) -> bool""" | |
3836 | return _windows_.PageSetupDialogData_GetEnableHelp(*args, **kwargs) | |
3837 | ||
3838 | def GetDefaultInfo(*args, **kwargs): | |
3839 | """GetDefaultInfo(self) -> bool""" | |
3840 | return _windows_.PageSetupDialogData_GetDefaultInfo(*args, **kwargs) | |
3841 | ||
3842 | def GetMarginTopLeft(*args, **kwargs): | |
3843 | """GetMarginTopLeft(self) -> Point""" | |
3844 | return _windows_.PageSetupDialogData_GetMarginTopLeft(*args, **kwargs) | |
3845 | ||
3846 | def GetMarginBottomRight(*args, **kwargs): | |
3847 | """GetMarginBottomRight(self) -> Point""" | |
3848 | return _windows_.PageSetupDialogData_GetMarginBottomRight(*args, **kwargs) | |
3849 | ||
3850 | def GetMinMarginTopLeft(*args, **kwargs): | |
3851 | """GetMinMarginTopLeft(self) -> Point""" | |
3852 | return _windows_.PageSetupDialogData_GetMinMarginTopLeft(*args, **kwargs) | |
3853 | ||
3854 | def GetMinMarginBottomRight(*args, **kwargs): | |
3855 | """GetMinMarginBottomRight(self) -> Point""" | |
3856 | return _windows_.PageSetupDialogData_GetMinMarginBottomRight(*args, **kwargs) | |
3857 | ||
3858 | def GetPaperId(*args, **kwargs): | |
3859 | """GetPaperId(self) -> int""" | |
3860 | return _windows_.PageSetupDialogData_GetPaperId(*args, **kwargs) | |
3861 | ||
3862 | def GetPaperSize(*args, **kwargs): | |
3863 | """GetPaperSize(self) -> Size""" | |
3864 | return _windows_.PageSetupDialogData_GetPaperSize(*args, **kwargs) | |
3865 | ||
3866 | def GetPrintData(*args, **kwargs): | |
3867 | """GetPrintData(self) -> PrintData""" | |
3868 | return _windows_.PageSetupDialogData_GetPrintData(*args, **kwargs) | |
3869 | ||
3870 | def Ok(*args, **kwargs): | |
3871 | """Ok(self) -> bool""" | |
3872 | return _windows_.PageSetupDialogData_Ok(*args, **kwargs) | |
3873 | ||
3874 | def SetDefaultInfo(*args, **kwargs): | |
3875 | """SetDefaultInfo(self, bool flag)""" | |
3876 | return _windows_.PageSetupDialogData_SetDefaultInfo(*args, **kwargs) | |
3877 | ||
3878 | def SetDefaultMinMargins(*args, **kwargs): | |
3879 | """SetDefaultMinMargins(self, bool flag)""" | |
3880 | return _windows_.PageSetupDialogData_SetDefaultMinMargins(*args, **kwargs) | |
3881 | ||
3882 | def SetMarginTopLeft(*args, **kwargs): | |
3883 | """SetMarginTopLeft(self, Point pt)""" | |
3884 | return _windows_.PageSetupDialogData_SetMarginTopLeft(*args, **kwargs) | |
3885 | ||
3886 | def SetMarginBottomRight(*args, **kwargs): | |
3887 | """SetMarginBottomRight(self, Point pt)""" | |
3888 | return _windows_.PageSetupDialogData_SetMarginBottomRight(*args, **kwargs) | |
3889 | ||
3890 | def SetMinMarginTopLeft(*args, **kwargs): | |
3891 | """SetMinMarginTopLeft(self, Point pt)""" | |
3892 | return _windows_.PageSetupDialogData_SetMinMarginTopLeft(*args, **kwargs) | |
3893 | ||
3894 | def SetMinMarginBottomRight(*args, **kwargs): | |
3895 | """SetMinMarginBottomRight(self, Point pt)""" | |
3896 | return _windows_.PageSetupDialogData_SetMinMarginBottomRight(*args, **kwargs) | |
3897 | ||
3898 | def SetPaperId(*args, **kwargs): | |
3899 | """SetPaperId(self, int id)""" | |
3900 | return _windows_.PageSetupDialogData_SetPaperId(*args, **kwargs) | |
3901 | ||
3902 | def SetPaperSize(*args, **kwargs): | |
3903 | """SetPaperSize(self, Size size)""" | |
3904 | return _windows_.PageSetupDialogData_SetPaperSize(*args, **kwargs) | |
3905 | ||
3906 | def SetPrintData(*args, **kwargs): | |
3907 | """SetPrintData(self, PrintData printData)""" | |
3908 | return _windows_.PageSetupDialogData_SetPrintData(*args, **kwargs) | |
3909 | ||
fef4c27a RD |
3910 | def CalculateIdFromPaperSize(*args, **kwargs): |
3911 | """CalculateIdFromPaperSize(self)""" | |
3912 | return _windows_.PageSetupDialogData_CalculateIdFromPaperSize(*args, **kwargs) | |
3913 | ||
3914 | def CalculatePaperSizeFromId(*args, **kwargs): | |
3915 | """CalculatePaperSizeFromId(self)""" | |
3916 | return _windows_.PageSetupDialogData_CalculatePaperSizeFromId(*args, **kwargs) | |
3917 | ||
d55e5bfc | 3918 | def __nonzero__(self): return self.Ok() |
2131d850 | 3919 | _windows_.PageSetupDialogData_swigregister(PageSetupDialogData) |
d55e5bfc | 3920 | |
8ac8dba0 | 3921 | class PageSetupDialog(_core.Object): |
093d3ff1 | 3922 | """Proxy of C++ PageSetupDialog class""" |
554f62e9 RD |
3923 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
3924 | __repr__ = _swig_repr | |
3925 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 3926 | """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog""" |
554f62e9 | 3927 | _windows_.PageSetupDialog_swiginit(self,_windows_.new_PageSetupDialog(*args, **kwargs)) |
f05326ba RD |
3928 | __swig_destroy__ = _windows_.delete_PageSetupDialog |
3929 | __del__ = lambda self : None; | |
d55e5bfc RD |
3930 | def GetPageSetupData(*args, **kwargs): |
3931 | """GetPageSetupData(self) -> PageSetupDialogData""" | |
3932 | return _windows_.PageSetupDialog_GetPageSetupData(*args, **kwargs) | |
3933 | ||
8ac8dba0 RD |
3934 | def GetPageSetupDialogData(*args, **kwargs): |
3935 | """GetPageSetupDialogData(self) -> PageSetupDialogData""" | |
3936 | return _windows_.PageSetupDialog_GetPageSetupDialogData(*args, **kwargs) | |
3937 | ||
d55e5bfc RD |
3938 | def ShowModal(*args, **kwargs): |
3939 | """ShowModal(self) -> int""" | |
3940 | return _windows_.PageSetupDialog_ShowModal(*args, **kwargs) | |
3941 | ||
f05326ba | 3942 | def Destroy(self): pass |
2131d850 | 3943 | _windows_.PageSetupDialog_swigregister(PageSetupDialog) |
d55e5bfc RD |
3944 | |
3945 | class PrintDialogData(_core.Object): | |
093d3ff1 | 3946 | """Proxy of C++ PrintDialogData class""" |
554f62e9 RD |
3947 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
3948 | __repr__ = _swig_repr | |
3949 | def __init__(self, *args): | |
d55e5bfc RD |
3950 | """ |
3951 | __init__(self) -> PrintDialogData | |
3952 | __init__(self, PrintData printData) -> PrintDialogData | |
fef4c27a | 3953 | __init__(self, PrintDialogData printData) -> PrintDialogData |
d55e5bfc | 3954 | """ |
554f62e9 RD |
3955 | _windows_.PrintDialogData_swiginit(self,_windows_.new_PrintDialogData(*args)) |
3956 | __swig_destroy__ = _windows_.delete_PrintDialogData | |
3957 | __del__ = lambda self : None; | |
d55e5bfc RD |
3958 | def GetFromPage(*args, **kwargs): |
3959 | """GetFromPage(self) -> int""" | |
3960 | return _windows_.PrintDialogData_GetFromPage(*args, **kwargs) | |
3961 | ||
3962 | def GetToPage(*args, **kwargs): | |
3963 | """GetToPage(self) -> int""" | |
3964 | return _windows_.PrintDialogData_GetToPage(*args, **kwargs) | |
3965 | ||
3966 | def GetMinPage(*args, **kwargs): | |
3967 | """GetMinPage(self) -> int""" | |
3968 | return _windows_.PrintDialogData_GetMinPage(*args, **kwargs) | |
3969 | ||
3970 | def GetMaxPage(*args, **kwargs): | |
3971 | """GetMaxPage(self) -> int""" | |
3972 | return _windows_.PrintDialogData_GetMaxPage(*args, **kwargs) | |
3973 | ||
3974 | def GetNoCopies(*args, **kwargs): | |
3975 | """GetNoCopies(self) -> int""" | |
3976 | return _windows_.PrintDialogData_GetNoCopies(*args, **kwargs) | |
3977 | ||
3978 | def GetAllPages(*args, **kwargs): | |
3979 | """GetAllPages(self) -> bool""" | |
3980 | return _windows_.PrintDialogData_GetAllPages(*args, **kwargs) | |
3981 | ||
3982 | def GetSelection(*args, **kwargs): | |
3983 | """GetSelection(self) -> bool""" | |
3984 | return _windows_.PrintDialogData_GetSelection(*args, **kwargs) | |
3985 | ||
3986 | def GetCollate(*args, **kwargs): | |
3987 | """GetCollate(self) -> bool""" | |
3988 | return _windows_.PrintDialogData_GetCollate(*args, **kwargs) | |
3989 | ||
3990 | def GetPrintToFile(*args, **kwargs): | |
3991 | """GetPrintToFile(self) -> bool""" | |
3992 | return _windows_.PrintDialogData_GetPrintToFile(*args, **kwargs) | |
3993 | ||
d55e5bfc RD |
3994 | def SetFromPage(*args, **kwargs): |
3995 | """SetFromPage(self, int v)""" | |
3996 | return _windows_.PrintDialogData_SetFromPage(*args, **kwargs) | |
3997 | ||
3998 | def SetToPage(*args, **kwargs): | |
3999 | """SetToPage(self, int v)""" | |
4000 | return _windows_.PrintDialogData_SetToPage(*args, **kwargs) | |
4001 | ||
4002 | def SetMinPage(*args, **kwargs): | |
4003 | """SetMinPage(self, int v)""" | |
4004 | return _windows_.PrintDialogData_SetMinPage(*args, **kwargs) | |
4005 | ||
4006 | def SetMaxPage(*args, **kwargs): | |
4007 | """SetMaxPage(self, int v)""" | |
4008 | return _windows_.PrintDialogData_SetMaxPage(*args, **kwargs) | |
4009 | ||
4010 | def SetNoCopies(*args, **kwargs): | |
4011 | """SetNoCopies(self, int v)""" | |
4012 | return _windows_.PrintDialogData_SetNoCopies(*args, **kwargs) | |
4013 | ||
4014 | def SetAllPages(*args, **kwargs): | |
4015 | """SetAllPages(self, bool flag)""" | |
4016 | return _windows_.PrintDialogData_SetAllPages(*args, **kwargs) | |
4017 | ||
4018 | def SetSelection(*args, **kwargs): | |
4019 | """SetSelection(self, bool flag)""" | |
4020 | return _windows_.PrintDialogData_SetSelection(*args, **kwargs) | |
4021 | ||
4022 | def SetCollate(*args, **kwargs): | |
4023 | """SetCollate(self, bool flag)""" | |
4024 | return _windows_.PrintDialogData_SetCollate(*args, **kwargs) | |
4025 | ||
4026 | def SetPrintToFile(*args, **kwargs): | |
4027 | """SetPrintToFile(self, bool flag)""" | |
4028 | return _windows_.PrintDialogData_SetPrintToFile(*args, **kwargs) | |
4029 | ||
d55e5bfc RD |
4030 | def EnablePrintToFile(*args, **kwargs): |
4031 | """EnablePrintToFile(self, bool flag)""" | |
4032 | return _windows_.PrintDialogData_EnablePrintToFile(*args, **kwargs) | |
4033 | ||
4034 | def EnableSelection(*args, **kwargs): | |
4035 | """EnableSelection(self, bool flag)""" | |
4036 | return _windows_.PrintDialogData_EnableSelection(*args, **kwargs) | |
4037 | ||
4038 | def EnablePageNumbers(*args, **kwargs): | |
4039 | """EnablePageNumbers(self, bool flag)""" | |
4040 | return _windows_.PrintDialogData_EnablePageNumbers(*args, **kwargs) | |
4041 | ||
4042 | def EnableHelp(*args, **kwargs): | |
4043 | """EnableHelp(self, bool flag)""" | |
4044 | return _windows_.PrintDialogData_EnableHelp(*args, **kwargs) | |
4045 | ||
4046 | def GetEnablePrintToFile(*args, **kwargs): | |
4047 | """GetEnablePrintToFile(self) -> bool""" | |
4048 | return _windows_.PrintDialogData_GetEnablePrintToFile(*args, **kwargs) | |
4049 | ||
4050 | def GetEnableSelection(*args, **kwargs): | |
4051 | """GetEnableSelection(self) -> bool""" | |
4052 | return _windows_.PrintDialogData_GetEnableSelection(*args, **kwargs) | |
4053 | ||
4054 | def GetEnablePageNumbers(*args, **kwargs): | |
4055 | """GetEnablePageNumbers(self) -> bool""" | |
4056 | return _windows_.PrintDialogData_GetEnablePageNumbers(*args, **kwargs) | |
4057 | ||
4058 | def GetEnableHelp(*args, **kwargs): | |
4059 | """GetEnableHelp(self) -> bool""" | |
4060 | return _windows_.PrintDialogData_GetEnableHelp(*args, **kwargs) | |
4061 | ||
4062 | def Ok(*args, **kwargs): | |
4063 | """Ok(self) -> bool""" | |
4064 | return _windows_.PrintDialogData_Ok(*args, **kwargs) | |
4065 | ||
4066 | def GetPrintData(*args, **kwargs): | |
4067 | """GetPrintData(self) -> PrintData""" | |
4068 | return _windows_.PrintDialogData_GetPrintData(*args, **kwargs) | |
4069 | ||
4070 | def SetPrintData(*args, **kwargs): | |
4071 | """SetPrintData(self, PrintData printData)""" | |
4072 | return _windows_.PrintDialogData_SetPrintData(*args, **kwargs) | |
4073 | ||
4074 | def __nonzero__(self): return self.Ok() | |
2131d850 | 4075 | _windows_.PrintDialogData_swigregister(PrintDialogData) |
d55e5bfc | 4076 | |
c1cb24a4 | 4077 | class PrintDialog(_core.Object): |
093d3ff1 | 4078 | """Proxy of C++ PrintDialog class""" |
554f62e9 RD |
4079 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
4080 | __repr__ = _swig_repr | |
4081 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 4082 | """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog""" |
554f62e9 | 4083 | _windows_.PrintDialog_swiginit(self,_windows_.new_PrintDialog(*args, **kwargs)) |
f05326ba RD |
4084 | __swig_destroy__ = _windows_.delete_PrintDialog |
4085 | __del__ = lambda self : None; | |
c1cb24a4 RD |
4086 | def ShowModal(*args, **kwargs): |
4087 | """ShowModal(self) -> int""" | |
4088 | return _windows_.PrintDialog_ShowModal(*args, **kwargs) | |
d55e5bfc RD |
4089 | |
4090 | def GetPrintDialogData(*args, **kwargs): | |
4091 | """GetPrintDialogData(self) -> PrintDialogData""" | |
4092 | return _windows_.PrintDialog_GetPrintDialogData(*args, **kwargs) | |
4093 | ||
c1cb24a4 RD |
4094 | def GetPrintData(*args, **kwargs): |
4095 | """GetPrintData(self) -> PrintData""" | |
4096 | return _windows_.PrintDialog_GetPrintData(*args, **kwargs) | |
4097 | ||
d55e5bfc RD |
4098 | def GetPrintDC(*args, **kwargs): |
4099 | """GetPrintDC(self) -> DC""" | |
4100 | return _windows_.PrintDialog_GetPrintDC(*args, **kwargs) | |
4101 | ||
f05326ba | 4102 | def Destroy(self): pass |
2131d850 | 4103 | _windows_.PrintDialog_swigregister(PrintDialog) |
d55e5bfc RD |
4104 | |
4105 | PRINTER_NO_ERROR = _windows_.PRINTER_NO_ERROR | |
4106 | PRINTER_CANCELLED = _windows_.PRINTER_CANCELLED | |
4107 | PRINTER_ERROR = _windows_.PRINTER_ERROR | |
4108 | class Printer(_core.Object): | |
093d3ff1 | 4109 | """Proxy of C++ Printer class""" |
554f62e9 RD |
4110 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
4111 | __repr__ = _swig_repr | |
4112 | def __init__(self, *args, **kwargs): | |
d55e5bfc | 4113 | """__init__(self, PrintDialogData data=None) -> Printer""" |
554f62e9 RD |
4114 | _windows_.Printer_swiginit(self,_windows_.new_Printer(*args, **kwargs)) |
4115 | __swig_destroy__ = _windows_.delete_Printer | |
4116 | __del__ = lambda self : None; | |
d55e5bfc | 4117 | def CreateAbortWindow(*args, **kwargs): |
c1cb24a4 | 4118 | """CreateAbortWindow(self, Window parent, Printout printout) -> Window""" |
d55e5bfc RD |
4119 | return _windows_.Printer_CreateAbortWindow(*args, **kwargs) |
4120 | ||
c1cb24a4 RD |
4121 | def ReportError(*args, **kwargs): |
4122 | """ReportError(self, Window parent, Printout printout, String message)""" | |
4123 | return _windows_.Printer_ReportError(*args, **kwargs) | |
4124 | ||
4125 | def Setup(*args, **kwargs): | |
4126 | """Setup(self, Window parent) -> bool""" | |
4127 | return _windows_.Printer_Setup(*args, **kwargs) | |
d55e5bfc RD |
4128 | |
4129 | def Print(*args, **kwargs): | |
c1cb24a4 | 4130 | """Print(self, Window parent, Printout printout, bool prompt=True) -> bool""" |
d55e5bfc RD |
4131 | return _windows_.Printer_Print(*args, **kwargs) |
4132 | ||
4133 | def PrintDialog(*args, **kwargs): | |
4134 | """PrintDialog(self, Window parent) -> DC""" | |
4135 | return _windows_.Printer_PrintDialog(*args, **kwargs) | |
4136 | ||
c1cb24a4 RD |
4137 | def GetPrintDialogData(*args, **kwargs): |
4138 | """GetPrintDialogData(self) -> PrintDialogData""" | |
4139 | return _windows_.Printer_GetPrintDialogData(*args, **kwargs) | |
d55e5bfc RD |
4140 | |
4141 | def GetAbort(*args, **kwargs): | |
4142 | """GetAbort(self) -> bool""" | |
4143 | return _windows_.Printer_GetAbort(*args, **kwargs) | |
4144 | ||
4145 | def GetLastError(*args, **kwargs): | |
c24da6d6 | 4146 | """GetLastError() -> int""" |
d55e5bfc RD |
4147 | return _windows_.Printer_GetLastError(*args, **kwargs) |
4148 | ||
4149 | GetLastError = staticmethod(GetLastError) | |
2131d850 | 4150 | _windows_.Printer_swigregister(Printer) |
d55e5bfc | 4151 | |
554f62e9 RD |
4152 | def Printer_GetLastError(*args): |
4153 | """Printer_GetLastError() -> int""" | |
4154 | return _windows_.Printer_GetLastError(*args) | |
d55e5bfc RD |
4155 | |
4156 | class Printout(_core.Object): | |
093d3ff1 | 4157 | """Proxy of C++ Printout class""" |
554f62e9 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): | |
d55e5bfc | 4161 | """__init__(self, String title=PrintoutTitleStr) -> Printout""" |
554f62e9 | 4162 | _windows_.Printout_swiginit(self,_windows_.new_Printout(*args, **kwargs)) |
d55e5bfc RD |
4163 | self._setCallbackInfo(self, Printout) |
4164 | ||
554f62e9 RD |
4165 | __swig_destroy__ = _windows_.delete_Printout |
4166 | __del__ = lambda self : None; | |
d55e5bfc RD |
4167 | def _setCallbackInfo(*args, **kwargs): |
4168 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
4169 | return _windows_.Printout__setCallbackInfo(*args, **kwargs) | |
4170 | ||
4171 | def GetTitle(*args, **kwargs): | |
4172 | """GetTitle(self) -> String""" | |
4173 | return _windows_.Printout_GetTitle(*args, **kwargs) | |
4174 | ||
4175 | def GetDC(*args, **kwargs): | |
4176 | """GetDC(self) -> DC""" | |
4177 | return _windows_.Printout_GetDC(*args, **kwargs) | |
4178 | ||
4179 | def SetDC(*args, **kwargs): | |
4180 | """SetDC(self, DC dc)""" | |
4181 | return _windows_.Printout_SetDC(*args, **kwargs) | |
4182 | ||
4183 | def SetPageSizePixels(*args, **kwargs): | |
4184 | """SetPageSizePixels(self, int w, int h)""" | |
4185 | return _windows_.Printout_SetPageSizePixels(*args, **kwargs) | |
4186 | ||
4187 | def GetPageSizePixels(*args, **kwargs): | |
4188 | """GetPageSizePixels() -> (w, h)""" | |
4189 | return _windows_.Printout_GetPageSizePixels(*args, **kwargs) | |
4190 | ||
4191 | def SetPageSizeMM(*args, **kwargs): | |
4192 | """SetPageSizeMM(self, int w, int h)""" | |
4193 | return _windows_.Printout_SetPageSizeMM(*args, **kwargs) | |
4194 | ||
4195 | def GetPageSizeMM(*args, **kwargs): | |
4196 | """GetPageSizeMM() -> (w, h)""" | |
4197 | return _windows_.Printout_GetPageSizeMM(*args, **kwargs) | |
4198 | ||
4199 | def SetPPIScreen(*args, **kwargs): | |
4200 | """SetPPIScreen(self, int x, int y)""" | |
4201 | return _windows_.Printout_SetPPIScreen(*args, **kwargs) | |
4202 | ||
4203 | def GetPPIScreen(*args, **kwargs): | |
4204 | """GetPPIScreen() -> (x,y)""" | |
4205 | return _windows_.Printout_GetPPIScreen(*args, **kwargs) | |
4206 | ||
4207 | def SetPPIPrinter(*args, **kwargs): | |
4208 | """SetPPIPrinter(self, int x, int y)""" | |
4209 | return _windows_.Printout_SetPPIPrinter(*args, **kwargs) | |
4210 | ||
4211 | def GetPPIPrinter(*args, **kwargs): | |
4212 | """GetPPIPrinter() -> (x,y)""" | |
4213 | return _windows_.Printout_GetPPIPrinter(*args, **kwargs) | |
4214 | ||
4215 | def IsPreview(*args, **kwargs): | |
4216 | """IsPreview(self) -> bool""" | |
4217 | return _windows_.Printout_IsPreview(*args, **kwargs) | |
4218 | ||
4219 | def SetIsPreview(*args, **kwargs): | |
4220 | """SetIsPreview(self, bool p)""" | |
4221 | return _windows_.Printout_SetIsPreview(*args, **kwargs) | |
4222 | ||
b06b3e70 RD |
4223 | def OnBeginDocument(*args, **kwargs): |
4224 | """OnBeginDocument(self, int startPage, int endPage) -> bool""" | |
4225 | return _windows_.Printout_OnBeginDocument(*args, **kwargs) | |
4226 | ||
4227 | def OnEndDocument(*args, **kwargs): | |
4228 | """OnEndDocument(self)""" | |
4229 | return _windows_.Printout_OnEndDocument(*args, **kwargs) | |
4230 | ||
4231 | def OnBeginPrinting(*args, **kwargs): | |
4232 | """OnBeginPrinting(self)""" | |
4233 | return _windows_.Printout_OnBeginPrinting(*args, **kwargs) | |
d55e5bfc | 4234 | |
b06b3e70 RD |
4235 | def OnEndPrinting(*args, **kwargs): |
4236 | """OnEndPrinting(self)""" | |
4237 | return _windows_.Printout_OnEndPrinting(*args, **kwargs) | |
d55e5bfc | 4238 | |
b06b3e70 RD |
4239 | def OnPreparePrinting(*args, **kwargs): |
4240 | """OnPreparePrinting(self)""" | |
4241 | return _windows_.Printout_OnPreparePrinting(*args, **kwargs) | |
d55e5bfc | 4242 | |
b06b3e70 RD |
4243 | def HasPage(*args, **kwargs): |
4244 | """HasPage(self, int page) -> bool""" | |
4245 | return _windows_.Printout_HasPage(*args, **kwargs) | |
d55e5bfc | 4246 | |
b06b3e70 RD |
4247 | def GetPageInfo(*args, **kwargs): |
4248 | """GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)""" | |
4249 | return _windows_.Printout_GetPageInfo(*args, **kwargs) | |
d55e5bfc | 4250 | |
b06b3e70 RD |
4251 | def base_OnBeginDocument(*args, **kw): |
4252 | return Printout.OnBeginDocument(*args, **kw) | |
4253 | base_OnBeginDocument = wx._deprecated(base_OnBeginDocument, | |
4254 | "Please use Printout.OnBeginDocument instead.") | |
d55e5bfc | 4255 | |
b06b3e70 RD |
4256 | def base_OnEndDocument(*args, **kw): |
4257 | return Printout.OnEndDocument(*args, **kw) | |
4258 | base_OnEndDocument = wx._deprecated(base_OnEndDocument, | |
4259 | "Please use Printout.OnEndDocument instead.") | |
4260 | ||
4261 | def base_OnBeginPrinting(*args, **kw): | |
4262 | return Printout.OnBeginPrinting(*args, **kw) | |
4263 | base_OnBeginPrinting = wx._deprecated(base_OnBeginPrinting, | |
4264 | "Please use Printout.OnBeginPrinting instead.") | |
4265 | ||
4266 | def base_OnEndPrinting(*args, **kw): | |
4267 | return Printout.OnEndPrinting(*args, **kw) | |
4268 | base_OnEndPrinting = wx._deprecated(base_OnEndPrinting, | |
4269 | "Please use Printout.OnEndPrinting instead.") | |
4270 | ||
4271 | def base_OnPreparePrinting(*args, **kw): | |
4272 | return Printout.OnPreparePrinting(*args, **kw) | |
4273 | base_OnPreparePrinting = wx._deprecated(base_OnPreparePrinting, | |
4274 | "Please use Printout.OnPreparePrinting instead.") | |
4275 | ||
4276 | def base_GetPageInfo(*args, **kw): | |
4277 | return Printout.GetPageInfo(*args, **kw) | |
4278 | base_GetPageInfo = wx._deprecated(base_GetPageInfo, | |
4279 | "Please use Printout.GetPageInfo instead.") | |
d55e5bfc | 4280 | |
2131d850 | 4281 | _windows_.Printout_swigregister(Printout) |
d55e5bfc RD |
4282 | |
4283 | class PreviewCanvas(ScrolledWindow): | |
093d3ff1 | 4284 | """Proxy of C++ PreviewCanvas class""" |
554f62e9 RD |
4285 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
4286 | __repr__ = _swig_repr | |
4287 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
4288 | """ |
4289 | __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition, | |
4290 | Size size=DefaultSize, long style=0, | |
4291 | String name=PreviewCanvasNameStr) -> PreviewCanvas | |
4292 | """ | |
554f62e9 | 4293 | _windows_.PreviewCanvas_swiginit(self,_windows_.new_PreviewCanvas(*args, **kwargs)) |
d55e5bfc RD |
4294 | self._setOORInfo(self) |
4295 | ||
2131d850 | 4296 | _windows_.PreviewCanvas_swigregister(PreviewCanvas) |
d55e5bfc RD |
4297 | |
4298 | class PreviewFrame(Frame): | |
093d3ff1 | 4299 | """Proxy of C++ PreviewFrame class""" |
554f62e9 RD |
4300 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
4301 | __repr__ = _swig_repr | |
4302 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
4303 | """ |
4304 | __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition, | |
4305 | Size size=DefaultSize, | |
4306 | long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame | |
4307 | """ | |
554f62e9 | 4308 | _windows_.PreviewFrame_swiginit(self,_windows_.new_PreviewFrame(*args, **kwargs)) |
d55e5bfc RD |
4309 | self._setOORInfo(self) |
4310 | ||
4311 | def Initialize(*args, **kwargs): | |
4312 | """Initialize(self)""" | |
4313 | return _windows_.PreviewFrame_Initialize(*args, **kwargs) | |
4314 | ||
4315 | def CreateControlBar(*args, **kwargs): | |
4316 | """CreateControlBar(self)""" | |
4317 | return _windows_.PreviewFrame_CreateControlBar(*args, **kwargs) | |
4318 | ||
4319 | def CreateCanvas(*args, **kwargs): | |
4320 | """CreateCanvas(self)""" | |
4321 | return _windows_.PreviewFrame_CreateCanvas(*args, **kwargs) | |
4322 | ||
4323 | def GetControlBar(*args, **kwargs): | |
4324 | """GetControlBar(self) -> PreviewControlBar""" | |
4325 | return _windows_.PreviewFrame_GetControlBar(*args, **kwargs) | |
4326 | ||
2131d850 | 4327 | _windows_.PreviewFrame_swigregister(PreviewFrame) |
d55e5bfc RD |
4328 | |
4329 | PREVIEW_PRINT = _windows_.PREVIEW_PRINT | |
4330 | PREVIEW_PREVIOUS = _windows_.PREVIEW_PREVIOUS | |
4331 | PREVIEW_NEXT = _windows_.PREVIEW_NEXT | |
4332 | PREVIEW_ZOOM = _windows_.PREVIEW_ZOOM | |
4333 | PREVIEW_FIRST = _windows_.PREVIEW_FIRST | |
4334 | PREVIEW_LAST = _windows_.PREVIEW_LAST | |
4335 | PREVIEW_GOTO = _windows_.PREVIEW_GOTO | |
4336 | PREVIEW_DEFAULT = _windows_.PREVIEW_DEFAULT | |
4337 | ID_PREVIEW_CLOSE = _windows_.ID_PREVIEW_CLOSE | |
4338 | ID_PREVIEW_NEXT = _windows_.ID_PREVIEW_NEXT | |
4339 | ID_PREVIEW_PREVIOUS = _windows_.ID_PREVIEW_PREVIOUS | |
4340 | ID_PREVIEW_PRINT = _windows_.ID_PREVIEW_PRINT | |
4341 | ID_PREVIEW_ZOOM = _windows_.ID_PREVIEW_ZOOM | |
4342 | ID_PREVIEW_FIRST = _windows_.ID_PREVIEW_FIRST | |
4343 | ID_PREVIEW_LAST = _windows_.ID_PREVIEW_LAST | |
4344 | ID_PREVIEW_GOTO = _windows_.ID_PREVIEW_GOTO | |
4345 | class PreviewControlBar(Panel): | |
093d3ff1 | 4346 | """Proxy of C++ PreviewControlBar class""" |
554f62e9 RD |
4347 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
4348 | __repr__ = _swig_repr | |
4349 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
4350 | """ |
4351 | __init__(self, PrintPreview preview, long buttons, Window parent, | |
4352 | Point pos=DefaultPosition, Size size=DefaultSize, | |
4353 | long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar | |
4354 | """ | |
554f62e9 | 4355 | _windows_.PreviewControlBar_swiginit(self,_windows_.new_PreviewControlBar(*args, **kwargs)) |
d55e5bfc RD |
4356 | self._setOORInfo(self) |
4357 | ||
4358 | def GetZoomControl(*args, **kwargs): | |
4359 | """GetZoomControl(self) -> int""" | |
4360 | return _windows_.PreviewControlBar_GetZoomControl(*args, **kwargs) | |
4361 | ||
4362 | def SetZoomControl(*args, **kwargs): | |
4363 | """SetZoomControl(self, int zoom)""" | |
4364 | return _windows_.PreviewControlBar_SetZoomControl(*args, **kwargs) | |
4365 | ||
4366 | def GetPrintPreview(*args, **kwargs): | |
4367 | """GetPrintPreview(self) -> PrintPreview""" | |
4368 | return _windows_.PreviewControlBar_GetPrintPreview(*args, **kwargs) | |
4369 | ||
4370 | def OnNext(*args, **kwargs): | |
4371 | """OnNext(self)""" | |
4372 | return _windows_.PreviewControlBar_OnNext(*args, **kwargs) | |
4373 | ||
4374 | def OnPrevious(*args, **kwargs): | |
4375 | """OnPrevious(self)""" | |
4376 | return _windows_.PreviewControlBar_OnPrevious(*args, **kwargs) | |
4377 | ||
4378 | def OnFirst(*args, **kwargs): | |
4379 | """OnFirst(self)""" | |
4380 | return _windows_.PreviewControlBar_OnFirst(*args, **kwargs) | |
4381 | ||
4382 | def OnLast(*args, **kwargs): | |
4383 | """OnLast(self)""" | |
4384 | return _windows_.PreviewControlBar_OnLast(*args, **kwargs) | |
4385 | ||
4386 | def OnGoto(*args, **kwargs): | |
4387 | """OnGoto(self)""" | |
4388 | return _windows_.PreviewControlBar_OnGoto(*args, **kwargs) | |
4389 | ||
2131d850 | 4390 | _windows_.PreviewControlBar_swigregister(PreviewControlBar) |
d55e5bfc RD |
4391 | |
4392 | class PrintPreview(_core.Object): | |
093d3ff1 | 4393 | """Proxy of C++ PrintPreview class""" |
554f62e9 RD |
4394 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
4395 | __repr__ = _swig_repr | |
4396 | def __init__(self, *args): | |
d55e5bfc RD |
4397 | """ |
4398 | __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview | |
4399 | __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview | |
4400 | """ | |
554f62e9 RD |
4401 | _windows_.PrintPreview_swiginit(self,_windows_.new_PrintPreview(*args)) |
4402 | __swig_destroy__ = _windows_.delete_PrintPreview | |
4403 | __del__ = lambda self : None; | |
d55e5bfc RD |
4404 | def SetCurrentPage(*args, **kwargs): |
4405 | """SetCurrentPage(self, int pageNum) -> bool""" | |
4406 | return _windows_.PrintPreview_SetCurrentPage(*args, **kwargs) | |
4407 | ||
4408 | def GetCurrentPage(*args, **kwargs): | |
4409 | """GetCurrentPage(self) -> int""" | |
4410 | return _windows_.PrintPreview_GetCurrentPage(*args, **kwargs) | |
4411 | ||
4412 | def SetPrintout(*args, **kwargs): | |
4413 | """SetPrintout(self, Printout printout)""" | |
4414 | return _windows_.PrintPreview_SetPrintout(*args, **kwargs) | |
4415 | ||
4416 | def GetPrintout(*args, **kwargs): | |
4417 | """GetPrintout(self) -> Printout""" | |
4418 | return _windows_.PrintPreview_GetPrintout(*args, **kwargs) | |
4419 | ||
4420 | def GetPrintoutForPrinting(*args, **kwargs): | |
4421 | """GetPrintoutForPrinting(self) -> Printout""" | |
4422 | return _windows_.PrintPreview_GetPrintoutForPrinting(*args, **kwargs) | |
4423 | ||
4424 | def SetFrame(*args, **kwargs): | |
4425 | """SetFrame(self, Frame frame)""" | |
4426 | return _windows_.PrintPreview_SetFrame(*args, **kwargs) | |
4427 | ||
4428 | def SetCanvas(*args, **kwargs): | |
4429 | """SetCanvas(self, PreviewCanvas canvas)""" | |
4430 | return _windows_.PrintPreview_SetCanvas(*args, **kwargs) | |
4431 | ||
4432 | def GetFrame(*args, **kwargs): | |
4433 | """GetFrame(self) -> Frame""" | |
4434 | return _windows_.PrintPreview_GetFrame(*args, **kwargs) | |
4435 | ||
4436 | def GetCanvas(*args, **kwargs): | |
4437 | """GetCanvas(self) -> PreviewCanvas""" | |
4438 | return _windows_.PrintPreview_GetCanvas(*args, **kwargs) | |
4439 | ||
4440 | def PaintPage(*args, **kwargs): | |
4441 | """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool""" | |
4442 | return _windows_.PrintPreview_PaintPage(*args, **kwargs) | |
4443 | ||
4444 | def DrawBlankPage(*args, **kwargs): | |
4445 | """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool""" | |
4446 | return _windows_.PrintPreview_DrawBlankPage(*args, **kwargs) | |
4447 | ||
4448 | def RenderPage(*args, **kwargs): | |
4449 | """RenderPage(self, int pageNum) -> bool""" | |
4450 | return _windows_.PrintPreview_RenderPage(*args, **kwargs) | |
4451 | ||
4452 | def AdjustScrollbars(*args, **kwargs): | |
4453 | """AdjustScrollbars(self, PreviewCanvas canvas)""" | |
4454 | return _windows_.PrintPreview_AdjustScrollbars(*args, **kwargs) | |
4455 | ||
4456 | def GetPrintDialogData(*args, **kwargs): | |
4457 | """GetPrintDialogData(self) -> PrintDialogData""" | |
4458 | return _windows_.PrintPreview_GetPrintDialogData(*args, **kwargs) | |
4459 | ||
4460 | def SetZoom(*args, **kwargs): | |
4461 | """SetZoom(self, int percent)""" | |
4462 | return _windows_.PrintPreview_SetZoom(*args, **kwargs) | |
4463 | ||
4464 | def GetZoom(*args, **kwargs): | |
4465 | """GetZoom(self) -> int""" | |
4466 | return _windows_.PrintPreview_GetZoom(*args, **kwargs) | |
4467 | ||
4468 | def GetMaxPage(*args, **kwargs): | |
4469 | """GetMaxPage(self) -> int""" | |
4470 | return _windows_.PrintPreview_GetMaxPage(*args, **kwargs) | |
4471 | ||
4472 | def GetMinPage(*args, **kwargs): | |
4473 | """GetMinPage(self) -> int""" | |
4474 | return _windows_.PrintPreview_GetMinPage(*args, **kwargs) | |
4475 | ||
4476 | def Ok(*args, **kwargs): | |
4477 | """Ok(self) -> bool""" | |
4478 | return _windows_.PrintPreview_Ok(*args, **kwargs) | |
4479 | ||
4480 | def SetOk(*args, **kwargs): | |
4481 | """SetOk(self, bool ok)""" | |
4482 | return _windows_.PrintPreview_SetOk(*args, **kwargs) | |
4483 | ||
4484 | def Print(*args, **kwargs): | |
4485 | """Print(self, bool interactive) -> bool""" | |
4486 | return _windows_.PrintPreview_Print(*args, **kwargs) | |
4487 | ||
4488 | def DetermineScaling(*args, **kwargs): | |
4489 | """DetermineScaling(self)""" | |
4490 | return _windows_.PrintPreview_DetermineScaling(*args, **kwargs) | |
4491 | ||
4492 | def __nonzero__(self): return self.Ok() | |
2131d850 | 4493 | _windows_.PrintPreview_swigregister(PrintPreview) |
d55e5bfc RD |
4494 | |
4495 | class PyPrintPreview(PrintPreview): | |
093d3ff1 | 4496 | """Proxy of C++ PyPrintPreview class""" |
554f62e9 RD |
4497 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
4498 | __repr__ = _swig_repr | |
4499 | def __init__(self, *args): | |
d55e5bfc RD |
4500 | """ |
4501 | __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview | |
4502 | __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview | |
4503 | """ | |
554f62e9 | 4504 | _windows_.PyPrintPreview_swiginit(self,_windows_.new_PyPrintPreview(*args)) |
d55e5bfc RD |
4505 | self._setCallbackInfo(self, PyPrintPreview) |
4506 | ||
4507 | def _setCallbackInfo(*args, **kwargs): | |
4508 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
4509 | return _windows_.PyPrintPreview__setCallbackInfo(*args, **kwargs) | |
4510 | ||
b06b3e70 RD |
4511 | def base_SetCurrentPage(*args, **kw): |
4512 | return PyPrintPreview.SetCurrentPage(*args, **kw) | |
4513 | base_SetCurrentPage = wx._deprecated(base_SetCurrentPage, | |
4514 | "Please use PyPrintPreview.SetCurrentPage instead.") | |
d55e5bfc | 4515 | |
b06b3e70 RD |
4516 | def base_PaintPage(*args, **kw): |
4517 | return PyPrintPreview.PaintPage(*args, **kw) | |
4518 | base_PaintPage = wx._deprecated(base_PaintPage, | |
4519 | "Please use PyPrintPreview.PaintPage instead.") | |
d55e5bfc | 4520 | |
b06b3e70 RD |
4521 | def base_DrawBlankPage(*args, **kw): |
4522 | return PyPrintPreview.DrawBlankPage(*args, **kw) | |
4523 | base_DrawBlankPage = wx._deprecated(base_DrawBlankPage, | |
4524 | "Please use PyPrintPreview.DrawBlankPage instead.") | |
d55e5bfc | 4525 | |
b06b3e70 RD |
4526 | def base_RenderPage(*args, **kw): |
4527 | return PyPrintPreview.RenderPage(*args, **kw) | |
4528 | base_RenderPage = wx._deprecated(base_RenderPage, | |
4529 | "Please use PyPrintPreview.RenderPage instead.") | |
4530 | ||
4531 | def base_SetZoom(*args, **kw): | |
4532 | return PyPrintPreview.SetZoom(*args, **kw) | |
4533 | base_SetZoom = wx._deprecated(base_SetZoom, | |
4534 | "Please use PyPrintPreview.SetZoom instead.") | |
4535 | ||
4536 | def base_Print(*args, **kw): | |
4537 | return PyPrintPreview.Print(*args, **kw) | |
4538 | base_Print = wx._deprecated(base_Print, | |
4539 | "Please use PyPrintPreview.Print instead.") | |
4540 | ||
4541 | def base_DetermineScaling(*args, **kw): | |
4542 | return PyPrintPreview.DetermineScaling(*args, **kw) | |
4543 | base_DetermineScaling = wx._deprecated(base_DetermineScaling, | |
4544 | "Please use PyPrintPreview.DetermineScaling instead.") | |
d55e5bfc | 4545 | |
2131d850 | 4546 | _windows_.PyPrintPreview_swigregister(PyPrintPreview) |
d55e5bfc RD |
4547 | |
4548 | class PyPreviewFrame(PreviewFrame): | |
093d3ff1 | 4549 | """Proxy of C++ PyPreviewFrame class""" |
554f62e9 RD |
4550 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
4551 | __repr__ = _swig_repr | |
4552 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
4553 | """ |
4554 | __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition, | |
4555 | Size size=DefaultSize, | |
4556 | long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame | |
4557 | """ | |
554f62e9 | 4558 | _windows_.PyPreviewFrame_swiginit(self,_windows_.new_PyPreviewFrame(*args, **kwargs)) |
d55e5bfc RD |
4559 | self._setCallbackInfo(self, PyPreviewFrame); self._setOORInfo(self) |
4560 | ||
4561 | def _setCallbackInfo(*args, **kwargs): | |
4562 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
4563 | return _windows_.PyPreviewFrame__setCallbackInfo(*args, **kwargs) | |
4564 | ||
4565 | def SetPreviewCanvas(*args, **kwargs): | |
4566 | """SetPreviewCanvas(self, PreviewCanvas canvas)""" | |
4567 | return _windows_.PyPreviewFrame_SetPreviewCanvas(*args, **kwargs) | |
4568 | ||
4569 | def SetControlBar(*args, **kwargs): | |
4570 | """SetControlBar(self, PreviewControlBar bar)""" | |
4571 | return _windows_.PyPreviewFrame_SetControlBar(*args, **kwargs) | |
4572 | ||
b06b3e70 RD |
4573 | def Initialize(*args, **kwargs): |
4574 | """Initialize(self)""" | |
4575 | return _windows_.PyPreviewFrame_Initialize(*args, **kwargs) | |
4576 | ||
4577 | def CreateCanvas(*args, **kwargs): | |
4578 | """CreateCanvas(self)""" | |
4579 | return _windows_.PyPreviewFrame_CreateCanvas(*args, **kwargs) | |
4580 | ||
4581 | def CreateControlBar(*args, **kwargs): | |
4582 | """CreateControlBar(self)""" | |
4583 | return _windows_.PyPreviewFrame_CreateControlBar(*args, **kwargs) | |
d55e5bfc | 4584 | |
b06b3e70 RD |
4585 | def base_Initialize(*args, **kw): |
4586 | return PyPreviewFrame.Initialize(*args, **kw) | |
4587 | base_Initialize = wx._deprecated(base_Initialize, | |
4588 | "Please use PyPreviewFrame.Initialize instead.") | |
d55e5bfc | 4589 | |
b06b3e70 RD |
4590 | def base_CreateCanvas(*args, **kw): |
4591 | return PyPreviewFrame.CreateCanvas(*args, **kw) | |
4592 | base_CreateCanvas = wx._deprecated(base_CreateCanvas, | |
4593 | "Please use PyPreviewFrame.CreateCanvas instead.") | |
4594 | ||
4595 | def base_CreateControlBar(*args, **kw): | |
4596 | return PyPreviewFrame.CreateControlBar(*args, **kw) | |
4597 | base_CreateControlBar = wx._deprecated(base_CreateControlBar, | |
4598 | "Please use PyPreviewFrame.CreateControlBar instead.") | |
d55e5bfc | 4599 | |
2131d850 | 4600 | _windows_.PyPreviewFrame_swigregister(PyPreviewFrame) |
d55e5bfc RD |
4601 | |
4602 | class PyPreviewControlBar(PreviewControlBar): | |
093d3ff1 | 4603 | """Proxy of C++ PyPreviewControlBar class""" |
554f62e9 RD |
4604 | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag') |
4605 | __repr__ = _swig_repr | |
4606 | def __init__(self, *args, **kwargs): | |
d55e5bfc RD |
4607 | """ |
4608 | __init__(self, PrintPreview preview, long buttons, Window parent, | |
4609 | Point pos=DefaultPosition, Size size=DefaultSize, | |
4610 | long style=0, String name=PanelNameStr) -> PyPreviewControlBar | |
4611 | """ | |
554f62e9 | 4612 | _windows_.PyPreviewControlBar_swiginit(self,_windows_.new_PyPreviewControlBar(*args, **kwargs)) |
d55e5bfc RD |
4613 | self._setCallbackInfo(self, PyPreviewControlBar); self._setOORInfo(self) |
4614 | ||
4615 | def _setCallbackInfo(*args, **kwargs): | |
4616 | """_setCallbackInfo(self, PyObject self, PyObject _class)""" | |
4617 | return _windows_.PyPreviewControlBar__setCallbackInfo(*args, **kwargs) | |
4618 | ||
4619 | def SetPrintPreview(*args, **kwargs): | |
4620 | """SetPrintPreview(self, PrintPreview preview)""" | |
4621 | return _windows_.PyPreviewControlBar_SetPrintPreview(*args, **kwargs) | |
4622 | ||
b06b3e70 RD |
4623 | def CreateButtons(*args, **kwargs): |
4624 | """CreateButtons(self)""" | |
4625 | return _windows_.PyPreviewControlBar_CreateButtons(*args, **kwargs) | |
4626 | ||
4627 | def SetZoomControl(*args, **kwargs): | |
4628 | """SetZoomControl(self, int zoom)""" | |
4629 | return _windows_.PyPreviewControlBar_SetZoomControl(*args, **kwargs) | |
4630 | ||
4631 | def base_CreateButtons(*args, **kw): | |
4632 | return PreviewControlBar.CreateButtons(*args, **kw) | |
4633 | base_CreateButtons = wx._deprecated(base_CreateButtons, | |
4634 | "Please use PreviewControlBar.CreateButtons instead.") | |
d55e5bfc | 4635 | |
b06b3e70 RD |
4636 | def base_SetZoomControl(*args, **kw): |
4637 | return PreviewControlBar.SetZoomControl(*args, **kw) | |
4638 | base_SetZoomControl = wx._deprecated(base_SetZoomControl, | |
4639 | "Please use PreviewControlBar.SetZoomControl instead.") | |
d55e5bfc | 4640 | |
2131d850 | 4641 | _windows_.PyPreviewControlBar_swigregister(PyPreviewControlBar) |
d55e5bfc RD |
4642 | |
4643 | ||
7449af73 | 4644 |